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