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