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