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