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