bd92e379edb0935e9f3ea61839634779d14944ef
[p5sagit/p5-mst-13.2.git] / perl.h
1 /*    perl.h
2  *
3  *    Copyright (c) 1987-1997, Larry Wall
4  *
5  *    You may distribute under the terms of either the GNU General Public
6  *    License or the Artistic License, as specified in the README file.
7  *
8  */
9 #ifndef H_PERL
10 #define H_PERL 1
11 #define OVERLOAD
12
13 #ifdef PERL_FOR_X2P
14 /*
15  * This file is being used for x2p stuff. 
16  * Above symbol is defined via -D in 'x2p/Makefile.SH'
17  * Decouple x2p stuff from some of perls more extreme eccentricities. 
18  */
19 #undef EMBED
20 #undef NO_EMBED
21 #define NO_EMBED
22 #undef MULTIPLICITY
23 #undef USE_STDIO
24 #define USE_STDIO
25 #endif /* PERL_FOR_X2P */
26
27 #ifdef PERL_OBJECT
28
29 /* PERL_OBJECT explained  - DickH and DougL @ ActiveState.com
30
31 Defining PERL_OBJECT turns on creation of a C++ object that
32 contains all writable core perl global variables and functions.
33 Stated another way, all necessary global variables and functions
34 are members of a big C++ object. This object's class is CPerlObj.
35 This allows a Perl Host to have multiple, independent perl
36 interpreters in the same process space. This is very important on
37 Win32 systems as the overhead of process creation is quite high --
38 this could be even higher than the script compile and execute time
39 for small scripts.
40
41 The perl executable implementation on Win32 is composed of perl.exe
42 (the Perl Host) and perlX.dll. (the Perl Core). This allows the
43 same Perl Core to easily be embedded in other applications that use
44 the perl interpreter.
45
46 +-----------+
47 | Perl Host |
48 +-----------+
49       ^
50           |
51           v
52 +-----------+   +-----------+
53 | Perl Core |<->| Extension |
54 +-----------+   +-----------+ ...
55
56 Defining PERL_OBJECT has the following effects:
57
58 PERL CORE
59 1. CPerlObj is defined (this is the PERL_OBJECT)
60 2. all static functions that needed to access either global
61 variables or functions needed are made member functions
62 3. all writable static variables are made member variables
63 4. all global variables and functions are defined as:
64         #define var CPerlObj::Perl_var
65         #define func CPerlObj::Perl_func
66         * these are in objpp.h
67 This necessitated renaming some local variables and functions that
68 had the same name as a global variable or function. This was
69 probably a _good_ thing anyway.
70
71
72 EXTENSIONS
73 1. Access to global variables and perl functions is through a
74 pointer to the PERL_OBJECT. This pointer type is CPerlObj*. This is
75 made transparent to extension developers by the following macros:
76         #define var pPerl->Perl_var
77         #define func pPerl->Perl_func
78         * these are done in objXSUB.h
79 This requires that the extension be compiled as C++, which means
80 that the code must be ANSI C and not K&R C. For K&R extensions,
81 please see the C API notes located in Win32/GenCAPI.pl. This script
82 creates a perlCAPI.lib that provides a K & R compatible C interface
83 to the PERL_OBJECT.
84 2. Local variables and functions cannot have the same name as perl's
85 variables or functions since the macros will redefine these. Look for
86 this if you get some strange error message and it does not look like
87 the code that you had written. This often happens with variables that
88 are local to a function.
89
90 PERL HOST
91 1. The perl host is linked with perlX.lib to get perl_alloc. This
92 function will return a pointer to CPerlObj (the PERL_OBJECT). It
93 takes pointers to the various PerlXXX_YYY interfaces (see iperlsys.h
94 for more information on this).
95 2. The perl host calls the same functions as normally would be
96 called in setting up and running a perl script, except that the
97 functions are now member functions of the PERL_OBJECT.
98
99 */
100
101
102 class CPerlObj;
103
104 #define STATIC
105 #define CPERLscope(x) CPerlObj::x
106 #define CPERLproto CPerlObj *
107 #define _CPERLproto ,CPERLproto
108 #define CPERLarg CPerlObj *pPerl
109 #define CPERLarg_ CPERLarg,
110 #define _CPERLarg ,CPERLarg
111 #define PERL_OBJECT_THIS this
112 #define _PERL_OBJECT_THIS ,this
113 #define PERL_OBJECT_THIS_ this,
114 #define CALLRUNOPS (this->*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 #       if defined(__VOS__)
1126 #         include "vosish.h"
1127 #       else
1128 #         include "unixish.h"
1129 #       endif
1130 #     endif
1131 #   endif
1132 # endif
1133 #endif         
1134
1135 #ifndef FUNC_NAME_TO_PTR
1136 #define FUNC_NAME_TO_PTR(name)          name
1137 #endif
1138
1139 /* 
1140  * USE_THREADS needs to be after unixish.h as <pthread.h> includes
1141  * <sys/signal.h> which defines NSIG - which will stop inclusion of <signal.h>
1142  * this results in many functions being undeclared which bothers C++
1143  * May make sense to have threads after "*ish.h" anyway
1144  */
1145
1146 #ifdef USE_THREADS
1147    /* pending resolution of licensing issues, we avoid the erstwhile
1148     * atomic.h everywhere */
1149 #  define EMULATE_ATOMIC_REFCOUNTS
1150
1151 #  ifdef FAKE_THREADS
1152 #    include "fakethr.h"
1153 #  else
1154 #    ifdef WIN32
1155 #      include <win32thread.h>
1156 #    else
1157 #      ifdef OS2
1158 #        include "os2thread.h"
1159 #      else
1160 #        include <pthread.h>
1161 typedef pthread_t perl_os_thread;
1162 typedef pthread_mutex_t perl_mutex;
1163 typedef pthread_cond_t perl_cond;
1164 typedef pthread_key_t perl_key;
1165 #      endif /* OS2 */
1166 #    endif /* WIN32 */
1167 #  endif /* FAKE_THREADS */
1168 #endif /* USE_THREADS */
1169
1170
1171   
1172 #ifdef VMS
1173 #   define STATUS_NATIVE        PL_statusvalue_vms
1174 #   define STATUS_NATIVE_EXPORT \
1175         ((I32)PL_statusvalue_vms == -1 ? 44 : PL_statusvalue_vms)
1176 #   define STATUS_NATIVE_SET(n)                                         \
1177         STMT_START {                                                    \
1178             PL_statusvalue_vms = (n);                                   \
1179             if ((I32)PL_statusvalue_vms == -1)                          \
1180                 PL_statusvalue = -1;                                    \
1181             else if (PL_statusvalue_vms & STS$M_SUCCESS)                \
1182                 PL_statusvalue = 0;                                     \
1183             else if ((PL_statusvalue_vms & STS$M_SEVERITY) == 0)        \
1184                 PL_statusvalue = 1 << 8;                                \
1185             else                                                        \
1186                 PL_statusvalue = (PL_statusvalue_vms & STS$M_SEVERITY) << 8;    \
1187         } STMT_END
1188 #   define STATUS_POSIX PL_statusvalue
1189 #   ifdef VMSISH_STATUS
1190 #       define STATUS_CURRENT   (VMSISH_STATUS ? STATUS_NATIVE : STATUS_POSIX)
1191 #   else
1192 #       define STATUS_CURRENT   STATUS_POSIX
1193 #   endif
1194 #   define STATUS_POSIX_SET(n)                          \
1195         STMT_START {                                    \
1196             PL_statusvalue = (n);                               \
1197             if (PL_statusvalue != -1) {                 \
1198                 PL_statusvalue &= 0xFFFF;                       \
1199                 PL_statusvalue_vms = PL_statusvalue ? 44 : 1;   \
1200             }                                           \
1201             else PL_statusvalue_vms = -1;                       \
1202         } STMT_END
1203 #   define STATUS_ALL_SUCCESS   (PL_statusvalue = 0, PL_statusvalue_vms = 1)
1204 #   define STATUS_ALL_FAILURE   (PL_statusvalue = 1, PL_statusvalue_vms = 44)
1205 #else
1206 #   define STATUS_NATIVE        STATUS_POSIX
1207 #   define STATUS_NATIVE_EXPORT STATUS_POSIX
1208 #   define STATUS_NATIVE_SET    STATUS_POSIX_SET
1209 #   define STATUS_POSIX         PL_statusvalue
1210 #   define STATUS_POSIX_SET(n)          \
1211         STMT_START {                    \
1212             PL_statusvalue = (n);               \
1213             if (PL_statusvalue != -1)   \
1214                 PL_statusvalue &= 0xFFFF;       \
1215         } STMT_END
1216 #   define STATUS_CURRENT STATUS_POSIX
1217 #   define STATUS_ALL_SUCCESS   (PL_statusvalue = 0)
1218 #   define STATUS_ALL_FAILURE   (PL_statusvalue = 1)
1219 #endif
1220
1221 /* Some unistd.h's give a prototype for pause() even though
1222    HAS_PAUSE ends up undefined.  This causes the #define
1223    below to be rejected by the compmiler.  Sigh.
1224 */
1225 #ifdef HAS_PAUSE
1226 #define Pause   pause
1227 #else
1228 #define Pause() sleep((32767<<16)+32767)
1229 #endif
1230
1231 #ifndef IOCPARM_LEN
1232 #   ifdef IOCPARM_MASK
1233         /* on BSDish systes we're safe */
1234 #       define IOCPARM_LEN(x)  (((x) >> 16) & IOCPARM_MASK)
1235 #   else
1236         /* otherwise guess at what's safe */
1237 #       define IOCPARM_LEN(x)   256
1238 #   endif
1239 #endif
1240
1241 #ifdef UNION_ANY_DEFINITION
1242 UNION_ANY_DEFINITION;
1243 #else
1244 union any {
1245     void*       any_ptr;
1246     I32         any_i32;
1247     IV          any_iv;
1248     long        any_long;
1249     void        (CPERLscope(*any_dptr)) _((void*));
1250 };
1251 #endif
1252
1253 #ifdef USE_THREADS
1254 #define ARGSproto struct perl_thread *thr
1255 #else
1256 #define ARGSproto void
1257 #endif /* USE_THREADS */
1258
1259 /* Work around some cygwin32 problems with importing global symbols */
1260 #if defined(CYGWIN32) && defined(DLLIMPORT) 
1261 #   include "cw32imp.h"
1262 #endif
1263
1264 #include "regexp.h"
1265 #include "sv.h"
1266 #include "util.h"
1267 #include "form.h"
1268 #include "gv.h"
1269 #include "cv.h"
1270 #include "opcode.h"
1271 #include "op.h"
1272 #include "cop.h"
1273 #include "av.h"
1274 #include "hv.h"
1275 #include "mg.h"
1276 #include "scope.h"
1277 #include "warning.h"
1278 #include "bytecode.h"
1279 #include "byterun.h"
1280 #include "utf8.h"
1281
1282 /* Current curly descriptor */
1283 typedef struct curcur CURCUR;
1284 struct curcur {
1285     int         parenfloor;     /* how far back to strip paren data */
1286     int         cur;            /* how many instances of scan we've matched */
1287     int         min;            /* the minimal number of scans to match */
1288     int         max;            /* the maximal number of scans to match */
1289     int         minmod;         /* whether to work our way up or down */
1290     regnode *   scan;           /* the thing to match */
1291     regnode *   next;           /* what has to match after it */
1292     char *      lastloc;        /* where we started matching this scan */
1293     CURCUR *    oldcc;          /* current curly before we started this one */
1294 };
1295
1296 typedef struct _sublex_info SUBLEXINFO;
1297 struct _sublex_info {
1298     I32 super_state;    /* lexer state to save */
1299     I32 sub_inwhat;     /* "lex_inwhat" to use */
1300     OP *sub_op;         /* "lex_op" to use */
1301 };
1302
1303 #ifdef PERL_OBJECT
1304 struct magic_state {
1305     SV* mgs_sv;
1306     U32 mgs_flags;
1307 };
1308 typedef struct magic_state MGS;
1309
1310 typedef struct {
1311     I32 len_min;
1312     I32 len_delta;
1313     I32 pos_min;
1314     I32 pos_delta;
1315     SV *last_found;
1316     I32 last_end;                       /* min value, <0 unless valid. */
1317     I32 last_start_min;
1318     I32 last_start_max;
1319     SV **longest;                       /* Either &l_fixed, or &l_float. */
1320     SV *longest_fixed;
1321     I32 offset_fixed;
1322     SV *longest_float;
1323     I32 offset_float_min;
1324     I32 offset_float_max;
1325     I32 flags;
1326 } scan_data_t;
1327
1328 typedef I32 CHECKPOINT;
1329 #endif /* PERL_OBJECT */
1330
1331 /* work around some libPW problems */
1332 #ifdef DOINIT
1333 EXT char Error[1];
1334 #endif
1335
1336 #if defined(iAPX286) || defined(M_I286) || defined(I80286)
1337 #   define I286
1338 #endif
1339
1340 #if defined(htonl) && !defined(HAS_HTONL)
1341 #define HAS_HTONL
1342 #endif
1343 #if defined(htons) && !defined(HAS_HTONS)
1344 #define HAS_HTONS
1345 #endif
1346 #if defined(ntohl) && !defined(HAS_NTOHL)
1347 #define HAS_NTOHL
1348 #endif
1349 #if defined(ntohs) && !defined(HAS_NTOHS)
1350 #define HAS_NTOHS
1351 #endif
1352 #ifndef HAS_HTONL
1353 #if (BYTEORDER & 0xffff) != 0x4321
1354 #define HAS_HTONS
1355 #define HAS_HTONL
1356 #define HAS_NTOHS
1357 #define HAS_NTOHL
1358 #define MYSWAP
1359 #define htons my_swap
1360 #define htonl my_htonl
1361 #define ntohs my_swap
1362 #define ntohl my_ntohl
1363 #endif
1364 #else
1365 #if (BYTEORDER & 0xffff) == 0x4321
1366 #undef HAS_HTONS
1367 #undef HAS_HTONL
1368 #undef HAS_NTOHS
1369 #undef HAS_NTOHL
1370 #endif
1371 #endif
1372
1373 /*
1374  * Little-endian byte order functions - 'v' for 'VAX', or 'reVerse'.
1375  * -DWS
1376  */
1377 #if BYTEORDER != 0x1234
1378 # define HAS_VTOHL
1379 # define HAS_VTOHS
1380 # define HAS_HTOVL
1381 # define HAS_HTOVS
1382 # if BYTEORDER == 0x4321
1383 #  define vtohl(x)      ((((x)&0xFF)<<24)       \
1384                         +(((x)>>24)&0xFF)       \
1385                         +(((x)&0x0000FF00)<<8)  \
1386                         +(((x)&0x00FF0000)>>8)  )
1387 #  define vtohs(x)      ((((x)&0xFF)<<8) + (((x)>>8)&0xFF))
1388 #  define htovl(x)      vtohl(x)
1389 #  define htovs(x)      vtohs(x)
1390 # endif
1391         /* otherwise default to functions in util.c */
1392 #endif
1393
1394 #ifdef CASTNEGFLOAT
1395 #define U_S(what) ((U16)(what))
1396 #define U_I(what) ((unsigned int)(what))
1397 #define U_L(what) ((U32)(what))
1398 #else
1399 EXTERN_C U32 cast_ulong _((double));
1400 #define U_S(what) ((U16)cast_ulong((double)(what)))
1401 #define U_I(what) ((unsigned int)cast_ulong((double)(what)))
1402 #define U_L(what) (cast_ulong((double)(what)))
1403 #endif
1404
1405 #ifdef CASTI32
1406 #define I_32(what) ((I32)(what))
1407 #define I_V(what) ((IV)(what))
1408 #define U_V(what) ((UV)(what))
1409 #else
1410 START_EXTERN_C
1411 I32 cast_i32 _((double));
1412 IV cast_iv _((double));
1413 UV cast_uv _((double));
1414 END_EXTERN_C
1415 #define I_32(what) (cast_i32((double)(what)))
1416 #define I_V(what) (cast_iv((double)(what)))
1417 #define U_V(what) (cast_uv((double)(what)))
1418 #endif
1419
1420 struct Outrec {
1421     I32         o_lines;
1422     char        *o_str;
1423     U32         o_len;
1424 };
1425
1426 #ifndef MAXSYSFD
1427 #   define MAXSYSFD 2
1428 #endif
1429
1430 #ifndef TMPPATH
1431 #  define TMPPATH "/tmp/perl-eXXXXXX"
1432 #endif
1433
1434 #ifndef __cplusplus
1435 Uid_t getuid _((void));
1436 Uid_t geteuid _((void));
1437 Gid_t getgid _((void));
1438 Gid_t getegid _((void));
1439 #endif
1440
1441 #ifdef DEBUGGING
1442 #ifndef Perl_debug_log
1443 #define Perl_debug_log  PerlIO_stderr()
1444 #endif
1445 #undef  YYDEBUG
1446 #define YYDEBUG 1
1447 #define DEB(a)                          a
1448 #define DEBUG(a)   if (PL_debug)                a
1449 #define DEBUG_p(a) if (PL_debug & 1)    a
1450 #define DEBUG_s(a) if (PL_debug & 2)    a
1451 #define DEBUG_l(a) if (PL_debug & 4)    a
1452 #define DEBUG_t(a) if (PL_debug & 8)    a
1453 #define DEBUG_o(a) if (PL_debug & 16)   a
1454 #define DEBUG_c(a) if (PL_debug & 32)   a
1455 #define DEBUG_P(a) if (PL_debug & 64)   a
1456 #define DEBUG_m(a) if (PL_curinterp && PL_debug & 128)  a
1457 #define DEBUG_f(a) if (PL_debug & 256)  a
1458 #define DEBUG_r(a) if (PL_debug & 512)  a
1459 #define DEBUG_x(a) if (PL_debug & 1024) a
1460 #define DEBUG_u(a) if (PL_debug & 2048) a
1461 #define DEBUG_L(a) if (PL_debug & 4096) a
1462 #define DEBUG_H(a) if (PL_debug & 8192) a
1463 #define DEBUG_X(a) if (PL_debug & 16384)        a
1464 #define DEBUG_D(a) if (PL_debug & 32768)        a
1465 #  ifdef USE_THREADS
1466 #    define DEBUG_S(a) if (PL_debug & (1<<16))  a
1467 #  else
1468 #    define DEBUG_S(a)
1469 #  endif
1470 #else
1471 #define DEB(a)
1472 #define DEBUG(a)
1473 #define DEBUG_p(a)
1474 #define DEBUG_s(a)
1475 #define DEBUG_l(a)
1476 #define DEBUG_t(a)
1477 #define DEBUG_o(a)
1478 #define DEBUG_c(a)
1479 #define DEBUG_P(a)
1480 #define DEBUG_m(a)
1481 #define DEBUG_f(a)
1482 #define DEBUG_r(a)
1483 #define DEBUG_x(a)
1484 #define DEBUG_u(a)
1485 #define DEBUG_S(a)
1486 #define DEBUG_H(a)
1487 #define DEBUG_X(a)
1488 #define DEBUG_D(a)
1489 #define DEBUG_S(a)
1490 #endif
1491 #define YYMAXDEPTH 300
1492
1493 #ifndef assert  /* <assert.h> might have been included somehow */
1494 #define assert(what)    DEB( {                                          \
1495         if (!(what)) {                                                  \
1496             croak("Assertion failed: file \"%s\", line %d",             \
1497                 __FILE__, __LINE__);                                    \
1498             PerlProc_exit(1);                                                   \
1499         }})
1500 #endif
1501
1502 struct ufuncs {
1503     I32 (*uf_val)_((IV, SV*));
1504     I32 (*uf_set)_((IV, SV*));
1505     IV uf_index;
1506 };
1507
1508 /* Fix these up for __STDC__ */
1509 #ifndef DONT_DECLARE_STD
1510 char *mktemp _((char*));
1511 double atof _((const char*));
1512 #endif
1513
1514 #ifndef STANDARD_C
1515 /* All of these are in stdlib.h or time.h for ANSI C */
1516 Time_t time();
1517 struct tm *gmtime(), *localtime();
1518 #ifdef OEMVS
1519 char *(strchr)(), *(strrchr)();
1520 char *(strcpy)(), *(strcat)();
1521 #else
1522 char *strchr(), *strrchr();
1523 char *strcpy(), *strcat();
1524 #endif
1525 #endif /* ! STANDARD_C */
1526
1527
1528 #ifdef I_MATH
1529 #    include <math.h>
1530 #else
1531 START_EXTERN_C
1532             double exp _((double));
1533             double log _((double));
1534             double log10 _((double));
1535             double sqrt _((double));
1536             double frexp _((double,int*));
1537             double ldexp _((double,int));
1538             double modf _((double,double*));
1539             double sin _((double));
1540             double cos _((double));
1541             double atan2 _((double,double));
1542             double pow _((double,double));
1543 END_EXTERN_C
1544 #endif
1545
1546 #ifndef __cplusplus
1547 #  ifdef __NeXT__ /* or whatever catches all NeXTs */
1548 char *crypt ();       /* Maybe more hosts will need the unprototyped version */
1549 #  else
1550 #    if !defined(WIN32) || !defined(HAVE_DES_FCRYPT)
1551 char *crypt _((const char*, const char*));
1552 #    endif /* !WIN32 && !HAVE_CRYPT_SOURCE */
1553 #  endif /* !__NeXT__ */
1554 #  ifndef DONT_DECLARE_STD
1555 #    ifndef getenv
1556 char *getenv _((const char*));
1557 #    endif /* !getenv */
1558 Off_t lseek _((int,Off_t,int));
1559 #  endif /* !DONT_DECLARE_STD */
1560 char *getlogin _((void));
1561 #endif /* !__cplusplus */
1562
1563 #ifdef UNLINK_ALL_VERSIONS /* Currently only makes sense for VMS */
1564 #define UNLINK unlnk
1565 I32 unlnk _((char*));
1566 #else
1567 #define UNLINK unlink
1568 #endif
1569
1570 #ifndef HAS_SETREUID
1571 #  ifdef HAS_SETRESUID
1572 #    define setreuid(r,e) setresuid(r,e,(Uid_t)-1)
1573 #    define HAS_SETREUID
1574 #  endif
1575 #endif
1576 #ifndef HAS_SETREGID
1577 #  ifdef HAS_SETRESGID
1578 #    define setregid(r,e) setresgid(r,e,(Gid_t)-1)
1579 #    define HAS_SETREGID
1580 #  endif
1581 #endif
1582
1583 typedef Signal_t (*Sighandler_t) _((int));
1584
1585 #ifdef HAS_SIGACTION
1586 typedef struct sigaction Sigsave_t;
1587 #else
1588 typedef Sighandler_t Sigsave_t;
1589 #endif
1590
1591 #define SCAN_DEF 0
1592 #define SCAN_TR 1
1593 #define SCAN_REPL 2
1594
1595 #ifdef DEBUGGING
1596 # ifndef register
1597 #  define register
1598 # endif
1599 # define PAD_SV(po) pad_sv(po)
1600 # define RUNOPS_DEFAULT runops_debug
1601 #else
1602 # define PAD_SV(po) PL_curpad[po]
1603 # define RUNOPS_DEFAULT runops_standard
1604 #endif
1605
1606 #ifdef MYMALLOC
1607 #  define MALLOC_INIT MUTEX_INIT(&PL_malloc_mutex)
1608 #  define MALLOC_TERM MUTEX_DESTROY(&PL_malloc_mutex)
1609 #else
1610 #  define MALLOC_INIT
1611 #  define MALLOC_TERM
1612 #endif
1613
1614
1615 /*
1616  * These need prototyping here because <proto.h> isn't
1617  * included until after runops is initialised.
1618  */
1619
1620 #ifndef PERL_OBJECT
1621 typedef int runops_proc_t _((void));
1622 int runops_standard _((void));
1623 #ifdef DEBUGGING
1624 int runops_debug _((void));
1625 #endif
1626 #endif  /* PERL_OBJECT */
1627
1628 /* _ (for $_) must be first in the following list (DEFSV requires it) */
1629 #define THREADSV_NAMES "_123456789&`'+/.,\\\";^-%=|~:\001\005!@"
1630
1631 /* VMS doesn't use environ array and NeXT has problems with crt0.o globals */
1632 #if !defined(VMS) && !(defined(NeXT) && defined(__DYNAMIC__))
1633 #if !defined(DONT_DECLARE_STD) \
1634         || (defined(__svr4__) && defined(__GNUC__) && defined(sun)) \
1635         || defined(__sgi) || defined(__DGUX)
1636 extern char **  environ;        /* environment variables supplied via exec */
1637 #endif
1638 #else
1639 #  if defined(NeXT) && defined(__DYNAMIC__)
1640
1641 #  include <mach-o/dyld.h>
1642 EXT char *** environ_pointer;
1643 #  define environ (*environ_pointer)
1644 #  endif
1645 #endif /* environ processing */
1646
1647
1648 /* for tmp use in stupid debuggers */
1649 EXT int *       di;
1650 EXT short *     ds;
1651 EXT char *      dc;
1652
1653 /* handy constants */
1654 EXTCONST char warn_uninit[]
1655   INIT("Use of uninitialized value");
1656 EXTCONST char warn_nosemi[]
1657   INIT("Semicolon seems to be missing");
1658 EXTCONST char warn_reserved[]
1659   INIT("Unquoted string \"%s\" may clash with future reserved word");
1660 EXTCONST char warn_nl[]
1661   INIT("Unsuccessful %s on filename containing newline");
1662 EXTCONST char no_wrongref[]
1663   INIT("Can't use %s ref as %s ref");
1664 EXTCONST char no_symref[]
1665   INIT("Can't use string (\"%.32s\") as %s ref while \"strict refs\" in use");
1666 EXTCONST char no_usym[]
1667   INIT("Can't use an undefined value as %s reference");
1668 EXTCONST char no_aelem[]
1669   INIT("Modification of non-creatable array value attempted, subscript %d");
1670 EXTCONST char no_helem[]
1671   INIT("Modification of non-creatable hash value attempted, subscript \"%s\"");
1672 EXTCONST char no_modify[]
1673   INIT("Modification of a read-only value attempted");
1674 EXTCONST char no_mem[]
1675   INIT("Out of memory!\n");
1676 EXTCONST char no_security[]
1677   INIT("Insecure dependency in %s%s");
1678 EXTCONST char no_sock_func[]
1679   INIT("Unsupported socket function \"%s\" called");
1680 EXTCONST char no_dir_func[]
1681   INIT("Unsupported directory function \"%s\" called");
1682 EXTCONST char no_func[]
1683   INIT("The %s function is unimplemented");
1684 EXTCONST char no_myglob[]
1685   INIT("\"my\" variable %s can't be in a package");
1686
1687 #ifdef DOINIT
1688 EXT char *sig_name[] = { SIG_NAME };
1689 EXT int   sig_num[]  = { SIG_NUM };
1690 EXT SV  * psig_ptr[sizeof(sig_num)/sizeof(*sig_num)];
1691 EXT SV  * psig_name[sizeof(sig_num)/sizeof(*sig_num)];
1692 #else
1693 EXT char *sig_name[];
1694 EXT int   sig_num[];
1695 EXT SV  * psig_ptr[];
1696 EXT SV  * psig_name[];
1697 #endif
1698
1699 /* fast case folding tables */
1700
1701 #ifdef DOINIT
1702 #ifdef EBCDIC
1703 EXT unsigned char fold[] = { /* fast EBCDIC case folding table */
1704     0,      1,      2,      3,      4,      5,      6,      7,
1705     8,      9,      10,     11,     12,     13,     14,     15,
1706     16,     17,     18,     19,     20,     21,     22,     23,
1707     24,     25,     26,     27,     28,     29,     30,     31,
1708     32,     33,     34,     35,     36,     37,     38,     39,
1709     40,     41,     42,     43,     44,     45,     46,     47,
1710     48,     49,     50,     51,     52,     53,     54,     55,
1711     56,     57,     58,     59,     60,     61,     62,     63,
1712     64,     65,     66,     67,     68,     69,     70,     71,
1713     72,     73,     74,     75,     76,     77,     78,     79,
1714     80,     81,     82,     83,     84,     85,     86,     87,
1715     88,     89,     90,     91,     92,     93,     94,     95,
1716     96,     97,     98,     99,     100,    101,    102,    103,
1717     104,    105,    106,    107,    108,    109,    110,    111,
1718     112,    113,    114,    115,    116,    117,    118,    119,
1719     120,    121,    122,    123,    124,    125,    126,    127,
1720     128,    'A',    'B',    'C',    'D',    'E',    'F',    'G',
1721     'H',    'I',    138,    139,    140,    141,    142,    143,
1722     144,    'J',    'K',    'L',    'M',    'N',    'O',    'P',
1723     'Q',    'R',    154,    155,    156,    157,    158,    159,
1724     160,    161,    'S',    'T',    'U',    'V',    'W',    'X',
1725     'Y',    'Z',    170,    171,    172,    173,    174,    175,
1726     176,    177,    178,    179,    180,    181,    182,    183,
1727     184,    185,    186,    187,    188,    189,    190,    191,
1728     192,    'a',    'b',    'c',    'd',    'e',    'f',    'g',
1729     'h',    'i',    202,    203,    204,    205,    206,    207,
1730     208,    'j',    'k',    'l',    'm',    'n',    'o',    'p',
1731     'q',    'r',    218,    219,    220,    221,    222,    223,
1732     224,    225,    's',    't',    'u',    'v',    'w',    'x',
1733     'y',    'z',    234,    235,    236,    237,    238,    239,
1734     240,    241,    242,    243,    244,    245,    246,    247,
1735     248,    249,    250,    251,    252,    253,    254,    255
1736 };
1737 #else   /* ascii rather than ebcdic */
1738 EXTCONST  unsigned char fold[] = {
1739         0,      1,      2,      3,      4,      5,      6,      7,
1740         8,      9,      10,     11,     12,     13,     14,     15,
1741         16,     17,     18,     19,     20,     21,     22,     23,
1742         24,     25,     26,     27,     28,     29,     30,     31,
1743         32,     33,     34,     35,     36,     37,     38,     39,
1744         40,     41,     42,     43,     44,     45,     46,     47,
1745         48,     49,     50,     51,     52,     53,     54,     55,
1746         56,     57,     58,     59,     60,     61,     62,     63,
1747         64,     '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',    91,     92,     93,     94,     95,
1751         96,     'A',    'B',    'C',    'D',    'E',    'F',    'G',
1752         'H',    'I',    'J',    'K',    'L',    'M',    'N',    'O',
1753         'P',    'Q',    'R',    'S',    'T',    'U',    'V',    'W',
1754         'X',    'Y',    'Z',    123,    124,    125,    126,    127,
1755         128,    129,    130,    131,    132,    133,    134,    135,
1756         136,    137,    138,    139,    140,    141,    142,    143,
1757         144,    145,    146,    147,    148,    149,    150,    151,
1758         152,    153,    154,    155,    156,    157,    158,    159,
1759         160,    161,    162,    163,    164,    165,    166,    167,
1760         168,    169,    170,    171,    172,    173,    174,    175,
1761         176,    177,    178,    179,    180,    181,    182,    183,
1762         184,    185,    186,    187,    188,    189,    190,    191,
1763         192,    193,    194,    195,    196,    197,    198,    199,
1764         200,    201,    202,    203,    204,    205,    206,    207,
1765         208,    209,    210,    211,    212,    213,    214,    215,
1766         216,    217,    218,    219,    220,    221,    222,    223,    
1767         224,    225,    226,    227,    228,    229,    230,    231,
1768         232,    233,    234,    235,    236,    237,    238,    239,
1769         240,    241,    242,    243,    244,    245,    246,    247,
1770         248,    249,    250,    251,    252,    253,    254,    255
1771 };
1772 #endif  /* !EBCDIC */
1773 #else
1774 EXTCONST unsigned char fold[];
1775 #endif
1776
1777 #ifdef DOINIT
1778 EXT unsigned char fold_locale[] = {
1779         0,      1,      2,      3,      4,      5,      6,      7,
1780         8,      9,      10,     11,     12,     13,     14,     15,
1781         16,     17,     18,     19,     20,     21,     22,     23,
1782         24,     25,     26,     27,     28,     29,     30,     31,
1783         32,     33,     34,     35,     36,     37,     38,     39,
1784         40,     41,     42,     43,     44,     45,     46,     47,
1785         48,     49,     50,     51,     52,     53,     54,     55,
1786         56,     57,     58,     59,     60,     61,     62,     63,
1787         64,     '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',    91,     92,     93,     94,     95,
1791         96,     'A',    'B',    'C',    'D',    'E',    'F',    'G',
1792         'H',    'I',    'J',    'K',    'L',    'M',    'N',    'O',
1793         'P',    'Q',    'R',    'S',    'T',    'U',    'V',    'W',
1794         'X',    'Y',    'Z',    123,    124,    125,    126,    127,
1795         128,    129,    130,    131,    132,    133,    134,    135,
1796         136,    137,    138,    139,    140,    141,    142,    143,
1797         144,    145,    146,    147,    148,    149,    150,    151,
1798         152,    153,    154,    155,    156,    157,    158,    159,
1799         160,    161,    162,    163,    164,    165,    166,    167,
1800         168,    169,    170,    171,    172,    173,    174,    175,
1801         176,    177,    178,    179,    180,    181,    182,    183,
1802         184,    185,    186,    187,    188,    189,    190,    191,
1803         192,    193,    194,    195,    196,    197,    198,    199,
1804         200,    201,    202,    203,    204,    205,    206,    207,
1805         208,    209,    210,    211,    212,    213,    214,    215,
1806         216,    217,    218,    219,    220,    221,    222,    223,    
1807         224,    225,    226,    227,    228,    229,    230,    231,
1808         232,    233,    234,    235,    236,    237,    238,    239,
1809         240,    241,    242,    243,    244,    245,    246,    247,
1810         248,    249,    250,    251,    252,    253,    254,    255
1811 };
1812 #else
1813 EXT unsigned char fold_locale[];
1814 #endif
1815
1816 #ifdef DOINIT
1817 #ifdef EBCDIC
1818 EXT unsigned char freq[] = {/* EBCDIC frequencies for mixed English/C */
1819     1,      2,      84,     151,    154,    155,    156,    157,
1820     165,    246,    250,    3,      158,    7,      18,     29,
1821     40,     51,     62,     73,     85,     96,     107,    118,
1822     129,    140,    147,    148,    149,    150,    152,    153,
1823     255,      6,      8,      9,     10,     11,     12,     13,
1824      14,     15,     24,     25,     26,     27,     28,    226,
1825      29,     30,     31,     32,     33,     43,     44,     45,
1826      46,     47,     48,     49,     50,     76,     77,     78,
1827      79,     80,     81,     82,     83,     84,     85,     86,
1828      87,     94,     95,    234,    181,    233,    187,    190,
1829     180,     96,     97,     98,     99,    100,    101,    102,
1830     104,    112,    182,    174,    236,    232,    229,    103,
1831     228,    226,    114,    115,    116,    117,    118,    119,
1832     120,    121,    122,    235,    176,    230,    194,    162,
1833     130,    131,    132,    133,    134,    135,    136,    137,
1834     138,    139,    201,    205,    163,    217,    220,    224,
1835     5,      248,    227,    244,    242,    255,    241,    231,
1836     240,    253,    16,     197,    19,     20,     21,     187,
1837     23,     169,    210,    245,    237,    249,    247,    239,
1838     168,    252,    34,     196,    36,     37,     38,     39,
1839     41,     42,     251,    254,    238,    223,    221,    213,
1840     225,    177,    52,     53,     54,     55,     56,     57,
1841     58,     59,     60,     61,     63,     64,     65,     66,
1842     67,     68,     69,     70,     71,     72,     74,     75,
1843     205,    208,    186,    202,    200,    218,    198,    179,
1844     178,    214,    88,     89,     90,     91,     92,     93,
1845     217,    166,    170,    207,    199,    209,    206,    204,
1846     160,    212,    105,    106,    108,    109,    110,    111,
1847     203,    113,    216,    215,    192,    175,    193,    243,
1848     172,    161,    123,    124,    125,    126,    127,    128,
1849     222,    219,    211,    195,    188,    193,    185,    184,
1850     191,    183,    141,    142,    143,    144,    145,    146
1851 };
1852 #else  /* ascii rather than ebcdic */
1853 EXTCONST unsigned char freq[] = {       /* letter frequencies for mixed English/C */
1854         1,      2,      84,     151,    154,    155,    156,    157,
1855         165,    246,    250,    3,      158,    7,      18,     29,
1856         40,     51,     62,     73,     85,     96,     107,    118,
1857         129,    140,    147,    148,    149,    150,    152,    153,
1858         255,    182,    224,    205,    174,    176,    180,    217,
1859         233,    232,    236,    187,    235,    228,    234,    226,
1860         222,    219,    211,    195,    188,    193,    185,    184,
1861         191,    183,    201,    229,    181,    220,    194,    162,
1862         163,    208,    186,    202,    200,    218,    198,    179,
1863         178,    214,    166,    170,    207,    199,    209,    206,
1864         204,    160,    212,    216,    215,    192,    175,    173,
1865         243,    172,    161,    190,    203,    189,    164,    230,
1866         167,    248,    227,    244,    242,    255,    241,    231,
1867         240,    253,    169,    210,    245,    237,    249,    247,
1868         239,    168,    252,    251,    254,    238,    223,    221,
1869         213,    225,    177,    197,    171,    196,    159,    4,
1870         5,      6,      8,      9,      10,     11,     12,     13,
1871         14,     15,     16,     17,     19,     20,     21,     22,
1872         23,     24,     25,     26,     27,     28,     30,     31,
1873         32,     33,     34,     35,     36,     37,     38,     39,
1874         41,     42,     43,     44,     45,     46,     47,     48,
1875         49,     50,     52,     53,     54,     55,     56,     57,
1876         58,     59,     60,     61,     63,     64,     65,     66,
1877         67,     68,     69,     70,     71,     72,     74,     75,
1878         76,     77,     78,     79,     80,     81,     82,     83,
1879         86,     87,     88,     89,     90,     91,     92,     93,
1880         94,     95,     97,     98,     99,     100,    101,    102,
1881         103,    104,    105,    106,    108,    109,    110,    111,
1882         112,    113,    114,    115,    116,    117,    119,    120,
1883         121,    122,    123,    124,    125,    126,    127,    128,
1884         130,    131,    132,    133,    134,    135,    136,    137,
1885         138,    139,    141,    142,    143,    144,    145,    146
1886 };
1887 #endif
1888 #else
1889 EXTCONST unsigned char freq[];
1890 #endif
1891
1892 #ifdef DEBUGGING
1893 #ifdef DOINIT
1894 EXTCONST char* block_type[] = {
1895         "NULL",
1896         "SUB",
1897         "EVAL",
1898         "LOOP",
1899         "SUBST",
1900         "BLOCK",
1901 };
1902 #else
1903 EXTCONST char* block_type[];
1904 #endif
1905 #endif
1906
1907 /*****************************************************************************/
1908 /* This lexer/parser stuff is currently global since yacc is hard to reenter */
1909 /*****************************************************************************/
1910 /* XXX This needs to be revisited, since BEGIN makes yacc re-enter... */
1911
1912 #include "perly.h"
1913
1914 #define LEX_NOTPARSING          11      /* borrowed from toke.c */
1915
1916 typedef enum {
1917     XOPERATOR,
1918     XTERM,
1919     XREF,
1920     XSTATE,
1921     XBLOCK,
1922     XTERMBLOCK
1923 } expectation;
1924
1925
1926                                 /* Note: the lowest 8 bits are reserved for
1927                                    stuffing into op->op_private */
1928 #define HINT_INTEGER            0x00000001
1929 #define HINT_STRICT_REFS        0x00000002
1930 /* #define HINT_notused4        0x00000004 */
1931 #define HINT_UTF8               0x00000008
1932 /* #define HINT_notused10       0x00000010 */
1933                                 /* Note: 20,40,80 used for NATIVE_HINTS */
1934
1935 #define HINT_BLOCK_SCOPE        0x00000100
1936 #define HINT_STRICT_SUBS        0x00000200
1937 #define HINT_STRICT_VARS        0x00000400
1938 #define HINT_LOCALE             0x00000800
1939
1940 #define HINT_NEW_INTEGER        0x00001000
1941 #define HINT_NEW_FLOAT          0x00002000
1942 #define HINT_NEW_BINARY         0x00004000
1943 #define HINT_NEW_STRING         0x00008000
1944 #define HINT_NEW_RE             0x00010000
1945 #define HINT_LOCALIZE_HH        0x00020000 /* %^H needs to be copied */
1946
1947 #define HINT_RE_TAINT           0x00100000
1948 #define HINT_RE_EVAL            0x00200000
1949
1950 /* Various states of an input record separator SV (rs, nrs) */
1951 #define RsSNARF(sv)   (! SvOK(sv))
1952 #define RsSIMPLE(sv)  (SvOK(sv) && SvCUR(sv))
1953 #define RsPARA(sv)    (SvOK(sv) && ! SvCUR(sv))
1954 #define RsRECORD(sv)  (SvROK(sv) && (SvIV(SvRV(sv)) > 0))
1955
1956 /* Enable variables which are pointers to functions */
1957 #ifdef PERL_OBJECT
1958 typedef regexp*(CPerlObj::*regcomp_t) _((char* exp, char* xend, PMOP* pm));
1959 typedef I32 (CPerlObj::*regexec_t) _((regexp* prog, char* stringarg,
1960                                       char* strend, char* strbeg,
1961                                       I32 minend, SV* screamer, void* data,
1962                                       U32 flags));
1963 #else
1964 typedef regexp*(*regcomp_t) _((char* exp, char* xend, PMOP* pm));
1965 typedef I32 (*regexec_t) _((regexp* prog, char* stringarg, char* strend, char*
1966                             strbeg, I32 minend, SV* screamer, void* data, 
1967                             U32 flags));
1968
1969 #endif
1970
1971 /* Set up PERLVAR macros for populating structs */
1972 #define PERLVAR(var,type) type var;
1973 #define PERLVARI(var,type,init) type var;
1974 #define PERLVARIC(var,type,init) type var;
1975
1976 /* Interpreter exitlist entry */
1977 typedef struct exitlistentry {
1978 #ifdef PERL_OBJECT
1979     void (*fn) _((CPerlObj*, void*));
1980 #else
1981     void (*fn) _((void*));
1982 #endif
1983     void *ptr;
1984 } PerlExitListEntry;
1985
1986 #ifdef PERL_OBJECT
1987 extern "C" CPerlObj* perl_alloc _((IPerlMem*, IPerlEnv*, IPerlStdIO*, IPerlLIO*, IPerlDir*, IPerlSock*, IPerlProc*));
1988
1989 typedef int (CPerlObj::*runops_proc_t) _((void));
1990 #undef EXT
1991 #define EXT
1992 #undef EXTCONST
1993 #define EXTCONST
1994 #undef INIT
1995 #define INIT(x)
1996
1997 class CPerlObj {
1998 public:
1999         CPerlObj(IPerlMem*, IPerlEnv*, IPerlStdIO*, IPerlLIO*, IPerlDir*, IPerlSock*, IPerlProc*);
2000         void Init(void);
2001         void* operator new(size_t nSize, IPerlMem *pvtbl);
2002 #endif /* PERL_OBJECT */
2003
2004 #ifdef PERL_GLOBAL_STRUCT
2005 struct perl_vars {
2006 #include "perlvars.h"
2007 };
2008
2009 #ifdef PERL_CORE
2010 EXT struct perl_vars PL_Vars;
2011 EXT struct perl_vars *PL_VarsPtr INIT(&PL_Vars);
2012 #else /* PERL_CORE */
2013 #if !defined(__GNUC__) || !defined(WIN32)
2014 EXT
2015 #endif /* WIN32 */
2016 struct perl_vars *PL_VarsPtr;
2017 #define PL_Vars (*((PL_VarsPtr) ? PL_VarsPtr : (PL_VarsPtr =  Perl_GetVars())))
2018 #endif /* PERL_CORE */
2019 #endif /* PERL_GLOBAL_STRUCT */
2020
2021 #ifdef MULTIPLICITY
2022 /* If we have multiple interpreters define a struct 
2023    holding variables which must be per-interpreter
2024    If we don't have threads anything that would have 
2025    be per-thread is per-interpreter.
2026 */
2027
2028 struct interpreter {
2029 #ifndef USE_THREADS
2030 #include "thrdvar.h"
2031 #endif
2032 #include "intrpvar.h"
2033 };
2034
2035 #else
2036 struct interpreter {
2037     char broiled;
2038 };
2039 #endif
2040
2041 #ifdef USE_THREADS
2042 /* If we have threads define a struct with all the variables
2043  * that have to be per-thread
2044  */
2045
2046
2047 struct perl_thread {
2048 #include "thrdvar.h"
2049 };
2050
2051 typedef struct perl_thread *Thread;
2052
2053 #else
2054 typedef void *Thread;
2055 #endif
2056
2057 /* Done with PERLVAR macros for now ... */
2058 #undef PERLVAR
2059 #undef PERLVARI
2060 #undef PERLVARIC
2061
2062 #include "thread.h"
2063 #include "pp.h"
2064 #include "proto.h"
2065
2066 #ifdef EMBED
2067 #define Perl_sv_setptrobj(rv,ptr,name) Perl_sv_setref_iv(rv,name,(IV)ptr)
2068 #define Perl_sv_setptrref(rv,ptr) Perl_sv_setref_iv(rv,Nullch,(IV)ptr)
2069 #else
2070 #define sv_setptrobj(rv,ptr,name) sv_setref_iv(rv,name,(IV)ptr)
2071 #define sv_setptrref(rv,ptr) sv_setref_iv(rv,Nullch,(IV)ptr)
2072 #endif
2073
2074 /* The following must follow proto.h as #defines mess up syntax */
2075
2076 #include "embedvar.h"
2077
2078 /* Now include all the 'global' variables 
2079  * If we don't have threads or multiple interpreters
2080  * these include variables that would have been their struct-s 
2081  */
2082                          
2083 #define PERLVAR(var,type) EXT type PL_##var;
2084 #define PERLVARI(var,type,init) EXT type  PL_##var INIT(init);
2085 #define PERLVARIC(var,type,init) EXTCONST type PL_##var INIT(init);
2086
2087 #ifndef PERL_GLOBAL_STRUCT
2088 #include "perlvars.h"
2089 #endif
2090
2091 #ifndef MULTIPLICITY
2092
2093 #  include "intrpvar.h"
2094 #  ifndef USE_THREADS
2095 #    include "thrdvar.h"
2096 #  endif
2097
2098 #endif
2099
2100 #ifdef PERL_OBJECT
2101 /*
2102  * The following is a buffer where new variables must
2103  * be defined to maintain binary compatibility with PERL_OBJECT
2104  * for 5.005
2105  */
2106 PERLVAR(object_compatibility[30],       char)
2107 };
2108
2109 #include "objpp.h"
2110 #ifdef DOINIT
2111 #include "INTERN.h"
2112 #else
2113 #include "EXTERN.h"
2114 #endif
2115 #endif  /* PERL_OBJECT */
2116
2117
2118 #undef PERLVAR
2119 #undef PERLVARI
2120 #undef PERLVARIC
2121
2122 #if defined(HASATTRIBUTE) && defined(WIN32)
2123 /*
2124  * This provides a layer of functions and macros to ensure extensions will
2125  * get to use the same RTL functions as the core.
2126  * It has to go here or #define of printf messes up __attribute__
2127  * stuff in proto.h  
2128  */
2129 #ifndef PERL_OBJECT
2130 #  include <win32iop.h>
2131 #endif  /* PERL_OBJECT */
2132 #endif  /* WIN32 */
2133
2134 #ifdef DOINIT
2135
2136 EXT MGVTBL vtbl_sv =    {magic_get,
2137                                 magic_set,
2138                                         magic_len,
2139                                                 0,      0};
2140 EXT MGVTBL vtbl_env =   {0,     magic_set_all_env,
2141                                 0,      magic_clear_all_env,
2142                                                         0};
2143 EXT MGVTBL vtbl_envelem =       {0,     magic_setenv,
2144                                         0,      magic_clearenv,
2145                                                         0};
2146 EXT MGVTBL vtbl_sig =   {0,     0,               0, 0, 0};
2147 EXT MGVTBL vtbl_sigelem =       {magic_getsig,
2148                                         magic_setsig,
2149                                         0,      magic_clearsig,
2150                                                         0};
2151 EXT MGVTBL vtbl_pack =  {0,     0,      magic_sizepack, magic_wipepack,
2152                                                         0};
2153 EXT MGVTBL vtbl_packelem =      {magic_getpack,
2154                                 magic_setpack,
2155                                         0,      magic_clearpack,
2156                                                         0};
2157 EXT MGVTBL vtbl_dbline =        {0,     magic_setdbline,
2158                                         0,      0,      0};
2159 EXT MGVTBL vtbl_isa =   {0,     magic_setisa,
2160                                         0,      magic_setisa,
2161                                                         0};
2162 EXT MGVTBL vtbl_isaelem =       {0,     magic_setisa,
2163                                         0,      0,      0};
2164 EXT MGVTBL vtbl_arylen =        {magic_getarylen,
2165                                 magic_setarylen,
2166                                         0,      0,      0};
2167 EXT MGVTBL vtbl_glob =  {magic_getglob,
2168                                 magic_setglob,
2169                                         0,      0,      0};
2170 EXT MGVTBL vtbl_mglob = {0,     magic_setmglob,
2171                                         0,      0,      0};
2172 EXT MGVTBL vtbl_nkeys = {magic_getnkeys,
2173                                 magic_setnkeys,
2174                                         0,      0,      0};
2175 EXT MGVTBL vtbl_taint = {magic_gettaint,magic_settaint,
2176                                         0,      0,      0};
2177 EXT MGVTBL vtbl_substr =        {magic_getsubstr, magic_setsubstr,
2178                                         0,      0,      0};
2179 EXT MGVTBL vtbl_vec =   {magic_getvec,
2180                                 magic_setvec,
2181                                         0,      0,      0};
2182 EXT MGVTBL vtbl_pos =   {magic_getpos,
2183                                 magic_setpos,
2184                                         0,      0,      0};
2185 EXT MGVTBL vtbl_bm =    {0,     magic_setbm,
2186                                         0,      0,      0};
2187 EXT MGVTBL vtbl_fm =    {0,     magic_setfm,
2188                                         0,      0,      0};
2189 EXT MGVTBL vtbl_uvar =  {magic_getuvar,
2190                                 magic_setuvar,
2191                                         0,      0,      0};
2192 #ifdef USE_THREADS
2193 EXT MGVTBL vtbl_mutex = {0,     0,      0,      0,      magic_mutexfree};
2194 #endif /* USE_THREADS */
2195 EXT MGVTBL vtbl_defelem = {magic_getdefelem,magic_setdefelem,
2196                                         0,      0,      0};
2197
2198 EXT MGVTBL vtbl_regexp = {0,0,0,0, magic_freeregexp};
2199 EXT MGVTBL vtbl_regdata = {0, 0, magic_regdata_cnt, 0, 0};
2200 EXT MGVTBL vtbl_regdatum = {magic_regdatum_get, 0, 0, 0, 0};
2201
2202 #ifdef USE_LOCALE_COLLATE
2203 EXT MGVTBL vtbl_collxfrm = {0,
2204                                 magic_setcollxfrm,
2205                                         0,      0,      0};
2206 #endif
2207
2208 #ifdef OVERLOAD
2209 EXT MGVTBL vtbl_amagic =       {0,     magic_setamagic,
2210                                         0,      0,      magic_setamagic};
2211 EXT MGVTBL vtbl_amagicelem =   {0,     magic_setamagic,
2212                                         0,      0,      magic_setamagic};
2213 #endif /* OVERLOAD */
2214
2215 #else /* !DOINIT */
2216
2217 EXT MGVTBL vtbl_sv;
2218 EXT MGVTBL vtbl_env;
2219 EXT MGVTBL vtbl_envelem;
2220 EXT MGVTBL vtbl_sig;
2221 EXT MGVTBL vtbl_sigelem;
2222 EXT MGVTBL vtbl_pack;
2223 EXT MGVTBL vtbl_packelem;
2224 EXT MGVTBL vtbl_dbline;
2225 EXT MGVTBL vtbl_isa;
2226 EXT MGVTBL vtbl_isaelem;
2227 EXT MGVTBL vtbl_arylen;
2228 EXT MGVTBL vtbl_glob;
2229 EXT MGVTBL vtbl_mglob;
2230 EXT MGVTBL vtbl_nkeys;
2231 EXT MGVTBL vtbl_taint;
2232 EXT MGVTBL vtbl_substr;
2233 EXT MGVTBL vtbl_vec;
2234 EXT MGVTBL vtbl_pos;
2235 EXT MGVTBL vtbl_bm;
2236 EXT MGVTBL vtbl_fm;
2237 EXT MGVTBL vtbl_uvar;
2238
2239 #ifdef USE_THREADS
2240 EXT MGVTBL vtbl_mutex;
2241 #endif /* USE_THREADS */
2242
2243 EXT MGVTBL vtbl_defelem;
2244 EXT MGVTBL vtbl_regexp;
2245 EXT MGVTBL vtbl_regdata;
2246 EXT MGVTBL vtbl_regdatum;
2247
2248 #ifdef USE_LOCALE_COLLATE
2249 EXT MGVTBL vtbl_collxfrm;
2250 #endif
2251
2252 #ifdef OVERLOAD
2253 EXT MGVTBL vtbl_amagic;
2254 EXT MGVTBL vtbl_amagicelem;
2255 #endif /* OVERLOAD */
2256
2257 #endif /* !DOINIT */
2258
2259 #ifdef OVERLOAD
2260
2261 #define NofAMmeth 58
2262 #ifdef DOINIT
2263 EXTCONST char * AMG_names[NofAMmeth] = {
2264   "fallback",   "abs",                  /* "fallback" should be the first. */
2265   "bool",       "nomethod",
2266   "\"\"",       "0+",
2267   "+",          "+=",
2268   "-",          "-=",
2269   "*",          "*=",
2270   "/",          "/=",
2271   "%",          "%=",
2272   "**",         "**=",
2273   "<<",         "<<=",
2274   ">>",         ">>=",
2275   "&",          "&=",
2276   "|",          "|=",
2277   "^",          "^=",
2278   "<",          "<=",
2279   ">",          ">=",
2280   "==",         "!=",
2281   "<=>",        "cmp",
2282   "lt",         "le",
2283   "gt",         "ge",
2284   "eq",         "ne",
2285   "!",          "~",
2286   "++",         "--",
2287   "atan2",      "cos",
2288   "sin",        "exp",
2289   "log",        "sqrt",
2290   "x",          "x=",
2291   ".",          ".=",
2292   "=",          "neg"
2293 };
2294 #else
2295 EXTCONST char * AMG_names[NofAMmeth];
2296 #endif /* def INITAMAGIC */
2297
2298 struct am_table {
2299   long was_ok_sub;
2300   long was_ok_am;
2301   U32 flags;
2302   CV* table[NofAMmeth];
2303   long fallback;
2304 };
2305 struct am_table_short {
2306   long was_ok_sub;
2307   long was_ok_am;
2308   U32 flags;
2309 };
2310 typedef struct am_table AMT;
2311 typedef struct am_table_short AMTS;
2312
2313 #define AMGfallNEVER    1
2314 #define AMGfallNO       2
2315 #define AMGfallYES      3
2316
2317 #define AMTf_AMAGIC             1
2318 #define AMT_AMAGIC(amt)         ((amt)->flags & AMTf_AMAGIC)
2319 #define AMT_AMAGIC_on(amt)      ((amt)->flags |= AMTf_AMAGIC)
2320 #define AMT_AMAGIC_off(amt)     ((amt)->flags &= ~AMTf_AMAGIC)
2321
2322 enum {
2323   fallback_amg, abs_amg,
2324   bool__amg,    nomethod_amg,
2325   string_amg,   numer_amg,
2326   add_amg,      add_ass_amg,
2327   subtr_amg,    subtr_ass_amg,
2328   mult_amg,     mult_ass_amg,
2329   div_amg,      div_ass_amg,
2330   modulo_amg,   modulo_ass_amg,
2331   pow_amg,      pow_ass_amg,
2332   lshift_amg,   lshift_ass_amg,
2333   rshift_amg,   rshift_ass_amg,
2334   band_amg,     band_ass_amg,
2335   bor_amg,      bor_ass_amg,
2336   bxor_amg,     bxor_ass_amg,
2337   lt_amg,       le_amg,
2338   gt_amg,       ge_amg,
2339   eq_amg,       ne_amg,
2340   ncmp_amg,     scmp_amg,
2341   slt_amg,      sle_amg,
2342   sgt_amg,      sge_amg,
2343   seq_amg,      sne_amg,
2344   not_amg,      compl_amg,
2345   inc_amg,      dec_amg,
2346   atan2_amg,    cos_amg,
2347   sin_amg,      exp_amg,
2348   log_amg,      sqrt_amg,
2349   repeat_amg,   repeat_ass_amg,
2350   concat_amg,   concat_ass_amg,
2351   copy_amg,     neg_amg
2352 };
2353
2354 /*
2355  * some compilers like to redefine cos et alia as faster
2356  * (and less accurate?) versions called F_cos et cetera (Quidquid
2357  * latine dictum sit, altum viditur.)  This trick collides with
2358  * the Perl overloading (amg).  The following #defines fool both.
2359  */
2360
2361 #ifdef _FASTMATH
2362 #   ifdef atan2
2363 #       define F_atan2_amg  atan2_amg
2364 #   endif
2365 #   ifdef cos
2366 #       define F_cos_amg    cos_amg
2367 #   endif
2368 #   ifdef exp
2369 #       define F_exp_amg    exp_amg
2370 #   endif
2371 #   ifdef log
2372 #       define F_log_amg    log_amg
2373 #   endif
2374 #   ifdef pow
2375 #       define F_pow_amg    pow_amg
2376 #   endif
2377 #   ifdef sin
2378 #       define F_sin_amg    sin_amg
2379 #   endif
2380 #   ifdef sqrt
2381 #       define F_sqrt_amg   sqrt_amg
2382 #   endif
2383 #endif /* _FASTMATH */
2384
2385 #endif /* OVERLOAD */
2386
2387 #define PERLDB_ALL      0x3f            /* No _NONAME, _GOTO */
2388 #define PERLDBf_SUB     0x01            /* Debug sub enter/exit. */
2389 #define PERLDBf_LINE    0x02            /* Keep line #. */
2390 #define PERLDBf_NOOPT   0x04            /* Switch off optimizations. */
2391 #define PERLDBf_INTER   0x08            /* Preserve more data for
2392                                            later inspections.  */
2393 #define PERLDBf_SUBLINE 0x10            /* Keep subr source lines. */
2394 #define PERLDBf_SINGLE  0x20            /* Start with single-step on. */
2395 #define PERLDBf_NONAME  0x40            /* For _SUB: no name of the subr. */
2396 #define PERLDBf_GOTO    0x80            /* Report goto: call DB::goto. */
2397
2398 #define PERLDB_SUB      (PL_perldb && (PL_perldb & PERLDBf_SUB))
2399 #define PERLDB_LINE     (PL_perldb && (PL_perldb & PERLDBf_LINE))
2400 #define PERLDB_NOOPT    (PL_perldb && (PL_perldb & PERLDBf_NOOPT))
2401 #define PERLDB_INTER    (PL_perldb && (PL_perldb & PERLDBf_INTER))
2402 #define PERLDB_SUBLINE  (PL_perldb && (PL_perldb & PERLDBf_SUBLINE))
2403 #define PERLDB_SINGLE   (PL_perldb && (PL_perldb & PERLDBf_SINGLE))
2404 #define PERLDB_SUB_NN   (PL_perldb && (PL_perldb & (PERLDBf_NONAME)))
2405 #define PERLDB_GOTO     (PL_perldb && (PL_perldb & PERLDBf_GOTO))
2406
2407
2408 #ifdef USE_LOCALE_NUMERIC
2409
2410 #define SET_NUMERIC_STANDARD() \
2411     STMT_START {                                \
2412         if (! PL_numeric_standard)                      \
2413             perl_set_numeric_standard();        \
2414     } STMT_END
2415
2416 #define SET_NUMERIC_LOCAL() \
2417     STMT_START {                                \
2418         if (! PL_numeric_local)                 \
2419             perl_set_numeric_local();           \
2420     } STMT_END
2421
2422 #else /* !USE_LOCALE_NUMERIC */
2423
2424 #define SET_NUMERIC_STANDARD()  /**/
2425 #define SET_NUMERIC_LOCAL()     /**/
2426
2427 #endif /* !USE_LOCALE_NUMERIC */
2428
2429 #if !defined(PERLIO_IS_STDIO) && defined(HASATTRIBUTE)
2430 /* 
2431  * Now we have __attribute__ out of the way 
2432  * Remap printf 
2433  */
2434 #define printf PerlIO_stdoutf
2435 #endif
2436
2437 #ifndef PERL_SCRIPT_MODE
2438 #define PERL_SCRIPT_MODE "r"
2439 #endif
2440
2441 /*
2442  * nice_chunk and nice_chunk size need to be set
2443  * and queried under the protection of sv_mutex
2444  */
2445 #define offer_nice_chunk(chunk, chunk_size) do {        \
2446         LOCK_SV_MUTEX;                                  \
2447         if (!PL_nice_chunk) {                           \
2448             PL_nice_chunk = (char*)(chunk);             \
2449             PL_nice_chunk_size = (chunk_size);          \
2450         }                                               \
2451         else {                                          \
2452             Safefree(chunk);                            \
2453         }                                               \
2454         UNLOCK_SV_MUTEX;                                \
2455     } while (0)
2456
2457 #ifdef HAS_SEM
2458 #   include <sys/ipc.h>
2459 #   include <sys/sem.h>
2460 #   ifndef HAS_UNION_SEMUN      /* Provide the union semun. */
2461     union semun {
2462         int val;
2463         struct semid_ds *buf;
2464         unsigned short *array;
2465     };
2466 #   endif
2467 #   ifdef USE_SEMCTL_SEMUN
2468 #       define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun)
2469 #   else
2470 #       ifdef USE_SEMCTL_SEMID_DS
2471 #           define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun.buf)
2472 #       endif
2473 #   endif
2474 #   ifndef Semctl       /* Place our bets on the semun horse. */
2475 #       define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun)
2476 #   endif
2477 #endif
2478
2479 #endif /* Include guard */