Remove runlevel. It was used to count how many runops() calls
[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 #define OVERLOAD
12
13 #ifdef PERL_FOR_X2P
14 /*
15  * This file is being used for x2p stuff. 
16  * Above symbol is defined via -D in 'x2p/Makefile.SH'
17  * Decouple x2p stuff from some of perls more extreme eccentricities. 
18  */
19 #undef EMBED
20 #undef NO_EMBED
21 #define NO_EMBED
22 #undef MULTIPLICITY
23 #undef USE_STDIO
24 #define USE_STDIO
25 #endif /* PERL_FOR_X2P */
26
27 #define VOIDUSED 1
28 #include "config.h"
29
30 #include "embed.h"
31
32 #ifdef __cplusplus
33 #  define START_EXTERN_C extern "C" {
34 #  define END_EXTERN_C }
35 #  define EXTERN_C extern "C"
36 #else
37 #  define START_EXTERN_C 
38 #  define END_EXTERN_C 
39 #  define EXTERN_C
40 #endif
41
42 #if defined(USE_THREADS) /* && !defined(PERL_CORE) && !defined(PERLDLL) */
43 #ifndef CRIPPLED_CC
44 #define CRIPPLED_CC
45 #endif
46 #endif
47
48 #ifdef OP_IN_REGISTER
49 #  ifdef __GNUC__
50 #    define stringify_immed(s) #s
51 #    define stringify(s) stringify_immed(s)
52 register struct op *op asm(stringify(OP_IN_REGISTER));
53 #  endif
54 #endif
55
56 /*
57  * STMT_START { statements; } STMT_END;
58  * can be used as a single statement, as in
59  * if (x) STMT_START { ... } STMT_END; else ...
60  *
61  * Trying to select a version that gives no warnings...
62  */
63 #if !(defined(STMT_START) && defined(STMT_END))
64 # if defined(__GNUC__) && !defined(__STRICT_ANSI__) && !defined(__cplusplus)
65 #   define STMT_START   (void)( /* gcc supports ``({ STATEMENTS; })'' */
66 #   define STMT_END     )
67 # else
68    /* Now which other defined()s do we need here ??? */
69 #  if (VOIDFLAGS) && (defined(sun) || defined(__sun__))
70 #   define STMT_START   if (1)
71 #   define STMT_END     else (void)0
72 #  else
73 #   define STMT_START   do
74 #   define STMT_END     while (0)
75 #  endif
76 # endif
77 #endif
78
79 #define NOOP (void)0
80
81 #define WITH_THR(s) do { dTHR; s; } while (0)
82
83 /*
84  * SOFT_CAST can be used for args to prototyped functions to retain some
85  * type checking; it only casts if the compiler does not know prototypes.
86  */
87 #if defined(CAN_PROTOTYPE) && defined(DEBUGGING_COMPILE)
88 #define SOFT_CAST(type) 
89 #else
90 #define SOFT_CAST(type) (type)
91 #endif
92
93 #ifndef BYTEORDER
94 #   define BYTEORDER 0x1234
95 #endif
96
97 /* Overall memory policy? */
98 #ifndef CONSERVATIVE
99 #   define LIBERAL 1
100 #endif
101
102 /*
103  * The following contortions are brought to you on behalf of all the
104  * standards, semi-standards, de facto standards, not-so-de-facto standards
105  * of the world, as well as all the other botches anyone ever thought of.
106  * The basic theory is that if we work hard enough here, the rest of the
107  * code can be a lot prettier.  Well, so much for theory.  Sorry, Henry...
108  */
109
110 /* define this once if either system, instead of cluttering up the src */
111 #if defined(MSDOS) || defined(atarist) || defined(WIN32)
112 #define DOSISH 1
113 #endif
114
115 #if defined(__STDC__) || defined(vax11c) || defined(_AIX) || defined(__stdc__) || defined(__cplusplus)
116 # define STANDARD_C 1
117 #endif
118
119 #if defined(__cplusplus) || defined(WIN32)
120 # define DONT_DECLARE_STD 1
121 #endif
122
123 #if defined(HASVOLATILE) || defined(STANDARD_C)
124 #   ifdef __cplusplus
125 #       define VOL              // to temporarily suppress warnings
126 #   else
127 #       define VOL volatile
128 #   endif
129 #else
130 #   define VOL
131 #endif
132
133 #define TAINT           (tainted = TRUE)
134 #define TAINT_NOT       (tainted = FALSE)
135 #define TAINT_IF(c)     if (c) { tainted = TRUE; }
136 #define TAINT_ENV()     if (tainting) { taint_env(); }
137 #define TAINT_PROPER(s) if (tainting) { taint_proper(no_security, s); }
138
139 /* XXX All process group stuff is handled in pp_sys.c.  Should these 
140    defines move there?  If so, I could simplify this a lot. --AD  9/96.
141 */
142 /* Process group stuff changed from traditional BSD to POSIX.
143    perlfunc.pod documents the traditional BSD-style syntax, so we'll
144    try to preserve that, if possible.
145 */
146 #ifdef HAS_SETPGID
147 #  define BSD_SETPGRP(pid, pgrp)        setpgid((pid), (pgrp))
148 #else
149 #  if defined(HAS_SETPGRP) && defined(USE_BSD_SETPGRP)
150 #    define BSD_SETPGRP(pid, pgrp)      setpgrp((pid), (pgrp))
151 #  else
152 #    ifdef HAS_SETPGRP2  /* DG/UX */
153 #      define BSD_SETPGRP(pid, pgrp)    setpgrp2((pid), (pgrp))
154 #    endif
155 #  endif
156 #endif
157 #if defined(BSD_SETPGRP) && !defined(HAS_SETPGRP)
158 #  define HAS_SETPGRP  /* Well, effectively it does . . . */
159 #endif
160
161 /* getpgid isn't POSIX, but at least Solaris and Linux have it, and it makes
162     our life easier :-) so we'll try it.
163 */
164 #ifdef HAS_GETPGID
165 #  define BSD_GETPGRP(pid)              getpgid((pid))
166 #else
167 #  if defined(HAS_GETPGRP) && defined(USE_BSD_GETPGRP)
168 #    define BSD_GETPGRP(pid)            getpgrp((pid))
169 #  else
170 #    ifdef HAS_GETPGRP2  /* DG/UX */
171 #      define BSD_GETPGRP(pid)          getpgrp2((pid))
172 #    endif
173 #  endif
174 #endif
175 #if defined(BSD_GETPGRP) && !defined(HAS_GETPGRP)
176 #  define HAS_GETPGRP  /* Well, effectively it does . . . */
177 #endif
178
179 /* These are not exact synonyms, since setpgrp() and getpgrp() may 
180    have different behaviors, but perl.h used to define USE_BSDPGRP
181    (prior to 5.003_05) so some extension might depend on it.
182 */
183 #if defined(USE_BSD_SETPGRP) || defined(USE_BSD_GETPGRP)
184 #  ifndef USE_BSDPGRP
185 #    define USE_BSDPGRP
186 #  endif
187 #endif
188
189 #ifndef _TYPES_         /* If types.h defines this it's easy. */
190 #   ifndef major                /* Does everyone's types.h define this? */
191 #       include <sys/types.h>
192 #   endif
193 #endif
194
195 #ifdef __cplusplus
196 #  ifndef I_STDARG
197 #    define I_STDARG 1
198 #  endif
199 #endif
200
201 #ifdef I_STDARG
202 #  include <stdarg.h>
203 #else
204 #  ifdef I_VARARGS
205 #    include <varargs.h>
206 #  endif
207 #endif
208
209 #include "perlio.h"
210
211 #ifdef USE_NEXT_CTYPE
212
213 #if NX_CURRENT_COMPILER_RELEASE >= 400
214 #include <objc/NXCType.h>
215 #else /*  NX_CURRENT_COMPILER_RELEASE < 400 */
216 #include <appkit/NXCType.h>
217 #endif /*  NX_CURRENT_COMPILER_RELEASE >= 400 */
218
219 #else /* !USE_NEXT_CTYPE */
220 #include <ctype.h>
221 #endif /* USE_NEXT_CTYPE */
222
223 #ifdef METHOD   /* Defined by OSF/1 v3.0 by ctype.h */
224 #undef METHOD
225 #endif
226
227 #ifdef I_LOCALE
228 #   include <locale.h>
229 #endif
230
231 #if !defined(NO_LOCALE) && defined(HAS_SETLOCALE)
232 #   define USE_LOCALE
233 #   if !defined(NO_LOCALE_COLLATE) && defined(LC_COLLATE) \
234        && defined(HAS_STRXFRM)
235 #       define USE_LOCALE_COLLATE
236 #   endif
237 #   if !defined(NO_LOCALE_CTYPE) && defined(LC_CTYPE)
238 #       define USE_LOCALE_CTYPE
239 #   endif
240 #   if !defined(NO_LOCALE_NUMERIC) && defined(LC_NUMERIC)
241 #       define USE_LOCALE_NUMERIC
242 #   endif
243 #endif /* !NO_LOCALE && HAS_SETLOCALE */
244
245 #include <setjmp.h>
246
247 #ifdef I_SYS_PARAM
248 #   ifdef PARAM_NEEDS_TYPES
249 #       include <sys/types.h>
250 #   endif
251 #   include <sys/param.h>
252 #endif
253
254
255 /* Use all the "standard" definitions? */
256 #if defined(STANDARD_C) && defined(I_STDLIB)
257 #   include <stdlib.h>
258 #endif
259
260 /* This comes after <stdlib.h> so we don't try to change the standard
261  * library prototypes; we'll use our own in proto.h instead. */
262
263 #ifdef MYMALLOC
264
265 #   ifdef HIDEMYMALLOC
266 #       define malloc  Mymalloc
267 #       define calloc  Mycalloc
268 #       define realloc Myremalloc
269 #       define free    Myfree
270 #   endif
271 #   ifdef EMBEDMYMALLOC
272 #       define malloc  Perl_malloc
273 #       define calloc  Perl_calloc
274 #       define realloc Perl_realloc
275 #       define free    Perl_free
276 #   endif
277
278 #   undef safemalloc
279 #   undef safecalloc
280 #   undef saferealloc
281 #   undef safefree
282 #   define safemalloc  malloc
283 #   define safecalloc  calloc
284 #   define saferealloc realloc
285 #   define safefree    free
286
287 #endif /* MYMALLOC */
288
289 #define MEM_SIZE Size_t
290
291 #if defined(STANDARD_C) && defined(I_STDDEF)
292 #   include <stddef.h>
293 #   define STRUCT_OFFSET(s,m)  offsetof(s,m)
294 #else
295 #   define STRUCT_OFFSET(s,m)  (Size_t)(&(((s *)0)->m))
296 #endif
297
298 #if defined(I_STRING) || defined(__cplusplus)
299 #   include <string.h>
300 #else
301 #   include <strings.h>
302 #endif
303
304 #if !defined(HAS_STRCHR) && defined(HAS_INDEX) && !defined(strchr)
305 #define strchr index
306 #define strrchr rindex
307 #endif
308
309 #ifdef I_MEMORY
310 #  include <memory.h>
311 #endif
312
313 #ifdef HAS_MEMCPY
314 #  if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY)
315 #    ifndef memcpy
316         extern char * memcpy _((char*, char*, int));
317 #    endif
318 #  endif
319 #else
320 #   ifndef memcpy
321 #       ifdef HAS_BCOPY
322 #           define memcpy(d,s,l) bcopy(s,d,l)
323 #       else
324 #           define memcpy(d,s,l) my_bcopy(s,d,l)
325 #       endif
326 #   endif
327 #endif /* HAS_MEMCPY */
328
329 #ifdef HAS_MEMSET
330 #  if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY)
331 #    ifndef memset
332         extern char *memset _((char*, int, int));
333 #    endif
334 #  endif
335 #else
336 #  define memset(d,c,l) my_memset(d,c,l)
337 #endif /* HAS_MEMSET */
338
339 #if !defined(HAS_MEMMOVE) && !defined(memmove)
340 #   if defined(HAS_BCOPY) && defined(HAS_SAFE_BCOPY)
341 #       define memmove(d,s,l) bcopy(s,d,l)
342 #   else
343 #       if defined(HAS_MEMCPY) && defined(HAS_SAFE_MEMCPY)
344 #           define memmove(d,s,l) memcpy(d,s,l)
345 #       else
346 #           define memmove(d,s,l) my_bcopy(s,d,l)
347 #       endif
348 #   endif
349 #endif
350
351 #if defined(mips) && defined(ultrix) && !defined(__STDC__)
352 #   undef HAS_MEMCMP
353 #endif
354
355 #if defined(HAS_MEMCMP) && defined(HAS_SANE_MEMCMP)
356 #  if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY)
357 #    ifndef memcmp
358         extern int memcmp _((char*, char*, int));
359 #    endif
360 #  endif
361 #  ifdef BUGGY_MSC
362   #  pragma function(memcmp)
363 #  endif
364 #else
365 #   ifndef memcmp
366 #       define memcmp   my_memcmp
367 #   endif
368 #endif /* HAS_MEMCMP && HAS_SANE_MEMCMP */
369
370 #ifndef memzero
371 #   ifdef HAS_MEMSET
372 #       define memzero(d,l) memset(d,0,l)
373 #   else
374 #       ifdef HAS_BZERO
375 #           define memzero(d,l) bzero(d,l)
376 #       else
377 #           define memzero(d,l) my_bzero(d,l)
378 #       endif
379 #   endif
380 #endif
381
382 #ifndef HAS_BCMP
383 #   ifndef bcmp
384 #       define bcmp(s1,s2,l) memcmp(s1,s2,l)
385 #   endif
386 #endif /* !HAS_BCMP */
387
388 #ifdef I_NETINET_IN
389 #   include <netinet/in.h>
390 #endif
391
392 #if defined(SF_APPEND) && defined(USE_SFIO) && defined(I_SFIO)
393 /* <sfio.h> defines SF_APPEND and <sys/stat.h> might define SF_APPEND
394  * (the neo-BSD seem to do this).  */
395 #   undef SF_APPEND
396 #endif
397
398 #ifdef I_SYS_STAT
399 #   include <sys/stat.h>
400 #endif
401
402 /* The stat macros for Amdahl UTS, Unisoft System V/88 (and derivatives
403    like UTekV) are broken, sometimes giving false positives.  Undefine
404    them here and let the code below set them to proper values.
405
406    The ghs macro stands for GreenHills Software C-1.8.5 which
407    is the C compiler for sysV88 and the various derivatives.
408    This header file bug is corrected in gcc-2.5.8 and later versions.
409    --Kaveh Ghazi (ghazi@noc.rutgers.edu) 10/3/94.  */
410
411 #if defined(uts) || (defined(m88k) && defined(ghs))
412 #   undef S_ISDIR
413 #   undef S_ISCHR
414 #   undef S_ISBLK
415 #   undef S_ISREG
416 #   undef S_ISFIFO
417 #   undef S_ISLNK
418 #endif
419
420 #ifdef I_TIME
421 #   include <time.h>
422 #endif
423
424 #ifdef I_SYS_TIME
425 #   ifdef I_SYS_TIME_KERNEL
426 #       define KERNEL
427 #   endif
428 #   include <sys/time.h>
429 #   ifdef I_SYS_TIME_KERNEL
430 #       undef KERNEL
431 #   endif
432 #endif
433
434 #if defined(HAS_TIMES) && defined(I_SYS_TIMES)
435 #    include <sys/times.h>
436 #endif
437
438 #if defined(HAS_STRERROR) && (!defined(HAS_MKDIR) || !defined(HAS_RMDIR))
439 #   undef HAS_STRERROR
440 #endif
441
442 #ifndef HAS_MKFIFO
443 #  ifndef mkfifo
444 #    define mkfifo(path, mode) (mknod((path), (mode) | S_IFIFO, 0))
445 #  endif
446 #endif /* !HAS_MKFIFO */
447
448 #include <errno.h>
449 #ifdef HAS_SOCKET
450 #   ifdef I_NET_ERRNO
451 #     include <net/errno.h>
452 #   endif
453 #endif
454
455 #ifdef VMS
456 #   define SETERRNO(errcode,vmserrcode) \
457         STMT_START {                    \
458             set_errno(errcode);         \
459             set_vaxc_errno(vmserrcode); \
460         } STMT_END
461 #else
462 #   define SETERRNO(errcode,vmserrcode) errno = (errcode)
463 #endif
464
465 #ifndef errno
466         extern int errno;     /* ANSI allows errno to be an lvalue expr */
467 #endif
468
469 #ifdef HAS_STRERROR
470 #       ifdef VMS
471         char *strerror _((int,...));
472 #       else
473 #ifndef DONT_DECLARE_STD
474         char *strerror _((int));
475 #endif
476 #       endif
477 #       ifndef Strerror
478 #           define Strerror strerror
479 #       endif
480 #else
481 #    ifdef HAS_SYS_ERRLIST
482         extern int sys_nerr;
483         extern char *sys_errlist[];
484 #       ifndef Strerror
485 #           define Strerror(e) \
486                 ((e) < 0 || (e) >= sys_nerr ? "(unknown)" : sys_errlist[e])
487 #       endif
488 #   endif
489 #endif
490
491 #ifdef I_SYS_IOCTL
492 #   ifndef _IOCTL_
493 #       include <sys/ioctl.h>
494 #   endif
495 #endif
496
497 #if defined(mc300) || defined(mc500) || defined(mc700) || defined(mc6000)
498 #   ifdef HAS_SOCKETPAIR
499 #       undef HAS_SOCKETPAIR
500 #   endif
501 #   ifdef I_NDBM
502 #       undef I_NDBM
503 #   endif
504 #endif
505
506 #if INTSIZE == 2
507 #   define htoni htons
508 #   define ntohi ntohs
509 #else
510 #   define htoni htonl
511 #   define ntohi ntohl
512 #endif
513
514 /* Configure already sets Direntry_t */
515 #if defined(I_DIRENT)
516 #   include <dirent.h>
517 #   if defined(NeXT) && defined(I_SYS_DIR) /* NeXT needs dirent + sys/dir.h */
518 #       include <sys/dir.h>
519 #   endif
520 #else
521 #   ifdef I_SYS_NDIR
522 #       include <sys/ndir.h>
523 #   else
524 #       ifdef I_SYS_DIR
525 #           ifdef hp9000s500
526 #               include <ndir.h>        /* may be wrong in the future */
527 #           else
528 #               include <sys/dir.h>
529 #           endif
530 #       endif
531 #   endif
532 #endif
533
534 #ifdef FPUTS_BOTCH
535 /* work around botch in SunOS 4.0.1 and 4.0.2 */
536 #   ifndef fputs
537 #       define fputs(sv,fp) fprintf(fp,"%s",sv)
538 #   endif
539 #endif
540
541 /*
542  * The following gobbledygook brought to you on behalf of __STDC__.
543  * (I could just use #ifndef __STDC__, but this is more bulletproof
544  * in the face of half-implementations.)
545  */
546
547 #ifndef S_IFMT
548 #   ifdef _S_IFMT
549 #       define S_IFMT _S_IFMT
550 #   else
551 #       define S_IFMT 0170000
552 #   endif
553 #endif
554
555 #ifndef S_ISDIR
556 #   define S_ISDIR(m) ((m & S_IFMT) == S_IFDIR)
557 #endif
558
559 #ifndef S_ISCHR
560 #   define S_ISCHR(m) ((m & S_IFMT) == S_IFCHR)
561 #endif
562
563 #ifndef S_ISBLK
564 #   ifdef S_IFBLK
565 #       define S_ISBLK(m) ((m & S_IFMT) == S_IFBLK)
566 #   else
567 #       define S_ISBLK(m) (0)
568 #   endif
569 #endif
570
571 #ifndef S_ISREG
572 #   define S_ISREG(m) ((m & S_IFMT) == S_IFREG)
573 #endif
574
575 #ifndef S_ISFIFO
576 #   ifdef S_IFIFO
577 #       define S_ISFIFO(m) ((m & S_IFMT) == S_IFIFO)
578 #   else
579 #       define S_ISFIFO(m) (0)
580 #   endif
581 #endif
582
583 #ifndef S_ISLNK
584 #   ifdef _S_ISLNK
585 #       define S_ISLNK(m) _S_ISLNK(m)
586 #   else
587 #       ifdef _S_IFLNK
588 #           define S_ISLNK(m) ((m & S_IFMT) == _S_IFLNK)
589 #       else
590 #           ifdef S_IFLNK
591 #               define S_ISLNK(m) ((m & S_IFMT) == S_IFLNK)
592 #           else
593 #               define S_ISLNK(m) (0)
594 #           endif
595 #       endif
596 #   endif
597 #endif
598
599 #ifndef S_ISSOCK
600 #   ifdef _S_ISSOCK
601 #       define S_ISSOCK(m) _S_ISSOCK(m)
602 #   else
603 #       ifdef _S_IFSOCK
604 #           define S_ISSOCK(m) ((m & S_IFMT) == _S_IFSOCK)
605 #       else
606 #           ifdef S_IFSOCK
607 #               define S_ISSOCK(m) ((m & S_IFMT) == S_IFSOCK)
608 #           else
609 #               define S_ISSOCK(m) (0)
610 #           endif
611 #       endif
612 #   endif
613 #endif
614
615 #ifndef S_IRUSR
616 #   ifdef S_IREAD
617 #       define S_IRUSR S_IREAD
618 #       define S_IWUSR S_IWRITE
619 #       define S_IXUSR S_IEXEC
620 #   else
621 #       define S_IRUSR 0400
622 #       define S_IWUSR 0200
623 #       define S_IXUSR 0100
624 #   endif
625 #   define S_IRGRP (S_IRUSR>>3)
626 #   define S_IWGRP (S_IWUSR>>3)
627 #   define S_IXGRP (S_IXUSR>>3)
628 #   define S_IROTH (S_IRUSR>>6)
629 #   define S_IWOTH (S_IWUSR>>6)
630 #   define S_IXOTH (S_IXUSR>>6)
631 #endif
632
633 #ifndef S_ISUID
634 #   define S_ISUID 04000
635 #endif
636
637 #ifndef S_ISGID
638 #   define S_ISGID 02000
639 #endif
640
641 #ifdef ff_next
642 #   undef ff_next
643 #endif
644
645 #if defined(cray) || defined(gould) || defined(i860) || defined(pyr)
646 #   define SLOPPYDIVIDE
647 #endif
648
649 #ifdef UV
650 #undef UV
651 #endif
652
653 /*  XXX QUAD stuff is not currently supported on most systems.
654     Specifically, perl internals don't support long long.  Among
655     the many problems is that some compilers support long long,
656     but the underlying library functions (such as sprintf) don't.
657     Some things do work (such as quad pack/unpack on convex);
658     also some systems use long long for the fpos_t typedef.  That
659     seems to work too.
660
661     The IV type is supposed to be long enough to hold any integral
662     value or a pointer.
663     --Andy Dougherty    August 1996
664 */
665
666 #ifdef cray
667 #   define Quad_t int
668 #else
669 #   ifdef convex
670 #       define Quad_t long long
671 #   else
672 #       if BYTEORDER > 0xFFFF
673 #           define Quad_t long
674 #       endif
675 #   endif
676 #endif
677
678 #ifdef Quad_t
679 #   define HAS_QUAD
680     typedef Quad_t IV;
681     typedef unsigned Quad_t UV;
682 #   define IV_MAX PERL_QUAD_MAX
683 #   define IV_MIN PERL_QUAD_MIN
684 #   define UV_MAX PERL_UQUAD_MAX
685 #   define UV_MIN PERL_UQUAD_MIN
686 #else
687     typedef long IV;
688     typedef unsigned long UV;
689 #   define IV_MAX PERL_LONG_MAX
690 #   define IV_MIN PERL_LONG_MIN
691 #   define UV_MAX PERL_ULONG_MAX
692 #   define UV_MIN PERL_ULONG_MIN
693 #endif
694
695 /* Previously these definitions used hardcoded figures. 
696  * It is hoped these formula are more portable, although
697  * no data one way or another is presently known to me.
698  * The "PERL_" names are used because these calculated constants
699  * do not meet the ANSI requirements for LONG_MAX, etc., which
700  * need to be constants acceptable to #if - kja
701  *    define PERL_LONG_MAX        2147483647L
702  *    define PERL_LONG_MIN        (-LONG_MAX - 1)
703  *    define PERL ULONG_MAX       4294967295L
704  */
705
706 #ifdef I_LIMITS  /* Needed for cast_xxx() functions below. */
707 #  include <limits.h>
708 #else
709 #ifdef I_VALUES
710 #  include <values.h>
711 #endif
712 #endif
713
714 /*
715  * Try to figure out max and min values for the integral types.  THE CORRECT
716  * SOLUTION TO THIS MESS: ADAPT enquire.c FROM GCC INTO CONFIGURE.  The
717  * following hacks are used if neither limits.h or values.h provide them:
718  * U<TYPE>_MAX: for types >= int: ~(unsigned TYPE)0
719  *              for types <  int:  (unsigned TYPE)~(unsigned)0
720  *      The argument to ~ must be unsigned so that later signed->unsigned
721  *      conversion can't modify the value's bit pattern (e.g. -0 -> +0),
722  *      and it must not be smaller than int because ~ does integral promotion.
723  * <type>_MAX: (<type>) (U<type>_MAX >> 1)
724  * <type>_MIN: -<type>_MAX - <is_twos_complement_architecture: (3 & -1) == 3>.
725  *      The latter is a hack which happens to work on some machines but
726  *      does *not* catch any random system, or things like integer types
727  *      with NaN if that is possible.
728  *
729  * All of the types are explicitly cast to prevent accidental loss of
730  * numeric range, and in the hope that they will be less likely to confuse
731  * over-eager optimizers.
732  *
733  */
734
735 #define PERL_UCHAR_MIN ((unsigned char)0)
736
737 #ifdef UCHAR_MAX
738 #  define PERL_UCHAR_MAX ((unsigned char)UCHAR_MAX)
739 #else
740 #  ifdef MAXUCHAR
741 #    define PERL_UCHAR_MAX ((unsigned char)MAXUCHAR)
742 #  else
743 #    define PERL_UCHAR_MAX       ((unsigned char)~(unsigned)0)
744 #  endif
745 #endif
746  
747 /*
748  * CHAR_MIN and CHAR_MAX are not included here, as the (char) type may be
749  * ambiguous. It may be equivalent to (signed char) or (unsigned char)
750  * depending on local options. Until Configure detects this (or at least
751  * detects whether the "signed" keyword is available) the CHAR ranges
752  * will not be included. UCHAR functions normally.
753  *                                                           - kja
754  */
755
756 #define PERL_USHORT_MIN ((unsigned short)0)
757
758 #ifdef USHORT_MAX
759 #  define PERL_USHORT_MAX ((unsigned short)USHORT_MAX)
760 #else
761 #  ifdef MAXUSHORT
762 #    define PERL_USHORT_MAX ((unsigned short)MAXUSHORT)
763 #  else
764 #    define PERL_USHORT_MAX       ((unsigned short)~(unsigned)0)
765 #  endif
766 #endif
767
768 #ifdef SHORT_MAX
769 #  define PERL_SHORT_MAX ((short)SHORT_MAX)
770 #else
771 #  ifdef MAXSHORT    /* Often used in <values.h> */
772 #    define PERL_SHORT_MAX ((short)MAXSHORT)
773 #  else
774 #    define PERL_SHORT_MAX      ((short) (PERL_USHORT_MAX >> 1))
775 #  endif
776 #endif
777
778 #ifdef SHORT_MIN
779 #  define PERL_SHORT_MIN ((short)SHORT_MIN)
780 #else
781 #  ifdef MINSHORT
782 #    define PERL_SHORT_MIN ((short)MINSHORT)
783 #  else
784 #    define PERL_SHORT_MIN        (-PERL_SHORT_MAX - ((3 & -1) == 3))
785 #  endif
786 #endif
787
788 #ifdef UINT_MAX
789 #  define PERL_UINT_MAX ((unsigned int)UINT_MAX)
790 #else
791 #  ifdef MAXUINT
792 #    define PERL_UINT_MAX ((unsigned int)MAXUINT)
793 #  else
794 #    define PERL_UINT_MAX       (~(unsigned int)0)
795 #  endif
796 #endif
797
798 #define PERL_UINT_MIN ((unsigned int)0)
799
800 #ifdef INT_MAX
801 #  define PERL_INT_MAX ((int)INT_MAX)
802 #else
803 #  ifdef MAXINT    /* Often used in <values.h> */
804 #    define PERL_INT_MAX ((int)MAXINT)
805 #  else
806 #    define PERL_INT_MAX        ((int)(PERL_UINT_MAX >> 1))
807 #  endif
808 #endif
809
810 #ifdef INT_MIN
811 #  define PERL_INT_MIN ((int)INT_MIN)
812 #else
813 #  ifdef MININT
814 #    define PERL_INT_MIN ((int)MININT)
815 #  else
816 #    define PERL_INT_MIN        (-PERL_INT_MAX - ((3 & -1) == 3))
817 #  endif
818 #endif
819
820 #ifdef ULONG_MAX
821 #  define PERL_ULONG_MAX ((unsigned long)ULONG_MAX)
822 #else
823 #  ifdef MAXULONG
824 #    define PERL_ULONG_MAX ((unsigned long)MAXULONG)
825 #  else
826 #    define PERL_ULONG_MAX       (~(unsigned long)0)
827 #  endif
828 #endif
829
830 #define PERL_ULONG_MIN ((unsigned long)0L)
831
832 #ifdef LONG_MAX
833 #  define PERL_LONG_MAX ((long)LONG_MAX)
834 #else
835 #  ifdef MAXLONG    /* Often used in <values.h> */
836 #    define PERL_LONG_MAX ((long)MAXLONG)
837 #  else
838 #    define PERL_LONG_MAX        ((long) (PERL_ULONG_MAX >> 1))
839 #  endif
840 #endif
841
842 #ifdef LONG_MIN
843 #  define PERL_LONG_MIN ((long)LONG_MIN)
844 #else
845 #  ifdef MINLONG
846 #    define PERL_LONG_MIN ((long)MINLONG)
847 #  else
848 #    define PERL_LONG_MIN        (-PERL_LONG_MAX - ((3 & -1) == 3))
849 #  endif
850 #endif
851
852 #ifdef HAS_QUAD
853
854 #  ifdef UQUAD_MAX
855 #    define PERL_UQUAD_MAX ((UV)UQUAD_MAX)
856 #  else
857 #    define PERL_UQUAD_MAX      (~(UV)0)
858 #  endif
859
860 #  define PERL_UQUAD_MIN ((UV)0)
861
862 #  ifdef QUAD_MAX
863 #    define PERL_QUAD_MAX ((IV)QUAD_MAX)
864 #  else
865 #    define PERL_QUAD_MAX       ((IV) (PERL_UQUAD_MAX >> 1))
866 #  endif
867
868 #  ifdef QUAD_MIN
869 #    define PERL_QUAD_MIN ((IV)QUAD_MIN)
870 #  else
871 #    define PERL_QUAD_MIN       (-PERL_QUAD_MAX - ((3 & -1) == 3))
872 #  endif
873
874 #endif
875
876 /* Digital UNIX defines a typedef CONTEXT when pthreads is in use */ 
877 #if defined(__osf__)
878 #  define CONTEXT PERL_CONTEXT
879 #endif
880
881 typedef MEM_SIZE STRLEN;
882
883 typedef struct op OP;
884 typedef struct cop COP;
885 typedef struct unop UNOP;
886 typedef struct binop BINOP;
887 typedef struct listop LISTOP;
888 typedef struct logop LOGOP;
889 typedef struct condop CONDOP;
890 typedef struct pmop PMOP;
891 typedef struct svop SVOP;
892 typedef struct gvop GVOP;
893 typedef struct pvop PVOP;
894 typedef struct loop LOOP;
895
896 typedef struct Outrec Outrec;
897 typedef struct interpreter PerlInterpreter;
898 #ifndef __BORLANDC__
899 typedef struct ff FF;           /* XXX not defined anywhere, should go? */
900 #endif
901 typedef struct sv SV;
902 typedef struct av AV;
903 typedef struct hv HV;
904 typedef struct cv CV;
905 typedef struct regexp REGEXP;
906 typedef struct gp GP;
907 typedef struct gv GV;
908 typedef struct io IO;
909 typedef struct context CONTEXT;
910 typedef struct block BLOCK;
911
912 typedef struct magic MAGIC;
913 typedef struct xrv XRV;
914 typedef struct xpv XPV;
915 typedef struct xpviv XPVIV;
916 typedef struct xpvuv XPVUV;
917 typedef struct xpvnv XPVNV;
918 typedef struct xpvmg XPVMG;
919 typedef struct xpvlv XPVLV;
920 typedef struct xpvav XPVAV;
921 typedef struct xpvhv XPVHV;
922 typedef struct xpvgv XPVGV;
923 typedef struct xpvcv XPVCV;
924 typedef struct xpvbm XPVBM;
925 typedef struct xpvfm XPVFM;
926 typedef struct xpvio XPVIO;
927 typedef struct mgvtbl MGVTBL;
928 typedef union any ANY;
929
930 #include "handy.h"
931
932 typedef I32 (*filter_t) _((int, SV *, int));
933 #define FILTER_READ(idx, sv, len)  filter_read(idx, sv, len)
934 #define FILTER_DATA(idx)           (AvARRAY(rsfp_filters)[idx])
935 #define FILTER_ISREADER(idx)       (idx >= AvFILL(rsfp_filters))
936
937 #ifdef DOSISH
938 # if defined(OS2)
939 #   include "os2ish.h"
940 # else
941 #   include "dosish.h"
942 # endif
943 #else
944 # if defined(VMS)
945 #   include "vmsish.h"
946 # else
947 #   if defined(PLAN9)
948 #     include "./plan9/plan9ish.h"
949 #   else
950 #     include "unixish.h"
951 #   endif
952 # endif
953 #endif         
954
955 /* 
956  * USE_THREADS needs to be after unixish.h as <pthread.h> includes <sys/signal.h>
957  * which defines NSIG - which will stop inclusion of <signal.h>
958  * this results in many functions being undeclared which bothers C++
959  * May make sense to have threads after "*ish.h" anyway
960  */
961
962 #ifdef USE_THREADS
963 #  ifdef FAKE_THREADS
964 #    include "fakethr.h"
965 #  else
966 #    ifdef WIN32
967 #      include <win32thread.h>
968 #    else
969 #      include <pthread.h>
970 typedef pthread_mutex_t perl_mutex;
971 typedef pthread_cond_t perl_cond;
972 typedef pthread_key_t perl_key;
973 #    endif /* WIN32 */
974 #  endif /* FAKE_THREADS */
975 #endif /* USE_THREADS */
976
977
978   
979 #ifdef VMS
980 #   define STATUS_NATIVE        statusvalue_vms
981 #   define STATUS_NATIVE_EXPORT \
982         ((I32)statusvalue_vms == -1 ? 44 : statusvalue_vms)
983 #   define STATUS_NATIVE_SET(n)                                         \
984         STMT_START {                                                    \
985             statusvalue_vms = (n);                                      \
986             if ((I32)statusvalue_vms == -1)                             \
987                 statusvalue = -1;                                       \
988             else if (statusvalue_vms & STS$M_SUCCESS)                   \
989                 statusvalue = 0;                                        \
990             else if ((statusvalue_vms & STS$M_SEVERITY) == 0)           \
991                 statusvalue = 1 << 8;                                   \
992             else                                                        \
993                 statusvalue = (statusvalue_vms & STS$M_SEVERITY) << 8;  \
994         } STMT_END
995 #   define STATUS_POSIX statusvalue
996 #   ifdef VMSISH_STATUS
997 #       define STATUS_CURRENT   (VMSISH_STATUS ? STATUS_NATIVE : STATUS_POSIX)
998 #   else
999 #       define STATUS_CURRENT   STATUS_POSIX
1000 #   endif
1001 #   define STATUS_POSIX_SET(n)                          \
1002         STMT_START {                                    \
1003             statusvalue = (n);                          \
1004             if (statusvalue != -1) {                    \
1005                 statusvalue &= 0xFFFF;                  \
1006                 statusvalue_vms = statusvalue ? 44 : 1; \
1007             }                                           \
1008             else statusvalue_vms = -1;                  \
1009         } STMT_END
1010 #   define STATUS_ALL_SUCCESS   (statusvalue = 0, statusvalue_vms = 1)
1011 #   define STATUS_ALL_FAILURE   (statusvalue = 1, statusvalue_vms = 44)
1012 #else
1013 #   define STATUS_NATIVE        STATUS_POSIX
1014 #   define STATUS_NATIVE_EXPORT STATUS_POSIX
1015 #   define STATUS_NATIVE_SET    STATUS_POSIX_SET
1016 #   define STATUS_POSIX         statusvalue
1017 #   define STATUS_POSIX_SET(n)          \
1018         STMT_START {                    \
1019             statusvalue = (n);          \
1020             if (statusvalue != -1)      \
1021                 statusvalue &= 0xFFFF;  \
1022         } STMT_END
1023 #   define STATUS_CURRENT STATUS_POSIX
1024 #   define STATUS_ALL_SUCCESS   (statusvalue = 0)
1025 #   define STATUS_ALL_FAILURE   (statusvalue = 1)
1026 #endif
1027
1028 /* Some unistd.h's give a prototype for pause() even though
1029    HAS_PAUSE ends up undefined.  This causes the #define
1030    below to be rejected by the compmiler.  Sigh.
1031 */
1032 #ifdef HAS_PAUSE
1033 #define Pause   pause
1034 #else
1035 #define Pause() sleep((32767<<16)+32767)
1036 #endif
1037
1038 #ifndef IOCPARM_LEN
1039 #   ifdef IOCPARM_MASK
1040         /* on BSDish systes we're safe */
1041 #       define IOCPARM_LEN(x)  (((x) >> 16) & IOCPARM_MASK)
1042 #   else
1043         /* otherwise guess at what's safe */
1044 #       define IOCPARM_LEN(x)   256
1045 #   endif
1046 #endif
1047
1048 union any {
1049     void*       any_ptr;
1050     I32         any_i32;
1051     IV          any_iv;
1052     long        any_long;
1053     void        (*any_dptr) _((void*));
1054 };
1055
1056 #ifdef USE_THREADS
1057 #define ARGSproto struct thread *thr
1058 #else
1059 #define ARGSproto void
1060 #endif /* USE_THREADS */
1061
1062 /* Work around some cygwin32 problems with importing global symbols */
1063 #if defined(CYGWIN32) && defined(DLLIMPORT) 
1064 #   include "cw32imp.h"
1065 #endif
1066
1067 #include "regexp.h"
1068 #include "sv.h"
1069 #include "util.h"
1070 #include "form.h"
1071 #include "gv.h"
1072 #include "cv.h"
1073 #include "opcode.h"
1074 #include "op.h"
1075 #include "cop.h"
1076 #include "av.h"
1077 #include "hv.h"
1078 #include "mg.h"
1079 #include "scope.h"
1080
1081 /* work around some libPW problems */
1082 #ifdef DOINIT
1083 EXT char Error[1];
1084 #endif
1085
1086 #if defined(iAPX286) || defined(M_I286) || defined(I80286)
1087 #   define I286
1088 #endif
1089
1090 #if defined(htonl) && !defined(HAS_HTONL)
1091 #define HAS_HTONL
1092 #endif
1093 #if defined(htons) && !defined(HAS_HTONS)
1094 #define HAS_HTONS
1095 #endif
1096 #if defined(ntohl) && !defined(HAS_NTOHL)
1097 #define HAS_NTOHL
1098 #endif
1099 #if defined(ntohs) && !defined(HAS_NTOHS)
1100 #define HAS_NTOHS
1101 #endif
1102 #ifndef HAS_HTONL
1103 #if (BYTEORDER & 0xffff) != 0x4321
1104 #define HAS_HTONS
1105 #define HAS_HTONL
1106 #define HAS_NTOHS
1107 #define HAS_NTOHL
1108 #define MYSWAP
1109 #define htons my_swap
1110 #define htonl my_htonl
1111 #define ntohs my_swap
1112 #define ntohl my_ntohl
1113 #endif
1114 #else
1115 #if (BYTEORDER & 0xffff) == 0x4321
1116 #undef HAS_HTONS
1117 #undef HAS_HTONL
1118 #undef HAS_NTOHS
1119 #undef HAS_NTOHL
1120 #endif
1121 #endif
1122
1123 /*
1124  * Little-endian byte order functions - 'v' for 'VAX', or 'reVerse'.
1125  * -DWS
1126  */
1127 #if BYTEORDER != 0x1234
1128 # define HAS_VTOHL
1129 # define HAS_VTOHS
1130 # define HAS_HTOVL
1131 # define HAS_HTOVS
1132 # if BYTEORDER == 0x4321
1133 #  define vtohl(x)      ((((x)&0xFF)<<24)       \
1134                         +(((x)>>24)&0xFF)       \
1135                         +(((x)&0x0000FF00)<<8)  \
1136                         +(((x)&0x00FF0000)>>8)  )
1137 #  define vtohs(x)      ((((x)&0xFF)<<8) + (((x)>>8)&0xFF))
1138 #  define htovl(x)      vtohl(x)
1139 #  define htovs(x)      vtohs(x)
1140 # endif
1141         /* otherwise default to functions in util.c */
1142 #endif
1143
1144 #ifdef CASTNEGFLOAT
1145 #define U_S(what) ((U16)(what))
1146 #define U_I(what) ((unsigned int)(what))
1147 #define U_L(what) ((U32)(what))
1148 #else
1149 EXTERN_C U32 cast_ulong _((double));
1150 #define U_S(what) ((U16)cast_ulong((double)(what)))
1151 #define U_I(what) ((unsigned int)cast_ulong((double)(what)))
1152 #define U_L(what) (cast_ulong((double)(what)))
1153 #endif
1154
1155 #ifdef CASTI32
1156 #define I_32(what) ((I32)(what))
1157 #define I_V(what) ((IV)(what))
1158 #define U_V(what) ((UV)(what))
1159 #else
1160 START_EXTERN_C
1161 I32 cast_i32 _((double));
1162 IV cast_iv _((double));
1163 UV cast_uv _((double));
1164 END_EXTERN_C
1165 #define I_32(what) (cast_i32((double)(what)))
1166 #define I_V(what) (cast_iv((double)(what)))
1167 #define U_V(what) (cast_uv((double)(what)))
1168 #endif
1169
1170 struct Outrec {
1171     I32         o_lines;
1172     char        *o_str;
1173     U32         o_len;
1174 };
1175
1176 #ifndef MAXSYSFD
1177 #   define MAXSYSFD 2
1178 #endif
1179
1180 #ifndef TMPPATH
1181 #  define TMPPATH "/tmp/perl-eXXXXXX"
1182 #endif
1183
1184 #ifndef __cplusplus
1185 Uid_t getuid _((void));
1186 Uid_t geteuid _((void));
1187 Gid_t getgid _((void));
1188 Gid_t getegid _((void));
1189 #endif
1190
1191 #ifdef DEBUGGING
1192 #ifndef Perl_debug_log
1193 #define Perl_debug_log  PerlIO_stderr()
1194 #endif
1195 #define YYDEBUG 1
1196 #define DEB(a)                          a
1197 #define DEBUG(a)   if (debug)           a
1198 #define DEBUG_p(a) if (debug & 1)       a
1199 #define DEBUG_s(a) if (debug & 2)       a
1200 #define DEBUG_l(a) if (debug & 4)       a
1201 #define DEBUG_t(a) if (debug & 8)       a
1202 #define DEBUG_o(a) if (debug & 16)      a
1203 #define DEBUG_c(a) if (debug & 32)      a
1204 #define DEBUG_P(a) if (debug & 64)      a
1205 #define DEBUG_m(a) if (curinterp && debug & 128)        a
1206 #define DEBUG_f(a) if (debug & 256)     a
1207 #define DEBUG_r(a) if (debug & 512)     a
1208 #define DEBUG_x(a) if (debug & 1024)    a
1209 #define DEBUG_u(a) if (debug & 2048)    a
1210 #define DEBUG_L(a) if (debug & 4096)    a
1211 #define DEBUG_H(a) if (debug & 8192)    a
1212 #define DEBUG_X(a) if (debug & 16384)   a
1213 #define DEBUG_D(a) if (debug & 32768)   a
1214 #else
1215 #define DEB(a)
1216 #define DEBUG(a)
1217 #define DEBUG_p(a)
1218 #define DEBUG_s(a)
1219 #define DEBUG_l(a)
1220 #define DEBUG_t(a)
1221 #define DEBUG_o(a)
1222 #define DEBUG_c(a)
1223 #define DEBUG_P(a)
1224 #define DEBUG_m(a)
1225 #define DEBUG_f(a)
1226 #define DEBUG_r(a)
1227 #define DEBUG_x(a)
1228 #define DEBUG_u(a)
1229 #define DEBUG_L(a)
1230 #define DEBUG_H(a)
1231 #define DEBUG_X(a)
1232 #define DEBUG_D(a)
1233 #endif
1234 #define YYMAXDEPTH 300
1235
1236 #ifndef assert  /* <assert.h> might have been included somehow */
1237 #define assert(what)    DEB( {                                          \
1238         if (!(what)) {                                                  \
1239             croak("Assertion failed: file \"%s\", line %d",             \
1240                 __FILE__, __LINE__);                                    \
1241             exit(1);                                                    \
1242         }})
1243 #endif
1244
1245 struct ufuncs {
1246     I32 (*uf_val)_((IV, SV*));
1247     I32 (*uf_set)_((IV, SV*));
1248     IV uf_index;
1249 };
1250
1251 /* Fix these up for __STDC__ */
1252 #ifndef DONT_DECLARE_STD
1253 char *mktemp _((char*));
1254 double atof _((const char*));
1255 #endif
1256
1257 #ifndef STANDARD_C
1258 /* All of these are in stdlib.h or time.h for ANSI C */
1259 Time_t time();
1260 struct tm *gmtime(), *localtime();
1261 char *strchr(), *strrchr();
1262 char *strcpy(), *strcat();
1263 #endif /* ! STANDARD_C */
1264
1265
1266 #ifdef I_MATH
1267 #    include <math.h>
1268 #else
1269 START_EXTERN_C
1270             double exp _((double));
1271             double log _((double));
1272             double log10 _((double));
1273             double sqrt _((double));
1274             double frexp _((double,int*));
1275             double ldexp _((double,int));
1276             double modf _((double,double*));
1277             double sin _((double));
1278             double cos _((double));
1279             double atan2 _((double,double));
1280             double pow _((double,double));
1281 END_EXTERN_C
1282 #endif
1283
1284 #ifndef __cplusplus
1285 #ifdef __NeXT__ /* or whatever catches all NeXTs */
1286 char *crypt ();       /* Maybe more hosts will need the unprototyped version */
1287 #else
1288 char *crypt _((const char*, const char*));
1289 #endif
1290 #ifndef DONT_DECLARE_STD
1291 #ifndef getenv
1292 char *getenv _((const char*));
1293 #endif
1294 Off_t lseek _((int,Off_t,int));
1295 #endif
1296 char *getlogin _((void));
1297 #endif
1298
1299 #ifdef UNLINK_ALL_VERSIONS /* Currently only makes sense for VMS */
1300 #define UNLINK unlnk
1301 I32 unlnk _((char*));
1302 #else
1303 #define UNLINK unlink
1304 #endif
1305
1306 #ifndef HAS_SETREUID
1307 #  ifdef HAS_SETRESUID
1308 #    define setreuid(r,e) setresuid(r,e,(Uid_t)-1)
1309 #    define HAS_SETREUID
1310 #  endif
1311 #endif
1312 #ifndef HAS_SETREGID
1313 #  ifdef HAS_SETRESGID
1314 #    define setregid(r,e) setresgid(r,e,(Gid_t)-1)
1315 #    define HAS_SETREGID
1316 #  endif
1317 #endif
1318
1319 typedef Signal_t (*Sighandler_t) _((int));
1320
1321 #ifdef HAS_SIGACTION
1322 typedef struct sigaction Sigsave_t;
1323 #else
1324 typedef Sighandler_t Sigsave_t;
1325 #endif
1326
1327 #define SCAN_DEF 0
1328 #define SCAN_TR 1
1329 #define SCAN_REPL 2
1330
1331 #ifdef DEBUGGING
1332 # ifndef register
1333 #  define register
1334 # endif
1335 # define PAD_SV(po) pad_sv(po)
1336 # define RUNOPS_DEFAULT runops_debug
1337 #else
1338 # define PAD_SV(po) curpad[po]
1339 # define RUNOPS_DEFAULT runops_standard
1340 #endif
1341
1342 /*
1343  * These need prototyping here because <proto.h> isn't
1344  * included until after runops is initialised.
1345  */
1346
1347 int runops_standard _((void));
1348 #ifdef DEBUGGING
1349 int runops_debug _((void));
1350 #endif
1351
1352 #define PER_THREAD_MAGICALS "123456789&`'+/.,\\\";^-%=|~:\001\005!@"
1353
1354 /****************/
1355 /* Truly global */
1356 /****************/
1357
1358 /* global state */
1359 EXT PerlInterpreter *   curinterp;      /* currently running interpreter */
1360 #ifdef USE_THREADS
1361 EXT perl_key            thr_key;        /* For per-thread struct thread ptr */
1362 EXT perl_mutex          sv_mutex;       /* Mutex for allocating SVs in sv.c */
1363 EXT perl_mutex          malloc_mutex;   /* Mutex for malloc */
1364 EXT perl_mutex          eval_mutex;     /* Mutex for doeval */
1365 EXT perl_cond           eval_cond;      /* Condition variable for doeval */
1366 EXT struct thread *     eval_owner;     /* Owner thread for doeval */
1367 EXT int                 nthreads;       /* Number of threads currently */
1368 EXT perl_mutex          threads_mutex;  /* Mutex for nthreads and thread list */
1369 EXT perl_cond           nthreads_cond;  /* Condition variable for nthreads */
1370 EXT char *              per_thread_magicals INIT(PER_THREAD_MAGICALS);
1371 #ifdef FAKE_THREADS
1372 EXT struct thread *     thr;            /* Currently executing (fake) thread */
1373 #endif
1374 #endif /* USE_THREADS */
1375
1376 /* VMS doesn't use environ array and NeXT has problems with crt0.o globals */
1377 #if !defined(VMS) && !(defined(NeXT) && defined(__DYNAMIC__))
1378 #if !defined(DONT_DECLARE_STD) || (defined(__svr4__) && defined(__GNUC__) && defined(sun))
1379 extern char **  environ;        /* environment variables supplied via exec */
1380 #endif
1381 #else
1382 #  if defined(NeXT) && defined(__DYNAMIC__)
1383
1384 #  include <mach-o/dyld.h>
1385 EXT char *** environ_pointer;
1386 #  define environ (*environ_pointer)
1387 #  endif
1388 #endif /* environ processing */
1389
1390 EXT int         uid;            /* current real user id */
1391 EXT int         euid;           /* current effective user id */
1392 EXT int         gid;            /* current real group id */
1393 EXT int         egid;           /* current effective group id */
1394 EXT bool        nomemok;        /* let malloc context handle nomem */
1395 EXT U32         an;             /* malloc sequence number */
1396 EXT U32         cop_seqmax;     /* statement sequence number */
1397 EXT U16         op_seqmax;      /* op sequence number */
1398 EXT U32         evalseq;        /* eval sequence number */
1399 EXT U32         sub_generation; /* inc to force methods to be looked up again */
1400 EXT char **     origenviron;
1401 EXT U32         origalen;
1402 EXT HV *        pidstatus;      /* pid-to-status mappings for waitpid */
1403 EXT U32 *       profiledata;
1404 EXT int         maxo INIT(MAXO);/* Number of ops */
1405 EXT char *      osname;         /* operating system */
1406 EXT char *      sh_path INIT(SH_PATH); /* full path of shell */
1407 EXT Sighandler_t        sighandlerp;
1408
1409 EXT XPV*        xiv_arenaroot;  /* list of allocated xiv areas */
1410 EXT IV **       xiv_root;       /* free xiv list--shared by interpreters */
1411 EXT double *    xnv_root;       /* free xnv list--shared by interpreters */
1412 EXT XRV *       xrv_root;       /* free xrv list--shared by interpreters */
1413 EXT XPV *       xpv_root;       /* free xpv list--shared by interpreters */
1414 EXT HE *        he_root;        /* free he list--shared by interpreters */
1415 EXT char *      nice_chunk;     /* a nice chunk of memory to reuse */
1416 EXT U32         nice_chunk_size;/* how nice the chunk of memory is */
1417
1418 /* Stack for currently executing thread--context switch must handle this.     */
1419 EXT SV **       stack_base;     /* stack->array_ary */
1420 EXT SV **       stack_sp;       /* stack pointer now */
1421 EXT SV **       stack_max;      /* stack->array_ary + stack->array_max */
1422
1423 /* likewise for these */
1424
1425 #ifdef OP_IN_REGISTER
1426 EXT OP *        opsave;         /* save current op register across longjmps */
1427 #else
1428 EXT OP *        op;             /* current op--when not in a global register */
1429 #endif
1430 EXT int         (*runops) _((void)) INIT(RUNOPS_DEFAULT);
1431 EXT I32 *       scopestack;     /* blocks we've entered */
1432 EXT I32         scopestack_ix;
1433 EXT I32         scopestack_max;
1434
1435 EXT ANY*        savestack;      /* to save non-local values on */
1436 EXT I32         savestack_ix;
1437 EXT I32         savestack_max;
1438
1439 EXT OP **       retstack;       /* returns we've pushed */
1440 EXT I32         retstack_ix;
1441 EXT I32         retstack_max;
1442
1443 EXT I32 *       markstack;      /* stackmarks we're remembering */
1444 EXT I32 *       markstack_ptr;  /* stackmarks we're remembering */
1445 EXT I32 *       markstack_max;  /* stackmarks we're remembering */
1446
1447 EXT SV **       curpad;
1448
1449 /* temp space */
1450 EXT SV *        Sv;
1451 EXT XPV *       Xpv;
1452 EXT char        tokenbuf[256];
1453 EXT struct stat statbuf;
1454 #ifdef HAS_TIMES
1455 EXT struct tms  timesbuf;
1456 #endif
1457 EXT STRLEN na;          /* for use in SvPV when length is Not Applicable */
1458
1459 /* for tmp use in stupid debuggers */
1460 EXT int *       di;
1461 EXT short *     ds;
1462 EXT char *      dc;
1463
1464 /* handy constants */
1465 EXTCONST char * Yes INIT("1");
1466 EXTCONST char * No INIT("");
1467 EXTCONST char * hexdigit INIT("0123456789abcdef0123456789ABCDEFx");
1468 EXTCONST char * patleave INIT("\\.^$@dDwWsSbB+*?|()-nrtfeaxc0123456789[{]}");
1469 EXTCONST char * vert INIT("|");
1470
1471 EXTCONST char warn_uninit[]
1472   INIT("Use of uninitialized value");
1473 EXTCONST char warn_nosemi[]
1474   INIT("Semicolon seems to be missing");
1475 EXTCONST char warn_reserved[]
1476   INIT("Unquoted string \"%s\" may clash with future reserved word");
1477 EXTCONST char warn_nl[]
1478   INIT("Unsuccessful %s on filename containing newline");
1479 EXTCONST char no_wrongref[]
1480   INIT("Can't use %s ref as %s ref");
1481 EXTCONST char no_symref[]
1482   INIT("Can't use string (\"%.32s\") as %s ref while \"strict refs\" in use");
1483 EXTCONST char no_usym[]
1484   INIT("Can't use an undefined value as %s reference");
1485 EXTCONST char no_aelem[]
1486   INIT("Modification of non-creatable array value attempted, subscript %d");
1487 EXTCONST char no_helem[]
1488   INIT("Modification of non-creatable hash value attempted, subscript \"%s\"");
1489 EXTCONST char no_modify[]
1490   INIT("Modification of a read-only value attempted");
1491 EXTCONST char no_mem[]
1492   INIT("Out of memory!\n");
1493 EXTCONST char no_security[]
1494   INIT("Insecure dependency in %s%s");
1495 EXTCONST char no_sock_func[]
1496   INIT("Unsupported socket function \"%s\" called");
1497 EXTCONST char no_dir_func[]
1498   INIT("Unsupported directory function \"%s\" called");
1499 EXTCONST char no_func[]
1500   INIT("The %s function is unimplemented");
1501 EXTCONST char no_myglob[]
1502   INIT("\"my\" variable %s can't be in a package");
1503
1504 EXT SV          sv_undef;
1505 EXT SV          sv_no;
1506 EXT SV          sv_yes;
1507 #ifdef CSH
1508     EXT char *  cshname INIT(CSH);
1509     EXT I32     cshlen;
1510 #endif
1511
1512 #ifdef DOINIT
1513 EXT char *sig_name[] = { SIG_NAME };
1514 EXT int   sig_num[]  = { SIG_NUM };
1515 EXT SV  * psig_ptr[sizeof(sig_num)/sizeof(*sig_num)];
1516 EXT SV  * psig_name[sizeof(sig_num)/sizeof(*sig_num)];
1517 #else
1518 EXT char *sig_name[];
1519 EXT int   sig_num[];
1520 EXT SV  * psig_ptr[];
1521 EXT SV  * psig_name[];
1522 #endif
1523
1524 /* fast case folding tables */
1525
1526 #ifdef DOINIT
1527 EXTCONST  unsigned char fold[] = {
1528         0,      1,      2,      3,      4,      5,      6,      7,
1529         8,      9,      10,     11,     12,     13,     14,     15,
1530         16,     17,     18,     19,     20,     21,     22,     23,
1531         24,     25,     26,     27,     28,     29,     30,     31,
1532         32,     33,     34,     35,     36,     37,     38,     39,
1533         40,     41,     42,     43,     44,     45,     46,     47,
1534         48,     49,     50,     51,     52,     53,     54,     55,
1535         56,     57,     58,     59,     60,     61,     62,     63,
1536         64,     'a',    'b',    'c',    'd',    'e',    'f',    'g',
1537         'h',    'i',    'j',    'k',    'l',    'm',    'n',    'o',
1538         'p',    'q',    'r',    's',    't',    'u',    'v',    'w',
1539         'x',    'y',    'z',    91,     92,     93,     94,     95,
1540         96,     'A',    'B',    'C',    'D',    'E',    'F',    'G',
1541         'H',    'I',    'J',    'K',    'L',    'M',    'N',    'O',
1542         'P',    'Q',    'R',    'S',    'T',    'U',    'V',    'W',
1543         'X',    'Y',    'Z',    123,    124,    125,    126,    127,
1544         128,    129,    130,    131,    132,    133,    134,    135,
1545         136,    137,    138,    139,    140,    141,    142,    143,
1546         144,    145,    146,    147,    148,    149,    150,    151,
1547         152,    153,    154,    155,    156,    157,    158,    159,
1548         160,    161,    162,    163,    164,    165,    166,    167,
1549         168,    169,    170,    171,    172,    173,    174,    175,
1550         176,    177,    178,    179,    180,    181,    182,    183,
1551         184,    185,    186,    187,    188,    189,    190,    191,
1552         192,    193,    194,    195,    196,    197,    198,    199,
1553         200,    201,    202,    203,    204,    205,    206,    207,
1554         208,    209,    210,    211,    212,    213,    214,    215,
1555         216,    217,    218,    219,    220,    221,    222,    223,    
1556         224,    225,    226,    227,    228,    229,    230,    231,
1557         232,    233,    234,    235,    236,    237,    238,    239,
1558         240,    241,    242,    243,    244,    245,    246,    247,
1559         248,    249,    250,    251,    252,    253,    254,    255
1560 };
1561 #else
1562 EXTCONST unsigned char fold[];
1563 #endif
1564
1565 #ifdef DOINIT
1566 EXT unsigned char fold_locale[] = {
1567         0,      1,      2,      3,      4,      5,      6,      7,
1568         8,      9,      10,     11,     12,     13,     14,     15,
1569         16,     17,     18,     19,     20,     21,     22,     23,
1570         24,     25,     26,     27,     28,     29,     30,     31,
1571         32,     33,     34,     35,     36,     37,     38,     39,
1572         40,     41,     42,     43,     44,     45,     46,     47,
1573         48,     49,     50,     51,     52,     53,     54,     55,
1574         56,     57,     58,     59,     60,     61,     62,     63,
1575         64,     'a',    'b',    'c',    'd',    'e',    'f',    'g',
1576         'h',    'i',    'j',    'k',    'l',    'm',    'n',    'o',
1577         'p',    'q',    'r',    's',    't',    'u',    'v',    'w',
1578         'x',    'y',    'z',    91,     92,     93,     94,     95,
1579         96,     'A',    'B',    'C',    'D',    'E',    'F',    'G',
1580         'H',    'I',    'J',    'K',    'L',    'M',    'N',    'O',
1581         'P',    'Q',    'R',    'S',    'T',    'U',    'V',    'W',
1582         'X',    'Y',    'Z',    123,    124,    125,    126,    127,
1583         128,    129,    130,    131,    132,    133,    134,    135,
1584         136,    137,    138,    139,    140,    141,    142,    143,
1585         144,    145,    146,    147,    148,    149,    150,    151,
1586         152,    153,    154,    155,    156,    157,    158,    159,
1587         160,    161,    162,    163,    164,    165,    166,    167,
1588         168,    169,    170,    171,    172,    173,    174,    175,
1589         176,    177,    178,    179,    180,    181,    182,    183,
1590         184,    185,    186,    187,    188,    189,    190,    191,
1591         192,    193,    194,    195,    196,    197,    198,    199,
1592         200,    201,    202,    203,    204,    205,    206,    207,
1593         208,    209,    210,    211,    212,    213,    214,    215,
1594         216,    217,    218,    219,    220,    221,    222,    223,    
1595         224,    225,    226,    227,    228,    229,    230,    231,
1596         232,    233,    234,    235,    236,    237,    238,    239,
1597         240,    241,    242,    243,    244,    245,    246,    247,
1598         248,    249,    250,    251,    252,    253,    254,    255
1599 };
1600 #else
1601 EXT unsigned char fold_locale[];
1602 #endif
1603
1604 #ifdef DOINIT
1605 EXTCONST unsigned char freq[] = {       /* letter frequencies for mixed English/C */
1606         1,      2,      84,     151,    154,    155,    156,    157,
1607         165,    246,    250,    3,      158,    7,      18,     29,
1608         40,     51,     62,     73,     85,     96,     107,    118,
1609         129,    140,    147,    148,    149,    150,    152,    153,
1610         255,    182,    224,    205,    174,    176,    180,    217,
1611         233,    232,    236,    187,    235,    228,    234,    226,
1612         222,    219,    211,    195,    188,    193,    185,    184,
1613         191,    183,    201,    229,    181,    220,    194,    162,
1614         163,    208,    186,    202,    200,    218,    198,    179,
1615         178,    214,    166,    170,    207,    199,    209,    206,
1616         204,    160,    212,    216,    215,    192,    175,    173,
1617         243,    172,    161,    190,    203,    189,    164,    230,
1618         167,    248,    227,    244,    242,    255,    241,    231,
1619         240,    253,    169,    210,    245,    237,    249,    247,
1620         239,    168,    252,    251,    254,    238,    223,    221,
1621         213,    225,    177,    197,    171,    196,    159,    4,
1622         5,      6,      8,      9,      10,     11,     12,     13,
1623         14,     15,     16,     17,     19,     20,     21,     22,
1624         23,     24,     25,     26,     27,     28,     30,     31,
1625         32,     33,     34,     35,     36,     37,     38,     39,
1626         41,     42,     43,     44,     45,     46,     47,     48,
1627         49,     50,     52,     53,     54,     55,     56,     57,
1628         58,     59,     60,     61,     63,     64,     65,     66,
1629         67,     68,     69,     70,     71,     72,     74,     75,
1630         76,     77,     78,     79,     80,     81,     82,     83,
1631         86,     87,     88,     89,     90,     91,     92,     93,
1632         94,     95,     97,     98,     99,     100,    101,    102,
1633         103,    104,    105,    106,    108,    109,    110,    111,
1634         112,    113,    114,    115,    116,    117,    119,    120,
1635         121,    122,    123,    124,    125,    126,    127,    128,
1636         130,    131,    132,    133,    134,    135,    136,    137,
1637         138,    139,    141,    142,    143,    144,    145,    146
1638 };
1639 #else
1640 EXTCONST unsigned char freq[];
1641 #endif
1642
1643 #ifdef DEBUGGING
1644 #ifdef DOINIT
1645 EXTCONST char* block_type[] = {
1646         "NULL",
1647         "SUB",
1648         "EVAL",
1649         "LOOP",
1650         "SUBST",
1651         "BLOCK",
1652 };
1653 #else
1654 EXTCONST char* block_type[];
1655 #endif
1656 #endif
1657
1658 /*****************************************************************************/
1659 /* This lexer/parser stuff is currently global since yacc is hard to reenter */
1660 /*****************************************************************************/
1661 /* XXX This needs to be revisited, since BEGIN makes yacc re-enter... */
1662
1663 #include "perly.h"
1664
1665 #define LEX_NOTPARSING          11      /* borrowed from toke.c */
1666
1667 typedef enum {
1668     XOPERATOR,
1669     XTERM,
1670     XREF,
1671     XSTATE,
1672     XBLOCK,
1673     XTERMBLOCK
1674 } expectation;
1675
1676 EXT U32         lex_state;      /* next token is determined */
1677 EXT U32         lex_defer;      /* state after determined token */
1678 EXT expectation lex_expect;     /* expect after determined token */
1679 EXT I32         lex_brackets;   /* bracket count */
1680 EXT I32         lex_formbrack;  /* bracket count at outer format level */
1681 EXT I32         lex_fakebrack;  /* outer bracket is mere delimiter */
1682 EXT I32         lex_casemods;   /* casemod count */
1683 EXT I32         lex_dojoin;     /* doing an array interpolation */
1684 EXT I32         lex_starts;     /* how many interps done on level */
1685 EXT SV *        lex_stuff;      /* runtime pattern from m// or s/// */
1686 EXT SV *        lex_repl;       /* runtime replacement from s/// */
1687 EXT OP *        lex_op;         /* extra info to pass back on op */
1688 EXT OP *        lex_inpat;      /* in pattern $) and $| are special */
1689 EXT I32         lex_inwhat;     /* what kind of quoting are we in */
1690 EXT char *      lex_brackstack; /* what kind of brackets to pop */
1691 EXT char *      lex_casestack;  /* what kind of case mods in effect */
1692
1693 /* What we know when we're in LEX_KNOWNEXT state. */
1694 EXT YYSTYPE     nextval[5];     /* value of next token, if any */
1695 EXT I32         nexttype[5];    /* type of next token */
1696 EXT I32         nexttoke;
1697
1698 EXT PerlIO * VOL        rsfp INIT(Nullfp);
1699 EXT SV *        linestr;
1700 EXT char *      bufptr;
1701 EXT char *      oldbufptr;
1702 EXT char *      oldoldbufptr;
1703 EXT char *      bufend;
1704 EXT expectation expect INIT(XSTATE);    /* how to interpret ambiguous tokens */
1705 EXT AV *        rsfp_filters;
1706
1707 EXT I32         multi_start;    /* 1st line of multi-line string */
1708 EXT I32         multi_end;      /* last line of multi-line string */
1709 EXT I32         multi_open;     /* delimiter of said string */
1710 EXT I32         multi_close;    /* delimiter of said string */
1711
1712 EXT GV *        scrgv;
1713 EXT I32         error_count;    /* how many errors so far, max 10 */
1714 EXT I32         subline;        /* line this subroutine began on */
1715 EXT SV *        subname;        /* name of current subroutine */
1716
1717 EXT CV *        compcv;         /* currently compiling subroutine */
1718 EXT AV *        comppad;        /* storage for lexically scoped temporaries */
1719 EXT AV *        comppad_name;   /* variable names for "my" variables */
1720 EXT I32         comppad_name_fill;/* last "introduced" variable offset */
1721 EXT I32         comppad_name_floor;/* start of vars in innermost block */
1722 EXT I32         min_intro_pending;/* start of vars to introduce */
1723 EXT I32         max_intro_pending;/* end of vars to introduce */
1724 EXT I32         padix;          /* max used index in current "register" pad */
1725 EXT I32         padix_floor;    /* how low may inner block reset padix */
1726 EXT I32         pad_reset_pending; /* reset pad on next attempted alloc */
1727 EXT COP         compiling;
1728
1729 EXT I32         thisexpr;       /* name id for nothing_in_common() */
1730 EXT char *      last_uni;       /* position of last named-unary operator */
1731 EXT char *      last_lop;       /* position of last list operator */
1732 EXT OPCODE      last_lop_op;    /* last list operator */
1733 EXT bool        in_my;          /* we're compiling a "my" declaration */
1734 EXT HV *        in_my_stash;    /* declared class of this "my" declaration */
1735 #ifdef FCRYPT
1736 EXT I32         cryptseen;      /* has fast crypt() been initialized? */
1737 #endif
1738
1739 EXT U32         hints;          /* various compilation flags */
1740
1741                                 /* Note: the lowest 8 bits are reserved for
1742                                    stuffing into op->op_private */
1743 #define HINT_INTEGER            0x00000001
1744 #define HINT_STRICT_REFS        0x00000002
1745
1746 #define HINT_BLOCK_SCOPE        0x00000100
1747 #define HINT_STRICT_SUBS        0x00000200
1748 #define HINT_STRICT_VARS        0x00000400
1749 #define HINT_LOCALE             0x00000800
1750
1751 /**************************************************************************/
1752 /* This regexp stuff is global since it always happens within 1 expr eval */
1753 /**************************************************************************/
1754
1755 EXT char *      regprecomp;     /* uncompiled string. */
1756 EXT char *      regparse;       /* Input-scan pointer. */
1757 EXT char *      regxend;        /* End of input for compile */
1758 EXT I32         regnpar;        /* () count. */
1759 EXT char *      regcode;        /* Code-emit pointer; &regdummy = don't. */
1760 EXT I32         regsize;        /* Code size. */
1761 EXT I32         regnaughty;     /* How bad is this pattern? */
1762 EXT I32         regsawback;     /* Did we see \1, ...? */
1763
1764 EXT char *      reginput;       /* String-input pointer. */
1765 EXT char *      regbol;         /* Beginning of input, for ^ check. */
1766 EXT char *      regeol;         /* End of input, for $ check. */
1767 EXT char **     regstartp;      /* Pointer to startp array. */
1768 EXT char **     regendp;        /* Ditto for endp. */
1769 EXT U32 *       reglastparen;   /* Similarly for lastparen. */
1770 EXT char *      regtill;        /* How far we are required to go. */
1771 EXT U16         regflags;       /* are we folding, multilining? */
1772 EXT char        regprev;        /* char before regbol, \n if none */
1773
1774 EXT bool        do_undump;      /* -u or dump seen? */
1775 EXT VOL U32     debug;
1776
1777 /***********************************************/
1778 /* Global only to current interpreter instance */
1779 /***********************************************/
1780
1781 #ifdef MULTIPLICITY
1782 #define IEXT
1783 #define IINIT(x)
1784 struct interpreter {
1785 #else
1786 #define IEXT EXT
1787 #define IINIT(x) INIT(x)
1788 #endif
1789
1790 /* pseudo environmental stuff */
1791 IEXT int        Iorigargc;
1792 IEXT char **    Iorigargv;
1793 IEXT GV *       Ienvgv;
1794 IEXT GV *       Isiggv;
1795 IEXT GV *       Iincgv;
1796 IEXT char *     Iorigfilename;
1797 IEXT SV *       Idiehook;
1798 IEXT SV *       Iwarnhook;
1799 IEXT SV *       Iparsehook;
1800
1801 /* Various states of an input record separator SV (rs, nrs) */
1802 #define RsSNARF(sv)   (! SvOK(sv))
1803 #define RsSIMPLE(sv)  (SvOK(sv) && SvCUR(sv))
1804 #define RsPARA(sv)    (SvOK(sv) && ! SvCUR(sv))
1805
1806 /* switches */
1807 IEXT char *     Icddir;
1808 IEXT bool       Iminus_c;
1809 IEXT char       Ipatchlevel[10];
1810 IEXT char **    Ilocalpatches;
1811 IEXT SV *       Inrs;
1812 IEXT char *     Isplitstr IINIT(" ");
1813 IEXT bool       Ipreprocess;
1814 IEXT bool       Iminus_n;
1815 IEXT bool       Iminus_p;
1816 IEXT bool       Iminus_l;
1817 IEXT bool       Iminus_a;
1818 IEXT bool       Iminus_F;
1819 IEXT bool       Idoswitches;
1820 IEXT bool       Idowarn;
1821 IEXT bool       Idoextract;
1822 IEXT bool       Isawampersand;  /* must save all match strings */
1823 IEXT bool       Isawstudy;      /* do fbm_instr on all strings */
1824 IEXT bool       Isawvec;
1825 IEXT bool       Iunsafe;
1826 IEXT char *     Iinplace;
1827 IEXT char *     Ie_tmpname;
1828 IEXT PerlIO *   Ie_fp;
1829 IEXT U32        Iperldb;
1830         /* This value may be raised by extensions for testing purposes */
1831 IEXT int        Iperl_destruct_level IINIT(0);  /* 0=none, 1=full, 2=full with checks */
1832
1833 /* magical thingies */
1834 IEXT Time_t     Ibasetime;              /* $^T */
1835 IEXT SV *       Iformfeed;              /* $^L */
1836 IEXT char *     Ichopset IINIT(" \n-"); /* $: */
1837 IEXT SV *       Irs;                    /* $/ */
1838 IEXT char *     Iofs;                   /* $, */
1839 IEXT STRLEN     Iofslen;
1840 IEXT char *     Iors;                   /* $\ */
1841 IEXT STRLEN     Iorslen;
1842 IEXT char *     Iofmt;                  /* $# */
1843 IEXT I32        Imaxsysfd IINIT(MAXSYSFD); /* top fd to pass to subprocesses */
1844 IEXT int        Imultiline;             /* $*--do strings hold >1 line? */
1845 IEXT I32        Istatusvalue;           /* $? */
1846 #ifdef VMS
1847 IEXT U32        Istatusvalue_vms;
1848 #endif
1849
1850 IEXT struct stat Istatcache;            /* _ */
1851 IEXT GV *       Istatgv;
1852 IEXT SV *       Istatname IINIT(Nullsv);
1853
1854 /* shortcuts to various I/O objects */
1855 IEXT GV *       Istdingv;
1856 IEXT GV *       Ilast_in_gv;
1857 IEXT GV *       Idefgv;
1858 IEXT GV *       Iargvgv;
1859 IEXT GV *       Idefoutgv;
1860 IEXT GV *       Iargvoutgv;
1861
1862 /* shortcuts to regexp stuff */
1863 IEXT GV *       Ileftgv;
1864 IEXT GV *       Iampergv;
1865 IEXT GV *       Irightgv;
1866 IEXT PMOP *     Icurpm;         /* what to do \ interps from */
1867 IEXT I32 *      Iscreamfirst;
1868 IEXT I32 *      Iscreamnext;
1869 IEXT I32        Imaxscream IINIT(-1);
1870 IEXT SV *       Ilastscream;
1871
1872 /* shortcuts to misc objects */
1873 IEXT HV *       Ierrhv;
1874 IEXT SV *       Ierrsv;
1875
1876 /* shortcuts to debugging objects */
1877 IEXT GV *       IDBgv;
1878 IEXT GV *       IDBline;
1879 IEXT GV *       IDBsub;
1880 IEXT SV *       IDBsingle;
1881 IEXT SV *       IDBtrace;
1882 IEXT SV *       IDBsignal;
1883 IEXT AV *       Ilineary;       /* lines of script for debugger */
1884 IEXT AV *       Idbargs;        /* args to call listed by caller function */
1885
1886 /* symbol tables */
1887 IEXT HV *       Idefstash;      /* main symbol table */
1888 IEXT HV *       Icurstash;      /* symbol table for current package */
1889 IEXT HV *       Idebstash;      /* symbol table for perldb package */
1890 IEXT SV *       Icurstname;     /* name of current package */
1891 IEXT AV *       Ibeginav;       /* names of BEGIN subroutines */
1892 IEXT AV *       Iendav;         /* names of END subroutines */
1893 IEXT AV *       Iinitav;        /* names of INIT subroutines */
1894 IEXT HV *       Istrtab;        /* shared string table */
1895
1896 /* memory management */
1897 IEXT SV **      Itmps_stack;
1898 IEXT I32        Itmps_ix IINIT(-1);
1899 IEXT I32        Itmps_floor IINIT(-1);
1900 IEXT I32        Itmps_max;
1901 IEXT I32        Isv_count;      /* how many SV* are currently allocated */
1902 IEXT I32        Isv_objcount;   /* how many objects are currently allocated */
1903 IEXT SV*        Isv_root;       /* storage for SVs belonging to interp */
1904 IEXT SV*        Isv_arenaroot;  /* list of areas for garbage collection */
1905
1906 /* funky return mechanisms */
1907 IEXT I32        Ilastspbase;
1908 IEXT I32        Ilastsize;
1909 IEXT int        Iforkprocess;   /* so do_open |- can return proc# */
1910
1911 /* subprocess state */
1912 IEXT AV *       Ifdpid;         /* keep fd-to-pid mappings for my_popen */
1913
1914 /* internal state */
1915 IEXT VOL int    Iin_eval;       /* trap "fatal" errors? */
1916 IEXT OP *       Irestartop;     /* Are we propagating an error from croak? */
1917 IEXT int        Idelaymagic;    /* ($<,$>) = ... */
1918 IEXT bool       Idirty;         /* In the middle of tearing things down? */
1919 IEXT U8         Ilocalizing;    /* are we processing a local() list? */
1920 IEXT bool       Itainted;       /* using variables controlled by $< */
1921 IEXT bool       Itainting;      /* doing taint checks */
1922 IEXT char *     Iop_mask IINIT(NULL);   /* masked operations for safe evals */
1923
1924 /* trace state */
1925 IEXT I32        Idlevel;
1926 IEXT I32        Idlmax IINIT(128);
1927 IEXT char *     Idebname;
1928 IEXT char *     Idebdelim;
1929
1930 /* current interpreter roots */
1931 IEXT CV *       Imain_cv;
1932 IEXT OP *       Imain_root;
1933 IEXT OP *       Imain_start;
1934 IEXT OP *       Ieval_root;
1935 IEXT OP *       Ieval_start;
1936
1937 /* runtime control stuff */
1938 IEXT COP * VOL  Icurcop IINIT(&compiling);
1939 IEXT COP *      Icurcopdb IINIT(NULL);
1940 IEXT line_t     Icopline IINIT(NOLINE);
1941 IEXT CONTEXT *  Icxstack;
1942 IEXT I32        Icxstack_ix IINIT(-1);
1943 IEXT I32        Icxstack_max IINIT(128);
1944 IEXT JMPENV     Istart_env;     /* empty startup sigjmp() environment */
1945 IEXT JMPENV *   Itop_env;       /* ptr. to current sigjmp() environment */
1946
1947 /* stack stuff */
1948 IEXT AV *       Icurstack;              /* THE STACK */
1949 IEXT AV *       Imainstack;     /* the stack when nothing funny is happening */
1950
1951 /* format accumulators */
1952 IEXT SV *       Iformtarget;
1953 IEXT SV *       Ibodytarget;
1954 IEXT SV *       Itoptarget;
1955
1956 /* statics moved here for shared library purposes */
1957 IEXT SV         Istrchop;       /* return value from chop */
1958 IEXT int        Ifilemode;      /* so nextargv() can preserve mode */
1959 IEXT int        Ilastfd;        /* what to preserve mode on */
1960 IEXT char *     Ioldname;       /* what to preserve mode on */
1961 IEXT char **    IArgv;          /* stuff to free from do_aexec, vfork safe */
1962 IEXT char *     ICmd;           /* stuff to free from do_aexec, vfork safe */
1963 IEXT OP *       Isortcop;       /* user defined sort routine */
1964 IEXT HV *       Isortstash;     /* which is in some package or other */
1965 IEXT GV *       Ifirstgv;       /* $a */
1966 IEXT GV *       Isecondgv;      /* $b */
1967 IEXT AV *       Isortstack;     /* temp stack during pp_sort() */
1968 IEXT AV *       Isignalstack;   /* temp stack during sighandler() */
1969 IEXT SV *       Imystrk;        /* temp key string for do_each() */
1970 IEXT I32        Idumplvl;       /* indentation level on syntax tree dump */
1971 IEXT PMOP *     Ioldlastpm;     /* for saving regexp context during debugger */
1972 IEXT I32        Igensym;        /* next symbol for getsym() to define */
1973 IEXT bool       Ipreambled;
1974 IEXT AV *       Ipreambleav;
1975 IEXT int        Ilaststatval IINIT(-1);
1976 IEXT I32        Ilaststype IINIT(OP_STAT);
1977 IEXT SV *       Imess_sv;
1978
1979 #ifdef USE_THREADS
1980 /* threads stuff */
1981 IEXT SV *       Ithrsv;         /* holds struct thread for main thread */
1982 #endif /* USE_THREADS */
1983
1984 #undef IEXT
1985 #undef IINIT
1986
1987 #ifdef MULTIPLICITY
1988 };
1989 #else
1990 struct interpreter {
1991     char broiled;
1992 };
1993 #endif
1994
1995 #include "thread.h"
1996 #include "pp.h"
1997
1998 START_EXTERN_C
1999 #include "proto.h"
2000
2001 #ifdef EMBED
2002 #define Perl_sv_setptrobj(rv,ptr,name) Perl_sv_setref_iv(rv,name,(IV)ptr)
2003 #define Perl_sv_setptrref(rv,ptr) Perl_sv_setref_iv(rv,Nullch,(IV)ptr)
2004 #else
2005 #define sv_setptrobj(rv,ptr,name) sv_setref_iv(rv,name,(IV)ptr)
2006 #define sv_setptrref(rv,ptr) sv_setref_iv(rv,Nullch,(IV)ptr)
2007 #endif
2008
2009 END_EXTERN_C
2010
2011 /* The following must follow proto.h */
2012
2013 #ifdef DOINIT
2014
2015 EXT MGVTBL vtbl_sv =    {magic_get,
2016                                 magic_set,
2017                                         magic_len,
2018                                                 0,      0};
2019 EXT MGVTBL vtbl_env =   {0,     magic_set_all_env,
2020                                 0,      magic_clear_all_env,
2021                                                         0};
2022 EXT MGVTBL vtbl_envelem =       {0,     magic_setenv,
2023                                         0,      magic_clearenv,
2024                                                         0};
2025 EXT MGVTBL vtbl_sig =   {0,     0,               0, 0, 0};
2026 EXT MGVTBL vtbl_sigelem =       {magic_getsig,
2027                                         magic_setsig,
2028                                         0,      magic_clearsig,
2029                                                         0};
2030 EXT MGVTBL vtbl_pack =  {0,     0,      0,      magic_wipepack,
2031                                                         0};
2032 EXT MGVTBL vtbl_packelem =      {magic_getpack,
2033                                 magic_setpack,
2034                                         0,      magic_clearpack,
2035                                                         0};
2036 EXT MGVTBL vtbl_dbline =        {0,     magic_setdbline,
2037                                         0,      0,      0};
2038 EXT MGVTBL vtbl_isa =   {0,     magic_setisa,
2039                                         0,      magic_setisa,
2040                                                         0};
2041 EXT MGVTBL vtbl_isaelem =       {0,     magic_setisa,
2042                                         0,      0,      0};
2043 EXT MGVTBL vtbl_arylen =        {magic_getarylen,
2044                                 magic_setarylen,
2045                                         0,      0,      0};
2046 EXT MGVTBL vtbl_glob =  {magic_getglob,
2047                                 magic_setglob,
2048                                         0,      0,      0};
2049 EXT MGVTBL vtbl_mglob = {0,     magic_setmglob,
2050                                         0,      0,      0};
2051 EXT MGVTBL vtbl_nkeys = {0,     magic_setnkeys,
2052                                         0,      0,      0};
2053 EXT MGVTBL vtbl_taint = {magic_gettaint,magic_settaint,
2054                                         0,      0,      0};
2055 EXT MGVTBL vtbl_substr =        {0,     magic_setsubstr,
2056                                         0,      0,      0};
2057 EXT MGVTBL vtbl_vec =   {0,     magic_setvec,
2058                                         0,      0,      0};
2059 EXT MGVTBL vtbl_pos =   {magic_getpos,
2060                                 magic_setpos,
2061                                         0,      0,      0};
2062 EXT MGVTBL vtbl_bm =    {0,     magic_setbm,
2063                                         0,      0,      0};
2064 EXT MGVTBL vtbl_fm =    {0,     magic_setfm,
2065                                         0,      0,      0};
2066 EXT MGVTBL vtbl_uvar =  {magic_getuvar,
2067                                 magic_setuvar,
2068                                         0,      0,      0};
2069 #ifdef USE_THREADS
2070 EXT MGVTBL vtbl_mutex = {0,     0,      0,      0,      magic_mutexfree};
2071 #endif /* USE_THREADS */
2072 EXT MGVTBL vtbl_defelem = {magic_getdefelem,magic_setdefelem,
2073                                         0,      0,      magic_freedefelem};
2074
2075 #ifdef USE_LOCALE_COLLATE
2076 EXT MGVTBL vtbl_collxfrm = {0,
2077                                 magic_setcollxfrm,
2078                                         0,      0,      0};
2079 #endif
2080
2081 #ifdef OVERLOAD
2082 EXT MGVTBL vtbl_amagic =       {0,     magic_setamagic,
2083                                         0,      0,      magic_setamagic};
2084 EXT MGVTBL vtbl_amagicelem =   {0,     magic_setamagic,
2085                                         0,      0,      magic_setamagic};
2086 #endif /* OVERLOAD */
2087
2088 #else /* !DOINIT */
2089
2090 EXT MGVTBL vtbl_sv;
2091 EXT MGVTBL vtbl_env;
2092 EXT MGVTBL vtbl_envelem;
2093 EXT MGVTBL vtbl_sig;
2094 EXT MGVTBL vtbl_sigelem;
2095 EXT MGVTBL vtbl_pack;
2096 EXT MGVTBL vtbl_packelem;
2097 EXT MGVTBL vtbl_dbline;
2098 EXT MGVTBL vtbl_isa;
2099 EXT MGVTBL vtbl_isaelem;
2100 EXT MGVTBL vtbl_arylen;
2101 EXT MGVTBL vtbl_glob;
2102 EXT MGVTBL vtbl_mglob;
2103 EXT MGVTBL vtbl_nkeys;
2104 EXT MGVTBL vtbl_taint;
2105 EXT MGVTBL vtbl_substr;
2106 EXT MGVTBL vtbl_vec;
2107 EXT MGVTBL vtbl_pos;
2108 EXT MGVTBL vtbl_bm;
2109 EXT MGVTBL vtbl_fm;
2110 EXT MGVTBL vtbl_uvar;
2111
2112 #ifdef USE_THREADS
2113 EXT MGVTBL vtbl_mutex;
2114 #endif /* USE_THREADS */
2115
2116 EXT MGVTBL vtbl_defelem;
2117
2118 #ifdef USE_LOCALE_COLLATE
2119 EXT MGVTBL vtbl_collxfrm;
2120 #endif
2121
2122 #ifdef OVERLOAD
2123 EXT MGVTBL vtbl_amagic;
2124 EXT MGVTBL vtbl_amagicelem;
2125 #endif /* OVERLOAD */
2126
2127 #endif /* !DOINIT */
2128
2129 #ifdef OVERLOAD
2130
2131 EXT long amagic_generation;
2132
2133 #define NofAMmeth 58
2134 #ifdef DOINIT
2135 EXTCONST char * AMG_names[NofAMmeth] = {
2136   "fallback",   "abs",                  /* "fallback" should be the first. */
2137   "bool",       "nomethod",
2138   "\"\"",       "0+",
2139   "+",          "+=",
2140   "-",          "-=",
2141   "*",          "*=",
2142   "/",          "/=",
2143   "%",          "%=",
2144   "**",         "**=",
2145   "<<",         "<<=",
2146   ">>",         ">>=",
2147   "&",          "&=",
2148   "|",          "|=",
2149   "^",          "^=",
2150   "<",          "<=",
2151   ">",          ">=",
2152   "==",         "!=",
2153   "<=>",        "cmp",
2154   "lt",         "le",
2155   "gt",         "ge",
2156   "eq",         "ne",
2157   "!",          "~",
2158   "++",         "--",
2159   "atan2",      "cos",
2160   "sin",        "exp",
2161   "log",        "sqrt",
2162   "x",          "x=",
2163   ".",          ".=",
2164   "=",          "neg"
2165 };
2166 #else
2167 EXTCONST char * AMG_names[NofAMmeth];
2168 #endif /* def INITAMAGIC */
2169
2170 struct am_table {
2171   long was_ok_sub;
2172   long was_ok_am;
2173   U32 flags;
2174   CV* table[NofAMmeth];
2175   long fallback;
2176 };
2177 struct am_table_short {
2178   long was_ok_sub;
2179   long was_ok_am;
2180   U32 flags;
2181 };
2182 typedef struct am_table AMT;
2183 typedef struct am_table_short AMTS;
2184
2185 #define AMGfallNEVER    1
2186 #define AMGfallNO       2
2187 #define AMGfallYES      3
2188
2189 #define AMTf_AMAGIC             1
2190 #define AMT_AMAGIC(amt)         ((amt)->flags & AMTf_AMAGIC)
2191 #define AMT_AMAGIC_on(amt)      ((amt)->flags |= AMTf_AMAGIC)
2192 #define AMT_AMAGIC_off(amt)     ((amt)->flags &= ~AMTf_AMAGIC)
2193
2194 enum {
2195   fallback_amg, abs_amg,
2196   bool__amg,    nomethod_amg,
2197   string_amg,   numer_amg,
2198   add_amg,      add_ass_amg,
2199   subtr_amg,    subtr_ass_amg,
2200   mult_amg,     mult_ass_amg,
2201   div_amg,      div_ass_amg,
2202   mod_amg,      mod_ass_amg,
2203   pow_amg,      pow_ass_amg,
2204   lshift_amg,   lshift_ass_amg,
2205   rshift_amg,   rshift_ass_amg,
2206   band_amg,     band_ass_amg,
2207   bor_amg,      bor_ass_amg,
2208   bxor_amg,     bxor_ass_amg,
2209   lt_amg,       le_amg,
2210   gt_amg,       ge_amg,
2211   eq_amg,       ne_amg,
2212   ncmp_amg,     scmp_amg,
2213   slt_amg,      sle_amg,
2214   sgt_amg,      sge_amg,
2215   seq_amg,      sne_amg,
2216   not_amg,      compl_amg,
2217   inc_amg,      dec_amg,
2218   atan2_amg,    cos_amg,
2219   sin_amg,      exp_amg,
2220   log_amg,      sqrt_amg,
2221   repeat_amg,   repeat_ass_amg,
2222   concat_amg,   concat_ass_amg,
2223   copy_amg,     neg_amg
2224 };
2225
2226 /*
2227  * some compilers like to redefine cos et alia as faster
2228  * (and less accurate?) versions called F_cos et cetera (Quidquid
2229  * latine dictum sit, altum viditur.)  This trick collides with
2230  * the Perl overloading (amg).  The following #defines fool both.
2231  */
2232
2233 #ifdef _FASTMATH
2234 #   ifdef atan2
2235 #       define F_atan2_amg  atan2_amg
2236 #   endif
2237 #   ifdef cos
2238 #       define F_cos_amg    cos_amg
2239 #   endif
2240 #   ifdef exp
2241 #       define F_exp_amg    exp_amg
2242 #   endif
2243 #   ifdef log
2244 #       define F_log_amg    log_amg
2245 #   endif
2246 #   ifdef pow
2247 #       define F_pow_amg    pow_amg
2248 #   endif
2249 #   ifdef sin
2250 #       define F_sin_amg    sin_amg
2251 #   endif
2252 #   ifdef sqrt
2253 #       define F_sqrt_amg   sqrt_amg
2254 #   endif
2255 #endif /* _FASTMATH */
2256
2257 #endif /* OVERLOAD */
2258
2259 #define PERLDB_ALL      0xff
2260 #define PERLDBf_SUB     0x01            /* Debug sub enter/exit. */
2261 #define PERLDBf_LINE    0x02            /* Keep line #. */
2262 #define PERLDBf_NOOPT   0x04            /* Switch off optimizations. */
2263 #define PERLDBf_INTER   0x08            /* Preserve more data for
2264                                            later inspections.  */
2265 #define PERLDBf_SUBLINE 0x10            /* Keep subr source lines. */
2266 #define PERLDBf_SINGLE  0x20            /* Start with single-step on. */
2267
2268 #define PERLDB_SUB      (perldb && (perldb & PERLDBf_SUB))
2269 #define PERLDB_LINE     (perldb && (perldb & PERLDBf_LINE))
2270 #define PERLDB_NOOPT    (perldb && (perldb & PERLDBf_NOOPT))
2271 #define PERLDB_INTER    (perldb && (perldb & PERLDBf_INTER))
2272 #define PERLDB_SUBLINE  (perldb && (perldb & PERLDBf_SUBLINE))
2273 #define PERLDB_SINGLE   (perldb && (perldb & PERLDBf_SINGLE))
2274
2275 #ifdef USE_LOCALE_COLLATE
2276 EXT U32         collation_ix;           /* Collation generation index */
2277 EXT char *      collation_name;         /* Name of current collation */
2278 EXT bool        collation_standard INIT(TRUE); /* Assume simple collation */
2279 EXT Size_t      collxfrm_base;          /* Basic overhead in *xfrm() */
2280 EXT Size_t      collxfrm_mult INIT(2);  /* Expansion factor in *xfrm() */
2281 #endif /* USE_LOCALE_COLLATE */
2282
2283 #ifdef USE_LOCALE_NUMERIC
2284
2285 EXT char *      numeric_name;           /* Name of current numeric locale */
2286 EXT bool        numeric_standard INIT(TRUE); /* Assume simple numerics */
2287 EXT bool        numeric_local INIT(TRUE);    /* Assume local numerics */
2288
2289 #define SET_NUMERIC_STANDARD() \
2290     STMT_START {                                \
2291         if (! numeric_standard)                 \
2292             perl_set_numeric_standard();        \
2293     } STMT_END
2294
2295 #define SET_NUMERIC_LOCAL() \
2296     STMT_START {                                \
2297         if (! numeric_local)                    \
2298             perl_set_numeric_local();           \
2299     } STMT_END
2300
2301 #else /* !USE_LOCALE_NUMERIC */
2302
2303 #define SET_NUMERIC_STANDARD()  /**/
2304 #define SET_NUMERIC_LOCAL()     /**/
2305
2306 #endif /* !USE_LOCALE_NUMERIC */
2307
2308 #if !defined(PERLIO_IS_STDIO) && defined(HAS_ATTRIBUTE)
2309 /* 
2310  * Now we have __attribute__ out of the way 
2311  * Remap printf 
2312  */
2313 #define printf PerlIO_stdoutf
2314 #endif
2315
2316 /*
2317  * nice_chunk and nice_chunk size need to be set
2318  * and queried under the protection of sv_mutex
2319  */
2320 #define offer_nice_chunk(chunk, chunk_size) do {        \
2321         MUTEX_LOCK(&sv_mutex);                          \
2322         if (!nice_chunk) {                              \
2323             nice_chunk = (char*)(chunk);                \
2324             nice_chunk_size = (chunk_size);             \
2325         }                                               \
2326         MUTEX_UNLOCK(&sv_mutex);                        \
2327     } while (0)
2328
2329 #endif /* Include guard */
2330