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