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