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