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