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