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