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