6ee2c0ce28291f01ffb6f135507fcaf8b9c984a9
[p5sagit/p5-mst-13.2.git] / perl.h
1 /*    perl.h
2  *
3  *    Copyright (c) 1987-2000, Larry Wall
4  *
5  *    You may distribute under the terms of either the GNU General Public
6  *    License or the Artistic License, as specified in the README file.
7  *
8  */
9 #ifndef H_PERL
10 #define H_PERL 1
11
12 #ifdef PERL_FOR_X2P
13 /*
14  * This file is being used for x2p stuff. 
15  * Above symbol is defined via -D in 'x2p/Makefile.SH'
16  * Decouple x2p stuff from some of perls more extreme eccentricities. 
17  */
18 #undef MULTIPLICITY
19 #undef USE_STDIO
20 #define USE_STDIO
21 #endif /* PERL_FOR_X2P */
22
23 #define VOIDUSED 1
24 #include "config.h"
25
26 #if defined(USE_ITHREADS) && defined(USE_5005THREADS)
27 #  include "error: USE_ITHREADS and USE_5005THREADS are incompatible"
28 #endif
29
30 /* XXX This next guard can disappear if the sources are revised
31    to use USE_5005THREADS throughout. -- A.D  1/6/2000
32 */
33 #if defined(USE_ITHREADS) && defined(USE_THREADS)
34 #  include "error: USE_ITHREADS and USE_THREADS are incompatible"
35 #endif
36
37 /* See L<perlguts/"The Perl API"> for detailed notes on
38  * PERL_IMPLICIT_CONTEXT and PERL_IMPLICIT_SYS */
39
40 #ifdef USE_ITHREADS
41 #  if !defined(MULTIPLICITY) && !defined(PERL_OBJECT)
42 #    define MULTIPLICITY
43 #  endif
44 #endif
45
46 #ifdef USE_THREADS
47 #  ifndef PERL_IMPLICIT_CONTEXT
48 #    define PERL_IMPLICIT_CONTEXT
49 #  endif
50 #endif
51
52 #if defined(MULTIPLICITY)
53 #  ifndef PERL_IMPLICIT_CONTEXT
54 #    define PERL_IMPLICIT_CONTEXT
55 #  endif
56 #endif
57
58 #ifdef PERL_CAPI
59 #  undef PERL_OBJECT
60 #  ifndef MULTIPLICITY
61 #    define MULTIPLICITY
62 #  endif
63 #  ifndef PERL_IMPLICIT_CONTEXT
64 #    define PERL_IMPLICIT_CONTEXT
65 #  endif
66 #  ifndef PERL_IMPLICIT_SYS
67 #    define PERL_IMPLICIT_SYS
68 #  endif
69 #endif
70
71 #ifdef PERL_OBJECT
72 #  ifndef PERL_IMPLICIT_CONTEXT
73 #    define PERL_IMPLICIT_CONTEXT
74 #  endif
75 #  ifndef PERL_IMPLICIT_SYS
76 #    define PERL_IMPLICIT_SYS
77 #  endif
78 #endif
79
80 #ifdef PERL_OBJECT
81
82 /* PERL_OBJECT explained  - DickH and DougL @ ActiveState.com
83
84 Defining PERL_OBJECT turns on creation of a C++ object that
85 contains all writable core perl global variables and functions.
86 Stated another way, all necessary global variables and functions
87 are members of a big C++ object. This object's class is CPerlObj.
88 This allows a Perl Host to have multiple, independent perl
89 interpreters in the same process space. This is very important on
90 Win32 systems as the overhead of process creation is quite high --
91 this could be even higher than the script compile and execute time
92 for small scripts.
93
94 The perl executable implementation on Win32 is composed of perl.exe
95 (the Perl Host) and perlX.dll. (the Perl Core). This allows the
96 same Perl Core to easily be embedded in other applications that use
97 the perl interpreter.
98
99 +-----------+
100 | Perl Host |
101 +-----------+
102       ^
103       |
104       v
105 +-----------+   +-----------+
106 | Perl Core |<->| Extension |
107 +-----------+   +-----------+ ...
108
109 Defining PERL_OBJECT has the following effects:
110
111 PERL CORE
112 1. CPerlObj is defined (this is the PERL_OBJECT)
113 2. all static functions that needed to access either global
114 variables or functions needed are made member functions
115 3. all writable static variables are made member variables
116 4. all global variables and functions are defined as:
117         #define var CPerlObj::PL_var
118         #define func CPerlObj::Perl_func
119         * these are in embed.h
120 This necessitated renaming some local variables and functions that
121 had the same name as a global variable or function. This was
122 probably a _good_ thing anyway.
123
124
125 EXTENSIONS
126 1. Access to global variables and perl functions is through a
127 pointer to the PERL_OBJECT. This pointer type is CPerlObj*. This is
128 made transparent to extension developers by the following macros:
129         #define var pPerl->PL_var
130         #define func pPerl->Perl_func
131         * these are done in objXSUB.h
132 This requires that the extension be compiled as C++, which means
133 that the code must be ANSI C and not K&R C. For K&R extensions,
134 please see the C API notes located in Win32/GenCAPI.pl. This script
135 creates a perlCAPI.lib that provides a K & R compatible C interface
136 to the PERL_OBJECT.
137 2. Local variables and functions cannot have the same name as perl's
138 variables or functions since the macros will redefine these. Look for
139 this if you get some strange error message and it does not look like
140 the code that you had written. This often happens with variables that
141 are local to a function.
142
143 PERL HOST
144 1. The perl host is linked with perlX.lib to get perl_alloc. This
145 function will return a pointer to CPerlObj (the PERL_OBJECT). It
146 takes pointers to the various PerlXXX_YYY interfaces (see iperlsys.h
147 for more information on this).
148 2. The perl host calls the same functions as normally would be
149 called in setting up and running a perl script, except that the
150 functions are now member functions of the PERL_OBJECT.
151
152 */
153
154 #ifndef NEXT30_NO_ATTRIBUTE
155 #  ifndef HASATTRIBUTE       /* disable GNU-cc attribute checking? */
156 #    ifdef  __attribute__      /* Avoid possible redefinition errors */
157 #      undef  __attribute__
158 #    endif
159 #    define __attribute__(attr)
160 #  endif
161 #endif
162
163 class CPerlObj;
164
165 #define STATIC
166 #define CPERLscope(x)           CPerlObj::x
167 #define CALL_FPTR(fptr)         (aTHXo->*fptr)
168
169 #define pTHXo                   CPerlObj *pPerl
170 #define pTHXo_                  pTHXo,
171 #define aTHXo                   this
172 #define aTHXo_                  this,
173 #define PERL_OBJECT_THIS        aTHXo
174 #define PERL_OBJECT_THIS_       aTHXo_
175 #define dTHXoa(a)               pTHXo = a
176 #define dTHXo                   dTHXoa(PERL_GET_THX)
177
178 #define pTHXx           void
179 #define pTHXx_
180 #define aTHXx
181 #define aTHXx_
182
183 #else /* !PERL_OBJECT */
184
185 #ifdef PERL_IMPLICIT_CONTEXT
186 #  ifdef USE_THREADS
187 struct perl_thread;
188 #    define pTHX        register struct perl_thread *thr
189 #    define aTHX        thr
190 #    define dTHR        dNOOP
191 #  else
192 #    ifndef MULTIPLICITY
193 #      define MULTIPLICITY
194 #    endif
195 #    define pTHX        register PerlInterpreter *my_perl
196 #    define aTHX        my_perl
197 #  endif
198 #  define dTHXa(a)      pTHX = a
199 #  define dTHX          dTHXa(PERL_GET_THX)
200 #  define pTHX_         pTHX,
201 #  define aTHX_         aTHX,
202 #  define pTHX_1        2       
203 #  define pTHX_2        3
204 #  define pTHX_3        4
205 #  define pTHX_4        5
206 #endif
207
208 #define STATIC static
209 #define CPERLscope(x) x
210 #define CPERLarg void
211 #define CPERLarg_
212 #define _CPERLarg
213 #define PERL_OBJECT_THIS
214 #define _PERL_OBJECT_THIS
215 #define PERL_OBJECT_THIS_
216 #define CALL_FPTR(fptr) (*fptr)
217
218 #endif /* PERL_OBJECT */
219
220 #define CALLRUNOPS  CALL_FPTR(PL_runops)
221 #define CALLREGCOMP CALL_FPTR(PL_regcompp)
222 #define CALLREGEXEC CALL_FPTR(PL_regexecp)
223 #define CALLREG_INTUIT_START CALL_FPTR(PL_regint_start)
224 #define CALLREG_INTUIT_STRING CALL_FPTR(PL_regint_string)
225 #define CALLREGFREE CALL_FPTR(PL_regfree)
226
227 #ifdef PERL_FLEXIBLE_EXCEPTIONS
228 #  define CALLPROTECT CALL_FPTR(PL_protect)
229 #endif
230
231 #define NOOP (void)0
232 #define dNOOP extern int __attribute__ ((unused)) Perl___notused
233
234 #ifndef pTHX
235 #  define pTHX          void
236 #  define pTHX_
237 #  define aTHX
238 #  define aTHX_
239 #  define dTHXa(a)      dNOOP
240 #  define dTHX          dNOOP
241 #  define pTHX_1        1       
242 #  define pTHX_2        2
243 #  define pTHX_3        3
244 #  define pTHX_4        4
245 #endif
246
247 #ifndef pTHXo
248 #  define pTHXo         pTHX
249 #  define pTHXo_        pTHX_
250 #  define aTHXo         aTHX
251 #  define aTHXo_        aTHX_
252 #  define dTHXo         dTHX
253 #endif
254
255 #ifndef pTHXx
256 #  define pTHXx         register PerlInterpreter *my_perl
257 #  define pTHXx_        pTHXx,
258 #  define aTHXx         my_perl
259 #  define aTHXx_        aTHXx,
260 #  define dTHXx         dTHX
261 #endif
262
263 #undef START_EXTERN_C
264 #undef END_EXTERN_C
265 #undef EXTERN_C
266 #ifdef __cplusplus
267 #  define START_EXTERN_C extern "C" {
268 #  define END_EXTERN_C }
269 #  define EXTERN_C extern "C"
270 #else
271 #  define START_EXTERN_C 
272 #  define END_EXTERN_C 
273 #  define EXTERN_C extern
274 #endif
275
276 #ifdef OP_IN_REGISTER
277 #  ifdef __GNUC__
278 #    define stringify_immed(s) #s
279 #    define stringify(s) stringify_immed(s)
280 register struct op *Perl_op asm(stringify(OP_IN_REGISTER));
281 #  endif
282 #endif
283
284 /*
285  * STMT_START { statements; } STMT_END;
286  * can be used as a single statement, as in
287  * if (x) STMT_START { ... } STMT_END; else ...
288  *
289  * Trying to select a version that gives no warnings...
290  */
291 #if !(defined(STMT_START) && defined(STMT_END))
292 # if defined(__GNUC__) && !defined(__STRICT_ANSI__) && !defined(__cplusplus)
293 #   define STMT_START   (void)( /* gcc supports ``({ STATEMENTS; })'' */
294 #   define STMT_END     )
295 # else
296    /* Now which other defined()s do we need here ??? */
297 #  if (VOIDFLAGS) && (defined(sun) || defined(__sun__))
298 #   define STMT_START   if (1)
299 #   define STMT_END     else (void)0
300 #  else
301 #   define STMT_START   do
302 #   define STMT_END     while (0)
303 #  endif
304 # endif
305 #endif
306
307 #define WITH_THX(s) STMT_START { dTHX; s; } STMT_END
308 #define WITH_THR(s) STMT_START { dTHR; s; } STMT_END
309
310 /*
311  * SOFT_CAST can be used for args to prototyped functions to retain some
312  * type checking; it only casts if the compiler does not know prototypes.
313  */
314 #if defined(CAN_PROTOTYPE) && defined(DEBUGGING_COMPILE)
315 #define SOFT_CAST(type) 
316 #else
317 #define SOFT_CAST(type) (type)
318 #endif
319
320 #ifndef BYTEORDER  /* Should never happen -- byteorder is in config.h */
321 #   define BYTEORDER 0x1234
322 #endif
323
324 /* Overall memory policy? */
325 #ifndef CONSERVATIVE
326 #   define LIBERAL 1
327 #endif
328
329 #if 'A' == 65 && 'I' == 73 && 'J' == 74 && 'Z' == 90
330 #define ASCIIish
331 #else
332 #undef  ASCIIish
333 #endif
334
335 /*
336  * The following contortions are brought to you on behalf of all the
337  * standards, semi-standards, de facto standards, not-so-de-facto standards
338  * of the world, as well as all the other botches anyone ever thought of.
339  * The basic theory is that if we work hard enough here, the rest of the
340  * code can be a lot prettier.  Well, so much for theory.  Sorry, Henry...
341  */
342
343 /* define this once if either system, instead of cluttering up the src */
344 #if defined(MSDOS) || defined(atarist) || defined(WIN32)
345 #define DOSISH 1
346 #endif
347
348 #if defined(__STDC__) || defined(vax11c) || defined(_AIX) || defined(__stdc__) || defined(__cplusplus) || defined( EPOC)
349 # define STANDARD_C 1
350 #endif
351
352 #if defined(__cplusplus) || defined(WIN32) || defined(__sgi) || defined(OS2) || defined(__DGUX) || defined( EPOC) || defined(__QNX__)
353 # define DONT_DECLARE_STD 1
354 #endif
355
356 #if defined(HASVOLATILE) || defined(STANDARD_C)
357 #   ifdef __cplusplus
358 #       define VOL              // to temporarily suppress warnings
359 #   else
360 #       define VOL volatile
361 #   endif
362 #else
363 #   define VOL
364 #endif
365
366 #define TAINT           (PL_tainted = TRUE)
367 #define TAINT_NOT       (PL_tainted = FALSE)
368 #define TAINT_IF(c)     if (c) { PL_tainted = TRUE; }
369 #define TAINT_ENV()     if (PL_tainting) { taint_env(); }
370 #define TAINT_PROPER(s) if (PL_tainting) { taint_proper(Nullch, s); }
371
372 /* XXX All process group stuff is handled in pp_sys.c.  Should these 
373    defines move there?  If so, I could simplify this a lot. --AD  9/96.
374 */
375 /* Process group stuff changed from traditional BSD to POSIX.
376    perlfunc.pod documents the traditional BSD-style syntax, so we'll
377    try to preserve that, if possible.
378 */
379 #ifdef HAS_SETPGID
380 #  define BSD_SETPGRP(pid, pgrp)        setpgid((pid), (pgrp))
381 #else
382 #  if defined(HAS_SETPGRP) && defined(USE_BSD_SETPGRP)
383 #    define BSD_SETPGRP(pid, pgrp)      setpgrp((pid), (pgrp))
384 #  else
385 #    ifdef HAS_SETPGRP2  /* DG/UX */
386 #      define BSD_SETPGRP(pid, pgrp)    setpgrp2((pid), (pgrp))
387 #    endif
388 #  endif
389 #endif
390 #if defined(BSD_SETPGRP) && !defined(HAS_SETPGRP)
391 #  define HAS_SETPGRP  /* Well, effectively it does . . . */
392 #endif
393
394 /* getpgid isn't POSIX, but at least Solaris and Linux have it, and it makes
395     our life easier :-) so we'll try it.
396 */
397 #ifdef HAS_GETPGID
398 #  define BSD_GETPGRP(pid)              getpgid((pid))
399 #else
400 #  if defined(HAS_GETPGRP) && defined(USE_BSD_GETPGRP)
401 #    define BSD_GETPGRP(pid)            getpgrp((pid))
402 #  else
403 #    ifdef HAS_GETPGRP2  /* DG/UX */
404 #      define BSD_GETPGRP(pid)          getpgrp2((pid))
405 #    endif
406 #  endif
407 #endif
408 #if defined(BSD_GETPGRP) && !defined(HAS_GETPGRP)
409 #  define HAS_GETPGRP  /* Well, effectively it does . . . */
410 #endif
411
412 /* These are not exact synonyms, since setpgrp() and getpgrp() may 
413    have different behaviors, but perl.h used to define USE_BSDPGRP
414    (prior to 5.003_05) so some extension might depend on it.
415 */
416 #if defined(USE_BSD_SETPGRP) || defined(USE_BSD_GETPGRP)
417 #  ifndef USE_BSDPGRP
418 #    define USE_BSDPGRP
419 #  endif
420 #endif
421
422 /* HP-UX 10.X CMA (Common Multithreaded Architecure) insists that
423    pthread.h must be included before all other header files.
424 */
425 #if (defined(USE_THREADS) || defined(USE_ITHREADS)) \
426     && defined(PTHREAD_H_FIRST) && defined(I_PTHREAD)
427 #  include <pthread.h>
428 #endif
429
430 #ifndef _TYPES_         /* If types.h defines this it's easy. */
431 #   ifndef major                /* Does everyone's types.h define this? */
432 #       include <sys/types.h>
433 #   endif
434 #endif
435
436 #ifdef __cplusplus
437 #  ifndef I_STDARG
438 #    define I_STDARG 1
439 #  endif
440 #endif
441
442 #ifdef I_STDARG
443 #  include <stdarg.h>
444 #else
445 #  ifdef I_VARARGS
446 #    include <varargs.h>
447 #  endif
448 #endif
449
450 #ifdef USE_NEXT_CTYPE
451
452 #if NX_CURRENT_COMPILER_RELEASE >= 500
453 #  include <bsd/ctypes.h>
454 #else
455 #  if NX_CURRENT_COMPILER_RELEASE >= 400
456 #    include <objc/NXCType.h>
457 #  else /*  NX_CURRENT_COMPILER_RELEASE < 400 */
458 #    include <appkit/NXCType.h>
459 #  endif /*  NX_CURRENT_COMPILER_RELEASE >= 400 */
460 #endif /*  NX_CURRENT_COMPILER_RELEASE >= 500 */
461
462 #else /* !USE_NEXT_CTYPE */
463 #include <ctype.h>
464 #endif /* USE_NEXT_CTYPE */
465
466 #ifdef METHOD   /* Defined by OSF/1 v3.0 by ctype.h */
467 #undef METHOD
468 #endif
469
470 #ifdef I_LOCALE
471 #   include <locale.h>
472 #endif
473
474 #if !defined(NO_LOCALE) && defined(HAS_SETLOCALE)
475 #   define USE_LOCALE
476 #   if !defined(NO_LOCALE_COLLATE) && defined(LC_COLLATE) \
477        && defined(HAS_STRXFRM)
478 #       define USE_LOCALE_COLLATE
479 #   endif
480 #   if !defined(NO_LOCALE_CTYPE) && defined(LC_CTYPE)
481 #       define USE_LOCALE_CTYPE
482 #   endif
483 #   if !defined(NO_LOCALE_NUMERIC) && defined(LC_NUMERIC)
484 #       define USE_LOCALE_NUMERIC
485 #   endif
486 #endif /* !NO_LOCALE && HAS_SETLOCALE */
487
488 #include <setjmp.h>
489
490 #ifdef I_SYS_PARAM
491 #   ifdef PARAM_NEEDS_TYPES
492 #       include <sys/types.h>
493 #   endif
494 #   include <sys/param.h>
495 #endif
496
497
498 /* Use all the "standard" definitions? */
499 #if defined(STANDARD_C) && defined(I_STDLIB)
500 #   include <stdlib.h>
501 #endif
502
503 #ifdef PERL_MICRO /* Last chance to export Perl_my_swap */
504 #  define MYSWAP
505 #endif
506
507 #if !defined(PERL_FOR_X2P) && !defined(WIN32)
508 #  include "embed.h"
509 #endif
510
511 #define MEM_SIZE Size_t
512
513 #if defined(STANDARD_C) && defined(I_STDDEF)
514 #   include <stddef.h>
515 #   define STRUCT_OFFSET(s,m)  offsetof(s,m)
516 #else
517 #   define STRUCT_OFFSET(s,m)  (Size_t)(&(((s *)0)->m))
518 #endif
519
520 #if defined(I_STRING) || defined(__cplusplus)
521 #   include <string.h>
522 #else
523 #   include <strings.h>
524 #endif
525
526 /* This comes after <stdlib.h> so we don't try to change the standard
527  * library prototypes; we'll use our own in proto.h instead. */
528
529 #ifdef MYMALLOC
530 #  ifdef PERL_POLLUTE_MALLOC
531 #   ifndef PERL_EXTMALLOC_DEF
532 #    define Perl_malloc         malloc
533 #    define Perl_calloc         calloc
534 #    define Perl_realloc        realloc
535 #    define Perl_mfree          free
536 #   endif
537 #  else
538 #    define EMBEDMYMALLOC       /* for compatibility */
539 #  endif
540 Malloc_t Perl_malloc (MEM_SIZE nbytes);
541 Malloc_t Perl_calloc (MEM_SIZE elements, MEM_SIZE size);
542 Malloc_t Perl_realloc (Malloc_t where, MEM_SIZE nbytes);
543 /* 'mfree' rather than 'free', since there is already a 'perl_free'
544  * that causes clashes with case-insensitive linkers */
545 Free_t   Perl_mfree (Malloc_t where);
546
547 typedef struct perl_mstats perl_mstats_t;
548
549 struct perl_mstats {
550     unsigned long *nfree;
551     unsigned long *ntotal;
552     long topbucket, topbucket_ev, topbucket_odd, totfree, total, total_chain;
553     long total_sbrk, sbrks, sbrk_good, sbrk_slack, start_slack, sbrked_remains;
554     long minbucket;
555     /* Level 1 info */
556     unsigned long *bucket_mem_size;
557     unsigned long *bucket_available_size;
558 };
559
560 #  define safemalloc  Perl_malloc
561 #  define safecalloc  Perl_calloc
562 #  define saferealloc Perl_realloc
563 #  define safefree    Perl_mfree
564 #else  /* MYMALLOC */
565 #  define safemalloc  safesysmalloc
566 #  define safecalloc  safesyscalloc
567 #  define saferealloc safesysrealloc
568 #  define safefree    safesysfree
569 #endif /* MYMALLOC */
570
571 #if !defined(HAS_STRCHR) && defined(HAS_INDEX) && !defined(strchr)
572 #define strchr index
573 #define strrchr rindex
574 #endif
575
576 #ifdef I_MEMORY
577 #  include <memory.h>
578 #endif
579
580 #ifdef HAS_MEMCPY
581 #  if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY)
582 #    ifndef memcpy
583         extern char * memcpy (char*, char*, int);
584 #    endif
585 #  endif
586 #else
587 #   ifndef memcpy
588 #       ifdef HAS_BCOPY
589 #           define memcpy(d,s,l) bcopy(s,d,l)
590 #       else
591 #           define memcpy(d,s,l) my_bcopy(s,d,l)
592 #       endif
593 #   endif
594 #endif /* HAS_MEMCPY */
595
596 #ifdef HAS_MEMSET
597 #  if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY)
598 #    ifndef memset
599         extern char *memset (char*, int, int);
600 #    endif
601 #  endif
602 #else
603 #  define memset(d,c,l) my_memset(d,c,l)
604 #endif /* HAS_MEMSET */
605
606 #if !defined(HAS_MEMMOVE) && !defined(memmove)
607 #   if defined(HAS_BCOPY) && defined(HAS_SAFE_BCOPY)
608 #       define memmove(d,s,l) bcopy(s,d,l)
609 #   else
610 #       if defined(HAS_MEMCPY) && defined(HAS_SAFE_MEMCPY)
611 #           define memmove(d,s,l) memcpy(d,s,l)
612 #       else
613 #           define memmove(d,s,l) my_bcopy(s,d,l)
614 #       endif
615 #   endif
616 #endif
617
618 #if defined(mips) && defined(ultrix) && !defined(__STDC__)
619 #   undef HAS_MEMCMP
620 #endif
621
622 #if defined(HAS_MEMCMP) && defined(HAS_SANE_MEMCMP)
623 #  if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY)
624 #    ifndef memcmp
625         extern int memcmp (char*, char*, int);
626 #    endif
627 #  endif
628 #  ifdef BUGGY_MSC
629   #  pragma function(memcmp)
630 #  endif
631 #else
632 #   ifndef memcmp
633 #       define memcmp   my_memcmp
634 #   endif
635 #endif /* HAS_MEMCMP && HAS_SANE_MEMCMP */
636
637 #ifndef memzero
638 #   ifdef HAS_MEMSET
639 #       define memzero(d,l) memset(d,0,l)
640 #   else
641 #       ifdef HAS_BZERO
642 #           define memzero(d,l) bzero(d,l)
643 #       else
644 #           define memzero(d,l) my_bzero(d,l)
645 #       endif
646 #   endif
647 #endif
648
649 #ifndef memchr
650 #   ifndef HAS_MEMCHR
651 #       define memchr(s,c,n) ninstr((char*)(s), ((char*)(s)) + n, &(c), &(c) + 1)
652 #   endif
653 #endif
654
655 #ifndef HAS_BCMP
656 #   ifndef bcmp
657 #       define bcmp(s1,s2,l) memcmp(s1,s2,l)
658 #   endif
659 #endif /* !HAS_BCMP */
660
661 #ifdef I_NETINET_IN
662 #   include <netinet/in.h>
663 #endif
664
665 #ifdef I_ARPA_INET
666 #   include <arpa/inet.h>
667 #endif
668
669 #if defined(SF_APPEND) && defined(USE_SFIO) && defined(I_SFIO)
670 /* <sfio.h> defines SF_APPEND and <sys/stat.h> might define SF_APPEND
671  * (the neo-BSD seem to do this).  */
672 #   undef SF_APPEND
673 #endif
674
675 #ifdef I_SYS_STAT
676 #   include <sys/stat.h>
677 #endif
678
679 /* The stat macros for Amdahl UTS, Unisoft System V/88 (and derivatives
680    like UTekV) are broken, sometimes giving false positives.  Undefine
681    them here and let the code below set them to proper values.
682
683    The ghs macro stands for GreenHills Software C-1.8.5 which
684    is the C compiler for sysV88 and the various derivatives.
685    This header file bug is corrected in gcc-2.5.8 and later versions.
686    --Kaveh Ghazi (ghazi@noc.rutgers.edu) 10/3/94.  */
687
688 #if defined(uts) || (defined(m88k) && defined(ghs))
689 #   undef S_ISDIR
690 #   undef S_ISCHR
691 #   undef S_ISBLK
692 #   undef S_ISREG
693 #   undef S_ISFIFO
694 #   undef S_ISLNK
695 #endif
696
697 #ifdef I_TIME
698 #   include <time.h>
699 #endif
700
701 #ifdef I_SYS_TIME
702 #   ifdef I_SYS_TIME_KERNEL
703 #       define KERNEL
704 #   endif
705 #   include <sys/time.h>
706 #   ifdef I_SYS_TIME_KERNEL
707 #       undef KERNEL
708 #   endif
709 #endif
710
711 #if defined(HAS_TIMES) && defined(I_SYS_TIMES)
712 #    include <sys/times.h>
713 #endif
714
715 #if defined(HAS_STRERROR) && (!defined(HAS_MKDIR) || !defined(HAS_RMDIR))
716 #   undef HAS_STRERROR
717 #endif
718
719 #include <errno.h>
720 #ifdef HAS_SOCKET
721 #   ifdef I_NET_ERRNO
722 #     include <net/errno.h>
723 #   endif
724 #endif
725
726 #ifdef VMS
727 #   define SETERRNO(errcode,vmserrcode) \
728         STMT_START {                    \
729             set_errno(errcode);         \
730             set_vaxc_errno(vmserrcode); \
731         } STMT_END
732 #else
733 #   define SETERRNO(errcode,vmserrcode) (errno = (errcode))
734 #endif
735
736 #ifdef USE_THREADS
737 #  define ERRSV (thr->errsv)
738 #  define DEFSV THREADSV(0)
739 #  define SAVE_DEFSV save_threadsv(0)
740 #else
741 #  define ERRSV GvSV(PL_errgv)
742 #  define DEFSV GvSV(PL_defgv)
743 #  define SAVE_DEFSV SAVESPTR(GvSV(PL_defgv))
744 #endif /* USE_THREADS */
745
746 #define ERRHV GvHV(PL_errgv)    /* XXX unused, here for compatibility */
747
748 #ifndef errno
749         extern int errno;     /* ANSI allows errno to be an lvalue expr.
750                                * For example in multithreaded environments
751                                * something like this might happen:
752                                * extern int *_errno(void);
753                                * #define errno (*_errno()) */
754 #endif
755
756 #ifdef HAS_STRERROR
757 #       ifdef VMS
758         char *strerror (int,...);
759 #       else
760 #ifndef DONT_DECLARE_STD
761         char *strerror (int);
762 #endif
763 #       endif
764 #       ifndef Strerror
765 #           define Strerror strerror
766 #       endif
767 #else
768 #    ifdef HAS_SYS_ERRLIST
769         extern int sys_nerr;
770         extern char *sys_errlist[];
771 #       ifndef Strerror
772 #           define Strerror(e) \
773                 ((e) < 0 || (e) >= sys_nerr ? "(unknown)" : sys_errlist[e])
774 #       endif
775 #   endif
776 #endif
777
778 #ifdef I_SYS_IOCTL
779 #   ifndef _IOCTL_
780 #       include <sys/ioctl.h>
781 #   endif
782 #endif
783
784 #if defined(mc300) || defined(mc500) || defined(mc700) || defined(mc6000)
785 #   ifdef HAS_SOCKETPAIR
786 #       undef HAS_SOCKETPAIR
787 #   endif
788 #   ifdef I_NDBM
789 #       undef I_NDBM
790 #   endif
791 #endif
792
793 #if INTSIZE == 2
794 #   define htoni htons
795 #   define ntohi ntohs
796 #else
797 #   define htoni htonl
798 #   define ntohi ntohl
799 #endif
800
801 /* Configure already sets Direntry_t */
802 #if defined(I_DIRENT)
803 #   include <dirent.h>
804     /* NeXT needs dirent + sys/dir.h */
805 #   if  defined(I_SYS_DIR) && (defined(NeXT) || defined(__NeXT__))
806 #       include <sys/dir.h>
807 #   endif
808 #else
809 #   ifdef I_SYS_NDIR
810 #       include <sys/ndir.h>
811 #   else
812 #       ifdef I_SYS_DIR
813 #           ifdef hp9000s500
814 #               include <ndir.h>        /* may be wrong in the future */
815 #           else
816 #               include <sys/dir.h>
817 #           endif
818 #       endif
819 #   endif
820 #endif
821
822 #ifdef FPUTS_BOTCH
823 /* work around botch in SunOS 4.0.1 and 4.0.2 */
824 #   ifndef fputs
825 #       define fputs(sv,fp) fprintf(fp,"%s",sv)
826 #   endif
827 #endif
828
829 /*
830  * The following gobbledygook brought to you on behalf of __STDC__.
831  * (I could just use #ifndef __STDC__, but this is more bulletproof
832  * in the face of half-implementations.)
833  */
834
835 #ifdef I_SYSMODE
836 #include <sys/mode.h>
837 #endif
838
839 #ifndef S_IFMT
840 #   ifdef _S_IFMT
841 #       define S_IFMT _S_IFMT
842 #   else
843 #       define S_IFMT 0170000
844 #   endif
845 #endif
846
847 #ifndef S_ISDIR
848 #   define S_ISDIR(m) ((m & S_IFMT) == S_IFDIR)
849 #endif
850
851 #ifndef S_ISCHR
852 #   define S_ISCHR(m) ((m & S_IFMT) == S_IFCHR)
853 #endif
854
855 #ifndef S_ISBLK
856 #   ifdef S_IFBLK
857 #       define S_ISBLK(m) ((m & S_IFMT) == S_IFBLK)
858 #   else
859 #       define S_ISBLK(m) (0)
860 #   endif
861 #endif
862
863 #ifndef S_ISREG
864 #   define S_ISREG(m) ((m & S_IFMT) == S_IFREG)
865 #endif
866
867 #ifndef S_ISFIFO
868 #   ifdef S_IFIFO
869 #       define S_ISFIFO(m) ((m & S_IFMT) == S_IFIFO)
870 #   else
871 #       define S_ISFIFO(m) (0)
872 #   endif
873 #endif
874
875 #ifndef S_ISLNK
876 #   ifdef _S_ISLNK
877 #       define S_ISLNK(m) _S_ISLNK(m)
878 #   else
879 #       ifdef _S_IFLNK
880 #           define S_ISLNK(m) ((m & S_IFMT) == _S_IFLNK)
881 #       else
882 #           ifdef S_IFLNK
883 #               define S_ISLNK(m) ((m & S_IFMT) == S_IFLNK)
884 #           else
885 #               define S_ISLNK(m) (0)
886 #           endif
887 #       endif
888 #   endif
889 #endif
890
891 #ifndef S_ISSOCK
892 #   ifdef _S_ISSOCK
893 #       define S_ISSOCK(m) _S_ISSOCK(m)
894 #   else
895 #       ifdef _S_IFSOCK
896 #           define S_ISSOCK(m) ((m & S_IFMT) == _S_IFSOCK)
897 #       else
898 #           ifdef S_IFSOCK
899 #               define S_ISSOCK(m) ((m & S_IFMT) == S_IFSOCK)
900 #           else
901 #               define S_ISSOCK(m) (0)
902 #           endif
903 #       endif
904 #   endif
905 #endif
906
907 #ifndef S_IRUSR
908 #   ifdef S_IREAD
909 #       define S_IRUSR S_IREAD
910 #       define S_IWUSR S_IWRITE
911 #       define S_IXUSR S_IEXEC
912 #   else
913 #       define S_IRUSR 0400
914 #       define S_IWUSR 0200
915 #       define S_IXUSR 0100
916 #   endif
917 #endif
918
919 #ifndef S_IRGRP
920 #   ifdef S_IRUSR
921 #       define S_IRGRP (S_IRUSR>>3)
922 #       define S_IWGRP (S_IWUSR>>3)
923 #       define S_IXGRP (S_IXUSR>>3)
924 #   else
925 #       define S_IRGRP 0040
926 #       define S_IWGRP 0020
927 #       define S_IXGRP 0010
928 #   endif
929 #endif
930
931 #ifndef S_IROTH
932 #   ifdef S_IRUSR
933 #       define S_IROTH (S_IRUSR>>6)
934 #       define S_IWOTH (S_IWUSR>>6)
935 #       define S_IXOTH (S_IXUSR>>6)
936 #   else
937 #       define S_IROTH 0040
938 #       define S_IWOTH 0020
939 #       define S_IXOTH 0010
940 #   endif
941 #endif
942
943 #ifndef S_ISUID
944 #   define S_ISUID 04000
945 #endif
946
947 #ifndef S_ISGID
948 #   define S_ISGID 02000
949 #endif
950
951 #ifndef S_IRWXU
952 #   define S_IRWXU (S_IRUSR|S_IWUSR|S_IXUSR)
953 #endif 
954
955 #ifndef S_IRWXG
956 #   define S_IRWXG (S_IRGRP|S_IWGRP|S_IXGRP)
957 #endif 
958
959 #ifndef S_IRWXO
960 #   define S_IRWXO (S_IROTH|S_IWOTH|S_IXOTH)
961 #endif 
962
963 #ifndef S_IREAD
964 #   define S_IREAD S_IRUSR
965 #endif
966
967 #ifndef S_IWRITE
968 #   define S_IWRITE S_IWUSR
969 #endif
970
971 #ifndef S_IEXEC
972 #   define S_IEXEC S_IXUSR
973 #endif
974
975 #ifdef ff_next
976 #   undef ff_next
977 #endif
978
979 #if defined(cray) || defined(gould) || defined(i860) || defined(pyr)
980 #   define SLOPPYDIVIDE
981 #endif
982
983 #ifdef UV
984 #undef UV
985 #endif
986
987 /*
988     The IV type is supposed to be long enough to hold any integral
989     value or a pointer.
990     --Andy Dougherty    August 1996
991 */
992
993 typedef IVTYPE IV;
994 typedef UVTYPE UV;
995
996 #if defined(USE_64_BIT_INT) && defined(HAS_QUAD)
997 #  if QUADKIND == QUAD_IS_INT64_T && defined(INT64_MAX)
998 #    define IV_MAX INT64_MAX
999 #    define IV_MIN INT64_MIN
1000 #    define UV_MAX UINT64_MAX
1001 #    ifndef UINT64_MIN
1002 #      define UINT64_MIN 0
1003 #    endif
1004 #    define UV_MIN UINT64_MIN
1005 #  else
1006 #    define IV_MAX PERL_QUAD_MAX
1007 #    define IV_MIN PERL_QUAD_MIN
1008 #    define UV_MAX PERL_UQUAD_MAX
1009 #    define UV_MIN PERL_UQUAD_MIN
1010 #  endif
1011 #  define IV_IS_QUAD
1012 #  define UV_IS_QUAD
1013 #else
1014 #  if defined(INT32_MAX) && IVSIZE == 4
1015 #    define IV_MAX INT32_MAX
1016 #    define IV_MIN INT32_MIN
1017 #    ifndef UINT32_MAX_BROKEN /* e.g. HP-UX with gcc messes this up */
1018 #        define UV_MAX UINT32_MAX
1019 #    else
1020 #        define UV_MAX 4294967295U
1021 #    endif
1022 #    ifndef UINT32_MIN
1023 #      define UINT32_MIN 0
1024 #    endif
1025 #    define UV_MIN UINT32_MIN
1026 #  else
1027 #    define IV_MAX PERL_LONG_MAX
1028 #    define IV_MIN PERL_LONG_MIN
1029 #    define UV_MAX PERL_ULONG_MAX
1030 #    define UV_MIN PERL_ULONG_MIN
1031 #  endif
1032 #  if IVSIZE == 8
1033 #    define IV_IS_QUAD
1034 #    define UV_IS_QUAD
1035 #    ifndef HAS_QUAD
1036 #      define HAS_QUAD
1037 #    endif
1038 #  else
1039 #    undef IV_IS_QUAD
1040 #    undef UV_IS_QUAD
1041 #    undef HAS_QUAD
1042 #  endif
1043 #endif
1044
1045 #define IV_DIG (BIT_DIGITS(IVSIZE * 8))
1046 #define UV_DIG (BIT_DIGITS(UVSIZE * 8))
1047
1048 /*   
1049  *  The macros INT2PTR and NUM2PTR are (despite their names)
1050  *  bi-directional: they will convert int/float to or from pointers.
1051  *  However the conversion to int/float are named explicitly:
1052  *  PTR2IV, PTR2UV, PTR2NV.
1053  *
1054  *  For int conversions we do not need two casts if pointers are
1055  *  the same size as IV and UV.   Otherwise we need an explicit
1056  *  cast (PTRV) to avoid compiler warnings.
1057  */
1058 #if (IVSIZE == PTRSIZE) && (UVSIZE == PTRSIZE)
1059 #  define PTRV                  UV
1060 #  define INT2PTR(any,d)        (any)(d)
1061 #else
1062 #  if PTRSIZE == LONGSIZE 
1063 #    define PTRV                unsigned long
1064 #  else
1065 #    define PTRV                unsigned
1066 #  endif
1067 #  define INT2PTR(any,d)        (any)(PTRV)(d)
1068 #endif
1069 #define NUM2PTR(any,d)  (any)(PTRV)(d)
1070 #define PTR2IV(p)       INT2PTR(IV,p)
1071 #define PTR2UV(p)       INT2PTR(UV,p)
1072 #define PTR2NV(p)       NUM2PTR(NV,p)
1073   
1074 #ifdef USE_LONG_DOUBLE
1075 #  if !(defined(HAS_LONG_DOUBLE) && (LONG_DOUBLESIZE > DOUBLESIZE))
1076 #     undef USE_LONG_DOUBLE /* Ouch! */
1077 #  endif
1078 #endif
1079
1080 #ifdef OVR_DBL_DIG
1081 /* Use an overridden DBL_DIG */
1082 # ifdef DBL_DIG
1083 #  undef DBL_DIG
1084 # endif
1085 # define DBL_DIG OVR_DBL_DIG
1086 #else
1087 /* The following is all to get DBL_DIG, in order to pick a nice
1088    default value for printing floating point numbers in Gconvert.
1089    (see config.h)
1090 */
1091 #ifdef I_LIMITS
1092 #include <limits.h>
1093 #endif
1094 #ifdef I_FLOAT
1095 #include <float.h>
1096 #endif
1097 #ifndef HAS_DBL_DIG
1098 #define DBL_DIG 15   /* A guess that works lots of places */
1099 #endif
1100 #endif
1101 #ifdef I_FLOAT
1102 #include <float.h>
1103 #endif
1104 #ifndef HAS_DBL_DIG
1105 #define DBL_DIG 15   /* A guess that works lots of places */
1106 #endif
1107
1108 #ifdef OVR_LDBL_DIG
1109 /* Use an overridden LDBL_DIG */
1110 # ifdef LDBL_DIG
1111 #  undef LDBL_DIG
1112 # endif
1113 # define LDBL_DIG OVR_LDBL_DIG
1114 #else
1115 /* The following is all to get LDBL_DIG, in order to pick a nice
1116    default value for printing floating point numbers in Gconvert.
1117    (see config.h)
1118 */
1119 # ifdef I_LIMITS
1120 #   include <limits.h>
1121 # endif
1122 # ifdef I_FLOAT
1123 #  include <float.h>
1124 # endif
1125 # ifndef HAS_LDBL_DIG
1126 #  if LONG_DOUBLESIZE == 10
1127 #   define LDBL_DIG 18 /* assume IEEE */
1128 #  else
1129 #   if LONG_DOUBLESIZE == 12
1130 #    define LDBL_DIG 18 /* gcc? */
1131 #   else
1132 #    if LONG_DOUBLESIZE == 16
1133 #     define LDBL_DIG 33 /* assume IEEE */
1134 #    else
1135 #     if LONG_DOUBLESIZE == DOUBLESIZE
1136 #      define LDBL_DIG DBL_DIG /* bummer */
1137 #     endif
1138 #    endif
1139 #   endif
1140 #  endif
1141 # endif
1142 #endif
1143
1144 typedef NVTYPE NV;
1145
1146 #ifdef I_IEEEFP
1147 #   include <ieeefp.h>
1148 #endif
1149
1150 #ifdef USE_LONG_DOUBLE
1151 #   ifdef I_SUNMATH
1152 #       include <sunmath.h>
1153 #   endif
1154 #   define NV_DIG LDBL_DIG
1155 #   ifdef HAS_SQRTL
1156         /* libsunmath doesn't have modfl and frexpl as of mid-March 2000 */
1157         /* XXX Configure probe for modfl and frexpl needed XXX */
1158 #       if defined(__sun) && defined(__svr4)
1159 #           define Perl_modf(x,y) ((long double)modf((double)(x),(double*)(y)))
1160 #           define Perl_frexp(x) ((long double)frexp((double)(x)))
1161 #       else
1162 #           define Perl_modf modfl
1163 #           define Perl_frexp frexpl
1164 #       endif
1165 #       define Perl_cos cosl
1166 #       define Perl_sin sinl
1167 #       define Perl_sqrt sqrtl
1168 #       define Perl_exp expl
1169 #       define Perl_log logl
1170 #       define Perl_atan2 atan2l
1171 #       define Perl_pow powl
1172 #       define Perl_floor floorl
1173 #       define Perl_fmod fmodl
1174 #   endif
1175 #else
1176 #   define NV_DIG DBL_DIG
1177 #   define Perl_modf modf
1178 #   define Perl_frexp frexp
1179 #   define Perl_cos cos
1180 #   define Perl_sin sin
1181 #   define Perl_sqrt sqrt
1182 #   define Perl_exp exp
1183 #   define Perl_log log
1184 #   define Perl_atan2 atan2
1185 #   define Perl_pow pow
1186 #   define Perl_floor floor
1187 #   define Perl_fmod fmod
1188 #endif
1189
1190 #if !defined(Perl_atof) && defined(USE_LONG_DOUBLE) && defined(HAS_LONG_DOUBLE)
1191 #   if !defined(Perl_atof) && defined(HAS_STRTOLD) 
1192 #       define Perl_atof(s) strtold(s, (char**)NULL)
1193 #   endif
1194 #   if !defined(Perl_atof) && defined(HAS_ATOLF)
1195 #       define Perl_atof atolf
1196 #   endif
1197 #endif
1198 #if !defined(Perl_atof)
1199 #   define Perl_atof atof /* we assume atof being available anywhere */
1200 #endif
1201
1202 /* Previously these definitions used hardcoded figures. 
1203  * It is hoped these formula are more portable, although
1204  * no data one way or another is presently known to me.
1205  * The "PERL_" names are used because these calculated constants
1206  * do not meet the ANSI requirements for LONG_MAX, etc., which
1207  * need to be constants acceptable to #if - kja
1208  *    define PERL_LONG_MAX        2147483647L
1209  *    define PERL_LONG_MIN        (-LONG_MAX - 1)
1210  *    define PERL ULONG_MAX       4294967295L
1211  */
1212
1213 #ifdef I_LIMITS  /* Needed for cast_xxx() functions below. */
1214 #  include <limits.h>
1215 #else
1216 #ifdef I_VALUES
1217 #  include <values.h>
1218 #endif
1219 #endif
1220
1221 /*
1222  * Try to figure out max and min values for the integral types.  THE CORRECT
1223  * SOLUTION TO THIS MESS: ADAPT enquire.c FROM GCC INTO CONFIGURE.  The
1224  * following hacks are used if neither limits.h or values.h provide them:
1225  * U<TYPE>_MAX: for types >= int: ~(unsigned TYPE)0
1226  *              for types <  int:  (unsigned TYPE)~(unsigned)0
1227  *      The argument to ~ must be unsigned so that later signed->unsigned
1228  *      conversion can't modify the value's bit pattern (e.g. -0 -> +0),
1229  *      and it must not be smaller than int because ~ does integral promotion.
1230  * <type>_MAX: (<type>) (U<type>_MAX >> 1)
1231  * <type>_MIN: -<type>_MAX - <is_twos_complement_architecture: (3 & -1) == 3>.
1232  *      The latter is a hack which happens to work on some machines but
1233  *      does *not* catch any random system, or things like integer types
1234  *      with NaN if that is possible.
1235  *
1236  * All of the types are explicitly cast to prevent accidental loss of
1237  * numeric range, and in the hope that they will be less likely to confuse
1238  * over-eager optimizers.
1239  *
1240  */
1241
1242 #define PERL_UCHAR_MIN ((unsigned char)0)
1243
1244 #ifdef UCHAR_MAX
1245 #  define PERL_UCHAR_MAX ((unsigned char)UCHAR_MAX)
1246 #else
1247 #  ifdef MAXUCHAR
1248 #    define PERL_UCHAR_MAX ((unsigned char)MAXUCHAR)
1249 #  else
1250 #    define PERL_UCHAR_MAX       ((unsigned char)~(unsigned)0)
1251 #  endif
1252 #endif
1253  
1254 /*
1255  * CHAR_MIN and CHAR_MAX are not included here, as the (char) type may be
1256  * ambiguous. It may be equivalent to (signed char) or (unsigned char)
1257  * depending on local options. Until Configure detects this (or at least
1258  * detects whether the "signed" keyword is available) the CHAR ranges
1259  * will not be included. UCHAR functions normally.
1260  *                                                           - kja
1261  */
1262
1263 #define PERL_USHORT_MIN ((unsigned short)0)
1264
1265 #ifdef USHORT_MAX
1266 #  define PERL_USHORT_MAX ((unsigned short)USHORT_MAX)
1267 #else
1268 #  ifdef MAXUSHORT
1269 #    define PERL_USHORT_MAX ((unsigned short)MAXUSHORT)
1270 #  else
1271 #    ifdef USHRT_MAX
1272 #      define PERL_USHORT_MAX ((unsigned short)USHRT_MAX)
1273 #    else
1274 #      define PERL_USHORT_MAX       ((unsigned short)~(unsigned)0)
1275 #    endif
1276 #  endif
1277 #endif
1278
1279 #ifdef SHORT_MAX
1280 #  define PERL_SHORT_MAX ((short)SHORT_MAX)
1281 #else
1282 #  ifdef MAXSHORT    /* Often used in <values.h> */
1283 #    define PERL_SHORT_MAX ((short)MAXSHORT)
1284 #  else
1285 #    ifdef SHRT_MAX
1286 #      define PERL_SHORT_MAX ((short)SHRT_MAX)
1287 #    else
1288 #      define PERL_SHORT_MAX      ((short) (PERL_USHORT_MAX >> 1))
1289 #    endif
1290 #  endif
1291 #endif
1292
1293 #ifdef SHORT_MIN
1294 #  define PERL_SHORT_MIN ((short)SHORT_MIN)
1295 #else
1296 #  ifdef MINSHORT
1297 #    define PERL_SHORT_MIN ((short)MINSHORT)
1298 #  else
1299 #    ifdef SHRT_MIN
1300 #      define PERL_SHORT_MIN ((short)SHRT_MIN)
1301 #    else
1302 #      define PERL_SHORT_MIN        (-PERL_SHORT_MAX - ((3 & -1) == 3))
1303 #    endif
1304 #  endif
1305 #endif
1306
1307 #ifdef UINT_MAX
1308 #  define PERL_UINT_MAX ((unsigned int)UINT_MAX)
1309 #else
1310 #  ifdef MAXUINT
1311 #    define PERL_UINT_MAX ((unsigned int)MAXUINT)
1312 #  else
1313 #    define PERL_UINT_MAX       (~(unsigned int)0)
1314 #  endif
1315 #endif
1316
1317 #define PERL_UINT_MIN ((unsigned int)0)
1318
1319 #ifdef INT_MAX
1320 #  define PERL_INT_MAX ((int)INT_MAX)
1321 #else
1322 #  ifdef MAXINT    /* Often used in <values.h> */
1323 #    define PERL_INT_MAX ((int)MAXINT)
1324 #  else
1325 #    define PERL_INT_MAX        ((int)(PERL_UINT_MAX >> 1))
1326 #  endif
1327 #endif
1328
1329 #ifdef INT_MIN
1330 #  define PERL_INT_MIN ((int)INT_MIN)
1331 #else
1332 #  ifdef MININT
1333 #    define PERL_INT_MIN ((int)MININT)
1334 #  else
1335 #    define PERL_INT_MIN        (-PERL_INT_MAX - ((3 & -1) == 3))
1336 #  endif
1337 #endif
1338
1339 #ifdef ULONG_MAX
1340 #  define PERL_ULONG_MAX ((unsigned long)ULONG_MAX)
1341 #else
1342 #  ifdef MAXULONG
1343 #    define PERL_ULONG_MAX ((unsigned long)MAXULONG)
1344 #  else
1345 #    define PERL_ULONG_MAX       (~(unsigned long)0)
1346 #  endif
1347 #endif
1348
1349 #define PERL_ULONG_MIN ((unsigned long)0L)
1350
1351 #ifdef LONG_MAX
1352 #  define PERL_LONG_MAX ((long)LONG_MAX)
1353 #else
1354 #  ifdef MAXLONG    /* Often used in <values.h> */
1355 #    define PERL_LONG_MAX ((long)MAXLONG)
1356 #  else
1357 #    define PERL_LONG_MAX        ((long) (PERL_ULONG_MAX >> 1))
1358 #  endif
1359 #endif
1360
1361 #ifdef LONG_MIN
1362 #  define PERL_LONG_MIN ((long)LONG_MIN)
1363 #else
1364 #  ifdef MINLONG
1365 #    define PERL_LONG_MIN ((long)MINLONG)
1366 #  else
1367 #    define PERL_LONG_MIN        (-PERL_LONG_MAX - ((3 & -1) == 3))
1368 #  endif
1369 #endif
1370
1371 #ifdef UV_IS_QUAD
1372
1373 #  ifdef UQUAD_MAX
1374 #    define PERL_UQUAD_MAX ((UV)UQUAD_MAX)
1375 #  else
1376 #    define PERL_UQUAD_MAX      (~(UV)0)
1377 #  endif
1378
1379 #  define PERL_UQUAD_MIN ((UV)0)
1380
1381 #  ifdef QUAD_MAX
1382 #    define PERL_QUAD_MAX ((IV)QUAD_MAX)
1383 #  else
1384 #    define PERL_QUAD_MAX       ((IV) (PERL_UQUAD_MAX >> 1))
1385 #  endif
1386
1387 #  ifdef QUAD_MIN
1388 #    define PERL_QUAD_MIN ((IV)QUAD_MIN)
1389 #  else
1390 #    define PERL_QUAD_MIN       (-PERL_QUAD_MAX - ((3 & -1) == 3))
1391 #  endif
1392
1393 #endif
1394
1395 typedef MEM_SIZE STRLEN;
1396
1397 typedef struct op OP;
1398 typedef struct cop COP;
1399 typedef struct unop UNOP;
1400 typedef struct binop BINOP;
1401 typedef struct listop LISTOP;
1402 typedef struct logop LOGOP;
1403 typedef struct pmop PMOP;
1404 typedef struct svop SVOP;
1405 typedef struct padop PADOP;
1406 typedef struct pvop PVOP;
1407 typedef struct loop LOOP;
1408
1409 typedef struct interpreter PerlInterpreter;
1410 typedef struct sv SV;
1411 typedef struct av AV;
1412 typedef struct hv HV;
1413 typedef struct cv CV;
1414 typedef struct regexp REGEXP;
1415 typedef struct gp GP;
1416 typedef struct gv GV;
1417 typedef struct io IO;
1418 typedef struct context PERL_CONTEXT;
1419 typedef struct block BLOCK;
1420
1421 typedef struct magic MAGIC;
1422 typedef struct xrv XRV;
1423 typedef struct xpv XPV;
1424 typedef struct xpviv XPVIV;
1425 typedef struct xpvuv XPVUV;
1426 typedef struct xpvnv XPVNV;
1427 typedef struct xpvmg XPVMG;
1428 typedef struct xpvlv XPVLV;
1429 typedef struct xpvav XPVAV;
1430 typedef struct xpvhv XPVHV;
1431 typedef struct xpvgv XPVGV;
1432 typedef struct xpvcv XPVCV;
1433 typedef struct xpvbm XPVBM;
1434 typedef struct xpvfm XPVFM;
1435 typedef struct xpvio XPVIO;
1436 typedef struct mgvtbl MGVTBL;
1437 typedef union any ANY;
1438 typedef struct ptr_tbl_ent PTR_TBL_ENT_t;
1439 typedef struct ptr_tbl PTR_TBL_t;
1440
1441 #include "handy.h"
1442
1443 #if defined(USE_LARGE_FILES) && !defined(NO_64_BIT_RAWIO)
1444 #   if LSEEKSIZE == 8 && !defined(USE_64_BIT_RAWIO)
1445 #       define USE_64_BIT_RAWIO /* implicit */
1446 #   endif
1447 #endif
1448
1449 /* Notice the use of HAS_FSEEKO: now we are obligated to always use
1450  * fseeko/ftello if possible.  Don't go #defining ftell to ftello yourself,
1451  * however, because operating systems like to do that themself. */
1452 #ifndef FSEEKSIZE
1453 #   ifdef HAS_FSEEKO
1454 #       define FSEEKSIZE LSEEKSIZE
1455 #   else
1456 #       define FSEEKSIZE LONGSIZE
1457 #   endif  
1458 #endif
1459
1460 #if defined(USE_LARGE_FILES) && !defined(NO_64_BIT_STDIO)
1461 #   if FSEEKSIZE == 8 && !defined(USE_64_BIT_STDIO)
1462 #       define USE_64_BIT_STDIO /* implicit */
1463 #   endif
1464 #endif
1465
1466 #ifdef USE_64_BIT_RAWIO
1467 #   ifdef HAS_OFF64_T
1468 #       undef Off_t
1469 #       define Off_t off64_t
1470 #       undef LSEEKSIZE
1471 #       define LSEEKSIZE 8
1472 #   endif
1473 /* Most 64-bit environments have defines like _LARGEFILE_SOURCE that
1474  * will trigger defines like the ones below.  Some 64-bit environments,
1475  * however, do not.  Therefore we have to explicitly mix and match. */
1476 #   if defined(USE_OPEN64)
1477 #       define open open64
1478 #   endif
1479 #   if defined(USE_LSEEK64)
1480 #       define lseek lseek64
1481 #   else
1482 #       if defined(USE_LLSEEK)
1483 #           define lseek llseek
1484 #       endif
1485 #   endif
1486 #   if defined(USE_STAT64)
1487 #       define stat stat64
1488 #   endif
1489 #   if defined(USE_FSTAT64)
1490 #       define fstat fstat64
1491 #   endif
1492 #   if defined(USE_LSTAT64)
1493 #       define lstat lstat64
1494 #   endif
1495 #   if defined(USE_FLOCK64)
1496 #       define flock flock64
1497 #   endif
1498 #   if defined(USE_LOCKF64)
1499 #       define lockf lockf64
1500 #   endif
1501 #   if defined(USE_FCNTL64)
1502 #       define fcntl fcntl64
1503 #   endif
1504 #   if defined(USE_TRUNCATE64)
1505 #       define truncate truncate64
1506 #   endif
1507 #   if defined(USE_FTRUNCATE64)
1508 #       define ftruncate ftruncate64
1509 #   endif
1510 #endif
1511
1512 #ifdef USE_64_BIT_STDIO
1513 #   ifdef HAS_FPOS64_T
1514 #       undef Fpos_t
1515 #       define Fpos_t fpos64_t
1516 #   endif
1517 /* Most 64-bit environments have defines like _LARGEFILE_SOURCE that
1518  * will trigger defines like the ones below.  Some 64-bit environments,
1519  * however, do not. */
1520 #   if defined(USE_FOPEN64)
1521 #       define fopen fopen64
1522 #   endif
1523 #   if defined(USE_FSEEK64)
1524 #       define fseek fseek64 /* don't do fseeko here, see perlio.c */
1525 #   endif
1526 #   if defined(USE_FTELL64)
1527 #       define ftell ftell64 /* don't do ftello here, see perlio.c */
1528 #   endif
1529 #   if defined(USE_FSETPOS64)
1530 #       define fsetpos fsetpos64
1531 #   endif
1532 #   if defined(USE_FGETPOS64)
1533 #       define fgetpos fgetpos64
1534 #   endif
1535 #   if defined(USE_TMPFILE64)
1536 #       define tmpfile tmpfile64
1537 #   endif
1538 #   if defined(USE_FREOPEN64)
1539 #       define freopen freopen64
1540 #   endif
1541 #endif
1542
1543 #if defined(OS2)
1544 #  include "iperlsys.h"
1545 #endif
1546
1547 #if defined(__OPEN_VM)
1548 # include "vmesa/vmesaish.h"
1549 #endif
1550
1551 #ifdef DOSISH
1552 # if defined(OS2)
1553 #   include "os2ish.h"
1554 # else
1555 #   include "dosish.h"
1556 # endif
1557 #else
1558 # if defined(VMS)
1559 #   include "vmsish.h"
1560 # else
1561 #   if defined(PLAN9)
1562 #     include "./plan9/plan9ish.h"
1563 #   else
1564 #     if defined(MPE)
1565 #       include "mpeix/mpeixish.h"
1566 #     else
1567 #       if defined(__VOS__)
1568 #         include "vosish.h"
1569 #       else
1570 #         if defined(EPOC)
1571 #           include "epocish.h"
1572 #         else
1573 #           if defined(MACOS_TRADITIONAL)
1574 #             include "macos/macish.h"
1575 #           else
1576 #             include "unixish.h"
1577 #           endif
1578 #         endif
1579 #       endif
1580 #     endif
1581 #   endif
1582 # endif
1583 #endif         
1584
1585 #ifndef PERL_SYS_INIT3
1586 #  define PERL_SYS_INIT3(argvp,argcp,envp) PERL_SYS_INIT(argvp,argcp)
1587 #endif
1588
1589 #ifndef MAXPATHLEN
1590 #  ifdef PATH_MAX
1591 #    ifdef _POSIX_PATH_MAX
1592 #       if PATH_MAX > _POSIX_PATH_MAX
1593 /* MAXPATHLEN is supposed to include the final null character,
1594  * as opposed to PATH_MAX and _POSIX_PATH_MAX. */
1595 #         define MAXPATHLEN (PATH_MAX+1)
1596 #       else
1597 #         define MAXPATHLEN (_POSIX_PATH_MAX+1)
1598 #       endif
1599 #    else
1600 #      define MAXPATHLEN (PATH_MAX+1)
1601 #    endif
1602 #  else
1603 #    ifdef _POSIX_PATH_MAX
1604 #       define MAXPATHLEN (_POSIX_PATH_MAX+1)
1605 #    else
1606 #       define MAXPATHLEN 1024  /* Err on the large side. */
1607 #    endif
1608 #  endif
1609 #endif
1610
1611 /* 
1612  * USE_THREADS needs to be after unixish.h as <pthread.h> includes
1613  * <sys/signal.h> which defines NSIG - which will stop inclusion of <signal.h>
1614  * this results in many functions being undeclared which bothers C++
1615  * May make sense to have threads after "*ish.h" anyway
1616  */
1617
1618 #if defined(USE_THREADS) || defined(USE_ITHREADS)
1619 #  if defined(USE_THREADS)
1620    /* pending resolution of licensing issues, we avoid the erstwhile
1621     * atomic.h everywhere */
1622 #  define EMULATE_ATOMIC_REFCOUNTS
1623 #  endif
1624 #  ifdef FAKE_THREADS
1625 #    include "fakethr.h"
1626 #  else
1627 #    ifdef WIN32
1628 #      include <win32thread.h>
1629 #    else
1630 #      ifdef OS2
1631 #        include "os2thread.h"
1632 #      else
1633 #        ifdef I_MACH_CTHREADS
1634 #          include <mach/cthreads.h>
1635 #          if (defined(NeXT) || defined(__NeXT__)) && defined(PERL_POLLUTE_MALLOC)
1636 #            define MUTEX_INIT_CALLS_MALLOC
1637 #          endif
1638 typedef cthread_t       perl_os_thread;
1639 typedef mutex_t         perl_mutex;
1640 typedef condition_t     perl_cond;
1641 typedef void *          perl_key;
1642 #        else /* Posix threads */
1643 #          ifdef I_PTHREAD
1644 #            include <pthread.h>
1645 #          endif
1646 typedef pthread_t       perl_os_thread;
1647 typedef pthread_mutex_t perl_mutex;
1648 typedef pthread_cond_t  perl_cond;
1649 typedef pthread_key_t   perl_key;
1650 #        endif /* I_MACH_CTHREADS */
1651 #      endif /* OS2 */
1652 #    endif /* WIN32 */
1653 #  endif /* FAKE_THREADS */
1654 #endif /* USE_THREADS || USE_ITHREADS */
1655
1656 #ifdef WIN32
1657 #  include "win32.h"
1658 #endif
1659
1660 #ifdef VMS
1661 #   define STATUS_NATIVE        PL_statusvalue_vms
1662 #   define STATUS_NATIVE_EXPORT \
1663         ((I32)PL_statusvalue_vms == -1 ? 44 : PL_statusvalue_vms)
1664 #   define STATUS_NATIVE_SET(n)                                         \
1665         STMT_START {                                                    \
1666             PL_statusvalue_vms = (n);                                   \
1667             if ((I32)PL_statusvalue_vms == -1)                          \
1668                 PL_statusvalue = -1;                                    \
1669             else if (PL_statusvalue_vms & STS$M_SUCCESS)                \
1670                 PL_statusvalue = 0;                                     \
1671             else if ((PL_statusvalue_vms & STS$M_SEVERITY) == 0)        \
1672                 PL_statusvalue = 1 << 8;                                \
1673             else                                                        \
1674                 PL_statusvalue = (PL_statusvalue_vms & STS$M_SEVERITY) << 8;    \
1675         } STMT_END
1676 #   define STATUS_POSIX PL_statusvalue
1677 #   ifdef VMSISH_STATUS
1678 #       define STATUS_CURRENT   (VMSISH_STATUS ? STATUS_NATIVE : STATUS_POSIX)
1679 #   else
1680 #       define STATUS_CURRENT   STATUS_POSIX
1681 #   endif
1682 #   define STATUS_POSIX_SET(n)                          \
1683         STMT_START {                                    \
1684             PL_statusvalue = (n);                               \
1685             if (PL_statusvalue != -1) {                 \
1686                 PL_statusvalue &= 0xFFFF;                       \
1687                 PL_statusvalue_vms = PL_statusvalue ? 44 : 1;   \
1688             }                                           \
1689             else PL_statusvalue_vms = -1;                       \
1690         } STMT_END
1691 #   define STATUS_ALL_SUCCESS   (PL_statusvalue = 0, PL_statusvalue_vms = 1)
1692 #   define STATUS_ALL_FAILURE   (PL_statusvalue = 1, PL_statusvalue_vms = 44)
1693 #else
1694 #   define STATUS_NATIVE        STATUS_POSIX
1695 #   define STATUS_NATIVE_EXPORT STATUS_POSIX
1696 #   define STATUS_NATIVE_SET    STATUS_POSIX_SET
1697 #   define STATUS_POSIX         PL_statusvalue
1698 #   define STATUS_POSIX_SET(n)          \
1699         STMT_START {                    \
1700             PL_statusvalue = (n);               \
1701             if (PL_statusvalue != -1)   \
1702                 PL_statusvalue &= 0xFFFF;       \
1703         } STMT_END
1704 #   define STATUS_CURRENT STATUS_POSIX
1705 #   define STATUS_ALL_SUCCESS   (PL_statusvalue = 0)
1706 #   define STATUS_ALL_FAILURE   (PL_statusvalue = 1)
1707 #endif
1708
1709 /* flags in PL_exit_flags for nature of exit() */
1710 #define PERL_EXIT_EXPECTED      0x01
1711
1712 #ifndef MEMBER_TO_FPTR
1713 #  define MEMBER_TO_FPTR(name)          name
1714 #endif
1715
1716 /* format to use for version numbers in file/directory names */
1717 /* XXX move to Configure? */
1718 #ifndef PERL_FS_VER_FMT
1719 #  define PERL_FS_VER_FMT       "%d.%d.%d"
1720 #endif
1721
1722 /* This defines a way to flush all output buffers.  This may be a
1723  * performance issue, so we allow people to disable it.
1724  */
1725 #ifndef PERL_FLUSHALL_FOR_CHILD
1726 # if defined(FFLUSH_NULL) || defined(USE_SFIO)
1727 #  define PERL_FLUSHALL_FOR_CHILD       PerlIO_flush((PerlIO*)NULL)
1728 # else
1729 #  ifdef FFLUSH_ALL
1730 #   define PERL_FLUSHALL_FOR_CHILD      my_fflush_all()
1731 #  else
1732 #   define PERL_FLUSHALL_FOR_CHILD      NOOP
1733 #  endif
1734 # endif
1735 #endif
1736
1737 #ifndef PERL_WAIT_FOR_CHILDREN
1738 #  define PERL_WAIT_FOR_CHILDREN        NOOP
1739 #endif
1740
1741 /* the traditional thread-unsafe notion of "current interpreter". */
1742 #ifndef PERL_SET_INTERP
1743 #  define PERL_SET_INTERP(i)            (PL_curinterp = (PerlInterpreter*)(i))
1744 #endif
1745
1746 #ifndef PERL_GET_INTERP
1747 #  define PERL_GET_INTERP               (PL_curinterp)
1748 #endif
1749
1750 #if defined(PERL_IMPLICIT_CONTEXT) && !defined(PERL_GET_THX)
1751 #  ifdef USE_THREADS
1752 #    define PERL_GET_THX                ((struct perl_thread *)PERL_GET_CONTEXT)
1753 #  else
1754 #  ifdef MULTIPLICITY
1755 #    define PERL_GET_THX                ((PerlInterpreter *)PERL_GET_CONTEXT)
1756 #  else
1757 #  ifdef PERL_OBJECT
1758 #    define PERL_GET_THX                ((CPerlObj *)PERL_GET_CONTEXT)
1759 #  endif
1760 #  endif
1761 #  endif
1762 #  define PERL_SET_THX(t)               PERL_SET_CONTEXT(t)
1763 #endif
1764
1765 #ifndef SVf
1766 #  ifdef CHECK_FORMAT
1767 #    define SVf "p"
1768 #  else
1769 #    define SVf "_"
1770 #  endif 
1771 #endif
1772
1773 /* Some unistd.h's give a prototype for pause() even though
1774    HAS_PAUSE ends up undefined.  This causes the #define
1775    below to be rejected by the compmiler.  Sigh.
1776 */
1777 #ifdef HAS_PAUSE
1778 #define Pause   pause
1779 #else
1780 #define Pause() sleep((32767<<16)+32767)
1781 #endif
1782
1783 #ifndef IOCPARM_LEN
1784 #   ifdef IOCPARM_MASK
1785         /* on BSDish systes we're safe */
1786 #       define IOCPARM_LEN(x)  (((x) >> 16) & IOCPARM_MASK)
1787 #   else
1788         /* otherwise guess at what's safe */
1789 #       define IOCPARM_LEN(x)   256
1790 #   endif
1791 #endif
1792
1793 #if defined(__CYGWIN__)
1794 /* USEMYBINMODE
1795  *   This symbol, if defined, indicates that the program should
1796  *   use the routine my_binmode(FILE *fp, char iotype, int mode) to insure
1797  *   that a file is in "binary" mode -- that is, that no translation
1798  *   of bytes occurs on read or write operations.
1799  */
1800 #  define USEMYBINMODE / **/
1801 #  define my_binmode(fp, iotype, mode) \
1802             (PerlLIO_setmode(PerlIO_fileno(fp), mode) != -1 ? TRUE : FALSE)
1803 #endif
1804
1805 #ifdef UNION_ANY_DEFINITION
1806 UNION_ANY_DEFINITION;
1807 #else
1808 union any {
1809     void*       any_ptr;
1810     I32         any_i32;
1811     IV          any_iv;
1812     long        any_long;
1813     void        (*any_dptr) (void*);
1814     void        (*any_dxptr) (pTHXo_ void*);
1815 };
1816 #endif
1817
1818 #ifdef USE_THREADS
1819 #define ARGSproto struct perl_thread *thr
1820 #else
1821 #define ARGSproto
1822 #endif /* USE_THREADS */
1823
1824 typedef I32 (*filter_t) (pTHXo_ int, SV *, int);
1825
1826 #define FILTER_READ(idx, sv, len)  filter_read(idx, sv, len)
1827 #define FILTER_DATA(idx)           (AvARRAY(PL_rsfp_filters)[idx])
1828 #define FILTER_ISREADER(idx)       (idx >= AvFILLp(PL_rsfp_filters))
1829
1830 #if !defined(OS2)
1831 #  include "iperlsys.h"
1832 #endif
1833 #include "regexp.h"
1834 #include "sv.h"
1835 #include "util.h"
1836 #include "form.h"
1837 #include "gv.h"
1838 #include "cv.h"
1839 #include "opnames.h"
1840 #include "op.h"
1841 #include "cop.h"
1842 #include "av.h"
1843 #include "hv.h"
1844 #include "mg.h"
1845 #include "scope.h"
1846 #include "warnings.h"
1847 #include "utf8.h"
1848
1849 /* Current curly descriptor */
1850 typedef struct curcur CURCUR;
1851 struct curcur {
1852     int         parenfloor;     /* how far back to strip paren data */
1853     int         cur;            /* how many instances of scan we've matched */
1854     int         min;            /* the minimal number of scans to match */
1855     int         max;            /* the maximal number of scans to match */
1856     int         minmod;         /* whether to work our way up or down */
1857     regnode *   scan;           /* the thing to match */
1858     regnode *   next;           /* what has to match after it */
1859     char *      lastloc;        /* where we started matching this scan */
1860     CURCUR *    oldcc;          /* current curly before we started this one */
1861 };
1862
1863 typedef struct _sublex_info SUBLEXINFO;
1864 struct _sublex_info {
1865     I32 super_state;    /* lexer state to save */
1866     I32 sub_inwhat;     /* "lex_inwhat" to use */
1867     OP *sub_op;         /* "lex_op" to use */
1868     char *super_bufptr; /* PL_bufptr that was */
1869     char *super_bufend; /* PL_bufend that was */
1870 };
1871
1872 typedef struct magic_state MGS; /* struct magic_state defined in mg.c */
1873
1874 struct scan_data_t;             /* Used in S_* functions in regcomp.c */
1875 struct regnode_charclass_class; /* Used in S_* functions in regcomp.c */
1876
1877 typedef I32 CHECKPOINT;
1878
1879 struct ptr_tbl_ent {
1880     struct ptr_tbl_ent*         next;
1881     void*                       oldval;
1882     void*                       newval;
1883 };
1884
1885 struct ptr_tbl {
1886     struct ptr_tbl_ent**        tbl_ary;
1887     UV                          tbl_max;
1888     UV                          tbl_items;
1889 };
1890
1891 #if defined(iAPX286) || defined(M_I286) || defined(I80286)
1892 #   define I286
1893 #endif
1894
1895 #if defined(htonl) && !defined(HAS_HTONL)
1896 #define HAS_HTONL
1897 #endif
1898 #if defined(htons) && !defined(HAS_HTONS)
1899 #define HAS_HTONS
1900 #endif
1901 #if defined(ntohl) && !defined(HAS_NTOHL)
1902 #define HAS_NTOHL
1903 #endif
1904 #if defined(ntohs) && !defined(HAS_NTOHS)
1905 #define HAS_NTOHS
1906 #endif
1907 #ifndef HAS_HTONL
1908 #if (BYTEORDER & 0xffff) != 0x4321
1909 #define HAS_HTONS
1910 #define HAS_HTONL
1911 #define HAS_NTOHS
1912 #define HAS_NTOHL
1913 #define MYSWAP
1914 #define htons my_swap
1915 #define htonl my_htonl
1916 #define ntohs my_swap
1917 #define ntohl my_ntohl
1918 #endif
1919 #else
1920 #if (BYTEORDER & 0xffff) == 0x4321
1921 #undef HAS_HTONS
1922 #undef HAS_HTONL
1923 #undef HAS_NTOHS
1924 #undef HAS_NTOHL
1925 #endif
1926 #endif
1927
1928 /*
1929  * Little-endian byte order functions - 'v' for 'VAX', or 'reVerse'.
1930  * -DWS
1931  */
1932 #if BYTEORDER != 0x1234
1933 # define HAS_VTOHL
1934 # define HAS_VTOHS
1935 # define HAS_HTOVL
1936 # define HAS_HTOVS
1937 # if BYTEORDER == 0x4321 || BYTEORDER == 0x87654321
1938 #  define vtohl(x)      ((((x)&0xFF)<<24)       \
1939                         +(((x)>>24)&0xFF)       \
1940                         +(((x)&0x0000FF00)<<8)  \
1941                         +(((x)&0x00FF0000)>>8)  )
1942 #  define vtohs(x)      ((((x)&0xFF)<<8) + (((x)>>8)&0xFF))
1943 #  define htovl(x)      vtohl(x)
1944 #  define htovs(x)      vtohs(x)
1945 # endif
1946         /* otherwise default to functions in util.c */
1947 #endif
1948
1949 #ifdef CASTNEGFLOAT
1950 #define U_S(what) ((U16)(what))
1951 #define U_I(what) ((unsigned int)(what))
1952 #define U_L(what) ((U32)(what))
1953 #else
1954 #define U_S(what) ((U16)cast_ulong((NV)(what)))
1955 #define U_I(what) ((unsigned int)cast_ulong((NV)(what)))
1956 #define U_L(what) (cast_ulong((NV)(what)))
1957 #endif
1958
1959 #ifdef CASTI32
1960 #define I_32(what) ((I32)(what))
1961 #define I_V(what) ((IV)(what))
1962 #define U_V(what) ((UV)(what))
1963 #else
1964 #define I_32(what) (cast_i32((NV)(what)))
1965 #define I_V(what) (cast_iv((NV)(what)))
1966 #define U_V(what) (cast_uv((NV)(what)))
1967 #endif
1968
1969 /* These do not care about the fractional part, only about the range. */
1970 #define NV_WITHIN_IV(nv) (I_V(nv) >= IV_MIN && I_V(nv) <= IV_MAX)
1971 #define NV_WITHIN_UV(nv) ((nv)>=0.0 && U_V(nv) >= UV_MIN && U_V(nv) <= UV_MAX)
1972
1973 /* Used with UV/IV arguments: */
1974                                         /* XXXX: need to speed it up */
1975 #define CLUMP_2UV(iv)   ((iv) < 0 ? 0 : (UV)(iv))
1976 #define CLUMP_2IV(uv)   ((uv) > (UV)IV_MAX ? IV_MAX : (IV)(uv))
1977
1978 #ifndef MAXSYSFD
1979 #   define MAXSYSFD 2
1980 #endif
1981
1982 #ifndef __cplusplus
1983 Uid_t getuid (void);
1984 Uid_t geteuid (void);
1985 Gid_t getgid (void);
1986 Gid_t getegid (void);
1987 #endif
1988
1989 #ifndef Perl_debug_log
1990 #  define Perl_debug_log        PerlIO_stderr()
1991 #endif
1992
1993 #ifndef Perl_error_log
1994 #  define Perl_error_log        (PL_stderrgv                    \
1995                                  && IoOFP(GvIOp(PL_stderrgv))   \
1996                                  ? IoOFP(GvIOp(PL_stderrgv))    \
1997                                  : PerlIO_stderr())
1998 #endif
1999
2000 #ifdef DEBUGGING
2001 #undef  YYDEBUG
2002 #define YYDEBUG 1
2003 #define DEB(a)                          a
2004 #define DEBUG(a)   if (PL_debug)                a
2005 #define DEBUG_p(a) if (PL_debug & 1)    a
2006 #define DEBUG_s(a) if (PL_debug & 2)    a
2007 #define DEBUG_l(a) if (PL_debug & 4)    a
2008 #define DEBUG_t(a) if (PL_debug & 8)    a
2009 #define DEBUG_o(a) if (PL_debug & 16)   a
2010 #define DEBUG_c(a) if (PL_debug & 32)   a
2011 #define DEBUG_P(a) if (PL_debug & 64)   a
2012 #  if defined(PERL_OBJECT)
2013 #    define DEBUG_m(a) if (PL_debug & 128)      a
2014 #  else
2015 #    define DEBUG_m(a)  \
2016     STMT_START {                                                        \
2017         if (PERL_GET_INTERP) { dTHX; if (PL_debug & 128) { a; } }       \
2018     } STMT_END
2019 #  endif
2020 #define DEBUG_f(a) if (PL_debug & 256)  a
2021 #define DEBUG_r(a) if (PL_debug & 512)  a
2022 #define DEBUG_x(a) if (PL_debug & 1024) a
2023 #define DEBUG_u(a) if (PL_debug & 2048) a
2024 #define DEBUG_L(a) if (PL_debug & 4096) a
2025 #define DEBUG_H(a) if (PL_debug & 8192) a
2026 #define DEBUG_X(a) if (PL_debug & 16384)        a
2027 #define DEBUG_D(a) if (PL_debug & 32768)        a
2028 #  ifdef USE_THREADS
2029 #    define DEBUG_S(a) if (PL_debug & (1<<16))  a
2030 #  else
2031 #    define DEBUG_S(a)
2032 #  endif
2033 #else
2034 #define DEB(a)
2035 #define DEBUG(a)
2036 #define DEBUG_p(a)
2037 #define DEBUG_s(a)
2038 #define DEBUG_l(a)
2039 #define DEBUG_t(a)
2040 #define DEBUG_o(a)
2041 #define DEBUG_c(a)
2042 #define DEBUG_P(a)
2043 #define DEBUG_m(a)
2044 #define DEBUG_f(a)
2045 #define DEBUG_r(a)
2046 #define DEBUG_x(a)
2047 #define DEBUG_u(a)
2048 #define DEBUG_S(a)
2049 #define DEBUG_H(a)
2050 #define DEBUG_X(a)
2051 #define DEBUG_D(a)
2052 #define DEBUG_S(a)
2053 #endif
2054 #define YYMAXDEPTH 300
2055
2056 #ifndef assert  /* <assert.h> might have been included somehow */
2057 #define assert(what)    DEB( {                                          \
2058         if (!(what)) {                                                  \
2059             Perl_croak(aTHX_ "Assertion failed: file \"%s\", line %d",  \
2060                 __FILE__, __LINE__);                                    \
2061             PerlProc_exit(1);                                           \
2062         }})
2063 #endif
2064
2065 struct ufuncs {
2066     I32 (*uf_val)(IV, SV*);
2067     I32 (*uf_set)(IV, SV*);
2068     IV uf_index;
2069 };
2070
2071 /* Fix these up for __STDC__ */
2072 #ifndef DONT_DECLARE_STD
2073 char *mktemp (char*);
2074 #ifndef atof
2075 double atof (const char*);
2076 #endif
2077 #endif
2078
2079 #ifndef STANDARD_C
2080 /* All of these are in stdlib.h or time.h for ANSI C */
2081 Time_t time();
2082 struct tm *gmtime(), *localtime();
2083 #if defined(OEMVS) || defined(__OPEN_VM)
2084 char *(strchr)(), *(strrchr)();
2085 char *(strcpy)(), *(strcat)();
2086 #else
2087 char *strchr(), *strrchr();
2088 char *strcpy(), *strcat();
2089 #endif
2090 #endif /* ! STANDARD_C */
2091
2092
2093 #ifdef I_MATH
2094 #    include <math.h>
2095 #else
2096 START_EXTERN_C
2097             double exp (double);
2098             double log (double);
2099             double log10 (double);
2100             double sqrt (double);
2101             double frexp (double,int*);
2102             double ldexp (double,int);
2103             double modf (double,double*);
2104             double sin (double);
2105             double cos (double);
2106             double atan2 (double,double);
2107             double pow (double,double);
2108 END_EXTERN_C
2109 #endif
2110
2111 #ifndef __cplusplus
2112 #  if defined(NeXT) || defined(__NeXT__) /* or whatever catches all NeXTs */
2113 char *crypt ();       /* Maybe more hosts will need the unprototyped version */
2114 #  else
2115 #    if !defined(WIN32)
2116 char *crypt (const char*, const char*);
2117 #    endif /* !WIN32 */
2118 #  endif /* !NeXT && !__NeXT__ */
2119 #  ifndef DONT_DECLARE_STD
2120 #    ifndef getenv
2121 char *getenv (const char*);
2122 #    endif /* !getenv */
2123 #    if !defined(EPOC) && !(defined(__hpux) && defined(_FILE_OFFSET_BITS) && _FILE_OFFSET_BITS == 64) && !defined(HAS_LSEEK_PROTO)
2124 Off_t lseek (int,Off_t,int);
2125 #    endif
2126 #  endif /* !DONT_DECLARE_STD */
2127 char *getlogin (void);
2128 #endif /* !__cplusplus */
2129
2130 #ifdef UNLINK_ALL_VERSIONS /* Currently only makes sense for VMS */
2131 #define UNLINK unlnk
2132 I32 unlnk (char*);
2133 #else
2134 #define UNLINK PerlLIO_unlink
2135 #endif
2136
2137 #ifndef HAS_SETREUID
2138 #  ifdef HAS_SETRESUID
2139 #    define setreuid(r,e) setresuid(r,e,(Uid_t)-1)
2140 #    define HAS_SETREUID
2141 #  endif
2142 #endif
2143 #ifndef HAS_SETREGID
2144 #  ifdef HAS_SETRESGID
2145 #    define setregid(r,e) setresgid(r,e,(Gid_t)-1)
2146 #    define HAS_SETREGID
2147 #  endif
2148 #endif
2149
2150 /* Sighandler_t defined in iperlsys.h */
2151
2152 #ifdef HAS_SIGACTION
2153 typedef struct sigaction Sigsave_t;
2154 #else
2155 typedef Sighandler_t Sigsave_t;
2156 #endif
2157
2158 #define SCAN_DEF 0
2159 #define SCAN_TR 1
2160 #define SCAN_REPL 2
2161
2162 #ifdef DEBUGGING
2163 # ifndef register
2164 #  define register
2165 # endif
2166 # define PAD_SV(po) pad_sv(po)
2167 # define RUNOPS_DEFAULT Perl_runops_debug
2168 #else
2169 # define PAD_SV(po) PL_curpad[po]
2170 # define RUNOPS_DEFAULT Perl_runops_standard
2171 #endif
2172
2173 #ifdef MYMALLOC
2174 #  ifdef MUTEX_INIT_CALLS_MALLOC
2175 #    define MALLOC_INIT                                 \
2176         STMT_START {                                    \
2177                 PL_malloc_mutex = NULL;                 \
2178                 MUTEX_INIT(&PL_malloc_mutex);           \
2179         } STMT_END
2180 #    define MALLOC_TERM                                 \
2181         STMT_START {                                    \
2182                 perl_mutex tmp = PL_malloc_mutex;       \
2183                 PL_malloc_mutex = NULL;                 \
2184                 MUTEX_DESTROY(&tmp);                    \
2185         } STMT_END
2186 #  else
2187 #    define MALLOC_INIT MUTEX_INIT(&PL_malloc_mutex)
2188 #    define MALLOC_TERM MUTEX_DESTROY(&PL_malloc_mutex)
2189 #  endif
2190 #else
2191 #  define MALLOC_INIT
2192 #  define MALLOC_TERM
2193 #endif
2194
2195
2196 typedef int (CPERLscope(*runops_proc_t)) (pTHX);
2197 typedef OP* (CPERLscope(*PPADDR_t)[]) (pTHX);
2198
2199 /* _ (for $_) must be first in the following list (DEFSV requires it) */
2200 #define THREADSV_NAMES "_123456789&`'+/.,\\\";^-%=|~:\001\005!@"
2201
2202 /* NeXT has problems with crt0.o globals */
2203 #if defined(__DYNAMIC__) && \
2204     (defined(NeXT) || defined(__NeXT__) || defined(__APPLE__))
2205 #  if defined(NeXT) || defined(__NeXT)
2206 #    include <mach-o/dyld.h>
2207 #    define environ (*environ_pointer)
2208 EXT char *** environ_pointer;
2209 #  else
2210 #    if defined(__APPLE__)
2211 #      include <crt_externs.h>  /* for the env array */
2212 #      define environ (*_NSGetEnviron())
2213 #    endif
2214 #  endif
2215 #else
2216    /* VMS and some other platforms don't use the environ array */
2217 #  if !defined(VMS)
2218 #    if !defined(DONT_DECLARE_STD) || \
2219         (defined(__svr4__) && defined(__GNUC__) && defined(sun)) || \
2220         defined(__sgi) || \
2221         defined(__DGUX) || defined(EPOC)
2222 extern char **  environ;        /* environment variables supplied via exec */
2223 #    endif
2224 #  endif
2225 #endif
2226
2227 START_EXTERN_C
2228
2229 /* handy constants */
2230 EXTCONST char PL_warn_uninit[]
2231   INIT("Use of uninitialized value%s%s");
2232 EXTCONST char PL_warn_nosemi[]
2233   INIT("Semicolon seems to be missing");
2234 EXTCONST char PL_warn_reserved[]
2235   INIT("Unquoted string \"%s\" may clash with future reserved word");
2236 EXTCONST char PL_warn_nl[]
2237   INIT("Unsuccessful %s on filename containing newline");
2238 EXTCONST char PL_no_wrongref[]
2239   INIT("Can't use %s ref as %s ref");
2240 EXTCONST char PL_no_symref[]
2241   INIT("Can't use string (\"%.32s\") as %s ref while \"strict refs\" in use");
2242 EXTCONST char PL_no_usym[]
2243   INIT("Can't use an undefined value as %s reference");
2244 EXTCONST char PL_no_aelem[]
2245   INIT("Modification of non-creatable array value attempted, subscript %d");
2246 EXTCONST char PL_no_helem[]
2247   INIT("Modification of non-creatable hash value attempted, subscript \"%s\"");
2248 EXTCONST char PL_no_modify[]
2249   INIT("Modification of a read-only value attempted");
2250 EXTCONST char PL_no_mem[]
2251   INIT("Out of memory!\n");
2252 EXTCONST char PL_no_security[]
2253   INIT("Insecure dependency in %s%s");
2254 EXTCONST char PL_no_sock_func[]
2255   INIT("Unsupported socket function \"%s\" called");
2256 EXTCONST char PL_no_dir_func[]
2257   INIT("Unsupported directory function \"%s\" called");
2258 EXTCONST char PL_no_func[]
2259   INIT("The %s function is unimplemented");
2260 EXTCONST char PL_no_myglob[]
2261   INIT("\"my\" variable %s can't be in a package");
2262
2263 EXTCONST char PL_uuemap[65]
2264   INIT("`!\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_");
2265
2266
2267 #ifdef DOINIT
2268 EXT char *PL_sig_name[] = { SIG_NAME };
2269 EXT int   PL_sig_num[]  = { SIG_NUM };
2270 #else
2271 EXT char *PL_sig_name[];
2272 EXT int   PL_sig_num[];
2273 #endif
2274
2275 /* fast case folding tables */
2276
2277 #ifdef DOINIT
2278 #ifdef EBCDIC
2279 EXT unsigned char PL_fold[] = { /* fast EBCDIC case folding table */
2280     0,      1,      2,      3,      4,      5,      6,      7,
2281     8,      9,      10,     11,     12,     13,     14,     15,
2282     16,     17,     18,     19,     20,     21,     22,     23,
2283     24,     25,     26,     27,     28,     29,     30,     31,
2284     32,     33,     34,     35,     36,     37,     38,     39,
2285     40,     41,     42,     43,     44,     45,     46,     47,
2286     48,     49,     50,     51,     52,     53,     54,     55,
2287     56,     57,     58,     59,     60,     61,     62,     63,
2288     64,     65,     66,     67,     68,     69,     70,     71,
2289     72,     73,     74,     75,     76,     77,     78,     79,
2290     80,     81,     82,     83,     84,     85,     86,     87,
2291     88,     89,     90,     91,     92,     93,     94,     95,
2292     96,     97,     98,     99,     100,    101,    102,    103,
2293     104,    105,    106,    107,    108,    109,    110,    111,
2294     112,    113,    114,    115,    116,    117,    118,    119,
2295     120,    121,    122,    123,    124,    125,    126,    127,
2296     128,    'A',    'B',    'C',    'D',    'E',    'F',    'G',
2297     'H',    'I',    138,    139,    140,    141,    142,    143,
2298     144,    'J',    'K',    'L',    'M',    'N',    'O',    'P',
2299     'Q',    'R',    154,    155,    156,    157,    158,    159,
2300     160,    161,    'S',    'T',    'U',    'V',    'W',    'X',
2301     'Y',    'Z',    170,    171,    172,    173,    174,    175,
2302     176,    177,    178,    179,    180,    181,    182,    183,
2303     184,    185,    186,    187,    188,    189,    190,    191,
2304     192,    'a',    'b',    'c',    'd',    'e',    'f',    'g',
2305     'h',    'i',    202,    203,    204,    205,    206,    207,
2306     208,    'j',    'k',    'l',    'm',    'n',    'o',    'p',
2307     'q',    'r',    218,    219,    220,    221,    222,    223,
2308     224,    225,    's',    't',    'u',    'v',    'w',    'x',
2309     'y',    'z',    234,    235,    236,    237,    238,    239,
2310     240,    241,    242,    243,    244,    245,    246,    247,
2311     248,    249,    250,    251,    252,    253,    254,    255
2312 };
2313 #else   /* ascii rather than ebcdic */
2314 EXTCONST  unsigned char PL_fold[] = {
2315         0,      1,      2,      3,      4,      5,      6,      7,
2316         8,      9,      10,     11,     12,     13,     14,     15,
2317         16,     17,     18,     19,     20,     21,     22,     23,
2318         24,     25,     26,     27,     28,     29,     30,     31,
2319         32,     33,     34,     35,     36,     37,     38,     39,
2320         40,     41,     42,     43,     44,     45,     46,     47,
2321         48,     49,     50,     51,     52,     53,     54,     55,
2322         56,     57,     58,     59,     60,     61,     62,     63,
2323         64,     'a',    'b',    'c',    'd',    'e',    'f',    'g',
2324         'h',    'i',    'j',    'k',    'l',    'm',    'n',    'o',
2325         'p',    'q',    'r',    's',    't',    'u',    'v',    'w',
2326         'x',    'y',    'z',    91,     92,     93,     94,     95,
2327         96,     'A',    'B',    'C',    'D',    'E',    'F',    'G',
2328         'H',    'I',    'J',    'K',    'L',    'M',    'N',    'O',
2329         'P',    'Q',    'R',    'S',    'T',    'U',    'V',    'W',
2330         'X',    'Y',    'Z',    123,    124,    125,    126,    127,
2331         128,    129,    130,    131,    132,    133,    134,    135,
2332         136,    137,    138,    139,    140,    141,    142,    143,
2333         144,    145,    146,    147,    148,    149,    150,    151,
2334         152,    153,    154,    155,    156,    157,    158,    159,
2335         160,    161,    162,    163,    164,    165,    166,    167,
2336         168,    169,    170,    171,    172,    173,    174,    175,
2337         176,    177,    178,    179,    180,    181,    182,    183,
2338         184,    185,    186,    187,    188,    189,    190,    191,
2339         192,    193,    194,    195,    196,    197,    198,    199,
2340         200,    201,    202,    203,    204,    205,    206,    207,
2341         208,    209,    210,    211,    212,    213,    214,    215,
2342         216,    217,    218,    219,    220,    221,    222,    223,    
2343         224,    225,    226,    227,    228,    229,    230,    231,
2344         232,    233,    234,    235,    236,    237,    238,    239,
2345         240,    241,    242,    243,    244,    245,    246,    247,
2346         248,    249,    250,    251,    252,    253,    254,    255
2347 };
2348 #endif  /* !EBCDIC */
2349 #else
2350 EXTCONST unsigned char PL_fold[];
2351 #endif
2352
2353 #ifdef DOINIT
2354 EXT unsigned char PL_fold_locale[] = {
2355         0,      1,      2,      3,      4,      5,      6,      7,
2356         8,      9,      10,     11,     12,     13,     14,     15,
2357         16,     17,     18,     19,     20,     21,     22,     23,
2358         24,     25,     26,     27,     28,     29,     30,     31,
2359         32,     33,     34,     35,     36,     37,     38,     39,
2360         40,     41,     42,     43,     44,     45,     46,     47,
2361         48,     49,     50,     51,     52,     53,     54,     55,
2362         56,     57,     58,     59,     60,     61,     62,     63,
2363         64,     'a',    'b',    'c',    'd',    'e',    'f',    'g',
2364         'h',    'i',    'j',    'k',    'l',    'm',    'n',    'o',
2365         'p',    'q',    'r',    's',    't',    'u',    'v',    'w',
2366         'x',    'y',    'z',    91,     92,     93,     94,     95,
2367         96,     'A',    'B',    'C',    'D',    'E',    'F',    'G',
2368         'H',    'I',    'J',    'K',    'L',    'M',    'N',    'O',
2369         'P',    'Q',    'R',    'S',    'T',    'U',    'V',    'W',
2370         'X',    'Y',    'Z',    123,    124,    125,    126,    127,
2371         128,    129,    130,    131,    132,    133,    134,    135,
2372         136,    137,    138,    139,    140,    141,    142,    143,
2373         144,    145,    146,    147,    148,    149,    150,    151,
2374         152,    153,    154,    155,    156,    157,    158,    159,
2375         160,    161,    162,    163,    164,    165,    166,    167,
2376         168,    169,    170,    171,    172,    173,    174,    175,
2377         176,    177,    178,    179,    180,    181,    182,    183,
2378         184,    185,    186,    187,    188,    189,    190,    191,
2379         192,    193,    194,    195,    196,    197,    198,    199,
2380         200,    201,    202,    203,    204,    205,    206,    207,
2381         208,    209,    210,    211,    212,    213,    214,    215,
2382         216,    217,    218,    219,    220,    221,    222,    223,    
2383         224,    225,    226,    227,    228,    229,    230,    231,
2384         232,    233,    234,    235,    236,    237,    238,    239,
2385         240,    241,    242,    243,    244,    245,    246,    247,
2386         248,    249,    250,    251,    252,    253,    254,    255
2387 };
2388 #else
2389 EXT unsigned char PL_fold_locale[];
2390 #endif
2391
2392 #ifdef DOINIT
2393 #ifdef EBCDIC
2394 EXT unsigned char PL_freq[] = {/* EBCDIC frequencies for mixed English/C */
2395     1,      2,      84,     151,    154,    155,    156,    157,
2396     165,    246,    250,    3,      158,    7,      18,     29,
2397     40,     51,     62,     73,     85,     96,     107,    118,
2398     129,    140,    147,    148,    149,    150,    152,    153,
2399     255,      6,      8,      9,     10,     11,     12,     13,
2400      14,     15,     24,     25,     26,     27,     28,    226,
2401      29,     30,     31,     32,     33,     43,     44,     45,
2402      46,     47,     48,     49,     50,     76,     77,     78,
2403      79,     80,     81,     82,     83,     84,     85,     86,
2404      87,     94,     95,    234,    181,    233,    187,    190,
2405     180,     96,     97,     98,     99,    100,    101,    102,
2406     104,    112,    182,    174,    236,    232,    229,    103,
2407     228,    226,    114,    115,    116,    117,    118,    119,
2408     120,    121,    122,    235,    176,    230,    194,    162,
2409     130,    131,    132,    133,    134,    135,    136,    137,
2410     138,    139,    201,    205,    163,    217,    220,    224,
2411     5,      248,    227,    244,    242,    255,    241,    231,
2412     240,    253,    16,     197,    19,     20,     21,     187,
2413     23,     169,    210,    245,    237,    249,    247,    239,
2414     168,    252,    34,     196,    36,     37,     38,     39,
2415     41,     42,     251,    254,    238,    223,    221,    213,
2416     225,    177,    52,     53,     54,     55,     56,     57,
2417     58,     59,     60,     61,     63,     64,     65,     66,
2418     67,     68,     69,     70,     71,     72,     74,     75,
2419     205,    208,    186,    202,    200,    218,    198,    179,
2420     178,    214,    88,     89,     90,     91,     92,     93,
2421     217,    166,    170,    207,    199,    209,    206,    204,
2422     160,    212,    105,    106,    108,    109,    110,    111,
2423     203,    113,    216,    215,    192,    175,    193,    243,
2424     172,    161,    123,    124,    125,    126,    127,    128,
2425     222,    219,    211,    195,    188,    193,    185,    184,
2426     191,    183,    141,    142,    143,    144,    145,    146
2427 };
2428 #else  /* ascii rather than ebcdic */
2429 EXTCONST unsigned char PL_freq[] = {    /* letter frequencies for mixed English/C */
2430         1,      2,      84,     151,    154,    155,    156,    157,
2431         165,    246,    250,    3,      158,    7,      18,     29,
2432         40,     51,     62,     73,     85,     96,     107,    118,
2433         129,    140,    147,    148,    149,    150,    152,    153,
2434         255,    182,    224,    205,    174,    176,    180,    217,
2435         233,    232,    236,    187,    235,    228,    234,    226,
2436         222,    219,    211,    195,    188,    193,    185,    184,
2437         191,    183,    201,    229,    181,    220,    194,    162,
2438         163,    208,    186,    202,    200,    218,    198,    179,
2439         178,    214,    166,    170,    207,    199,    209,    206,
2440         204,    160,    212,    216,    215,    192,    175,    173,
2441         243,    172,    161,    190,    203,    189,    164,    230,
2442         167,    248,    227,    244,    242,    255,    241,    231,
2443         240,    253,    169,    210,    245,    237,    249,    247,
2444         239,    168,    252,    251,    254,    238,    223,    221,
2445         213,    225,    177,    197,    171,    196,    159,    4,
2446         5,      6,      8,      9,      10,     11,     12,     13,
2447         14,     15,     16,     17,     19,     20,     21,     22,
2448         23,     24,     25,     26,     27,     28,     30,     31,
2449         32,     33,     34,     35,     36,     37,     38,     39,
2450         41,     42,     43,     44,     45,     46,     47,     48,
2451         49,     50,     52,     53,     54,     55,     56,     57,
2452         58,     59,     60,     61,     63,     64,     65,     66,
2453         67,     68,     69,     70,     71,     72,     74,     75,
2454         76,     77,     78,     79,     80,     81,     82,     83,
2455         86,     87,     88,     89,     90,     91,     92,     93,
2456         94,     95,     97,     98,     99,     100,    101,    102,
2457         103,    104,    105,    106,    108,    109,    110,    111,
2458         112,    113,    114,    115,    116,    117,    119,    120,
2459         121,    122,    123,    124,    125,    126,    127,    128,
2460         130,    131,    132,    133,    134,    135,    136,    137,
2461         138,    139,    141,    142,    143,    144,    145,    146
2462 };
2463 #endif
2464 #else
2465 EXTCONST unsigned char PL_freq[];
2466 #endif
2467
2468 #ifdef DEBUGGING
2469 #ifdef DOINIT
2470 EXTCONST char* PL_block_type[] = {
2471         "NULL",
2472         "SUB",
2473         "EVAL",
2474         "LOOP",
2475         "SUBST",
2476         "BLOCK",
2477 };
2478 #else
2479 EXTCONST char* PL_block_type[];
2480 #endif
2481 #endif
2482
2483 END_EXTERN_C
2484
2485 /*****************************************************************************/
2486 /* This lexer/parser stuff is currently global since yacc is hard to reenter */
2487 /*****************************************************************************/
2488 /* XXX This needs to be revisited, since BEGIN makes yacc re-enter... */
2489
2490 #include "perly.h"
2491
2492 #define LEX_NOTPARSING          11      /* borrowed from toke.c */
2493
2494 typedef enum {
2495     XOPERATOR,
2496     XTERM,
2497     XREF,
2498     XSTATE,
2499     XBLOCK,
2500     XATTRBLOCK,
2501     XATTRTERM,
2502     XTERMBLOCK
2503 } expectation;
2504
2505 enum {          /* pass one of these to get_vtbl */
2506     want_vtbl_sv,
2507     want_vtbl_env,
2508     want_vtbl_envelem,
2509     want_vtbl_sig,
2510     want_vtbl_sigelem,
2511     want_vtbl_pack,
2512     want_vtbl_packelem,
2513     want_vtbl_dbline,
2514     want_vtbl_isa,
2515     want_vtbl_isaelem,
2516     want_vtbl_arylen,
2517     want_vtbl_glob,
2518     want_vtbl_mglob,
2519     want_vtbl_nkeys,
2520     want_vtbl_taint,
2521     want_vtbl_substr,
2522     want_vtbl_vec,
2523     want_vtbl_pos,
2524     want_vtbl_bm,
2525     want_vtbl_fm,
2526     want_vtbl_uvar,
2527     want_vtbl_defelem,
2528     want_vtbl_regexp,
2529     want_vtbl_collxfrm,
2530     want_vtbl_amagic,
2531     want_vtbl_amagicelem,
2532 #ifdef USE_THREADS
2533     want_vtbl_mutex,
2534 #endif
2535     want_vtbl_regdata,
2536     want_vtbl_regdatum,
2537     want_vtbl_backref
2538 };
2539
2540                                 /* Note: the lowest 8 bits are reserved for
2541                                    stuffing into op->op_private */
2542 #define HINT_PRIVATE_MASK       0x000000ff
2543 #define HINT_INTEGER            0x00000001
2544 #define HINT_STRICT_REFS        0x00000002
2545 /* #define HINT_notused4        0x00000004 */
2546 #define HINT_BYTE               0x00000008
2547 /* #define HINT_notused10       0x00000010 */
2548                                 /* Note: 20,40,80 used for NATIVE_HINTS */
2549
2550 #define HINT_BLOCK_SCOPE        0x00000100
2551 #define HINT_STRICT_SUBS        0x00000200
2552 #define HINT_STRICT_VARS        0x00000400
2553 #define HINT_LOCALE             0x00000800
2554
2555 #define HINT_NEW_INTEGER        0x00001000
2556 #define HINT_NEW_FLOAT          0x00002000
2557 #define HINT_NEW_BINARY         0x00004000
2558 #define HINT_NEW_STRING         0x00008000
2559 #define HINT_NEW_RE             0x00010000
2560 #define HINT_LOCALIZE_HH        0x00020000 /* %^H needs to be copied */
2561
2562 #define HINT_RE_TAINT           0x00100000
2563 #define HINT_RE_EVAL            0x00200000
2564
2565 #define HINT_FILETEST_ACCESS    0x00400000
2566 #define HINT_UTF8               0x00800000
2567
2568 /* Various states of an input record separator SV (rs, nrs) */
2569 #define RsSNARF(sv)   (! SvOK(sv))
2570 #define RsSIMPLE(sv)  (SvOK(sv) && (! SvPOK(sv) || SvCUR(sv)))
2571 #define RsPARA(sv)    (SvPOK(sv) && ! SvCUR(sv))
2572 #define RsRECORD(sv)  (SvROK(sv) && (SvIV(SvRV(sv)) > 0))
2573
2574 /* Enable variables which are pointers to functions */
2575 typedef regexp*(CPERLscope(*regcomp_t)) (pTHX_ char* exp, char* xend, PMOP* pm);
2576 typedef I32 (CPERLscope(*regexec_t)) (pTHX_ regexp* prog, char* stringarg,
2577                                       char* strend, char* strbeg, I32 minend,
2578                                       SV* screamer, void* data, U32 flags);
2579 typedef char* (CPERLscope(*re_intuit_start_t)) (pTHX_ regexp *prog, SV *sv,
2580                                                 char *strpos, char *strend,
2581                                                 U32 flags,
2582                                                 struct re_scream_pos_data_s *d);
2583 typedef SV*     (CPERLscope(*re_intuit_string_t)) (pTHX_ regexp *prog);
2584 typedef void    (CPERLscope(*regfree_t)) (pTHX_ struct regexp* r);
2585
2586 #ifdef USE_PURE_BISON
2587 int Perl_yylex(pTHX_ YYSTYPE *lvalp, int *lcharp);
2588 #endif
2589
2590 typedef void (*DESTRUCTORFUNC_NOCONTEXT_t) (void*);
2591 typedef void (*DESTRUCTORFUNC_t) (pTHXo_ void*);
2592 typedef void (*SVFUNC_t) (pTHXo_ SV*);
2593 typedef I32  (*SVCOMPARE_t) (pTHXo_ SV*, SV*);
2594 typedef void (*XSINIT_t) (pTHXo);
2595 typedef void (*ATEXIT_t) (pTHXo_ void*);
2596 typedef void (*XSUBADDR_t) (pTHXo_ CV *);
2597
2598 /* Set up PERLVAR macros for populating structs */
2599 #define PERLVAR(var,type) type var;
2600 #define PERLVARA(var,n,type) type var[n];
2601 #define PERLVARI(var,type,init) type var;
2602 #define PERLVARIC(var,type,init) type var;
2603
2604 /* Interpreter exitlist entry */
2605 typedef struct exitlistentry {
2606     void (*fn) (pTHXo_ void*);
2607     void *ptr;
2608 } PerlExitListEntry;
2609
2610 #ifdef PERL_GLOBAL_STRUCT
2611 struct perl_vars {
2612 #  include "perlvars.h"
2613 };
2614
2615 #  ifdef PERL_CORE
2616 EXT struct perl_vars PL_Vars;
2617 EXT struct perl_vars *PL_VarsPtr INIT(&PL_Vars);
2618 #  else /* PERL_CORE */
2619 #    if !defined(__GNUC__) || !defined(WIN32)
2620 EXT
2621 #    endif /* WIN32 */
2622 struct perl_vars *PL_VarsPtr;
2623 #    define PL_Vars (*((PL_VarsPtr) \
2624                        ? PL_VarsPtr : (PL_VarsPtr = Perl_GetVars(aTHX))))
2625 #  endif /* PERL_CORE */
2626 #endif /* PERL_GLOBAL_STRUCT */
2627
2628 #if defined(MULTIPLICITY) || defined(PERL_OBJECT)
2629 /* If we have multiple interpreters define a struct 
2630    holding variables which must be per-interpreter
2631    If we don't have threads anything that would have 
2632    be per-thread is per-interpreter.
2633 */
2634
2635 struct interpreter {
2636 #  ifndef USE_THREADS
2637 #    include "thrdvar.h"
2638 #  endif
2639 #  include "intrpvar.h"
2640 /*
2641  * The following is a buffer where new variables must
2642  * be defined to maintain binary compatibility with PERL_OBJECT
2643  */
2644 PERLVARA(object_compatibility,30,       char)
2645 };
2646
2647 #else
2648 struct interpreter {
2649     char broiled;
2650 };
2651 #endif /* MULTIPLICITY || PERL_OBJECT */
2652
2653 #ifdef USE_THREADS
2654 /* If we have threads define a struct with all the variables
2655  * that have to be per-thread
2656  */
2657
2658
2659 struct perl_thread {
2660 #include "thrdvar.h"
2661 };
2662
2663 typedef struct perl_thread *Thread;
2664
2665 #else
2666 typedef void *Thread;
2667 #endif
2668
2669 /* Done with PERLVAR macros for now ... */
2670 #undef PERLVAR
2671 #undef PERLVARA
2672 #undef PERLVARI
2673 #undef PERLVARIC
2674
2675 #include "thread.h"
2676 #include "pp.h"
2677
2678 #ifndef PERL_CALLCONV
2679 #  define PERL_CALLCONV
2680 #endif 
2681
2682 #ifdef PERL_OBJECT
2683 #  define PERL_DECL_PROT
2684 #endif
2685
2686 #undef PERL_CKDEF
2687 #undef PERL_PPDEF
2688 #define PERL_CKDEF(s)   OP *s (pTHX_ OP *o);
2689 #define PERL_PPDEF(s)   OP *s (pTHX);
2690
2691 #include "proto.h"
2692
2693 #ifdef PERL_OBJECT
2694 #  undef PERL_DECL_PROT
2695 #endif
2696
2697 #ifndef PERL_OBJECT
2698 /* this has structure inits, so it cannot be included before here */
2699 #  include "opcode.h"
2700 #endif
2701
2702 /* The following must follow proto.h as #defines mess up syntax */
2703
2704 #if !defined(PERL_FOR_X2P)
2705 #  include "embedvar.h"
2706 #endif
2707
2708 /* Now include all the 'global' variables 
2709  * If we don't have threads or multiple interpreters
2710  * these include variables that would have been their struct-s 
2711  */
2712                          
2713 #define PERLVAR(var,type) EXT type PL_##var;
2714 #define PERLVARA(var,n,type) EXT type PL_##var[n];
2715 #define PERLVARI(var,type,init) EXT type  PL_##var INIT(init);
2716 #define PERLVARIC(var,type,init) EXTCONST type PL_##var INIT(init);
2717
2718 #if !defined(MULTIPLICITY) && !defined(PERL_OBJECT)
2719 START_EXTERN_C
2720 #  include "intrpvar.h"
2721 #  ifndef USE_THREADS
2722 #    include "thrdvar.h"
2723 #  endif
2724 END_EXTERN_C
2725 #endif
2726
2727 #ifdef PERL_OBJECT
2728 #  include "embed.h"
2729
2730 #  ifdef DOINIT
2731 #    include "INTERN.h"
2732 #  else
2733 #    include "EXTERN.h"
2734 #  endif
2735
2736 /* this has structure inits, so it cannot be included before here */
2737 #  include "opcode.h"
2738
2739 #else
2740 #  if defined(WIN32)
2741 #    include "embed.h"
2742 #  endif
2743 #endif  /* PERL_OBJECT */
2744
2745 #ifndef PERL_GLOBAL_STRUCT
2746 START_EXTERN_C
2747
2748 #  include "perlvars.h"
2749
2750 END_EXTERN_C
2751 #endif
2752
2753 #undef PERLVAR
2754 #undef PERLVARA
2755 #undef PERLVARI
2756 #undef PERLVARIC
2757
2758 START_EXTERN_C
2759
2760 #ifdef DOINIT
2761
2762 EXT MGVTBL PL_vtbl_sv = {MEMBER_TO_FPTR(Perl_magic_get),
2763                                 MEMBER_TO_FPTR(Perl_magic_set),
2764                                         MEMBER_TO_FPTR(Perl_magic_len),
2765                                                 0,      0};
2766 EXT MGVTBL PL_vtbl_env =        {0,     MEMBER_TO_FPTR(Perl_magic_set_all_env),
2767                                 0,      MEMBER_TO_FPTR(Perl_magic_clear_all_env),
2768                                                         0};
2769 EXT MGVTBL PL_vtbl_envelem =    {0,     MEMBER_TO_FPTR(Perl_magic_setenv),
2770                                         0,      MEMBER_TO_FPTR(Perl_magic_clearenv),
2771                                                         0};
2772 EXT MGVTBL PL_vtbl_sig =        {0,     0,               0, 0, 0};
2773 EXT MGVTBL PL_vtbl_sigelem =    {MEMBER_TO_FPTR(Perl_magic_getsig),
2774                                         MEMBER_TO_FPTR(Perl_magic_setsig),
2775                                         0,      MEMBER_TO_FPTR(Perl_magic_clearsig),
2776                                                         0};
2777 EXT MGVTBL PL_vtbl_pack =       {0,     0,      MEMBER_TO_FPTR(Perl_magic_sizepack),    MEMBER_TO_FPTR(Perl_magic_wipepack),
2778                                                         0};
2779 EXT MGVTBL PL_vtbl_packelem =   {MEMBER_TO_FPTR(Perl_magic_getpack),
2780                                 MEMBER_TO_FPTR(Perl_magic_setpack),
2781                                         0,      MEMBER_TO_FPTR(Perl_magic_clearpack),
2782                                                         0};
2783 EXT MGVTBL PL_vtbl_dbline =     {0,     MEMBER_TO_FPTR(Perl_magic_setdbline),
2784                                         0,      0,      0};
2785 EXT MGVTBL PL_vtbl_isa =        {0,     MEMBER_TO_FPTR(Perl_magic_setisa),
2786                                         0,      MEMBER_TO_FPTR(Perl_magic_setisa),
2787                                                         0};
2788 EXT MGVTBL PL_vtbl_isaelem =    {0,     MEMBER_TO_FPTR(Perl_magic_setisa),
2789                                         0,      0,      0};
2790 EXT MGVTBL PL_vtbl_arylen =     {MEMBER_TO_FPTR(Perl_magic_getarylen),
2791                                 MEMBER_TO_FPTR(Perl_magic_setarylen),
2792                                         0,      0,      0};
2793 EXT MGVTBL PL_vtbl_glob =       {MEMBER_TO_FPTR(Perl_magic_getglob),
2794                                 MEMBER_TO_FPTR(Perl_magic_setglob),
2795                                         0,      0,      0};
2796 EXT MGVTBL PL_vtbl_mglob =      {0,     MEMBER_TO_FPTR(Perl_magic_setmglob),
2797                                         0,      0,      0};
2798 EXT MGVTBL PL_vtbl_nkeys =      {MEMBER_TO_FPTR(Perl_magic_getnkeys),
2799                                 MEMBER_TO_FPTR(Perl_magic_setnkeys),
2800                                         0,      0,      0};
2801 EXT MGVTBL PL_vtbl_taint =      {MEMBER_TO_FPTR(Perl_magic_gettaint),MEMBER_TO_FPTR(Perl_magic_settaint),
2802                                         0,      0,      0};
2803 EXT MGVTBL PL_vtbl_substr =     {MEMBER_TO_FPTR(Perl_magic_getsubstr), MEMBER_TO_FPTR(Perl_magic_setsubstr),
2804                                         0,      0,      0};
2805 EXT MGVTBL PL_vtbl_vec =        {MEMBER_TO_FPTR(Perl_magic_getvec),
2806                                 MEMBER_TO_FPTR(Perl_magic_setvec),
2807                                         0,      0,      0};
2808 EXT MGVTBL PL_vtbl_pos =        {MEMBER_TO_FPTR(Perl_magic_getpos),
2809                                 MEMBER_TO_FPTR(Perl_magic_setpos),
2810                                         0,      0,      0};
2811 EXT MGVTBL PL_vtbl_bm = {0,     MEMBER_TO_FPTR(Perl_magic_setbm),
2812                                         0,      0,      0};
2813 EXT MGVTBL PL_vtbl_fm = {0,     MEMBER_TO_FPTR(Perl_magic_setfm),
2814                                         0,      0,      0};
2815 EXT MGVTBL PL_vtbl_uvar =       {MEMBER_TO_FPTR(Perl_magic_getuvar),
2816                                 MEMBER_TO_FPTR(Perl_magic_setuvar),
2817                                         0,      0,      0};
2818 #ifdef USE_THREADS
2819 EXT MGVTBL PL_vtbl_mutex =      {0,     0,      0,      0,      MEMBER_TO_FPTR(Perl_magic_mutexfree)};
2820 #endif /* USE_THREADS */
2821 EXT MGVTBL PL_vtbl_defelem = {MEMBER_TO_FPTR(Perl_magic_getdefelem),MEMBER_TO_FPTR(Perl_magic_setdefelem),
2822                                         0,      0,      0};
2823
2824 EXT MGVTBL PL_vtbl_regexp = {0,0,0,0, MEMBER_TO_FPTR(Perl_magic_freeregexp)};
2825 EXT MGVTBL PL_vtbl_regdata = {0, 0, MEMBER_TO_FPTR(Perl_magic_regdata_cnt), 0, 0};
2826 EXT MGVTBL PL_vtbl_regdatum = {MEMBER_TO_FPTR(Perl_magic_regdatum_get), 0, 0, 0, 0};
2827
2828 #ifdef USE_LOCALE_COLLATE
2829 EXT MGVTBL PL_vtbl_collxfrm = {0,
2830                                 MEMBER_TO_FPTR(Perl_magic_setcollxfrm),
2831                                         0,      0,      0};
2832 #endif
2833
2834 EXT MGVTBL PL_vtbl_amagic =       {0,     MEMBER_TO_FPTR(Perl_magic_setamagic),
2835                                         0,      0,      MEMBER_TO_FPTR(Perl_magic_setamagic)};
2836 EXT MGVTBL PL_vtbl_amagicelem =   {0,     MEMBER_TO_FPTR(Perl_magic_setamagic),
2837                                         0,      0,      MEMBER_TO_FPTR(Perl_magic_setamagic)};
2838
2839 EXT MGVTBL PL_vtbl_backref =      {0,   0,
2840                                         0,      0,      MEMBER_TO_FPTR(Perl_magic_killbackrefs)};
2841
2842 #else /* !DOINIT */
2843
2844 EXT MGVTBL PL_vtbl_sv;
2845 EXT MGVTBL PL_vtbl_env;
2846 EXT MGVTBL PL_vtbl_envelem;
2847 EXT MGVTBL PL_vtbl_sig;
2848 EXT MGVTBL PL_vtbl_sigelem;
2849 EXT MGVTBL PL_vtbl_pack;
2850 EXT MGVTBL PL_vtbl_packelem;
2851 EXT MGVTBL PL_vtbl_dbline;
2852 EXT MGVTBL PL_vtbl_isa;
2853 EXT MGVTBL PL_vtbl_isaelem;
2854 EXT MGVTBL PL_vtbl_arylen;
2855 EXT MGVTBL PL_vtbl_glob;
2856 EXT MGVTBL PL_vtbl_mglob;
2857 EXT MGVTBL PL_vtbl_nkeys;
2858 EXT MGVTBL PL_vtbl_taint;
2859 EXT MGVTBL PL_vtbl_substr;
2860 EXT MGVTBL PL_vtbl_vec;
2861 EXT MGVTBL PL_vtbl_pos;
2862 EXT MGVTBL PL_vtbl_bm;
2863 EXT MGVTBL PL_vtbl_fm;
2864 EXT MGVTBL PL_vtbl_uvar;
2865
2866 #ifdef USE_THREADS
2867 EXT MGVTBL PL_vtbl_mutex;
2868 #endif /* USE_THREADS */
2869
2870 EXT MGVTBL PL_vtbl_defelem;
2871 EXT MGVTBL PL_vtbl_regexp;
2872 EXT MGVTBL PL_vtbl_regdata;
2873 EXT MGVTBL PL_vtbl_regdatum;
2874
2875 #ifdef USE_LOCALE_COLLATE
2876 EXT MGVTBL PL_vtbl_collxfrm;
2877 #endif
2878
2879 EXT MGVTBL PL_vtbl_amagic;
2880 EXT MGVTBL PL_vtbl_amagicelem;
2881
2882 EXT MGVTBL PL_vtbl_backref;
2883
2884 #endif /* !DOINIT */
2885
2886 enum {
2887   fallback_amg,        abs_amg,
2888   bool__amg,   nomethod_amg,
2889   string_amg,  numer_amg,
2890   add_amg,     add_ass_amg,
2891   subtr_amg,   subtr_ass_amg,
2892   mult_amg,    mult_ass_amg,
2893   div_amg,     div_ass_amg,
2894   modulo_amg,  modulo_ass_amg,
2895   pow_amg,     pow_ass_amg,
2896   lshift_amg,  lshift_ass_amg,
2897   rshift_amg,  rshift_ass_amg,
2898   band_amg,    band_ass_amg,
2899   bor_amg,     bor_ass_amg,
2900   bxor_amg,    bxor_ass_amg,
2901   lt_amg,      le_amg,
2902   gt_amg,      ge_amg,
2903   eq_amg,      ne_amg,
2904   ncmp_amg,    scmp_amg,
2905   slt_amg,     sle_amg,
2906   sgt_amg,     sge_amg,
2907   seq_amg,     sne_amg,
2908   not_amg,     compl_amg,
2909   inc_amg,     dec_amg,
2910   atan2_amg,   cos_amg,
2911   sin_amg,     exp_amg,
2912   log_amg,     sqrt_amg,
2913   repeat_amg,   repeat_ass_amg,
2914   concat_amg,  concat_ass_amg,
2915   copy_amg,    neg_amg,
2916   to_sv_amg,   to_av_amg,
2917   to_hv_amg,   to_gv_amg,
2918   to_cv_amg,   iter_amg,    
2919   max_amg_code
2920   /* Do not leave a trailing comma here.  C9X allows it, C89 doesn't. */
2921 };
2922
2923 #define NofAMmeth max_amg_code
2924
2925 #ifdef DOINIT
2926 EXTCONST char * PL_AMG_names[NofAMmeth] = {
2927   "fallback",   "abs",                  /* "fallback" should be the first. */
2928   "bool",       "nomethod",
2929   "\"\"",       "0+",
2930   "+",          "+=",
2931   "-",          "-=",
2932   "*",          "*=",
2933   "/",          "/=",
2934   "%",          "%=",
2935   "**",         "**=",
2936   "<<",         "<<=",
2937   ">>",         ">>=",
2938   "&",          "&=",
2939   "|",          "|=",
2940   "^",          "^=",
2941   "<",          "<=",
2942   ">",          ">=",
2943   "==",         "!=",
2944   "<=>",        "cmp",
2945   "lt",         "le",
2946   "gt",         "ge",
2947   "eq",         "ne",
2948   "!",          "~",
2949   "++",         "--",
2950   "atan2",      "cos",
2951   "sin",        "exp",
2952   "log",        "sqrt",
2953   "x",          "x=",
2954   ".",          ".=",
2955   "=",          "neg",
2956   "${}",        "@{}",
2957   "%{}",        "*{}",
2958   "&{}",        "<>",
2959 };
2960 #else
2961 EXTCONST char * PL_AMG_names[NofAMmeth];
2962 #endif /* def INITAMAGIC */
2963
2964 END_EXTERN_C
2965
2966 struct am_table {
2967   long was_ok_sub;
2968   long was_ok_am;
2969   U32 flags;
2970   CV* table[NofAMmeth];
2971   long fallback;
2972 };
2973 struct am_table_short {
2974   long was_ok_sub;
2975   long was_ok_am;
2976   U32 flags;
2977 };
2978 typedef struct am_table AMT;
2979 typedef struct am_table_short AMTS;
2980
2981 #define AMGfallNEVER    1
2982 #define AMGfallNO       2
2983 #define AMGfallYES      3
2984
2985 #define AMTf_AMAGIC             1
2986 #define AMT_AMAGIC(amt)         ((amt)->flags & AMTf_AMAGIC)
2987 #define AMT_AMAGIC_on(amt)      ((amt)->flags |= AMTf_AMAGIC)
2988 #define AMT_AMAGIC_off(amt)     ((amt)->flags &= ~AMTf_AMAGIC)
2989
2990
2991 /*
2992  * some compilers like to redefine cos et alia as faster
2993  * (and less accurate?) versions called F_cos et cetera (Quidquid
2994  * latine dictum sit, altum viditur.)  This trick collides with
2995  * the Perl overloading (amg).  The following #defines fool both.
2996  */
2997
2998 #ifdef _FASTMATH
2999 #   ifdef atan2
3000 #       define F_atan2_amg  atan2_amg
3001 #   endif
3002 #   ifdef cos
3003 #       define F_cos_amg    cos_amg
3004 #   endif
3005 #   ifdef exp
3006 #       define F_exp_amg    exp_amg
3007 #   endif
3008 #   ifdef log
3009 #       define F_log_amg    log_amg
3010 #   endif
3011 #   ifdef pow
3012 #       define F_pow_amg    pow_amg
3013 #   endif
3014 #   ifdef sin
3015 #       define F_sin_amg    sin_amg
3016 #   endif
3017 #   ifdef sqrt
3018 #       define F_sqrt_amg   sqrt_amg
3019 #   endif
3020 #endif /* _FASTMATH */
3021
3022 #define PERLDB_ALL              (PERLDBf_SUB    | PERLDBf_LINE  |       \
3023                                  PERLDBf_NOOPT  | PERLDBf_INTER |       \
3024                                  PERLDBf_SUBLINE| PERLDBf_SINGLE|       \
3025                                  PERLDBf_NAMEEVAL| PERLDBf_NAMEANON)
3026                                         /* No _NONAME, _GOTO */
3027 #define PERLDBf_SUB             0x01    /* Debug sub enter/exit */
3028 #define PERLDBf_LINE            0x02    /* Keep line # */
3029 #define PERLDBf_NOOPT           0x04    /* Switch off optimizations */
3030 #define PERLDBf_INTER           0x08    /* Preserve more data for
3031                                            later inspections  */
3032 #define PERLDBf_SUBLINE         0x10    /* Keep subr source lines */
3033 #define PERLDBf_SINGLE          0x20    /* Start with single-step on */
3034 #define PERLDBf_NONAME          0x40    /* For _SUB: no name of the subr */
3035 #define PERLDBf_GOTO            0x80    /* Report goto: call DB::goto */
3036 #define PERLDBf_NAMEEVAL        0x100   /* Informative names for evals */
3037 #define PERLDBf_NAMEANON        0x200   /* Informative names for anon subs */
3038
3039 #define PERLDB_SUB      (PL_perldb && (PL_perldb & PERLDBf_SUB))
3040 #define PERLDB_LINE     (PL_perldb && (PL_perldb & PERLDBf_LINE))
3041 #define PERLDB_NOOPT    (PL_perldb && (PL_perldb & PERLDBf_NOOPT))
3042 #define PERLDB_INTER    (PL_perldb && (PL_perldb & PERLDBf_INTER))
3043 #define PERLDB_SUBLINE  (PL_perldb && (PL_perldb & PERLDBf_SUBLINE))
3044 #define PERLDB_SINGLE   (PL_perldb && (PL_perldb & PERLDBf_SINGLE))
3045 #define PERLDB_SUB_NN   (PL_perldb && (PL_perldb & (PERLDBf_NONAME)))
3046 #define PERLDB_GOTO     (PL_perldb && (PL_perldb & PERLDBf_GOTO))
3047 #define PERLDB_NAMEEVAL (PL_perldb && (PL_perldb & PERLDBf_NAMEEVAL))
3048 #define PERLDB_NAMEANON (PL_perldb && (PL_perldb & PERLDBf_NAMEANON))
3049
3050
3051 #ifdef USE_LOCALE_NUMERIC
3052
3053 #define SET_NUMERIC_STANDARD() \
3054     STMT_START {                                \
3055         if (! PL_numeric_standard)              \
3056             set_numeric_standard();             \
3057     } STMT_END
3058
3059 #define SET_NUMERIC_LOCAL() \
3060     STMT_START {                                \
3061         if (! PL_numeric_local)                 \
3062             set_numeric_local();                \
3063     } STMT_END
3064
3065 #define IS_NUMERIC_RADIX(c)     \
3066         ((PL_hints & HINT_LOCALE) && \
3067           PL_numeric_radix && (c) == PL_numeric_radix)
3068
3069 #define RESTORE_NUMERIC_LOCAL()         if ((PL_hints & HINT_LOCALE) && PL_numeric_standard) SET_NUMERIC_LOCAL()
3070 #define RESTORE_NUMERIC_STANDARD()      if ((PL_hints & HINT_LOCALE) && PL_numeric_local) SET_NUMERIC_STANDARD()
3071 #define Atof                            my_atof
3072
3073 #else /* !USE_LOCALE_NUMERIC */
3074
3075 #define SET_NUMERIC_STANDARD()          /**/
3076 #define SET_NUMERIC_LOCAL()             /**/
3077 #define IS_NUMERIC_RADIX(c)             (0)
3078 #define RESTORE_NUMERIC_LOCAL()         /**/
3079 #define RESTORE_NUMERIC_STANDARD()      /**/
3080 #define Atof                            Perl_atof
3081
3082 #endif /* !USE_LOCALE_NUMERIC */
3083
3084 #if !defined(Strtol) && defined(USE_64_BIT_INT) && defined(IV_IS_QUAD) && QUADKIND == QUAD_IS_LONG_LONG
3085 #    ifdef __hpux
3086 #        define strtoll __strtoll       /* secret handshake */
3087 #    endif
3088 #   if !defined(Strtol) && defined(HAS_STRTOLL)
3089 #       define Strtol   strtoll
3090 #   endif
3091 /* is there atoq() anywhere? */
3092 #endif
3093 #if !defined(Strtol) && defined(HAS_STRTOL)
3094 #   define Strtol       strtol
3095 #endif
3096 #ifndef Atol
3097 /* It would be more fashionable to use Strtol() to define atol()
3098  * (as is done for Atoul(), see below) but for backward compatibility
3099  * we just assume atol(). */
3100 #   if defined(USE_64_BIT_INT) && defined(IV_IS_QUAD) && QUADKIND == QUAD_IS_LONG_LONG && defined(HAS_ATOLL)
3101 #       define Atol     atoll
3102 #   else
3103 #       define Atol     atol
3104 #   endif
3105 #endif
3106
3107 #if !defined(Strtoul) && defined(USE_64_BIT_INT) && defined(UV_IS_QUAD) && QUADKIND == QUAD_IS_LONG_LONG
3108 #    ifdef __hpux
3109 #        define strtoull __strtoull     /* secret handshake */
3110 #    endif
3111 #    if !defined(Strtoul) && defined(HAS_STRTOULL)
3112 #       define Strtoul  strtoull
3113 #    endif
3114 #    if !defined(Strtoul) && defined(HAS_STRTOUQ)
3115 #       define Strtoul  strtouq
3116 #    endif
3117 /* is there atouq() anywhere? */
3118 #endif
3119 #if !defined(Strtoul) && defined(HAS_STRTOUL)
3120 #   define Strtoul      strtoul
3121 #endif
3122 #ifndef Atoul
3123 #   define Atoul(s)     Strtoul(s, (char **)NULL, 10)
3124 #endif
3125
3126 #if !defined(PERLIO_IS_STDIO) && defined(HASATTRIBUTE)
3127 /* 
3128  * Now we have __attribute__ out of the way 
3129  * Remap printf 
3130  */
3131 #undef printf
3132 #define printf PerlIO_stdoutf
3133 #endif
3134
3135 /* if these never got defined, they need defaults */
3136 #ifndef PERL_SET_CONTEXT
3137 #  define PERL_SET_CONTEXT(i)           PERL_SET_INTERP(i)
3138 #endif
3139
3140 #ifndef PERL_GET_CONTEXT
3141 #  define PERL_GET_CONTEXT              PERL_GET_INTERP
3142 #endif
3143
3144 #ifndef PERL_GET_THX
3145 #  define PERL_GET_THX                  ((void*)NULL)
3146 #endif
3147
3148 #ifndef PERL_SET_THX
3149 #  define PERL_SET_THX(t)               NOOP
3150 #endif
3151
3152 #ifndef PERL_SCRIPT_MODE
3153 #define PERL_SCRIPT_MODE "r"
3154 #endif
3155
3156 /*
3157  * Some operating systems are stingy with stack allocation,
3158  * so perl may have to guard against stack overflow.
3159  */
3160 #ifndef PERL_STACK_OVERFLOW_CHECK
3161 #define PERL_STACK_OVERFLOW_CHECK()  NOOP
3162 #endif
3163
3164 /*
3165  * Some nonpreemptive operating systems find it convenient to
3166  * check for asynchronous conditions after each op execution.
3167  * Keep this check simple, or it may slow down execution
3168  * massively.
3169  */
3170 #ifndef PERL_ASYNC_CHECK
3171 #define PERL_ASYNC_CHECK()  NOOP
3172 #endif
3173
3174 /*
3175  * On some operating systems, a memory allocation may succeed,
3176  * but put the process too close to the system's comfort limit.
3177  * In this case, PERL_ALLOC_CHECK frees the pointer and sets
3178  * it to NULL.
3179  */
3180 #ifndef PERL_ALLOC_CHECK
3181 #define PERL_ALLOC_CHECK(p)  NOOP
3182 #endif
3183
3184 /*
3185  * nice_chunk and nice_chunk size need to be set
3186  * and queried under the protection of sv_mutex
3187  */
3188 #define offer_nice_chunk(chunk, chunk_size) do {        \
3189         LOCK_SV_MUTEX;                                  \
3190         if (!PL_nice_chunk) {                           \
3191             PL_nice_chunk = (char*)(chunk);             \
3192             PL_nice_chunk_size = (chunk_size);          \
3193         }                                               \
3194         else {                                          \
3195             Safefree(chunk);                            \
3196         }                                               \
3197         UNLOCK_SV_MUTEX;                                \
3198     } while (0)
3199
3200 #ifdef HAS_SEM
3201 #   include <sys/ipc.h>
3202 #   include <sys/sem.h>
3203 #   ifndef HAS_UNION_SEMUN      /* Provide the union semun. */
3204     union semun {
3205         int             val;
3206         struct semid_ds *buf;
3207         unsigned short  *array;
3208     };
3209 #   endif
3210 #   ifdef USE_SEMCTL_SEMUN
3211 #       ifdef IRIX32_SEMUN_BROKEN_BY_GCC
3212             union gccbug_semun {
3213                 int             val;
3214                 struct semid_ds *buf;
3215                 unsigned short  *array;
3216                 char            __dummy[5];
3217             };
3218 #           define semun gccbug_semun
3219 #       endif
3220 #       define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun)
3221 #   else
3222 #       ifdef USE_SEMCTL_SEMID_DS
3223 #           ifdef EXTRA_F_IN_SEMUN_BUF
3224 #               define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun.buff)
3225 #           else
3226 #               define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun.buf)
3227 #           endif
3228 #       endif
3229 #   endif
3230 #endif
3231
3232 #ifdef I_FCNTL
3233 #  include <fcntl.h>
3234 #endif
3235
3236 #ifdef I_SYS_FILE
3237 #  include <sys/file.h>
3238 #endif
3239
3240 #ifndef O_RDONLY
3241 /* Assume UNIX defaults */
3242 #    define O_RDONLY    0000
3243 #    define O_WRONLY    0001
3244 #    define O_RDWR      0002
3245 #    define O_CREAT     0100
3246 #endif
3247
3248 #ifndef O_BINARY
3249 #  define O_BINARY 0
3250 #endif
3251
3252 #ifndef O_TEXT
3253 #  define O_TEXT 0
3254 #endif
3255
3256 #ifdef IAMSUID
3257
3258 #ifdef I_SYS_STATVFS
3259 #   include <sys/statvfs.h>     /* for f?statvfs() */
3260 #endif
3261 #ifdef I_SYS_MOUNT
3262 #   include <sys/mount.h>       /* for *BSD f?statfs() */
3263 #endif
3264 #ifdef I_MNTENT
3265 #   include <mntent.h>          /* for getmntent() */
3266 #endif
3267 #ifdef I_SYS_STATFS
3268 #   include <sys/statfs.h>      /* for some statfs() */
3269 #endif
3270 #ifdef I_SYS_VFS
3271 #  ifdef __sgi
3272 #    define sv IRIX_sv          /* kludge: IRIX has an sv of its own */
3273 #  endif
3274 #    include <sys/vfs.h>        /* for some statfs() */
3275 #  ifdef __sgi
3276 #    undef IRIX_sv
3277 #  endif
3278 #endif
3279 #ifdef I_USTAT
3280 #   include <ustat.h>           /* for ustat() */
3281 #endif
3282
3283 #if !defined(PERL_MOUNT_NOSUID) && defined(MOUNT_NOSUID)
3284 #    define PERL_MOUNT_NOSUID MOUNT_NOSUID
3285 #endif
3286 #if !defined(PERL_MOUNT_NOSUID) && defined(MNT_NOSUID)
3287 #    define PERL_MOUNT_NOSUID MNT_NOSUID
3288 #endif
3289 #if !defined(PERL_MOUNT_NOSUID) && defined(MS_NOSUID)
3290 #   define PERL_MOUNT_NOSUID MS_NOSUID
3291 #endif
3292 #if !defined(PERL_MOUNT_NOSUID) && defined(M_NOSUID)
3293 #   define PERL_MOUNT_NOSUID M_NOSUID
3294 #endif
3295
3296 #endif /* IAMSUID */
3297
3298 /* and finally... */
3299 #define PERL_PATCHLEVEL_H_IMPLICIT
3300 #include "patchlevel.h"
3301 #undef PERL_PATCHLEVEL_H_IMPLICIT
3302
3303 /* Mention
3304    
3305    NV_PRESERVES_UV
3306
3307    HAS_ICONV
3308    I_ICONV
3309
3310    HAS_MKSTEMP
3311    HAS_MKSTEMPS
3312    HAS_MKDTEMP
3313
3314    HAS_GETCWD
3315
3316    HAS_MMAP
3317    HAS_MPROTECT
3318    HAS_MSYNC
3319    HAS_MADVISE
3320    HAS_MUNMAP
3321    I_SYSMMAN
3322    Mmap_t
3323
3324    so that Configure picks them up. */
3325
3326 #endif /* Include guard */