4d8b45ccc43cc8acd4b81b892824f027097a1df9
[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
12 #ifdef PERL_FOR_X2P
13 /*
14  * This file is being used for x2p stuff. 
15  * Above symbol is defined via -D in 'x2p/Makefile.SH'
16  * Decouple x2p stuff from some of perls more extreme eccentricities. 
17  */
18 #undef MULTIPLICITY
19 #undef USE_STDIO
20 #define USE_STDIO
21 #endif /* PERL_FOR_X2P */
22
23 #ifdef PERL_OBJECT
24
25 /* PERL_OBJECT explained  - DickH and DougL @ ActiveState.com
26
27 Defining PERL_OBJECT turns on creation of a C++ object that
28 contains all writable core perl global variables and functions.
29 Stated another way, all necessary global variables and functions
30 are members of a big C++ object. This object's class is CPerlObj.
31 This allows a Perl Host to have multiple, independent perl
32 interpreters in the same process space. This is very important on
33 Win32 systems as the overhead of process creation is quite high --
34 this could be even higher than the script compile and execute time
35 for small scripts.
36
37 The perl executable implementation on Win32 is composed of perl.exe
38 (the Perl Host) and perlX.dll. (the Perl Core). This allows the
39 same Perl Core to easily be embedded in other applications that use
40 the perl interpreter.
41
42 +-----------+
43 | Perl Host |
44 +-----------+
45       ^
46           |
47           v
48 +-----------+   +-----------+
49 | Perl Core |<->| Extension |
50 +-----------+   +-----------+ ...
51
52 Defining PERL_OBJECT has the following effects:
53
54 PERL CORE
55 1. CPerlObj is defined (this is the PERL_OBJECT)
56 2. all static functions that needed to access either global
57 variables or functions needed are made member functions
58 3. all writable static variables are made member variables
59 4. all global variables and functions are defined as:
60         #define var CPerlObj::PL_var
61         #define func CPerlObj::Perl_func
62         * these are in embed.h
63 This necessitated renaming some local variables and functions that
64 had the same name as a global variable or function. This was
65 probably a _good_ thing anyway.
66
67
68 EXTENSIONS
69 1. Access to global variables and perl functions is through a
70 pointer to the PERL_OBJECT. This pointer type is CPerlObj*. This is
71 made transparent to extension developers by the following macros:
72         #define var pPerl->PL_var
73         #define func pPerl->Perl_func
74         * these are done in objXSUB.h
75 This requires that the extension be compiled as C++, which means
76 that the code must be ANSI C and not K&R C. For K&R extensions,
77 please see the C API notes located in Win32/GenCAPI.pl. This script
78 creates a perlCAPI.lib that provides a K & R compatible C interface
79 to the PERL_OBJECT.
80 2. Local variables and functions cannot have the same name as perl's
81 variables or functions since the macros will redefine these. Look for
82 this if you get some strange error message and it does not look like
83 the code that you had written. This often happens with variables that
84 are local to a function.
85
86 PERL HOST
87 1. The perl host is linked with perlX.lib to get perl_alloc. This
88 function will return a pointer to CPerlObj (the PERL_OBJECT). It
89 takes pointers to the various PerlXXX_YYY interfaces (see iperlsys.h
90 for more information on this).
91 2. The perl host calls the same functions as normally would be
92 called in setting up and running a perl script, except that the
93 functions are now member functions of the PERL_OBJECT.
94
95 */
96
97
98 class CPerlObj;
99
100 #define STATIC
101 #define CPERLscope(x) CPerlObj::x
102 #define CPERLproto CPerlObj *
103 #define _CPERLproto ,CPERLproto
104 #define CPERLarg CPerlObj *pPerl
105 #define CPERLarg_ CPERLarg,
106 #define _CPERLarg ,CPERLarg
107 #define PERL_OBJECT_THIS this
108 #define _PERL_OBJECT_THIS ,this
109 #define PERL_OBJECT_THIS_ this,
110 #define CALL_FPTR(fptr) (this->*fptr)
111
112 #else /* !PERL_OBJECT */
113
114 #define STATIC static
115 #define CPERLscope(x) x
116 #define CPERLproto
117 #define _CPERLproto
118 #define CPERLarg void
119 #define CPERLarg_
120 #define _CPERLarg
121 #define PERL_OBJECT_THIS
122 #define _PERL_OBJECT_THIS
123 #define PERL_OBJECT_THIS_
124 #define CALL_FPTR(fptr) (*fptr)
125
126 #endif /* PERL_OBJECT */
127
128 #define CALLRUNOPS  CALL_FPTR(PL_runops)
129 #define CALLREGCOMP CALL_FPTR(PL_regcompp)
130 #define CALLREGEXEC CALL_FPTR(PL_regexecp)
131 #define CALLPROTECT CALL_FPTR(PL_protect)
132
133 #define VOIDUSED 1
134 #include "config.h"
135
136 #if !defined(PERL_FOR_X2P)
137 #  include "embed.h"
138 #endif
139
140 #undef START_EXTERN_C
141 #undef END_EXTERN_C
142 #undef EXTERN_C
143 #ifdef __cplusplus
144 #  define START_EXTERN_C extern "C" {
145 #  define END_EXTERN_C }
146 #  define EXTERN_C extern "C"
147 #else
148 #  define START_EXTERN_C 
149 #  define END_EXTERN_C 
150 #  define EXTERN_C
151 #endif
152
153 #ifdef OP_IN_REGISTER
154 #  ifdef __GNUC__
155 #    define stringify_immed(s) #s
156 #    define stringify(s) stringify_immed(s)
157 register struct op *Perl_op asm(stringify(OP_IN_REGISTER));
158 #  endif
159 #endif
160
161 /*
162  * STMT_START { statements; } STMT_END;
163  * can be used as a single statement, as in
164  * if (x) STMT_START { ... } STMT_END; else ...
165  *
166  * Trying to select a version that gives no warnings...
167  */
168 #if !(defined(STMT_START) && defined(STMT_END))
169 # if defined(__GNUC__) && !defined(__STRICT_ANSI__) && !defined(__cplusplus)
170 #   define STMT_START   (void)( /* gcc supports ``({ STATEMENTS; })'' */
171 #   define STMT_END     )
172 # else
173    /* Now which other defined()s do we need here ??? */
174 #  if (VOIDFLAGS) && (defined(sun) || defined(__sun__))
175 #   define STMT_START   if (1)
176 #   define STMT_END     else (void)0
177 #  else
178 #   define STMT_START   do
179 #   define STMT_END     while (0)
180 #  endif
181 # endif
182 #endif
183
184 #define NOOP (void)0
185
186 #define WITH_THR(s) STMT_START { dTHR; s; } STMT_END
187
188 /*
189  * SOFT_CAST can be used for args to prototyped functions to retain some
190  * type checking; it only casts if the compiler does not know prototypes.
191  */
192 #if defined(CAN_PROTOTYPE) && defined(DEBUGGING_COMPILE)
193 #define SOFT_CAST(type) 
194 #else
195 #define SOFT_CAST(type) (type)
196 #endif
197
198 #ifndef BYTEORDER  /* Should never happen -- byteorder is in config.h */
199 #   define BYTEORDER 0x1234
200 #endif
201
202 /* Overall memory policy? */
203 #ifndef CONSERVATIVE
204 #   define LIBERAL 1
205 #endif
206
207 #if 'A' == 65 && 'I' == 73 && 'J' == 74 && 'Z' == 90
208 #define ASCIIish
209 #else
210 #undef  ASCIIish
211 #endif
212
213 /*
214  * The following contortions are brought to you on behalf of all the
215  * standards, semi-standards, de facto standards, not-so-de-facto standards
216  * of the world, as well as all the other botches anyone ever thought of.
217  * The basic theory is that if we work hard enough here, the rest of the
218  * code can be a lot prettier.  Well, so much for theory.  Sorry, Henry...
219  */
220
221 /* define this once if either system, instead of cluttering up the src */
222 #if defined(MSDOS) || defined(atarist) || defined(WIN32) || defined(CYGWIN32)
223 #define DOSISH 1
224 #endif
225
226 #if defined(__STDC__) || defined(vax11c) || defined(_AIX) || defined(__stdc__) || defined(__cplusplus)
227 # define STANDARD_C 1
228 #endif
229
230 #if defined(__cplusplus) || defined(WIN32) || defined(__sgi) || defined(OS2) || defined(__DGUX)
231 # define DONT_DECLARE_STD 1
232 #endif
233
234 #if defined(HASVOLATILE) || defined(STANDARD_C)
235 #   ifdef __cplusplus
236 #       define VOL              // to temporarily suppress warnings
237 #   else
238 #       define VOL volatile
239 #   endif
240 #else
241 #   define VOL
242 #endif
243
244 #define TAINT           (PL_tainted = TRUE)
245 #define TAINT_NOT       (PL_tainted = FALSE)
246 #define TAINT_IF(c)     if (c) { PL_tainted = TRUE; }
247 #define TAINT_ENV()     if (PL_tainting) { taint_env(); }
248 #define TAINT_PROPER(s) if (PL_tainting) { taint_proper(Nullch, s); }
249
250 /* XXX All process group stuff is handled in pp_sys.c.  Should these 
251    defines move there?  If so, I could simplify this a lot. --AD  9/96.
252 */
253 /* Process group stuff changed from traditional BSD to POSIX.
254    perlfunc.pod documents the traditional BSD-style syntax, so we'll
255    try to preserve that, if possible.
256 */
257 #ifdef HAS_SETPGID
258 #  define BSD_SETPGRP(pid, pgrp)        setpgid((pid), (pgrp))
259 #else
260 #  if defined(HAS_SETPGRP) && defined(USE_BSD_SETPGRP)
261 #    define BSD_SETPGRP(pid, pgrp)      setpgrp((pid), (pgrp))
262 #  else
263 #    ifdef HAS_SETPGRP2  /* DG/UX */
264 #      define BSD_SETPGRP(pid, pgrp)    setpgrp2((pid), (pgrp))
265 #    endif
266 #  endif
267 #endif
268 #if defined(BSD_SETPGRP) && !defined(HAS_SETPGRP)
269 #  define HAS_SETPGRP  /* Well, effectively it does . . . */
270 #endif
271
272 /* getpgid isn't POSIX, but at least Solaris and Linux have it, and it makes
273     our life easier :-) so we'll try it.
274 */
275 #ifdef HAS_GETPGID
276 #  define BSD_GETPGRP(pid)              getpgid((pid))
277 #else
278 #  if defined(HAS_GETPGRP) && defined(USE_BSD_GETPGRP)
279 #    define BSD_GETPGRP(pid)            getpgrp((pid))
280 #  else
281 #    ifdef HAS_GETPGRP2  /* DG/UX */
282 #      define BSD_GETPGRP(pid)          getpgrp2((pid))
283 #    endif
284 #  endif
285 #endif
286 #if defined(BSD_GETPGRP) && !defined(HAS_GETPGRP)
287 #  define HAS_GETPGRP  /* Well, effectively it does . . . */
288 #endif
289
290 /* These are not exact synonyms, since setpgrp() and getpgrp() may 
291    have different behaviors, but perl.h used to define USE_BSDPGRP
292    (prior to 5.003_05) so some extension might depend on it.
293 */
294 #if defined(USE_BSD_SETPGRP) || defined(USE_BSD_GETPGRP)
295 #  ifndef USE_BSDPGRP
296 #    define USE_BSDPGRP
297 #  endif
298 #endif
299
300 /* HP-UX 10.X CMA (Common Multithreaded Architecure) insists that
301    pthread.h must be included before all other header files.
302 */
303 #if defined(USE_THREADS) && defined(PTHREAD_H_FIRST)
304 #  include <pthread.h>
305 #endif
306
307 #ifndef _TYPES_         /* If types.h defines this it's easy. */
308 #   ifndef major                /* Does everyone's types.h define this? */
309 #       include <sys/types.h>
310 #   endif
311 #endif
312
313 #ifdef __cplusplus
314 #  ifndef I_STDARG
315 #    define I_STDARG 1
316 #  endif
317 #endif
318
319 #ifdef I_STDARG
320 #  include <stdarg.h>
321 #else
322 #  ifdef I_VARARGS
323 #    include <varargs.h>
324 #  endif
325 #endif
326
327 #include "iperlsys.h"
328
329 #ifdef USE_NEXT_CTYPE
330
331 #if NX_CURRENT_COMPILER_RELEASE >= 500
332 #  include <bsd/ctypes.h>
333 #else
334 #  if NX_CURRENT_COMPILER_RELEASE >= 400
335 #    include <objc/NXCType.h>
336 #  else /*  NX_CURRENT_COMPILER_RELEASE < 400 */
337 #    include <appkit/NXCType.h>
338 #  endif /*  NX_CURRENT_COMPILER_RELEASE >= 400 */
339 #endif /*  NX_CURRENT_COMPILER_RELEASE >= 500 */
340
341 #else /* !USE_NEXT_CTYPE */
342 #include <ctype.h>
343 #endif /* USE_NEXT_CTYPE */
344
345 #ifdef METHOD   /* Defined by OSF/1 v3.0 by ctype.h */
346 #undef METHOD
347 #endif
348
349 #ifdef I_LOCALE
350 #   include <locale.h>
351 #endif
352
353 #if !defined(NO_LOCALE) && defined(HAS_SETLOCALE)
354 #   define USE_LOCALE
355 #   if !defined(NO_LOCALE_COLLATE) && defined(LC_COLLATE) \
356        && defined(HAS_STRXFRM)
357 #       define USE_LOCALE_COLLATE
358 #   endif
359 #   if !defined(NO_LOCALE_CTYPE) && defined(LC_CTYPE)
360 #       define USE_LOCALE_CTYPE
361 #   endif
362 #   if !defined(NO_LOCALE_NUMERIC) && defined(LC_NUMERIC)
363 #       define USE_LOCALE_NUMERIC
364 #   endif
365 #endif /* !NO_LOCALE && HAS_SETLOCALE */
366
367 #include <setjmp.h>
368
369 #ifdef I_SYS_PARAM
370 #   ifdef PARAM_NEEDS_TYPES
371 #       include <sys/types.h>
372 #   endif
373 #   include <sys/param.h>
374 #endif
375
376
377 /* Use all the "standard" definitions? */
378 #if defined(STANDARD_C) && defined(I_STDLIB)
379 #   include <stdlib.h>
380 #endif
381
382 #define MEM_SIZE Size_t
383
384 /* This comes after <stdlib.h> so we don't try to change the standard
385  * library prototypes; we'll use our own in proto.h instead. */
386
387 #ifdef MYMALLOC
388 #  ifdef PERL_POLLUTE_MALLOC
389 #    define Perl_malloc         malloc
390 #    define Perl_calloc         calloc
391 #    define Perl_realloc        realloc
392 #    define Perl_mfree          free
393 #  else
394 #    define EMBEDMYMALLOC       /* for compatibility */
395 #  endif
396 Malloc_t Perl_malloc _((MEM_SIZE nbytes));
397 Malloc_t Perl_calloc _((MEM_SIZE elements, MEM_SIZE size));
398 Malloc_t Perl_realloc _((Malloc_t where, MEM_SIZE nbytes));
399 /* 'mfree' rather than 'free', since there is already a 'perl_free'
400  * that causes clashes with case-insensitive linkers */
401 Free_t   Perl_mfree _((Malloc_t where));
402
403 #  define safemalloc  Perl_malloc
404 #  define safecalloc  Perl_calloc
405 #  define saferealloc Perl_realloc
406 #  define safefree    Perl_mfree
407 #else  /* MYMALLOC */
408 #  define safemalloc  safesysmalloc
409 #  define safecalloc  safesyscalloc
410 #  define saferealloc safesysrealloc
411 #  define safefree    safesysfree
412 #endif /* MYMALLOC */
413
414 #if defined(STANDARD_C) && defined(I_STDDEF)
415 #   include <stddef.h>
416 #   define STRUCT_OFFSET(s,m)  offsetof(s,m)
417 #else
418 #   define STRUCT_OFFSET(s,m)  (Size_t)(&(((s *)0)->m))
419 #endif
420
421 #if defined(I_STRING) || defined(__cplusplus)
422 #   include <string.h>
423 #else
424 #   include <strings.h>
425 #endif
426
427 #if !defined(HAS_STRCHR) && defined(HAS_INDEX) && !defined(strchr)
428 #define strchr index
429 #define strrchr rindex
430 #endif
431
432 #ifdef I_MEMORY
433 #  include <memory.h>
434 #endif
435
436 #ifdef HAS_MEMCPY
437 #  if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY)
438 #    ifndef memcpy
439         extern char * memcpy _((char*, char*, int));
440 #    endif
441 #  endif
442 #else
443 #   ifndef memcpy
444 #       ifdef HAS_BCOPY
445 #           define memcpy(d,s,l) bcopy(s,d,l)
446 #       else
447 #           define memcpy(d,s,l) my_bcopy(s,d,l)
448 #       endif
449 #   endif
450 #endif /* HAS_MEMCPY */
451
452 #ifdef HAS_MEMSET
453 #  if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY)
454 #    ifndef memset
455         extern char *memset _((char*, int, int));
456 #    endif
457 #  endif
458 #else
459 #  define memset(d,c,l) my_memset(d,c,l)
460 #endif /* HAS_MEMSET */
461
462 #if !defined(HAS_MEMMOVE) && !defined(memmove)
463 #   if defined(HAS_BCOPY) && defined(HAS_SAFE_BCOPY)
464 #       define memmove(d,s,l) bcopy(s,d,l)
465 #   else
466 #       if defined(HAS_MEMCPY) && defined(HAS_SAFE_MEMCPY)
467 #           define memmove(d,s,l) memcpy(d,s,l)
468 #       else
469 #           define memmove(d,s,l) my_bcopy(s,d,l)
470 #       endif
471 #   endif
472 #endif
473
474 #if defined(mips) && defined(ultrix) && !defined(__STDC__)
475 #   undef HAS_MEMCMP
476 #endif
477
478 #if defined(HAS_MEMCMP) && defined(HAS_SANE_MEMCMP)
479 #  if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY)
480 #    ifndef memcmp
481         extern int memcmp _((char*, char*, int));
482 #    endif
483 #  endif
484 #  ifdef BUGGY_MSC
485   #  pragma function(memcmp)
486 #  endif
487 #else
488 #   ifndef memcmp
489 #       define memcmp   my_memcmp
490 #   endif
491 #endif /* HAS_MEMCMP && HAS_SANE_MEMCMP */
492
493 #ifndef memzero
494 #   ifdef HAS_MEMSET
495 #       define memzero(d,l) memset(d,0,l)
496 #   else
497 #       ifdef HAS_BZERO
498 #           define memzero(d,l) bzero(d,l)
499 #       else
500 #           define memzero(d,l) my_bzero(d,l)
501 #       endif
502 #   endif
503 #endif
504
505 #ifndef HAS_BCMP
506 #   ifndef bcmp
507 #       define bcmp(s1,s2,l) memcmp(s1,s2,l)
508 #   endif
509 #endif /* !HAS_BCMP */
510
511 #ifdef I_NETINET_IN
512 #   include <netinet/in.h>
513 #endif
514
515 #ifdef I_ARPA_INET
516 #   include <arpa/inet.h>
517 #endif
518
519 #if defined(SF_APPEND) && defined(USE_SFIO) && defined(I_SFIO)
520 /* <sfio.h> defines SF_APPEND and <sys/stat.h> might define SF_APPEND
521  * (the neo-BSD seem to do this).  */
522 #   undef SF_APPEND
523 #endif
524
525 #ifdef I_SYS_STAT
526 #   include <sys/stat.h>
527 #endif
528
529 /* The stat macros for Amdahl UTS, Unisoft System V/88 (and derivatives
530    like UTekV) are broken, sometimes giving false positives.  Undefine
531    them here and let the code below set them to proper values.
532
533    The ghs macro stands for GreenHills Software C-1.8.5 which
534    is the C compiler for sysV88 and the various derivatives.
535    This header file bug is corrected in gcc-2.5.8 and later versions.
536    --Kaveh Ghazi (ghazi@noc.rutgers.edu) 10/3/94.  */
537
538 #if defined(uts) || (defined(m88k) && defined(ghs))
539 #   undef S_ISDIR
540 #   undef S_ISCHR
541 #   undef S_ISBLK
542 #   undef S_ISREG
543 #   undef S_ISFIFO
544 #   undef S_ISLNK
545 #endif
546
547 #ifdef I_TIME
548 #   include <time.h>
549 #endif
550
551 #ifdef I_SYS_TIME
552 #   ifdef I_SYS_TIME_KERNEL
553 #       define KERNEL
554 #   endif
555 #   include <sys/time.h>
556 #   ifdef I_SYS_TIME_KERNEL
557 #       undef KERNEL
558 #   endif
559 #endif
560
561 #if defined(HAS_TIMES) && defined(I_SYS_TIMES)
562 #    include <sys/times.h>
563 #endif
564
565 #if defined(HAS_STRERROR) && (!defined(HAS_MKDIR) || !defined(HAS_RMDIR))
566 #   undef HAS_STRERROR
567 #endif
568
569 #include <errno.h>
570 #ifdef HAS_SOCKET
571 #   ifdef I_NET_ERRNO
572 #     include <net/errno.h>
573 #   endif
574 #endif
575
576 #ifdef VMS
577 #   define SETERRNO(errcode,vmserrcode) \
578         STMT_START {                    \
579             set_errno(errcode);         \
580             set_vaxc_errno(vmserrcode); \
581         } STMT_END
582 #else
583 #   define SETERRNO(errcode,vmserrcode) (errno = (errcode))
584 #endif
585
586 #ifdef USE_THREADS
587 #  define ERRSV (thr->errsv)
588 #  define ERRHV (thr->errhv)
589 #  define DEFSV THREADSV(0)
590 #  define SAVE_DEFSV save_threadsv(0)
591 #else
592 #  define ERRSV GvSV(PL_errgv)
593 #  define ERRHV GvHV(PL_errgv)
594 #  define DEFSV GvSV(PL_defgv)
595 #  define SAVE_DEFSV SAVESPTR(GvSV(PL_defgv))
596 #endif /* USE_THREADS */
597
598 #ifndef errno
599         extern int errno;     /* ANSI allows errno to be an lvalue expr.
600                                * For example in multithreaded environments
601                                * something like this might happen:
602                                * extern int *_errno(void);
603                                * #define errno (*_errno()) */
604 #endif
605
606 #ifdef HAS_STRERROR
607 #       ifdef VMS
608         char *strerror _((int,...));
609 #       else
610 #ifndef DONT_DECLARE_STD
611         char *strerror _((int));
612 #endif
613 #       endif
614 #       ifndef Strerror
615 #           define Strerror strerror
616 #       endif
617 #else
618 #    ifdef HAS_SYS_ERRLIST
619         extern int sys_nerr;
620         extern char *sys_errlist[];
621 #       ifndef Strerror
622 #           define Strerror(e) \
623                 ((e) < 0 || (e) >= sys_nerr ? "(unknown)" : sys_errlist[e])
624 #       endif
625 #   endif
626 #endif
627
628 #ifdef I_SYS_IOCTL
629 #   ifndef _IOCTL_
630 #       include <sys/ioctl.h>
631 #   endif
632 #endif
633
634 #if defined(mc300) || defined(mc500) || defined(mc700) || defined(mc6000)
635 #   ifdef HAS_SOCKETPAIR
636 #       undef HAS_SOCKETPAIR
637 #   endif
638 #   ifdef I_NDBM
639 #       undef I_NDBM
640 #   endif
641 #endif
642
643 #if INTSIZE == 2
644 #   define htoni htons
645 #   define ntohi ntohs
646 #else
647 #   define htoni htonl
648 #   define ntohi ntohl
649 #endif
650
651 /* Configure already sets Direntry_t */
652 #if defined(I_DIRENT)
653 #   include <dirent.h>
654     /* NeXT needs dirent + sys/dir.h */
655 #   if  defined(I_SYS_DIR) && (defined(NeXT) || defined(__NeXT__))
656 #       include <sys/dir.h>
657 #   endif
658 #else
659 #   ifdef I_SYS_NDIR
660 #       include <sys/ndir.h>
661 #   else
662 #       ifdef I_SYS_DIR
663 #           ifdef hp9000s500
664 #               include <ndir.h>        /* may be wrong in the future */
665 #           else
666 #               include <sys/dir.h>
667 #           endif
668 #       endif
669 #   endif
670 #endif
671
672 #ifdef FPUTS_BOTCH
673 /* work around botch in SunOS 4.0.1 and 4.0.2 */
674 #   ifndef fputs
675 #       define fputs(sv,fp) fprintf(fp,"%s",sv)
676 #   endif
677 #endif
678
679 /*
680  * The following gobbledygook brought to you on behalf of __STDC__.
681  * (I could just use #ifndef __STDC__, but this is more bulletproof
682  * in the face of half-implementations.)
683  */
684
685 #ifndef S_IFMT
686 #   ifdef _S_IFMT
687 #       define S_IFMT _S_IFMT
688 #   else
689 #       define S_IFMT 0170000
690 #   endif
691 #endif
692
693 #ifndef S_ISDIR
694 #   define S_ISDIR(m) ((m & S_IFMT) == S_IFDIR)
695 #endif
696
697 #ifndef S_ISCHR
698 #   define S_ISCHR(m) ((m & S_IFMT) == S_IFCHR)
699 #endif
700
701 #ifndef S_ISBLK
702 #   ifdef S_IFBLK
703 #       define S_ISBLK(m) ((m & S_IFMT) == S_IFBLK)
704 #   else
705 #       define S_ISBLK(m) (0)
706 #   endif
707 #endif
708
709 #ifndef S_ISREG
710 #   define S_ISREG(m) ((m & S_IFMT) == S_IFREG)
711 #endif
712
713 #ifndef S_ISFIFO
714 #   ifdef S_IFIFO
715 #       define S_ISFIFO(m) ((m & S_IFMT) == S_IFIFO)
716 #   else
717 #       define S_ISFIFO(m) (0)
718 #   endif
719 #endif
720
721 #ifndef S_ISLNK
722 #   ifdef _S_ISLNK
723 #       define S_ISLNK(m) _S_ISLNK(m)
724 #   else
725 #       ifdef _S_IFLNK
726 #           define S_ISLNK(m) ((m & S_IFMT) == _S_IFLNK)
727 #       else
728 #           ifdef S_IFLNK
729 #               define S_ISLNK(m) ((m & S_IFMT) == S_IFLNK)
730 #           else
731 #               define S_ISLNK(m) (0)
732 #           endif
733 #       endif
734 #   endif
735 #endif
736
737 #ifndef S_ISSOCK
738 #   ifdef _S_ISSOCK
739 #       define S_ISSOCK(m) _S_ISSOCK(m)
740 #   else
741 #       ifdef _S_IFSOCK
742 #           define S_ISSOCK(m) ((m & S_IFMT) == _S_IFSOCK)
743 #       else
744 #           ifdef S_IFSOCK
745 #               define S_ISSOCK(m) ((m & S_IFMT) == S_IFSOCK)
746 #           else
747 #               define S_ISSOCK(m) (0)
748 #           endif
749 #       endif
750 #   endif
751 #endif
752
753 #ifndef S_IRUSR
754 #   ifdef S_IREAD
755 #       define S_IRUSR S_IREAD
756 #       define S_IWUSR S_IWRITE
757 #       define S_IXUSR S_IEXEC
758 #   else
759 #       define S_IRUSR 0400
760 #       define S_IWUSR 0200
761 #       define S_IXUSR 0100
762 #   endif
763 #   define S_IRGRP (S_IRUSR>>3)
764 #   define S_IWGRP (S_IWUSR>>3)
765 #   define S_IXGRP (S_IXUSR>>3)
766 #   define S_IROTH (S_IRUSR>>6)
767 #   define S_IWOTH (S_IWUSR>>6)
768 #   define S_IXOTH (S_IXUSR>>6)
769 #endif
770
771 #ifndef S_ISUID
772 #   define S_ISUID 04000
773 #endif
774
775 #ifndef S_ISGID
776 #   define S_ISGID 02000
777 #endif
778
779 #ifdef ff_next
780 #   undef ff_next
781 #endif
782
783 #if defined(cray) || defined(gould) || defined(i860) || defined(pyr)
784 #   define SLOPPYDIVIDE
785 #endif
786
787 #ifdef UV
788 #undef UV
789 #endif
790
791 #ifdef I_INTTYPES
792 #include <inttypes.h>
793 #endif
794
795 /*  XXX QUAD stuff is not currently supported on most systems.
796     Specifically, perl internals don't support long long.  Among
797     the many problems is that some compilers support long long,
798     but the underlying library functions (such as sprintf) don't.
799     Some things do work (such as quad pack/unpack on convex);
800     also some systems use long long for the fpos_t typedef.  That
801     seems to work too.
802
803     The IV type is supposed to be long enough to hold any integral
804     value or a pointer.
805     --Andy Dougherty    August 1996
806 */
807
808 /*  Much more 64-bit probing added.  Now we should get Quad_t
809     in most systems: int64_t, long long, long, int, will do.
810
811     Beware of LP32 systems (ILP32, ILP32LL64).  Such systems have been
812     used to sizeof(long) == sizeof(foo*).  This is a bad assumption
813     because then IV/UV have been 32 bits, too.  Which, in turn means
814     that even if the system has quads (e.g. long long), IV cannot be a
815     quad.  Introducing a 64-bit IV (because of long long existing)
816     will introduce binary incompatibility.
817
818     Summary: a long long system needs to add -DUSE_LONG_LONG to $ccflags
819     to get quads -- and if its pointers are still 32 bits, this will break
820     binary compatibility.  Casting an IV (a long long) to a pointer will
821     truncate half of the IV away.
822
823     --jhi               September 1998 */
824
825 #if INTSIZE == 4 && LONGSIZE == 4 && PTRSIZE == 4
826 #   define PERL_ILP32
827 #   if defined(HAS_LONG_LONG) && LONGLONGSIZE == 8
828 #       define PERL_ILP32LL64
829 #   endif
830 #endif
831
832 #if LONGSIZE == 8 && PTRSIZE == 8
833 #   define PERL_LP64
834 #   if INTSIZE == 8
835 #        define PERL_ILP64
836 #   endif
837 #endif
838
839 #ifndef Quad_t
840 #    if LONGSIZE == 8
841 #       define Quad_t  long
842 #       define Uquad_t unsigned long
843 #       define PERL_QUAD_IS_LONG
844 #    endif
845 #endif
846
847 #ifndef Quad_t
848 #    if INTSIZE == 8
849 #       define Quad_t  int
850 #       define Uquad_t unsigned int
851 #       define PERL_QUAD_IS_INT
852 #    endif
853 #endif
854
855 #ifndef Quad_t
856 #    ifdef USE_LONG_LONG /* See above note about LP32. --jhi */
857 #       if defined(HAS_LONG_LONG) && LONGLONGSIZE == 8
858 #           define Quad_t  long long
859 #           define Uquad_t unsigned long long
860 #           define PERL_QUAD_IS_LONG_LONG
861 #       endif
862 #    endif
863 #endif
864
865 #ifndef Quad_t
866 #    ifdef HAS_INT64_T
867 #        define Quad_t  int64_t
868 #        define Uquad_t uint64_t
869 #        define PERL_QUAD_IS_INT64_T
870 #    endif
871 #endif
872
873 #ifdef Quad_t
874 #   define HAS_QUAD
875 #   ifndef Uquad_t
876     /* Note that if your Quad_t is a typedef (not a #define) you *MUST*
877      * have defined by now Uquad_t yourself because 'unsigned type'
878      * is illegal. */
879 #       define Uquad_t unsigned Quad_t
880 #   endif
881 #endif
882
883 #if defined(USE_64_BITS) && defined(HAS_QUAD)
884 #  ifdef PERL_QUAD_IS_LONG                      /* LP64 */
885    typedef          long               IV;
886    typedef          unsigned long      UV;
887 #  else
888 #      ifdef PERL_QUAD_IS_INT                   /* ILP64 */
889    typedef          int                IV;
890    typedef          unsigned int       UV;
891 #      else
892 #          ifdef PERL_QUAD_IS_LONG_LONG         /* LL64 */
893    typedef          long long          IV;
894    typedef          unsigned long long UV;
895 #          else
896 #              ifdef PERL_QUAD_IS_INT64_T       /* C9X */
897    typedef          int64_t            IV;
898    typedef          uint64_t           UV;
899 #              endif
900 #          endif
901 #      endif
902 #  endif     
903 #  if defined(PERL_QUAD_IS_INT64_T) && defined(INT64_MAX)
904 #    define IV_MAX INT64_MAX
905 #    define IV_MIN INT64_MIN
906 #    define UV_MAX UINT64_MAX
907 #    define UV_MIN UINT64_MIN
908 #  else
909 #    define IV_MAX PERL_QUAD_MAX
910 #    define IV_MIN PERL_QUAD_MIN
911 #    define UV_MAX PERL_UQUAD_MAX
912 #    define UV_MIN PERL_UQUAD_MIN
913 #  endif
914 #else
915    typedef          long               IV;
916    typedef          unsigned long      UV;
917 #  if defined(INT32_MAX) && LONGSIZE == 4
918 #    define IV_MAX INT32_MAX
919 #    define IV_MIN INT32_MIN
920 #    define UV_MAX UINT32_MAX
921 #    define UV_MIN UINT32_MIN
922 #  else
923 #    define IV_MAX PERL_LONG_MAX
924 #    define IV_MIN PERL_LONG_MIN
925 #    define UV_MAX PERL_ULONG_MAX
926 #    define UV_MIN PERL_ULONG_MIN
927 #  endif
928 #endif
929
930 /* Previously these definitions used hardcoded figures. 
931  * It is hoped these formula are more portable, although
932  * no data one way or another is presently known to me.
933  * The "PERL_" names are used because these calculated constants
934  * do not meet the ANSI requirements for LONG_MAX, etc., which
935  * need to be constants acceptable to #if - kja
936  *    define PERL_LONG_MAX        2147483647L
937  *    define PERL_LONG_MIN        (-LONG_MAX - 1)
938  *    define PERL ULONG_MAX       4294967295L
939  */
940
941 #ifdef I_LIMITS  /* Needed for cast_xxx() functions below. */
942 #  include <limits.h>
943 #else
944 #ifdef I_VALUES
945 #  include <values.h>
946 #endif
947 #endif
948
949 /*
950  * Try to figure out max and min values for the integral types.  THE CORRECT
951  * SOLUTION TO THIS MESS: ADAPT enquire.c FROM GCC INTO CONFIGURE.  The
952  * following hacks are used if neither limits.h or values.h provide them:
953  * U<TYPE>_MAX: for types >= int: ~(unsigned TYPE)0
954  *              for types <  int:  (unsigned TYPE)~(unsigned)0
955  *      The argument to ~ must be unsigned so that later signed->unsigned
956  *      conversion can't modify the value's bit pattern (e.g. -0 -> +0),
957  *      and it must not be smaller than int because ~ does integral promotion.
958  * <type>_MAX: (<type>) (U<type>_MAX >> 1)
959  * <type>_MIN: -<type>_MAX - <is_twos_complement_architecture: (3 & -1) == 3>.
960  *      The latter is a hack which happens to work on some machines but
961  *      does *not* catch any random system, or things like integer types
962  *      with NaN if that is possible.
963  *
964  * All of the types are explicitly cast to prevent accidental loss of
965  * numeric range, and in the hope that they will be less likely to confuse
966  * over-eager optimizers.
967  *
968  */
969
970 #define PERL_UCHAR_MIN ((unsigned char)0)
971
972 #ifdef UCHAR_MAX
973 #  define PERL_UCHAR_MAX ((unsigned char)UCHAR_MAX)
974 #else
975 #  ifdef MAXUCHAR
976 #    define PERL_UCHAR_MAX ((unsigned char)MAXUCHAR)
977 #  else
978 #    define PERL_UCHAR_MAX       ((unsigned char)~(unsigned)0)
979 #  endif
980 #endif
981  
982 /*
983  * CHAR_MIN and CHAR_MAX are not included here, as the (char) type may be
984  * ambiguous. It may be equivalent to (signed char) or (unsigned char)
985  * depending on local options. Until Configure detects this (or at least
986  * detects whether the "signed" keyword is available) the CHAR ranges
987  * will not be included. UCHAR functions normally.
988  *                                                           - kja
989  */
990
991 #define PERL_USHORT_MIN ((unsigned short)0)
992
993 #ifdef USHORT_MAX
994 #  define PERL_USHORT_MAX ((unsigned short)USHORT_MAX)
995 #else
996 #  ifdef MAXUSHORT
997 #    define PERL_USHORT_MAX ((unsigned short)MAXUSHORT)
998 #  else
999 #    ifdef USHRT_MAX
1000 #      define PERL_USHORT_MAX ((unsigned short)USHRT_MAX)
1001 #    else
1002 #      define PERL_USHORT_MAX       ((unsigned short)~(unsigned)0)
1003 #    endif
1004 #  endif
1005 #endif
1006
1007 #ifdef SHORT_MAX
1008 #  define PERL_SHORT_MAX ((short)SHORT_MAX)
1009 #else
1010 #  ifdef MAXSHORT    /* Often used in <values.h> */
1011 #    define PERL_SHORT_MAX ((short)MAXSHORT)
1012 #  else
1013 #    ifdef SHRT_MAX
1014 #      define PERL_SHORT_MAX ((short)SHRT_MAX)
1015 #    else
1016 #      define PERL_SHORT_MAX      ((short) (PERL_USHORT_MAX >> 1))
1017 #    endif
1018 #  endif
1019 #endif
1020
1021 #ifdef SHORT_MIN
1022 #  define PERL_SHORT_MIN ((short)SHORT_MIN)
1023 #else
1024 #  ifdef MINSHORT
1025 #    define PERL_SHORT_MIN ((short)MINSHORT)
1026 #  else
1027 #    ifdef SHRT_MIN
1028 #      define PERL_SHORT_MIN ((short)SHRT_MIN)
1029 #    else
1030 #      define PERL_SHORT_MIN        (-PERL_SHORT_MAX - ((3 & -1) == 3))
1031 #    endif
1032 #  endif
1033 #endif
1034
1035 #ifdef UINT_MAX
1036 #  define PERL_UINT_MAX ((unsigned int)UINT_MAX)
1037 #else
1038 #  ifdef MAXUINT
1039 #    define PERL_UINT_MAX ((unsigned int)MAXUINT)
1040 #  else
1041 #    define PERL_UINT_MAX       (~(unsigned int)0)
1042 #  endif
1043 #endif
1044
1045 #define PERL_UINT_MIN ((unsigned int)0)
1046
1047 #ifdef INT_MAX
1048 #  define PERL_INT_MAX ((int)INT_MAX)
1049 #else
1050 #  ifdef MAXINT    /* Often used in <values.h> */
1051 #    define PERL_INT_MAX ((int)MAXINT)
1052 #  else
1053 #    define PERL_INT_MAX        ((int)(PERL_UINT_MAX >> 1))
1054 #  endif
1055 #endif
1056
1057 #ifdef INT_MIN
1058 #  define PERL_INT_MIN ((int)INT_MIN)
1059 #else
1060 #  ifdef MININT
1061 #    define PERL_INT_MIN ((int)MININT)
1062 #  else
1063 #    define PERL_INT_MIN        (-PERL_INT_MAX - ((3 & -1) == 3))
1064 #  endif
1065 #endif
1066
1067 #ifdef ULONG_MAX
1068 #  define PERL_ULONG_MAX ((unsigned long)ULONG_MAX)
1069 #else
1070 #  ifdef MAXULONG
1071 #    define PERL_ULONG_MAX ((unsigned long)MAXULONG)
1072 #  else
1073 #    define PERL_ULONG_MAX       (~(unsigned long)0)
1074 #  endif
1075 #endif
1076
1077 #define PERL_ULONG_MIN ((unsigned long)0L)
1078
1079 #ifdef LONG_MAX
1080 #  define PERL_LONG_MAX ((long)LONG_MAX)
1081 #else
1082 #  ifdef MAXLONG    /* Often used in <values.h> */
1083 #    define PERL_LONG_MAX ((long)MAXLONG)
1084 #  else
1085 #    define PERL_LONG_MAX        ((long) (PERL_ULONG_MAX >> 1))
1086 #  endif
1087 #endif
1088
1089 #ifdef LONG_MIN
1090 #  define PERL_LONG_MIN ((long)LONG_MIN)
1091 #else
1092 #  ifdef MINLONG
1093 #    define PERL_LONG_MIN ((long)MINLONG)
1094 #  else
1095 #    define PERL_LONG_MIN        (-PERL_LONG_MAX - ((3 & -1) == 3))
1096 #  endif
1097 #endif
1098
1099 #ifdef HAS_QUAD
1100
1101 #  ifdef UQUAD_MAX
1102 #    define PERL_UQUAD_MAX ((UV)UQUAD_MAX)
1103 #  else
1104 #    define PERL_UQUAD_MAX      (~(UV)0)
1105 #  endif
1106
1107 #  define PERL_UQUAD_MIN ((UV)0)
1108
1109 #  ifdef QUAD_MAX
1110 #    define PERL_QUAD_MAX ((IV)QUAD_MAX)
1111 #  else
1112 #    define PERL_QUAD_MAX       ((IV) (PERL_UQUAD_MAX >> 1))
1113 #  endif
1114
1115 #  ifdef QUAD_MIN
1116 #    define PERL_QUAD_MIN ((IV)QUAD_MIN)
1117 #  else
1118 #    define PERL_QUAD_MIN       (-PERL_QUAD_MAX - ((3 & -1) == 3))
1119 #  endif
1120
1121 #endif
1122
1123 typedef MEM_SIZE STRLEN;
1124
1125 typedef struct op OP;
1126 typedef struct cop COP;
1127 typedef struct unop UNOP;
1128 typedef struct binop BINOP;
1129 typedef struct listop LISTOP;
1130 typedef struct logop LOGOP;
1131 typedef struct condop CONDOP;
1132 typedef struct pmop PMOP;
1133 typedef struct svop SVOP;
1134 typedef struct gvop GVOP;
1135 typedef struct pvop PVOP;
1136 typedef struct loop LOOP;
1137
1138 typedef struct Outrec Outrec;
1139 typedef struct interpreter PerlInterpreter;
1140 #ifndef __BORLANDC__
1141 typedef struct ff FF;           /* XXX not defined anywhere, should go? */
1142 #endif
1143 typedef struct sv SV;
1144 typedef struct av AV;
1145 typedef struct hv HV;
1146 typedef struct cv CV;
1147 typedef struct regexp REGEXP;
1148 typedef struct gp GP;
1149 typedef struct gv GV;
1150 typedef struct io IO;
1151 typedef struct context PERL_CONTEXT;
1152 typedef struct block BLOCK;
1153
1154 typedef struct magic MAGIC;
1155 typedef struct xrv XRV;
1156 typedef struct xpv XPV;
1157 typedef struct xpviv XPVIV;
1158 typedef struct xpvuv XPVUV;
1159 typedef struct xpvnv XPVNV;
1160 typedef struct xpvmg XPVMG;
1161 typedef struct xpvlv XPVLV;
1162 typedef struct xpvav XPVAV;
1163 typedef struct xpvhv XPVHV;
1164 typedef struct xpvgv XPVGV;
1165 typedef struct xpvcv XPVCV;
1166 typedef struct xpvbm XPVBM;
1167 typedef struct xpvfm XPVFM;
1168 typedef struct xpvio XPVIO;
1169 typedef struct mgvtbl MGVTBL;
1170 typedef union any ANY;
1171
1172 #include "handy.h"
1173
1174 /* Some day when we have more 64-bit experience under our belts we may
1175  * be able to merge some of the USE_64_BIT_{FILES,OFFSETS,STDIO,DBM}. At
1176  * the moment (Oct 1998), though, keep them separate. --jhi
1177  */
1178 #ifdef USE_64_BITS
1179 #   ifdef USE_64_BIT_FILES
1180 #       ifndef USE_64_BIT_OFFSETS
1181 #          define USE_64_BIT_OFFSETS
1182 #       endif
1183 #       ifndef USE_64_BIT_STDIO
1184 #           define USE_64_BIT_STDIO
1185 #       endif
1186 #       ifndef USE_64_BIT_DBM
1187 #           define USE_64_BIT_DBM
1188 #       endif
1189 #   endif
1190 /* Mention LSEEKSIZE here to get it included in %Config. */
1191 #   ifdef USE_64_BIT_OFFSETS
1192 #       ifdef HAS_FSTAT64
1193 #           define fstat fstat64
1194 #       endif
1195 #       ifdef HAS_FTRUNCATE64
1196 #           define ftruncate ftruncate64
1197 #       endif
1198 #       ifdef HAS_LSEEK64
1199 #           define lseek lseek64
1200 #           ifdef HAS_OFF64_T
1201 #               undef Off_t
1202 #               define Off_t off64_t
1203 #           endif
1204 #       endif
1205 #       ifdef HAS_LSTAT64
1206 #           define lstat lstat64
1207 #       endif
1208         /* Some systems have open64() in libc but use that only
1209          * for true LP64 mode, in mixed mode (ILP32LL64, for example)
1210          * they use the vanilla open().  Such systems should undefine
1211          * d_open64 in their hints files. --jhi */
1212 #       if defined(HAS_OPEN64)
1213 #           define open open64
1214 #       endif
1215 #       ifdef HAS_OPENDIR64
1216 #           define opendir opendir64
1217 #       endif
1218 #       ifdef HAS_READDIR64
1219 #           define readdir readdir64
1220 #           ifdef HAS_STRUCT_DIRENT64
1221 #               define dirent dirent64
1222 #           endif
1223 #       endif
1224 #       ifdef HAS_SEEKDIR64
1225 #           define seekdir seekdir64
1226 #       endif
1227 #       ifdef HAS_STAT64
1228 #           define stat stat64 /* Affects also struct stat, hopefully okay. */
1229 #       endif
1230 #       ifdef HAS_TELLDIR64
1231 #           define telldir telldir64
1232 #       endif
1233 #       ifdef HAS_TRUNCATE64
1234 #           define truncate truncate64
1235 #       endif
1236         /* flock is not #defined here to be flock64 because it seems
1237            that a system may have struct flock64 but still use flock()
1238            and not flock64().  The actual flocking code in pp_sys.c
1239            must be changed.  Also lockf and lockf64 must be dealt
1240            with in pp_sys.c. --jhi */
1241 #   endif
1242 #   ifdef USE_64_BIT_STDIO
1243 #       ifdef HAS_FGETPOS64
1244 #           define fgetpos fgetpos64
1245 #       endif
1246 #       ifdef HAS_FOPEN64
1247 #           define fopen fopen64
1248 #       endif
1249 #       ifdef HAS_FREOPEN64
1250 #           define freopen freopen64
1251 #       endif
1252 #       ifdef HAS_FSEEK64
1253 #           define fseek fseek64
1254 #       endif
1255 #       ifdef HAS_FSEEKO64
1256 #           define fseeko fseeko64
1257 #       endif
1258 #       ifdef HAS_FSETPOS64
1259 #           define fsetpos fsetpos64
1260 #       endif
1261 #       ifdef HAS_FTELL64
1262 #           define ftell ftell64
1263 #       endif
1264 #       ifdef HAS_FTELLO64
1265 #           define ftello ftello64
1266 #       endif
1267 #       ifdef HAS_TMPFILE64
1268 #           define tmpfile tmpfile64
1269 #       endif
1270 #   endif
1271 #   ifdef USE_64_BIT_DBM
1272 #       ifdef HAS_DBMINIT64
1273 #           define dbminit dbminit64
1274 #       endif
1275 #       ifdef HAS_DBMCLOSE64
1276 #           define dbmclose dbmclose64
1277 #       endif
1278 #       ifdef HAS_FETCH64
1279 #           define fetch fetch64
1280 #       endif
1281 #       ifdef HAS_DELETE64
1282 #           define delete delete64
1283 #       endif
1284 #       ifdef HAS_STORE64
1285 #           define store store64
1286 #       endif
1287 #       ifdef HAS_FIRSTKEY64
1288 #           define firstkey firstkey64
1289 #       endif
1290 #       ifdef HAS_NEXTKEY64
1291 #           define nextkey nextkey64
1292 #       endif
1293 #   endif
1294 #endif
1295
1296 #ifdef PERL_OBJECT
1297 typedef I32 (*filter_t) _((CPerlObj*, int, SV *, int));
1298 #else
1299 typedef I32 (*filter_t) _((int, SV *, int));
1300 #endif
1301
1302 #define FILTER_READ(idx, sv, len)  filter_read(idx, sv, len)
1303 #define FILTER_DATA(idx)           (AvARRAY(PL_rsfp_filters)[idx])
1304 #define FILTER_ISREADER(idx)       (idx >= AvFILLp(PL_rsfp_filters))
1305
1306 #if defined(__OPEN_VM)
1307 # include "vmesa/vmesaish.h"
1308 #endif
1309
1310 #ifdef DOSISH
1311 # if defined(OS2)
1312 #   include "os2ish.h"
1313 # else
1314 #   include "dosish.h"
1315 # endif
1316 #else
1317 # if defined(VMS)
1318 #   include "vmsish.h"
1319 # else
1320 #   if defined(PLAN9)
1321 #     include "./plan9/plan9ish.h"
1322 #   else
1323 #     if defined(MPE)
1324 #       include "mpeix/mpeixish.h"
1325 #     else
1326 #       if defined(__VOS__)
1327 #         include "vosish.h"
1328 #       else
1329 #         include "unixish.h"
1330 #       endif
1331 #     endif
1332 #   endif
1333 # endif
1334 #endif         
1335
1336 #ifndef MAXPATHLEN
1337 #  ifdef PATH_MAX
1338 #    ifdef _POSIX_PATH_MAX
1339 #       if PATH_MAX > _POSIX_PATH_MAX
1340 /* MAXPATHLEN is supposed to include the final null character,
1341  * as opposed to PATH_MAX and _POSIX_PATH_MAX. */
1342 #         define MAXPATHLEN (PATH_MAX+1)
1343 #       else
1344 #         define MAXPATHLEN (_POSIX_PATH_MAX+1)
1345 #       endif
1346 #    else
1347 #      define MAXPATHLEN (PATH_MAX+1)
1348 #    endif
1349 #  else
1350 #    ifdef _POSIX_PATH_MAX
1351 #       define MAXPATHLEN (_POSIX_PATH_MAX+1)
1352 #    else
1353 #       define MAXPATHLEN 1024  /* Err on the large side. */
1354 #    endif
1355 #  endif
1356 #endif
1357
1358 #ifndef FUNC_NAME_TO_PTR
1359 #define FUNC_NAME_TO_PTR(name)          name
1360 #endif
1361
1362 /* 
1363  * USE_THREADS needs to be after unixish.h as <pthread.h> includes
1364  * <sys/signal.h> which defines NSIG - which will stop inclusion of <signal.h>
1365  * this results in many functions being undeclared which bothers C++
1366  * May make sense to have threads after "*ish.h" anyway
1367  */
1368
1369 #ifdef USE_THREADS
1370    /* pending resolution of licensing issues, we avoid the erstwhile
1371     * atomic.h everywhere */
1372 #  define EMULATE_ATOMIC_REFCOUNTS
1373
1374 #  ifdef FAKE_THREADS
1375 #    include "fakethr.h"
1376 #  else
1377 #    ifdef WIN32
1378 #      include <win32thread.h>
1379 #    else
1380 #      ifdef OS2
1381 #        include "os2thread.h"
1382 #      else
1383 #        ifdef I_MACH_CTHREADS
1384 #          include <mach/cthreads.h>
1385 #          if (defined(NeXT) || defined(__NeXT__)) && defined(PERL_POLLUTE_MALLOC)
1386 #            define MUTEX_INIT_CALLS_MALLOC
1387 #          endif
1388 typedef cthread_t       perl_os_thread;
1389 typedef mutex_t         perl_mutex;
1390 typedef condition_t     perl_cond;
1391 typedef void *          perl_key;
1392 #        else /* Posix threads */
1393 #          include <pthread.h>
1394 typedef pthread_t       perl_os_thread;
1395 typedef pthread_mutex_t perl_mutex;
1396 typedef pthread_cond_t  perl_cond;
1397 typedef pthread_key_t   perl_key;
1398 #        endif /* I_MACH_CTHREADS */
1399 #      endif /* OS2 */
1400 #    endif /* WIN32 */
1401 #  endif /* FAKE_THREADS */
1402 #endif /* USE_THREADS */
1403   
1404 #ifdef VMS
1405 #   define STATUS_NATIVE        PL_statusvalue_vms
1406 #   define STATUS_NATIVE_EXPORT \
1407         ((I32)PL_statusvalue_vms == -1 ? 44 : PL_statusvalue_vms)
1408 #   define STATUS_NATIVE_SET(n)                                         \
1409         STMT_START {                                                    \
1410             PL_statusvalue_vms = (n);                                   \
1411             if ((I32)PL_statusvalue_vms == -1)                          \
1412                 PL_statusvalue = -1;                                    \
1413             else if (PL_statusvalue_vms & STS$M_SUCCESS)                \
1414                 PL_statusvalue = 0;                                     \
1415             else if ((PL_statusvalue_vms & STS$M_SEVERITY) == 0)        \
1416                 PL_statusvalue = 1 << 8;                                \
1417             else                                                        \
1418                 PL_statusvalue = (PL_statusvalue_vms & STS$M_SEVERITY) << 8;    \
1419         } STMT_END
1420 #   define STATUS_POSIX PL_statusvalue
1421 #   ifdef VMSISH_STATUS
1422 #       define STATUS_CURRENT   (VMSISH_STATUS ? STATUS_NATIVE : STATUS_POSIX)
1423 #   else
1424 #       define STATUS_CURRENT   STATUS_POSIX
1425 #   endif
1426 #   define STATUS_POSIX_SET(n)                          \
1427         STMT_START {                                    \
1428             PL_statusvalue = (n);                               \
1429             if (PL_statusvalue != -1) {                 \
1430                 PL_statusvalue &= 0xFFFF;                       \
1431                 PL_statusvalue_vms = PL_statusvalue ? 44 : 1;   \
1432             }                                           \
1433             else PL_statusvalue_vms = -1;                       \
1434         } STMT_END
1435 #   define STATUS_ALL_SUCCESS   (PL_statusvalue = 0, PL_statusvalue_vms = 1)
1436 #   define STATUS_ALL_FAILURE   (PL_statusvalue = 1, PL_statusvalue_vms = 44)
1437 #else
1438 #   define STATUS_NATIVE        STATUS_POSIX
1439 #   define STATUS_NATIVE_EXPORT STATUS_POSIX
1440 #   define STATUS_NATIVE_SET    STATUS_POSIX_SET
1441 #   define STATUS_POSIX         PL_statusvalue
1442 #   define STATUS_POSIX_SET(n)          \
1443         STMT_START {                    \
1444             PL_statusvalue = (n);               \
1445             if (PL_statusvalue != -1)   \
1446                 PL_statusvalue &= 0xFFFF;       \
1447         } STMT_END
1448 #   define STATUS_CURRENT STATUS_POSIX
1449 #   define STATUS_ALL_SUCCESS   (PL_statusvalue = 0)
1450 #   define STATUS_ALL_FAILURE   (PL_statusvalue = 1)
1451 #endif
1452
1453 /* This defines a way to flush all output buffers.  This may be a
1454  * performance issue, so we allow people to disable it.
1455  * XXX the default needs a Configure test, as it may not work everywhere.
1456  */
1457 #ifndef PERL_FLUSHALL_FOR_CHILD
1458 # if (defined(USE_STDIO) && defined(FFLUSH_NULL)) || defined(USE_SFIO)
1459 #  define PERL_FLUSHALL_FOR_CHILD       PerlIO_flush((PerlIO*)NULL)
1460 # endif
1461 #endif
1462
1463 /* Some unistd.h's give a prototype for pause() even though
1464    HAS_PAUSE ends up undefined.  This causes the #define
1465    below to be rejected by the compmiler.  Sigh.
1466 */
1467 #ifdef HAS_PAUSE
1468 #define Pause   pause
1469 #else
1470 #define Pause() sleep((32767<<16)+32767)
1471 #endif
1472
1473 #ifndef IOCPARM_LEN
1474 #   ifdef IOCPARM_MASK
1475         /* on BSDish systes we're safe */
1476 #       define IOCPARM_LEN(x)  (((x) >> 16) & IOCPARM_MASK)
1477 #   else
1478         /* otherwise guess at what's safe */
1479 #       define IOCPARM_LEN(x)   256
1480 #   endif
1481 #endif
1482
1483 #ifdef UNION_ANY_DEFINITION
1484 UNION_ANY_DEFINITION;
1485 #else
1486 union any {
1487     void*       any_ptr;
1488     I32         any_i32;
1489     IV          any_iv;
1490     long        any_long;
1491     void        (CPERLscope(*any_dptr)) _((void*));
1492 };
1493 #endif
1494
1495 #ifdef USE_THREADS
1496 #define ARGSproto struct perl_thread *thr
1497 #else
1498 #define ARGSproto void
1499 #endif /* USE_THREADS */
1500
1501 #if defined(CYGWIN32)
1502 /* USEMYBINMODE
1503  *   This symbol, if defined, indicates that the program should
1504  *   use the routine my_binmode(FILE *fp, char iotype) to insure
1505  *   that a file is in "binary" mode -- that is, that no translation
1506  *   of bytes occurs on read or write operations.
1507  */
1508 #  define USEMYBINMODE / **/
1509 #  define my_binmode(fp, iotype) \
1510             (PerlLIO_setmode(PerlIO_fileno(fp), O_BINARY) != -1 ? TRUE : NULL)
1511 #endif
1512
1513 #include "regexp.h"
1514 #include "sv.h"
1515 #include "util.h"
1516 #include "form.h"
1517 #include "gv.h"
1518 #include "cv.h"
1519 #ifndef PERL_OBJECT
1520 #include "opcode.h"
1521 #endif
1522 #include "op.h"
1523 #include "cop.h"
1524 #include "av.h"
1525 #include "hv.h"
1526 #include "mg.h"
1527 #include "scope.h"
1528 #include "warning.h"
1529 #include "bytecode.h"
1530 #include "byterun.h"
1531 #include "utf8.h"
1532
1533 /* Current curly descriptor */
1534 typedef struct curcur CURCUR;
1535 struct curcur {
1536     int         parenfloor;     /* how far back to strip paren data */
1537     int         cur;            /* how many instances of scan we've matched */
1538     int         min;            /* the minimal number of scans to match */
1539     int         max;            /* the maximal number of scans to match */
1540     int         minmod;         /* whether to work our way up or down */
1541     regnode *   scan;           /* the thing to match */
1542     regnode *   next;           /* what has to match after it */
1543     char *      lastloc;        /* where we started matching this scan */
1544     CURCUR *    oldcc;          /* current curly before we started this one */
1545 };
1546
1547 typedef struct _sublex_info SUBLEXINFO;
1548 struct _sublex_info {
1549     I32 super_state;    /* lexer state to save */
1550     I32 sub_inwhat;     /* "lex_inwhat" to use */
1551     OP *sub_op;         /* "lex_op" to use */
1552     char *super_bufptr; /* PL_bufptr that was */
1553     char *super_bufend; /* PL_bufend that was */
1554 };
1555
1556 typedef struct magic_state MGS; /* struct magic_state defined in mg.c */
1557
1558 #ifdef PERL_OBJECT
1559 typedef struct {
1560     I32 len_min;
1561     I32 len_delta;
1562     I32 pos_min;
1563     I32 pos_delta;
1564     SV *last_found;
1565     I32 last_end;                       /* min value, <0 unless valid. */
1566     I32 last_start_min;
1567     I32 last_start_max;
1568     SV **longest;                       /* Either &l_fixed, or &l_float. */
1569     SV *longest_fixed;
1570     I32 offset_fixed;
1571     SV *longest_float;
1572     I32 offset_float_min;
1573     I32 offset_float_max;
1574     I32 flags;
1575 } scan_data_t;
1576
1577 typedef I32 CHECKPOINT;
1578 #endif /* PERL_OBJECT */
1579
1580 #if defined(iAPX286) || defined(M_I286) || defined(I80286)
1581 #   define I286
1582 #endif
1583
1584 #if defined(htonl) && !defined(HAS_HTONL)
1585 #define HAS_HTONL
1586 #endif
1587 #if defined(htons) && !defined(HAS_HTONS)
1588 #define HAS_HTONS
1589 #endif
1590 #if defined(ntohl) && !defined(HAS_NTOHL)
1591 #define HAS_NTOHL
1592 #endif
1593 #if defined(ntohs) && !defined(HAS_NTOHS)
1594 #define HAS_NTOHS
1595 #endif
1596 #ifndef HAS_HTONL
1597 #if (BYTEORDER & 0xffff) != 0x4321
1598 #define HAS_HTONS
1599 #define HAS_HTONL
1600 #define HAS_NTOHS
1601 #define HAS_NTOHL
1602 #define MYSWAP
1603 #define htons my_swap
1604 #define htonl my_htonl
1605 #define ntohs my_swap
1606 #define ntohl my_ntohl
1607 #endif
1608 #else
1609 #if (BYTEORDER & 0xffff) == 0x4321
1610 #undef HAS_HTONS
1611 #undef HAS_HTONL
1612 #undef HAS_NTOHS
1613 #undef HAS_NTOHL
1614 #endif
1615 #endif
1616
1617 /*
1618  * Little-endian byte order functions - 'v' for 'VAX', or 'reVerse'.
1619  * -DWS
1620  */
1621 #if BYTEORDER != 0x1234
1622 # define HAS_VTOHL
1623 # define HAS_VTOHS
1624 # define HAS_HTOVL
1625 # define HAS_HTOVS
1626 # if BYTEORDER == 0x4321 || BYTEORDER == 0x87654321
1627 #  define vtohl(x)      ((((x)&0xFF)<<24)       \
1628                         +(((x)>>24)&0xFF)       \
1629                         +(((x)&0x0000FF00)<<8)  \
1630                         +(((x)&0x00FF0000)>>8)  )
1631 #  define vtohs(x)      ((((x)&0xFF)<<8) + (((x)>>8)&0xFF))
1632 #  define htovl(x)      vtohl(x)
1633 #  define htovs(x)      vtohs(x)
1634 # endif
1635         /* otherwise default to functions in util.c */
1636 #endif
1637
1638 #ifdef CASTNEGFLOAT
1639 #define U_S(what) ((U16)(what))
1640 #define U_I(what) ((unsigned int)(what))
1641 #define U_L(what) ((U32)(what))
1642 #else
1643 #define U_S(what) ((U16)cast_ulong((double)(what)))
1644 #define U_I(what) ((unsigned int)cast_ulong((double)(what)))
1645 #define U_L(what) (cast_ulong((double)(what)))
1646 #endif
1647
1648 #ifdef CASTI32
1649 #define I_32(what) ((I32)(what))
1650 #define I_V(what) ((IV)(what))
1651 #define U_V(what) ((UV)(what))
1652 #else
1653 #define I_32(what) (cast_i32((double)(what)))
1654 #define I_V(what) (cast_iv((double)(what)))
1655 #define U_V(what) (cast_uv((double)(what)))
1656 #endif
1657
1658 /* Used with UV/IV arguments: */
1659                                         /* XXXX: need to speed it up */
1660 #define CLUMP_2UV(iv)   ((iv) < 0 ? 0 : (UV)(iv))
1661 #define CLUMP_2IV(uv)   ((uv) > (UV)IV_MAX ? IV_MAX : (IV)(uv))
1662
1663 struct Outrec {
1664     I32         o_lines;
1665     char        *o_str;
1666     U32         o_len;
1667 };
1668
1669 #ifndef MAXSYSFD
1670 #   define MAXSYSFD 2
1671 #endif
1672
1673 #ifndef TMPPATH
1674 #  define TMPPATH "/tmp/perl-eXXXXXX"
1675 #endif
1676
1677 #ifndef __cplusplus
1678 Uid_t getuid _((void));
1679 Uid_t geteuid _((void));
1680 Gid_t getgid _((void));
1681 Gid_t getegid _((void));
1682 #endif
1683
1684 #ifndef Perl_debug_log
1685 #define Perl_debug_log  PerlIO_stderr()
1686 #endif
1687
1688 #ifdef DEBUGGING
1689 #undef  YYDEBUG
1690 #define YYDEBUG 1
1691 #define DEB(a)                          a
1692 #define DEBUG(a)   if (PL_debug)                a
1693 #define DEBUG_p(a) if (PL_debug & 1)    a
1694 #define DEBUG_s(a) if (PL_debug & 2)    a
1695 #define DEBUG_l(a) if (PL_debug & 4)    a
1696 #define DEBUG_t(a) if (PL_debug & 8)    a
1697 #define DEBUG_o(a) if (PL_debug & 16)   a
1698 #define DEBUG_c(a) if (PL_debug & 32)   a
1699 #define DEBUG_P(a) if (PL_debug & 64)   a
1700 #  ifdef PERL_OBJECT
1701 #    define DEBUG_m(a) if (PL_debug & 128)      a
1702 #  else
1703 #    define DEBUG_m(a) if (PL_curinterp && PL_debug & 128)      a
1704 #  endif
1705 #define DEBUG_f(a) if (PL_debug & 256)  a
1706 #define DEBUG_r(a) if (PL_debug & 512)  a
1707 #define DEBUG_x(a) if (PL_debug & 1024) a
1708 #define DEBUG_u(a) if (PL_debug & 2048) a
1709 #define DEBUG_L(a) if (PL_debug & 4096) a
1710 #define DEBUG_H(a) if (PL_debug & 8192) a
1711 #define DEBUG_X(a) if (PL_debug & 16384)        a
1712 #define DEBUG_D(a) if (PL_debug & 32768)        a
1713 #  ifdef USE_THREADS
1714 #    define DEBUG_S(a) if (PL_debug & (1<<16))  a
1715 #  else
1716 #    define DEBUG_S(a)
1717 #  endif
1718 #else
1719 #define DEB(a)
1720 #define DEBUG(a)
1721 #define DEBUG_p(a)
1722 #define DEBUG_s(a)
1723 #define DEBUG_l(a)
1724 #define DEBUG_t(a)
1725 #define DEBUG_o(a)
1726 #define DEBUG_c(a)
1727 #define DEBUG_P(a)
1728 #define DEBUG_m(a)
1729 #define DEBUG_f(a)
1730 #define DEBUG_r(a)
1731 #define DEBUG_x(a)
1732 #define DEBUG_u(a)
1733 #define DEBUG_S(a)
1734 #define DEBUG_H(a)
1735 #define DEBUG_X(a)
1736 #define DEBUG_D(a)
1737 #define DEBUG_S(a)
1738 #endif
1739 #define YYMAXDEPTH 300
1740
1741 #ifndef assert  /* <assert.h> might have been included somehow */
1742 #define assert(what)    DEB( {                                          \
1743         if (!(what)) {                                                  \
1744             croak("Assertion failed: file \"%s\", line %d",             \
1745                 __FILE__, __LINE__);                                    \
1746             PerlProc_exit(1);                                                   \
1747         }})
1748 #endif
1749
1750 struct ufuncs {
1751     I32 (*uf_val)_((IV, SV*));
1752     I32 (*uf_set)_((IV, SV*));
1753     IV uf_index;
1754 };
1755
1756 /* Fix these up for __STDC__ */
1757 #ifndef DONT_DECLARE_STD
1758 char *mktemp _((char*));
1759 double atof _((const char*));
1760 #endif
1761
1762 #ifndef STANDARD_C
1763 /* All of these are in stdlib.h or time.h for ANSI C */
1764 Time_t time();
1765 struct tm *gmtime(), *localtime();
1766 #if defined(OEMVS) || defined(__OPEN_VM)
1767 char *(strchr)(), *(strrchr)();
1768 char *(strcpy)(), *(strcat)();
1769 #else
1770 char *strchr(), *strrchr();
1771 char *strcpy(), *strcat();
1772 #endif
1773 #endif /* ! STANDARD_C */
1774
1775
1776 #ifdef I_MATH
1777 #    include <math.h>
1778 #else
1779 START_EXTERN_C
1780             double exp _((double));
1781             double log _((double));
1782             double log10 _((double));
1783             double sqrt _((double));
1784             double frexp _((double,int*));
1785             double ldexp _((double,int));
1786             double modf _((double,double*));
1787             double sin _((double));
1788             double cos _((double));
1789             double atan2 _((double,double));
1790             double pow _((double,double));
1791 END_EXTERN_C
1792 #endif
1793
1794 #ifndef __cplusplus
1795 #  if defined(NeXT) || defined(__NeXT__) /* or whatever catches all NeXTs */
1796 char *crypt ();       /* Maybe more hosts will need the unprototyped version */
1797 #  else
1798 #    if !defined(WIN32) || !defined(HAVE_DES_FCRYPT)
1799 char *crypt _((const char*, const char*));
1800 #    endif /* !WIN32 && !HAVE_CRYPT_SOURCE */
1801 #  endif /* !NeXT && !__NeXT__ */
1802 #  ifndef DONT_DECLARE_STD
1803 #    ifndef getenv
1804 char *getenv _((const char*));
1805 #    endif /* !getenv */
1806 Off_t lseek _((int,Off_t,int));
1807 #  endif /* !DONT_DECLARE_STD */
1808 char *getlogin _((void));
1809 #endif /* !__cplusplus */
1810
1811 #ifdef UNLINK_ALL_VERSIONS /* Currently only makes sense for VMS */
1812 #define UNLINK unlnk
1813 I32 unlnk _((char*));
1814 #else
1815 #define UNLINK PerlLIO_unlink
1816 #endif
1817
1818 #ifndef HAS_SETREUID
1819 #  ifdef HAS_SETRESUID
1820 #    define setreuid(r,e) setresuid(r,e,(Uid_t)-1)
1821 #    define HAS_SETREUID
1822 #  endif
1823 #endif
1824 #ifndef HAS_SETREGID
1825 #  ifdef HAS_SETRESGID
1826 #    define setregid(r,e) setresgid(r,e,(Gid_t)-1)
1827 #    define HAS_SETREGID
1828 #  endif
1829 #endif
1830
1831 typedef Signal_t (*Sighandler_t) _((int));
1832
1833 #ifdef HAS_SIGACTION
1834 typedef struct sigaction Sigsave_t;
1835 #else
1836 typedef Sighandler_t Sigsave_t;
1837 #endif
1838
1839 #define SCAN_DEF 0
1840 #define SCAN_TR 1
1841 #define SCAN_REPL 2
1842
1843 #ifdef DEBUGGING
1844 # ifndef register
1845 #  define register
1846 # endif
1847 # define PAD_SV(po) pad_sv(po)
1848 # define RUNOPS_DEFAULT runops_debug
1849 #else
1850 # define PAD_SV(po) PL_curpad[po]
1851 # define RUNOPS_DEFAULT runops_standard
1852 #endif
1853
1854 #ifdef MYMALLOC
1855 #  ifdef MUTEX_INIT_CALLS_MALLOC
1856 #    define MALLOC_INIT                                 \
1857         STMT_START {                                    \
1858                 PL_malloc_mutex = NULL;                 \
1859                 MUTEX_INIT(&PL_malloc_mutex);           \
1860         } STMT_END
1861 #    define MALLOC_TERM                                 \
1862         STMT_START {                                    \
1863                 perl_mutex tmp = PL_malloc_mutex;       \
1864                 PL_malloc_mutex = NULL;                 \
1865                 MUTEX_DESTROY(&tmp);                    \
1866         } STMT_END
1867 #  else
1868 #    define MALLOC_INIT MUTEX_INIT(&PL_malloc_mutex)
1869 #    define MALLOC_TERM MUTEX_DESTROY(&PL_malloc_mutex)
1870 #  endif
1871 #else
1872 #  define MALLOC_INIT
1873 #  define MALLOC_TERM
1874 #endif
1875
1876
1877 /*
1878  * These need prototyping here because <proto.h> isn't
1879  * included until after runops is initialised.
1880  */
1881
1882 #ifndef PERL_OBJECT
1883 typedef int (*runops_proc_t) _((void));
1884 int runops_standard _((void));
1885 #ifdef DEBUGGING
1886 int runops_debug _((void));
1887 #endif
1888 #endif
1889
1890 /* _ (for $_) must be first in the following list (DEFSV requires it) */
1891 #define THREADSV_NAMES "_123456789&`'+/.,\\\";^-%=|~:\001\005!@"
1892
1893 /* NeXT has problems with crt0.o globals */
1894 #if defined(__DYNAMIC__) && \
1895     (defined(NeXT) || defined(__NeXT__) || defined(__APPLE__))
1896 #  if defined(NeXT) || defined(__NeXT)
1897 #    include <mach-o/dyld.h>
1898 #    define environ (*environ_pointer)
1899 EXT char *** environ_pointer;
1900 #  else
1901 #    if defined(__APPLE__)
1902 #      include <crt_externs.h>  /* for the env array */
1903 #      define environ (*_NSGetEnviron())
1904 #    endif
1905 #  endif
1906 #else
1907    /* VMS and some other platforms don't use the environ array */
1908 #  if !defined(VMS)
1909 #    if !defined(DONT_DECLARE_STD) || \
1910         (defined(__svr4__) && defined(__GNUC__) && defined(sun)) || \
1911         defined(__sgi) || \
1912         defined(__DGUX)
1913 extern char **  environ;        /* environment variables supplied via exec */
1914 #    endif
1915 #  endif
1916 #endif
1917
1918 /* handy constants */
1919 EXTCONST char PL_warn_uninit[]
1920   INIT("Use of uninitialized value");
1921 EXTCONST char PL_warn_nosemi[]
1922   INIT("Semicolon seems to be missing");
1923 EXTCONST char PL_warn_reserved[]
1924   INIT("Unquoted string \"%s\" may clash with future reserved word");
1925 EXTCONST char PL_warn_nl[]
1926   INIT("Unsuccessful %s on filename containing newline");
1927 EXTCONST char PL_no_wrongref[]
1928   INIT("Can't use %s ref as %s ref");
1929 EXTCONST char PL_no_symref[]
1930   INIT("Can't use string (\"%.32s\") as %s ref while \"strict refs\" in use");
1931 EXTCONST char PL_no_usym[]
1932   INIT("Can't use an undefined value as %s reference");
1933 EXTCONST char PL_no_aelem[]
1934   INIT("Modification of non-creatable array value attempted, subscript %d");
1935 EXTCONST char PL_no_helem[]
1936   INIT("Modification of non-creatable hash value attempted, subscript \"%s\"");
1937 EXTCONST char PL_no_modify[]
1938   INIT("Modification of a read-only value attempted");
1939 EXTCONST char PL_no_mem[]
1940   INIT("Out of memory!\n");
1941 EXTCONST char PL_no_security[]
1942   INIT("Insecure dependency in %s%s");
1943 EXTCONST char PL_no_sock_func[]
1944   INIT("Unsupported socket function \"%s\" called");
1945 EXTCONST char PL_no_dir_func[]
1946   INIT("Unsupported directory function \"%s\" called");
1947 EXTCONST char PL_no_func[]
1948   INIT("The %s function is unimplemented");
1949 EXTCONST char PL_no_myglob[]
1950   INIT("\"my\" variable %s can't be in a package");
1951
1952 EXTCONST char PL_uuemap[65]
1953   INIT("`!\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_");
1954
1955
1956 #ifdef DOINIT
1957 EXT char *PL_sig_name[] = { SIG_NAME };
1958 EXT int   PL_sig_num[]  = { SIG_NUM };
1959 EXT SV  * PL_psig_ptr[sizeof(PL_sig_num)/sizeof(*PL_sig_num)];
1960 EXT SV  * PL_psig_name[sizeof(PL_sig_num)/sizeof(*PL_sig_num)];
1961 #else
1962 EXT char *PL_sig_name[];
1963 EXT int   PL_sig_num[];
1964 EXT SV  * PL_psig_ptr[];
1965 EXT SV  * PL_psig_name[];
1966 #endif
1967
1968 /* fast case folding tables */
1969
1970 #ifdef DOINIT
1971 #ifdef EBCDIC
1972 EXT unsigned char PL_fold[] = { /* fast EBCDIC case folding table */
1973     0,      1,      2,      3,      4,      5,      6,      7,
1974     8,      9,      10,     11,     12,     13,     14,     15,
1975     16,     17,     18,     19,     20,     21,     22,     23,
1976     24,     25,     26,     27,     28,     29,     30,     31,
1977     32,     33,     34,     35,     36,     37,     38,     39,
1978     40,     41,     42,     43,     44,     45,     46,     47,
1979     48,     49,     50,     51,     52,     53,     54,     55,
1980     56,     57,     58,     59,     60,     61,     62,     63,
1981     64,     65,     66,     67,     68,     69,     70,     71,
1982     72,     73,     74,     75,     76,     77,     78,     79,
1983     80,     81,     82,     83,     84,     85,     86,     87,
1984     88,     89,     90,     91,     92,     93,     94,     95,
1985     96,     97,     98,     99,     100,    101,    102,    103,
1986     104,    105,    106,    107,    108,    109,    110,    111,
1987     112,    113,    114,    115,    116,    117,    118,    119,
1988     120,    121,    122,    123,    124,    125,    126,    127,
1989     128,    'A',    'B',    'C',    'D',    'E',    'F',    'G',
1990     'H',    'I',    138,    139,    140,    141,    142,    143,
1991     144,    'J',    'K',    'L',    'M',    'N',    'O',    'P',
1992     'Q',    'R',    154,    155,    156,    157,    158,    159,
1993     160,    161,    'S',    'T',    'U',    'V',    'W',    'X',
1994     'Y',    'Z',    170,    171,    172,    173,    174,    175,
1995     176,    177,    178,    179,    180,    181,    182,    183,
1996     184,    185,    186,    187,    188,    189,    190,    191,
1997     192,    'a',    'b',    'c',    'd',    'e',    'f',    'g',
1998     'h',    'i',    202,    203,    204,    205,    206,    207,
1999     208,    'j',    'k',    'l',    'm',    'n',    'o',    'p',
2000     'q',    'r',    218,    219,    220,    221,    222,    223,
2001     224,    225,    's',    't',    'u',    'v',    'w',    'x',
2002     'y',    'z',    234,    235,    236,    237,    238,    239,
2003     240,    241,    242,    243,    244,    245,    246,    247,
2004     248,    249,    250,    251,    252,    253,    254,    255
2005 };
2006 #else   /* ascii rather than ebcdic */
2007 EXTCONST  unsigned char PL_fold[] = {
2008         0,      1,      2,      3,      4,      5,      6,      7,
2009         8,      9,      10,     11,     12,     13,     14,     15,
2010         16,     17,     18,     19,     20,     21,     22,     23,
2011         24,     25,     26,     27,     28,     29,     30,     31,
2012         32,     33,     34,     35,     36,     37,     38,     39,
2013         40,     41,     42,     43,     44,     45,     46,     47,
2014         48,     49,     50,     51,     52,     53,     54,     55,
2015         56,     57,     58,     59,     60,     61,     62,     63,
2016         64,     'a',    'b',    'c',    'd',    'e',    'f',    'g',
2017         'h',    'i',    'j',    'k',    'l',    'm',    'n',    'o',
2018         'p',    'q',    'r',    's',    't',    'u',    'v',    'w',
2019         'x',    'y',    'z',    91,     92,     93,     94,     95,
2020         96,     'A',    'B',    'C',    'D',    'E',    'F',    'G',
2021         'H',    'I',    'J',    'K',    'L',    'M',    'N',    'O',
2022         'P',    'Q',    'R',    'S',    'T',    'U',    'V',    'W',
2023         'X',    'Y',    'Z',    123,    124,    125,    126,    127,
2024         128,    129,    130,    131,    132,    133,    134,    135,
2025         136,    137,    138,    139,    140,    141,    142,    143,
2026         144,    145,    146,    147,    148,    149,    150,    151,
2027         152,    153,    154,    155,    156,    157,    158,    159,
2028         160,    161,    162,    163,    164,    165,    166,    167,
2029         168,    169,    170,    171,    172,    173,    174,    175,
2030         176,    177,    178,    179,    180,    181,    182,    183,
2031         184,    185,    186,    187,    188,    189,    190,    191,
2032         192,    193,    194,    195,    196,    197,    198,    199,
2033         200,    201,    202,    203,    204,    205,    206,    207,
2034         208,    209,    210,    211,    212,    213,    214,    215,
2035         216,    217,    218,    219,    220,    221,    222,    223,    
2036         224,    225,    226,    227,    228,    229,    230,    231,
2037         232,    233,    234,    235,    236,    237,    238,    239,
2038         240,    241,    242,    243,    244,    245,    246,    247,
2039         248,    249,    250,    251,    252,    253,    254,    255
2040 };
2041 #endif  /* !EBCDIC */
2042 #else
2043 EXTCONST unsigned char PL_fold[];
2044 #endif
2045
2046 #ifdef DOINIT
2047 EXT unsigned char PL_fold_locale[] = {
2048         0,      1,      2,      3,      4,      5,      6,      7,
2049         8,      9,      10,     11,     12,     13,     14,     15,
2050         16,     17,     18,     19,     20,     21,     22,     23,
2051         24,     25,     26,     27,     28,     29,     30,     31,
2052         32,     33,     34,     35,     36,     37,     38,     39,
2053         40,     41,     42,     43,     44,     45,     46,     47,
2054         48,     49,     50,     51,     52,     53,     54,     55,
2055         56,     57,     58,     59,     60,     61,     62,     63,
2056         64,     'a',    'b',    'c',    'd',    'e',    'f',    'g',
2057         'h',    'i',    'j',    'k',    'l',    'm',    'n',    'o',
2058         'p',    'q',    'r',    's',    't',    'u',    'v',    'w',
2059         'x',    'y',    'z',    91,     92,     93,     94,     95,
2060         96,     'A',    'B',    'C',    'D',    'E',    'F',    'G',
2061         'H',    'I',    'J',    'K',    'L',    'M',    'N',    'O',
2062         'P',    'Q',    'R',    'S',    'T',    'U',    'V',    'W',
2063         'X',    'Y',    'Z',    123,    124,    125,    126,    127,
2064         128,    129,    130,    131,    132,    133,    134,    135,
2065         136,    137,    138,    139,    140,    141,    142,    143,
2066         144,    145,    146,    147,    148,    149,    150,    151,
2067         152,    153,    154,    155,    156,    157,    158,    159,
2068         160,    161,    162,    163,    164,    165,    166,    167,
2069         168,    169,    170,    171,    172,    173,    174,    175,
2070         176,    177,    178,    179,    180,    181,    182,    183,
2071         184,    185,    186,    187,    188,    189,    190,    191,
2072         192,    193,    194,    195,    196,    197,    198,    199,
2073         200,    201,    202,    203,    204,    205,    206,    207,
2074         208,    209,    210,    211,    212,    213,    214,    215,
2075         216,    217,    218,    219,    220,    221,    222,    223,    
2076         224,    225,    226,    227,    228,    229,    230,    231,
2077         232,    233,    234,    235,    236,    237,    238,    239,
2078         240,    241,    242,    243,    244,    245,    246,    247,
2079         248,    249,    250,    251,    252,    253,    254,    255
2080 };
2081 #else
2082 EXT unsigned char PL_fold_locale[];
2083 #endif
2084
2085 #ifdef DOINIT
2086 #ifdef EBCDIC
2087 EXT unsigned char PL_freq[] = {/* EBCDIC frequencies for mixed English/C */
2088     1,      2,      84,     151,    154,    155,    156,    157,
2089     165,    246,    250,    3,      158,    7,      18,     29,
2090     40,     51,     62,     73,     85,     96,     107,    118,
2091     129,    140,    147,    148,    149,    150,    152,    153,
2092     255,      6,      8,      9,     10,     11,     12,     13,
2093      14,     15,     24,     25,     26,     27,     28,    226,
2094      29,     30,     31,     32,     33,     43,     44,     45,
2095      46,     47,     48,     49,     50,     76,     77,     78,
2096      79,     80,     81,     82,     83,     84,     85,     86,
2097      87,     94,     95,    234,    181,    233,    187,    190,
2098     180,     96,     97,     98,     99,    100,    101,    102,
2099     104,    112,    182,    174,    236,    232,    229,    103,
2100     228,    226,    114,    115,    116,    117,    118,    119,
2101     120,    121,    122,    235,    176,    230,    194,    162,
2102     130,    131,    132,    133,    134,    135,    136,    137,
2103     138,    139,    201,    205,    163,    217,    220,    224,
2104     5,      248,    227,    244,    242,    255,    241,    231,
2105     240,    253,    16,     197,    19,     20,     21,     187,
2106     23,     169,    210,    245,    237,    249,    247,    239,
2107     168,    252,    34,     196,    36,     37,     38,     39,
2108     41,     42,     251,    254,    238,    223,    221,    213,
2109     225,    177,    52,     53,     54,     55,     56,     57,
2110     58,     59,     60,     61,     63,     64,     65,     66,
2111     67,     68,     69,     70,     71,     72,     74,     75,
2112     205,    208,    186,    202,    200,    218,    198,    179,
2113     178,    214,    88,     89,     90,     91,     92,     93,
2114     217,    166,    170,    207,    199,    209,    206,    204,
2115     160,    212,    105,    106,    108,    109,    110,    111,
2116     203,    113,    216,    215,    192,    175,    193,    243,
2117     172,    161,    123,    124,    125,    126,    127,    128,
2118     222,    219,    211,    195,    188,    193,    185,    184,
2119     191,    183,    141,    142,    143,    144,    145,    146
2120 };
2121 #else  /* ascii rather than ebcdic */
2122 EXTCONST unsigned char PL_freq[] = {    /* letter frequencies for mixed English/C */
2123         1,      2,      84,     151,    154,    155,    156,    157,
2124         165,    246,    250,    3,      158,    7,      18,     29,
2125         40,     51,     62,     73,     85,     96,     107,    118,
2126         129,    140,    147,    148,    149,    150,    152,    153,
2127         255,    182,    224,    205,    174,    176,    180,    217,
2128         233,    232,    236,    187,    235,    228,    234,    226,
2129         222,    219,    211,    195,    188,    193,    185,    184,
2130         191,    183,    201,    229,    181,    220,    194,    162,
2131         163,    208,    186,    202,    200,    218,    198,    179,
2132         178,    214,    166,    170,    207,    199,    209,    206,
2133         204,    160,    212,    216,    215,    192,    175,    173,
2134         243,    172,    161,    190,    203,    189,    164,    230,
2135         167,    248,    227,    244,    242,    255,    241,    231,
2136         240,    253,    169,    210,    245,    237,    249,    247,
2137         239,    168,    252,    251,    254,    238,    223,    221,
2138         213,    225,    177,    197,    171,    196,    159,    4,
2139         5,      6,      8,      9,      10,     11,     12,     13,
2140         14,     15,     16,     17,     19,     20,     21,     22,
2141         23,     24,     25,     26,     27,     28,     30,     31,
2142         32,     33,     34,     35,     36,     37,     38,     39,
2143         41,     42,     43,     44,     45,     46,     47,     48,
2144         49,     50,     52,     53,     54,     55,     56,     57,
2145         58,     59,     60,     61,     63,     64,     65,     66,
2146         67,     68,     69,     70,     71,     72,     74,     75,
2147         76,     77,     78,     79,     80,     81,     82,     83,
2148         86,     87,     88,     89,     90,     91,     92,     93,
2149         94,     95,     97,     98,     99,     100,    101,    102,
2150         103,    104,    105,    106,    108,    109,    110,    111,
2151         112,    113,    114,    115,    116,    117,    119,    120,
2152         121,    122,    123,    124,    125,    126,    127,    128,
2153         130,    131,    132,    133,    134,    135,    136,    137,
2154         138,    139,    141,    142,    143,    144,    145,    146
2155 };
2156 #endif
2157 #else
2158 EXTCONST unsigned char PL_freq[];
2159 #endif
2160
2161 #ifdef DEBUGGING
2162 #ifdef DOINIT
2163 EXTCONST char* PL_block_type[] = {
2164         "NULL",
2165         "SUB",
2166         "EVAL",
2167         "LOOP",
2168         "SUBST",
2169         "BLOCK",
2170 };
2171 #else
2172 EXTCONST char* PL_block_type[];
2173 #endif
2174 #endif
2175
2176 /*****************************************************************************/
2177 /* This lexer/parser stuff is currently global since yacc is hard to reenter */
2178 /*****************************************************************************/
2179 /* XXX This needs to be revisited, since BEGIN makes yacc re-enter... */
2180
2181 #include "perly.h"
2182
2183 #define LEX_NOTPARSING          11      /* borrowed from toke.c */
2184
2185 typedef enum {
2186     XOPERATOR,
2187     XTERM,
2188     XREF,
2189     XSTATE,
2190     XBLOCK,
2191     XTERMBLOCK
2192 } expectation;
2193
2194 enum {          /* pass one of these to get_vtbl */
2195     want_vtbl_sv,
2196     want_vtbl_env,
2197     want_vtbl_envelem,
2198     want_vtbl_sig,
2199     want_vtbl_sigelem,
2200     want_vtbl_pack,
2201     want_vtbl_packelem,
2202     want_vtbl_dbline,
2203     want_vtbl_isa,
2204     want_vtbl_isaelem,
2205     want_vtbl_arylen,
2206     want_vtbl_glob,
2207     want_vtbl_mglob,
2208     want_vtbl_nkeys,
2209     want_vtbl_taint,
2210     want_vtbl_substr,
2211     want_vtbl_vec,
2212     want_vtbl_pos,
2213     want_vtbl_bm,
2214     want_vtbl_fm,
2215     want_vtbl_uvar,
2216     want_vtbl_defelem,
2217     want_vtbl_regexp,
2218     want_vtbl_collxfrm,
2219     want_vtbl_amagic,
2220     want_vtbl_amagicelem,
2221 #ifdef USE_THREADS
2222     want_vtbl_mutex,
2223 #endif
2224     want_vtbl_regdata,
2225     want_vtbl_regdatum,
2226     want_vtbl_backref
2227 };
2228
2229                                 /* Note: the lowest 8 bits are reserved for
2230                                    stuffing into op->op_private */
2231 #define HINT_INTEGER            0x00000001
2232 #define HINT_STRICT_REFS        0x00000002
2233 /* #define HINT_notused4        0x00000004 */
2234 #define HINT_UTF8               0x00000008
2235 /* #define HINT_notused10       0x00000010 */
2236                                 /* Note: 20,40,80 used for NATIVE_HINTS */
2237
2238 #define HINT_BLOCK_SCOPE        0x00000100
2239 #define HINT_STRICT_SUBS        0x00000200
2240 #define HINT_STRICT_VARS        0x00000400
2241 #define HINT_LOCALE             0x00000800
2242
2243 #define HINT_NEW_INTEGER        0x00001000
2244 #define HINT_NEW_FLOAT          0x00002000
2245 #define HINT_NEW_BINARY         0x00004000
2246 #define HINT_NEW_STRING         0x00008000
2247 #define HINT_NEW_RE             0x00010000
2248 #define HINT_LOCALIZE_HH        0x00020000 /* %^H needs to be copied */
2249
2250 #define HINT_RE_TAINT           0x00100000
2251 #define HINT_RE_EVAL            0x00200000
2252
2253 #define HINT_FILETEST_ACCESS    0x00400000
2254
2255 /* Various states of an input record separator SV (rs, nrs) */
2256 #define RsSNARF(sv)   (! SvOK(sv))
2257 #define RsSIMPLE(sv)  (SvOK(sv) && SvCUR(sv))
2258 #define RsPARA(sv)    (SvOK(sv) && ! SvCUR(sv))
2259 #define RsRECORD(sv)  (SvROK(sv) && (SvIV(SvRV(sv)) > 0))
2260
2261 /* Enable variables which are pointers to functions */
2262 #ifdef PERL_OBJECT
2263 typedef regexp*(CPerlObj::*regcomp_t) _((char* exp, char* xend, PMOP* pm));
2264 typedef I32 (CPerlObj::*regexec_t) _((regexp* prog, char* stringarg,
2265                                       char* strend, char* strbeg,
2266                                       I32 minend, SV* screamer, void* data,
2267                                       U32 flags));
2268 #else
2269 typedef regexp*(*regcomp_t) _((char* exp, char* xend, PMOP* pm));
2270 typedef I32 (*regexec_t) _((regexp* prog, char* stringarg, char* strend, char*
2271                             strbeg, I32 minend, SV* screamer, void* data, 
2272                             U32 flags));
2273
2274 #endif
2275
2276 /* Set up PERLVAR macros for populating structs */
2277 #define PERLVAR(var,type) type var;
2278 #define PERLVARI(var,type,init) type var;
2279 #define PERLVARIC(var,type,init) type var;
2280
2281 /* Interpreter exitlist entry */
2282 typedef struct exitlistentry {
2283 #ifdef PERL_OBJECT
2284     void (*fn) _((CPerlObj*, void*));
2285 #else
2286     void (*fn) _((void*));
2287 #endif
2288     void *ptr;
2289 } PerlExitListEntry;
2290
2291 #ifdef PERL_OBJECT
2292 extern "C" CPerlObj* perl_alloc _((IPerlMem*, IPerlEnv*, IPerlStdIO*, IPerlLIO*, IPerlDir*, IPerlSock*, IPerlProc*));
2293
2294 #ifdef PERL_OBJECT
2295 typedef int (CPerlObj::*runops_proc_t) _((void));
2296 #endif  /* PERL_OBJECT */
2297
2298 #undef EXT
2299 #define EXT
2300 #undef EXTCONST
2301 #define EXTCONST
2302 #undef INIT
2303 #define INIT(x)
2304
2305 class CPerlObj {
2306 public:
2307         CPerlObj(IPerlMem*, IPerlEnv*, IPerlStdIO*, IPerlLIO*, IPerlDir*, IPerlSock*, IPerlProc*);
2308         void Init(void);
2309         void* operator new(size_t nSize, IPerlMem *pvtbl);
2310 #endif /* PERL_OBJECT */
2311
2312 #ifdef PERL_GLOBAL_STRUCT
2313 struct perl_vars {
2314 #include "perlvars.h"
2315 };
2316
2317 #ifdef PERL_CORE
2318 EXT struct perl_vars PL_Vars;
2319 EXT struct perl_vars *PL_VarsPtr INIT(&PL_Vars);
2320 #else /* PERL_CORE */
2321 #if !defined(__GNUC__) || !(defined(WIN32) || defined(CYGWIN32))
2322 EXT
2323 #endif /* WIN32 */
2324 struct perl_vars *PL_VarsPtr;
2325 #define PL_Vars (*((PL_VarsPtr) ? PL_VarsPtr : (PL_VarsPtr =  Perl_GetVars())))
2326 #endif /* PERL_CORE */
2327 #endif /* PERL_GLOBAL_STRUCT */
2328
2329 #ifdef MULTIPLICITY
2330 /* If we have multiple interpreters define a struct 
2331    holding variables which must be per-interpreter
2332    If we don't have threads anything that would have 
2333    be per-thread is per-interpreter.
2334 */
2335
2336 struct interpreter {
2337 #include "thrdvar.h"
2338 #include "intrpvar.h"
2339 };
2340
2341 #else
2342 struct interpreter {
2343     char broiled;
2344 };
2345 #endif
2346
2347 #ifdef USE_THREADS
2348 /* If we have threads define a struct with all the variables
2349  * that have to be per-thread
2350  */
2351
2352
2353 struct perl_thread {
2354 #include "thrdvar.h"
2355 };
2356
2357 typedef struct perl_thread *Thread;
2358
2359 #else
2360 typedef void *Thread;
2361 #endif
2362
2363 /* Done with PERLVAR macros for now ... */
2364 #undef PERLVAR
2365 #undef PERLVARI
2366 #undef PERLVARIC
2367
2368 #include "thread.h"
2369 #include "pp.h"
2370 #include "proto.h"
2371
2372 /* The following must follow proto.h as #defines mess up syntax */
2373
2374 #if !defined(PERL_FOR_X2P)
2375 #  include "embedvar.h"
2376 #endif
2377
2378 /* Now include all the 'global' variables 
2379  * If we don't have threads or multiple interpreters
2380  * these include variables that would have been their struct-s 
2381  */
2382                          
2383 #define PERLVAR(var,type) EXT type PL_##var;
2384 #define PERLVARI(var,type,init) EXT type  PL_##var INIT(init);
2385 #define PERLVARIC(var,type,init) EXTCONST type PL_##var INIT(init);
2386
2387 #ifndef PERL_GLOBAL_STRUCT
2388 #include "perlvars.h"
2389 #endif
2390
2391 #ifndef MULTIPLICITY
2392
2393 #  include "intrpvar.h"
2394 #  ifndef USE_THREADS
2395 #    include "thrdvar.h"
2396 #  endif
2397
2398 #endif
2399
2400 #ifdef PERL_OBJECT
2401 /*
2402  * The following is a buffer where new variables must
2403  * be defined to maintain binary compatibility with PERL_OBJECT
2404  * for 5.005
2405  */
2406 PERLVAR(object_compatibility[30],       char)
2407 };
2408
2409 #  include "embed.h"
2410 #  if defined(WIN32) && !defined(WIN32IO_IS_STDIO)
2411 #    define errno       CPerlObj::ErrorNo()
2412 #  endif
2413
2414 #  ifdef DOINIT
2415 #    include "INTERN.h"
2416 #  else
2417 #    include "EXTERN.h"
2418 #  endif
2419
2420 /* this has structure inits, so it cannot be included before here */
2421 #  include "opcode.h"
2422
2423 #endif  /* PERL_OBJECT */
2424
2425 #undef PERLVAR
2426 #undef PERLVARI
2427 #undef PERLVARIC
2428
2429 #if defined(HASATTRIBUTE) && defined(WIN32)
2430 /*
2431  * This provides a layer of functions and macros to ensure extensions will
2432  * get to use the same RTL functions as the core.
2433  * It has to go here or #define of printf messes up __attribute__
2434  * stuff in proto.h  
2435  */
2436 #ifndef PERL_OBJECT
2437 #  include <win32iop.h>
2438 #endif  /* PERL_OBJECT */
2439 #endif  /* WIN32 */
2440
2441 #ifdef DOINIT
2442
2443 EXT MGVTBL PL_vtbl_sv = {magic_get,
2444                                 magic_set,
2445                                         magic_len,
2446                                                 0,      0};
2447 EXT MGVTBL PL_vtbl_env =        {0,     magic_set_all_env,
2448                                 0,      magic_clear_all_env,
2449                                                         0};
2450 EXT MGVTBL PL_vtbl_envelem =    {0,     magic_setenv,
2451                                         0,      magic_clearenv,
2452                                                         0};
2453 EXT MGVTBL PL_vtbl_sig =        {0,     0,               0, 0, 0};
2454 EXT MGVTBL PL_vtbl_sigelem =    {magic_getsig,
2455                                         magic_setsig,
2456                                         0,      magic_clearsig,
2457                                                         0};
2458 EXT MGVTBL PL_vtbl_pack =       {0,     0,      magic_sizepack, magic_wipepack,
2459                                                         0};
2460 EXT MGVTBL PL_vtbl_packelem =   {magic_getpack,
2461                                 magic_setpack,
2462                                         0,      magic_clearpack,
2463                                                         0};
2464 EXT MGVTBL PL_vtbl_dbline =     {0,     magic_setdbline,
2465                                         0,      0,      0};
2466 EXT MGVTBL PL_vtbl_isa =        {0,     magic_setisa,
2467                                         0,      magic_setisa,
2468                                                         0};
2469 EXT MGVTBL PL_vtbl_isaelem =    {0,     magic_setisa,
2470                                         0,      0,      0};
2471 EXT MGVTBL PL_vtbl_arylen =     {magic_getarylen,
2472                                 magic_setarylen,
2473                                         0,      0,      0};
2474 EXT MGVTBL PL_vtbl_glob =       {magic_getglob,
2475                                 magic_setglob,
2476                                         0,      0,      0};
2477 EXT MGVTBL PL_vtbl_mglob =      {0,     magic_setmglob,
2478                                         0,      0,      0};
2479 EXT MGVTBL PL_vtbl_nkeys =      {magic_getnkeys,
2480                                 magic_setnkeys,
2481                                         0,      0,      0};
2482 EXT MGVTBL PL_vtbl_taint =      {magic_gettaint,magic_settaint,
2483                                         0,      0,      0};
2484 EXT MGVTBL PL_vtbl_substr =     {magic_getsubstr, magic_setsubstr,
2485                                         0,      0,      0};
2486 EXT MGVTBL PL_vtbl_vec =        {magic_getvec,
2487                                 magic_setvec,
2488                                         0,      0,      0};
2489 EXT MGVTBL PL_vtbl_pos =        {magic_getpos,
2490                                 magic_setpos,
2491                                         0,      0,      0};
2492 EXT MGVTBL PL_vtbl_bm = {0,     magic_setbm,
2493                                         0,      0,      0};
2494 EXT MGVTBL PL_vtbl_fm = {0,     magic_setfm,
2495                                         0,      0,      0};
2496 EXT MGVTBL PL_vtbl_uvar =       {magic_getuvar,
2497                                 magic_setuvar,
2498                                         0,      0,      0};
2499 #ifdef USE_THREADS
2500 EXT MGVTBL PL_vtbl_mutex =      {0,     0,      0,      0,      magic_mutexfree};
2501 #endif /* USE_THREADS */
2502 EXT MGVTBL PL_vtbl_defelem = {magic_getdefelem,magic_setdefelem,
2503                                         0,      0,      0};
2504
2505 EXT MGVTBL PL_vtbl_regexp = {0,0,0,0, magic_freeregexp};
2506 EXT MGVTBL PL_vtbl_regdata = {0, 0, magic_regdata_cnt, 0, 0};
2507 EXT MGVTBL PL_vtbl_regdatum = {magic_regdatum_get, 0, 0, 0, 0};
2508
2509 #ifdef USE_LOCALE_COLLATE
2510 EXT MGVTBL PL_vtbl_collxfrm = {0,
2511                                 magic_setcollxfrm,
2512                                         0,      0,      0};
2513 #endif
2514
2515 EXT MGVTBL PL_vtbl_amagic =       {0,     magic_setamagic,
2516                                         0,      0,      magic_setamagic};
2517 EXT MGVTBL PL_vtbl_amagicelem =   {0,     magic_setamagic,
2518                                         0,      0,      magic_setamagic};
2519
2520 EXT MGVTBL PL_vtbl_backref =      {0,   0,
2521                                         0,      0,      magic_killbackrefs};
2522
2523 #else /* !DOINIT */
2524
2525 EXT MGVTBL PL_vtbl_sv;
2526 EXT MGVTBL PL_vtbl_env;
2527 EXT MGVTBL PL_vtbl_envelem;
2528 EXT MGVTBL PL_vtbl_sig;
2529 EXT MGVTBL PL_vtbl_sigelem;
2530 EXT MGVTBL PL_vtbl_pack;
2531 EXT MGVTBL PL_vtbl_packelem;
2532 EXT MGVTBL PL_vtbl_dbline;
2533 EXT MGVTBL PL_vtbl_isa;
2534 EXT MGVTBL PL_vtbl_isaelem;
2535 EXT MGVTBL PL_vtbl_arylen;
2536 EXT MGVTBL PL_vtbl_glob;
2537 EXT MGVTBL PL_vtbl_mglob;
2538 EXT MGVTBL PL_vtbl_nkeys;
2539 EXT MGVTBL PL_vtbl_taint;
2540 EXT MGVTBL PL_vtbl_substr;
2541 EXT MGVTBL PL_vtbl_vec;
2542 EXT MGVTBL PL_vtbl_pos;
2543 EXT MGVTBL PL_vtbl_bm;
2544 EXT MGVTBL PL_vtbl_fm;
2545 EXT MGVTBL PL_vtbl_uvar;
2546
2547 #ifdef USE_THREADS
2548 EXT MGVTBL PL_vtbl_mutex;
2549 #endif /* USE_THREADS */
2550
2551 EXT MGVTBL PL_vtbl_defelem;
2552 EXT MGVTBL PL_vtbl_regexp;
2553 EXT MGVTBL PL_vtbl_regdata;
2554 EXT MGVTBL PL_vtbl_regdatum;
2555
2556 #ifdef USE_LOCALE_COLLATE
2557 EXT MGVTBL PL_vtbl_collxfrm;
2558 #endif
2559
2560 EXT MGVTBL PL_vtbl_amagic;
2561 EXT MGVTBL PL_vtbl_amagicelem;
2562
2563 EXT MGVTBL PL_vtbl_backref;
2564
2565 #endif /* !DOINIT */
2566
2567 enum {
2568   fallback_amg,        abs_amg,
2569   bool__amg,   nomethod_amg,
2570   string_amg,  numer_amg,
2571   add_amg,     add_ass_amg,
2572   subtr_amg,   subtr_ass_amg,
2573   mult_amg,    mult_ass_amg,
2574   div_amg,     div_ass_amg,
2575   modulo_amg,  modulo_ass_amg,
2576   pow_amg,     pow_ass_amg,
2577   lshift_amg,  lshift_ass_amg,
2578   rshift_amg,  rshift_ass_amg,
2579   band_amg,    band_ass_amg,
2580   bor_amg,     bor_ass_amg,
2581   bxor_amg,    bxor_ass_amg,
2582   lt_amg,      le_amg,
2583   gt_amg,      ge_amg,
2584   eq_amg,      ne_amg,
2585   ncmp_amg,    scmp_amg,
2586   slt_amg,     sle_amg,
2587   sgt_amg,     sge_amg,
2588   seq_amg,     sne_amg,
2589   not_amg,     compl_amg,
2590   inc_amg,     dec_amg,
2591   atan2_amg,   cos_amg,
2592   sin_amg,     exp_amg,
2593   log_amg,     sqrt_amg,
2594   repeat_amg,   repeat_ass_amg,
2595   concat_amg,  concat_ass_amg,
2596   copy_amg,    neg_amg,
2597   to_sv_amg,   to_av_amg,
2598   to_hv_amg,   to_gv_amg,
2599   to_cv_amg,   iter_amg,    
2600   max_amg_code
2601   /* Do not leave a trailing comma here.  C9X allows it, C89 doesn't. */
2602 };
2603
2604 #define NofAMmeth max_amg_code
2605
2606 #ifdef DOINIT
2607 EXTCONST char * PL_AMG_names[NofAMmeth] = {
2608   "fallback",   "abs",                  /* "fallback" should be the first. */
2609   "bool",       "nomethod",
2610   "\"\"",       "0+",
2611   "+",          "+=",
2612   "-",          "-=",
2613   "*",          "*=",
2614   "/",          "/=",
2615   "%",          "%=",
2616   "**",         "**=",
2617   "<<",         "<<=",
2618   ">>",         ">>=",
2619   "&",          "&=",
2620   "|",          "|=",
2621   "^",          "^=",
2622   "<",          "<=",
2623   ">",          ">=",
2624   "==",         "!=",
2625   "<=>",        "cmp",
2626   "lt",         "le",
2627   "gt",         "ge",
2628   "eq",         "ne",
2629   "!",          "~",
2630   "++",         "--",
2631   "atan2",      "cos",
2632   "sin",        "exp",
2633   "log",        "sqrt",
2634   "x",          "x=",
2635   ".",          ".=",
2636   "=",          "neg",
2637   "${}",        "@{}",
2638   "%{}",        "*{}",
2639   "&{}",        "<>",
2640 };
2641 #else
2642 EXTCONST char * PL_AMG_names[NofAMmeth];
2643 #endif /* def INITAMAGIC */
2644
2645 struct am_table {
2646   long was_ok_sub;
2647   long was_ok_am;
2648   U32 flags;
2649   CV* table[NofAMmeth];
2650   long fallback;
2651 };
2652 struct am_table_short {
2653   long was_ok_sub;
2654   long was_ok_am;
2655   U32 flags;
2656 };
2657 typedef struct am_table AMT;
2658 typedef struct am_table_short AMTS;
2659
2660 #define AMGfallNEVER    1
2661 #define AMGfallNO       2
2662 #define AMGfallYES      3
2663
2664 #define AMTf_AMAGIC             1
2665 #define AMT_AMAGIC(amt)         ((amt)->flags & AMTf_AMAGIC)
2666 #define AMT_AMAGIC_on(amt)      ((amt)->flags |= AMTf_AMAGIC)
2667 #define AMT_AMAGIC_off(amt)     ((amt)->flags &= ~AMTf_AMAGIC)
2668
2669
2670 /*
2671  * some compilers like to redefine cos et alia as faster
2672  * (and less accurate?) versions called F_cos et cetera (Quidquid
2673  * latine dictum sit, altum viditur.)  This trick collides with
2674  * the Perl overloading (amg).  The following #defines fool both.
2675  */
2676
2677 #ifdef _FASTMATH
2678 #   ifdef atan2
2679 #       define F_atan2_amg  atan2_amg
2680 #   endif
2681 #   ifdef cos
2682 #       define F_cos_amg    cos_amg
2683 #   endif
2684 #   ifdef exp
2685 #       define F_exp_amg    exp_amg
2686 #   endif
2687 #   ifdef log
2688 #       define F_log_amg    log_amg
2689 #   endif
2690 #   ifdef pow
2691 #       define F_pow_amg    pow_amg
2692 #   endif
2693 #   ifdef sin
2694 #       define F_sin_amg    sin_amg
2695 #   endif
2696 #   ifdef sqrt
2697 #       define F_sqrt_amg   sqrt_amg
2698 #   endif
2699 #endif /* _FASTMATH */
2700
2701 #define PERLDB_ALL      0x3f            /* No _NONAME, _GOTO */
2702 #define PERLDBf_SUB     0x01            /* Debug sub enter/exit. */
2703 #define PERLDBf_LINE    0x02            /* Keep line #. */
2704 #define PERLDBf_NOOPT   0x04            /* Switch off optimizations. */
2705 #define PERLDBf_INTER   0x08            /* Preserve more data for
2706                                            later inspections.  */
2707 #define PERLDBf_SUBLINE 0x10            /* Keep subr source lines. */
2708 #define PERLDBf_SINGLE  0x20            /* Start with single-step on. */
2709 #define PERLDBf_NONAME  0x40            /* For _SUB: no name of the subr. */
2710 #define PERLDBf_GOTO    0x80            /* Report goto: call DB::goto. */
2711
2712 #define PERLDB_SUB      (PL_perldb && (PL_perldb & PERLDBf_SUB))
2713 #define PERLDB_LINE     (PL_perldb && (PL_perldb & PERLDBf_LINE))
2714 #define PERLDB_NOOPT    (PL_perldb && (PL_perldb & PERLDBf_NOOPT))
2715 #define PERLDB_INTER    (PL_perldb && (PL_perldb & PERLDBf_INTER))
2716 #define PERLDB_SUBLINE  (PL_perldb && (PL_perldb & PERLDBf_SUBLINE))
2717 #define PERLDB_SINGLE   (PL_perldb && (PL_perldb & PERLDBf_SINGLE))
2718 #define PERLDB_SUB_NN   (PL_perldb && (PL_perldb & (PERLDBf_NONAME)))
2719 #define PERLDB_GOTO     (PL_perldb && (PL_perldb & PERLDBf_GOTO))
2720
2721
2722 #ifdef USE_LOCALE_NUMERIC
2723
2724 #define SET_NUMERIC_STANDARD() \
2725     STMT_START {                                \
2726         if (! PL_numeric_standard)                      \
2727             perl_set_numeric_standard();        \
2728     } STMT_END
2729
2730 #define SET_NUMERIC_LOCAL() \
2731     STMT_START {                                \
2732         if (! PL_numeric_local)                 \
2733             perl_set_numeric_local();           \
2734     } STMT_END
2735
2736 #else /* !USE_LOCALE_NUMERIC */
2737
2738 #define SET_NUMERIC_STANDARD()  /**/
2739 #define SET_NUMERIC_LOCAL()     /**/
2740
2741 #endif /* !USE_LOCALE_NUMERIC */
2742
2743 #if !defined(PERLIO_IS_STDIO) && defined(HASATTRIBUTE)
2744 /* 
2745  * Now we have __attribute__ out of the way 
2746  * Remap printf 
2747  */
2748 #define printf PerlIO_stdoutf
2749 #endif
2750
2751 #ifndef PERL_SCRIPT_MODE
2752 #define PERL_SCRIPT_MODE "r"
2753 #endif
2754
2755 /*
2756  * nice_chunk and nice_chunk size need to be set
2757  * and queried under the protection of sv_mutex
2758  */
2759 #define offer_nice_chunk(chunk, chunk_size) do {        \
2760         LOCK_SV_MUTEX;                                  \
2761         if (!PL_nice_chunk) {                           \
2762             PL_nice_chunk = (char*)(chunk);             \
2763             PL_nice_chunk_size = (chunk_size);          \
2764         }                                               \
2765         else {                                          \
2766             Safefree(chunk);                            \
2767         }                                               \
2768         UNLOCK_SV_MUTEX;                                \
2769     } while (0)
2770
2771 #ifdef HAS_SEM
2772 #   include <sys/ipc.h>
2773 #   include <sys/sem.h>
2774 #   ifndef HAS_UNION_SEMUN      /* Provide the union semun. */
2775     union semun {
2776         int val;
2777         struct semid_ds *buf;
2778         unsigned short *array;
2779     };
2780 #   endif
2781 #   ifdef USE_SEMCTL_SEMUN
2782 #       define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun)
2783 #   else
2784 #       ifdef USE_SEMCTL_SEMID_DS
2785 #           define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun.buf)
2786 #       endif
2787 #   endif
2788 #endif
2789
2790 /* Mention
2791
2792    INSTALL_USR_BIN_PERL
2793
2794    I_SYS_MMAN
2795    HAS_MMAP
2796    HAS_MUNMAP
2797    HAS_MPROTECT
2798    HAS_MSYNC
2799    HAS_MADVISE
2800    Mmap_t
2801
2802    here so that Configure picks them up. */
2803
2804 #ifdef IAMSUID
2805
2806 #ifdef I_SYS_STATVFS
2807 #   include <sys/statvfs.h>     /* for f?statvfs() */
2808 #endif
2809 #ifdef I_SYS_MOUNT
2810 #   include <sys/mount.h>       /* for *BSD f?statfs() */
2811 #endif
2812 #ifdef I_MNTENT
2813 #   include <mntent.h>          /* for getmntent() */
2814 #endif
2815
2816 #endif /* IAMSUID */
2817
2818 /* and finally... */
2819 #define PERL_PATCHLEVEL_H_IMPLICIT
2820 #include "patchlevel.h"
2821 #undef PERL_PATCHLEVEL_H_IMPLICIT
2822
2823 #endif /* Include guard */