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