This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Re: [PATCH] strictifying ExtUtils::MakeMaker, take 3
[perl5.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 #include "sharedsv.h"
2153
2154 /* Current curly descriptor */
2155 typedef struct curcur CURCUR;
2156 struct curcur {
2157     int         parenfloor;     /* how far back to strip paren data */
2158     int         cur;            /* how many instances of scan we've matched */
2159     int         min;            /* the minimal number of scans to match */
2160     int         max;            /* the maximal number of scans to match */
2161     int         minmod;         /* whether to work our way up or down */
2162     regnode *   scan;           /* the thing to match */
2163     regnode *   next;           /* what has to match after it */
2164     char *      lastloc;        /* where we started matching this scan */
2165     CURCUR *    oldcc;          /* current curly before we started this one */
2166 };
2167
2168 typedef struct _sublex_info SUBLEXINFO;
2169 struct _sublex_info {
2170     I32 super_state;    /* lexer state to save */
2171     I32 sub_inwhat;     /* "lex_inwhat" to use */
2172     OP *sub_op;         /* "lex_op" to use */
2173     char *super_bufptr; /* PL_bufptr that was */
2174     char *super_bufend; /* PL_bufend that was */
2175 };
2176
2177 typedef struct magic_state MGS; /* struct magic_state defined in mg.c */
2178
2179 struct scan_data_t;             /* Used in S_* functions in regcomp.c */
2180 struct regnode_charclass_class; /* Used in S_* functions in regcomp.c */
2181
2182 typedef I32 CHECKPOINT;
2183
2184 struct ptr_tbl_ent {
2185     struct ptr_tbl_ent*         next;
2186     void*                       oldval;
2187     void*                       newval;
2188 };
2189
2190 struct ptr_tbl {
2191     struct ptr_tbl_ent**        tbl_ary;
2192     UV                          tbl_max;
2193     UV                          tbl_items;
2194 };
2195
2196 #if defined(iAPX286) || defined(M_I286) || defined(I80286)
2197 #   define I286
2198 #endif
2199
2200 #if defined(htonl) && !defined(HAS_HTONL)
2201 #define HAS_HTONL
2202 #endif
2203 #if defined(htons) && !defined(HAS_HTONS)
2204 #define HAS_HTONS
2205 #endif
2206 #if defined(ntohl) && !defined(HAS_NTOHL)
2207 #define HAS_NTOHL
2208 #endif
2209 #if defined(ntohs) && !defined(HAS_NTOHS)
2210 #define HAS_NTOHS
2211 #endif
2212 #ifndef HAS_HTONL
2213 #if (BYTEORDER & 0xffff) != 0x4321
2214 #define HAS_HTONS
2215 #define HAS_HTONL
2216 #define HAS_NTOHS
2217 #define HAS_NTOHL
2218 #define MYSWAP
2219 #define htons my_swap
2220 #define htonl my_htonl
2221 #define ntohs my_swap
2222 #define ntohl my_ntohl
2223 #endif
2224 #else
2225 #if (BYTEORDER & 0xffff) == 0x4321
2226 #undef HAS_HTONS
2227 #undef HAS_HTONL
2228 #undef HAS_NTOHS
2229 #undef HAS_NTOHL
2230 #endif
2231 #endif
2232
2233 /*
2234  * Little-endian byte order functions - 'v' for 'VAX', or 'reVerse'.
2235  * -DWS
2236  */
2237 #if BYTEORDER != 0x1234
2238 # define HAS_VTOHL
2239 # define HAS_VTOHS
2240 # define HAS_HTOVL
2241 # define HAS_HTOVS
2242 # if BYTEORDER == 0x4321 || BYTEORDER == 0x87654321
2243 #  define vtohl(x)      ((((x)&0xFF)<<24)       \
2244                         +(((x)>>24)&0xFF)       \
2245                         +(((x)&0x0000FF00)<<8)  \
2246                         +(((x)&0x00FF0000)>>8)  )
2247 #  define vtohs(x)      ((((x)&0xFF)<<8) + (((x)>>8)&0xFF))
2248 #  define htovl(x)      vtohl(x)
2249 #  define htovs(x)      vtohs(x)
2250 # endif
2251         /* otherwise default to functions in util.c */
2252 #endif
2253
2254 /* *MAX Plus 1. A floating point value.
2255    Hopefully expressed in a way that dodgy floating point can't mess up.
2256    >> 2 rather than 1, so that value is safely less than I32_MAX after 1
2257    is added to it
2258    May find that some broken compiler will want the value cast to I32.
2259    [after the shift, as signed >> may not be as secure as unsigned >>]
2260 */
2261 #define I32_MAX_P1 (2.0 * (1 + (((U32)I32_MAX) >> 1)))
2262 #define U32_MAX_P1 (4.0 * (1 + ((U32_MAX) >> 2)))
2263 /* For compilers that can't correctly cast NVs over 0x7FFFFFFF (or
2264    0x7FFFFFFFFFFFFFFF) to an unsigned integer. In the future, sizeof(UV)
2265    may be greater than sizeof(IV), so don't assume that half max UV is max IV.
2266 */
2267 #define U32_MAX_P1_HALF (2.0 * (1 + ((U32_MAX) >> 2)))
2268
2269 #define UV_MAX_P1 (4.0 * (1 + ((UV_MAX) >> 2)))
2270 #define IV_MAX_P1 (2.0 * (1 + (((UV)IV_MAX) >> 1)))
2271 #define UV_MAX_P1_HALF (2.0 * (1 + ((UV_MAX) >> 2)))
2272
2273 /* This may look like unnecessary jumping through hoops, but converting
2274    out of range floating point values to integers *is* undefined behaviour,
2275    and it is starting to bite.
2276 */
2277 #ifndef CAST_INLINE
2278 #define I_32(what) (cast_i32((NV)(what)))
2279 #define U_32(what) (cast_ulong((NV)(what)))
2280 #define I_V(what) (cast_iv((NV)(what)))
2281 #define U_V(what) (cast_uv((NV)(what)))
2282 #else
2283 #define I_32(n) ((n) < I32_MAX_P1 ? ((n) < I32_MIN ? I32_MIN : (I32) (n)) \
2284                   : ((n) < U32_MAX_P1 ? (I32)(U32) (n) \
2285                      : ((n) > 0 ? (I32) U32_MAX : 0 /* NaN */)))
2286 #define U_32(n) ((n) < 0.0 ? ((n) < I32_MIN ? (UV) I32_MIN : (U32)(I32) (n)) \
2287                   : ((n) < U32_MAX_P1 ? (U32) (n) \
2288                      : ((n) > 0 ? U32_MAX : 0 /* NaN */)))
2289 #define I_V(n) ((n) < IV_MAX_P1 ? ((n) < IV_MIN ? IV_MIN : (IV) (n)) \
2290                   : ((n) < UV_MAX_P1 ? (IV)(UV) (n) \
2291                      : ((n) > 0 ? (IV)UV_MAX : 0 /* NaN */)))
2292 #define U_V(n) ((n) < 0.0 ? ((n) < IV_MIN ? (UV) IV_MIN : (UV)(IV) (n)) \
2293                   : ((n) < UV_MAX_P1 ? (UV) (n) \
2294                      : ((n) > 0 ? UV_MAX : 0 /* NaN */)))
2295 #endif
2296
2297 #define U_S(what) ((U16)U_32(what))
2298 #define U_I(what) ((unsigned int)U_32(what))
2299 #define U_L(what) U_32(what)
2300
2301 /* These do not care about the fractional part, only about the range. */
2302 #define NV_WITHIN_IV(nv) (I_V(nv) >= IV_MIN && I_V(nv) <= IV_MAX)
2303 #define NV_WITHIN_UV(nv) ((nv)>=0.0 && U_V(nv) >= UV_MIN && U_V(nv) <= UV_MAX)
2304
2305 /* Used with UV/IV arguments: */
2306                                         /* XXXX: need to speed it up */
2307 #define CLUMP_2UV(iv)   ((iv) < 0 ? 0 : (UV)(iv))
2308 #define CLUMP_2IV(uv)   ((uv) > (UV)IV_MAX ? IV_MAX : (IV)(uv))
2309
2310 #ifndef MAXSYSFD
2311 #   define MAXSYSFD 2
2312 #endif
2313
2314 #ifndef __cplusplus
2315 #ifndef UNDER_CE
2316 Uid_t getuid (void);
2317 Uid_t geteuid (void);
2318 Gid_t getgid (void);
2319 Gid_t getegid (void);
2320 #endif
2321 #endif
2322
2323 #ifndef Perl_debug_log
2324 #  define Perl_debug_log        PerlIO_stderr()
2325 #endif
2326
2327 #ifndef Perl_error_log
2328 #  define Perl_error_log        (PL_stderrgv                    \
2329                                  && GvIOp(PL_stderrgv)          \
2330                                  && IoOFP(GvIOp(PL_stderrgv))   \
2331                                  ? IoOFP(GvIOp(PL_stderrgv))    \
2332                                  : PerlIO_stderr())
2333 #endif
2334
2335
2336 #define DEBUG_p_FLAG            0x00000001 /*      1 */
2337 #define DEBUG_s_FLAG            0x00000002 /*      2 */
2338 #define DEBUG_l_FLAG            0x00000004 /*      4 */
2339 #define DEBUG_t_FLAG            0x00000008 /*      8 */
2340 #define DEBUG_o_FLAG            0x00000010 /*     16 */
2341 #define DEBUG_c_FLAG            0x00000020 /*     32 */
2342 #define DEBUG_P_FLAG            0x00000040 /*     64 */
2343 #define DEBUG_m_FLAG            0x00000080 /*    128 */
2344 #define DEBUG_f_FLAG            0x00000100 /*    256 */
2345 #define DEBUG_r_FLAG            0x00000200 /*    512 */
2346 #define DEBUG_x_FLAG            0x00000400 /*   1024 */
2347 #define DEBUG_u_FLAG            0x00000800 /*   2048 */
2348 #define DEBUG_L_FLAG            0x00001000 /*   4096 */
2349 #define DEBUG_H_FLAG            0x00002000 /*   8192 */
2350 #define DEBUG_X_FLAG            0x00004000 /*  16384 */
2351 #define DEBUG_D_FLAG            0x00008000 /*  32768 */
2352 #define DEBUG_S_FLAG            0x00010000 /*  65536 */
2353 #define DEBUG_T_FLAG            0x00020000 /* 131072 */
2354 #define DEBUG_R_FLAG            0x00040000 /* 262144 */
2355 #define DEBUG_MASK              0x0007FFFF /* mask of all the standard flags */
2356
2357 #define DEBUG_DB_RECURSE_FLAG   0x40000000
2358 #define DEBUG_TOP_FLAG          0x80000000 /* XXX what's this for ??? */
2359
2360
2361 #  define DEBUG_p_TEST_ (PL_debug & DEBUG_p_FLAG)
2362 #  define DEBUG_s_TEST_ (PL_debug & DEBUG_s_FLAG)
2363 #  define DEBUG_l_TEST_ (PL_debug & DEBUG_l_FLAG)
2364 #  define DEBUG_t_TEST_ (PL_debug & DEBUG_t_FLAG)
2365 #  define DEBUG_o_TEST_ (PL_debug & DEBUG_o_FLAG)
2366 #  define DEBUG_c_TEST_ (PL_debug & DEBUG_c_FLAG)
2367 #  define DEBUG_P_TEST_ (PL_debug & DEBUG_P_FLAG)
2368 #  define DEBUG_m_TEST_ (PL_debug & DEBUG_m_FLAG)
2369 #  define DEBUG_f_TEST_ (PL_debug & DEBUG_f_FLAG)
2370 #  define DEBUG_r_TEST_ (PL_debug & DEBUG_r_FLAG)
2371 #  define DEBUG_x_TEST_ (PL_debug & DEBUG_x_FLAG)
2372 #  define DEBUG_u_TEST_ (PL_debug & DEBUG_u_FLAG)
2373 #  define DEBUG_L_TEST_ (PL_debug & DEBUG_L_FLAG)
2374 #  define DEBUG_H_TEST_ (PL_debug & DEBUG_H_FLAG)
2375 #  define DEBUG_X_TEST_ (PL_debug & DEBUG_X_FLAG)
2376 #  define DEBUG_D_TEST_ (PL_debug & DEBUG_D_FLAG)
2377 #  define DEBUG_S_TEST_ (PL_debug & DEBUG_S_FLAG)
2378 #  define DEBUG_T_TEST_ (PL_debug & DEBUG_T_FLAG)
2379 #  define DEBUG_R_TEST_ (PL_debug & DEBUG_R_FLAG)
2380
2381 #ifdef DEBUGGING
2382
2383 #  undef  YYDEBUG
2384 #  define YYDEBUG 1
2385
2386 #  define DEBUG_p_TEST DEBUG_p_TEST_
2387 #  define DEBUG_s_TEST DEBUG_s_TEST_
2388 #  define DEBUG_l_TEST DEBUG_l_TEST_
2389 #  define DEBUG_t_TEST DEBUG_t_TEST_
2390 #  define DEBUG_o_TEST DEBUG_o_TEST_
2391 #  define DEBUG_c_TEST DEBUG_c_TEST_
2392 #  define DEBUG_P_TEST DEBUG_P_TEST_
2393 #  define DEBUG_m_TEST DEBUG_m_TEST_
2394 #  define DEBUG_f_TEST DEBUG_f_TEST_
2395 #  define DEBUG_r_TEST DEBUG_r_TEST_
2396 #  define DEBUG_x_TEST DEBUG_x_TEST_
2397 #  define DEBUG_u_TEST DEBUG_u_TEST_
2398 #  define DEBUG_L_TEST DEBUG_L_TEST_
2399 #  define DEBUG_H_TEST DEBUG_H_TEST_
2400 #  define DEBUG_X_TEST DEBUG_X_TEST_
2401 #  define DEBUG_D_TEST DEBUG_D_TEST_
2402 #  define DEBUG_S_TEST DEBUG_S_TEST_
2403 #  define DEBUG_T_TEST DEBUG_T_TEST_
2404 #  define DEBUG_R_TEST DEBUG_R_TEST_
2405
2406 #  define DEB(a)     a
2407 #  define DEBUG(a)   if (PL_debug)   a
2408 #  define DEBUG_p(a) if (DEBUG_p_TEST) a
2409 #  define DEBUG_s(a) if (DEBUG_s_TEST) a
2410 #  define DEBUG_l(a) if (DEBUG_l_TEST) a
2411 #  define DEBUG_t(a) if (DEBUG_t_TEST) a
2412 #  define DEBUG_o(a) if (DEBUG_o_TEST) a
2413 #  define DEBUG_c(a) if (DEBUG_c_TEST) a
2414 #  define DEBUG_P(a) if (DEBUG_P_TEST) a
2415
2416      /* Temporarily turn off memory debugging in case the a
2417       * does memory allocation, either directly or indirectly. */
2418 #  define DEBUG_m(a)  \
2419     STMT_START {                                                        \
2420         if (PERL_GET_INTERP) { dTHX; if (DEBUG_m_TEST) {PL_debug&=~DEBUG_m_FLAG; a; PL_debug|=DEBUG_m_FLAG;} } \
2421     } STMT_END
2422
2423 #  define DEBUG__(t, a) \
2424         STMT_START { \
2425                 if (t) STMT_START {a;} STMT_END; \
2426         } STMT_END
2427
2428 #  define DEBUG_f(a) DEBUG__(DEBUG_f_TEST, a)
2429 #  define DEBUG_r(a) DEBUG__(DEBUG_r_TEST, a)
2430 #  define DEBUG_x(a) DEBUG__(DEBUG_x_TEST, a)
2431 #  define DEBUG_u(a) DEBUG__(DEBUG_u_TEST, a)
2432 #  define DEBUG_L(a) DEBUG__(DEBUG_L_TEST, a)
2433 #  define DEBUG_H(a) DEBUG__(DEBUG_H_TEST, a)
2434 #  define DEBUG_X(a) DEBUG__(DEBUG_X_TEST, a)
2435 #  define DEBUG_D(a) DEBUG__(DEBUG_D_TEST, a)
2436
2437 #  ifdef USE_5005THREADS
2438 #    define DEBUG_S(a) DEBUG__(DEBUG_S_TEST, a)
2439 #  else
2440 #    define DEBUG_S(a)
2441 #  endif
2442
2443 #  define DEBUG_T(a) DEBUG__(DEBUG_T_TEST, a)
2444 #  define DEBUG_R(a) DEBUG__(DEBUG_R_TEST, a)
2445
2446 #else /* DEBUGGING */
2447
2448 #  define DEBUG_p_TEST (0)
2449 #  define DEBUG_s_TEST (0)
2450 #  define DEBUG_l_TEST (0)
2451 #  define DEBUG_t_TEST (0)
2452 #  define DEBUG_o_TEST (0)
2453 #  define DEBUG_c_TEST (0)
2454 #  define DEBUG_P_TEST (0)
2455 #  define DEBUG_m_TEST (0)
2456 #  define DEBUG_f_TEST (0)
2457 #  define DEBUG_r_TEST (0)
2458 #  define DEBUG_x_TEST (0)
2459 #  define DEBUG_u_TEST (0)
2460 #  define DEBUG_L_TEST (0)
2461 #  define DEBUG_H_TEST (0)
2462 #  define DEBUG_X_TEST (0)
2463 #  define DEBUG_D_TEST (0)
2464 #  define DEBUG_S_TEST (0)
2465 #  define DEBUG_T_TEST (0)
2466 #  define DEBUG_R_TEST (0)
2467
2468 #  define DEB(a)
2469 #  define DEBUG(a)
2470 #  define DEBUG_p(a)
2471 #  define DEBUG_s(a)
2472 #  define DEBUG_l(a)
2473 #  define DEBUG_t(a)
2474 #  define DEBUG_o(a)
2475 #  define DEBUG_c(a)
2476 #  define DEBUG_P(a)
2477 #  define DEBUG_m(a)
2478 #  define DEBUG_f(a)
2479 #  define DEBUG_r(a)
2480 #  define DEBUG_x(a)
2481 #  define DEBUG_u(a)
2482 #  define DEBUG_L(a)
2483 #  define DEBUG_H(a)
2484 #  define DEBUG_X(a)
2485 #  define DEBUG_D(a)
2486 #  define DEBUG_S(a)
2487 #  define DEBUG_T(a)
2488 #  define DEBUG_R(a)
2489 #endif /* DEBUGGING */
2490
2491
2492 /* These constants should be used in preference to raw characters
2493  * when using magic. Note that some perl guts still assume
2494  * certain character properties of these constants, namely that
2495  * isUPPER() and toLOWER() may do useful mappings.
2496  *
2497  * Update the magic_names table in dump.c when adding/amending these
2498  */
2499
2500 #define PERL_MAGIC_sv             '\0' /* Special scalar variable */
2501 #define PERL_MAGIC_overload       'A' /* %OVERLOAD hash */
2502 #define PERL_MAGIC_overload_elem  'a' /* %OVERLOAD hash element */
2503 #define PERL_MAGIC_overload_table 'c' /* Holds overload table (AMT) on stash */
2504 #define PERL_MAGIC_bm             'B' /* Boyer-Moore (fast string search) */
2505 #define PERL_MAGIC_regdata        'D' /* Regex match position data
2506                                         (@+ and @- vars) */
2507 #define PERL_MAGIC_regdatum       'd' /* Regex match position data element */
2508 #define PERL_MAGIC_env            'E' /* %ENV hash */
2509 #define PERL_MAGIC_envelem        'e' /* %ENV hash element */
2510 #define PERL_MAGIC_fm             'f' /* Formline ('compiled' format) */
2511 #define PERL_MAGIC_regex_global   'g' /* m//g target / study()ed string */
2512 #define PERL_MAGIC_isa            'I' /* @ISA array */
2513 #define PERL_MAGIC_isaelem        'i' /* @ISA array element */
2514 #define PERL_MAGIC_nkeys          'k' /* scalar(keys()) lvalue */
2515 #define PERL_MAGIC_dbfile         'L' /* Debugger %_<filename */
2516 #define PERL_MAGIC_dbline         'l' /* Debugger %_<filename element */
2517 #define PERL_MAGIC_mutex          'm' /* ??? */
2518 #define PERL_MAGIC_collxfrm       'o' /* Locale transformation */
2519 #define PERL_MAGIC_tied           'P' /* Tied array or hash */
2520 #define PERL_MAGIC_tiedelem       'p' /* Tied array or hash element */
2521 #define PERL_MAGIC_tiedscalar     'q' /* Tied scalar or handle */
2522 #define PERL_MAGIC_qr             'r' /* precompiled qr// regex */
2523 #define PERL_MAGIC_sig            'S' /* %SIG hash */
2524 #define PERL_MAGIC_sigelem        's' /* %SIG hash element */
2525 #define PERL_MAGIC_taint          't' /* Taintedness */
2526 #define PERL_MAGIC_uvar           'U' /* Available for use by extensions */
2527 #define PERL_MAGIC_vec            'v' /* vec() lvalue */
2528 #define PERL_MAGIC_substr         'x' /* substr() lvalue */
2529 #define PERL_MAGIC_defelem        'y' /* Shadow "foreach" iterator variable /
2530                                         smart parameter vivification */
2531 #define PERL_MAGIC_glob           '*' /* GV (typeglob) */
2532 #define PERL_MAGIC_arylen         '#' /* Array length ($#ary) */
2533 #define PERL_MAGIC_pos            '.' /* pos() lvalue */
2534 #define PERL_MAGIC_backref        '<' /* ??? */
2535 #define PERL_MAGIC_ext            '~' /* Available for use by extensions */
2536
2537
2538 #define YYMAXDEPTH 300
2539
2540 #ifndef assert  /* <assert.h> might have been included somehow */
2541 #define assert(what)    DEB( {                                          \
2542         if (!(what)) {                                                  \
2543             Perl_croak(aTHX_ "Assertion failed: file \"%s\", line %d",  \
2544                 __FILE__, __LINE__);                                    \
2545             PerlProc_exit(1);                                           \
2546         }})
2547 #endif
2548
2549 struct ufuncs {
2550     I32 (*uf_val)(pTHX_ IV, SV*);
2551     I32 (*uf_set)(pTHX_ IV, SV*);
2552     IV uf_index;
2553 };
2554
2555 /* In pre-5.7-Perls the PERL_MAGIC_uvar magic didn't get the thread context.
2556  * XS code wanting to be backward compatible can do something
2557  * like the following:
2558
2559 #ifndef PERL_MG_UFUNC
2560 #define PERL_MG_UFUNC(name,ix,sv) I32 name(IV ix, SV *sv)
2561 #endif
2562
2563 static PERL_MG_UFUNC(foo_get, index, val)
2564 {
2565     sv_setsv(val, ...);
2566     return TRUE;
2567 }
2568
2569 -- Doug MacEachern
2570
2571 */
2572
2573 #ifndef PERL_MG_UFUNC
2574 #define PERL_MG_UFUNC(name,ix,sv) I32 name(pTHX_ IV ix, SV *sv)
2575 #endif
2576
2577 /* Fix these up for __STDC__ */
2578 #ifndef DONT_DECLARE_STD
2579 char *mktemp (char*);
2580 #ifndef atof
2581 double atof (const char*);
2582 #endif
2583 #endif
2584
2585 #ifndef STANDARD_C
2586 /* All of these are in stdlib.h or time.h for ANSI C */
2587 Time_t time();
2588 struct tm *gmtime(), *localtime();
2589 #if defined(OEMVS) || defined(__OPEN_VM)
2590 char *(strchr)(), *(strrchr)();
2591 char *(strcpy)(), *(strcat)();
2592 #else
2593 char *strchr(), *strrchr();
2594 char *strcpy(), *strcat();
2595 #endif
2596 #endif /* ! STANDARD_C */
2597
2598
2599 #ifdef I_MATH
2600 #    include <math.h>
2601 #else
2602 START_EXTERN_C
2603             double exp (double);
2604             double log (double);
2605             double log10 (double);
2606             double sqrt (double);
2607             double frexp (double,int*);
2608             double ldexp (double,int);
2609             double modf (double,double*);
2610             double sin (double);
2611             double cos (double);
2612             double atan2 (double,double);
2613             double pow (double,double);
2614 END_EXTERN_C
2615 #endif
2616
2617 #if !defined(NV_INF) && defined(USE_LONG_DOUBLE) && defined(LDBL_INFINITY)
2618 #  define NV_INF LDBL_INFINITY
2619 #endif
2620 #if !defined(NV_INF) && defined(DBL_INFINITY)
2621 #  define NV_INF (NV)DBL_INFINITY
2622 #endif
2623 #if !defined(NV_INF) && defined(INFINITY)
2624 #  define NV_INF (NV)INFINITY
2625 #endif
2626 #if !defined(NV_INF) && defined(INF)
2627 #  define NV_INF (NV)INF
2628 #endif
2629 #if !defined(NV_INF) && defined(USE_LONG_DOUBLE) && defined(HUGE_VALL)
2630 #  define NV_INF (NV)HUGE_VALL
2631 #endif
2632 #if !defined(NV_INF) && defined(HUGE_VAL)
2633 #  define NV_INF (NV)HUGE_VAL
2634 #endif
2635
2636 #if !defined(NV_NAN) && defined(USE_LONG_DOUBLE)
2637 #   if !defined(NV_NAN) && defined(LDBL_NAN)
2638 #       define NV_NAN LDBL_NAN
2639 #   endif
2640 #   if !defined(NV_NAN) && defined(LDBL_QNAN)
2641 #       define NV_NAN LDBL_QNAN
2642 #   endif
2643 #   if !defined(NV_NAN) && defined(LDBL_SNAN)
2644 #       define NV_NAN LDBL_SNAN
2645 #   endif
2646 #endif
2647 #if !defined(NV_NAN) && defined(DBL_NAN)
2648 #  define NV_NAN (NV)DBL_NAN
2649 #endif
2650 #if !defined(NV_NAN) && defined(DBL_QNAN)
2651 #  define NV_NAN (NV)DBL_QNAN
2652 #endif
2653 #if !defined(NV_NAN) && defined(DBL_SNAN)
2654 #  define NV_NAN (NV)DBL_SNAN
2655 #endif
2656 #if !defined(NV_NAN) && defined(QNAN)
2657 #  define NV_NAN (NV)QNAN
2658 #endif
2659 #if !defined(NV_NAN) && defined(SNAN)
2660 #  define NV_NAN (NV)SNAN
2661 #endif
2662 #if !defined(NV_NAN) && defined(NAN)
2663 #  define NV_NAN (NV)NAN
2664 #endif
2665
2666 #ifndef __cplusplus
2667 #  if defined(NeXT) || defined(__NeXT__) /* or whatever catches all NeXTs */
2668 char *crypt ();       /* Maybe more hosts will need the unprototyped version */
2669 #  else
2670 #    if !defined(WIN32) && !defined(VMS)
2671 char *crypt (const char*, const char*);
2672 #    endif /* !WIN32 */
2673 #  endif /* !NeXT && !__NeXT__ */
2674 #  ifndef DONT_DECLARE_STD
2675 #    ifndef getenv
2676 char *getenv (const char*);
2677 #    endif /* !getenv */
2678 #    if !defined(HAS_LSEEK_PROTO) && !defined(EPOC) && !defined(__hpux)
2679 #      ifdef _FILE_OFFSET_BITS
2680 #        if _FILE_OFFSET_BITS == 64
2681 Off_t lseek (int,Off_t,int);
2682 #        endif
2683 #      endif
2684 #    endif
2685 #  endif /* !DONT_DECLARE_STD */
2686 char *getlogin (void);
2687 #endif /* !__cplusplus */
2688
2689 #ifdef UNLINK_ALL_VERSIONS /* Currently only makes sense for VMS */
2690 #define UNLINK unlnk
2691 I32 unlnk (char*);
2692 #else
2693 #define UNLINK PerlLIO_unlink
2694 #endif
2695
2696 /* some versions of glibc are missing the setresuid() proto */
2697 #if defined(HAS_SETRESUID) && !defined(HAS_SETRESUID_PROTO)
2698 int setresuid(uid_t ruid, uid_t euid, uid_t suid);
2699 #endif
2700 /* some versions of glibc are missing the setresgid() proto */
2701 #if defined(HAS_SETRESGID) && !defined(HAS_SETRESGID_PROTO)
2702 int setresgid(gid_t rgid, gid_t egid, gid_t sgid);
2703 #endif
2704
2705 #ifndef HAS_SETREUID
2706 #  ifdef HAS_SETRESUID
2707 #    define setreuid(r,e) setresuid(r,e,(Uid_t)-1)
2708 #    define HAS_SETREUID
2709 #  endif
2710 #endif
2711 #ifndef HAS_SETREGID
2712 #  ifdef HAS_SETRESGID
2713 #    define setregid(r,e) setresgid(r,e,(Gid_t)-1)
2714 #    define HAS_SETREGID
2715 #  endif
2716 #endif
2717
2718 /* Sighandler_t defined in iperlsys.h */
2719
2720 #ifdef HAS_SIGACTION
2721 typedef struct sigaction Sigsave_t;
2722 #else
2723 typedef Sighandler_t Sigsave_t;
2724 #endif
2725
2726 #define SCAN_DEF 0
2727 #define SCAN_TR 1
2728 #define SCAN_REPL 2
2729
2730 #ifdef DEBUGGING
2731 # ifndef register
2732 #  define register
2733 # endif
2734 # define PAD_SV(po) pad_sv(po)
2735 # define RUNOPS_DEFAULT Perl_runops_debug
2736 #else
2737 # define PAD_SV(po) PL_curpad[po]
2738 # define RUNOPS_DEFAULT Perl_runops_standard
2739 #endif
2740
2741 #ifdef MYMALLOC
2742 #  ifdef MUTEX_INIT_CALLS_MALLOC
2743 #    define MALLOC_INIT                                 \
2744         STMT_START {                                    \
2745                 PL_malloc_mutex = NULL;                 \
2746                 MUTEX_INIT(&PL_malloc_mutex);           \
2747         } STMT_END
2748 #    define MALLOC_TERM                                 \
2749         STMT_START {                                    \
2750                 perl_mutex tmp = PL_malloc_mutex;       \
2751                 PL_malloc_mutex = NULL;                 \
2752                 MUTEX_DESTROY(&tmp);                    \
2753         } STMT_END
2754 #  else
2755 #    define MALLOC_INIT MUTEX_INIT(&PL_malloc_mutex)
2756 #    define MALLOC_TERM MUTEX_DESTROY(&PL_malloc_mutex)
2757 #  endif
2758 #else
2759 #  define MALLOC_INIT
2760 #  define MALLOC_TERM
2761 #endif
2762
2763
2764 typedef int (CPERLscope(*runops_proc_t)) (pTHX);
2765 typedef OP* (CPERLscope(*PPADDR_t)[]) (pTHX);
2766
2767 /* _ (for $_) must be first in the following list (DEFSV requires it) */
2768 #define THREADSV_NAMES "_123456789&`'+/.,\\\";^-%=|~:\001\005!@"
2769
2770 /* NeXT has problems with crt0.o globals */
2771 #if defined(__DYNAMIC__) && \
2772     (defined(NeXT) || defined(__NeXT__) || defined(__APPLE__))
2773 #  if defined(NeXT) || defined(__NeXT)
2774 #    include <mach-o/dyld.h>
2775 #    define environ (*environ_pointer)
2776 EXT char *** environ_pointer;
2777 #  else
2778 #    if defined(__APPLE__) && defined(PERL_CORE)
2779 #      include <crt_externs.h>  /* for the env array */
2780 #      define environ (*_NSGetEnviron())
2781 #    endif
2782 #  endif
2783 #else
2784    /* VMS and some other platforms don't use the environ array */
2785 #  ifdef USE_ENVIRON_ARRAY
2786 #    if !defined(DONT_DECLARE_STD) || \
2787         (defined(__svr4__) && defined(__GNUC__) && defined(sun)) || \
2788         defined(__sgi) || \
2789         defined(__DGUX)
2790 extern char **  environ;        /* environment variables supplied via exec */
2791 #    endif
2792 #  endif
2793 #endif
2794
2795 START_EXTERN_C
2796
2797 /* handy constants */
2798 EXTCONST char PL_warn_uninit[]
2799   INIT("Use of uninitialized value%s%s");
2800 EXTCONST char PL_warn_nosemi[]
2801   INIT("Semicolon seems to be missing");
2802 EXTCONST char PL_warn_reserved[]
2803   INIT("Unquoted string \"%s\" may clash with future reserved word");
2804 EXTCONST char PL_warn_nl[]
2805   INIT("Unsuccessful %s on filename containing newline");
2806 EXTCONST char PL_no_wrongref[]
2807   INIT("Can't use %s ref as %s ref");
2808 EXTCONST char PL_no_symref[]
2809   INIT("Can't use string (\"%.32s\") as %s ref while \"strict refs\" in use");
2810 EXTCONST char PL_no_usym[]
2811   INIT("Can't use an undefined value as %s reference");
2812 EXTCONST char PL_no_aelem[]
2813   INIT("Modification of non-creatable array value attempted, subscript %d");
2814 EXTCONST char PL_no_helem[]
2815   INIT("Modification of non-creatable hash value attempted, subscript \"%s\"");
2816 EXTCONST char PL_no_modify[]
2817   INIT("Modification of a read-only value attempted");
2818 EXTCONST char PL_no_mem[]
2819   INIT("Out of memory!\n");
2820 EXTCONST char PL_no_security[]
2821   INIT("Insecure dependency in %s%s");
2822 EXTCONST char PL_no_sock_func[]
2823   INIT("Unsupported socket function \"%s\" called");
2824 EXTCONST char PL_no_dir_func[]
2825   INIT("Unsupported directory function \"%s\" called");
2826 EXTCONST char PL_no_func[]
2827   INIT("The %s function is unimplemented");
2828 EXTCONST char PL_no_myglob[]
2829   INIT("\"my\" variable %s can't be in a package");
2830
2831 EXTCONST char PL_uuemap[65]
2832   INIT("`!\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_");
2833
2834
2835 #ifdef DOINIT
2836 EXT char *PL_sig_name[] = { SIG_NAME };
2837 EXT int   PL_sig_num[]  = { SIG_NUM };
2838 #else
2839 EXT char *PL_sig_name[];
2840 EXT int   PL_sig_num[];
2841 #endif
2842
2843 /* fast conversion and case folding tables */
2844
2845 #ifdef DOINIT
2846 #ifdef EBCDIC
2847 EXT unsigned char PL_fold[] = { /* fast EBCDIC case folding table */
2848     0,      1,      2,      3,      4,      5,      6,      7,
2849     8,      9,      10,     11,     12,     13,     14,     15,
2850     16,     17,     18,     19,     20,     21,     22,     23,
2851     24,     25,     26,     27,     28,     29,     30,     31,
2852     32,     33,     34,     35,     36,     37,     38,     39,
2853     40,     41,     42,     43,     44,     45,     46,     47,
2854     48,     49,     50,     51,     52,     53,     54,     55,
2855     56,     57,     58,     59,     60,     61,     62,     63,
2856     64,     65,     66,     67,     68,     69,     70,     71,
2857     72,     73,     74,     75,     76,     77,     78,     79,
2858     80,     81,     82,     83,     84,     85,     86,     87,
2859     88,     89,     90,     91,     92,     93,     94,     95,
2860     96,     97,     98,     99,     100,    101,    102,    103,
2861     104,    105,    106,    107,    108,    109,    110,    111,
2862     112,    113,    114,    115,    116,    117,    118,    119,
2863     120,    121,    122,    123,    124,    125,    126,    127,
2864     128,    'A',    'B',    'C',    'D',    'E',    'F',    'G',
2865     'H',    'I',    138,    139,    140,    141,    142,    143,
2866     144,    'J',    'K',    'L',    'M',    'N',    'O',    'P',
2867     'Q',    'R',    154,    155,    156,    157,    158,    159,
2868     160,    161,    'S',    'T',    'U',    'V',    'W',    'X',
2869     'Y',    'Z',    170,    171,    172,    173,    174,    175,
2870     176,    177,    178,    179,    180,    181,    182,    183,
2871     184,    185,    186,    187,    188,    189,    190,    191,
2872     192,    'a',    'b',    'c',    'd',    'e',    'f',    'g',
2873     'h',    'i',    202,    203,    204,    205,    206,    207,
2874     208,    'j',    'k',    'l',    'm',    'n',    'o',    'p',
2875     'q',    'r',    218,    219,    220,    221,    222,    223,
2876     224,    225,    's',    't',    'u',    'v',    'w',    'x',
2877     'y',    'z',    234,    235,    236,    237,    238,    239,
2878     240,    241,    242,    243,    244,    245,    246,    247,
2879     248,    249,    250,    251,    252,    253,    254,    255
2880 };
2881 #else   /* ascii rather than ebcdic */
2882 EXTCONST  unsigned char PL_fold[] = {
2883         0,      1,      2,      3,      4,      5,      6,      7,
2884         8,      9,      10,     11,     12,     13,     14,     15,
2885         16,     17,     18,     19,     20,     21,     22,     23,
2886         24,     25,     26,     27,     28,     29,     30,     31,
2887         32,     33,     34,     35,     36,     37,     38,     39,
2888         40,     41,     42,     43,     44,     45,     46,     47,
2889         48,     49,     50,     51,     52,     53,     54,     55,
2890         56,     57,     58,     59,     60,     61,     62,     63,
2891         64,     'a',    'b',    'c',    'd',    'e',    'f',    'g',
2892         'h',    'i',    'j',    'k',    'l',    'm',    'n',    'o',
2893         'p',    'q',    'r',    's',    't',    'u',    'v',    'w',
2894         'x',    'y',    'z',    91,     92,     93,     94,     95,
2895         96,     'A',    'B',    'C',    'D',    'E',    'F',    'G',
2896         'H',    'I',    'J',    'K',    'L',    'M',    'N',    'O',
2897         'P',    'Q',    'R',    'S',    'T',    'U',    'V',    'W',
2898         'X',    'Y',    'Z',    123,    124,    125,    126,    127,
2899         128,    129,    130,    131,    132,    133,    134,    135,
2900         136,    137,    138,    139,    140,    141,    142,    143,
2901         144,    145,    146,    147,    148,    149,    150,    151,
2902         152,    153,    154,    155,    156,    157,    158,    159,
2903         160,    161,    162,    163,    164,    165,    166,    167,
2904         168,    169,    170,    171,    172,    173,    174,    175,
2905         176,    177,    178,    179,    180,    181,    182,    183,
2906         184,    185,    186,    187,    188,    189,    190,    191,
2907         192,    193,    194,    195,    196,    197,    198,    199,
2908         200,    201,    202,    203,    204,    205,    206,    207,
2909         208,    209,    210,    211,    212,    213,    214,    215,
2910         216,    217,    218,    219,    220,    221,    222,    223,    
2911         224,    225,    226,    227,    228,    229,    230,    231,
2912         232,    233,    234,    235,    236,    237,    238,    239,
2913         240,    241,    242,    243,    244,    245,    246,    247,
2914         248,    249,    250,    251,    252,    253,    254,    255
2915 };
2916 #endif  /* !EBCDIC */
2917 #else
2918 EXTCONST unsigned char PL_fold[];
2919 #endif
2920
2921 #ifdef DOINIT
2922 EXT unsigned char PL_fold_locale[] = {
2923         0,      1,      2,      3,      4,      5,      6,      7,
2924         8,      9,      10,     11,     12,     13,     14,     15,
2925         16,     17,     18,     19,     20,     21,     22,     23,
2926         24,     25,     26,     27,     28,     29,     30,     31,
2927         32,     33,     34,     35,     36,     37,     38,     39,
2928         40,     41,     42,     43,     44,     45,     46,     47,
2929         48,     49,     50,     51,     52,     53,     54,     55,
2930         56,     57,     58,     59,     60,     61,     62,     63,
2931         64,     'a',    'b',    'c',    'd',    'e',    'f',    'g',
2932         'h',    'i',    'j',    'k',    'l',    'm',    'n',    'o',
2933         'p',    'q',    'r',    's',    't',    'u',    'v',    'w',
2934         'x',    'y',    'z',    91,     92,     93,     94,     95,
2935         96,     'A',    'B',    'C',    'D',    'E',    'F',    'G',
2936         'H',    'I',    'J',    'K',    'L',    'M',    'N',    'O',
2937         'P',    'Q',    'R',    'S',    'T',    'U',    'V',    'W',
2938         'X',    'Y',    'Z',    123,    124,    125,    126,    127,
2939         128,    129,    130,    131,    132,    133,    134,    135,
2940         136,    137,    138,    139,    140,    141,    142,    143,
2941         144,    145,    146,    147,    148,    149,    150,    151,
2942         152,    153,    154,    155,    156,    157,    158,    159,
2943         160,    161,    162,    163,    164,    165,    166,    167,
2944         168,    169,    170,    171,    172,    173,    174,    175,
2945         176,    177,    178,    179,    180,    181,    182,    183,
2946         184,    185,    186,    187,    188,    189,    190,    191,
2947         192,    193,    194,    195,    196,    197,    198,    199,
2948         200,    201,    202,    203,    204,    205,    206,    207,
2949         208,    209,    210,    211,    212,    213,    214,    215,
2950         216,    217,    218,    219,    220,    221,    222,    223,    
2951         224,    225,    226,    227,    228,    229,    230,    231,
2952         232,    233,    234,    235,    236,    237,    238,    239,
2953         240,    241,    242,    243,    244,    245,    246,    247,
2954         248,    249,    250,    251,    252,    253,    254,    255
2955 };
2956 #else
2957 EXT unsigned char PL_fold_locale[];
2958 #endif
2959
2960 #ifdef DOINIT
2961 #ifdef EBCDIC
2962 EXT unsigned char PL_freq[] = {/* EBCDIC frequencies for mixed English/C */
2963     1,      2,      84,     151,    154,    155,    156,    157,
2964     165,    246,    250,    3,      158,    7,      18,     29,
2965     40,     51,     62,     73,     85,     96,     107,    118,
2966     129,    140,    147,    148,    149,    150,    152,    153,
2967     255,      6,      8,      9,     10,     11,     12,     13,
2968      14,     15,     24,     25,     26,     27,     28,    226,
2969      29,     30,     31,     32,     33,     43,     44,     45,
2970      46,     47,     48,     49,     50,     76,     77,     78,
2971      79,     80,     81,     82,     83,     84,     85,     86,
2972      87,     94,     95,    234,    181,    233,    187,    190,
2973     180,     96,     97,     98,     99,    100,    101,    102,
2974     104,    112,    182,    174,    236,    232,    229,    103,
2975     228,    226,    114,    115,    116,    117,    118,    119,
2976     120,    121,    122,    235,    176,    230,    194,    162,
2977     130,    131,    132,    133,    134,    135,    136,    137,
2978     138,    139,    201,    205,    163,    217,    220,    224,
2979     5,      248,    227,    244,    242,    255,    241,    231,
2980     240,    253,    16,     197,    19,     20,     21,     187,
2981     23,     169,    210,    245,    237,    249,    247,    239,
2982     168,    252,    34,     196,    36,     37,     38,     39,
2983     41,     42,     251,    254,    238,    223,    221,    213,
2984     225,    177,    52,     53,     54,     55,     56,     57,
2985     58,     59,     60,     61,     63,     64,     65,     66,
2986     67,     68,     69,     70,     71,     72,     74,     75,
2987     205,    208,    186,    202,    200,    218,    198,    179,
2988     178,    214,    88,     89,     90,     91,     92,     93,
2989     217,    166,    170,    207,    199,    209,    206,    204,
2990     160,    212,    105,    106,    108,    109,    110,    111,
2991     203,    113,    216,    215,    192,    175,    193,    243,
2992     172,    161,    123,    124,    125,    126,    127,    128,
2993     222,    219,    211,    195,    188,    193,    185,    184,
2994     191,    183,    141,    142,    143,    144,    145,    146
2995 };
2996 #else  /* ascii rather than ebcdic */
2997 EXTCONST unsigned char PL_freq[] = {    /* letter frequencies for mixed English/C */
2998         1,      2,      84,     151,    154,    155,    156,    157,
2999         165,    246,    250,    3,      158,    7,      18,     29,
3000         40,     51,     62,     73,     85,     96,     107,    118,
3001         129,    140,    147,    148,    149,    150,    152,    153,
3002         255,    182,    224,    205,    174,    176,    180,    217,
3003         233,    232,    236,    187,    235,    228,    234,    226,
3004         222,    219,    211,    195,    188,    193,    185,    184,
3005         191,    183,    201,    229,    181,    220,    194,    162,
3006         163,    208,    186,    202,    200,    218,    198,    179,
3007         178,    214,    166,    170,    207,    199,    209,    206,
3008         204,    160,    212,    216,    215,    192,    175,    173,
3009         243,    172,    161,    190,    203,    189,    164,    230,
3010         167,    248,    227,    244,    242,    255,    241,    231,
3011         240,    253,    169,    210,    245,    237,    249,    247,
3012         239,    168,    252,    251,    254,    238,    223,    221,
3013         213,    225,    177,    197,    171,    196,    159,    4,
3014         5,      6,      8,      9,      10,     11,     12,     13,
3015         14,     15,     16,     17,     19,     20,     21,     22,
3016         23,     24,     25,     26,     27,     28,     30,     31,
3017         32,     33,     34,     35,     36,     37,     38,     39,
3018         41,     42,     43,     44,     45,     46,     47,     48,
3019         49,     50,     52,     53,     54,     55,     56,     57,
3020         58,     59,     60,     61,     63,     64,     65,     66,
3021         67,     68,     69,     70,     71,     72,     74,     75,
3022         76,     77,     78,     79,     80,     81,     82,     83,
3023         86,     87,     88,     89,     90,     91,     92,     93,
3024         94,     95,     97,     98,     99,     100,    101,    102,
3025         103,    104,    105,    106,    108,    109,    110,    111,
3026         112,    113,    114,    115,    116,    117,    119,    120,
3027         121,    122,    123,    124,    125,    126,    127,    128,
3028         130,    131,    132,    133,    134,    135,    136,    137,
3029         138,    139,    141,    142,    143,    144,    145,    146
3030 };
3031 #endif
3032 #else
3033 EXTCONST unsigned char PL_freq[];
3034 #endif
3035
3036 #ifdef DEBUGGING
3037 #ifdef DOINIT
3038 EXTCONST char* PL_block_type[] = {
3039         "NULL",
3040         "SUB",
3041         "EVAL",
3042         "LOOP",
3043         "SUBST",
3044         "BLOCK",
3045 };
3046 #else
3047 EXTCONST char* PL_block_type[];
3048 #endif
3049 #endif
3050
3051 END_EXTERN_C
3052
3053 /*****************************************************************************/
3054 /* This lexer/parser stuff is currently global since yacc is hard to reenter */
3055 /*****************************************************************************/
3056 /* XXX This needs to be revisited, since BEGIN makes yacc re-enter... */
3057
3058 #include "perly.h"
3059
3060 #define LEX_NOTPARSING          11      /* borrowed from toke.c */
3061
3062 typedef enum {
3063     XOPERATOR,
3064     XTERM,
3065     XREF,
3066     XSTATE,
3067     XBLOCK,
3068     XATTRBLOCK,
3069     XATTRTERM,
3070     XTERMBLOCK
3071 } expectation;
3072
3073 enum {          /* pass one of these to get_vtbl */
3074     want_vtbl_sv,
3075     want_vtbl_env,
3076     want_vtbl_envelem,
3077     want_vtbl_sig,
3078     want_vtbl_sigelem,
3079     want_vtbl_pack,
3080     want_vtbl_packelem,
3081     want_vtbl_dbline,
3082     want_vtbl_isa,
3083     want_vtbl_isaelem,
3084     want_vtbl_arylen,
3085     want_vtbl_glob,
3086     want_vtbl_mglob,
3087     want_vtbl_nkeys,
3088     want_vtbl_taint,
3089     want_vtbl_substr,
3090     want_vtbl_vec,
3091     want_vtbl_pos,
3092     want_vtbl_bm,
3093     want_vtbl_fm,
3094     want_vtbl_uvar,
3095     want_vtbl_defelem,
3096     want_vtbl_regexp,
3097     want_vtbl_collxfrm,
3098     want_vtbl_amagic,
3099     want_vtbl_amagicelem,
3100 #ifdef USE_5005THREADS
3101     want_vtbl_mutex,
3102 #endif
3103     want_vtbl_regdata,
3104     want_vtbl_regdatum,
3105     want_vtbl_backref
3106 };
3107
3108                                 /* Note: the lowest 8 bits are reserved for
3109                                    stuffing into op->op_private */
3110 #define HINT_PRIVATE_MASK       0x000000ff
3111 #define HINT_INTEGER            0x00000001
3112 #define HINT_STRICT_REFS        0x00000002
3113 #define HINT_LOCALE             0x00000004
3114 #define HINT_BYTES              0x00000008
3115 /* #define HINT_notused10       0x00000010 */
3116                                 /* Note: 20,40,80 used for NATIVE_HINTS */
3117
3118 #define HINT_BLOCK_SCOPE        0x00000100
3119 #define HINT_STRICT_SUBS        0x00000200
3120 #define HINT_STRICT_VARS        0x00000400
3121
3122 #define HINT_NEW_INTEGER        0x00001000
3123 #define HINT_NEW_FLOAT          0x00002000
3124 #define HINT_NEW_BINARY         0x00004000
3125 #define HINT_NEW_STRING         0x00008000
3126 #define HINT_NEW_RE             0x00010000
3127 #define HINT_LOCALIZE_HH        0x00020000 /* %^H needs to be copied */
3128
3129 #define HINT_RE_TAINT           0x00100000
3130 #define HINT_RE_EVAL            0x00200000
3131
3132 #define HINT_FILETEST_ACCESS    0x00400000
3133 #define HINT_UTF8               0x00800000
3134
3135 #define HINT_SORT_SORT_BITS     0x000000FF /* allow 256 different ones */
3136 #define HINT_SORT_QUICKSORT     0x00000001
3137 #define HINT_SORT_MERGESORT     0x00000002
3138 #define HINT_SORT_STABLE        0x00000100 /* sort styles (currently one) */
3139
3140 /* Various states of the input record separator SV (rs) */
3141 #define RsSNARF(sv)   (! SvOK(sv))
3142 #define RsSIMPLE(sv)  (SvOK(sv) && (! SvPOK(sv) || SvCUR(sv)))
3143 #define RsPARA(sv)    (SvPOK(sv) && ! SvCUR(sv))
3144 #define RsRECORD(sv)  (SvROK(sv) && (SvIV(SvRV(sv)) > 0))
3145
3146 /* A struct for keeping various DEBUGGING related stuff,
3147  * neatly packed.  Currently only scratch variables for
3148  * constructing debug output are included.  Needed always,
3149  * not just when DEBUGGING, though, because of the re extension. c*/
3150 struct perl_debug_pad {
3151   SV pad[3];
3152 };
3153
3154 #define PERL_DEBUG_PAD(i)       &(PL_debug_pad.pad[i])
3155 #define PERL_DEBUG_PAD_ZERO(i)  (sv_setpvn(PERL_DEBUG_PAD(i), "", 0), PERL_DEBUG_PAD(i))
3156
3157 /* Enable variables which are pointers to functions */
3158 typedef void (CPERLscope(*peep_t))(pTHX_ OP* o);
3159 typedef regexp*(CPERLscope(*regcomp_t)) (pTHX_ char* exp, char* xend, PMOP* pm);
3160 typedef I32 (CPERLscope(*regexec_t)) (pTHX_ regexp* prog, char* stringarg,
3161                                       char* strend, char* strbeg, I32 minend,
3162                                       SV* screamer, void* data, U32 flags);
3163 typedef char* (CPERLscope(*re_intuit_start_t)) (pTHX_ regexp *prog, SV *sv,
3164                                                 char *strpos, char *strend,
3165                                                 U32 flags,
3166                                                 struct re_scream_pos_data_s *d);
3167 typedef SV*     (CPERLscope(*re_intuit_string_t)) (pTHX_ regexp *prog);
3168 typedef void    (CPERLscope(*regfree_t)) (pTHX_ struct regexp* r);
3169
3170 typedef void (*DESTRUCTORFUNC_NOCONTEXT_t) (void*);
3171 typedef void (*DESTRUCTORFUNC_t) (pTHX_ void*);
3172 typedef void (*SVFUNC_t) (pTHX_ SV*);
3173 typedef I32  (*SVCOMPARE_t) (pTHX_ SV*, SV*);
3174 typedef void (*XSINIT_t) (pTHX);
3175 typedef void (*ATEXIT_t) (pTHX_ void*);
3176 typedef void (*XSUBADDR_t) (pTHX_ CV *);
3177
3178 /* Set up PERLVAR macros for populating structs */
3179 #define PERLVAR(var,type) type var;
3180 #define PERLVARA(var,n,type) type var[n];
3181 #define PERLVARI(var,type,init) type var;
3182 #define PERLVARIC(var,type,init) type var;
3183
3184 /* Interpreter exitlist entry */
3185 typedef struct exitlistentry {
3186     void (*fn) (pTHX_ void*);
3187     void *ptr;
3188 } PerlExitListEntry;
3189
3190 #ifdef PERL_GLOBAL_STRUCT
3191 struct perl_vars {
3192 #  include "perlvars.h"
3193 };
3194
3195 #  ifdef PERL_CORE
3196 EXT struct perl_vars PL_Vars;
3197 EXT struct perl_vars *PL_VarsPtr INIT(&PL_Vars);
3198 #  else /* PERL_CORE */
3199 #    if !defined(__GNUC__) || !defined(WIN32)
3200 EXT
3201 #    endif /* WIN32 */
3202 struct perl_vars *PL_VarsPtr;
3203 #    define PL_Vars (*((PL_VarsPtr) \
3204                        ? PL_VarsPtr : (PL_VarsPtr = Perl_GetVars(aTHX))))
3205 #  endif /* PERL_CORE */
3206 #endif /* PERL_GLOBAL_STRUCT */
3207
3208 #if defined(MULTIPLICITY)
3209 /* If we have multiple interpreters define a struct
3210    holding variables which must be per-interpreter
3211    If we don't have threads anything that would have
3212    be per-thread is per-interpreter.
3213 */
3214
3215 struct interpreter {
3216 #  ifndef USE_5005THREADS
3217 #    include "thrdvar.h"
3218 #  endif
3219 #  include "intrpvar.h"
3220 /*
3221  * The following is a buffer where new variables must
3222  * be defined to maintain binary compatibility with previous versions
3223  */
3224 PERLVARA(object_compatibility,30,       char)
3225 };
3226
3227 #else
3228 struct interpreter {
3229     char broiled;
3230 };
3231 #endif /* MULTIPLICITY */
3232
3233 #ifdef USE_5005THREADS
3234 /* If we have threads define a struct with all the variables
3235  * that have to be per-thread
3236  */
3237
3238
3239 struct perl_thread {
3240 #include "thrdvar.h"
3241 };
3242
3243 typedef struct perl_thread *Thread;
3244
3245 #else
3246 typedef void *Thread;
3247 #endif
3248
3249 /* Done with PERLVAR macros for now ... */
3250 #undef PERLVAR
3251 #undef PERLVARA
3252 #undef PERLVARI
3253 #undef PERLVARIC
3254
3255 #include "thread.h"
3256 #include "pp.h"
3257
3258 #ifndef PERL_CALLCONV
3259 #  define PERL_CALLCONV
3260 #endif
3261
3262 #ifndef NEXT30_NO_ATTRIBUTE
3263 #  ifndef HASATTRIBUTE       /* disable GNU-cc attribute checking? */
3264 #    ifdef  __attribute__      /* Avoid possible redefinition errors */
3265 #      undef  __attribute__
3266 #    endif
3267 #    define __attribute__(attr)
3268 #  endif
3269 #endif
3270
3271 #undef PERL_CKDEF
3272 #undef PERL_PPDEF
3273 #define PERL_CKDEF(s)   OP *s (pTHX_ OP *o);
3274 #define PERL_PPDEF(s)   OP *s (pTHX);
3275
3276 #include "proto.h"
3277
3278 /* this has structure inits, so it cannot be included before here */
3279 #include "opcode.h"
3280
3281 /* The following must follow proto.h as #defines mess up syntax */
3282
3283 #if !defined(PERL_FOR_X2P)
3284 #  include "embedvar.h"
3285 #endif
3286
3287 /* Now include all the 'global' variables
3288  * If we don't have threads or multiple interpreters
3289  * these include variables that would have been their struct-s
3290  */
3291
3292 #define PERLVAR(var,type) EXT type PL_##var;
3293 #define PERLVARA(var,n,type) EXT type PL_##var[n];
3294 #define PERLVARI(var,type,init) EXT type  PL_##var INIT(init);
3295 #define PERLVARIC(var,type,init) EXTCONST type PL_##var INIT(init);
3296
3297 #if !defined(MULTIPLICITY)
3298 START_EXTERN_C
3299 #  include "intrpvar.h"
3300 #  ifndef USE_5005THREADS
3301 #    include "thrdvar.h"
3302 #  endif
3303 END_EXTERN_C
3304 #endif
3305
3306 #if defined(WIN32)
3307 /* Now all the config stuff is setup we can include embed.h */
3308 #  include "embed.h"
3309 #endif
3310
3311 #ifndef PERL_GLOBAL_STRUCT
3312 START_EXTERN_C
3313
3314 #  include "perlvars.h"
3315
3316 END_EXTERN_C
3317 #endif
3318
3319 #undef PERLVAR
3320 #undef PERLVARA
3321 #undef PERLVARI
3322 #undef PERLVARIC
3323
3324 START_EXTERN_C
3325
3326 #ifdef DOINIT
3327
3328 EXT MGVTBL PL_vtbl_sv = {MEMBER_TO_FPTR(Perl_magic_get),
3329                                 MEMBER_TO_FPTR(Perl_magic_set),
3330                                         MEMBER_TO_FPTR(Perl_magic_len),
3331                                                 0,      0};
3332 EXT MGVTBL PL_vtbl_env =        {0,     MEMBER_TO_FPTR(Perl_magic_set_all_env),
3333                                 0,      MEMBER_TO_FPTR(Perl_magic_clear_all_env),
3334                                                         0};
3335 EXT MGVTBL PL_vtbl_envelem =    {0,     MEMBER_TO_FPTR(Perl_magic_setenv),
3336                                         0,      MEMBER_TO_FPTR(Perl_magic_clearenv),
3337                                                         0};
3338 EXT MGVTBL PL_vtbl_sig =        {0,     0,               0, 0, 0};
3339 #ifdef PERL_MICRO
3340 EXT MGVTBL PL_vtbl_sigelem =    {0,     0,               0, 0, 0};
3341 #else
3342 EXT MGVTBL PL_vtbl_sigelem =    {MEMBER_TO_FPTR(Perl_magic_getsig),
3343                                         MEMBER_TO_FPTR(Perl_magic_setsig),
3344                                         0,      MEMBER_TO_FPTR(Perl_magic_clearsig),
3345                                                         0};
3346 #endif
3347 EXT MGVTBL PL_vtbl_pack =       {0,     0,      MEMBER_TO_FPTR(Perl_magic_sizepack),    MEMBER_TO_FPTR(Perl_magic_wipepack),
3348                                                         0};
3349 EXT MGVTBL PL_vtbl_packelem =   {MEMBER_TO_FPTR(Perl_magic_getpack),
3350                                 MEMBER_TO_FPTR(Perl_magic_setpack),
3351                                         0,      MEMBER_TO_FPTR(Perl_magic_clearpack),
3352                                                         0};
3353 EXT MGVTBL PL_vtbl_dbline =     {0,     MEMBER_TO_FPTR(Perl_magic_setdbline),
3354                                         0,      0,      0};
3355 EXT MGVTBL PL_vtbl_isa =        {0,     MEMBER_TO_FPTR(Perl_magic_setisa),
3356                                         0,      MEMBER_TO_FPTR(Perl_magic_setisa),
3357                                                         0};
3358 EXT MGVTBL PL_vtbl_isaelem =    {0,     MEMBER_TO_FPTR(Perl_magic_setisa),
3359                                         0,      0,      0};
3360 EXT MGVTBL PL_vtbl_arylen =     {MEMBER_TO_FPTR(Perl_magic_getarylen),
3361                                 MEMBER_TO_FPTR(Perl_magic_setarylen),
3362                                         0,      0,      0};
3363 EXT MGVTBL PL_vtbl_glob =       {MEMBER_TO_FPTR(Perl_magic_getglob),
3364                                 MEMBER_TO_FPTR(Perl_magic_setglob),
3365                                         0,      0,      0};
3366 EXT MGVTBL PL_vtbl_mglob =      {0,     MEMBER_TO_FPTR(Perl_magic_setmglob),
3367                                         0,      0,      0};
3368 EXT MGVTBL PL_vtbl_nkeys =      {MEMBER_TO_FPTR(Perl_magic_getnkeys),
3369                                 MEMBER_TO_FPTR(Perl_magic_setnkeys),
3370                                         0,      0,      0};
3371 EXT MGVTBL PL_vtbl_taint =      {MEMBER_TO_FPTR(Perl_magic_gettaint),MEMBER_TO_FPTR(Perl_magic_settaint),
3372                                         0,      0,      0};
3373 EXT MGVTBL PL_vtbl_substr =     {MEMBER_TO_FPTR(Perl_magic_getsubstr), MEMBER_TO_FPTR(Perl_magic_setsubstr),
3374                                         0,      0,      0};
3375 EXT MGVTBL PL_vtbl_vec =        {MEMBER_TO_FPTR(Perl_magic_getvec),
3376                                 MEMBER_TO_FPTR(Perl_magic_setvec),
3377                                         0,      0,      0};
3378 EXT MGVTBL PL_vtbl_pos =        {MEMBER_TO_FPTR(Perl_magic_getpos),
3379                                 MEMBER_TO_FPTR(Perl_magic_setpos),
3380                                         0,      0,      0};
3381 EXT MGVTBL PL_vtbl_bm = {0,     MEMBER_TO_FPTR(Perl_magic_setbm),
3382                                         0,      0,      0};
3383 EXT MGVTBL PL_vtbl_fm = {0,     MEMBER_TO_FPTR(Perl_magic_setfm),
3384                                         0,      0,      0};
3385 EXT MGVTBL PL_vtbl_uvar =       {MEMBER_TO_FPTR(Perl_magic_getuvar),
3386                                 MEMBER_TO_FPTR(Perl_magic_setuvar),
3387                                         0,      0,      0};
3388 #ifdef USE_5005THREADS
3389 EXT MGVTBL PL_vtbl_mutex =      {0,     0,      0,      0,      MEMBER_TO_FPTR(Perl_magic_mutexfree)};
3390 #endif /* USE_5005THREADS */
3391 EXT MGVTBL PL_vtbl_defelem = {MEMBER_TO_FPTR(Perl_magic_getdefelem),MEMBER_TO_FPTR(Perl_magic_setdefelem),
3392                                         0,      0,      0};
3393
3394 EXT MGVTBL PL_vtbl_regexp = {0,0,0,0, MEMBER_TO_FPTR(Perl_magic_freeregexp)};
3395 EXT MGVTBL PL_vtbl_regdata = {0, 0, MEMBER_TO_FPTR(Perl_magic_regdata_cnt), 0, 0};
3396 EXT MGVTBL PL_vtbl_regdatum = {MEMBER_TO_FPTR(Perl_magic_regdatum_get),
3397                                MEMBER_TO_FPTR(Perl_magic_regdatum_set), 0, 0, 0};
3398
3399 #ifdef USE_LOCALE_COLLATE
3400 EXT MGVTBL PL_vtbl_collxfrm = {0,
3401                                 MEMBER_TO_FPTR(Perl_magic_setcollxfrm),
3402                                         0,      0,      0};
3403 #endif
3404
3405 EXT MGVTBL PL_vtbl_amagic =       {0,     MEMBER_TO_FPTR(Perl_magic_setamagic),
3406                                         0,      0,      MEMBER_TO_FPTR(Perl_magic_setamagic)};
3407 EXT MGVTBL PL_vtbl_amagicelem =   {0,     MEMBER_TO_FPTR(Perl_magic_setamagic),
3408                                         0,      0,      MEMBER_TO_FPTR(Perl_magic_setamagic)};
3409
3410 EXT MGVTBL PL_vtbl_backref =      {0,   0,
3411                                         0,      0,      MEMBER_TO_FPTR(Perl_magic_killbackrefs)};
3412
3413 EXT MGVTBL PL_vtbl_ovrld   =      {0,   0,
3414                                         0,      0,      MEMBER_TO_FPTR(Perl_magic_freeovrld)};
3415
3416 #else /* !DOINIT */
3417
3418 EXT MGVTBL PL_vtbl_sv;
3419 EXT MGVTBL PL_vtbl_env;
3420 EXT MGVTBL PL_vtbl_envelem;
3421 EXT MGVTBL PL_vtbl_sig;
3422 EXT MGVTBL PL_vtbl_sigelem;
3423 EXT MGVTBL PL_vtbl_pack;
3424 EXT MGVTBL PL_vtbl_packelem;
3425 EXT MGVTBL PL_vtbl_dbline;
3426 EXT MGVTBL PL_vtbl_isa;
3427 EXT MGVTBL PL_vtbl_isaelem;
3428 EXT MGVTBL PL_vtbl_arylen;
3429 EXT MGVTBL PL_vtbl_glob;
3430 EXT MGVTBL PL_vtbl_mglob;
3431 EXT MGVTBL PL_vtbl_nkeys;
3432 EXT MGVTBL PL_vtbl_taint;
3433 EXT MGVTBL PL_vtbl_substr;
3434 EXT MGVTBL PL_vtbl_vec;
3435 EXT MGVTBL PL_vtbl_pos;
3436 EXT MGVTBL PL_vtbl_bm;
3437 EXT MGVTBL PL_vtbl_fm;
3438 EXT MGVTBL PL_vtbl_uvar;
3439 EXT MGVTBL PL_vtbl_ovrld;
3440
3441 #ifdef USE_5005THREADS
3442 EXT MGVTBL PL_vtbl_mutex;
3443 #endif /* USE_5005THREADS */
3444
3445 EXT MGVTBL PL_vtbl_defelem;
3446 EXT MGVTBL PL_vtbl_regexp;
3447 EXT MGVTBL PL_vtbl_regdata;
3448 EXT MGVTBL PL_vtbl_regdatum;
3449
3450 #ifdef USE_LOCALE_COLLATE
3451 EXT MGVTBL PL_vtbl_collxfrm;
3452 #endif
3453
3454 EXT MGVTBL PL_vtbl_amagic;
3455 EXT MGVTBL PL_vtbl_amagicelem;
3456
3457 EXT MGVTBL PL_vtbl_backref;
3458
3459 #endif /* !DOINIT */
3460
3461 enum {
3462   fallback_amg,        abs_amg,
3463   bool__amg,   nomethod_amg,
3464   string_amg,  numer_amg,
3465   add_amg,     add_ass_amg,
3466   subtr_amg,   subtr_ass_amg,
3467   mult_amg,    mult_ass_amg,
3468   div_amg,     div_ass_amg,
3469   modulo_amg,  modulo_ass_amg,
3470   pow_amg,     pow_ass_amg,
3471   lshift_amg,  lshift_ass_amg,
3472   rshift_amg,  rshift_ass_amg,
3473   band_amg,    band_ass_amg,
3474   bor_amg,     bor_ass_amg,
3475   bxor_amg,    bxor_ass_amg,
3476   lt_amg,      le_amg,
3477   gt_amg,      ge_amg,
3478   eq_amg,      ne_amg,
3479   ncmp_amg,    scmp_amg,
3480   slt_amg,     sle_amg,
3481   sgt_amg,     sge_amg,
3482   seq_amg,     sne_amg,
3483   not_amg,     compl_amg,
3484   inc_amg,     dec_amg,
3485   atan2_amg,   cos_amg,
3486   sin_amg,     exp_amg,
3487   log_amg,     sqrt_amg,
3488   repeat_amg,   repeat_ass_amg,
3489   concat_amg,  concat_ass_amg,
3490   copy_amg,    neg_amg,
3491   to_sv_amg,   to_av_amg,
3492   to_hv_amg,   to_gv_amg,
3493   to_cv_amg,   iter_amg,
3494   int_amg,      DESTROY_amg,
3495   max_amg_code
3496   /* Do not leave a trailing comma here.  C9X allows it, C89 doesn't. */
3497 };
3498
3499 #define NofAMmeth max_amg_code
3500 #define AMG_id2name(id) ((char*)PL_AMG_names[id]+1)
3501
3502 #ifdef DOINIT
3503 EXTCONST char * PL_AMG_names[NofAMmeth] = {
3504   /* Names kept in the symbol table.  fallback => "()", the rest has
3505      "(" prepended.  The only other place in perl which knows about
3506      this convention is AMG_id2name (used for debugging output and
3507      'nomethod' only), the only other place which has it hardwired is
3508      overload.pm.  */
3509   "()",         "(abs",                 /* "fallback" should be the first. */
3510   "(bool",      "(nomethod",
3511   "(\"\"",      "(0+",
3512   "(+",         "(+=",
3513   "(-",         "(-=",
3514   "(*",         "(*=",
3515   "(/",         "(/=",
3516   "(%",         "(%=",
3517   "(**",        "(**=",
3518   "(<<",        "(<<=",
3519   "(>>",        "(>>=",
3520   "(&",         "(&=",
3521   "(|",         "(|=",
3522   "(^",         "(^=",
3523   "(<",         "(<=",
3524   "(>",         "(>=",
3525   "(==",        "(!=",
3526   "(<=>",       "(cmp",
3527   "(lt",        "(le",
3528   "(gt",        "(ge",
3529   "(eq",        "(ne",
3530   "(!",         "(~",
3531   "(++",        "(--",
3532   "(atan2",     "(cos",
3533   "(sin",       "(exp",
3534   "(log",       "(sqrt",
3535   "(x",         "(x=",
3536   "(.",         "(.=",
3537   "(=",         "(neg",
3538   "(${}",       "(@{}",
3539   "(%{}",       "(*{}",
3540   "(&{}",       "(<>",
3541   "(int",       "DESTROY",
3542 };
3543 #else
3544 EXTCONST char * PL_AMG_names[NofAMmeth];
3545 #endif /* def INITAMAGIC */
3546
3547 END_EXTERN_C
3548
3549 struct am_table {
3550   long was_ok_sub;
3551   long was_ok_am;
3552   U32 flags;
3553   CV* table[NofAMmeth];
3554   long fallback;
3555 };
3556 struct am_table_short {
3557   long was_ok_sub;
3558   long was_ok_am;
3559   U32 flags;
3560 };
3561 typedef struct am_table AMT;
3562 typedef struct am_table_short AMTS;
3563
3564 #define AMGfallNEVER    1
3565 #define AMGfallNO       2
3566 #define AMGfallYES      3
3567
3568 #define AMTf_AMAGIC             1
3569 #define AMTf_OVERLOADED         2
3570 #define AMT_AMAGIC(amt)         ((amt)->flags & AMTf_AMAGIC)
3571 #define AMT_AMAGIC_on(amt)      ((amt)->flags |= AMTf_AMAGIC)
3572 #define AMT_AMAGIC_off(amt)     ((amt)->flags &= ~AMTf_AMAGIC)
3573 #define AMT_OVERLOADED(amt)     ((amt)->flags & AMTf_OVERLOADED)
3574 #define AMT_OVERLOADED_on(amt)  ((amt)->flags |= AMTf_OVERLOADED)
3575 #define AMT_OVERLOADED_off(amt) ((amt)->flags &= ~AMTf_OVERLOADED)
3576
3577 #define StashHANDLER(stash,meth)        gv_handler((stash),CAT2(meth,_amg))
3578
3579 /*
3580  * some compilers like to redefine cos et alia as faster
3581  * (and less accurate?) versions called F_cos et cetera (Quidquid
3582  * latine dictum sit, altum viditur.)  This trick collides with
3583  * the Perl overloading (amg).  The following #defines fool both.
3584  */
3585
3586 #ifdef _FASTMATH
3587 #   ifdef atan2
3588 #       define F_atan2_amg  atan2_amg
3589 #   endif
3590 #   ifdef cos
3591 #       define F_cos_amg    cos_amg
3592 #   endif
3593 #   ifdef exp
3594 #       define F_exp_amg    exp_amg
3595 #   endif
3596 #   ifdef log
3597 #       define F_log_amg    log_amg
3598 #   endif
3599 #   ifdef pow
3600 #       define F_pow_amg    pow_amg
3601 #   endif
3602 #   ifdef sin
3603 #       define F_sin_amg    sin_amg
3604 #   endif
3605 #   ifdef sqrt
3606 #       define F_sqrt_amg   sqrt_amg
3607 #   endif
3608 #endif /* _FASTMATH */
3609
3610 #define PERLDB_ALL              (PERLDBf_SUB    | PERLDBf_LINE  |       \
3611                                  PERLDBf_NOOPT  | PERLDBf_INTER |       \
3612                                  PERLDBf_SUBLINE| PERLDBf_SINGLE|       \
3613                                  PERLDBf_NAMEEVAL| PERLDBf_NAMEANON)
3614                                         /* No _NONAME, _GOTO */
3615 #define PERLDBf_SUB             0x01    /* Debug sub enter/exit */
3616 #define PERLDBf_LINE            0x02    /* Keep line # */
3617 #define PERLDBf_NOOPT           0x04    /* Switch off optimizations */
3618 #define PERLDBf_INTER           0x08    /* Preserve more data for
3619                                            later inspections  */
3620 #define PERLDBf_SUBLINE         0x10    /* Keep subr source lines */
3621 #define PERLDBf_SINGLE          0x20    /* Start with single-step on */
3622 #define PERLDBf_NONAME          0x40    /* For _SUB: no name of the subr */
3623 #define PERLDBf_GOTO            0x80    /* Report goto: call DB::goto */
3624 #define PERLDBf_NAMEEVAL        0x100   /* Informative names for evals */
3625 #define PERLDBf_NAMEANON        0x200   /* Informative names for anon subs */
3626
3627 #define PERLDB_SUB      (PL_perldb && (PL_perldb & PERLDBf_SUB))
3628 #define PERLDB_LINE     (PL_perldb && (PL_perldb & PERLDBf_LINE))
3629 #define PERLDB_NOOPT    (PL_perldb && (PL_perldb & PERLDBf_NOOPT))
3630 #define PERLDB_INTER    (PL_perldb && (PL_perldb & PERLDBf_INTER))
3631 #define PERLDB_SUBLINE  (PL_perldb && (PL_perldb & PERLDBf_SUBLINE))
3632 #define PERLDB_SINGLE   (PL_perldb && (PL_perldb & PERLDBf_SINGLE))
3633 #define PERLDB_SUB_NN   (PL_perldb && (PL_perldb & (PERLDBf_NONAME)))
3634 #define PERLDB_GOTO     (PL_perldb && (PL_perldb & PERLDBf_GOTO))
3635 #define PERLDB_NAMEEVAL (PL_perldb && (PL_perldb & PERLDBf_NAMEEVAL))
3636 #define PERLDB_NAMEANON (PL_perldb && (PL_perldb & PERLDBf_NAMEANON))
3637
3638
3639 #ifdef USE_LOCALE_NUMERIC
3640
3641 #define SET_NUMERIC_STANDARD() \
3642         set_numeric_standard();
3643
3644 #define SET_NUMERIC_LOCAL() \
3645         set_numeric_local();
3646
3647 #define IN_LOCALE_RUNTIME       (PL_curcop->op_private & HINT_LOCALE)
3648 #define IN_LOCALE_COMPILETIME   (PL_hints & HINT_LOCALE)
3649
3650 #define IN_LOCALE \
3651         (PL_curcop == &PL_compiling ? IN_LOCALE_COMPILETIME : IN_LOCALE_RUNTIME)
3652
3653 #define STORE_NUMERIC_LOCAL_SET_STANDARD() \
3654         bool was_local = PL_numeric_local && IN_LOCALE; \
3655         if (was_local) SET_NUMERIC_STANDARD();
3656
3657 #define STORE_NUMERIC_STANDARD_SET_LOCAL() \
3658         bool was_standard = PL_numeric_standard && IN_LOCALE; \
3659         if (was_standard) SET_NUMERIC_LOCAL();
3660
3661 #define RESTORE_NUMERIC_LOCAL() \
3662         if (was_local) SET_NUMERIC_LOCAL();
3663
3664 #define RESTORE_NUMERIC_STANDARD() \
3665         if (was_standard) SET_NUMERIC_STANDARD();
3666
3667 #define Atof                            my_atof
3668
3669 #else /* !USE_LOCALE_NUMERIC */
3670
3671 #define SET_NUMERIC_STANDARD()          /**/
3672 #define SET_NUMERIC_LOCAL()             /**/
3673 #define IS_NUMERIC_RADIX(a, b)          (0)
3674 #define STORE_NUMERIC_LOCAL_SET_STANDARD()      /**/
3675 #define STORE_NUMERIC_STANDARD_SET_LOCAL()      /**/
3676 #define RESTORE_NUMERIC_LOCAL()         /**/
3677 #define RESTORE_NUMERIC_STANDARD()      /**/
3678 #define Atof                            Perl_atof
3679 #define IN_LOCALE_RUNTIME               0
3680
3681 #endif /* !USE_LOCALE_NUMERIC */
3682
3683 #if !defined(Strtol) && defined(USE_64_BIT_INT) && defined(IV_IS_QUAD) && QUADKIND == QUAD_IS_LONG_LONG
3684 #    ifdef __hpux
3685 #        define strtoll __strtoll       /* secret handshake */
3686 #    endif
3687 #   if !defined(Strtol) && defined(HAS_STRTOLL)
3688 #       define Strtol   strtoll
3689 #   endif
3690 #    if !defined(Strtol) && defined(HAS_STRTOQ)
3691 #       define Strtol   strtoq
3692 #    endif
3693 /* is there atoq() anywhere? */
3694 #endif
3695 #if !defined(Strtol) && defined(HAS_STRTOL)
3696 #   define Strtol       strtol
3697 #endif
3698 #ifndef Atol
3699 /* It would be more fashionable to use Strtol() to define atol()
3700  * (as is done for Atoul(), see below) but for backward compatibility
3701  * we just assume atol(). */
3702 #   if defined(USE_64_BIT_INT) && defined(IV_IS_QUAD) && QUADKIND == QUAD_IS_LONG_LONG && defined(HAS_ATOLL)
3703 #       define Atol     atoll
3704 #   else
3705 #       define Atol     atol
3706 #   endif
3707 #endif
3708
3709 #if !defined(Strtoul) && defined(USE_64_BIT_INT) && defined(UV_IS_QUAD) && QUADKIND == QUAD_IS_LONG_LONG
3710 #    ifdef __hpux
3711 #        define strtoull __strtoull     /* secret handshake */
3712 #    endif
3713 #    if !defined(Strtoul) && defined(HAS_STRTOULL)
3714 #       define Strtoul  strtoull
3715 #    endif
3716 #    if !defined(Strtoul) && defined(HAS_STRTOUQ)
3717 #       define Strtoul  strtouq
3718 #    endif
3719 /* is there atouq() anywhere? */
3720 #endif
3721 #if !defined(Strtoul) && defined(HAS_STRTOUL)
3722 #   define Strtoul      strtoul
3723 #endif
3724 #ifndef Atoul
3725 #   define Atoul(s)     Strtoul(s, (char **)NULL, 10)
3726 #endif
3727
3728 #if !defined(PERLIO_IS_STDIO) && defined(HASATTRIBUTE)
3729 /*
3730  * Now we have __attribute__ out of the way
3731  * Remap printf
3732  */
3733 #undef printf
3734 #ifdef __GNUC__
3735 #define printf(fmt,args...) PerlIO_stdoutf(fmt,##args)
3736 #else
3737 #define printf PerlIO_stdoutf
3738 #endif
3739 #endif
3740
3741 /* if these never got defined, they need defaults */
3742 #ifndef PERL_SET_CONTEXT
3743 #  define PERL_SET_CONTEXT(i)           PERL_SET_INTERP(i)
3744 #endif
3745
3746 #ifndef PERL_GET_CONTEXT
3747 #  define PERL_GET_CONTEXT              PERL_GET_INTERP
3748 #endif
3749
3750 #ifndef PERL_GET_THX
3751 #  define PERL_GET_THX                  ((void*)NULL)
3752 #endif
3753
3754 #ifndef PERL_SET_THX
3755 #  define PERL_SET_THX(t)               NOOP
3756 #endif
3757
3758 #ifndef PERL_SCRIPT_MODE
3759 #define PERL_SCRIPT_MODE "r"
3760 #endif
3761
3762 /*
3763  * Some operating systems are stingy with stack allocation,
3764  * so perl may have to guard against stack overflow.
3765  */
3766 #ifndef PERL_STACK_OVERFLOW_CHECK
3767 #define PERL_STACK_OVERFLOW_CHECK()  NOOP
3768 #endif
3769
3770 /*
3771  * Some nonpreemptive operating systems find it convenient to
3772  * check for asynchronous conditions after each op execution.
3773  * Keep this check simple, or it may slow down execution
3774  * massively.
3775  */
3776
3777 #ifndef PERL_MICRO
3778 #   ifndef PERL_OLD_SIGNALS
3779 #               ifndef PERL_ASYNC_CHECK
3780 #                       define PERL_ASYNC_CHECK() if (PL_sig_pending) despatch_signals()
3781 #               endif
3782 #   endif
3783 #endif
3784
3785 #ifndef PERL_ASYNC_CHECK
3786 #   define PERL_ASYNC_CHECK()  NOOP
3787 #endif
3788
3789 /*
3790  * On some operating systems, a memory allocation may succeed,
3791  * but put the process too close to the system's comfort limit.
3792  * In this case, PERL_ALLOC_CHECK frees the pointer and sets
3793  * it to NULL.
3794  */
3795 #ifndef PERL_ALLOC_CHECK
3796 #define PERL_ALLOC_CHECK(p)  NOOP
3797 #endif
3798
3799 /*
3800  * nice_chunk and nice_chunk size need to be set
3801  * and queried under the protection of sv_mutex
3802  */
3803 #define offer_nice_chunk(chunk, chunk_size) STMT_START {  \
3804        void *new_chunk;                                   \
3805        U32 new_chunk_size;                                \
3806        LOCK_SV_MUTEX;                                     \
3807        new_chunk = (void *)(chunk);                       \
3808        new_chunk_size = (chunk_size);                     \
3809        if (new_chunk_size > PL_nice_chunk_size) {         \
3810            if (PL_nice_chunk) Safefree(PL_nice_chunk);    \
3811            PL_nice_chunk = new_chunk;                     \
3812            PL_nice_chunk_size = new_chunk_size;           \
3813        } else {                                           \
3814            Safefree(chunk);                               \
3815        }                                                  \
3816        UNLOCK_SV_MUTEX;                                   \
3817    } STMT_END
3818
3819 #ifdef HAS_SEM
3820 #   include <sys/ipc.h>
3821 #   include <sys/sem.h>
3822 #   ifndef HAS_UNION_SEMUN      /* Provide the union semun. */
3823     union semun {
3824         int             val;
3825         struct semid_ds *buf;
3826         unsigned short  *array;
3827     };
3828 #   endif
3829 #   ifdef USE_SEMCTL_SEMUN
3830 #       ifdef IRIX32_SEMUN_BROKEN_BY_GCC
3831             union gccbug_semun {
3832                 int             val;
3833                 struct semid_ds *buf;
3834                 unsigned short  *array;
3835                 char            __dummy[5];
3836             };
3837 #           define semun gccbug_semun
3838 #       endif
3839 #       define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun)
3840 #   else
3841 #       ifdef USE_SEMCTL_SEMID_DS
3842 #           ifdef EXTRA_F_IN_SEMUN_BUF
3843 #               define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun.buff)
3844 #           else
3845 #               define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun.buf)
3846 #           endif
3847 #       endif
3848 #   endif
3849 #endif
3850
3851 /*
3852  * Boilerplate macros for initializing and accessing interpreter-local
3853  * data from C.  All statics in extensions should be reworked to use
3854  * this, if you want to make the extension thread-safe.  See ext/re/re.xs
3855  * for an example of the use of these macros.
3856  *
3857  * Code that uses these macros is responsible for the following:
3858  * 1. #define MY_CXT_KEY to a unique string, e.g. "DynaLoader_guts"
3859  * 2. Declare a typedef named my_cxt_t that is a structure that contains
3860  *    all the data that needs to be interpreter-local.
3861  * 3. Use the START_MY_CXT macro after the declaration of my_cxt_t.
3862  * 4. Use the MY_CXT_INIT macro such that it is called exactly once
3863  *    (typically put in the BOOT: section).
3864  * 5. Use the members of the my_cxt_t structure everywhere as
3865  *    MY_CXT.member.
3866  * 6. Use the dMY_CXT macro (a declaration) in all the functions that
3867  *    access MY_CXT.
3868  */
3869
3870 #if defined(PERL_IMPLICIT_CONTEXT)
3871
3872 /* This must appear in all extensions that define a my_cxt_t structure,
3873  * right after the definition (i.e. at file scope).  The non-threads
3874  * case below uses it to declare the data as static. */
3875 #define START_MY_CXT
3876
3877 /* Fetches the SV that keeps the per-interpreter data. */
3878 #define dMY_CXT_SV \
3879         SV *my_cxt_sv = *hv_fetch(PL_modglobal, MY_CXT_KEY,             \
3880                                   sizeof(MY_CXT_KEY)-1, TRUE)
3881
3882 /* This declaration should be used within all functions that use the
3883  * interpreter-local data. */
3884 #define dMY_CXT \
3885         dMY_CXT_SV;                                                     \
3886         my_cxt_t *my_cxtp = INT2PTR(my_cxt_t*, SvUV(my_cxt_sv))
3887
3888 /* Creates and zeroes the per-interpreter data.
3889  * (We allocate my_cxtp in a Perl SV so that it will be released when
3890  * the interpreter goes away.) */
3891 #define MY_CXT_INIT \
3892         dMY_CXT_SV;                                                     \
3893         /* newSV() allocates one more than needed */                    \
3894         my_cxt_t *my_cxtp = (my_cxt_t*)SvPVX(newSV(sizeof(my_cxt_t)-1));\
3895         Zero(my_cxtp, 1, my_cxt_t);                                     \
3896         sv_setuv(my_cxt_sv, PTR2UV(my_cxtp))
3897
3898 /* This macro must be used to access members of the my_cxt_t structure.
3899  * e.g. MYCXT.some_data */
3900 #define MY_CXT          (*my_cxtp)
3901
3902 /* Judicious use of these macros can reduce the number of times dMY_CXT
3903  * is used.  Use is similar to pTHX, aTHX etc. */
3904 #define pMY_CXT         my_cxt_t *my_cxtp
3905 #define pMY_CXT_        pMY_CXT,
3906 #define _pMY_CXT        ,pMY_CXT
3907 #define aMY_CXT         my_cxtp
3908 #define aMY_CXT_        aMY_CXT,
3909 #define _aMY_CXT        ,aMY_CXT
3910
3911 #else /* USE_ITHREADS */
3912
3913 #define START_MY_CXT    static my_cxt_t my_cxt;
3914 #define dMY_CXT_SV      dNOOP
3915 #define dMY_CXT         dNOOP
3916 #define MY_CXT_INIT     NOOP
3917 #define MY_CXT          my_cxt
3918
3919 #define pMY_CXT         void
3920 #define pMY_CXT_
3921 #define _pMY_CXT
3922 #define aMY_CXT
3923 #define aMY_CXT_
3924 #define _aMY_CXT
3925
3926 #endif /* !defined(USE_ITHREADS) */
3927
3928 #ifdef I_FCNTL
3929 #  include <fcntl.h>
3930 #endif
3931
3932 #ifdef I_SYS_FILE
3933 #  include <sys/file.h>
3934 #endif
3935
3936 #if defined(HAS_FLOCK) && !defined(HAS_FLOCK_PROTO)
3937 int flock(int fd, int op);
3938 #endif
3939
3940 #ifndef O_RDONLY
3941 /* Assume UNIX defaults */
3942 #    define O_RDONLY    0000
3943 #    define O_WRONLY    0001
3944 #    define O_RDWR      0002
3945 #    define O_CREAT     0100
3946 #endif
3947
3948 #ifndef O_BINARY
3949 #  define O_BINARY 0
3950 #endif
3951
3952 #ifndef O_TEXT
3953 #  define O_TEXT 0
3954 #endif
3955
3956 #if O_TEXT != O_BINARY
3957     /* If you have different O_TEXT and O_BINARY and you are a CLRF shop,
3958      * that is, you are somehow DOSish. */
3959 #   if defined(__BEOS__) || defined(__VOS__)
3960     /* BeOS has O_TEXT != O_BINARY but O_TEXT and O_BINARY have no effect;
3961      * BeOS is always UNIXoid (LF), not DOSish (CRLF). */
3962     /* VOS has O_TEXT != O_BINARY, and they have effect,
3963      * but VOS always uses LF, never CRLF. */
3964     /* If you have O_TEXT different from your O_BINARY but you still are
3965      * not a CRLF shop. */
3966 #       undef PERLIO_USING_CRLF
3967 #   else
3968     /* If you really are DOSish. */
3969 #      define PERLIO_USING_CRLF 1
3970 #   endif
3971 #endif
3972
3973 #ifdef IAMSUID
3974
3975 #ifdef I_SYS_STATVFS
3976 #   if defined(PERL_SCO) && !defined(_SVID3)
3977 #       define _SVID3
3978 #   endif
3979 #   include <sys/statvfs.h>     /* for f?statvfs() */
3980 #endif
3981 #ifdef I_SYS_MOUNT
3982 #   include <sys/mount.h>       /* for *BSD f?statfs() */
3983 #endif
3984 #ifdef I_MNTENT
3985 #   include <mntent.h>          /* for getmntent() */
3986 #endif
3987 #ifdef I_SYS_STATFS
3988 #   include <sys/statfs.h>      /* for some statfs() */
3989 #endif
3990 #ifdef I_SYS_VFS
3991 #  ifdef __sgi
3992 #    define sv IRIX_sv          /* kludge: IRIX has an sv of its own */
3993 #  endif
3994 #    include <sys/vfs.h>        /* for some statfs() */
3995 #  ifdef __sgi
3996 #    undef IRIX_sv
3997 #  endif
3998 #endif
3999 #ifdef I_USTAT
4000 #   include <ustat.h>           /* for ustat() */
4001 #endif
4002
4003 #if !defined(PERL_MOUNT_NOSUID) && defined(MOUNT_NOSUID)
4004 #    define PERL_MOUNT_NOSUID MOUNT_NOSUID
4005 #endif
4006 #if !defined(PERL_MOUNT_NOSUID) && defined(MNT_NOSUID)
4007 #    define PERL_MOUNT_NOSUID MNT_NOSUID
4008 #endif
4009 #if !defined(PERL_MOUNT_NOSUID) && defined(MS_NOSUID)
4010 #   define PERL_MOUNT_NOSUID MS_NOSUID
4011 #endif
4012 #if !defined(PERL_MOUNT_NOSUID) && defined(M_NOSUID)
4013 #   define PERL_MOUNT_NOSUID M_NOSUID
4014 #endif
4015
4016 #endif /* IAMSUID */
4017
4018 #ifdef I_LIBUTIL
4019 #   include <libutil.h>         /* setproctitle() in some FreeBSDs */
4020 #endif
4021
4022 #ifndef EXEC_ARGV_CAST
4023 #define EXEC_ARGV_CAST(x) x
4024 #endif
4025
4026 #define IS_NUMBER_IN_UV               0x01 /* number within UV range (maybe not
4027                                               int).  value returned in pointed-
4028                                               to UV */
4029 #define IS_NUMBER_GREATER_THAN_UV_MAX 0x02 /* pointed to UV undefined */
4030 #define IS_NUMBER_NOT_INT             0x04 /* saw . or E notation */
4031 #define IS_NUMBER_NEG                 0x08 /* leading minus sign */
4032 #define IS_NUMBER_INFINITY            0x10 /* this is big */
4033 #define IS_NUMBER_NAN                 0x20 /* this is not */
4034
4035 #define GROK_NUMERIC_RADIX(sp, send) grok_numeric_radix(sp, send)
4036
4037 /* Input flags: */
4038 #define PERL_SCAN_ALLOW_UNDERSCORES   0x01 /* grok_??? accept _ in numbers */
4039 #define PERL_SCAN_DISALLOW_PREFIX     0x02 /* grok_??? reject 0x in hex etc */
4040 /* Output flags: */
4041 #define PERL_SCAN_GREATER_THAN_UV_MAX 0x02 /* should this merge with above? */
4042
4043 /* to let user control profiling */
4044 #ifdef PERL_GPROF_CONTROL
4045 extern void moncontrol(int);
4046 #define PERL_GPROF_MONCONTROL(x) moncontrol(x)
4047 #else
4048 #define PERL_GPROF_MONCONTROL(x)
4049 #endif
4050
4051 #ifdef UNDER_CE
4052 #include "wince.h"
4053 #endif
4054
4055 /* ISO 6429 NEL - C1 control NExt Line */
4056 /* See http://www.unicode.org/unicode/reports/tr13/ */
4057 #ifdef EBCDIC   /* In EBCDIC NEL is just an alias for LF */
4058 #   if '^' == 95        /* CP 1047: MVS OpenEdition - OS/390 - z/OS */
4059 #       define NEXT_LINE_CHAR   0x15
4060 #   else                /* CDRA */
4061 #       define NEXT_LINE_CHAR   0x25
4062 #   endif
4063 #else
4064 #   define NEXT_LINE_CHAR       0x85
4065 #endif
4066
4067 /* The UTF-8 bytes of the Unicode LS and PS, U+2028 and U+2029 */
4068 #define UNICODE_LINE_SEPA_0     0xE2
4069 #define UNICODE_LINE_SEPA_1     0x80
4070 #define UNICODE_LINE_SEPA_2     0xA8
4071 #define UNICODE_PARA_SEPA_0     0xE2
4072 #define UNICODE_PARA_SEPA_1     0x80
4073 #define UNICODE_PARA_SEPA_2     0xA9
4074
4075 /* and finally... */
4076 #define PERL_PATCHLEVEL_H_IMPLICIT
4077 #include "patchlevel.h"
4078 #undef PERL_PATCHLEVEL_H_IMPLICIT
4079
4080 /* Mention
4081
4082    NV_PRESERVES_UV
4083
4084    HAS_MKSTEMP
4085    HAS_MKSTEMPS
4086    HAS_MKDTEMP
4087
4088    HAS_GETCWD
4089
4090    HAS_MMAP
4091    HAS_MPROTECT
4092    HAS_MSYNC
4093    HAS_MADVISE
4094    HAS_MUNMAP
4095    I_SYSMMAN
4096    Mmap_t
4097
4098    NVef
4099    NVff
4100    NVgf
4101
4102    HAS_USLEEP
4103    HAS_UALARM
4104
4105    HAS_SETITIMER
4106    HAS_GETITIMER
4107
4108    HAS_SENDMSG
4109    HAS_RECVMSG
4110    HAS_READV
4111    HAS_WRITEV
4112    I_SYSUIO
4113    HAS_STRUCT_MSGHDR
4114    HAS_STRUCT_CMSGHDR
4115
4116    HAS_NL_LANGINFO
4117
4118    HAS_DIRFD
4119
4120    so that Configure picks them up. */
4121
4122 #endif /* Include guard */
4123