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