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