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