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