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