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