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