This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
inline AUTOLOADed constants via Exporter.pm
[perl5.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 #ifndef PERL_SYS_INIT3
1616 #  define PERL_SYS_INIT3(argvp,argcp,envp) PERL_SYS_INIT(argvp,argcp)
1617 #endif
1618
1619 #ifndef MAXPATHLEN
1620 #  ifdef PATH_MAX
1621 #    ifdef _POSIX_PATH_MAX
1622 #       if PATH_MAX > _POSIX_PATH_MAX
1623 /* MAXPATHLEN is supposed to include the final null character,
1624  * as opposed to PATH_MAX and _POSIX_PATH_MAX. */
1625 #         define MAXPATHLEN (PATH_MAX+1)
1626 #       else
1627 #         define MAXPATHLEN (_POSIX_PATH_MAX+1)
1628 #       endif
1629 #    else
1630 #      define MAXPATHLEN (PATH_MAX+1)
1631 #    endif
1632 #  else
1633 #    ifdef _POSIX_PATH_MAX
1634 #       define MAXPATHLEN (_POSIX_PATH_MAX+1)
1635 #    else
1636 #       define MAXPATHLEN 1024  /* Err on the large side. */
1637 #    endif
1638 #  endif
1639 #endif
1640
1641 /* 
1642  * USE_THREADS needs to be after unixish.h as <pthread.h> includes
1643  * <sys/signal.h> which defines NSIG - which will stop inclusion of <signal.h>
1644  * this results in many functions being undeclared which bothers C++
1645  * May make sense to have threads after "*ish.h" anyway
1646  */
1647
1648 #if defined(USE_THREADS) || defined(USE_ITHREADS)
1649 #  if defined(USE_THREADS)
1650    /* pending resolution of licensing issues, we avoid the erstwhile
1651     * atomic.h everywhere */
1652 #  define EMULATE_ATOMIC_REFCOUNTS
1653 #  endif
1654 #  ifdef FAKE_THREADS
1655 #    include "fakethr.h"
1656 #  else
1657 #    ifdef WIN32
1658 #      include <win32thread.h>
1659 #    else
1660 #      ifdef OS2
1661 #        include "os2thread.h"
1662 #      else
1663 #        ifdef I_MACH_CTHREADS
1664 #          include <mach/cthreads.h>
1665 #          if (defined(NeXT) || defined(__NeXT__)) && defined(PERL_POLLUTE_MALLOC)
1666 #            define MUTEX_INIT_CALLS_MALLOC
1667 #          endif
1668 typedef cthread_t       perl_os_thread;
1669 typedef mutex_t         perl_mutex;
1670 typedef condition_t     perl_cond;
1671 typedef void *          perl_key;
1672 #        else /* Posix threads */
1673 #          ifdef I_PTHREAD
1674 #            include <pthread.h>
1675 #          endif
1676 typedef pthread_t       perl_os_thread;
1677 typedef pthread_mutex_t perl_mutex;
1678 typedef pthread_cond_t  perl_cond;
1679 typedef pthread_key_t   perl_key;
1680 #        endif /* I_MACH_CTHREADS */
1681 #      endif /* OS2 */
1682 #    endif /* WIN32 */
1683 #  endif /* FAKE_THREADS */
1684 #endif /* USE_THREADS || USE_ITHREADS */
1685
1686 #ifdef WIN32
1687 #  include "win32.h"
1688 #endif
1689
1690 #ifdef VMS
1691 #   define STATUS_NATIVE        PL_statusvalue_vms
1692 #   define STATUS_NATIVE_EXPORT \
1693         (((I32)PL_statusvalue_vms == -1 ? 44 : PL_statusvalue_vms) | (VMSISH_HUSHED ? 0x10000000 : 0))
1694 #   define STATUS_NATIVE_SET(n)                                         \
1695         STMT_START {                                                    \
1696             PL_statusvalue_vms = (n);                                   \
1697             if ((I32)PL_statusvalue_vms == -1)                          \
1698                 PL_statusvalue = -1;                                    \
1699             else if (PL_statusvalue_vms & STS$M_SUCCESS)                \
1700                 PL_statusvalue = 0;                                     \
1701             else if ((PL_statusvalue_vms & STS$M_SEVERITY) == 0)        \
1702                 PL_statusvalue = 1 << 8;                                \
1703             else                                                        \
1704                 PL_statusvalue = (PL_statusvalue_vms & STS$M_SEVERITY) << 8;    \
1705         } STMT_END
1706 #   define STATUS_POSIX PL_statusvalue
1707 #   ifdef VMSISH_STATUS
1708 #       define STATUS_CURRENT   (VMSISH_STATUS ? STATUS_NATIVE : STATUS_POSIX)
1709 #   else
1710 #       define STATUS_CURRENT   STATUS_POSIX
1711 #   endif
1712 #   define STATUS_POSIX_SET(n)                          \
1713         STMT_START {                                    \
1714             PL_statusvalue = (n);                               \
1715             if (PL_statusvalue != -1) {                 \
1716                 PL_statusvalue &= 0xFFFF;                       \
1717                 PL_statusvalue_vms = PL_statusvalue ? 44 : 1;   \
1718             }                                           \
1719             else PL_statusvalue_vms = -1;                       \
1720         } STMT_END
1721 #   define STATUS_ALL_SUCCESS   (PL_statusvalue = 0, PL_statusvalue_vms = 1)
1722 #   define STATUS_ALL_FAILURE   (PL_statusvalue = 1, PL_statusvalue_vms = 44)
1723 #else
1724 #   define STATUS_NATIVE        STATUS_POSIX
1725 #   define STATUS_NATIVE_EXPORT STATUS_POSIX
1726 #   define STATUS_NATIVE_SET    STATUS_POSIX_SET
1727 #   define STATUS_POSIX         PL_statusvalue
1728 #   define STATUS_POSIX_SET(n)          \
1729         STMT_START {                    \
1730             PL_statusvalue = (n);               \
1731             if (PL_statusvalue != -1)   \
1732                 PL_statusvalue &= 0xFFFF;       \
1733         } STMT_END
1734 #   define STATUS_CURRENT STATUS_POSIX
1735 #   define STATUS_ALL_SUCCESS   (PL_statusvalue = 0)
1736 #   define STATUS_ALL_FAILURE   (PL_statusvalue = 1)
1737 #endif
1738
1739 /* flags in PL_exit_flags for nature of exit() */
1740 #define PERL_EXIT_EXPECTED      0x01
1741
1742 #ifndef MEMBER_TO_FPTR
1743 #  define MEMBER_TO_FPTR(name)          name
1744 #endif
1745
1746 /* format to use for version numbers in file/directory names */
1747 /* XXX move to Configure? */
1748 #ifndef PERL_FS_VER_FMT
1749 #  define PERL_FS_VER_FMT       "%d.%d.%d"
1750 #endif
1751
1752 /* This defines a way to flush all output buffers.  This may be a
1753  * performance issue, so we allow people to disable it.
1754  */
1755 #ifndef PERL_FLUSHALL_FOR_CHILD
1756 # if defined(FFLUSH_NULL) || defined(USE_SFIO)
1757 #  define PERL_FLUSHALL_FOR_CHILD       PerlIO_flush((PerlIO*)NULL)
1758 # else
1759 #  ifdef FFLUSH_ALL
1760 #   define PERL_FLUSHALL_FOR_CHILD      my_fflush_all()
1761 #  else
1762 #   define PERL_FLUSHALL_FOR_CHILD      NOOP
1763 #  endif
1764 # endif
1765 #endif
1766
1767 #ifndef PERL_WAIT_FOR_CHILDREN
1768 #  define PERL_WAIT_FOR_CHILDREN        NOOP
1769 #endif
1770
1771 /* the traditional thread-unsafe notion of "current interpreter". */
1772 #ifndef PERL_SET_INTERP
1773 #  define PERL_SET_INTERP(i)            (PL_curinterp = (PerlInterpreter*)(i))
1774 #endif
1775
1776 #ifndef PERL_GET_INTERP
1777 #  define PERL_GET_INTERP               (PL_curinterp)
1778 #endif
1779
1780 #if defined(PERL_IMPLICIT_CONTEXT) && !defined(PERL_GET_THX)
1781 #  ifdef USE_THREADS
1782 #    define PERL_GET_THX                ((struct perl_thread *)PERL_GET_CONTEXT)
1783 #  else
1784 #  ifdef MULTIPLICITY
1785 #    define PERL_GET_THX                ((PerlInterpreter *)PERL_GET_CONTEXT)
1786 #  else
1787 #  ifdef PERL_OBJECT
1788 #    define PERL_GET_THX                ((CPerlObj *)PERL_GET_CONTEXT)
1789 #  endif
1790 #  endif
1791 #  endif
1792 #  define PERL_SET_THX(t)               PERL_SET_CONTEXT(t)
1793 #endif
1794
1795 #ifndef SVf
1796 #  ifdef CHECK_FORMAT
1797 #    define SVf "p"
1798 #  else
1799 #    define SVf "_"
1800 #  endif 
1801 #endif
1802
1803 /* Some unistd.h's give a prototype for pause() even though
1804    HAS_PAUSE ends up undefined.  This causes the #define
1805    below to be rejected by the compmiler.  Sigh.
1806 */
1807 #ifdef HAS_PAUSE
1808 #define Pause   pause
1809 #else
1810 #define Pause() sleep((32767<<16)+32767)
1811 #endif
1812
1813 #ifndef IOCPARM_LEN
1814 #   ifdef IOCPARM_MASK
1815         /* on BSDish systes we're safe */
1816 #       define IOCPARM_LEN(x)  (((x) >> 16) & IOCPARM_MASK)
1817 #   else
1818         /* otherwise guess at what's safe */
1819 #       define IOCPARM_LEN(x)   256
1820 #   endif
1821 #endif
1822
1823 #if defined(__CYGWIN__)
1824 /* USEMYBINMODE
1825  *   This symbol, if defined, indicates that the program should
1826  *   use the routine my_binmode(FILE *fp, char iotype, int mode) to insure
1827  *   that a file is in "binary" mode -- that is, that no translation
1828  *   of bytes occurs on read or write operations.
1829  */
1830 #  define USEMYBINMODE / **/
1831 #  define my_binmode(fp, iotype, mode) \
1832             (PerlLIO_setmode(PerlIO_fileno(fp), mode) != -1 ? TRUE : FALSE)
1833 #endif
1834
1835 #ifdef UNION_ANY_DEFINITION
1836 UNION_ANY_DEFINITION;
1837 #else
1838 union any {
1839     void*       any_ptr;
1840     I32         any_i32;
1841     IV          any_iv;
1842     long        any_long;
1843     void        (*any_dptr) (void*);
1844     void        (*any_dxptr) (pTHXo_ void*);
1845 };
1846 #endif
1847
1848 #ifdef USE_THREADS
1849 #define ARGSproto struct perl_thread *thr
1850 #else
1851 #define ARGSproto
1852 #endif /* USE_THREADS */
1853
1854 typedef I32 (*filter_t) (pTHXo_ int, SV *, int);
1855
1856 #define FILTER_READ(idx, sv, len)  filter_read(idx, sv, len)
1857 #define FILTER_DATA(idx)           (AvARRAY(PL_rsfp_filters)[idx])
1858 #define FILTER_ISREADER(idx)       (idx >= AvFILLp(PL_rsfp_filters))
1859
1860 #if !defined(OS2)
1861 #  include "iperlsys.h"
1862 #endif
1863 #include "regexp.h"
1864 #include "sv.h"
1865 #include "util.h"
1866 #include "form.h"
1867 #include "gv.h"
1868 #include "cv.h"
1869 #include "opnames.h"
1870 #include "op.h"
1871 #include "cop.h"
1872 #include "av.h"
1873 #include "hv.h"
1874 #include "mg.h"
1875 #include "scope.h"
1876 #include "warnings.h"
1877 #include "utf8.h"
1878
1879 /* Current curly descriptor */
1880 typedef struct curcur CURCUR;
1881 struct curcur {
1882     int         parenfloor;     /* how far back to strip paren data */
1883     int         cur;            /* how many instances of scan we've matched */
1884     int         min;            /* the minimal number of scans to match */
1885     int         max;            /* the maximal number of scans to match */
1886     int         minmod;         /* whether to work our way up or down */
1887     regnode *   scan;           /* the thing to match */
1888     regnode *   next;           /* what has to match after it */
1889     char *      lastloc;        /* where we started matching this scan */
1890     CURCUR *    oldcc;          /* current curly before we started this one */
1891 };
1892
1893 typedef struct _sublex_info SUBLEXINFO;
1894 struct _sublex_info {
1895     I32 super_state;    /* lexer state to save */
1896     I32 sub_inwhat;     /* "lex_inwhat" to use */
1897     OP *sub_op;         /* "lex_op" to use */
1898     char *super_bufptr; /* PL_bufptr that was */
1899     char *super_bufend; /* PL_bufend that was */
1900 };
1901
1902 typedef struct magic_state MGS; /* struct magic_state defined in mg.c */
1903
1904 struct scan_data_t;             /* Used in S_* functions in regcomp.c */
1905 struct regnode_charclass_class; /* Used in S_* functions in regcomp.c */
1906
1907 typedef I32 CHECKPOINT;
1908
1909 struct ptr_tbl_ent {
1910     struct ptr_tbl_ent*         next;
1911     void*                       oldval;
1912     void*                       newval;
1913 };
1914
1915 struct ptr_tbl {
1916     struct ptr_tbl_ent**        tbl_ary;
1917     UV                          tbl_max;
1918     UV                          tbl_items;
1919 };
1920
1921 #if defined(iAPX286) || defined(M_I286) || defined(I80286)
1922 #   define I286
1923 #endif
1924
1925 #if defined(htonl) && !defined(HAS_HTONL)
1926 #define HAS_HTONL
1927 #endif
1928 #if defined(htons) && !defined(HAS_HTONS)
1929 #define HAS_HTONS
1930 #endif
1931 #if defined(ntohl) && !defined(HAS_NTOHL)
1932 #define HAS_NTOHL
1933 #endif
1934 #if defined(ntohs) && !defined(HAS_NTOHS)
1935 #define HAS_NTOHS
1936 #endif
1937 #ifndef HAS_HTONL
1938 #if (BYTEORDER & 0xffff) != 0x4321
1939 #define HAS_HTONS
1940 #define HAS_HTONL
1941 #define HAS_NTOHS
1942 #define HAS_NTOHL
1943 #define MYSWAP
1944 #define htons my_swap
1945 #define htonl my_htonl
1946 #define ntohs my_swap
1947 #define ntohl my_ntohl
1948 #endif
1949 #else
1950 #if (BYTEORDER & 0xffff) == 0x4321
1951 #undef HAS_HTONS
1952 #undef HAS_HTONL
1953 #undef HAS_NTOHS
1954 #undef HAS_NTOHL
1955 #endif
1956 #endif
1957
1958 /*
1959  * Little-endian byte order functions - 'v' for 'VAX', or 'reVerse'.
1960  * -DWS
1961  */
1962 #if BYTEORDER != 0x1234
1963 # define HAS_VTOHL
1964 # define HAS_VTOHS
1965 # define HAS_HTOVL
1966 # define HAS_HTOVS
1967 # if BYTEORDER == 0x4321 || BYTEORDER == 0x87654321
1968 #  define vtohl(x)      ((((x)&0xFF)<<24)       \
1969                         +(((x)>>24)&0xFF)       \
1970                         +(((x)&0x0000FF00)<<8)  \
1971                         +(((x)&0x00FF0000)>>8)  )
1972 #  define vtohs(x)      ((((x)&0xFF)<<8) + (((x)>>8)&0xFF))
1973 #  define htovl(x)      vtohl(x)
1974 #  define htovs(x)      vtohs(x)
1975 # endif
1976         /* otherwise default to functions in util.c */
1977 #endif
1978
1979 #ifdef CASTNEGFLOAT
1980 #define U_S(what) ((U16)(what))
1981 #define U_I(what) ((unsigned int)(what))
1982 #define U_L(what) ((U32)(what))
1983 #else
1984 #define U_S(what) ((U16)cast_ulong((NV)(what)))
1985 #define U_I(what) ((unsigned int)cast_ulong((NV)(what)))
1986 #define U_L(what) (cast_ulong((NV)(what)))
1987 #endif
1988
1989 #ifdef CASTI32
1990 #define I_32(what) ((I32)(what))
1991 #define I_V(what) ((IV)(what))
1992 #define U_V(what) ((UV)(what))
1993 #else
1994 #define I_32(what) (cast_i32((NV)(what)))
1995 #define I_V(what) (cast_iv((NV)(what)))
1996 #define U_V(what) (cast_uv((NV)(what)))
1997 #endif
1998
1999 /* These do not care about the fractional part, only about the range. */
2000 #define NV_WITHIN_IV(nv) (I_V(nv) >= IV_MIN && I_V(nv) <= IV_MAX)
2001 #define NV_WITHIN_UV(nv) ((nv)>=0.0 && U_V(nv) >= UV_MIN && U_V(nv) <= UV_MAX)
2002
2003 /* Used with UV/IV arguments: */
2004                                         /* XXXX: need to speed it up */
2005 #define CLUMP_2UV(iv)   ((iv) < 0 ? 0 : (UV)(iv))
2006 #define CLUMP_2IV(uv)   ((uv) > (UV)IV_MAX ? IV_MAX : (IV)(uv))
2007
2008 #ifndef MAXSYSFD
2009 #   define MAXSYSFD 2
2010 #endif
2011
2012 #ifndef __cplusplus
2013 Uid_t getuid (void);
2014 Uid_t geteuid (void);
2015 Gid_t getgid (void);
2016 Gid_t getegid (void);
2017 #endif
2018
2019 #ifndef Perl_debug_log
2020 #  define Perl_debug_log        PerlIO_stderr()
2021 #endif
2022
2023 #ifndef Perl_error_log
2024 #  define Perl_error_log        (PL_stderrgv                    \
2025                                  && IoOFP(GvIOp(PL_stderrgv))   \
2026                                  ? IoOFP(GvIOp(PL_stderrgv))    \
2027                                  : PerlIO_stderr())
2028 #endif
2029
2030 #ifdef DEBUGGING
2031 #undef  YYDEBUG
2032 #define YYDEBUG 1
2033 #define DEB(a)                          a
2034 #define DEBUG(a)   if (PL_debug)                a
2035 #define DEBUG_p(a) if (PL_debug & 1)    a
2036 #define DEBUG_s(a) if (PL_debug & 2)    a
2037 #define DEBUG_l(a) if (PL_debug & 4)    a
2038 #define DEBUG_t(a) if (PL_debug & 8)    a
2039 #define DEBUG_o(a) if (PL_debug & 16)   a
2040 #define DEBUG_c(a) if (PL_debug & 32)   a
2041 #define DEBUG_P(a) if (PL_debug & 64)   a
2042 #  if defined(PERL_OBJECT)
2043 #    define DEBUG_m(a) if (PL_debug & 128)      a
2044 #  else
2045 #    define DEBUG_m(a)  \
2046     STMT_START {                                                        \
2047         if (PERL_GET_INTERP) { dTHX; if (PL_debug & 128) { a; } }       \
2048     } STMT_END
2049 #  endif
2050 #define DEBUG_f(a) if (PL_debug & 256)  a
2051 #define DEBUG_r(a) if (PL_debug & 512)  a
2052 #define DEBUG_x(a) if (PL_debug & 1024) a
2053 #define DEBUG_u(a) if (PL_debug & 2048) a
2054 #define DEBUG_L(a) if (PL_debug & 4096) a
2055 #define DEBUG_H(a) if (PL_debug & 8192) a
2056 #define DEBUG_X(a) if (PL_debug & 16384)        a
2057 #define DEBUG_D(a) if (PL_debug & 32768)        a
2058 #  ifdef USE_THREADS
2059 #    define DEBUG_S(a) if (PL_debug & (1<<16))  a
2060 #  else
2061 #    define DEBUG_S(a)
2062 #  endif
2063 #else
2064 #define DEB(a)
2065 #define DEBUG(a)
2066 #define DEBUG_p(a)
2067 #define DEBUG_s(a)
2068 #define DEBUG_l(a)
2069 #define DEBUG_t(a)
2070 #define DEBUG_o(a)
2071 #define DEBUG_c(a)
2072 #define DEBUG_P(a)
2073 #define DEBUG_m(a)
2074 #define DEBUG_f(a)
2075 #define DEBUG_r(a)
2076 #define DEBUG_x(a)
2077 #define DEBUG_u(a)
2078 #define DEBUG_S(a)
2079 #define DEBUG_H(a)
2080 #define DEBUG_X(a)
2081 #define DEBUG_D(a)
2082 #define DEBUG_S(a)
2083 #endif
2084 #define YYMAXDEPTH 300
2085
2086 #ifndef assert  /* <assert.h> might have been included somehow */
2087 #define assert(what)    DEB( {                                          \
2088         if (!(what)) {                                                  \
2089             Perl_croak(aTHX_ "Assertion failed: file \"%s\", line %d",  \
2090                 __FILE__, __LINE__);                                    \
2091             PerlProc_exit(1);                                           \
2092         }})
2093 #endif
2094
2095 struct ufuncs {
2096     I32 (*uf_val)(IV, SV*);
2097     I32 (*uf_set)(IV, SV*);
2098     IV uf_index;
2099 };
2100
2101 /* Fix these up for __STDC__ */
2102 #ifndef DONT_DECLARE_STD
2103 char *mktemp (char*);
2104 #ifndef atof
2105 double atof (const char*);
2106 #endif
2107 #endif
2108
2109 #ifndef STANDARD_C
2110 /* All of these are in stdlib.h or time.h for ANSI C */
2111 Time_t time();
2112 struct tm *gmtime(), *localtime();
2113 #if defined(OEMVS) || defined(__OPEN_VM)
2114 char *(strchr)(), *(strrchr)();
2115 char *(strcpy)(), *(strcat)();
2116 #else
2117 char *strchr(), *strrchr();
2118 char *strcpy(), *strcat();
2119 #endif
2120 #endif /* ! STANDARD_C */
2121
2122
2123 #ifdef I_MATH
2124 #    include <math.h>
2125 #else
2126 START_EXTERN_C
2127             double exp (double);
2128             double log (double);
2129             double log10 (double);
2130             double sqrt (double);
2131             double frexp (double,int*);
2132             double ldexp (double,int);
2133             double modf (double,double*);
2134             double sin (double);
2135             double cos (double);
2136             double atan2 (double,double);
2137             double pow (double,double);
2138 END_EXTERN_C
2139 #endif
2140
2141 #ifndef __cplusplus
2142 #  if defined(NeXT) || defined(__NeXT__) /* or whatever catches all NeXTs */
2143 char *crypt ();       /* Maybe more hosts will need the unprototyped version */
2144 #  else
2145 #    if !defined(WIN32)
2146 char *crypt (const char*, const char*);
2147 #    endif /* !WIN32 */
2148 #  endif /* !NeXT && !__NeXT__ */
2149 #  ifndef DONT_DECLARE_STD
2150 #    ifndef getenv
2151 char *getenv (const char*);
2152 #    endif /* !getenv */
2153 #    if !defined(EPOC) && !(defined(__hpux) && defined(_FILE_OFFSET_BITS) && _FILE_OFFSET_BITS == 64) && !defined(HAS_LSEEK_PROTO)
2154 Off_t lseek (int,Off_t,int);
2155 #    endif
2156 #  endif /* !DONT_DECLARE_STD */
2157 char *getlogin (void);
2158 #endif /* !__cplusplus */
2159
2160 #ifdef UNLINK_ALL_VERSIONS /* Currently only makes sense for VMS */
2161 #define UNLINK unlnk
2162 I32 unlnk (char*);
2163 #else
2164 #define UNLINK PerlLIO_unlink
2165 #endif
2166
2167 #ifndef HAS_SETREUID
2168 #  ifdef HAS_SETRESUID
2169 #    define setreuid(r,e) setresuid(r,e,(Uid_t)-1)
2170 #    define HAS_SETREUID
2171 #  endif
2172 #endif
2173 #ifndef HAS_SETREGID
2174 #  ifdef HAS_SETRESGID
2175 #    define setregid(r,e) setresgid(r,e,(Gid_t)-1)
2176 #    define HAS_SETREGID
2177 #  endif
2178 #endif
2179
2180 /* Sighandler_t defined in iperlsys.h */
2181
2182 #ifdef HAS_SIGACTION
2183 typedef struct sigaction Sigsave_t;
2184 #else
2185 typedef Sighandler_t Sigsave_t;
2186 #endif
2187
2188 #define SCAN_DEF 0
2189 #define SCAN_TR 1
2190 #define SCAN_REPL 2
2191
2192 #ifdef DEBUGGING
2193 # ifndef register
2194 #  define register
2195 # endif
2196 # define PAD_SV(po) pad_sv(po)
2197 # define RUNOPS_DEFAULT Perl_runops_debug
2198 #else
2199 # define PAD_SV(po) PL_curpad[po]
2200 # define RUNOPS_DEFAULT Perl_runops_standard
2201 #endif
2202
2203 #ifdef MYMALLOC
2204 #  ifdef MUTEX_INIT_CALLS_MALLOC
2205 #    define MALLOC_INIT                                 \
2206         STMT_START {                                    \
2207                 PL_malloc_mutex = NULL;                 \
2208                 MUTEX_INIT(&PL_malloc_mutex);           \
2209         } STMT_END
2210 #    define MALLOC_TERM                                 \
2211         STMT_START {                                    \
2212                 perl_mutex tmp = PL_malloc_mutex;       \
2213                 PL_malloc_mutex = NULL;                 \
2214                 MUTEX_DESTROY(&tmp);                    \
2215         } STMT_END
2216 #  else
2217 #    define MALLOC_INIT MUTEX_INIT(&PL_malloc_mutex)
2218 #    define MALLOC_TERM MUTEX_DESTROY(&PL_malloc_mutex)
2219 #  endif
2220 #else
2221 #  define MALLOC_INIT
2222 #  define MALLOC_TERM
2223 #endif
2224
2225
2226 typedef int (CPERLscope(*runops_proc_t)) (pTHX);
2227 typedef OP* (CPERLscope(*PPADDR_t)[]) (pTHX);
2228
2229 /* _ (for $_) must be first in the following list (DEFSV requires it) */
2230 #define THREADSV_NAMES "_123456789&`'+/.,\\\";^-%=|~:\001\005!@"
2231
2232 /* NeXT has problems with crt0.o globals */
2233 #if defined(__DYNAMIC__) && \
2234     (defined(NeXT) || defined(__NeXT__) || defined(__APPLE__))
2235 #  if defined(NeXT) || defined(__NeXT)
2236 #    include <mach-o/dyld.h>
2237 #    define environ (*environ_pointer)
2238 EXT char *** environ_pointer;
2239 #  else
2240 #    if defined(__APPLE__)
2241 #      include <crt_externs.h>  /* for the env array */
2242 #      define environ (*_NSGetEnviron())
2243 #    endif
2244 #  endif
2245 #else
2246    /* VMS and some other platforms don't use the environ array */
2247 #  if !defined(VMS)
2248 #    if !defined(DONT_DECLARE_STD) || \
2249         (defined(__svr4__) && defined(__GNUC__) && defined(sun)) || \
2250         defined(__sgi) || \
2251         defined(__DGUX) || defined(EPOC)
2252 extern char **  environ;        /* environment variables supplied via exec */
2253 #    endif
2254 #  endif
2255 #endif
2256
2257 START_EXTERN_C
2258
2259 /* handy constants */
2260 EXTCONST char PL_warn_uninit[]
2261   INIT("Use of uninitialized value%s%s");
2262 EXTCONST char PL_warn_nosemi[]
2263   INIT("Semicolon seems to be missing");
2264 EXTCONST char PL_warn_reserved[]
2265   INIT("Unquoted string \"%s\" may clash with future reserved word");
2266 EXTCONST char PL_warn_nl[]
2267   INIT("Unsuccessful %s on filename containing newline");
2268 EXTCONST char PL_no_wrongref[]
2269   INIT("Can't use %s ref as %s ref");
2270 EXTCONST char PL_no_symref[]
2271   INIT("Can't use string (\"%.32s\") as %s ref while \"strict refs\" in use");
2272 EXTCONST char PL_no_usym[]
2273   INIT("Can't use an undefined value as %s reference");
2274 EXTCONST char PL_no_aelem[]
2275   INIT("Modification of non-creatable array value attempted, subscript %d");
2276 EXTCONST char PL_no_helem[]
2277   INIT("Modification of non-creatable hash value attempted, subscript \"%s\"");
2278 EXTCONST char PL_no_modify[]
2279   INIT("Modification of a read-only value attempted");
2280 EXTCONST char PL_no_mem[]
2281   INIT("Out of memory!\n");
2282 EXTCONST char PL_no_security[]
2283   INIT("Insecure dependency in %s%s");
2284 EXTCONST char PL_no_sock_func[]
2285   INIT("Unsupported socket function \"%s\" called");
2286 EXTCONST char PL_no_dir_func[]
2287   INIT("Unsupported directory function \"%s\" called");
2288 EXTCONST char PL_no_func[]
2289   INIT("The %s function is unimplemented");
2290 EXTCONST char PL_no_myglob[]
2291   INIT("\"my\" variable %s can't be in a package");
2292
2293 EXTCONST char PL_uuemap[65]
2294   INIT("`!\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_");
2295
2296
2297 #ifdef DOINIT
2298 EXT char *PL_sig_name[] = { SIG_NAME };
2299 EXT int   PL_sig_num[]  = { SIG_NUM };
2300 #else
2301 EXT char *PL_sig_name[];
2302 EXT int   PL_sig_num[];
2303 #endif
2304
2305 /* fast case folding tables */
2306
2307 #ifdef DOINIT
2308 #ifdef EBCDIC
2309 EXT unsigned char PL_fold[] = { /* fast EBCDIC case folding table */
2310     0,      1,      2,      3,      4,      5,      6,      7,
2311     8,      9,      10,     11,     12,     13,     14,     15,
2312     16,     17,     18,     19,     20,     21,     22,     23,
2313     24,     25,     26,     27,     28,     29,     30,     31,
2314     32,     33,     34,     35,     36,     37,     38,     39,
2315     40,     41,     42,     43,     44,     45,     46,     47,
2316     48,     49,     50,     51,     52,     53,     54,     55,
2317     56,     57,     58,     59,     60,     61,     62,     63,
2318     64,     65,     66,     67,     68,     69,     70,     71,
2319     72,     73,     74,     75,     76,     77,     78,     79,
2320     80,     81,     82,     83,     84,     85,     86,     87,
2321     88,     89,     90,     91,     92,     93,     94,     95,
2322     96,     97,     98,     99,     100,    101,    102,    103,
2323     104,    105,    106,    107,    108,    109,    110,    111,
2324     112,    113,    114,    115,    116,    117,    118,    119,
2325     120,    121,    122,    123,    124,    125,    126,    127,
2326     128,    'A',    'B',    'C',    'D',    'E',    'F',    'G',
2327     'H',    'I',    138,    139,    140,    141,    142,    143,
2328     144,    'J',    'K',    'L',    'M',    'N',    'O',    'P',
2329     'Q',    'R',    154,    155,    156,    157,    158,    159,
2330     160,    161,    'S',    'T',    'U',    'V',    'W',    'X',
2331     'Y',    'Z',    170,    171,    172,    173,    174,    175,
2332     176,    177,    178,    179,    180,    181,    182,    183,
2333     184,    185,    186,    187,    188,    189,    190,    191,
2334     192,    'a',    'b',    'c',    'd',    'e',    'f',    'g',
2335     'h',    'i',    202,    203,    204,    205,    206,    207,
2336     208,    'j',    'k',    'l',    'm',    'n',    'o',    'p',
2337     'q',    'r',    218,    219,    220,    221,    222,    223,
2338     224,    225,    's',    't',    'u',    'v',    'w',    'x',
2339     'y',    'z',    234,    235,    236,    237,    238,    239,
2340     240,    241,    242,    243,    244,    245,    246,    247,
2341     248,    249,    250,    251,    252,    253,    254,    255
2342 };
2343 #else   /* ascii rather than ebcdic */
2344 EXTCONST  unsigned char PL_fold[] = {
2345         0,      1,      2,      3,      4,      5,      6,      7,
2346         8,      9,      10,     11,     12,     13,     14,     15,
2347         16,     17,     18,     19,     20,     21,     22,     23,
2348         24,     25,     26,     27,     28,     29,     30,     31,
2349         32,     33,     34,     35,     36,     37,     38,     39,
2350         40,     41,     42,     43,     44,     45,     46,     47,
2351         48,     49,     50,     51,     52,     53,     54,     55,
2352         56,     57,     58,     59,     60,     61,     62,     63,
2353         64,     'a',    'b',    'c',    'd',    'e',    'f',    'g',
2354         'h',    'i',    'j',    'k',    'l',    'm',    'n',    'o',
2355         'p',    'q',    'r',    's',    't',    'u',    'v',    'w',
2356         'x',    'y',    'z',    91,     92,     93,     94,     95,
2357         96,     'A',    'B',    'C',    'D',    'E',    'F',    'G',
2358         'H',    'I',    'J',    'K',    'L',    'M',    'N',    'O',
2359         'P',    'Q',    'R',    'S',    'T',    'U',    'V',    'W',
2360         'X',    'Y',    'Z',    123,    124,    125,    126,    127,
2361         128,    129,    130,    131,    132,    133,    134,    135,
2362         136,    137,    138,    139,    140,    141,    142,    143,
2363         144,    145,    146,    147,    148,    149,    150,    151,
2364         152,    153,    154,    155,    156,    157,    158,    159,
2365         160,    161,    162,    163,    164,    165,    166,    167,
2366         168,    169,    170,    171,    172,    173,    174,    175,
2367         176,    177,    178,    179,    180,    181,    182,    183,
2368         184,    185,    186,    187,    188,    189,    190,    191,
2369         192,    193,    194,    195,    196,    197,    198,    199,
2370         200,    201,    202,    203,    204,    205,    206,    207,
2371         208,    209,    210,    211,    212,    213,    214,    215,
2372         216,    217,    218,    219,    220,    221,    222,    223,    
2373         224,    225,    226,    227,    228,    229,    230,    231,
2374         232,    233,    234,    235,    236,    237,    238,    239,
2375         240,    241,    242,    243,    244,    245,    246,    247,
2376         248,    249,    250,    251,    252,    253,    254,    255
2377 };
2378 #endif  /* !EBCDIC */
2379 #else
2380 EXTCONST unsigned char PL_fold[];
2381 #endif
2382
2383 #ifdef DOINIT
2384 EXT unsigned char PL_fold_locale[] = {
2385         0,      1,      2,      3,      4,      5,      6,      7,
2386         8,      9,      10,     11,     12,     13,     14,     15,
2387         16,     17,     18,     19,     20,     21,     22,     23,
2388         24,     25,     26,     27,     28,     29,     30,     31,
2389         32,     33,     34,     35,     36,     37,     38,     39,
2390         40,     41,     42,     43,     44,     45,     46,     47,
2391         48,     49,     50,     51,     52,     53,     54,     55,
2392         56,     57,     58,     59,     60,     61,     62,     63,
2393         64,     'a',    'b',    'c',    'd',    'e',    'f',    'g',
2394         'h',    'i',    'j',    'k',    'l',    'm',    'n',    'o',
2395         'p',    'q',    'r',    's',    't',    'u',    'v',    'w',
2396         'x',    'y',    'z',    91,     92,     93,     94,     95,
2397         96,     'A',    'B',    'C',    'D',    'E',    'F',    'G',
2398         'H',    'I',    'J',    'K',    'L',    'M',    'N',    'O',
2399         'P',    'Q',    'R',    'S',    'T',    'U',    'V',    'W',
2400         'X',    'Y',    'Z',    123,    124,    125,    126,    127,
2401         128,    129,    130,    131,    132,    133,    134,    135,
2402         136,    137,    138,    139,    140,    141,    142,    143,
2403         144,    145,    146,    147,    148,    149,    150,    151,
2404         152,    153,    154,    155,    156,    157,    158,    159,
2405         160,    161,    162,    163,    164,    165,    166,    167,
2406         168,    169,    170,    171,    172,    173,    174,    175,
2407         176,    177,    178,    179,    180,    181,    182,    183,
2408         184,    185,    186,    187,    188,    189,    190,    191,
2409         192,    193,    194,    195,    196,    197,    198,    199,
2410         200,    201,    202,    203,    204,    205,    206,    207,
2411         208,    209,    210,    211,    212,    213,    214,    215,
2412         216,    217,    218,    219,    220,    221,    222,    223,    
2413         224,    225,    226,    227,    228,    229,    230,    231,
2414         232,    233,    234,    235,    236,    237,    238,    239,
2415         240,    241,    242,    243,    244,    245,    246,    247,
2416         248,    249,    250,    251,    252,    253,    254,    255
2417 };
2418 #else
2419 EXT unsigned char PL_fold_locale[];
2420 #endif
2421
2422 #ifdef DOINIT
2423 #ifdef EBCDIC
2424 EXT unsigned char PL_freq[] = {/* EBCDIC frequencies for mixed English/C */
2425     1,      2,      84,     151,    154,    155,    156,    157,
2426     165,    246,    250,    3,      158,    7,      18,     29,
2427     40,     51,     62,     73,     85,     96,     107,    118,
2428     129,    140,    147,    148,    149,    150,    152,    153,
2429     255,      6,      8,      9,     10,     11,     12,     13,
2430      14,     15,     24,     25,     26,     27,     28,    226,
2431      29,     30,     31,     32,     33,     43,     44,     45,
2432      46,     47,     48,     49,     50,     76,     77,     78,
2433      79,     80,     81,     82,     83,     84,     85,     86,
2434      87,     94,     95,    234,    181,    233,    187,    190,
2435     180,     96,     97,     98,     99,    100,    101,    102,
2436     104,    112,    182,    174,    236,    232,    229,    103,
2437     228,    226,    114,    115,    116,    117,    118,    119,
2438     120,    121,    122,    235,    176,    230,    194,    162,
2439     130,    131,    132,    133,    134,    135,    136,    137,
2440     138,    139,    201,    205,    163,    217,    220,    224,
2441     5,      248,    227,    244,    242,    255,    241,    231,
2442     240,    253,    16,     197,    19,     20,     21,     187,
2443     23,     169,    210,    245,    237,    249,    247,    239,
2444     168,    252,    34,     196,    36,     37,     38,     39,
2445     41,     42,     251,    254,    238,    223,    221,    213,
2446     225,    177,    52,     53,     54,     55,     56,     57,
2447     58,     59,     60,     61,     63,     64,     65,     66,
2448     67,     68,     69,     70,     71,     72,     74,     75,
2449     205,    208,    186,    202,    200,    218,    198,    179,
2450     178,    214,    88,     89,     90,     91,     92,     93,
2451     217,    166,    170,    207,    199,    209,    206,    204,
2452     160,    212,    105,    106,    108,    109,    110,    111,
2453     203,    113,    216,    215,    192,    175,    193,    243,
2454     172,    161,    123,    124,    125,    126,    127,    128,
2455     222,    219,    211,    195,    188,    193,    185,    184,
2456     191,    183,    141,    142,    143,    144,    145,    146
2457 };
2458 #else  /* ascii rather than ebcdic */
2459 EXTCONST unsigned char PL_freq[] = {    /* letter frequencies for mixed English/C */
2460         1,      2,      84,     151,    154,    155,    156,    157,
2461         165,    246,    250,    3,      158,    7,      18,     29,
2462         40,     51,     62,     73,     85,     96,     107,    118,
2463         129,    140,    147,    148,    149,    150,    152,    153,
2464         255,    182,    224,    205,    174,    176,    180,    217,
2465         233,    232,    236,    187,    235,    228,    234,    226,
2466         222,    219,    211,    195,    188,    193,    185,    184,
2467         191,    183,    201,    229,    181,    220,    194,    162,
2468         163,    208,    186,    202,    200,    218,    198,    179,
2469         178,    214,    166,    170,    207,    199,    209,    206,
2470         204,    160,    212,    216,    215,    192,    175,    173,
2471         243,    172,    161,    190,    203,    189,    164,    230,
2472         167,    248,    227,    244,    242,    255,    241,    231,
2473         240,    253,    169,    210,    245,    237,    249,    247,
2474         239,    168,    252,    251,    254,    238,    223,    221,
2475         213,    225,    177,    197,    171,    196,    159,    4,
2476         5,      6,      8,      9,      10,     11,     12,     13,
2477         14,     15,     16,     17,     19,     20,     21,     22,
2478         23,     24,     25,     26,     27,     28,     30,     31,
2479         32,     33,     34,     35,     36,     37,     38,     39,
2480         41,     42,     43,     44,     45,     46,     47,     48,
2481         49,     50,     52,     53,     54,     55,     56,     57,
2482         58,     59,     60,     61,     63,     64,     65,     66,
2483         67,     68,     69,     70,     71,     72,     74,     75,
2484         76,     77,     78,     79,     80,     81,     82,     83,
2485         86,     87,     88,     89,     90,     91,     92,     93,
2486         94,     95,     97,     98,     99,     100,    101,    102,
2487         103,    104,    105,    106,    108,    109,    110,    111,
2488         112,    113,    114,    115,    116,    117,    119,    120,
2489         121,    122,    123,    124,    125,    126,    127,    128,
2490         130,    131,    132,    133,    134,    135,    136,    137,
2491         138,    139,    141,    142,    143,    144,    145,    146
2492 };
2493 #endif
2494 #else
2495 EXTCONST unsigned char PL_freq[];
2496 #endif
2497
2498 #ifdef DEBUGGING
2499 #ifdef DOINIT
2500 EXTCONST char* PL_block_type[] = {
2501         "NULL",
2502         "SUB",
2503         "EVAL",
2504         "LOOP",
2505         "SUBST",
2506         "BLOCK",
2507 };
2508 #else
2509 EXTCONST char* PL_block_type[];
2510 #endif
2511 #endif
2512
2513 END_EXTERN_C
2514
2515 /*****************************************************************************/
2516 /* This lexer/parser stuff is currently global since yacc is hard to reenter */
2517 /*****************************************************************************/
2518 /* XXX This needs to be revisited, since BEGIN makes yacc re-enter... */
2519
2520 #include "perly.h"
2521
2522 #define LEX_NOTPARSING          11      /* borrowed from toke.c */
2523
2524 typedef enum {
2525     XOPERATOR,
2526     XTERM,
2527     XREF,
2528     XSTATE,
2529     XBLOCK,
2530     XATTRBLOCK,
2531     XATTRTERM,
2532     XTERMBLOCK
2533 } expectation;
2534
2535 enum {          /* pass one of these to get_vtbl */
2536     want_vtbl_sv,
2537     want_vtbl_env,
2538     want_vtbl_envelem,
2539     want_vtbl_sig,
2540     want_vtbl_sigelem,
2541     want_vtbl_pack,
2542     want_vtbl_packelem,
2543     want_vtbl_dbline,
2544     want_vtbl_isa,
2545     want_vtbl_isaelem,
2546     want_vtbl_arylen,
2547     want_vtbl_glob,
2548     want_vtbl_mglob,
2549     want_vtbl_nkeys,
2550     want_vtbl_taint,
2551     want_vtbl_substr,
2552     want_vtbl_vec,
2553     want_vtbl_pos,
2554     want_vtbl_bm,
2555     want_vtbl_fm,
2556     want_vtbl_uvar,
2557     want_vtbl_defelem,
2558     want_vtbl_regexp,
2559     want_vtbl_collxfrm,
2560     want_vtbl_amagic,
2561     want_vtbl_amagicelem,
2562 #ifdef USE_THREADS
2563     want_vtbl_mutex,
2564 #endif
2565     want_vtbl_regdata,
2566     want_vtbl_regdatum,
2567     want_vtbl_backref
2568 };
2569
2570                                 /* Note: the lowest 8 bits are reserved for
2571                                    stuffing into op->op_private */
2572 #define HINT_PRIVATE_MASK       0x000000ff
2573 #define HINT_INTEGER            0x00000001
2574 #define HINT_STRICT_REFS        0x00000002
2575 /* #define HINT_notused4        0x00000004 */
2576 #define HINT_BYTE               0x00000008
2577 /* #define HINT_notused10       0x00000010 */
2578                                 /* Note: 20,40,80 used for NATIVE_HINTS */
2579
2580 #define HINT_BLOCK_SCOPE        0x00000100
2581 #define HINT_STRICT_SUBS        0x00000200
2582 #define HINT_STRICT_VARS        0x00000400
2583 #define HINT_LOCALE             0x00000800
2584
2585 #define HINT_NEW_INTEGER        0x00001000
2586 #define HINT_NEW_FLOAT          0x00002000
2587 #define HINT_NEW_BINARY         0x00004000
2588 #define HINT_NEW_STRING         0x00008000
2589 #define HINT_NEW_RE             0x00010000
2590 #define HINT_LOCALIZE_HH        0x00020000 /* %^H needs to be copied */
2591
2592 #define HINT_RE_TAINT           0x00100000
2593 #define HINT_RE_EVAL            0x00200000
2594
2595 #define HINT_FILETEST_ACCESS    0x00400000
2596 #define HINT_UTF8               0x00800000
2597
2598 /* Various states of an input record separator SV (rs, nrs) */
2599 #define RsSNARF(sv)   (! SvOK(sv))
2600 #define RsSIMPLE(sv)  (SvOK(sv) && (! SvPOK(sv) || SvCUR(sv)))
2601 #define RsPARA(sv)    (SvPOK(sv) && ! SvCUR(sv))
2602 #define RsRECORD(sv)  (SvROK(sv) && (SvIV(SvRV(sv)) > 0))
2603
2604 /* Enable variables which are pointers to functions */
2605 typedef regexp*(CPERLscope(*regcomp_t)) (pTHX_ char* exp, char* xend, PMOP* pm);
2606 typedef I32 (CPERLscope(*regexec_t)) (pTHX_ regexp* prog, char* stringarg,
2607                                       char* strend, char* strbeg, I32 minend,
2608                                       SV* screamer, void* data, U32 flags);
2609 typedef char* (CPERLscope(*re_intuit_start_t)) (pTHX_ regexp *prog, SV *sv,
2610                                                 char *strpos, char *strend,
2611                                                 U32 flags,
2612                                                 struct re_scream_pos_data_s *d);
2613 typedef SV*     (CPERLscope(*re_intuit_string_t)) (pTHX_ regexp *prog);
2614 typedef void    (CPERLscope(*regfree_t)) (pTHX_ struct regexp* r);
2615
2616 #ifdef USE_PURE_BISON
2617 int Perl_yylex(pTHX_ YYSTYPE *lvalp, int *lcharp);
2618 #endif
2619
2620 typedef void (*DESTRUCTORFUNC_NOCONTEXT_t) (void*);
2621 typedef void (*DESTRUCTORFUNC_t) (pTHXo_ void*);
2622 typedef void (*SVFUNC_t) (pTHXo_ SV*);
2623 typedef I32  (*SVCOMPARE_t) (pTHXo_ SV*, SV*);
2624 typedef void (*XSINIT_t) (pTHXo);
2625 typedef void (*ATEXIT_t) (pTHXo_ void*);
2626 typedef void (*XSUBADDR_t) (pTHXo_ CV *);
2627
2628 /* Set up PERLVAR macros for populating structs */
2629 #define PERLVAR(var,type) type var;
2630 #define PERLVARA(var,n,type) type var[n];
2631 #define PERLVARI(var,type,init) type var;
2632 #define PERLVARIC(var,type,init) type var;
2633
2634 /* Interpreter exitlist entry */
2635 typedef struct exitlistentry {
2636     void (*fn) (pTHXo_ void*);
2637     void *ptr;
2638 } PerlExitListEntry;
2639
2640 #ifdef PERL_GLOBAL_STRUCT
2641 struct perl_vars {
2642 #  include "perlvars.h"
2643 };
2644
2645 #  ifdef PERL_CORE
2646 EXT struct perl_vars PL_Vars;
2647 EXT struct perl_vars *PL_VarsPtr INIT(&PL_Vars);
2648 #  else /* PERL_CORE */
2649 #    if !defined(__GNUC__) || !defined(WIN32)
2650 EXT
2651 #    endif /* WIN32 */
2652 struct perl_vars *PL_VarsPtr;
2653 #    define PL_Vars (*((PL_VarsPtr) \
2654                        ? PL_VarsPtr : (PL_VarsPtr = Perl_GetVars(aTHX))))
2655 #  endif /* PERL_CORE */
2656 #endif /* PERL_GLOBAL_STRUCT */
2657
2658 #if defined(MULTIPLICITY) || defined(PERL_OBJECT)
2659 /* If we have multiple interpreters define a struct 
2660    holding variables which must be per-interpreter
2661    If we don't have threads anything that would have 
2662    be per-thread is per-interpreter.
2663 */
2664
2665 struct interpreter {
2666 #  ifndef USE_THREADS
2667 #    include "thrdvar.h"
2668 #  endif
2669 #  include "intrpvar.h"
2670 /*
2671  * The following is a buffer where new variables must
2672  * be defined to maintain binary compatibility with PERL_OBJECT
2673  */
2674 PERLVARA(object_compatibility,30,       char)
2675 };
2676
2677 #else
2678 struct interpreter {
2679     char broiled;
2680 };
2681 #endif /* MULTIPLICITY || PERL_OBJECT */
2682
2683 #ifdef USE_THREADS
2684 /* If we have threads define a struct with all the variables
2685  * that have to be per-thread
2686  */
2687
2688
2689 struct perl_thread {
2690 #include "thrdvar.h"
2691 };
2692
2693 typedef struct perl_thread *Thread;
2694
2695 #else
2696 typedef void *Thread;
2697 #endif
2698
2699 /* Done with PERLVAR macros for now ... */
2700 #undef PERLVAR
2701 #undef PERLVARA
2702 #undef PERLVARI
2703 #undef PERLVARIC
2704
2705 #include "thread.h"
2706 #include "pp.h"
2707
2708 #ifndef PERL_CALLCONV
2709 #  define PERL_CALLCONV
2710 #endif 
2711
2712 #ifndef NEXT30_NO_ATTRIBUTE
2713 #  ifndef HASATTRIBUTE       /* disable GNU-cc attribute checking? */
2714 #    ifdef  __attribute__      /* Avoid possible redefinition errors */
2715 #      undef  __attribute__
2716 #    endif
2717 #    define __attribute__(attr)
2718 #  endif
2719 #endif
2720
2721 #ifdef PERL_OBJECT
2722 #  define PERL_DECL_PROT
2723 #endif
2724
2725 #undef PERL_CKDEF
2726 #undef PERL_PPDEF
2727 #define PERL_CKDEF(s)   OP *s (pTHX_ OP *o);
2728 #define PERL_PPDEF(s)   OP *s (pTHX);
2729
2730 #include "proto.h"
2731
2732 #ifdef PERL_OBJECT
2733 #  undef PERL_DECL_PROT
2734 #endif
2735
2736 #ifndef PERL_OBJECT
2737 /* this has structure inits, so it cannot be included before here */
2738 #  include "opcode.h"
2739 #endif
2740
2741 /* The following must follow proto.h as #defines mess up syntax */
2742
2743 #if !defined(PERL_FOR_X2P)
2744 #  include "embedvar.h"
2745 #endif
2746
2747 /* Now include all the 'global' variables 
2748  * If we don't have threads or multiple interpreters
2749  * these include variables that would have been their struct-s 
2750  */
2751                          
2752 #define PERLVAR(var,type) EXT type PL_##var;
2753 #define PERLVARA(var,n,type) EXT type PL_##var[n];
2754 #define PERLVARI(var,type,init) EXT type  PL_##var INIT(init);
2755 #define PERLVARIC(var,type,init) EXTCONST type PL_##var INIT(init);
2756
2757 #if !defined(MULTIPLICITY) && !defined(PERL_OBJECT)
2758 START_EXTERN_C
2759 #  include "intrpvar.h"
2760 #  ifndef USE_THREADS
2761 #    include "thrdvar.h"
2762 #  endif
2763 END_EXTERN_C
2764 #endif
2765
2766 #ifdef PERL_OBJECT
2767 #  include "embed.h"
2768
2769 #  ifdef DOINIT
2770 #    include "INTERN.h"
2771 #  else
2772 #    include "EXTERN.h"
2773 #  endif
2774
2775 /* this has structure inits, so it cannot be included before here */
2776 #  include "opcode.h"
2777
2778 #else
2779 #  if defined(WIN32)
2780 #    include "embed.h"
2781 #  endif
2782 #endif  /* PERL_OBJECT */
2783
2784 #ifndef PERL_GLOBAL_STRUCT
2785 START_EXTERN_C
2786
2787 #  include "perlvars.h"
2788
2789 END_EXTERN_C
2790 #endif
2791
2792 #undef PERLVAR
2793 #undef PERLVARA
2794 #undef PERLVARI
2795 #undef PERLVARIC
2796
2797 START_EXTERN_C
2798
2799 #ifdef DOINIT
2800
2801 EXT MGVTBL PL_vtbl_sv = {MEMBER_TO_FPTR(Perl_magic_get),
2802                                 MEMBER_TO_FPTR(Perl_magic_set),
2803                                         MEMBER_TO_FPTR(Perl_magic_len),
2804                                                 0,      0};
2805 EXT MGVTBL PL_vtbl_env =        {0,     MEMBER_TO_FPTR(Perl_magic_set_all_env),
2806                                 0,      MEMBER_TO_FPTR(Perl_magic_clear_all_env),
2807                                                         0};
2808 EXT MGVTBL PL_vtbl_envelem =    {0,     MEMBER_TO_FPTR(Perl_magic_setenv),
2809                                         0,      MEMBER_TO_FPTR(Perl_magic_clearenv),
2810                                                         0};
2811 EXT MGVTBL PL_vtbl_sig =        {0,     0,               0, 0, 0};
2812 #ifdef PERL_MICRO
2813 EXT MGVTBL PL_vtbl_sigelem =    {0,     0,               0, 0, 0};
2814 #else
2815 EXT MGVTBL PL_vtbl_sigelem =    {MEMBER_TO_FPTR(Perl_magic_getsig),
2816                                         MEMBER_TO_FPTR(Perl_magic_setsig),
2817                                         0,      MEMBER_TO_FPTR(Perl_magic_clearsig),
2818                                                         0};
2819 #endif
2820 EXT MGVTBL PL_vtbl_pack =       {0,     0,      MEMBER_TO_FPTR(Perl_magic_sizepack),    MEMBER_TO_FPTR(Perl_magic_wipepack),
2821                                                         0};
2822 EXT MGVTBL PL_vtbl_packelem =   {MEMBER_TO_FPTR(Perl_magic_getpack),
2823                                 MEMBER_TO_FPTR(Perl_magic_setpack),
2824                                         0,      MEMBER_TO_FPTR(Perl_magic_clearpack),
2825                                                         0};
2826 EXT MGVTBL PL_vtbl_dbline =     {0,     MEMBER_TO_FPTR(Perl_magic_setdbline),
2827                                         0,      0,      0};
2828 EXT MGVTBL PL_vtbl_isa =        {0,     MEMBER_TO_FPTR(Perl_magic_setisa),
2829                                         0,      MEMBER_TO_FPTR(Perl_magic_setisa),
2830                                                         0};
2831 EXT MGVTBL PL_vtbl_isaelem =    {0,     MEMBER_TO_FPTR(Perl_magic_setisa),
2832                                         0,      0,      0};
2833 EXT MGVTBL PL_vtbl_arylen =     {MEMBER_TO_FPTR(Perl_magic_getarylen),
2834                                 MEMBER_TO_FPTR(Perl_magic_setarylen),
2835                                         0,      0,      0};
2836 EXT MGVTBL PL_vtbl_glob =       {MEMBER_TO_FPTR(Perl_magic_getglob),
2837                                 MEMBER_TO_FPTR(Perl_magic_setglob),
2838                                         0,      0,      0};
2839 EXT MGVTBL PL_vtbl_mglob =      {0,     MEMBER_TO_FPTR(Perl_magic_setmglob),
2840                                         0,      0,      0};
2841 EXT MGVTBL PL_vtbl_nkeys =      {MEMBER_TO_FPTR(Perl_magic_getnkeys),
2842                                 MEMBER_TO_FPTR(Perl_magic_setnkeys),
2843                                         0,      0,      0};
2844 EXT MGVTBL PL_vtbl_taint =      {MEMBER_TO_FPTR(Perl_magic_gettaint),MEMBER_TO_FPTR(Perl_magic_settaint),
2845                                         0,      0,      0};
2846 EXT MGVTBL PL_vtbl_substr =     {MEMBER_TO_FPTR(Perl_magic_getsubstr), MEMBER_TO_FPTR(Perl_magic_setsubstr),
2847                                         0,      0,      0};
2848 EXT MGVTBL PL_vtbl_vec =        {MEMBER_TO_FPTR(Perl_magic_getvec),
2849                                 MEMBER_TO_FPTR(Perl_magic_setvec),
2850                                         0,      0,      0};
2851 EXT MGVTBL PL_vtbl_pos =        {MEMBER_TO_FPTR(Perl_magic_getpos),
2852                                 MEMBER_TO_FPTR(Perl_magic_setpos),
2853                                         0,      0,      0};
2854 EXT MGVTBL PL_vtbl_bm = {0,     MEMBER_TO_FPTR(Perl_magic_setbm),
2855                                         0,      0,      0};
2856 EXT MGVTBL PL_vtbl_fm = {0,     MEMBER_TO_FPTR(Perl_magic_setfm),
2857                                         0,      0,      0};
2858 EXT MGVTBL PL_vtbl_uvar =       {MEMBER_TO_FPTR(Perl_magic_getuvar),
2859                                 MEMBER_TO_FPTR(Perl_magic_setuvar),
2860                                         0,      0,      0};
2861 #ifdef USE_THREADS
2862 EXT MGVTBL PL_vtbl_mutex =      {0,     0,      0,      0,      MEMBER_TO_FPTR(Perl_magic_mutexfree)};
2863 #endif /* USE_THREADS */
2864 EXT MGVTBL PL_vtbl_defelem = {MEMBER_TO_FPTR(Perl_magic_getdefelem),MEMBER_TO_FPTR(Perl_magic_setdefelem),
2865                                         0,      0,      0};
2866
2867 EXT MGVTBL PL_vtbl_regexp = {0,0,0,0, MEMBER_TO_FPTR(Perl_magic_freeregexp)};
2868 EXT MGVTBL PL_vtbl_regdata = {0, 0, MEMBER_TO_FPTR(Perl_magic_regdata_cnt), 0, 0};
2869 EXT MGVTBL PL_vtbl_regdatum = {MEMBER_TO_FPTR(Perl_magic_regdatum_get), 0, 0, 0, 0};
2870
2871 #ifdef USE_LOCALE_COLLATE
2872 EXT MGVTBL PL_vtbl_collxfrm = {0,
2873                                 MEMBER_TO_FPTR(Perl_magic_setcollxfrm),
2874                                         0,      0,      0};
2875 #endif
2876
2877 EXT MGVTBL PL_vtbl_amagic =       {0,     MEMBER_TO_FPTR(Perl_magic_setamagic),
2878                                         0,      0,      MEMBER_TO_FPTR(Perl_magic_setamagic)};
2879 EXT MGVTBL PL_vtbl_amagicelem =   {0,     MEMBER_TO_FPTR(Perl_magic_setamagic),
2880                                         0,      0,      MEMBER_TO_FPTR(Perl_magic_setamagic)};
2881
2882 EXT MGVTBL PL_vtbl_backref =      {0,   0,
2883                                         0,      0,      MEMBER_TO_FPTR(Perl_magic_killbackrefs)};
2884
2885 #else /* !DOINIT */
2886
2887 EXT MGVTBL PL_vtbl_sv;
2888 EXT MGVTBL PL_vtbl_env;
2889 EXT MGVTBL PL_vtbl_envelem;
2890 EXT MGVTBL PL_vtbl_sig;
2891 EXT MGVTBL PL_vtbl_sigelem;
2892 EXT MGVTBL PL_vtbl_pack;
2893 EXT MGVTBL PL_vtbl_packelem;
2894 EXT MGVTBL PL_vtbl_dbline;
2895 EXT MGVTBL PL_vtbl_isa;
2896 EXT MGVTBL PL_vtbl_isaelem;
2897 EXT MGVTBL PL_vtbl_arylen;
2898 EXT MGVTBL PL_vtbl_glob;
2899 EXT MGVTBL PL_vtbl_mglob;
2900 EXT MGVTBL PL_vtbl_nkeys;
2901 EXT MGVTBL PL_vtbl_taint;
2902 EXT MGVTBL PL_vtbl_substr;
2903 EXT MGVTBL PL_vtbl_vec;
2904 EXT MGVTBL PL_vtbl_pos;
2905 EXT MGVTBL PL_vtbl_bm;
2906 EXT MGVTBL PL_vtbl_fm;
2907 EXT MGVTBL PL_vtbl_uvar;
2908
2909 #ifdef USE_THREADS
2910 EXT MGVTBL PL_vtbl_mutex;
2911 #endif /* USE_THREADS */
2912
2913 EXT MGVTBL PL_vtbl_defelem;
2914 EXT MGVTBL PL_vtbl_regexp;
2915 EXT MGVTBL PL_vtbl_regdata;
2916 EXT MGVTBL PL_vtbl_regdatum;
2917
2918 #ifdef USE_LOCALE_COLLATE
2919 EXT MGVTBL PL_vtbl_collxfrm;
2920 #endif
2921
2922 EXT MGVTBL PL_vtbl_amagic;
2923 EXT MGVTBL PL_vtbl_amagicelem;
2924
2925 EXT MGVTBL PL_vtbl_backref;
2926
2927 #endif /* !DOINIT */
2928
2929 enum {
2930   fallback_amg,        abs_amg,
2931   bool__amg,   nomethod_amg,
2932   string_amg,  numer_amg,
2933   add_amg,     add_ass_amg,
2934   subtr_amg,   subtr_ass_amg,
2935   mult_amg,    mult_ass_amg,
2936   div_amg,     div_ass_amg,
2937   modulo_amg,  modulo_ass_amg,
2938   pow_amg,     pow_ass_amg,
2939   lshift_amg,  lshift_ass_amg,
2940   rshift_amg,  rshift_ass_amg,
2941   band_amg,    band_ass_amg,
2942   bor_amg,     bor_ass_amg,
2943   bxor_amg,    bxor_ass_amg,
2944   lt_amg,      le_amg,
2945   gt_amg,      ge_amg,
2946   eq_amg,      ne_amg,
2947   ncmp_amg,    scmp_amg,
2948   slt_amg,     sle_amg,
2949   sgt_amg,     sge_amg,
2950   seq_amg,     sne_amg,
2951   not_amg,     compl_amg,
2952   inc_amg,     dec_amg,
2953   atan2_amg,   cos_amg,
2954   sin_amg,     exp_amg,
2955   log_amg,     sqrt_amg,
2956   repeat_amg,   repeat_ass_amg,
2957   concat_amg,  concat_ass_amg,
2958   copy_amg,    neg_amg,
2959   to_sv_amg,   to_av_amg,
2960   to_hv_amg,   to_gv_amg,
2961   to_cv_amg,   iter_amg,    
2962   max_amg_code
2963   /* Do not leave a trailing comma here.  C9X allows it, C89 doesn't. */
2964 };
2965
2966 #define NofAMmeth max_amg_code
2967
2968 #ifdef DOINIT
2969 EXTCONST char * PL_AMG_names[NofAMmeth] = {
2970   "fallback",   "abs",                  /* "fallback" should be the first. */
2971   "bool",       "nomethod",
2972   "\"\"",       "0+",
2973   "+",          "+=",
2974   "-",          "-=",
2975   "*",          "*=",
2976   "/",          "/=",
2977   "%",          "%=",
2978   "**",         "**=",
2979   "<<",         "<<=",
2980   ">>",         ">>=",
2981   "&",          "&=",
2982   "|",          "|=",
2983   "^",          "^=",
2984   "<",          "<=",
2985   ">",          ">=",
2986   "==",         "!=",
2987   "<=>",        "cmp",
2988   "lt",         "le",
2989   "gt",         "ge",
2990   "eq",         "ne",
2991   "!",          "~",
2992   "++",         "--",
2993   "atan2",      "cos",
2994   "sin",        "exp",
2995   "log",        "sqrt",
2996   "x",          "x=",
2997   ".",          ".=",
2998   "=",          "neg",
2999   "${}",        "@{}",
3000   "%{}",        "*{}",
3001   "&{}",        "<>",
3002 };
3003 #else
3004 EXTCONST char * PL_AMG_names[NofAMmeth];
3005 #endif /* def INITAMAGIC */
3006
3007 END_EXTERN_C
3008
3009 struct am_table {
3010   long was_ok_sub;
3011   long was_ok_am;
3012   U32 flags;
3013   CV* table[NofAMmeth];
3014   long fallback;
3015 };
3016 struct am_table_short {
3017   long was_ok_sub;
3018   long was_ok_am;
3019   U32 flags;
3020 };
3021 typedef struct am_table AMT;
3022 typedef struct am_table_short AMTS;
3023
3024 #define AMGfallNEVER    1
3025 #define AMGfallNO       2
3026 #define AMGfallYES      3
3027
3028 #define AMTf_AMAGIC             1
3029 #define AMT_AMAGIC(amt)         ((amt)->flags & AMTf_AMAGIC)
3030 #define AMT_AMAGIC_on(amt)      ((amt)->flags |= AMTf_AMAGIC)
3031 #define AMT_AMAGIC_off(amt)     ((amt)->flags &= ~AMTf_AMAGIC)
3032
3033
3034 /*
3035  * some compilers like to redefine cos et alia as faster
3036  * (and less accurate?) versions called F_cos et cetera (Quidquid
3037  * latine dictum sit, altum viditur.)  This trick collides with
3038  * the Perl overloading (amg).  The following #defines fool both.
3039  */
3040
3041 #ifdef _FASTMATH
3042 #   ifdef atan2
3043 #       define F_atan2_amg  atan2_amg
3044 #   endif
3045 #   ifdef cos
3046 #       define F_cos_amg    cos_amg
3047 #   endif
3048 #   ifdef exp
3049 #       define F_exp_amg    exp_amg
3050 #   endif
3051 #   ifdef log
3052 #       define F_log_amg    log_amg
3053 #   endif
3054 #   ifdef pow
3055 #       define F_pow_amg    pow_amg
3056 #   endif
3057 #   ifdef sin
3058 #       define F_sin_amg    sin_amg
3059 #   endif
3060 #   ifdef sqrt
3061 #       define F_sqrt_amg   sqrt_amg
3062 #   endif
3063 #endif /* _FASTMATH */
3064
3065 #define PERLDB_ALL              (PERLDBf_SUB    | PERLDBf_LINE  |       \
3066                                  PERLDBf_NOOPT  | PERLDBf_INTER |       \
3067                                  PERLDBf_SUBLINE| PERLDBf_SINGLE|       \
3068                                  PERLDBf_NAMEEVAL| PERLDBf_NAMEANON)
3069                                         /* No _NONAME, _GOTO */
3070 #define PERLDBf_SUB             0x01    /* Debug sub enter/exit */
3071 #define PERLDBf_LINE            0x02    /* Keep line # */
3072 #define PERLDBf_NOOPT           0x04    /* Switch off optimizations */
3073 #define PERLDBf_INTER           0x08    /* Preserve more data for
3074                                            later inspections  */
3075 #define PERLDBf_SUBLINE         0x10    /* Keep subr source lines */
3076 #define PERLDBf_SINGLE          0x20    /* Start with single-step on */
3077 #define PERLDBf_NONAME          0x40    /* For _SUB: no name of the subr */
3078 #define PERLDBf_GOTO            0x80    /* Report goto: call DB::goto */
3079 #define PERLDBf_NAMEEVAL        0x100   /* Informative names for evals */
3080 #define PERLDBf_NAMEANON        0x200   /* Informative names for anon subs */
3081
3082 #define PERLDB_SUB      (PL_perldb && (PL_perldb & PERLDBf_SUB))
3083 #define PERLDB_LINE     (PL_perldb && (PL_perldb & PERLDBf_LINE))
3084 #define PERLDB_NOOPT    (PL_perldb && (PL_perldb & PERLDBf_NOOPT))
3085 #define PERLDB_INTER    (PL_perldb && (PL_perldb & PERLDBf_INTER))
3086 #define PERLDB_SUBLINE  (PL_perldb && (PL_perldb & PERLDBf_SUBLINE))
3087 #define PERLDB_SINGLE   (PL_perldb && (PL_perldb & PERLDBf_SINGLE))
3088 #define PERLDB_SUB_NN   (PL_perldb && (PL_perldb & (PERLDBf_NONAME)))
3089 #define PERLDB_GOTO     (PL_perldb && (PL_perldb & PERLDBf_GOTO))
3090 #define PERLDB_NAMEEVAL (PL_perldb && (PL_perldb & PERLDBf_NAMEEVAL))
3091 #define PERLDB_NAMEANON (PL_perldb && (PL_perldb & PERLDBf_NAMEANON))
3092
3093
3094 #ifdef USE_LOCALE_NUMERIC
3095
3096 #define SET_NUMERIC_STANDARD() \
3097     STMT_START {                                \
3098         if (! PL_numeric_standard)              \
3099             set_numeric_standard();             \
3100     } STMT_END
3101
3102 #define SET_NUMERIC_LOCAL() \
3103     STMT_START {                                \
3104         if (! PL_numeric_local)                 \
3105             set_numeric_local();                \
3106     } STMT_END
3107
3108 #define IS_NUMERIC_RADIX(c)     \
3109         ((PL_hints & HINT_LOCALE) && \
3110           PL_numeric_radix && (c) == PL_numeric_radix)
3111
3112 #define RESTORE_NUMERIC_LOCAL()         if ((PL_hints & HINT_LOCALE) && PL_numeric_standard) SET_NUMERIC_LOCAL()
3113 #define RESTORE_NUMERIC_STANDARD()      if ((PL_hints & HINT_LOCALE) && PL_numeric_local) SET_NUMERIC_STANDARD()
3114 #define Atof                            my_atof
3115
3116 #else /* !USE_LOCALE_NUMERIC */
3117
3118 #define SET_NUMERIC_STANDARD()          /**/
3119 #define SET_NUMERIC_LOCAL()             /**/
3120 #define IS_NUMERIC_RADIX(c)             (0)
3121 #define RESTORE_NUMERIC_LOCAL()         /**/
3122 #define RESTORE_NUMERIC_STANDARD()      /**/
3123 #define Atof                            Perl_atof
3124
3125 #endif /* !USE_LOCALE_NUMERIC */
3126
3127 #if !defined(Strtol) && defined(USE_64_BIT_INT) && defined(IV_IS_QUAD) && QUADKIND == QUAD_IS_LONG_LONG
3128 #    ifdef __hpux
3129 #        define strtoll __strtoll       /* secret handshake */
3130 #    endif
3131 #   if !defined(Strtol) && defined(HAS_STRTOLL)
3132 #       define Strtol   strtoll
3133 #   endif
3134 /* is there atoq() anywhere? */
3135 #endif
3136 #if !defined(Strtol) && defined(HAS_STRTOL)
3137 #   define Strtol       strtol
3138 #endif
3139 #ifndef Atol
3140 /* It would be more fashionable to use Strtol() to define atol()
3141  * (as is done for Atoul(), see below) but for backward compatibility
3142  * we just assume atol(). */
3143 #   if defined(USE_64_BIT_INT) && defined(IV_IS_QUAD) && QUADKIND == QUAD_IS_LONG_LONG && defined(HAS_ATOLL)
3144 #       define Atol     atoll
3145 #   else
3146 #       define Atol     atol
3147 #   endif
3148 #endif
3149
3150 #if !defined(Strtoul) && defined(USE_64_BIT_INT) && defined(UV_IS_QUAD) && QUADKIND == QUAD_IS_LONG_LONG
3151 #    ifdef __hpux
3152 #        define strtoull __strtoull     /* secret handshake */
3153 #    endif
3154 #    if !defined(Strtoul) && defined(HAS_STRTOULL)
3155 #       define Strtoul  strtoull
3156 #    endif
3157 #    if !defined(Strtoul) && defined(HAS_STRTOUQ)
3158 #       define Strtoul  strtouq
3159 #    endif
3160 /* is there atouq() anywhere? */
3161 #endif
3162 #if !defined(Strtoul) && defined(HAS_STRTOUL)
3163 #   define Strtoul      strtoul
3164 #endif
3165 #ifndef Atoul
3166 #   define Atoul(s)     Strtoul(s, (char **)NULL, 10)
3167 #endif
3168
3169 #if !defined(PERLIO_IS_STDIO) && defined(HASATTRIBUTE)
3170 /* 
3171  * Now we have __attribute__ out of the way 
3172  * Remap printf 
3173  */
3174 #undef printf
3175 #define printf PerlIO_stdoutf
3176 #endif
3177
3178 /* if these never got defined, they need defaults */
3179 #ifndef PERL_SET_CONTEXT
3180 #  define PERL_SET_CONTEXT(i)           PERL_SET_INTERP(i)
3181 #endif
3182
3183 #ifndef PERL_GET_CONTEXT
3184 #  define PERL_GET_CONTEXT              PERL_GET_INTERP
3185 #endif
3186
3187 #ifndef PERL_GET_THX
3188 #  define PERL_GET_THX                  ((void*)NULL)
3189 #endif
3190
3191 #ifndef PERL_SET_THX
3192 #  define PERL_SET_THX(t)               NOOP
3193 #endif
3194
3195 #ifndef PERL_SCRIPT_MODE
3196 #define PERL_SCRIPT_MODE "r"
3197 #endif
3198
3199 /*
3200  * Some operating systems are stingy with stack allocation,
3201  * so perl may have to guard against stack overflow.
3202  */
3203 #ifndef PERL_STACK_OVERFLOW_CHECK
3204 #define PERL_STACK_OVERFLOW_CHECK()  NOOP
3205 #endif
3206
3207 /*
3208  * Some nonpreemptive operating systems find it convenient to
3209  * check for asynchronous conditions after each op execution.
3210  * Keep this check simple, or it may slow down execution
3211  * massively.
3212  */
3213 #ifndef PERL_ASYNC_CHECK
3214 #define PERL_ASYNC_CHECK()  NOOP
3215 #endif
3216
3217 /*
3218  * On some operating systems, a memory allocation may succeed,
3219  * but put the process too close to the system's comfort limit.
3220  * In this case, PERL_ALLOC_CHECK frees the pointer and sets
3221  * it to NULL.
3222  */
3223 #ifndef PERL_ALLOC_CHECK
3224 #define PERL_ALLOC_CHECK(p)  NOOP
3225 #endif
3226
3227 /*
3228  * nice_chunk and nice_chunk size need to be set
3229  * and queried under the protection of sv_mutex
3230  */
3231 #define offer_nice_chunk(chunk, chunk_size) do {        \
3232         LOCK_SV_MUTEX;                                  \
3233         if (!PL_nice_chunk) {                           \
3234             PL_nice_chunk = (char*)(chunk);             \
3235             PL_nice_chunk_size = (chunk_size);          \
3236         }                                               \
3237         else {                                          \
3238             Safefree(chunk);                            \
3239         }                                               \
3240         UNLOCK_SV_MUTEX;                                \
3241     } while (0)
3242
3243 #ifdef HAS_SEM
3244 #   include <sys/ipc.h>
3245 #   include <sys/sem.h>
3246 #   ifndef HAS_UNION_SEMUN      /* Provide the union semun. */
3247     union semun {
3248         int             val;
3249         struct semid_ds *buf;
3250         unsigned short  *array;
3251     };
3252 #   endif
3253 #   ifdef USE_SEMCTL_SEMUN
3254 #       ifdef IRIX32_SEMUN_BROKEN_BY_GCC
3255             union gccbug_semun {
3256                 int             val;
3257                 struct semid_ds *buf;
3258                 unsigned short  *array;
3259                 char            __dummy[5];
3260             };
3261 #           define semun gccbug_semun
3262 #       endif
3263 #       define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun)
3264 #   else
3265 #       ifdef USE_SEMCTL_SEMID_DS
3266 #           ifdef EXTRA_F_IN_SEMUN_BUF
3267 #               define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun.buff)
3268 #           else
3269 #               define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun.buf)
3270 #           endif
3271 #       endif
3272 #   endif
3273 #endif
3274
3275 #ifdef I_FCNTL
3276 #  include <fcntl.h>
3277 #endif
3278
3279 #ifdef I_SYS_FILE
3280 #  include <sys/file.h>
3281 #endif
3282
3283 #ifndef O_RDONLY
3284 /* Assume UNIX defaults */
3285 #    define O_RDONLY    0000
3286 #    define O_WRONLY    0001
3287 #    define O_RDWR      0002
3288 #    define O_CREAT     0100
3289 #endif
3290
3291 #ifndef O_BINARY
3292 #  define O_BINARY 0
3293 #endif
3294
3295 #ifndef O_TEXT
3296 #  define O_TEXT 0
3297 #endif
3298
3299 #ifdef IAMSUID
3300
3301 #ifdef I_SYS_STATVFS
3302 #   include <sys/statvfs.h>     /* for f?statvfs() */
3303 #endif
3304 #ifdef I_SYS_MOUNT
3305 #   include <sys/mount.h>       /* for *BSD f?statfs() */
3306 #endif
3307 #ifdef I_MNTENT
3308 #   include <mntent.h>          /* for getmntent() */
3309 #endif
3310 #ifdef I_SYS_STATFS
3311 #   include <sys/statfs.h>      /* for some statfs() */
3312 #endif
3313 #ifdef I_SYS_VFS
3314 #  ifdef __sgi
3315 #    define sv IRIX_sv          /* kludge: IRIX has an sv of its own */
3316 #  endif
3317 #    include <sys/vfs.h>        /* for some statfs() */
3318 #  ifdef __sgi
3319 #    undef IRIX_sv
3320 #  endif
3321 #endif
3322 #ifdef I_USTAT
3323 #   include <ustat.h>           /* for ustat() */
3324 #endif
3325
3326 #if !defined(PERL_MOUNT_NOSUID) && defined(MOUNT_NOSUID)
3327 #    define PERL_MOUNT_NOSUID MOUNT_NOSUID
3328 #endif
3329 #if !defined(PERL_MOUNT_NOSUID) && defined(MNT_NOSUID)
3330 #    define PERL_MOUNT_NOSUID MNT_NOSUID
3331 #endif
3332 #if !defined(PERL_MOUNT_NOSUID) && defined(MS_NOSUID)
3333 #   define PERL_MOUNT_NOSUID MS_NOSUID
3334 #endif
3335 #if !defined(PERL_MOUNT_NOSUID) && defined(M_NOSUID)
3336 #   define PERL_MOUNT_NOSUID M_NOSUID
3337 #endif
3338
3339 #endif /* IAMSUID */
3340
3341 /* and finally... */
3342 #define PERL_PATCHLEVEL_H_IMPLICIT
3343 #include "patchlevel.h"
3344 #undef PERL_PATCHLEVEL_H_IMPLICIT
3345
3346 /* Mention
3347    
3348    NV_PRESERVES_UV
3349
3350    HAS_ICONV
3351    I_ICONV
3352
3353    HAS_MKSTEMP
3354    HAS_MKSTEMPS
3355    HAS_MKDTEMP
3356
3357    HAS_GETCWD
3358
3359    HAS_MMAP
3360    HAS_MPROTECT
3361    HAS_MSYNC
3362    HAS_MADVISE
3363    HAS_MUNMAP
3364    I_SYSMMAN
3365    Mmap_t
3366
3367    so that Configure picks them up. */
3368
3369 #endif /* Include guard */