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