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