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