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