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