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