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