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