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