This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
AUTHORS update.
[perl5.git] / perl.h
CommitLineData
a0d0e21e 1/* perl.h
a687059c 2 *
bc89e66f 3 * Copyright (c) 1987-2001, 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
8d063cd8 11
760ac839
LW
12#ifdef PERL_FOR_X2P
13/*
d460ef45 14 * This file is being used for x2p stuff.
760ac839 15 * Above symbol is defined via -D in 'x2p/Makefile.SH'
d460ef45 16 * Decouple x2p stuff from some of perls more extreme eccentricities.
760ac839 17 */
55497cff 18#undef MULTIPLICITY
760ac839
LW
19#undef USE_STDIO
20#define USE_STDIO
21#endif /* PERL_FOR_X2P */
22
0cb96387 23#define VOIDUSED 1
d460ef45 24#ifdef PERL_MICRO
12ae5dfc
JH
25# include "uconfig.h"
26#else
27# include "config.h"
28#endif
0cb96387 29
aaacdc8b
GS
30#if defined(USE_ITHREADS) && defined(USE_5005THREADS)
31# include "error: USE_ITHREADS and USE_5005THREADS are incompatible"
32#endif
33
34/* XXX This next guard can disappear if the sources are revised
35 to use USE_5005THREADS throughout. -- A.D 1/6/2000
36*/
37#if defined(USE_ITHREADS) && defined(USE_THREADS)
38# include "error: USE_ITHREADS and USE_THREADS are incompatible"
39#endif
40
2c2d71f5
JH
41/* See L<perlguts/"The Perl API"> for detailed notes on
42 * PERL_IMPLICIT_CONTEXT and PERL_IMPLICIT_SYS */
43
6f4183fe
GS
44#ifdef USE_ITHREADS
45# if !defined(MULTIPLICITY) && !defined(PERL_OBJECT)
46# define MULTIPLICITY
47# endif
48#endif
49
0cb96387 50#ifdef USE_THREADS
c5be433b
GS
51# ifndef PERL_IMPLICIT_CONTEXT
52# define PERL_IMPLICIT_CONTEXT
53# endif
c5be433b
GS
54#endif
55
c5be433b
GS
56#if defined(MULTIPLICITY)
57# ifndef PERL_IMPLICIT_CONTEXT
58# define PERL_IMPLICIT_CONTEXT
59# endif
c5be433b
GS
60#endif
61
62#ifdef PERL_CAPI
63# undef PERL_OBJECT
9880fea4
GS
64# ifndef MULTIPLICITY
65# define MULTIPLICITY
66# endif
c5be433b
GS
67# ifndef PERL_IMPLICIT_CONTEXT
68# define PERL_IMPLICIT_CONTEXT
69# endif
70# ifndef PERL_IMPLICIT_SYS
71# define PERL_IMPLICIT_SYS
72# endif
73#endif
74
75#ifdef PERL_OBJECT
76# ifndef PERL_IMPLICIT_CONTEXT
77# define PERL_IMPLICIT_CONTEXT
78# endif
79# ifndef PERL_IMPLICIT_SYS
80# define PERL_IMPLICIT_SYS
81# endif
0cb96387
GS
82#endif
83
76e3520e 84#ifdef PERL_OBJECT
3dfd1da1
GS
85
86/* PERL_OBJECT explained - DickH and DougL @ ActiveState.com
87
88Defining PERL_OBJECT turns on creation of a C++ object that
89contains all writable core perl global variables and functions.
90Stated another way, all necessary global variables and functions
91are members of a big C++ object. This object's class is CPerlObj.
92This allows a Perl Host to have multiple, independent perl
93interpreters in the same process space. This is very important on
94Win32 systems as the overhead of process creation is quite high --
95this could be even higher than the script compile and execute time
96for small scripts.
97
98The perl executable implementation on Win32 is composed of perl.exe
99(the Perl Host) and perlX.dll. (the Perl Core). This allows the
100same Perl Core to easily be embedded in other applications that use
101the perl interpreter.
102
103+-----------+
104| Perl Host |
105+-----------+
106 ^
32e30700
GS
107 |
108 v
3dfd1da1
GS
109+-----------+ +-----------+
110| Perl Core |<->| Extension |
111+-----------+ +-----------+ ...
112
113Defining PERL_OBJECT has the following effects:
114
115PERL CORE
1161. CPerlObj is defined (this is the PERL_OBJECT)
1172. all static functions that needed to access either global
118variables or functions needed are made member functions
1193. all writable static variables are made member variables
1204. all global variables and functions are defined as:
22c35a8c 121 #define var CPerlObj::PL_var
3dfd1da1 122 #define func CPerlObj::Perl_func
22c35a8c 123 * these are in embed.h
3dfd1da1
GS
124This necessitated renaming some local variables and functions that
125had the same name as a global variable or function. This was
126probably a _good_ thing anyway.
127
128
129EXTENSIONS
1301. Access to global variables and perl functions is through a
131pointer to the PERL_OBJECT. This pointer type is CPerlObj*. This is
132made transparent to extension developers by the following macros:
22c35a8c 133 #define var pPerl->PL_var
3dfd1da1 134 #define func pPerl->Perl_func
6de196ee 135 * these are done in objXSUB.h
3dfd1da1
GS
136This requires that the extension be compiled as C++, which means
137that the code must be ANSI C and not K&R C. For K&R extensions,
138please see the C API notes located in Win32/GenCAPI.pl. This script
6de196ee 139creates a perlCAPI.lib that provides a K & R compatible C interface
3dfd1da1
GS
140to the PERL_OBJECT.
1412. Local variables and functions cannot have the same name as perl's
142variables or functions since the macros will redefine these. Look for
143this if you get some strange error message and it does not look like
144the code that you had written. This often happens with variables that
145are local to a function.
146
147PERL HOST
1481. The perl host is linked with perlX.lib to get perl_alloc. This
149function will return a pointer to CPerlObj (the PERL_OBJECT). It
0f4eea8f
DL
150takes pointers to the various PerlXXX_YYY interfaces (see iperlsys.h
151for more information on this).
3dfd1da1
GS
1522. The perl host calls the same functions as normally would be
153called in setting up and running a perl script, except that the
154functions are now member functions of the PERL_OBJECT.
155
156*/
157
158
76e3520e
GS
159class CPerlObj;
160
161#define STATIC
c5be433b 162#define CPERLscope(x) CPerlObj::x
7766f137 163#define CALL_FPTR(fptr) (aTHXo->*fptr)
c5be433b
GS
164
165#define pTHXo CPerlObj *pPerl
166#define pTHXo_ pTHXo,
c5be433b
GS
167#define aTHXo this
168#define aTHXo_ this,
0cb96387
GS
169#define PERL_OBJECT_THIS aTHXo
170#define PERL_OBJECT_THIS_ aTHXo_
fd89de3a
GS
171#define dTHXoa(a) pTHXo = (CPerlObj*)a
172#define dTHXo pTHXo = PERL_GET_THX
0cb96387
GS
173
174#define pTHXx void
175#define pTHXx_
0cb96387
GS
176#define aTHXx
177#define aTHXx_
0cb96387 178
76e3520e
GS
179#else /* !PERL_OBJECT */
180
c5be433b
GS
181#ifdef PERL_IMPLICIT_CONTEXT
182# ifdef USE_THREADS
183struct perl_thread;
184# define pTHX register struct perl_thread *thr
185# define aTHX thr
411caa50 186# define dTHR dNOOP /* only backward compatibility */
fd89de3a 187# define dTHXa(a) pTHX = (struct perl_thread*)a
c5be433b 188# else
f63b9778
GS
189# ifndef MULTIPLICITY
190# define MULTIPLICITY
191# endif
c5be433b
GS
192# define pTHX register PerlInterpreter *my_perl
193# define aTHX my_perl
fd89de3a 194# define dTHXa(a) pTHX = (PerlInterpreter*)a
c5be433b 195# endif
fd89de3a 196# define dTHX pTHX = PERL_GET_THX
c5be433b 197# define pTHX_ pTHX,
c5be433b 198# define aTHX_ aTHX,
894356b3
GS
199# define pTHX_1 2
200# define pTHX_2 3
201# define pTHX_3 4
202# define pTHX_4 5
c5be433b
GS
203#endif
204
76e3520e
GS
205#define STATIC static
206#define CPERLscope(x) x
565764a8 207#define CPERLarg void
76e3520e 208#define CPERLarg_
e3b8966e 209#define _CPERLarg
1d583055
GS
210#define PERL_OBJECT_THIS
211#define _PERL_OBJECT_THIS
212#define PERL_OBJECT_THIS_
312caa8e 213#define CALL_FPTR(fptr) (*fptr)
76e3520e
GS
214
215#endif /* PERL_OBJECT */
216
312caa8e
CS
217#define CALLRUNOPS CALL_FPTR(PL_runops)
218#define CALLREGCOMP CALL_FPTR(PL_regcompp)
219#define CALLREGEXEC CALL_FPTR(PL_regexecp)
f722798b
IZ
220#define CALLREG_INTUIT_START CALL_FPTR(PL_regint_start)
221#define CALLREG_INTUIT_STRING CALL_FPTR(PL_regint_string)
222#define CALLREGFREE CALL_FPTR(PL_regfree)
14dd3ad8
GS
223
224#ifdef PERL_FLEXIBLE_EXCEPTIONS
225# define CALLPROTECT CALL_FPTR(PL_protect)
226#endif
312caa8e 227
44dbb695
JH
228#ifdef HASATTRIBUTE
229# define PERL_UNUSED_DECL __attribute__((unused))
230#else
231# define PERL_UNUSED_DECL
232#endif
233
349b520e
DM
234/* gcc -Wall:
235 * for silencing unused variables that are actually used most of the time,
236 * but we cannot quite get rid of, such `ax' in PPCODE+noargs xsubs
237 */
238#define PERL_UNUSED_VAR(var) if (0) var = var
239
0cb96387 240#define NOOP (void)0
44dbb695 241#define dNOOP extern int Perl___notused PERL_UNUSED_DECL
71be2cbc 242
0cb96387
GS
243#ifndef pTHX
244# define pTHX void
245# define pTHX_
0cb96387
GS
246# define aTHX
247# define aTHX_
0cb96387
GS
248# define dTHXa(a) dNOOP
249# define dTHX dNOOP
894356b3
GS
250# define pTHX_1 1
251# define pTHX_2 2
252# define pTHX_3 3
253# define pTHX_4 4
0cb96387
GS
254#endif
255
256#ifndef pTHXo
257# define pTHXo pTHX
258# define pTHXo_ pTHX_
0cb96387
GS
259# define aTHXo aTHX
260# define aTHXo_ aTHX_
c5be433b 261# define dTHXo dTHX
71d280e3 262# define dTHXoa(x) dTHXa(x)
0cb96387
GS
263#endif
264
265#ifndef pTHXx
266# define pTHXx register PerlInterpreter *my_perl
267# define pTHXx_ pTHXx,
0cb96387
GS
268# define aTHXx my_perl
269# define aTHXx_ aTHXx,
c5be433b 270# define dTHXx dTHX
22c35a8c 271#endif
71be2cbc 272
1de7c2ac
GS
273/* Under PERL_IMPLICIT_SYS (used in Windows for fork emulation)
274 * PerlIO_foo() expands to PL_StdIO->pFOO(PL_StdIO, ...).
275 * dTHXs is therefore needed for all functions using PerlIO_foo(). */
276#ifdef PERL_IMPLICIT_SYS
277# define dTHXs dTHX
278#else
279# define dTHXs dNOOP
280#endif
281
326b05e3
GS
282#undef START_EXTERN_C
283#undef END_EXTERN_C
284#undef EXTERN_C
32f822de
GS
285#ifdef __cplusplus
286# define START_EXTERN_C extern "C" {
287# define END_EXTERN_C }
288# define EXTERN_C extern "C"
289#else
d460ef45
NIS
290# define START_EXTERN_C
291# define END_EXTERN_C
73c4f7a1 292# define EXTERN_C extern
32f822de
GS
293#endif
294
462e5cf6
MB
295#ifdef OP_IN_REGISTER
296# ifdef __GNUC__
297# define stringify_immed(s) #s
298# define stringify(s) stringify_immed(s)
d1ca3daa 299register struct op *Perl_op asm(stringify(OP_IN_REGISTER));
462e5cf6
MB
300# endif
301#endif
302
728e2803 303/*
304 * STMT_START { statements; } STMT_END;
305 * can be used as a single statement, as in
306 * if (x) STMT_START { ... } STMT_END; else ...
307 *
308 * Trying to select a version that gives no warnings...
309 */
310#if !(defined(STMT_START) && defined(STMT_END))
169d69b2 311# if defined(__GNUC__) && !defined(__STRICT_ANSI__) && !defined(__cplusplus)
728e2803 312# define STMT_START (void)( /* gcc supports ``({ STATEMENTS; })'' */
313# define STMT_END )
314# else
315 /* Now which other defined()s do we need here ??? */
316# if (VOIDFLAGS) && (defined(sun) || defined(__sun__))
317# define STMT_START if (1)
318# define STMT_END else (void)0
319# else
320# define STMT_START do
321# define STMT_END while (0)
322# endif
323# endif
324#endif
325
0cb96387 326#define WITH_THX(s) STMT_START { dTHX; s; } STMT_END
411caa50 327#define WITH_THR(s) WITH_THX(s)
ea0efc06 328
55497cff 329/*
330 * SOFT_CAST can be used for args to prototyped functions to retain some
331 * type checking; it only casts if the compiler does not know prototypes.
332 */
333#if defined(CAN_PROTOTYPE) && defined(DEBUGGING_COMPILE)
334#define SOFT_CAST(type)
335#else
336#define SOFT_CAST(type) (type)
337#endif
79072805 338
6ee623d5 339#ifndef BYTEORDER /* Should never happen -- byteorder is in config.h */
79072805
LW
340# define BYTEORDER 0x1234
341#endif
342
343/* Overall memory policy? */
344#ifndef CONSERVATIVE
345# define LIBERAL 1
346#endif
347
8ada0baa
JH
348#if 'A' == 65 && 'I' == 73 && 'J' == 74 && 'Z' == 90
349#define ASCIIish
350#else
351#undef ASCIIish
352#endif
353
79072805
LW
354/*
355 * The following contortions are brought to you on behalf of all the
356 * standards, semi-standards, de facto standards, not-so-de-facto standards
357 * of the world, as well as all the other botches anyone ever thought of.
358 * The basic theory is that if we work hard enough here, the rest of the
359 * code can be a lot prettier. Well, so much for theory. Sorry, Henry...
360 */
ac58e20f 361
ee0007ab 362/* define this once if either system, instead of cluttering up the src */
2986a63f 363#if defined(MSDOS) || defined(atarist) || defined(WIN32) || defined(NETWARE)
ee0007ab
LW
364#define DOSISH 1
365#endif
366
2986a63f 367#if defined(__STDC__) || defined(vax11c) || defined(_AIX) || defined(__stdc__) || defined(__cplusplus) || defined( EPOC) || defined(NETWARE)
352d5a3a
LW
368# define STANDARD_C 1
369#endif
370
2986a63f 371#if defined(__cplusplus) || defined(WIN32) || defined(__sgi) || defined(OS2) || defined(__DGUX) || defined( EPOC) || defined(__QNX__) || defined(NETWARE)
68dc0745 372# define DONT_DECLARE_STD 1
373#endif
374
352d5a3a 375#if defined(HASVOLATILE) || defined(STANDARD_C)
79072805
LW
376# ifdef __cplusplus
377# define VOL // to temporarily suppress warnings
378# else
379# define VOL volatile
380# endif
663a0e37 381#else
79072805 382# define VOL
663a0e37
LW
383#endif
384
3280af22
NIS
385#define TAINT (PL_tainted = TRUE)
386#define TAINT_NOT (PL_tainted = FALSE)
387#define TAINT_IF(c) if (c) { PL_tainted = TRUE; }
388#define TAINT_ENV() if (PL_tainting) { taint_env(); }
22c35a8c 389#define TAINT_PROPER(s) if (PL_tainting) { taint_proper(Nullch, s); }
a687059c 390
d460ef45 391/* XXX All process group stuff is handled in pp_sys.c. Should these
a6e633de 392 defines move there? If so, I could simplify this a lot. --AD 9/96.
393*/
394/* Process group stuff changed from traditional BSD to POSIX.
395 perlfunc.pod documents the traditional BSD-style syntax, so we'll
396 try to preserve that, if possible.
397*/
398#ifdef HAS_SETPGID
399# define BSD_SETPGRP(pid, pgrp) setpgid((pid), (pgrp))
c07a80fd 400#else
a6e633de 401# if defined(HAS_SETPGRP) && defined(USE_BSD_SETPGRP)
402# define BSD_SETPGRP(pid, pgrp) setpgrp((pid), (pgrp))
403# else
404# ifdef HAS_SETPGRP2 /* DG/UX */
405# define BSD_SETPGRP(pid, pgrp) setpgrp2((pid), (pgrp))
406# endif
407# endif
408#endif
409#if defined(BSD_SETPGRP) && !defined(HAS_SETPGRP)
410# define HAS_SETPGRP /* Well, effectively it does . . . */
411#endif
412
413/* getpgid isn't POSIX, but at least Solaris and Linux have it, and it makes
414 our life easier :-) so we'll try it.
415*/
416#ifdef HAS_GETPGID
417# define BSD_GETPGRP(pid) getpgid((pid))
418#else
419# if defined(HAS_GETPGRP) && defined(USE_BSD_GETPGRP)
420# define BSD_GETPGRP(pid) getpgrp((pid))
421# else
422# ifdef HAS_GETPGRP2 /* DG/UX */
423# define BSD_GETPGRP(pid) getpgrp2((pid))
424# endif
425# endif
426#endif
427#if defined(BSD_GETPGRP) && !defined(HAS_GETPGRP)
428# define HAS_GETPGRP /* Well, effectively it does . . . */
429#endif
430
d460ef45 431/* These are not exact synonyms, since setpgrp() and getpgrp() may
a6e633de 432 have different behaviors, but perl.h used to define USE_BSDPGRP
433 (prior to 5.003_05) so some extension might depend on it.
434*/
435#if defined(USE_BSD_SETPGRP) || defined(USE_BSD_GETPGRP)
436# ifndef USE_BSDPGRP
437# define USE_BSDPGRP
438# endif
663a0e37
LW
439#endif
440
8ac5a1fe
MH
441/* HP-UX 10.X CMA (Common Multithreaded Architecure) insists that
442 pthread.h must be included before all other header files.
443*/
1feb2720
GS
444#if (defined(USE_THREADS) || defined(USE_ITHREADS)) \
445 && defined(PTHREAD_H_FIRST) && defined(I_PTHREAD)
8ac5a1fe
MH
446# include <pthread.h>
447#endif
448
760ac839
LW
449#ifndef _TYPES_ /* If types.h defines this it's easy. */
450# ifndef major /* Does everyone's types.h define this? */
451# include <sys/types.h>
c07a80fd 452# endif
663a0e37
LW
453#endif
454
760ac839
LW
455#ifdef __cplusplus
456# ifndef I_STDARG
457# define I_STDARG 1
458# endif
459#endif
460
461#ifdef I_STDARG
462# include <stdarg.h>
463#else
464# ifdef I_VARARGS
465# include <varargs.h>
466# endif
467#endif
468
4633a7c4 469#ifdef USE_NEXT_CTYPE
0c30d9ec 470
092bebab
JH
471#if NX_CURRENT_COMPILER_RELEASE >= 500
472# include <bsd/ctypes.h>
473#else
474# if NX_CURRENT_COMPILER_RELEASE >= 400
475# include <objc/NXCType.h>
476# else /* NX_CURRENT_COMPILER_RELEASE < 400 */
477# include <appkit/NXCType.h>
478# endif /* NX_CURRENT_COMPILER_RELEASE >= 400 */
479#endif /* NX_CURRENT_COMPILER_RELEASE >= 500 */
0c30d9ec 480
481#else /* !USE_NEXT_CTYPE */
fe14fcc3 482#include <ctype.h>
0c30d9ec 483#endif /* USE_NEXT_CTYPE */
a0d0e21e
LW
484
485#ifdef METHOD /* Defined by OSF/1 v3.0 by ctype.h */
486#undef METHOD
a0d0e21e
LW
487#endif
488
12ae5dfc
JH
489#ifdef PERL_MICRO
490# define NO_LOCALE
491#endif
492
4633a7c4 493#ifdef I_LOCALE
36477c24 494# include <locale.h>
4633a7c4
LW
495#endif
496
36477c24 497#if !defined(NO_LOCALE) && defined(HAS_SETLOCALE)
498# define USE_LOCALE
499# if !defined(NO_LOCALE_COLLATE) && defined(LC_COLLATE) \
500 && defined(HAS_STRXFRM)
501# define USE_LOCALE_COLLATE
502# endif
503# if !defined(NO_LOCALE_CTYPE) && defined(LC_CTYPE)
504# define USE_LOCALE_CTYPE
505# endif
506# if !defined(NO_LOCALE_NUMERIC) && defined(LC_NUMERIC)
507# define USE_LOCALE_NUMERIC
508# endif
509#endif /* !NO_LOCALE && HAS_SETLOCALE */
a0d0e21e 510
fe14fcc3 511#include <setjmp.h>
79072805 512
a0d0e21e 513#ifdef I_SYS_PARAM
79072805
LW
514# ifdef PARAM_NEEDS_TYPES
515# include <sys/types.h>
516# endif
517# include <sys/param.h>
352d5a3a 518#endif
79072805 519
79072805 520/* Use all the "standard" definitions? */
a0d0e21e 521#if defined(STANDARD_C) && defined(I_STDLIB)
79072805 522# include <stdlib.h>
ff68c719 523#endif
03a14243 524
3f270f98
JH
525/* If this causes problems, set i_unistd=undef in the hint file. */
526#ifdef I_UNISTD
527# include <unistd.h>
528#endif
529
fa0a29af 530#if defined(HAS_SYSCALL) && !defined(HAS_SYSCALL_PROTO)
2ef53570
JH
531int syscall(int, ...);
532#endif
533
fa0a29af
JH
534#if defined(HAS_USLEEP) && !defined(HAS_USLEEP_PROTO)
535int usleep(unsigned int);
2ef53570
JH
536#endif
537
9a34ef1d
GS
538#ifdef PERL_MICRO /* Last chance to export Perl_my_swap */
539# define MYSWAP
540#endif
541
d18c6117 542#if !defined(PERL_FOR_X2P) && !defined(WIN32)
cea2e8a9
GS
543# include "embed.h"
544#endif
545
c31fac66
GS
546#define MEM_SIZE Size_t
547
51371543
GS
548#if defined(STANDARD_C) && defined(I_STDDEF)
549# include <stddef.h>
550# define STRUCT_OFFSET(s,m) offsetof(s,m)
551#else
552# define STRUCT_OFFSET(s,m) (Size_t)(&(((s *)0)->m))
553#endif
554
555#if defined(I_STRING) || defined(__cplusplus)
556# include <string.h>
557#else
558# include <strings.h>
559#endif
560
55497cff 561/* This comes after <stdlib.h> so we don't try to change the standard
562 * library prototypes; we'll use our own in proto.h instead. */
03a14243 563
4633a7c4 564#ifdef MYMALLOC
86058a2d 565# ifdef PERL_POLLUTE_MALLOC
ee13e175 566# ifndef PERL_EXTMALLOC_DEF
86058a2d
GS
567# define Perl_malloc malloc
568# define Perl_calloc calloc
569# define Perl_realloc realloc
570# define Perl_mfree free
ee13e175 571# endif
86058a2d
GS
572# else
573# define EMBEDMYMALLOC /* for compatibility */
574# endif
20ce7b12
GS
575Malloc_t Perl_malloc (MEM_SIZE nbytes);
576Malloc_t Perl_calloc (MEM_SIZE elements, MEM_SIZE size);
577Malloc_t Perl_realloc (Malloc_t where, MEM_SIZE nbytes);
86058a2d
GS
578/* 'mfree' rather than 'free', since there is already a 'perl_free'
579 * that causes clashes with case-insensitive linkers */
20ce7b12 580Free_t Perl_mfree (Malloc_t where);
55497cff 581
827e134a
GS
582typedef struct perl_mstats perl_mstats_t;
583
651b9576
GS
584# define safemalloc Perl_malloc
585# define safecalloc Perl_calloc
586# define saferealloc Perl_realloc
587# define safefree Perl_mfree
f2517201
GS
588#else /* MYMALLOC */
589# define safemalloc safesysmalloc
590# define safecalloc safesyscalloc
591# define saferealloc safesysrealloc
592# define safefree safesysfree
55497cff 593#endif /* MYMALLOC */
4633a7c4 594
a0d0e21e
LW
595#if !defined(HAS_STRCHR) && defined(HAS_INDEX) && !defined(strchr)
596#define strchr index
597#define strrchr rindex
598#endif
599
16d20bd9
AD
600#ifdef I_MEMORY
601# include <memory.h>
602#endif
603
fe14fcc3 604#ifdef HAS_MEMCPY
85e6fe83 605# if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY)
fe14fcc3 606# ifndef memcpy
20ce7b12 607 extern char * memcpy (char*, char*, int);
ee0007ab
LW
608# endif
609# endif
610#else
611# ifndef memcpy
612# ifdef HAS_BCOPY
613# define memcpy(d,s,l) bcopy(s,d,l)
614# else
615# define memcpy(d,s,l) my_bcopy(s,d,l)
616# endif
617# endif
618#endif /* HAS_MEMCPY */
fe14fcc3 619
ee0007ab 620#ifdef HAS_MEMSET
85e6fe83 621# if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY)
ee0007ab 622# ifndef memset
20ce7b12 623 extern char *memset (char*, int, int);
ee0007ab
LW
624# endif
625# endif
ee0007ab 626#else
12ae5dfc 627# undef memset
fc36a67e 628# define memset(d,c,l) my_memset(d,c,l)
ee0007ab
LW
629#endif /* HAS_MEMSET */
630
85e6fe83 631#if !defined(HAS_MEMMOVE) && !defined(memmove)
2304df62 632# if defined(HAS_BCOPY) && defined(HAS_SAFE_BCOPY)
79072805
LW
633# define memmove(d,s,l) bcopy(s,d,l)
634# else
2304df62 635# if defined(HAS_MEMCPY) && defined(HAS_SAFE_MEMCPY)
79072805 636# define memmove(d,s,l) memcpy(d,s,l)
ee0007ab 637# else
79072805 638# define memmove(d,s,l) my_bcopy(s,d,l)
ee0007ab 639# endif
352d5a3a 640# endif
d9d8d8de 641#endif
ee0007ab 642
36477c24 643#if defined(mips) && defined(ultrix) && !defined(__STDC__)
644# undef HAS_MEMCMP
645#endif
646
647#if defined(HAS_MEMCMP) && defined(HAS_SANE_MEMCMP)
85e6fe83 648# if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY)
ee0007ab 649# ifndef memcmp
20ce7b12 650 extern int memcmp (char*, char*, int);
ee0007ab
LW
651# endif
652# endif
36477c24 653# ifdef BUGGY_MSC
654 # pragma function(memcmp)
655# endif
ee0007ab
LW
656#else
657# ifndef memcmp
ecfc5424 658# define memcmp my_memcmp
352d5a3a 659# endif
36477c24 660#endif /* HAS_MEMCMP && HAS_SANE_MEMCMP */
8d063cd8 661
fc36a67e 662#ifndef memzero
c635e13b 663# ifdef HAS_MEMSET
664# define memzero(d,l) memset(d,0,l)
79072805 665# else
c635e13b 666# ifdef HAS_BZERO
667# define memzero(d,l) bzero(d,l)
79072805 668# else
fc36a67e 669# define memzero(d,l) my_bzero(d,l)
79072805
LW
670# endif
671# endif
d9d8d8de 672#endif
378cc40b 673
0f27ced1
JH
674#ifndef memchr
675# ifndef HAS_MEMCHR
676# define memchr(s,c,n) ninstr((char*)(s), ((char*)(s)) + n, &(c), &(c) + 1)
677# endif
678#endif
679
36477c24 680#ifndef HAS_BCMP
681# ifndef bcmp
682# define bcmp(s1,s2,l) memcmp(s1,s2,l)
79072805 683# endif
36477c24 684#endif /* !HAS_BCMP */
378cc40b 685
ae986130 686#ifdef I_NETINET_IN
79072805 687# include <netinet/in.h>
ae986130
LW
688#endif
689
28e8609d
JH
690#ifdef I_ARPA_INET
691# include <arpa/inet.h>
692#endif
693
84902520
TB
694#if defined(SF_APPEND) && defined(USE_SFIO) && defined(I_SFIO)
695/* <sfio.h> defines SF_APPEND and <sys/stat.h> might define SF_APPEND
696 * (the neo-BSD seem to do this). */
697# undef SF_APPEND
698#endif
699
1aef975c 700#ifdef I_SYS_STAT
84902520 701# include <sys/stat.h>
1aef975c 702#endif
79072805 703
a0d0e21e
LW
704/* The stat macros for Amdahl UTS, Unisoft System V/88 (and derivatives
705 like UTekV) are broken, sometimes giving false positives. Undefine
706 them here and let the code below set them to proper values.
707
708 The ghs macro stands for GreenHills Software C-1.8.5 which
709 is the C compiler for sysV88 and the various derivatives.
710 This header file bug is corrected in gcc-2.5.8 and later versions.
711 --Kaveh Ghazi (ghazi@noc.rutgers.edu) 10/3/94. */
712
713#if defined(uts) || (defined(m88k) && defined(ghs))
79072805
LW
714# undef S_ISDIR
715# undef S_ISCHR
716# undef S_ISBLK
717# undef S_ISREG
718# undef S_ISFIFO
719# undef S_ISLNK
ee0007ab 720#endif
135863df 721
663a0e37
LW
722#ifdef I_TIME
723# include <time.h>
ffed7fef 724#endif
663a0e37 725
fe14fcc3 726#ifdef I_SYS_TIME
85e6fe83 727# ifdef I_SYS_TIME_KERNEL
663a0e37
LW
728# define KERNEL
729# endif
730# include <sys/time.h>
85e6fe83 731# ifdef I_SYS_TIME_KERNEL
663a0e37
LW
732# undef KERNEL
733# endif
a687059c 734#endif
135863df 735
55497cff 736#if defined(HAS_TIMES) && defined(I_SYS_TIMES)
85e6fe83 737# include <sys/times.h>
d9d8d8de 738#endif
8d063cd8 739
fe14fcc3 740#if defined(HAS_STRERROR) && (!defined(HAS_MKDIR) || !defined(HAS_RMDIR))
79072805 741# undef HAS_STRERROR
663a0e37
LW
742#endif
743
744#include <errno.h>
1e743fda 745
b4748376
NIS
746#if defined(WIN32) && (defined(PERL_OBJECT) || defined(PERL_IMPLICIT_SYS) || defined(PERL_CAPI))
747# define WIN32SCK_IS_STDSCK /* don't pull in custom wsock layer */
748#endif
749
4e0554ec
JH
750/* In Tru64 use the 4.4BSD struct msghdr, not the 4.3 one */
751#if defined(__osf__) && defined(__alpha) && !defined(_SOCKADDR_LEN)
752# define _SOCKADDR_LEN
753#endif
754
1e743fda
JH
755#if defined(HAS_SOCKET) && !defined(VMS) /* VMS handles sockets via vmsish.h */
756# include <sys/socket.h>
757# if defined(USE_SOCKS) && defined(I_SOCKS)
758# if !defined(INCLUDE_PROTOTYPES)
759# define INCLUDE_PROTOTYPES /* for <socks.h> */
760# define PERL_SOCKS_NEED_PROTOTYPES
761# endif
c3dedce1
JH
762# ifdef USE_THREADS
763# define PERL_USE_THREADS /* store our value */
764# undef USE_THREADS
765# endif
1e743fda 766# include <socks.h>
c3dedce1
JH
767# ifdef USE_THREADS
768# undef USE_THREADS /* socks.h does this on its own */
769# endif
770# ifdef PERL_USE_THREADS
771# define USE_THREADS /* restore our value */
772# undef PERL_USE_THREADS
773# endif
1e743fda
JH
774# ifdef PERL_SOCKS_NEED_PROTOTYPES /* keep cpp space clean */
775# undef INCLUDE_PROTOTYPES
776# undef PERL_SOCKS_NEED_PROTOTYPES
ed6116ce 777# endif
d460ef45 778# endif
1e743fda 779# ifdef I_NETDB
2986a63f
JH
780# ifdef NETWARE
781# include<stdio.h>
782# endif
1e743fda
JH
783# include <netdb.h>
784# endif
785# ifndef ENOTSOCK
786# ifdef I_NET_ERRNO
787# include <net/errno.h>
788# endif
789# endif
790#endif
791
fa0a29af 792/* sockatmark() is so new (2001) that many places might have it hidden
2ef53570 793 * behind some -D_BLAH_BLAH_SOURCE guard. */
fa0a29af 794#if defined(HAS_SOCKATMARK) && !defined(HAS_SOCKATMARK_PROTO)
2ef53570
JH
795int sockatmark(int);
796#endif
797
1e743fda
JH
798#ifdef SETERRNO
799# undef SETERRNO /* SOCKS might have defined this */
ed6116ce 800#endif
f86702cc 801
802#ifdef VMS
803# define SETERRNO(errcode,vmserrcode) \
804 STMT_START { \
805 set_errno(errcode); \
806 set_vaxc_errno(vmserrcode); \
807 } STMT_END
748a9306 808#else
aba27d88 809# define SETERRNO(errcode,vmserrcode) (errno = (errcode))
748a9306 810#endif
ed6116ce 811
38a03e6e
MB
812#ifdef USE_THREADS
813# define ERRSV (thr->errsv)
940cb80d
MB
814# define DEFSV THREADSV(0)
815# define SAVE_DEFSV save_threadsv(0)
38a03e6e 816#else
3280af22 817# define ERRSV GvSV(PL_errgv)
3280af22
NIS
818# define DEFSV GvSV(PL_defgv)
819# define SAVE_DEFSV SAVESPTR(GvSV(PL_defgv))
38a03e6e
MB
820#endif /* USE_THREADS */
821
98eae8f5
GS
822#define ERRHV GvHV(PL_errgv) /* XXX unused, here for compatibility */
823
55497cff 824#ifndef errno
5ff3f7a4
GS
825 extern int errno; /* ANSI allows errno to be an lvalue expr.
826 * For example in multithreaded environments
827 * something like this might happen:
828 * extern int *_errno(void);
829 * #define errno (*_errno()) */
d9d8d8de 830#endif
663a0e37 831
2304df62 832#ifdef HAS_STRERROR
a0d0e21e 833# ifdef VMS
20ce7b12 834 char *strerror (int,...);
a0d0e21e 835# else
68dc0745 836#ifndef DONT_DECLARE_STD
20ce7b12 837 char *strerror (int);
68dc0745 838#endif
a0d0e21e 839# endif
2304df62
AD
840# ifndef Strerror
841# define Strerror strerror
842# endif
843#else
844# ifdef HAS_SYS_ERRLIST
79072805
LW
845 extern int sys_nerr;
846 extern char *sys_errlist[];
2304df62
AD
847# ifndef Strerror
848# define Strerror(e) \
79072805 849 ((e) < 0 || (e) >= sys_nerr ? "(unknown)" : sys_errlist[e])
2304df62 850# endif
79072805 851# endif
35c8bce7 852#endif
663a0e37 853
2304df62 854#ifdef I_SYS_IOCTL
79072805
LW
855# ifndef _IOCTL_
856# include <sys/ioctl.h>
857# endif
a687059c
LW
858#endif
859
ee0007ab 860#if defined(mc300) || defined(mc500) || defined(mc700) || defined(mc6000)
79072805
LW
861# ifdef HAS_SOCKETPAIR
862# undef HAS_SOCKETPAIR
863# endif
2304df62
AD
864# ifdef I_NDBM
865# undef I_NDBM
79072805 866# endif
a687059c
LW
867#endif
868
a687059c 869#if INTSIZE == 2
79072805
LW
870# define htoni htons
871# define ntohi ntohs
a687059c 872#else
79072805
LW
873# define htoni htonl
874# define ntohi ntohl
a687059c
LW
875#endif
876
a0d0e21e 877/* Configure already sets Direntry_t */
35c8bce7 878#if defined(I_DIRENT)
663a0e37 879# include <dirent.h>
8f1f23e8
W
880 /* NeXT needs dirent + sys/dir.h */
881# if defined(I_SYS_DIR) && (defined(NeXT) || defined(__NeXT__))
a0d0e21e
LW
882# include <sys/dir.h>
883# endif
ae986130 884#else
fe14fcc3 885# ifdef I_SYS_NDIR
79a0689e 886# include <sys/ndir.h>
663a0e37 887# else
fe14fcc3 888# ifdef I_SYS_DIR
79a0689e
LW
889# ifdef hp9000s500
890# include <ndir.h> /* may be wrong in the future */
891# else
892# include <sys/dir.h>
893# endif
663a0e37
LW
894# endif
895# endif
4633a7c4 896#endif
a687059c 897
12ae5dfc
JH
898#ifdef PERL_MICRO
899# ifndef DIR
900# define DIR void
901# endif
902#endif
903
352d5a3a
LW
904#ifdef FPUTS_BOTCH
905/* work around botch in SunOS 4.0.1 and 4.0.2 */
906# ifndef fputs
79072805 907# define fputs(sv,fp) fprintf(fp,"%s",sv)
352d5a3a
LW
908# endif
909#endif
910
c623bd54
LW
911/*
912 * The following gobbledygook brought to you on behalf of __STDC__.
913 * (I could just use #ifndef __STDC__, but this is more bulletproof
914 * in the face of half-implementations.)
915 */
916
ca6e1c26
JH
917#ifdef I_SYSMODE
918#include <sys/mode.h>
919#endif
920
c623bd54
LW
921#ifndef S_IFMT
922# ifdef _S_IFMT
923# define S_IFMT _S_IFMT
924# else
925# define S_IFMT 0170000
926# endif
927#endif
928
929#ifndef S_ISDIR
930# define S_ISDIR(m) ((m & S_IFMT) == S_IFDIR)
931#endif
932
933#ifndef S_ISCHR
934# define S_ISCHR(m) ((m & S_IFMT) == S_IFCHR)
935#endif
936
937#ifndef S_ISBLK
fe14fcc3
LW
938# ifdef S_IFBLK
939# define S_ISBLK(m) ((m & S_IFMT) == S_IFBLK)
940# else
941# define S_ISBLK(m) (0)
942# endif
c623bd54
LW
943#endif
944
945#ifndef S_ISREG
946# define S_ISREG(m) ((m & S_IFMT) == S_IFREG)
947#endif
948
949#ifndef S_ISFIFO
fe14fcc3
LW
950# ifdef S_IFIFO
951# define S_ISFIFO(m) ((m & S_IFMT) == S_IFIFO)
952# else
953# define S_ISFIFO(m) (0)
954# endif
c623bd54
LW
955#endif
956
957#ifndef S_ISLNK
958# ifdef _S_ISLNK
959# define S_ISLNK(m) _S_ISLNK(m)
960# else
961# ifdef _S_IFLNK
962# define S_ISLNK(m) ((m & S_IFMT) == _S_IFLNK)
963# else
964# ifdef S_IFLNK
965# define S_ISLNK(m) ((m & S_IFMT) == S_IFLNK)
966# else
967# define S_ISLNK(m) (0)
968# endif
969# endif
970# endif
971#endif
972
973#ifndef S_ISSOCK
974# ifdef _S_ISSOCK
975# define S_ISSOCK(m) _S_ISSOCK(m)
976# else
977# ifdef _S_IFSOCK
978# define S_ISSOCK(m) ((m & S_IFMT) == _S_IFSOCK)
979# else
980# ifdef S_IFSOCK
981# define S_ISSOCK(m) ((m & S_IFMT) == S_IFSOCK)
982# else
983# define S_ISSOCK(m) (0)
984# endif
985# endif
986# endif
987#endif
988
989#ifndef S_IRUSR
990# ifdef S_IREAD
991# define S_IRUSR S_IREAD
992# define S_IWUSR S_IWRITE
993# define S_IXUSR S_IEXEC
994# else
995# define S_IRUSR 0400
996# define S_IWUSR 0200
997# define S_IXUSR 0100
998# endif
fac7cdfc
JS
999#endif
1000
1001#ifndef S_IRGRP
1002# ifdef S_IRUSR
1003# define S_IRGRP (S_IRUSR>>3)
1004# define S_IWGRP (S_IWUSR>>3)
1005# define S_IXGRP (S_IXUSR>>3)
1006# else
1007# define S_IRGRP 0040
1008# define S_IWGRP 0020
1009# define S_IXGRP 0010
1010# endif
1011#endif
1012
1013#ifndef S_IROTH
1014# ifdef S_IRUSR
1015# define S_IROTH (S_IRUSR>>6)
1016# define S_IWOTH (S_IWUSR>>6)
1017# define S_IXOTH (S_IXUSR>>6)
1018# else
1019# define S_IROTH 0040
1020# define S_IWOTH 0020
1021# define S_IXOTH 0010
1022# endif
c623bd54
LW
1023#endif
1024
1025#ifndef S_ISUID
1026# define S_ISUID 04000
1027#endif
1028
1029#ifndef S_ISGID
1030# define S_ISGID 02000
1031#endif
1032
ca6e1c26
JH
1033#ifndef S_IRWXU
1034# define S_IRWXU (S_IRUSR|S_IWUSR|S_IXUSR)
d460ef45 1035#endif
ca6e1c26
JH
1036
1037#ifndef S_IRWXG
1038# define S_IRWXG (S_IRGRP|S_IWGRP|S_IXGRP)
d460ef45 1039#endif
ca6e1c26
JH
1040
1041#ifndef S_IRWXO
1042# define S_IRWXO (S_IROTH|S_IWOTH|S_IXOTH)
d460ef45 1043#endif
ca6e1c26
JH
1044
1045#ifndef S_IREAD
1046# define S_IREAD S_IRUSR
1047#endif
1048
1049#ifndef S_IWRITE
1050# define S_IWRITE S_IWUSR
1051#endif
1052
1053#ifndef S_IEXEC
1054# define S_IEXEC S_IXUSR
1055#endif
1056
79072805
LW
1057#ifdef ff_next
1058# undef ff_next
352d5a3a
LW
1059#endif
1060
a0d0e21e 1061#if defined(cray) || defined(gould) || defined(i860) || defined(pyr)
45d8adaa
LW
1062# define SLOPPYDIVIDE
1063#endif
1064
748a9306
LW
1065#ifdef UV
1066#undef UV
1067#endif
1068
c495e728
JH
1069/* Configure gets this right but the UTS compiler gets it wrong.
1070 -- Hal Morris <hom00@utsglobal.com> */
1071#ifdef UTS
1072# undef UVTYPE
1073# define UVTYPE unsigned
1074#endif
1075
05f13f53 1076/*
27d4fb96 1077 The IV type is supposed to be long enough to hold any integral
1078 value or a pointer.
1079 --Andy Dougherty August 1996
1080*/
1081
a22e52b9
JH
1082typedef IVTYPE IV;
1083typedef UVTYPE UV;
8175356b 1084
10cc9d2a 1085#if defined(USE_64_BIT_INT) && defined(HAS_QUAD)
6b8eaf93 1086# if QUADKIND == QUAD_IS_INT64_T && defined(INT64_MAX)
5ff3f7a4
GS
1087# define IV_MAX INT64_MAX
1088# define IV_MIN INT64_MIN
1089# define UV_MAX UINT64_MAX
cae7ae48
JH
1090# ifndef UINT64_MIN
1091# define UINT64_MIN 0
1092# endif
5ff3f7a4
GS
1093# define UV_MIN UINT64_MIN
1094# else
1095# define IV_MAX PERL_QUAD_MAX
1096# define IV_MIN PERL_QUAD_MIN
1097# define UV_MAX PERL_UQUAD_MAX
1098# define UV_MIN PERL_UQUAD_MIN
1099# endif
cf2093f6
JH
1100# define IV_IS_QUAD
1101# define UV_IS_QUAD
79072805 1102#else
8175356b 1103# if defined(INT32_MAX) && IVSIZE == 4
5ff3f7a4
GS
1104# define IV_MAX INT32_MAX
1105# define IV_MIN INT32_MIN
716026f9
DL
1106# ifndef UINT32_MAX_BROKEN /* e.g. HP-UX with gcc messes this up */
1107# define UV_MAX UINT32_MAX
1108# else
1109# define UV_MAX 4294967295U
1110# endif
cae7ae48
JH
1111# ifndef UINT32_MIN
1112# define UINT32_MIN 0
1113# endif
5ff3f7a4
GS
1114# define UV_MIN UINT32_MIN
1115# else
1116# define IV_MAX PERL_LONG_MAX
1117# define IV_MIN PERL_LONG_MIN
1118# define UV_MAX PERL_ULONG_MAX
1119# define UV_MIN PERL_ULONG_MIN
1120# endif
8175356b 1121# if IVSIZE == 8
cf2093f6
JH
1122# define IV_IS_QUAD
1123# define UV_IS_QUAD
de1c2614
JH
1124# ifndef HAS_QUAD
1125# define HAS_QUAD
1126# endif
cf2093f6
JH
1127# else
1128# undef IV_IS_QUAD
1129# undef UV_IS_QUAD
de1c2614 1130# undef HAS_QUAD
cf2093f6 1131# endif
79072805 1132#endif
d7d93a81 1133
20601011
JH
1134/*
1135 I've tracked down a weird bug in Perl5.6.1 to the UTS compiler's
1136 mishandling of MY_UV_MAX in util.c. It is defined as
1137 #ifndef MY_UV_MAX
1138 # define MY_UV_MAX ((UV)IV_MAX * (UV)2 + (UV)1)
1139 #endif
1140 The compiler handles {double floating point value} >= MY_UV_MAX as if
1141 MY_UV_MAX were the signed integer -1. In fact it will do the same
1142 thing with (UV)(0xffffffff), in place of MY_UV_MAX, though 0xffffffff
1143 *without* the typecast to UV works fine.
1144
1145 hom00@utsglobal.com (Hal Morris) 2001-05-02
1146
1147 */
1148
1149#ifdef UTS
1150# define MY_UV_MAX 0xffffffff
1151#endif
1152
cae7ae48 1153#define IV_DIG (BIT_DIGITS(IVSIZE * 8))
22ec83e3 1154#define UV_DIG (BIT_DIGITS(UVSIZE * 8))
56431972 1155
28e5dec8 1156#ifndef NO_PERL_PRESERVE_IVUV
f5c03d33 1157#define PERL_PRESERVE_IVUV /* We like our integers to stay integers. */
28e5dec8
JH
1158#endif
1159
d460ef45 1160/*
26bb67e2
JH
1161 * The macros INT2PTR and NUM2PTR are (despite their names)
1162 * bi-directional: they will convert int/float to or from pointers.
1163 * However the conversion to int/float are named explicitly:
1164 * PTR2IV, PTR2UV, PTR2NV.
1165 *
1166 * For int conversions we do not need two casts if pointers are
1167 * the same size as IV and UV. Otherwise we need an explicit
1168 * cast (PTRV) to avoid compiler warnings.
1169 */
56431972
RB
1170#if (IVSIZE == PTRSIZE) && (UVSIZE == PTRSIZE)
1171# define PTRV UV
1172# define INT2PTR(any,d) (any)(d)
1173#else
d460ef45 1174# if PTRSIZE == LONGSIZE
56431972 1175# define PTRV unsigned long
42718184 1176# else
56431972 1177# define PTRV unsigned
42718184 1178# endif
56431972 1179# define INT2PTR(any,d) (any)(PTRV)(d)
42718184 1180#endif
56431972
RB
1181#define NUM2PTR(any,d) (any)(PTRV)(d)
1182#define PTR2IV(p) INT2PTR(IV,p)
1183#define PTR2UV(p) INT2PTR(UV,p)
1184#define PTR2NV(p) NUM2PTR(NV,p)
d460ef45 1185#if PTRSIZE == LONGSIZE
d2560b70
RB
1186# define PTR2ul(p) (unsigned long)(p)
1187#else
1188# define PTR2ul(p) INT2PTR(unsigned long,p)
1189#endif
d460ef45 1190
65202027 1191#ifdef USE_LONG_DOUBLE
1048ea30
JH
1192# if defined(HAS_LONG_DOUBLE) && LONG_DOUBLESIZE == DOUBLESIZE
1193# define LONG_DOUBLE_EQUALS_DOUBLE
1194# endif
68d4903c 1195# if !(defined(HAS_LONG_DOUBLE) && (LONG_DOUBLESIZE > DOUBLESIZE))
2d4389e4 1196# undef USE_LONG_DOUBLE /* Ouch! */
65202027
DS
1197# endif
1198#endif
1199
2d4389e4
JH
1200#ifdef OVR_DBL_DIG
1201/* Use an overridden DBL_DIG */
1202# ifdef DBL_DIG
1203# undef DBL_DIG
1204# endif
1205# define DBL_DIG OVR_DBL_DIG
1206#else
1207/* The following is all to get DBL_DIG, in order to pick a nice
1208 default value for printing floating point numbers in Gconvert.
1209 (see config.h)
1210*/
1211#ifdef I_LIMITS
1212#include <limits.h>
1213#endif
1214#ifdef I_FLOAT
1215#include <float.h>
1216#endif
1217#ifndef HAS_DBL_DIG
1218#define DBL_DIG 15 /* A guess that works lots of places */
1219#endif
1220#endif
cbca01e1
JH
1221#ifdef I_FLOAT
1222#include <float.h>
1223#endif
1224#ifndef HAS_DBL_DIG
1225#define DBL_DIG 15 /* A guess that works lots of places */
1226#endif
2d4389e4
JH
1227
1228#ifdef OVR_LDBL_DIG
1229/* Use an overridden LDBL_DIG */
1230# ifdef LDBL_DIG
1231# undef LDBL_DIG
1232# endif
1233# define LDBL_DIG OVR_LDBL_DIG
1234#else
1235/* The following is all to get LDBL_DIG, in order to pick a nice
1236 default value for printing floating point numbers in Gconvert.
1237 (see config.h)
1238*/
68d4903c
JH
1239# ifdef I_LIMITS
1240# include <limits.h>
1241# endif
1242# ifdef I_FLOAT
1243# include <float.h>
1244# endif
1245# ifndef HAS_LDBL_DIG
1246# if LONG_DOUBLESIZE == 10
1247# define LDBL_DIG 18 /* assume IEEE */
1248# else
1249# if LONG_DOUBLESIZE == 12
1250# define LDBL_DIG 18 /* gcc? */
1251# else
1252# if LONG_DOUBLESIZE == 16
1253# define LDBL_DIG 33 /* assume IEEE */
1254# else
1255# if LONG_DOUBLESIZE == DOUBLESIZE
1256# define LDBL_DIG DBL_DIG /* bummer */
1257# endif
1258# endif
1259# endif
1260# endif
1261# endif
2d4389e4
JH
1262#endif
1263
a22e52b9 1264typedef NVTYPE NV;
8175356b 1265
792d8dab
JH
1266#ifdef I_IEEEFP
1267# include <ieeefp.h>
1268#endif
923fc586 1269
65202027 1270#ifdef USE_LONG_DOUBLE
923fc586
JH
1271# ifdef I_SUNMATH
1272# include <sunmath.h>
1273# endif
2d4389e4 1274# define NV_DIG LDBL_DIG
d6c14000
JH
1275# ifdef LDBL_MANT_DIG
1276# define NV_MANT_DIG LDBL_MANT_DIG
1277# endif
f4a14a62
JH
1278# ifdef LDBL_MAX
1279# define NV_MAX LDBL_MAX
1280# define NV_MIN LDBL_MIN
1281# else
1282# ifdef HUGE_VALL
1283# define NV_MAX HUGE_VALL
1284# else
1285# ifdef HUGE_VAL
1286# define NV_MAX ((NV)HUGE_VAL)
1287# endif
1288# endif
1289# endif
68d4903c 1290# ifdef HAS_SQRTL
68d4903c
JH
1291# define Perl_cos cosl
1292# define Perl_sin sinl
1293# define Perl_sqrt sqrtl
1294# define Perl_exp expl
1295# define Perl_log logl
1296# define Perl_atan2 atan2l
1297# define Perl_pow powl
1298# define Perl_floor floorl
1299# define Perl_fmod fmodl
1300# endif
a3540c92
JH
1301/* e.g. libsunmath doesn't have modfl and frexpl as of mid-March 2000 */
1302# ifdef HAS_MODFL
1303# define Perl_modf(x,y) modfl(x,y)
e82e08d5
JH
1304# else
1305# define Perl_modf(x,y) ((long double)modf((double)(x),(double*)(y)))
a3540c92
JH
1306# endif
1307# ifdef HAS_FREXPL
dff3e0b8 1308# define Perl_frexp(x,y) frexpl(x,y)
e82e08d5
JH
1309# else
1310# define Perl_frexp(x,y) ((long double)frexp((double)(x),y))
a3540c92
JH
1311# endif
1312# ifdef HAS_ISNANL
1313# define Perl_isnan(x) isnanl(x)
1314# else
1315# ifdef HAS_ISNAN
1316# define Perl_isnan(x) isnan((double)(x))
1317# else
1318# define Perl_isnan(x) ((x)!=(x))
1319# endif
1320# endif
65202027 1321#else
2d4389e4 1322# define NV_DIG DBL_DIG
d6c14000
JH
1323# ifdef DBL_MANT_DIG
1324# define NV_MANT_DIG DBL_MANT_DIG
1325# endif
f4a14a62
JH
1326# ifdef DBL_MAX
1327# define NV_MAX DBL_MAX
1328# define NV_MIN DBL_MIN
1329# else
1330# ifdef HUGE_VAL
1331# define NV_MAX HUGE_VAL
1332# endif
1333# endif
65202027
DS
1334# define Perl_cos cos
1335# define Perl_sin sin
1336# define Perl_sqrt sqrt
1337# define Perl_exp exp
1338# define Perl_log log
1339# define Perl_atan2 atan2
1340# define Perl_pow pow
1341# define Perl_floor floor
65202027 1342# define Perl_fmod fmod
a3540c92 1343# define Perl_modf(x,y) modf(x,y)
dff3e0b8 1344# define Perl_frexp(x,y) frexp(x,y)
a3540c92
JH
1345# ifdef HAS_ISNAN
1346# define Perl_isnan(x) isnan(x)
1347# else
1348# define Perl_isnan(x) ((x)!=(x))
1349# endif
65202027
DS
1350#endif
1351
1f727ac0
HS
1352#define Perl_atof(s) Perl_my_atof(s)
1353#define Perl_atof2(s, np) Perl_my_atof2(s, np)
cf2093f6 1354
d460ef45 1355/* Previously these definitions used hardcoded figures.
760ac839
LW
1356 * It is hoped these formula are more portable, although
1357 * no data one way or another is presently known to me.
1358 * The "PERL_" names are used because these calculated constants
1359 * do not meet the ANSI requirements for LONG_MAX, etc., which
1360 * need to be constants acceptable to #if - kja
1361 * define PERL_LONG_MAX 2147483647L
1362 * define PERL_LONG_MIN (-LONG_MAX - 1)
1363 * define PERL ULONG_MAX 4294967295L
1364 */
1365
1366#ifdef I_LIMITS /* Needed for cast_xxx() functions below. */
1367# include <limits.h>
1368#else
1369#ifdef I_VALUES
1370# include <values.h>
1371#endif
1372#endif
1373
99abf803 1374/*
1375 * Try to figure out max and min values for the integral types. THE CORRECT
1376 * SOLUTION TO THIS MESS: ADAPT enquire.c FROM GCC INTO CONFIGURE. The
1377 * following hacks are used if neither limits.h or values.h provide them:
1378 * U<TYPE>_MAX: for types >= int: ~(unsigned TYPE)0
1379 * for types < int: (unsigned TYPE)~(unsigned)0
1380 * The argument to ~ must be unsigned so that later signed->unsigned
1381 * conversion can't modify the value's bit pattern (e.g. -0 -> +0),
1382 * and it must not be smaller than int because ~ does integral promotion.
1383 * <type>_MAX: (<type>) (U<type>_MAX >> 1)
1384 * <type>_MIN: -<type>_MAX - <is_twos_complement_architecture: (3 & -1) == 3>.
1385 * The latter is a hack which happens to work on some machines but
1386 * does *not* catch any random system, or things like integer types
1387 * with NaN if that is possible.
1388 *
1389 * All of the types are explicitly cast to prevent accidental loss of
1390 * numeric range, and in the hope that they will be less likely to confuse
1391 * over-eager optimizers.
1392 *
1393 */
27d4fb96 1394
99abf803 1395#define PERL_UCHAR_MIN ((unsigned char)0)
1396
1397#ifdef UCHAR_MAX
1398# define PERL_UCHAR_MAX ((unsigned char)UCHAR_MAX)
27d4fb96 1399#else
99abf803 1400# ifdef MAXUCHAR
1401# define PERL_UCHAR_MAX ((unsigned char)MAXUCHAR)
27d4fb96 1402# else
99abf803 1403# define PERL_UCHAR_MAX ((unsigned char)~(unsigned)0)
27d4fb96 1404# endif
1405#endif
d460ef45 1406
99abf803 1407/*
1408 * CHAR_MIN and CHAR_MAX are not included here, as the (char) type may be
1409 * ambiguous. It may be equivalent to (signed char) or (unsigned char)
1410 * depending on local options. Until Configure detects this (or at least
1411 * detects whether the "signed" keyword is available) the CHAR ranges
1412 * will not be included. UCHAR functions normally.
1413 * - kja
1414 */
27d4fb96 1415
99abf803 1416#define PERL_USHORT_MIN ((unsigned short)0)
1417
1418#ifdef USHORT_MAX
1419# define PERL_USHORT_MAX ((unsigned short)USHORT_MAX)
27d4fb96 1420#else
99abf803 1421# ifdef MAXUSHORT
1422# define PERL_USHORT_MAX ((unsigned short)MAXUSHORT)
27d4fb96 1423# else
ef2f54b0
CB
1424# ifdef USHRT_MAX
1425# define PERL_USHORT_MAX ((unsigned short)USHRT_MAX)
1426# else
1427# define PERL_USHORT_MAX ((unsigned short)~(unsigned)0)
1428# endif
27d4fb96 1429# endif
1430#endif
1431
27d4fb96 1432#ifdef SHORT_MAX
99abf803 1433# define PERL_SHORT_MAX ((short)SHORT_MAX)
27d4fb96 1434#else
1435# ifdef MAXSHORT /* Often used in <values.h> */
99abf803 1436# define PERL_SHORT_MAX ((short)MAXSHORT)
27d4fb96 1437# else
ef2f54b0
CB
1438# ifdef SHRT_MAX
1439# define PERL_SHORT_MAX ((short)SHRT_MAX)
1440# else
1441# define PERL_SHORT_MAX ((short) (PERL_USHORT_MAX >> 1))
1442# endif
27d4fb96 1443# endif
1444#endif
1445
1446#ifdef SHORT_MIN
99abf803 1447# define PERL_SHORT_MIN ((short)SHORT_MIN)
27d4fb96 1448#else
1449# ifdef MINSHORT
99abf803 1450# define PERL_SHORT_MIN ((short)MINSHORT)
27d4fb96 1451# else
ef2f54b0
CB
1452# ifdef SHRT_MIN
1453# define PERL_SHORT_MIN ((short)SHRT_MIN)
1454# else
1455# define PERL_SHORT_MIN (-PERL_SHORT_MAX - ((3 & -1) == 3))
1456# endif
27d4fb96 1457# endif
1458#endif
1459
99abf803 1460#ifdef UINT_MAX
1461# define PERL_UINT_MAX ((unsigned int)UINT_MAX)
27d4fb96 1462#else
99abf803 1463# ifdef MAXUINT
1464# define PERL_UINT_MAX ((unsigned int)MAXUINT)
27d4fb96 1465# else
99abf803 1466# define PERL_UINT_MAX (~(unsigned int)0)
27d4fb96 1467# endif
1468#endif
1469
99abf803 1470#define PERL_UINT_MIN ((unsigned int)0)
27d4fb96 1471
1472#ifdef INT_MAX
99abf803 1473# define PERL_INT_MAX ((int)INT_MAX)
27d4fb96 1474#else
1475# ifdef MAXINT /* Often used in <values.h> */
99abf803 1476# define PERL_INT_MAX ((int)MAXINT)
27d4fb96 1477# else
99abf803 1478# define PERL_INT_MAX ((int)(PERL_UINT_MAX >> 1))
27d4fb96 1479# endif
1480#endif
1481
1482#ifdef INT_MIN
99abf803 1483# define PERL_INT_MIN ((int)INT_MIN)
27d4fb96 1484#else
1485# ifdef MININT
99abf803 1486# define PERL_INT_MIN ((int)MININT)
27d4fb96 1487# else
1488# define PERL_INT_MIN (-PERL_INT_MAX - ((3 & -1) == 3))
1489# endif
1490#endif
1491
99abf803 1492#ifdef ULONG_MAX
1493# define PERL_ULONG_MAX ((unsigned long)ULONG_MAX)
27d4fb96 1494#else
99abf803 1495# ifdef MAXULONG
1496# define PERL_ULONG_MAX ((unsigned long)MAXULONG)
27d4fb96 1497# else
99abf803 1498# define PERL_ULONG_MAX (~(unsigned long)0)
27d4fb96 1499# endif
1500#endif
1501
99abf803 1502#define PERL_ULONG_MIN ((unsigned long)0L)
27d4fb96 1503
760ac839 1504#ifdef LONG_MAX
99abf803 1505# define PERL_LONG_MAX ((long)LONG_MAX)
760ac839
LW
1506#else
1507# ifdef MAXLONG /* Often used in <values.h> */
99abf803 1508# define PERL_LONG_MAX ((long)MAXLONG)
760ac839 1509# else
99abf803 1510# define PERL_LONG_MAX ((long) (PERL_ULONG_MAX >> 1))
760ac839
LW
1511# endif
1512#endif
1513
1514#ifdef LONG_MIN
99abf803 1515# define PERL_LONG_MIN ((long)LONG_MIN)
760ac839
LW
1516#else
1517# ifdef MINLONG
99abf803 1518# define PERL_LONG_MIN ((long)MINLONG)
760ac839 1519# else
27d4fb96 1520# define PERL_LONG_MIN (-PERL_LONG_MAX - ((3 & -1) == 3))
760ac839
LW
1521# endif
1522#endif
1523
d7d93a81 1524#ifdef UV_IS_QUAD
99abf803 1525
99abf803 1526# define PERL_UQUAD_MAX (~(UV)0)
f1c3b19a 1527# define PERL_UQUAD_MIN ((UV)0)
99abf803 1528# define PERL_QUAD_MAX ((IV) (PERL_UQUAD_MAX >> 1))
a6e633de 1529# define PERL_QUAD_MIN (-PERL_QUAD_MAX - ((3 & -1) == 3))
27d4fb96 1530
79072805
LW
1531#endif
1532
880b20b6
IZ
1533struct perl_mstats {
1534 UV *nfree;
1535 UV *ntotal;
1536 IV topbucket, topbucket_ev, topbucket_odd, totfree, total, total_chain;
1537 IV total_sbrk, sbrks, sbrk_good, sbrk_slack, start_slack, sbrked_remains;
1538 IV minbucket;
1539 /* Level 1 info */
1540 UV *bucket_mem_size;
1541 UV *bucket_available_size;
1542 UV nbuckets;
1543};
830247a4 1544struct RExC_state_t;
880b20b6 1545
ee0007ab 1546typedef MEM_SIZE STRLEN;
450a55e4 1547
79072805
LW
1548typedef struct op OP;
1549typedef struct cop COP;
1550typedef struct unop UNOP;
1551typedef struct binop BINOP;
1552typedef struct listop LISTOP;
1553typedef struct logop LOGOP;
79072805
LW
1554typedef struct pmop PMOP;
1555typedef struct svop SVOP;
7934575e 1556typedef struct padop PADOP;
79072805 1557typedef struct pvop PVOP;
79072805
LW
1558typedef struct loop LOOP;
1559
93a17b20 1560typedef struct interpreter PerlInterpreter;
b8d3c5db
JH
1561#ifdef UTS
1562# define STRUCT_SV perl_sv /* Amdahl's <ksync.h> has struct sv */
1563#else
1564# define STRUCT_SV sv
1565#endif
1566typedef struct STRUCT_SV SV;
79072805
LW
1567typedef struct av AV;
1568typedef struct hv HV;
1569typedef struct cv CV;
378cc40b 1570typedef struct regexp REGEXP;
79072805 1571typedef struct gp GP;
0c30d9ec 1572typedef struct gv GV;
8990e307 1573typedef struct io IO;
c09156bb 1574typedef struct context PERL_CONTEXT;
79072805
LW
1575typedef struct block BLOCK;
1576
1577typedef struct magic MAGIC;
ed6116ce 1578typedef struct xrv XRV;
79072805
LW
1579typedef struct xpv XPV;
1580typedef struct xpviv XPVIV;
ff68c719 1581typedef struct xpvuv XPVUV;
79072805
LW
1582typedef struct xpvnv XPVNV;
1583typedef struct xpvmg XPVMG;
1584typedef struct xpvlv XPVLV;
1585typedef struct xpvav XPVAV;
1586typedef struct xpvhv XPVHV;
1587typedef struct xpvgv XPVGV;
1588typedef struct xpvcv XPVCV;
1589typedef struct xpvbm XPVBM;
1590typedef struct xpvfm XPVFM;
8990e307 1591typedef struct xpvio XPVIO;
79072805
LW
1592typedef struct mgvtbl MGVTBL;
1593typedef union any ANY;
5f7fde29
GS
1594typedef struct ptr_tbl_ent PTR_TBL_ENT_t;
1595typedef struct ptr_tbl PTR_TBL_t;
8d063cd8 1596
378cc40b 1597#include "handy.h"
a0d0e21e 1598
6b8eaf93 1599#if defined(USE_LARGE_FILES) && !defined(NO_64_BIT_RAWIO)
6b8eaf93
JH
1600# if LSEEKSIZE == 8 && !defined(USE_64_BIT_RAWIO)
1601# define USE_64_BIT_RAWIO /* implicit */
1602# endif
4564133c
JH
1603#endif
1604
6b8eaf93
JH
1605/* Notice the use of HAS_FSEEKO: now we are obligated to always use
1606 * fseeko/ftello if possible. Don't go #defining ftell to ftello yourself,
1607 * however, because operating systems like to do that themself. */
1608#ifndef FSEEKSIZE
1609# ifdef HAS_FSEEKO
1610# define FSEEKSIZE LSEEKSIZE
1611# else
1612# define FSEEKSIZE LONGSIZE
d460ef45 1613# endif
6b8eaf93
JH
1614#endif
1615
1616#if defined(USE_LARGE_FILES) && !defined(NO_64_BIT_STDIO)
6b8eaf93
JH
1617# if FSEEKSIZE == 8 && !defined(USE_64_BIT_STDIO)
1618# define USE_64_BIT_STDIO /* implicit */
1619# endif
1620#endif
4564133c 1621
09458382 1622#ifdef USE_64_BIT_RAWIO
d9b3e12d
JH
1623# ifdef HAS_OFF64_T
1624# undef Off_t
1625# define Off_t off64_t
1626# undef LSEEKSIZE
1627# define LSEEKSIZE 8
5ff3f7a4 1628# endif
d9b3e12d
JH
1629/* Most 64-bit environments have defines like _LARGEFILE_SOURCE that
1630 * will trigger defines like the ones below. Some 64-bit environments,
09458382 1631 * however, do not. Therefore we have to explicitly mix and match. */
d9b3e12d
JH
1632# if defined(USE_OPEN64)
1633# define open open64
5ff3f7a4 1634# endif
d9b3e12d
JH
1635# if defined(USE_LSEEK64)
1636# define lseek lseek64
6b8eaf93
JH
1637# else
1638# if defined(USE_LLSEEK)
1639# define lseek llseek
1640# endif
d9b3e12d
JH
1641# endif
1642# if defined(USE_STAT64)
1643# define stat stat64
1644# endif
1645# if defined(USE_FSTAT64)
1646# define fstat fstat64
1647# endif
1648# if defined(USE_LSTAT64)
1649# define lstat lstat64
1650# endif
1651# if defined(USE_FLOCK64)
1652# define flock flock64
1653# endif
1654# if defined(USE_LOCKF64)
1655# define lockf lockf64
1656# endif
1657# if defined(USE_FCNTL64)
1658# define fcntl fcntl64
1659# endif
1660# if defined(USE_TRUNCATE64)
1661# define truncate truncate64
1662# endif
1663# if defined(USE_FTRUNCATE64)
1664# define ftruncate ftruncate64
1665# endif
1666#endif
1667
1668#ifdef USE_64_BIT_STDIO
1669# ifdef HAS_FPOS64_T
1670# undef Fpos_t
1671# define Fpos_t fpos64_t
1672# endif
1673/* Most 64-bit environments have defines like _LARGEFILE_SOURCE that
1674 * will trigger defines like the ones below. Some 64-bit environments,
1675 * however, do not. */
1676# if defined(USE_FOPEN64)
1677# define fopen fopen64
1678# endif
1679# if defined(USE_FSEEK64)
6b8eaf93 1680# define fseek fseek64 /* don't do fseeko here, see perlio.c */
d9b3e12d
JH
1681# endif
1682# if defined(USE_FTELL64)
6b8eaf93 1683# define ftell ftell64 /* don't do ftello here, see perlio.c */
d9b3e12d
JH
1684# endif
1685# if defined(USE_FSETPOS64)
1686# define fsetpos fsetpos64
1687# endif
1688# if defined(USE_FGETPOS64)
1689# define fgetpos fgetpos64
1690# endif
1691# if defined(USE_TMPFILE64)
1692# define tmpfile tmpfile64
1693# endif
1694# if defined(USE_FREOPEN64)
1695# define freopen freopen64
5ff3f7a4
GS
1696# endif
1697#endif
1698
2c2d71f5
JH
1699#if defined(OS2)
1700# include "iperlsys.h"
1701#endif
1702
6f71a643
JH
1703#if defined(__OPEN_VM)
1704# include "vmesa/vmesaish.h"
1705#endif
1706
748a9306 1707#ifdef DOSISH
4633a7c4
LW
1708# if defined(OS2)
1709# include "os2ish.h"
1710# else
748a9306 1711# include "dosish.h"
4633a7c4 1712# endif
a0d0e21e 1713#else
748a9306
LW
1714# if defined(VMS)
1715# include "vmsish.h"
1716# else
0c30d9ec 1717# if defined(PLAN9)
1718# include "./plan9/plan9ish.h"
1719# else
1d84e8df
JH
1720# if defined(MPE)
1721# include "mpeix/mpeixish.h"
1722# else
495c5fdc
PG
1723# if defined(__VOS__)
1724# include "vosish.h"
1725# else
4d2c4e07
OF
1726# if defined(EPOC)
1727# include "epocish.h"
1728# else
cd39f2b6
JH
1729# if defined(MACOS_TRADITIONAL)
1730# include "macos/macish.h"
2b3f4ecd
JH
1731# ifndef NO_ENVIRON_ARRAY
1732# define NO_ENVIRON_ARRAY
1733# endif
cd39f2b6
JH
1734# else
1735# include "unixish.h"
1736# endif
4d2c4e07 1737# endif
495c5fdc 1738# endif
1d84e8df 1739# endif
0c30d9ec 1740# endif
748a9306 1741# endif
13b6e58c
JH
1742#endif
1743
1744#ifndef NO_ENVIRON_ARRAY
1745# define USE_ENVIRON_ARRAY
1746#endif
32f822de 1747
103a7189
JH
1748#ifdef JPL
1749 /* E.g. JPL needs to operate on a copy of the real environment.
1750 * JDK 1.2 and 1.3 seem to get upset if the original environment
1751 * is diddled with. */
1752# define NEED_ENVIRON_DUP_FOR_MODIFY
1753#endif
1754
ed344e4f
IZ
1755#ifndef PERL_SYS_INIT3
1756# define PERL_SYS_INIT3(argvp,argcp,envp) PERL_SYS_INIT(argvp,argcp)
1757#endif
1758
0f31cffe
GS
1759#ifndef MAXPATHLEN
1760# ifdef PATH_MAX
b990c8b2
JH
1761# ifdef _POSIX_PATH_MAX
1762# if PATH_MAX > _POSIX_PATH_MAX
1763/* MAXPATHLEN is supposed to include the final null character,
1764 * as opposed to PATH_MAX and _POSIX_PATH_MAX. */
1765# define MAXPATHLEN (PATH_MAX+1)
1766# else
1767# define MAXPATHLEN (_POSIX_PATH_MAX+1)
1768# endif
1769# else
1770# define MAXPATHLEN (PATH_MAX+1)
1771# endif
0f31cffe 1772# else
b990c8b2
JH
1773# ifdef _POSIX_PATH_MAX
1774# define MAXPATHLEN (_POSIX_PATH_MAX+1)
1775# else
1776# define MAXPATHLEN 1024 /* Err on the large side. */
1777# endif
0f31cffe
GS
1778# endif
1779#endif
1780
d460ef45 1781/*
dd96f567
IZ
1782 * USE_THREADS needs to be after unixish.h as <pthread.h> includes
1783 * <sys/signal.h> which defines NSIG - which will stop inclusion of <signal.h>
32f822de
GS
1784 * this results in many functions being undeclared which bothers C++
1785 * May make sense to have threads after "*ish.h" anyway
1786 */
1787
1feb2720
GS
1788#if defined(USE_THREADS) || defined(USE_ITHREADS)
1789# if defined(USE_THREADS)
79d59c5f
GS
1790 /* pending resolution of licensing issues, we avoid the erstwhile
1791 * atomic.h everywhere */
1792# define EMULATE_ATOMIC_REFCOUNTS
1feb2720 1793# endif
2986a63f
JH
1794# ifdef NETWARE
1795# include <nw5thread.h>
1796# else
32f822de
GS
1797# ifdef FAKE_THREADS
1798# include "fakethr.h"
1799# else
1800# ifdef WIN32
1801# include <win32thread.h>
1802# else
dd96f567
IZ
1803# ifdef OS2
1804# include "os2thread.h"
1805# else
7f3d1cf1 1806# ifdef I_MACH_CTHREADS
bdd66968 1807# include <mach/cthreads.h>
8f1f23e8 1808# if (defined(NeXT) || defined(__NeXT__)) && defined(PERL_POLLUTE_MALLOC)
772fe5b3
HM
1809# define MUTEX_INIT_CALLS_MALLOC
1810# endif
7f3d1cf1
BH
1811typedef cthread_t perl_os_thread;
1812typedef mutex_t perl_mutex;
1813typedef condition_t perl_cond;
1814typedef void * perl_key;
1815# else /* Posix threads */
1f5ae88c
JH
1816# ifdef I_PTHREAD
1817# include <pthread.h>
1818# endif
7f3d1cf1
BH
1819typedef pthread_t perl_os_thread;
1820typedef pthread_mutex_t perl_mutex;
1821typedef pthread_cond_t perl_cond;
1822typedef pthread_key_t perl_key;
1823# endif /* I_MACH_CTHREADS */
dd96f567 1824# endif /* OS2 */
32f822de
GS
1825# endif /* WIN32 */
1826# endif /* FAKE_THREADS */
2986a63f 1827#endif /* NETWARE */
1feb2720 1828#endif /* USE_THREADS || USE_ITHREADS */
c5be433b
GS
1829
1830#ifdef WIN32
1feb2720 1831# include "win32.h"
c5be433b
GS
1832#endif
1833
2986a63f
JH
1834#ifdef NETWARE
1835# include "netware.h"
1836#endif
1837
68dc0745 1838#ifdef VMS
6b88bc9c 1839# define STATUS_NATIVE PL_statusvalue_vms
68dc0745 1840# define STATUS_NATIVE_EXPORT \
d98f61e7 1841 (((I32)PL_statusvalue_vms == -1 ? 44 : PL_statusvalue_vms) | (VMSISH_HUSHED ? 0x10000000 : 0))
68dc0745 1842# define STATUS_NATIVE_SET(n) \
1843 STMT_START { \
6b88bc9c
GS
1844 PL_statusvalue_vms = (n); \
1845 if ((I32)PL_statusvalue_vms == -1) \
3280af22 1846 PL_statusvalue = -1; \
6b88bc9c 1847 else if (PL_statusvalue_vms & STS$M_SUCCESS) \
3280af22 1848 PL_statusvalue = 0; \
6b88bc9c
GS
1849 else if ((PL_statusvalue_vms & STS$M_SEVERITY) == 0) \
1850 PL_statusvalue = 1 << 8; \
68dc0745 1851 else \
6b88bc9c 1852 PL_statusvalue = (PL_statusvalue_vms & STS$M_SEVERITY) << 8; \
68dc0745 1853 } STMT_END
3280af22 1854# define STATUS_POSIX PL_statusvalue
68dc0745 1855# ifdef VMSISH_STATUS
1856# define STATUS_CURRENT (VMSISH_STATUS ? STATUS_NATIVE : STATUS_POSIX)
1857# else
1858# define STATUS_CURRENT STATUS_POSIX
1859# endif
1860# define STATUS_POSIX_SET(n) \
1861 STMT_START { \
3280af22
NIS
1862 PL_statusvalue = (n); \
1863 if (PL_statusvalue != -1) { \
1864 PL_statusvalue &= 0xFFFF; \
6b88bc9c 1865 PL_statusvalue_vms = PL_statusvalue ? 44 : 1; \
68dc0745 1866 } \
6b88bc9c 1867 else PL_statusvalue_vms = -1; \
68dc0745 1868 } STMT_END
6b88bc9c
GS
1869# define STATUS_ALL_SUCCESS (PL_statusvalue = 0, PL_statusvalue_vms = 1)
1870# define STATUS_ALL_FAILURE (PL_statusvalue = 1, PL_statusvalue_vms = 44)
68dc0745 1871#else
1872# define STATUS_NATIVE STATUS_POSIX
1873# define STATUS_NATIVE_EXPORT STATUS_POSIX
1874# define STATUS_NATIVE_SET STATUS_POSIX_SET
3280af22 1875# define STATUS_POSIX PL_statusvalue
68dc0745 1876# define STATUS_POSIX_SET(n) \
1877 STMT_START { \
3280af22
NIS
1878 PL_statusvalue = (n); \
1879 if (PL_statusvalue != -1) \
1880 PL_statusvalue &= 0xFFFF; \
68dc0745 1881 } STMT_END
1882# define STATUS_CURRENT STATUS_POSIX
3280af22
NIS
1883# define STATUS_ALL_SUCCESS (PL_statusvalue = 0)
1884# define STATUS_ALL_FAILURE (PL_statusvalue = 1)
68dc0745 1885#endif
1886
cc3604b1
GS
1887/* flags in PL_exit_flags for nature of exit() */
1888#define PERL_EXIT_EXPECTED 0x01
1889
0b94c7bb 1890#ifndef MEMBER_TO_FPTR
a7cb1f99
GS
1891# define MEMBER_TO_FPTR(name) name
1892#endif
1893
1894/* format to use for version numbers in file/directory names */
273cf8d1 1895/* XXX move to Configure? */
a7cb1f99 1896#ifndef PERL_FS_VER_FMT
273cf8d1 1897# define PERL_FS_VER_FMT "%d.%d.%d"
0b94c7bb
GS
1898#endif
1899
45bc9206 1900/* This defines a way to flush all output buffers. This may be a
76549fef
JH
1901 * performance issue, so we allow people to disable it. Also, if
1902 * we are using stdio, there are broken implementations of fflush(NULL)
1903 * out there, Solaris being the most prominent.
45bc9206
GS
1904 */
1905#ifndef PERL_FLUSHALL_FOR_CHILD
76549fef 1906# if defined(USE_PERLIO) || defined(FFLUSH_NULL) || defined(USE_SFIO)
66fe083f 1907# define PERL_FLUSHALL_FOR_CHILD PerlIO_flush((PerlIO*)NULL)
767df6a1
JH
1908# else
1909# ifdef FFLUSH_ALL
1910# define PERL_FLUSHALL_FOR_CHILD my_fflush_all()
e2dbf222 1911# else
c5be433b 1912# define PERL_FLUSHALL_FOR_CHILD NOOP
767df6a1 1913# endif
66fe083f 1914# endif
45bc9206
GS
1915#endif
1916
7766f137
GS
1917#ifndef PERL_WAIT_FOR_CHILDREN
1918# define PERL_WAIT_FOR_CHILDREN NOOP
1919#endif
1920
ba869deb 1921/* the traditional thread-unsafe notion of "current interpreter". */
c5be433b
GS
1922#ifndef PERL_SET_INTERP
1923# define PERL_SET_INTERP(i) (PL_curinterp = (PerlInterpreter*)(i))
1924#endif
1925
1926#ifndef PERL_GET_INTERP
1927# define PERL_GET_INTERP (PL_curinterp)
1928#endif
1929
54aff467
GS
1930#if defined(PERL_IMPLICIT_CONTEXT) && !defined(PERL_GET_THX)
1931# ifdef USE_THREADS
ba869deb 1932# define PERL_GET_THX ((struct perl_thread *)PERL_GET_CONTEXT)
54aff467
GS
1933# else
1934# ifdef MULTIPLICITY
ba869deb 1935# define PERL_GET_THX ((PerlInterpreter *)PERL_GET_CONTEXT)
54aff467
GS
1936# else
1937# ifdef PERL_OBJECT
ba869deb 1938# define PERL_GET_THX ((CPerlObj *)PERL_GET_CONTEXT)
54aff467
GS
1939# endif
1940# endif
1941# endif
ba869deb
GS
1942# define PERL_SET_THX(t) PERL_SET_CONTEXT(t)
1943#endif
1944
894356b3
GS
1945#ifndef SVf
1946# ifdef CHECK_FORMAT
1947# define SVf "p"
1948# else
1949# define SVf "_"
d460ef45 1950# endif
894356b3
GS
1951#endif
1952
d2560b70
RB
1953#ifndef UVf
1954# ifdef CHECK_FORMAT
1955# define UVf UVuf
1956# else
1957# define UVf "Vu"
d460ef45 1958# endif
d2560b70
RB
1959#endif
1960
1961#ifndef VDf
1962# ifdef CHECK_FORMAT
1963# define VDf "p"
1964# else
1965# define VDf "vd"
d460ef45 1966# endif
d2560b70
RB
1967#endif
1968
3fc1aec6 1969/* Some unistd.h's give a prototype for pause() even though
1970 HAS_PAUSE ends up undefined. This causes the #define
d2560b70 1971 below to be rejected by the compiler. Sigh.
3fc1aec6 1972*/
1973#ifdef HAS_PAUSE
1974#define Pause pause
1975#else
1976#define Pause() sleep((32767<<16)+32767)
748a9306
LW
1977#endif
1978
1979#ifndef IOCPARM_LEN
1980# ifdef IOCPARM_MASK
1981 /* on BSDish systes we're safe */
1982# define IOCPARM_LEN(x) (((x) >> 16) & IOCPARM_MASK)
1983# else
1984 /* otherwise guess at what's safe */
1985# define IOCPARM_LEN(x) 256
1986# endif
a0d0e21e
LW
1987#endif
1988
1761cee5 1989#if defined(__CYGWIN__)
521e0776
GS
1990/* USEMYBINMODE
1991 * This symbol, if defined, indicates that the program should
16fe6d59 1992 * use the routine my_binmode(FILE *fp, char iotype, int mode) to insure
521e0776
GS
1993 * that a file is in "binary" mode -- that is, that no translation
1994 * of bytes occurs on read or write operations.
1995 */
1996# define USEMYBINMODE / **/
16fe6d59
GS
1997# define my_binmode(fp, iotype, mode) \
1998 (PerlLIO_setmode(PerlIO_fileno(fp), mode) != -1 ? TRUE : FALSE)
5aabfad6 1999#endif
2000
cea2e8a9
GS
2001#ifdef UNION_ANY_DEFINITION
2002UNION_ANY_DEFINITION;
2003#else
2004union any {
2005 void* any_ptr;
2006 I32 any_i32;
2007 IV any_iv;
2008 long any_long;
c76ac1ee
GS
2009 void (*any_dptr) (void*);
2010 void (*any_dxptr) (pTHXo_ void*);
cea2e8a9
GS
2011};
2012#endif
2013
2014#ifdef USE_THREADS
2015#define ARGSproto struct perl_thread *thr
2016#else
2017#define ARGSproto
2018#endif /* USE_THREADS */
2019
0cb96387 2020typedef I32 (*filter_t) (pTHXo_ int, SV *, int);
cea2e8a9
GS
2021
2022#define FILTER_READ(idx, sv, len) filter_read(idx, sv, len)
2023#define FILTER_DATA(idx) (AvARRAY(PL_rsfp_filters)[idx])
2024#define FILTER_ISREADER(idx) (idx >= AvFILLp(PL_rsfp_filters))
2025
2c2d71f5
JH
2026#if !defined(OS2)
2027# include "iperlsys.h"
2028#endif
378cc40b 2029#include "regexp.h"
79072805 2030#include "sv.h"
378cc40b 2031#include "util.h"
8d063cd8 2032#include "form.h"
79072805
LW
2033#include "gv.h"
2034#include "cv.h"
abdd5c84 2035#include "opnames.h"
79072805
LW
2036#include "op.h"
2037#include "cop.h"
2038#include "av.h"
2039#include "hv.h"
2040#include "mg.h"
2041#include "scope.h"
4438c4b7 2042#include "warnings.h"
a0ed51b3 2043#include "utf8.h"
8d063cd8 2044
7fae4e64
GS
2045/* Current curly descriptor */
2046typedef struct curcur CURCUR;
2047struct curcur {
2048 int parenfloor; /* how far back to strip paren data */
2049 int cur; /* how many instances of scan we've matched */
2050 int min; /* the minimal number of scans to match */
2051 int max; /* the maximal number of scans to match */
2052 int minmod; /* whether to work our way up or down */
2053 regnode * scan; /* the thing to match */
2054 regnode * next; /* what has to match after it */
2055 char * lastloc; /* where we started matching this scan */
2056 CURCUR * oldcc; /* current curly before we started this one */
2057};
2058
2059typedef struct _sublex_info SUBLEXINFO;
2060struct _sublex_info {
2061 I32 super_state; /* lexer state to save */
2062 I32 sub_inwhat; /* "lex_inwhat" to use */
2063 OP *sub_op; /* "lex_op" to use */
0244c3a4
GS
2064 char *super_bufptr; /* PL_bufptr that was */
2065 char *super_bufend; /* PL_bufend that was */
7fae4e64
GS
2066};
2067
455ece5e 2068typedef struct magic_state MGS; /* struct magic_state defined in mg.c */
76e3520e 2069
2c2d71f5 2070struct scan_data_t; /* Used in S_* functions in regcomp.c */
653099ff 2071struct regnode_charclass_class; /* Used in S_* functions in regcomp.c */
76e3520e
GS
2072
2073typedef I32 CHECKPOINT;
76e3520e 2074
5f7fde29
GS
2075struct ptr_tbl_ent {
2076 struct ptr_tbl_ent* next;
2077 void* oldval;
2078 void* newval;
d18c6117
GS
2079};
2080
5f7fde29
GS
2081struct ptr_tbl {
2082 struct ptr_tbl_ent** tbl_ary;
2083 UV tbl_max;
2084 UV tbl_items;
d18c6117
GS
2085};
2086
450a55e4 2087#if defined(iAPX286) || defined(M_I286) || defined(I80286)
a687059c
LW
2088# define I286
2089#endif
2090
fe14fcc3
LW
2091#if defined(htonl) && !defined(HAS_HTONL)
2092#define HAS_HTONL
ae986130 2093#endif
fe14fcc3
LW
2094#if defined(htons) && !defined(HAS_HTONS)
2095#define HAS_HTONS
ae986130 2096#endif
fe14fcc3
LW
2097#if defined(ntohl) && !defined(HAS_NTOHL)
2098#define HAS_NTOHL
ae986130 2099#endif
fe14fcc3
LW
2100#if defined(ntohs) && !defined(HAS_NTOHS)
2101#define HAS_NTOHS
ae986130 2102#endif
fe14fcc3 2103#ifndef HAS_HTONL
d9d8d8de 2104#if (BYTEORDER & 0xffff) != 0x4321
fe14fcc3
LW
2105#define HAS_HTONS
2106#define HAS_HTONL
2107#define HAS_NTOHS
2108#define HAS_NTOHL
a687059c
LW
2109#define MYSWAP
2110#define htons my_swap
2111#define htonl my_htonl
2112#define ntohs my_swap
2113#define ntohl my_ntohl
2114#endif
2115#else
d9d8d8de 2116#if (BYTEORDER & 0xffff) == 0x4321
fe14fcc3
LW
2117#undef HAS_HTONS
2118#undef HAS_HTONL
2119#undef HAS_NTOHS
2120#undef HAS_NTOHL
a687059c
LW
2121#endif
2122#endif
2123
988174c1
LW
2124/*
2125 * Little-endian byte order functions - 'v' for 'VAX', or 'reVerse'.
2126 * -DWS
2127 */
2128#if BYTEORDER != 0x1234
2129# define HAS_VTOHL
2130# define HAS_VTOHS
2131# define HAS_HTOVL
2132# define HAS_HTOVS
c67712b2 2133# if BYTEORDER == 0x4321 || BYTEORDER == 0x87654321
988174c1
LW
2134# define vtohl(x) ((((x)&0xFF)<<24) \
2135 +(((x)>>24)&0xFF) \
2136 +(((x)&0x0000FF00)<<8) \
2137 +(((x)&0x00FF0000)>>8) )
2138# define vtohs(x) ((((x)&0xFF)<<8) + (((x)>>8)&0xFF))
2139# define htovl(x) vtohl(x)
2140# define htovs(x) vtohs(x)
2141# endif
2142 /* otherwise default to functions in util.c */
2143#endif
2144
3bb7c1b4
JH
2145/* *MAX Plus 1. A floating point value.
2146 Hopefully expressed in a way that dodgy floating point can't mess up.
2147 >> 2 rather than 1, so that value is safely less than I32_MAX after 1
2148 is added to it
2149 May find that some broken compiler will want the value cast to I32.
2150 [after the shift, as signed >> may not be as secure as unsigned >>]
2151*/
2152#define I32_MAX_P1 (2.0 * (1 + (((U32)I32_MAX) >> 1)))
2153#define U32_MAX_P1 (4.0 * (1 + ((U32_MAX) >> 2)))
2154/* For compilers that can't correctly cast NVs over 0x7FFFFFFF (or
2155 0x7FFFFFFFFFFFFFFF) to an unsigned integer. In the future, sizeof(UV)
2156 may be greater than sizeof(IV), so don't assume that half max UV is max IV.
2157*/
2158#define U32_MAX_P1_HALF (2.0 * (1 + ((U32_MAX) >> 2)))
ee0007ab 2159
3bb7c1b4
JH
2160#define UV_MAX_P1 (4.0 * (1 + ((UV_MAX) >> 2)))
2161#define IV_MAX_P1 (2.0 * (1 + (((UV)IV_MAX) >> 1)))
2162#define UV_MAX_P1_HALF (2.0 * (1 + ((UV_MAX) >> 2)))
2163
2164/* This may look like unnecessary jumping through hoops, but converting
2165 out of range floating point values to integers *is* undefined behaviour,
2166 and it is starting to bite.
2167*/
2168#ifndef CAST_INLINE
65202027 2169#define I_32(what) (cast_i32((NV)(what)))
3bb7c1b4 2170#define U_32(what) (cast_ulong((NV)(what)))
65202027
DS
2171#define I_V(what) (cast_iv((NV)(what)))
2172#define U_V(what) (cast_uv((NV)(what)))
3bb7c1b4
JH
2173#else
2174#define I_32(n) ((n) < I32_MAX_P1 ? ((n) < I32_MIN ? I32_MIN : (I32) (n)) \
2175 : ((n) < U32_MAX_P1 ? (I32)(U32) (n) \
2176 : ((n) > 0 ? (I32) U32_MAX : 0 /* NaN */)))
2177#define U_32(n) ((n) < 0.0 ? ((n) < I32_MIN ? (UV) I32_MIN : (U32)(I32) (n)) \
2178 : ((n) < U32_MAX_P1 ? (U32) (n) \
2179 : ((n) > 0 ? U32_MAX : 0 /* NaN */)))
2180#define I_V(n) ((n) < IV_MAX_P1 ? ((n) < IV_MIN ? IV_MIN : (IV) (n)) \
2181 : ((n) < UV_MAX_P1 ? (IV)(UV) (n) \
2182 : ((n) > 0 ? (IV)UV_MAX : 0 /* NaN */)))
2183#define U_V(n) ((n) < 0.0 ? ((n) < IV_MIN ? (UV) IV_MIN : (UV)(IV) (n)) \
2184 : ((n) < UV_MAX_P1 ? (UV) (n) \
2185 : ((n) > 0 ? UV_MAX : 0 /* NaN */)))
2186#endif
2187
2188#define U_S(what) ((U16)U_32(what))
2189#define U_I(what) ((unsigned int)U_32(what))
2190#define U_L(what) U_32(what)
ed6116ce 2191
2d4389e4
JH
2192/* These do not care about the fractional part, only about the range. */
2193#define NV_WITHIN_IV(nv) (I_V(nv) >= IV_MIN && I_V(nv) <= IV_MAX)
24db6c0d 2194#define NV_WITHIN_UV(nv) ((nv)>=0.0 && U_V(nv) >= UV_MIN && U_V(nv) <= UV_MAX)
2d4389e4 2195
25da4f38
IZ
2196/* Used with UV/IV arguments: */
2197 /* XXXX: need to speed it up */
2198#define CLUMP_2UV(iv) ((iv) < 0 ? 0 : (UV)(iv))
2199#define CLUMP_2IV(uv) ((uv) > (UV)IV_MAX ? IV_MAX : (IV)(uv))
2200
352d5a3a
LW
2201#ifndef MAXSYSFD
2202# define MAXSYSFD 2
2203#endif
ee0007ab 2204
79072805 2205#ifndef __cplusplus
20ce7b12
GS
2206Uid_t getuid (void);
2207Uid_t geteuid (void);
2208Gid_t getgid (void);
2209Gid_t getegid (void);
79072805 2210#endif
8d063cd8 2211
0c30d9ec 2212#ifndef Perl_debug_log
bf49b057
GS
2213# define Perl_debug_log PerlIO_stderr()
2214#endif
2215
2216#ifndef Perl_error_log
2217# define Perl_error_log (PL_stderrgv \
01bb7c6d 2218 && GvIOp(PL_stderrgv) \
42de951c 2219 && IoOFP(GvIOp(PL_stderrgv)) \
bf49b057
GS
2220 ? IoOFP(GvIOp(PL_stderrgv)) \
2221 : PerlIO_stderr())
0c30d9ec 2222#endif
3967c732 2223
aea4f609
DM
2224
2225#define DEBUG_p_FLAG 0x00000001 /* 1 */
2226#define DEBUG_s_FLAG 0x00000002 /* 2 */
2227#define DEBUG_l_FLAG 0x00000004 /* 4 */
2228#define DEBUG_t_FLAG 0x00000008 /* 8 */
2229#define DEBUG_o_FLAG 0x00000010 /* 16 */
2230#define DEBUG_c_FLAG 0x00000020 /* 32 */
2231#define DEBUG_P_FLAG 0x00000040 /* 64 */
2232#define DEBUG_m_FLAG 0x00000080 /* 128 */
2233#define DEBUG_f_FLAG 0x00000100 /* 256 */
2234#define DEBUG_r_FLAG 0x00000200 /* 512 */
2235#define DEBUG_x_FLAG 0x00000400 /* 1024 */
2236#define DEBUG_u_FLAG 0x00000800 /* 2048 */
2237#define DEBUG_L_FLAG 0x00001000 /* 4096 */
2238#define DEBUG_H_FLAG 0x00002000 /* 8192 */
2239#define DEBUG_X_FLAG 0x00004000 /* 16384 */
2240#define DEBUG_D_FLAG 0x00008000 /* 32768 */
2241#define DEBUG_S_FLAG 0x00010000 /* 65536 */
2242#define DEBUG_T_FLAG 0x00020000 /* 131072 */
04932ac8
DM
2243#define DEBUG_R_FLAG 0x00040000 /* 262144 */
2244#define DEBUG_MASK 0x0007FFFF /* mask of all the standard flags */
aea4f609
DM
2245
2246#define DEBUG_DB_RECURSE_FLAG 0x40000000
2247#define DEBUG_TOP_FLAG 0x80000000 /* XXX what's this for ??? */
2248
2249
3967c732 2250#ifdef DEBUGGING
aea4f609
DM
2251
2252# undef YYDEBUG
2253# define YYDEBUG 1
2254
2255# define DEBUG_p_TEST (PL_debug & DEBUG_p_FLAG)
2256# define DEBUG_s_TEST (PL_debug & DEBUG_s_FLAG)
2257# define DEBUG_l_TEST (PL_debug & DEBUG_l_FLAG)
2258# define DEBUG_t_TEST (PL_debug & DEBUG_t_FLAG)
2259# define DEBUG_o_TEST (PL_debug & DEBUG_o_FLAG)
2260# define DEBUG_c_TEST (PL_debug & DEBUG_c_FLAG)
2261# define DEBUG_P_TEST (PL_debug & DEBUG_P_FLAG)
2262# define DEBUG_m_TEST (PL_debug & DEBUG_m_FLAG)
2263# define DEBUG_f_TEST (PL_debug & DEBUG_f_FLAG)
2264# define DEBUG_r_TEST (PL_debug & DEBUG_r_FLAG)
2265# define DEBUG_x_TEST (PL_debug & DEBUG_x_FLAG)
2266# define DEBUG_u_TEST (PL_debug & DEBUG_u_FLAG)
2267# define DEBUG_L_TEST (PL_debug & DEBUG_L_FLAG)
2268# define DEBUG_H_TEST (PL_debug & DEBUG_H_FLAG)
2269# define DEBUG_X_TEST (PL_debug & DEBUG_X_FLAG)
2270# define DEBUG_D_TEST (PL_debug & DEBUG_D_FLAG)
2271# define DEBUG_S_TEST (PL_debug & DEBUG_S_FLAG)
2272# define DEBUG_T_TEST (PL_debug & DEBUG_T_FLAG)
04932ac8 2273# define DEBUG_R_TEST (PL_debug & DEBUG_R_FLAG)
aea4f609
DM
2274
2275# define DEB(a) a
2276# define DEBUG(a) if (PL_debug) a
2277# define DEBUG_p(a) if (DEBUG_p_TEST) a
2278# define DEBUG_s(a) if (DEBUG_s_TEST) a
2279# define DEBUG_l(a) if (DEBUG_l_TEST) a
2280# define DEBUG_t(a) if (DEBUG_t_TEST) a
2281# define DEBUG_o(a) if (DEBUG_o_TEST) a
2282# define DEBUG_c(a) if (DEBUG_c_TEST) a
2283# define DEBUG_P(a) if (DEBUG_P_TEST) a
2284
0672f40e 2285# if defined(PERL_OBJECT)
aea4f609 2286# define DEBUG_m(a) if (DEBUG_m_TEST) a
c850101c 2287# else
969058bb
VK
2288 /* Temporarily turn off memory debugging in case the a
2289 * does memory allocation, either directly or indirectly. */
0b250b9e
GS
2290# define DEBUG_m(a) \
2291 STMT_START { \
aea4f609 2292 if (PERL_GET_INTERP) { dTHX; if (DEBUG_m_TEST) {PL_debug&=~DEBUG_m_FLAG; a; PL_debug|=DEBUG_m_FLAG;} } \
0b250b9e 2293 } STMT_END
c850101c 2294# endif
aea4f609 2295
5f80b19c
AMS
2296# define DEBUG__(t, a) \
2297 STMT_START { \
2298 if (t) STMT_START {a;} STMT_END; \
2299 } STMT_END
2300
2301# define DEBUG_f(a) DEBUG__(DEBUG_f_TEST, a)
2302# define DEBUG_r(a) DEBUG__(DEBUG_r_TEST, a)
2303# define DEBUG_x(a) DEBUG__(DEBUG_x_TEST, a)
2304# define DEBUG_u(a) DEBUG__(DEBUG_u_TEST, a)
2305# define DEBUG_L(a) DEBUG__(DEBUG_L_TEST, a)
2306# define DEBUG_H(a) DEBUG__(DEBUG_H_TEST, a)
2307# define DEBUG_X(a) DEBUG__(DEBUG_X_TEST, a)
2308# define DEBUG_D(a) DEBUG__(DEBUG_D_TEST, a)
aea4f609 2309
8b73bbec 2310# ifdef USE_THREADS
5f80b19c 2311# define DEBUG_S(a) DEBUG__(DEBUG_S_TEST, a)
8b73bbec
IZ
2312# else
2313# define DEBUG_S(a)
2314# endif
aea4f609 2315
5f80b19c
AMS
2316# define DEBUG_T(a) DEBUG__(DEBUG_T_TEST, a)
2317# define DEBUG_R(a) DEBUG__(DEBUG_R_TEST, a)
aea4f609
DM
2318
2319#else /* DEBUGGING */
2320
2321# define DEBUG_p_TEST (0)
2322# define DEBUG_s_TEST (0)
2323# define DEBUG_l_TEST (0)
2324# define DEBUG_t_TEST (0)
2325# define DEBUG_o_TEST (0)
2326# define DEBUG_c_TEST (0)
2327# define DEBUG_P_TEST (0)
2328# define DEBUG_m_TEST (0)
2329# define DEBUG_f_TEST (0)
2330# define DEBUG_r_TEST (0)
2331# define DEBUG_x_TEST (0)
2332# define DEBUG_u_TEST (0)
2333# define DEBUG_L_TEST (0)
2334# define DEBUG_H_TEST (0)
2335# define DEBUG_X_TEST (0)
2336# define DEBUG_D_TEST (0)
2337# define DEBUG_S_TEST (0)
2338# define DEBUG_T_TEST (0)
04932ac8 2339# define DEBUG_R_TEST (0)
aea4f609
DM
2340
2341# define DEB(a)
2342# define DEBUG(a)
2343# define DEBUG_p(a)
2344# define DEBUG_s(a)
2345# define DEBUG_l(a)
2346# define DEBUG_t(a)
2347# define DEBUG_o(a)
2348# define DEBUG_c(a)
2349# define DEBUG_P(a)
2350# define DEBUG_m(a)
2351# define DEBUG_f(a)
2352# define DEBUG_r(a)
2353# define DEBUG_x(a)
2354# define DEBUG_u(a)
2355# define DEBUG_L(a)
2356# define DEBUG_H(a)
2357# define DEBUG_X(a)
2358# define DEBUG_D(a)
2359# define DEBUG_S(a)
2360# define DEBUG_T(a)
04932ac8 2361# define DEBUG_R(a)
aea4f609
DM
2362#endif /* DEBUGGING */
2363
2364
14befaf4
DM
2365/* These constants should be used in preference to to raw characters
2366 * when using magic. Note that some perl guts still assume
2367 * certain character properties of these constants, namely that
2368 * isUPPER() and toLOWER() may do useful mappings.
2369 *
2370 * Update the magic_names table in dump.c when adding/amending these
2371 */
2372
2373#define PERL_MAGIC_sv '\0' /* Special scalar variable */
2374#define PERL_MAGIC_overload 'A' /* %OVERLOAD hash */
2375#define PERL_MAGIC_overload_elem 'a' /* %OVERLOAD hash element */
2376#define PERL_MAGIC_overload_table 'c' /* Holds overload table (AMT) on stash */
2377#define PERL_MAGIC_bm 'B' /* Boyer-Moore (fast string search) */
2378#define PERL_MAGIC_regdata 'D' /* Regex match position data
2379 (@+ and @- vars) */
2380#define PERL_MAGIC_regdatum 'd' /* Regex match position data element */
2381#define PERL_MAGIC_env 'E' /* %ENV hash */
2382#define PERL_MAGIC_envelem 'e' /* %ENV hash element */
2383#define PERL_MAGIC_fm 'f' /* Formline ('compiled' format) */
2384#define PERL_MAGIC_regex_global 'g' /* m//g target / study()ed string */
2385#define PERL_MAGIC_isa 'I' /* @ISA array */
2386#define PERL_MAGIC_isaelem 'i' /* @ISA array element */
2387#define PERL_MAGIC_nkeys 'k' /* scalar(keys()) lvalue */
2388#define PERL_MAGIC_dbfile 'L' /* Debugger %_<filename */
2389#define PERL_MAGIC_dbline 'l' /* Debugger %_<filename element */
2390#define PERL_MAGIC_mutex 'm' /* ??? */
2391#define PERL_MAGIC_collxfrm 'o' /* Locale transformation */
2392#define PERL_MAGIC_tied 'P' /* Tied array or hash */
2393#define PERL_MAGIC_tiedelem 'p' /* Tied array or hash element */
2394#define PERL_MAGIC_tiedscalar 'q' /* Tied scalar or handle */
2395#define PERL_MAGIC_qr 'r' /* precompiled qr// regex */
2396#define PERL_MAGIC_sig 'S' /* %SIG hash */
2397#define PERL_MAGIC_sigelem 's' /* %SIG hash element */
2398#define PERL_MAGIC_taint 't' /* Taintedness */
2399#define PERL_MAGIC_uvar 'U' /* Available for use by extensions */
2400#define PERL_MAGIC_vec 'v' /* vec() lvalue */
2401#define PERL_MAGIC_substr 'x' /* substr() lvalue */
2402#define PERL_MAGIC_defelem 'y' /* Shadow "foreach" iterator variable /
2403 smart parameter vivification */
2404#define PERL_MAGIC_glob '*' /* GV (typeglob) */
2405#define PERL_MAGIC_arylen '#' /* Array length ($#ary) */
2406#define PERL_MAGIC_pos '.' /* pos() lvalue */
2407#define PERL_MAGIC_backref '<' /* ??? */
2408#define PERL_MAGIC_ext '~' /* Available for use by extensions */
2409
2410
fe14fcc3 2411#define YYMAXDEPTH 300
8d063cd8 2412
a6e633de 2413#ifndef assert /* <assert.h> might have been included somehow */
79072805
LW
2414#define assert(what) DEB( { \
2415 if (!(what)) { \
cea2e8a9 2416 Perl_croak(aTHX_ "Assertion failed: file \"%s\", line %d", \
79072805 2417 __FILE__, __LINE__); \
cea2e8a9 2418 PerlProc_exit(1); \
79072805 2419 }})
a6e633de 2420#endif
8d063cd8 2421
450a55e4 2422struct ufuncs {
24f81a43
DM
2423 I32 (*uf_val)(pTHX_ IV, SV*);
2424 I32 (*uf_set)(pTHX_ IV, SV*);
a0d0e21e 2425 IV uf_index;
450a55e4
LW
2426};
2427
14befaf4 2428/* In pre-5.7-Perls the PERL_MAGIC_uvar magic didn't get the thread context.
24f81a43
DM
2429 * XS code wanting to be backward compatible can do something
2430 * like the following:
c745e42c 2431
24f81a43 2432#ifndef PERL_MG_UFUNC
24f81a43
DM
2433#define PERL_MG_UFUNC(name,ix,sv) I32 name(IV ix, SV *sv)
2434#endif
2435
2436static PERL_MG_UFUNC(foo_get, index, val)
2437{
2438 sv_setsv(val, ...);
2439 return TRUE;
2440}
2441
2442-- Doug MacEachern
2443
2444*/
2445
fc9c74e6 2446#ifndef PERL_MG_UFUNC
24f81a43 2447#define PERL_MG_UFUNC(name,ix,sv) I32 name(pTHX_ IV ix, SV *sv)
fc9c74e6 2448#endif
24f81a43 2449
fe14fcc3 2450/* Fix these up for __STDC__ */
68dc0745 2451#ifndef DONT_DECLARE_STD
20ce7b12 2452char *mktemp (char*);
37bd1396 2453#ifndef atof
20ce7b12 2454double atof (const char*);
a0d0e21e 2455#endif
37bd1396 2456#endif
79072805 2457
352d5a3a 2458#ifndef STANDARD_C
fe14fcc3 2459/* All of these are in stdlib.h or time.h for ANSI C */
85e6fe83 2460Time_t time();
8d063cd8 2461struct tm *gmtime(), *localtime();
092bebab 2462#if defined(OEMVS) || defined(__OPEN_VM)
9d116dd7
JH
2463char *(strchr)(), *(strrchr)();
2464char *(strcpy)(), *(strcat)();
2465#else
93a17b20 2466char *strchr(), *strrchr();
378cc40b 2467char *strcpy(), *strcat();
9d116dd7 2468#endif
352d5a3a 2469#endif /* ! STANDARD_C */
8d063cd8 2470
79072805
LW
2471
2472#ifdef I_MATH
2473# include <math.h>
2474#else
32f822de 2475START_EXTERN_C
20ce7b12
GS
2476 double exp (double);
2477 double log (double);
2478 double log10 (double);
2479 double sqrt (double);
2480 double frexp (double,int*);
2481 double ldexp (double,int);
2482 double modf (double,double*);
2483 double sin (double);
2484 double cos (double);
2485 double atan2 (double,double);
2486 double pow (double,double);
32f822de 2487END_EXTERN_C
79072805
LW
2488#endif
2489
a0d0e21e 2490#ifndef __cplusplus
8f1f23e8 2491# if defined(NeXT) || defined(__NeXT__) /* or whatever catches all NeXTs */
3fc1aec6 2492char *crypt (); /* Maybe more hosts will need the unprototyped version */
26618a56 2493# else
fd8cd3a3 2494# if !defined(WIN32) && !defined(VMS)
20ce7b12 2495char *crypt (const char*, const char*);
5014db98 2496# endif /* !WIN32 */
8f1f23e8 2497# endif /* !NeXT && !__NeXT__ */
26618a56
GS
2498# ifndef DONT_DECLARE_STD
2499# ifndef getenv
20ce7b12 2500char *getenv (const char*);
26618a56 2501# endif /* !getenv */
28ca6303 2502# if !defined(HAS_LSEEK_PROTO) && !defined(EPOC) && !defined(__hpux)
0fc67700 2503# ifdef _FILE_OFFSET_BITS
28ca6303 2504# if _FILE_OFFSET_BITS == 64
20ce7b12 2505Off_t lseek (int,Off_t,int);
0fc67700
JH
2506# endif
2507# endif
bf0c440f 2508# endif
26618a56 2509# endif /* !DONT_DECLARE_STD */
20ce7b12 2510char *getlogin (void);
26618a56 2511#endif /* !__cplusplus */
79072805 2512
16d20bd9 2513#ifdef UNLINK_ALL_VERSIONS /* Currently only makes sense for VMS */
378cc40b 2514#define UNLINK unlnk
20ce7b12 2515I32 unlnk (char*);
8d063cd8 2516#else
80252599 2517#define UNLINK PerlLIO_unlink
8d063cd8 2518#endif
a687059c 2519
fa0a29af
JH
2520/* some versions of glibc are missing the setresuid() proto */
2521#if defined(HAS_SETRESUID) && !defined(HAS_SETRESUID_PROTO)
640374d0
JH
2522int setresuid(uid_t ruid, uid_t euid, uid_t suid);
2523#endif
fa0a29af
JH
2524/* some versions of glibc are missing the setresgid() proto */
2525#if defined(HAS_SETRESGID) && !defined(HAS_SETRESGID_PROTO)
640374d0
JH
2526int setresgid(gid_t rgid, gid_t egid, gid_t sgid);
2527#endif
2528
fe14fcc3 2529#ifndef HAS_SETREUID
85e6fe83
LW
2530# ifdef HAS_SETRESUID
2531# define setreuid(r,e) setresuid(r,e,(Uid_t)-1)
2532# define HAS_SETREUID
2533# endif
a687059c 2534#endif
fe14fcc3 2535#ifndef HAS_SETREGID
85e6fe83
LW
2536# ifdef HAS_SETRESGID
2537# define setregid(r,e) setresgid(r,e,(Gid_t)-1)
2538# define HAS_SETREGID
2539# endif
a687059c 2540#endif
ee0007ab 2541
d543acb6 2542/* Sighandler_t defined in iperlsys.h */
ff68c719 2543
2544#ifdef HAS_SIGACTION
2545typedef struct sigaction Sigsave_t;
2546#else
2547typedef Sighandler_t Sigsave_t;
2548#endif
2549
ee0007ab
LW
2550#define SCAN_DEF 0
2551#define SCAN_TR 1
2552#define SCAN_REPL 2
79072805
LW
2553
2554#ifdef DEBUGGING
4633a7c4 2555# ifndef register
a0d0e21e
LW
2556# define register
2557# endif
2558# define PAD_SV(po) pad_sv(po)
cea2e8a9 2559# define RUNOPS_DEFAULT Perl_runops_debug
79072805 2560#else
6b88bc9c 2561# define PAD_SV(po) PL_curpad[po]
cea2e8a9 2562# define RUNOPS_DEFAULT Perl_runops_standard
79072805
LW
2563#endif
2564
18f739ee 2565#ifdef MYMALLOC
772fe5b3 2566# ifdef MUTEX_INIT_CALLS_MALLOC
3541dd58
HM
2567# define MALLOC_INIT \
2568 STMT_START { \
2569 PL_malloc_mutex = NULL; \
2570 MUTEX_INIT(&PL_malloc_mutex); \
2571 } STMT_END
2572# define MALLOC_TERM \
2573 STMT_START { \
2574 perl_mutex tmp = PL_malloc_mutex; \
2575 PL_malloc_mutex = NULL; \
2576 MUTEX_DESTROY(&tmp); \
2577 } STMT_END
2578# else
2579# define MALLOC_INIT MUTEX_INIT(&PL_malloc_mutex)
2580# define MALLOC_TERM MUTEX_DESTROY(&PL_malloc_mutex)
2581# endif
18f739ee
IZ
2582#else
2583# define MALLOC_INIT
2584# define MALLOC_TERM
2585#endif
2586
b6d9d515 2587
0cb96387
GS
2588typedef int (CPERLscope(*runops_proc_t)) (pTHX);
2589typedef OP* (CPERLscope(*PPADDR_t)[]) (pTHX);
22c35a8c 2590
940cb80d 2591/* _ (for $_) must be first in the following list (DEFSV requires it) */
54b9620d 2592#define THREADSV_NAMES "_123456789&`'+/.,\\\";^-%=|~:\001\005!@"
a863c7d1 2593
8f1f23e8
W
2594/* NeXT has problems with crt0.o globals */
2595#if defined(__DYNAMIC__) && \
2596 (defined(NeXT) || defined(__NeXT__) || defined(__APPLE__))
2597# if defined(NeXT) || defined(__NeXT)
2598# include <mach-o/dyld.h>
2599# define environ (*environ_pointer)
0c30d9ec 2600EXT char *** environ_pointer;
8f1f23e8 2601# else
82cabb9e 2602# if defined(__APPLE__) && defined(PERL_CORE)
8f1f23e8
W
2603# include <crt_externs.h> /* for the env array */
2604# define environ (*_NSGetEnviron())
2605# endif
0c30d9ec 2606# endif
8f1f23e8
W
2607#else
2608 /* VMS and some other platforms don't use the environ array */
13b6e58c 2609# ifdef USE_ENVIRON_ARRAY
a6c40364
GS
2610# if !defined(DONT_DECLARE_STD) || \
2611 (defined(__svr4__) && defined(__GNUC__) && defined(sun)) || \
2612 defined(__sgi) || \
d460ef45 2613 defined(__DGUX)
8f1f23e8 2614extern char ** environ; /* environment variables supplied via exec */
a6c40364 2615# endif
8f1f23e8
W
2616# endif
2617#endif
79072805 2618
73c4f7a1
GS
2619START_EXTERN_C
2620
79072805 2621/* handy constants */
22c35a8c 2622EXTCONST char PL_warn_uninit[]
b89fed5f 2623 INIT("Use of uninitialized value%s%s");
22c35a8c 2624EXTCONST char PL_warn_nosemi[]
463ee0b2 2625 INIT("Semicolon seems to be missing");
22c35a8c 2626EXTCONST char PL_warn_reserved[]
463ee0b2 2627 INIT("Unquoted string \"%s\" may clash with future reserved word");
22c35a8c 2628EXTCONST char PL_warn_nl[]
93a17b20 2629 INIT("Unsuccessful %s on filename containing newline");
22c35a8c 2630EXTCONST char PL_no_wrongref[]
a0d0e21e 2631 INIT("Can't use %s ref as %s ref");
22c35a8c 2632EXTCONST char PL_no_symref[]
748a9306 2633 INIT("Can't use string (\"%.32s\") as %s ref while \"strict refs\" in use");
22c35a8c 2634EXTCONST char PL_no_usym[]
8990e307 2635 INIT("Can't use an undefined value as %s reference");
22c35a8c 2636EXTCONST char PL_no_aelem[]
93a17b20 2637 INIT("Modification of non-creatable array value attempted, subscript %d");
22c35a8c 2638EXTCONST char PL_no_helem[]
93a17b20 2639 INIT("Modification of non-creatable hash value attempted, subscript \"%s\"");
22c35a8c 2640EXTCONST char PL_no_modify[]
93a17b20 2641 INIT("Modification of a read-only value attempted");
22c35a8c 2642EXTCONST char PL_no_mem[]
93a17b20 2643 INIT("Out of memory!\n");
22c35a8c 2644EXTCONST char PL_no_security[]
463ee0b2 2645 INIT("Insecure dependency in %s%s");
22c35a8c 2646EXTCONST char PL_no_sock_func[]
93a17b20 2647 INIT("Unsupported socket function \"%s\" called");
22c35a8c 2648EXTCONST char PL_no_dir_func[]
93a17b20 2649 INIT("Unsupported directory function \"%s\" called");
22c35a8c 2650EXTCONST char PL_no_func[]
93a17b20 2651 INIT("The %s function is unimplemented");
22c35a8c 2652EXTCONST char PL_no_myglob[]
748a9306 2653 INIT("\"my\" variable %s can't be in a package");
93a17b20 2654
7575fa06 2655EXTCONST char PL_uuemap[65]
80252599
GS
2656 INIT("`!\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_");
2657
2658
79072805 2659#ifdef DOINIT
22c35a8c
GS
2660EXT char *PL_sig_name[] = { SIG_NAME };
2661EXT int PL_sig_num[] = { SIG_NUM };
79072805 2662#else
22c35a8c
GS
2663EXT char *PL_sig_name[];
2664EXT int PL_sig_num[];
79072805
LW
2665#endif
2666
3bd709b1 2667/* fast conversion and case folding tables */
bbce6d69 2668
79072805 2669#ifdef DOINIT
9d116dd7 2670#ifdef EBCDIC
22c35a8c 2671EXT unsigned char PL_fold[] = { /* fast EBCDIC case folding table */
9d116dd7
JH
2672 0, 1, 2, 3, 4, 5, 6, 7,
2673 8, 9, 10, 11, 12, 13, 14, 15,
2674 16, 17, 18, 19, 20, 21, 22, 23,
2675 24, 25, 26, 27, 28, 29, 30, 31,
2676 32, 33, 34, 35, 36, 37, 38, 39,
2677 40, 41, 42, 43, 44, 45, 46, 47,
2678 48, 49, 50, 51, 52, 53, 54, 55,
2679 56, 57, 58, 59, 60, 61, 62, 63,
2680 64, 65, 66, 67, 68, 69, 70, 71,
2681 72, 73, 74, 75, 76, 77, 78, 79,
2682 80, 81, 82, 83, 84, 85, 86, 87,
2683 88, 89, 90, 91, 92, 93, 94, 95,
2684 96, 97, 98, 99, 100, 101, 102, 103,
2685 104, 105, 106, 107, 108, 109, 110, 111,
2686 112, 113, 114, 115, 116, 117, 118, 119,
2687 120, 121, 122, 123, 124, 125, 126, 127,
2688 128, 'A', 'B', 'C', 'D', 'E', 'F', 'G',
2689 'H', 'I', 138, 139, 140, 141, 142, 143,
2690 144, 'J', 'K', 'L', 'M', 'N', 'O', 'P',
2691 'Q', 'R', 154, 155, 156, 157, 158, 159,
2692 160, 161, 'S', 'T', 'U', 'V', 'W', 'X',
2693 'Y', 'Z', 170, 171, 172, 173, 174, 175,
2694 176, 177, 178, 179, 180, 181, 182, 183,
2695 184, 185, 186, 187, 188, 189, 190, 191,
2696 192, 'a', 'b', 'c', 'd', 'e', 'f', 'g',
2697 'h', 'i', 202, 203, 204, 205, 206, 207,
2698 208, 'j', 'k', 'l', 'm', 'n', 'o', 'p',
2699 'q', 'r', 218, 219, 220, 221, 222, 223,
2700 224, 225, 's', 't', 'u', 'v', 'w', 'x',
2701 'y', 'z', 234, 235, 236, 237, 238, 239,
2702 240, 241, 242, 243, 244, 245, 246, 247,
2703 248, 249, 250, 251, 252, 253, 254, 255
2704};
2705#else /* ascii rather than ebcdic */
22c35a8c 2706EXTCONST unsigned char PL_fold[] = {
79072805
LW
2707 0, 1, 2, 3, 4, 5, 6, 7,
2708 8, 9, 10, 11, 12, 13, 14, 15,
2709 16, 17, 18, 19, 20, 21, 22, 23,
2710 24, 25, 26, 27, 28, 29, 30, 31,
2711 32, 33, 34, 35, 36, 37, 38, 39,
2712 40, 41, 42, 43, 44, 45, 46, 47,
2713 48, 49, 50, 51, 52, 53, 54, 55,
2714 56, 57, 58, 59, 60, 61, 62, 63,
2715 64, 'a', 'b', 'c', 'd', 'e', 'f', 'g',
2716 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o',
2717 'p', 'q', 'r', 's', 't', 'u', 'v', 'w',
2718 'x', 'y', 'z', 91, 92, 93, 94, 95,
2719 96, 'A', 'B', 'C', 'D', 'E', 'F', 'G',
2720 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O',
2721 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W',
2722 'X', 'Y', 'Z', 123, 124, 125, 126, 127,
2723 128, 129, 130, 131, 132, 133, 134, 135,
2724 136, 137, 138, 139, 140, 141, 142, 143,
2725 144, 145, 146, 147, 148, 149, 150, 151,
2726 152, 153, 154, 155, 156, 157, 158, 159,
2727 160, 161, 162, 163, 164, 165, 166, 167,
2728 168, 169, 170, 171, 172, 173, 174, 175,
2729 176, 177, 178, 179, 180, 181, 182, 183,
2730 184, 185, 186, 187, 188, 189, 190, 191,
2731 192, 193, 194, 195, 196, 197, 198, 199,
2732 200, 201, 202, 203, 204, 205, 206, 207,
2733 208, 209, 210, 211, 212, 213, 214, 215,
2734 216, 217, 218, 219, 220, 221, 222, 223,
2735 224, 225, 226, 227, 228, 229, 230, 231,
2736 232, 233, 234, 235, 236, 237, 238, 239,
2737 240, 241, 242, 243, 244, 245, 246, 247,
2738 248, 249, 250, 251, 252, 253, 254, 255
2739};
9d116dd7 2740#endif /* !EBCDIC */
79072805 2741#else
22c35a8c 2742EXTCONST unsigned char PL_fold[];
79072805
LW
2743#endif
2744
2745#ifdef DOINIT
22c35a8c 2746EXT unsigned char PL_fold_locale[] = {
79072805
LW
2747 0, 1, 2, 3, 4, 5, 6, 7,
2748 8, 9, 10, 11, 12, 13, 14, 15,
2749 16, 17, 18, 19, 20, 21, 22, 23,
2750 24, 25, 26, 27, 28, 29, 30, 31,
2751 32, 33, 34, 35, 36, 37, 38, 39,
2752 40, 41, 42, 43, 44, 45, 46, 47,
2753 48, 49, 50, 51, 52, 53, 54, 55,
2754 56, 57, 58, 59, 60, 61, 62, 63,
2755 64, 'a', 'b', 'c', 'd', 'e', 'f', 'g',
2756 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o',
2757 'p', 'q', 'r', 's', 't', 'u', 'v', 'w',
2758 'x', 'y', 'z', 91, 92, 93, 94, 95,
2759 96, 'A', 'B', 'C', 'D', 'E', 'F', 'G',
2760 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O',
2761 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W',
2762 'X', 'Y', 'Z', 123, 124, 125, 126, 127,
2763 128, 129, 130, 131, 132, 133, 134, 135,
2764 136, 137, 138, 139, 140, 141, 142, 143,
2765 144, 145, 146, 147, 148, 149, 150, 151,
2766 152, 153, 154, 155, 156, 157, 158, 159,
2767 160, 161, 162, 163, 164, 165, 166, 167,
2768 168, 169, 170, 171, 172, 173, 174, 175,
2769 176, 177, 178, 179, 180, 181, 182, 183,
2770 184, 185, 186, 187, 188, 189, 190, 191,
2771 192, 193, 194, 195, 196, 197, 198, 199,
2772 200, 201, 202, 203, 204, 205, 206, 207,
2773 208, 209, 210, 211, 212, 213, 214, 215,
2774 216, 217, 218, 219, 220, 221, 222, 223,
2775 224, 225, 226, 227, 228, 229, 230, 231,
2776 232, 233, 234, 235, 236, 237, 238, 239,
2777 240, 241, 242, 243, 244, 245, 246, 247,
2778 248, 249, 250, 251, 252, 253, 254, 255
2779};
2780#else
22c35a8c 2781EXT unsigned char PL_fold_locale[];
79072805
LW
2782#endif
2783
2784#ifdef DOINIT
9d116dd7 2785#ifdef EBCDIC
22c35a8c 2786EXT unsigned char PL_freq[] = {/* EBCDIC frequencies for mixed English/C */
9d116dd7
JH
2787 1, 2, 84, 151, 154, 155, 156, 157,
2788 165, 246, 250, 3, 158, 7, 18, 29,
2789 40, 51, 62, 73, 85, 96, 107, 118,
2790 129, 140, 147, 148, 149, 150, 152, 153,
2791 255, 6, 8, 9, 10, 11, 12, 13,
2792 14, 15, 24, 25, 26, 27, 28, 226,
2793 29, 30, 31, 32, 33, 43, 44, 45,
2794 46, 47, 48, 49, 50, 76, 77, 78,
2795 79, 80, 81, 82, 83, 84, 85, 86,
2796 87, 94, 95, 234, 181, 233, 187, 190,
2797 180, 96, 97, 98, 99, 100, 101, 102,
2798 104, 112, 182, 174, 236, 232, 229, 103,
2799 228, 226, 114, 115, 116, 117, 118, 119,
2800 120, 121, 122, 235, 176, 230, 194, 162,
2801 130, 131, 132, 133, 134, 135, 136, 137,
2802 138, 139, 201, 205, 163, 217, 220, 224,
2803 5, 248, 227, 244, 242, 255, 241, 231,
2804 240, 253, 16, 197, 19, 20, 21, 187,
2805 23, 169, 210, 245, 237, 249, 247, 239,
2806 168, 252, 34, 196, 36, 37, 38, 39,
2807 41, 42, 251, 254, 238, 223, 221, 213,
2808 225, 177, 52, 53, 54, 55, 56, 57,
2809 58, 59, 60, 61, 63, 64, 65, 66,
2810 67, 68, 69, 70, 71, 72, 74, 75,
2811 205, 208, 186, 202, 200, 218, 198, 179,
2812 178, 214, 88, 89, 90, 91, 92, 93,
2813 217, 166, 170, 207, 199, 209, 206, 204,
2814 160, 212, 105, 106, 108, 109, 110, 111,
2815 203, 113, 216, 215, 192, 175, 193, 243,
2816 172, 161, 123, 124, 125, 126, 127, 128,
2817 222, 219, 211, 195, 188, 193, 185, 184,
2818 191, 183, 141, 142, 143, 144, 145, 146
2819};
2820#else /* ascii rather than ebcdic */
22c35a8c 2821EXTCONST unsigned char PL_freq[] = { /* letter frequencies for mixed English/C */
79072805
LW
2822 1, 2, 84, 151, 154, 155, 156, 157,
2823 165, 246, 250, 3, 158, 7, 18, 29,
2824 40, 51, 62, 73, 85, 96, 107, 118,
2825 129, 140, 147, 148, 149, 150, 152, 153,
2826 255, 182, 224, 205, 174, 176, 180, 217,
2827 233, 232, 236, 187, 235, 228, 234, 226,
2828 222, 219, 211, 195, 188, 193, 185, 184,
2829 191, 183, 201, 229, 181, 220, 194, 162,
2830 163, 208, 186, 202, 200, 218, 198, 179,
2831 178, 214, 166, 170, 207, 199, 209, 206,
2832 204, 160, 212, 216, 215, 192, 175, 173,
2833 243, 172, 161, 190, 203, 189, 164, 230,
2834 167, 248, 227, 244, 242, 255, 241, 231,
2835 240, 253, 169, 210, 245, 237, 249, 247,
2836 239, 168, 252, 251, 254, 238, 223, 221,
2837 213, 225, 177, 197, 171, 196, 159, 4,
2838 5, 6, 8, 9, 10, 11, 12, 13,
2839 14, 15, 16, 17, 19, 20, 21, 22,
2840 23, 24, 25, 26, 27, 28, 30, 31,
2841 32, 33, 34, 35, 36, 37, 38, 39,
2842 41, 42, 43, 44, 45, 46, 47, 48,
2843 49, 50, 52, 53, 54, 55, 56, 57,
2844 58, 59, 60, 61, 63, 64, 65, 66,
2845 67, 68, 69, 70, 71, 72, 74, 75,
2846 76, 77, 78, 79, 80, 81, 82, 83,
2847 86, 87, 88, 89, 90, 91, 92, 93,
2848 94, 95, 97, 98, 99, 100, 101, 102,
2849 103, 104, 105, 106, 108, 109, 110, 111,
2850 112, 113, 114, 115, 116, 117, 119, 120,
2851 121, 122, 123, 124, 125, 126, 127, 128,
2852 130, 131, 132, 133, 134, 135, 136, 137,
2853 138, 139, 141, 142, 143, 144, 145, 146
2854};
9d116dd7 2855#endif
79072805 2856#else
22c35a8c 2857EXTCONST unsigned char PL_freq[];
79072805
LW
2858#endif
2859
8990e307
LW
2860#ifdef DEBUGGING
2861#ifdef DOINIT
22c35a8c 2862EXTCONST char* PL_block_type[] = {
8990e307
LW
2863 "NULL",
2864 "SUB",
2865 "EVAL",
2866 "LOOP",
2867 "SUBST",
2868 "BLOCK",
2869};
2870#else
22c35a8c 2871EXTCONST char* PL_block_type[];
8990e307
LW
2872#endif
2873#endif
2874
73c4f7a1
GS
2875END_EXTERN_C
2876
79072805
LW
2877/*****************************************************************************/
2878/* This lexer/parser stuff is currently global since yacc is hard to reenter */
2879/*****************************************************************************/
8990e307 2880/* XXX This needs to be revisited, since BEGIN makes yacc re-enter... */
79072805 2881
a0d0e21e
LW
2882#include "perly.h"
2883
fb73857a 2884#define LEX_NOTPARSING 11 /* borrowed from toke.c */
2885
79072805
LW
2886typedef enum {
2887 XOPERATOR,
2888 XTERM,
79072805 2889 XREF,
8990e307 2890 XSTATE,
a0d0e21e 2891 XBLOCK,
09bef843
SB
2892 XATTRBLOCK,
2893 XATTRTERM,
a0d0e21e 2894 XTERMBLOCK
79072805
LW
2895} expectation;
2896
dc9e4912
GS
2897enum { /* pass one of these to get_vtbl */
2898 want_vtbl_sv,
2899 want_vtbl_env,
2900 want_vtbl_envelem,
2901 want_vtbl_sig,
2902 want_vtbl_sigelem,
2903 want_vtbl_pack,
2904 want_vtbl_packelem,
2905 want_vtbl_dbline,
2906 want_vtbl_isa,
2907 want_vtbl_isaelem,
2908 want_vtbl_arylen,
2909 want_vtbl_glob,
2910 want_vtbl_mglob,
2911 want_vtbl_nkeys,
2912 want_vtbl_taint,
2913 want_vtbl_substr,
2914 want_vtbl_vec,
2915 want_vtbl_pos,
2916 want_vtbl_bm,
2917 want_vtbl_fm,
2918 want_vtbl_uvar,
2919 want_vtbl_defelem,
2920 want_vtbl_regexp,
2921 want_vtbl_collxfrm,
2922 want_vtbl_amagic,
2923 want_vtbl_amagicelem,
2924#ifdef USE_THREADS
2925 want_vtbl_mutex,
2926#endif
2927 want_vtbl_regdata,
810b8aa5
GS
2928 want_vtbl_regdatum,
2929 want_vtbl_backref
dc9e4912
GS
2930};
2931
85e6fe83
LW
2932 /* Note: the lowest 8 bits are reserved for
2933 stuffing into op->op_private */
f3aa04c2 2934#define HINT_PRIVATE_MASK 0x000000ff
85e6fe83
LW
2935#define HINT_INTEGER 0x00000001
2936#define HINT_STRICT_REFS 0x00000002
2de3dbcc
JH
2937#define HINT_LOCALE 0x00000004
2938#define HINT_BYTES 0x00000008
0064a8a9 2939#define HINT_BYTES 0x00000008
393fec97 2940/* #define HINT_notused10 0x00000010 */
a0ed51b3 2941 /* Note: 20,40,80 used for NATIVE_HINTS */
85e6fe83
LW
2942
2943#define HINT_BLOCK_SCOPE 0x00000100
2944#define HINT_STRICT_SUBS 0x00000200
2945#define HINT_STRICT_VARS 0x00000400
2946
b3ac6de7
IZ
2947#define HINT_NEW_INTEGER 0x00001000
2948#define HINT_NEW_FLOAT 0x00002000
2949#define HINT_NEW_BINARY 0x00004000
2950#define HINT_NEW_STRING 0x00008000
2951#define HINT_NEW_RE 0x00010000
2952#define HINT_LOCALIZE_HH 0x00020000 /* %^H needs to be copied */
2953
b3eb6a9b 2954#define HINT_RE_TAINT 0x00100000
e4d48cc9 2955#define HINT_RE_EVAL 0x00200000
b3eb6a9b 2956
5ff3f7a4 2957#define HINT_FILETEST_ACCESS 0x00400000
393fec97 2958#define HINT_UTF8 0x00800000
1aa99e6b 2959#define HINT_UTF8_DISTINCT 0x01000000
5ff3f7a4 2960
d4cce5f1
NIS
2961/* Various states of an input record separator SV (rs, nrs) */
2962#define RsSNARF(sv) (! SvOK(sv))
af7d13df
MG
2963#define RsSIMPLE(sv) (SvOK(sv) && (! SvPOK(sv) || SvCUR(sv)))
2964#define RsPARA(sv) (SvPOK(sv) && ! SvCUR(sv))
5b2b9c68 2965#define RsRECORD(sv) (SvROK(sv) && (SvIV(SvRV(sv)) > 0))
79072805 2966
56953603 2967/* Enable variables which are pointers to functions */
0cb96387
GS
2968typedef regexp*(CPERLscope(*regcomp_t)) (pTHX_ char* exp, char* xend, PMOP* pm);
2969typedef I32 (CPERLscope(*regexec_t)) (pTHX_ regexp* prog, char* stringarg,
2970 char* strend, char* strbeg, I32 minend,
2971 SV* screamer, void* data, U32 flags);
f722798b
IZ
2972typedef char* (CPERLscope(*re_intuit_start_t)) (pTHX_ regexp *prog, SV *sv,
2973 char *strpos, char *strend,
2974 U32 flags,
2975 struct re_scream_pos_data_s *d);
2976typedef SV* (CPERLscope(*re_intuit_string_t)) (pTHX_ regexp *prog);
2977typedef void (CPERLscope(*regfree_t)) (pTHX_ struct regexp* r);
56953603 2978
c76ac1ee 2979typedef void (*DESTRUCTORFUNC_NOCONTEXT_t) (void*);
51371543
GS
2980typedef void (*DESTRUCTORFUNC_t) (pTHXo_ void*);
2981typedef void (*SVFUNC_t) (pTHXo_ SV*);
2982typedef I32 (*SVCOMPARE_t) (pTHXo_ SV*, SV*);
2983typedef void (*XSINIT_t) (pTHXo);
2984typedef void (*ATEXIT_t) (pTHXo_ void*);
2985typedef void (*XSUBADDR_t) (pTHXo_ CV *);
15e52e56 2986
22239a37
NIS
2987/* Set up PERLVAR macros for populating structs */
2988#define PERLVAR(var,type) type var;
51371543 2989#define PERLVARA(var,n,type) type var[n];
22239a37 2990#define PERLVARI(var,type,init) type var;
3fe35a81 2991#define PERLVARIC(var,type,init) type var;
22239a37 2992
58a50f62
GS
2993/* Interpreter exitlist entry */
2994typedef struct exitlistentry {
0cb96387 2995 void (*fn) (pTHXo_ void*);
58a50f62
GS
2996 void *ptr;
2997} PerlExitListEntry;
2998
22239a37
NIS
2999#ifdef PERL_GLOBAL_STRUCT
3000struct perl_vars {
7766f137 3001# include "perlvars.h"
22239a37
NIS
3002};
3003
7766f137 3004# ifdef PERL_CORE
533c011a
NIS
3005EXT struct perl_vars PL_Vars;
3006EXT struct perl_vars *PL_VarsPtr INIT(&PL_Vars);
7766f137
GS
3007# else /* PERL_CORE */
3008# if !defined(__GNUC__) || !defined(WIN32)
22239a37 3009EXT
7766f137 3010# endif /* WIN32 */
533c011a 3011struct perl_vars *PL_VarsPtr;
7766f137
GS
3012# define PL_Vars (*((PL_VarsPtr) \
3013 ? PL_VarsPtr : (PL_VarsPtr = Perl_GetVars(aTHX))))
3014# endif /* PERL_CORE */
22239a37
NIS
3015#endif /* PERL_GLOBAL_STRUCT */
3016
7766f137 3017#if defined(MULTIPLICITY) || defined(PERL_OBJECT)
d460ef45 3018/* If we have multiple interpreters define a struct
d4cce5f1 3019 holding variables which must be per-interpreter
d460ef45 3020 If we don't have threads anything that would have
d4cce5f1
NIS
3021 be per-thread is per-interpreter.
3022*/
3023
79072805 3024struct interpreter {
7766f137
GS
3025# ifndef USE_THREADS
3026# include "thrdvar.h"
3027# endif
3028# include "intrpvar.h"
3029/*
3030 * The following is a buffer where new variables must
3031 * be defined to maintain binary compatibility with PERL_OBJECT
3032 */
3033PERLVARA(object_compatibility,30, char)
49f531da 3034};
d4cce5f1 3035
79072805 3036#else
49f531da
NIS
3037struct interpreter {
3038 char broiled;
3039};
7766f137 3040#endif /* MULTIPLICITY || PERL_OBJECT */
79072805 3041
d4cce5f1
NIS
3042#ifdef USE_THREADS
3043/* If we have threads define a struct with all the variables
3044 * that have to be per-thread
49f531da 3045 */
8023c3ce 3046
79072805 3047
49f531da 3048struct perl_thread {
49f531da 3049#include "thrdvar.h"
79072805 3050};
d4cce5f1 3051
22fae026
TM
3052typedef struct perl_thread *Thread;
3053
3054#else
3055typedef void *Thread;
22239a37
NIS
3056#endif
3057
3058/* Done with PERLVAR macros for now ... */
d4cce5f1 3059#undef PERLVAR
51371543 3060#undef PERLVARA
d4cce5f1 3061#undef PERLVARI
3fe35a81 3062#undef PERLVARIC
79072805 3063
22239a37 3064#include "thread.h"
79072805 3065#include "pp.h"
864dbfa3
GS
3066
3067#ifndef PERL_CALLCONV
3068# define PERL_CALLCONV
d460ef45 3069#endif
864dbfa3 3070
65f19062
GS
3071#ifndef NEXT30_NO_ATTRIBUTE
3072# ifndef HASATTRIBUTE /* disable GNU-cc attribute checking? */
3073# ifdef __attribute__ /* Avoid possible redefinition errors */
3074# undef __attribute__
3075# endif
3076# define __attribute__(attr)
3077# endif
3078#endif
3079
0cb96387 3080#ifdef PERL_OBJECT
7766f137 3081# define PERL_DECL_PROT
0cb96387 3082#endif
864dbfa3 3083
0cb96387
GS
3084#undef PERL_CKDEF
3085#undef PERL_PPDEF
3086#define PERL_CKDEF(s) OP *s (pTHX_ OP *o);
3087#define PERL_PPDEF(s) OP *s (pTHX);
0cb96387 3088
7766f137 3089#include "proto.h"
864dbfa3 3090
0cb96387 3091#ifdef PERL_OBJECT
7766f137 3092# undef PERL_DECL_PROT
0cb96387
GS
3093#endif
3094
864dbfa3 3095#ifndef PERL_OBJECT
0cb96387
GS
3096/* this has structure inits, so it cannot be included before here */
3097# include "opcode.h"
864dbfa3
GS
3098#endif
3099
d4cce5f1
NIS
3100/* The following must follow proto.h as #defines mess up syntax */
3101
22c35a8c
GS
3102#if !defined(PERL_FOR_X2P)
3103# include "embedvar.h"
3104#endif
d4cce5f1 3105
d460ef45 3106/* Now include all the 'global' variables
d4cce5f1 3107 * If we don't have threads or multiple interpreters
d460ef45 3108 * these include variables that would have been their struct-s
d4cce5f1 3109 */
d460ef45 3110
533c011a 3111#define PERLVAR(var,type) EXT type PL_##var;
51371543 3112#define PERLVARA(var,n,type) EXT type PL_##var[n];
533c011a
NIS
3113#define PERLVARI(var,type,init) EXT type PL_##var INIT(init);
3114#define PERLVARIC(var,type,init) EXTCONST type PL_##var INIT(init);
d4cce5f1 3115
7766f137
GS
3116#if !defined(MULTIPLICITY) && !defined(PERL_OBJECT)
3117START_EXTERN_C
066ef5b5
GS
3118# include "intrpvar.h"
3119# ifndef USE_THREADS
3120# include "thrdvar.h"
3121# endif
7766f137 3122END_EXTERN_C
22239a37
NIS
3123#endif
3124
76e3520e 3125#ifdef PERL_OBJECT
22c35a8c 3126# include "embed.h"
76e3520e 3127
22c35a8c
GS
3128# ifdef DOINIT
3129# include "INTERN.h"
3130# else
3131# include "EXTERN.h"
3132# endif
3133
3134/* this has structure inits, so it cannot be included before here */
3135# include "opcode.h"
3136
d18c6117
GS
3137#else
3138# if defined(WIN32)
3139# include "embed.h"
3140# endif
22c35a8c 3141#endif /* PERL_OBJECT */
22239a37 3142
c5be433b
GS
3143#ifndef PERL_GLOBAL_STRUCT
3144START_EXTERN_C
3145
3146# include "perlvars.h"
3147
3148END_EXTERN_C
3149#endif
3150
d4cce5f1 3151#undef PERLVAR
51371543 3152#undef PERLVARA
d4cce5f1 3153#undef PERLVARI
0f3f18a6 3154#undef PERLVARIC
79072805 3155
73c4f7a1
GS
3156START_EXTERN_C
3157
79072805 3158#ifdef DOINIT
bbce6d69 3159
2b260de0
GS
3160EXT MGVTBL PL_vtbl_sv = {MEMBER_TO_FPTR(Perl_magic_get),
3161 MEMBER_TO_FPTR(Perl_magic_set),
3162 MEMBER_TO_FPTR(Perl_magic_len),
463ee0b2 3163 0, 0};
2b260de0
GS
3164EXT MGVTBL PL_vtbl_env = {0, MEMBER_TO_FPTR(Perl_magic_set_all_env),
3165 0, MEMBER_TO_FPTR(Perl_magic_clear_all_env),
66b1d557 3166 0};
2b260de0
GS
3167EXT MGVTBL PL_vtbl_envelem = {0, MEMBER_TO_FPTR(Perl_magic_setenv),
3168 0, MEMBER_TO_FPTR(Perl_magic_clearenv),
85e6fe83 3169 0};
22c35a8c 3170EXT MGVTBL PL_vtbl_sig = {0, 0, 0, 0, 0};
64ca3a65
JH
3171#ifdef PERL_MICRO
3172EXT MGVTBL PL_vtbl_sigelem = {0, 0, 0, 0, 0};
3173#else
2b260de0
GS
3174EXT MGVTBL PL_vtbl_sigelem = {MEMBER_TO_FPTR(Perl_magic_getsig),
3175 MEMBER_TO_FPTR(Perl_magic_setsig),
3176 0, MEMBER_TO_FPTR(Perl_magic_clearsig),
0c30d9ec 3177 0};
64ca3a65 3178#endif
2b260de0 3179EXT MGVTBL PL_vtbl_pack = {0, 0, MEMBER_TO_FPTR(Perl_magic_sizepack), MEMBER_TO_FPTR(Perl_magic_wipepack),
a0d0e21e 3180 0};
2b260de0
GS
3181EXT MGVTBL PL_vtbl_packelem = {MEMBER_TO_FPTR(Perl_magic_getpack),
3182 MEMBER_TO_FPTR(Perl_magic_setpack),
3183 0, MEMBER_TO_FPTR(Perl_magic_clearpack),
463ee0b2 3184 0};
2b260de0 3185EXT MGVTBL PL_vtbl_dbline = {0, MEMBER_TO_FPTR(Perl_magic_setdbline),
463ee0b2 3186 0, 0, 0};
2b260de0
GS
3187EXT MGVTBL PL_vtbl_isa = {0, MEMBER_TO_FPTR(Perl_magic_setisa),
3188 0, MEMBER_TO_FPTR(Perl_magic_setisa),
fb73857a 3189 0};
2b260de0 3190EXT MGVTBL PL_vtbl_isaelem = {0, MEMBER_TO_FPTR(Perl_magic_setisa),
463ee0b2 3191 0, 0, 0};
2b260de0
GS
3192EXT MGVTBL PL_vtbl_arylen = {MEMBER_TO_FPTR(Perl_magic_getarylen),
3193 MEMBER_TO_FPTR(Perl_magic_setarylen),
463ee0b2 3194 0, 0, 0};
2b260de0
GS
3195EXT MGVTBL PL_vtbl_glob = {MEMBER_TO_FPTR(Perl_magic_getglob),
3196 MEMBER_TO_FPTR(Perl_magic_setglob),
463ee0b2 3197 0, 0, 0};
2b260de0 3198EXT MGVTBL PL_vtbl_mglob = {0, MEMBER_TO_FPTR(Perl_magic_setmglob),
463ee0b2 3199 0, 0, 0};
2b260de0
GS
3200EXT MGVTBL PL_vtbl_nkeys = {MEMBER_TO_FPTR(Perl_magic_getnkeys),
3201 MEMBER_TO_FPTR(Perl_magic_setnkeys),
99abf803 3202 0, 0, 0};
2b260de0 3203EXT MGVTBL PL_vtbl_taint = {MEMBER_TO_FPTR(Perl_magic_gettaint),MEMBER_TO_FPTR(Perl_magic_settaint),
463ee0b2 3204 0, 0, 0};
2b260de0 3205EXT MGVTBL PL_vtbl_substr = {MEMBER_TO_FPTR(Perl_magic_getsubstr), MEMBER_TO_FPTR(Perl_magic_setsubstr),
463ee0b2 3206 0, 0, 0};
2b260de0
GS
3207EXT MGVTBL PL_vtbl_vec = {MEMBER_TO_FPTR(Perl_magic_getvec),
3208 MEMBER_TO_FPTR(Perl_magic_setvec),
463ee0b2 3209 0, 0, 0};
2b260de0
GS
3210EXT MGVTBL PL_vtbl_pos = {MEMBER_TO_FPTR(Perl_magic_getpos),
3211 MEMBER_TO_FPTR(Perl_magic_setpos),
a0d0e21e 3212 0, 0, 0};
2b260de0 3213EXT MGVTBL PL_vtbl_bm = {0, MEMBER_TO_FPTR(Perl_magic_setbm),
463ee0b2 3214 0, 0, 0};
2b260de0 3215EXT MGVTBL PL_vtbl_fm = {0, MEMBER_TO_FPTR(Perl_magic_setfm),
55497cff 3216 0, 0, 0};
2b260de0
GS
3217EXT MGVTBL PL_vtbl_uvar = {MEMBER_TO_FPTR(Perl_magic_getuvar),
3218 MEMBER_TO_FPTR(Perl_magic_setuvar),
463ee0b2 3219 0, 0, 0};
f93b4edd 3220#ifdef USE_THREADS
2b260de0 3221EXT MGVTBL PL_vtbl_mutex = {0, 0, 0, 0, MEMBER_TO_FPTR(Perl_magic_mutexfree)};
f93b4edd 3222#endif /* USE_THREADS */
2b260de0 3223EXT MGVTBL PL_vtbl_defelem = {MEMBER_TO_FPTR(Perl_magic_getdefelem),MEMBER_TO_FPTR(Perl_magic_setdefelem),
02270b4e 3224 0, 0, 0};
a0d0e21e 3225
2b260de0
GS
3226EXT MGVTBL PL_vtbl_regexp = {0,0,0,0, MEMBER_TO_FPTR(Perl_magic_freeregexp)};
3227EXT MGVTBL PL_vtbl_regdata = {0, 0, MEMBER_TO_FPTR(Perl_magic_regdata_cnt), 0, 0};
a29d06ed
MG
3228EXT MGVTBL PL_vtbl_regdatum = {MEMBER_TO_FPTR(Perl_magic_regdatum_get),
3229 MEMBER_TO_FPTR(Perl_magic_regdatum_set), 0, 0, 0};
c277df42 3230
36477c24 3231#ifdef USE_LOCALE_COLLATE
22c35a8c 3232EXT MGVTBL PL_vtbl_collxfrm = {0,
2b260de0 3233 MEMBER_TO_FPTR(Perl_magic_setcollxfrm),
bbce6d69 3234 0, 0, 0};
3235#endif
a0d0e21e 3236
2b260de0
GS
3237EXT MGVTBL PL_vtbl_amagic = {0, MEMBER_TO_FPTR(Perl_magic_setamagic),
3238 0, 0, MEMBER_TO_FPTR(Perl_magic_setamagic)};
3239EXT MGVTBL PL_vtbl_amagicelem = {0, MEMBER_TO_FPTR(Perl_magic_setamagic),
3240 0, 0, MEMBER_TO_FPTR(Perl_magic_setamagic)};
a0d0e21e 3241
810b8aa5 3242EXT MGVTBL PL_vtbl_backref = {0, 0,
2b260de0 3243 0, 0, MEMBER_TO_FPTR(Perl_magic_killbackrefs)};
810b8aa5 3244
d460ef45
NIS
3245EXT MGVTBL PL_vtbl_ovrld = {0, 0,
3246 0, 0, MEMBER_TO_FPTR(Perl_magic_freeovrld)};
3247
bbce6d69 3248#else /* !DOINIT */
3249
22c35a8c
GS
3250EXT MGVTBL PL_vtbl_sv;
3251EXT MGVTBL PL_vtbl_env;
3252EXT MGVTBL PL_vtbl_envelem;
3253EXT MGVTBL PL_vtbl_sig;
3254EXT MGVTBL PL_vtbl_sigelem;
3255EXT MGVTBL PL_vtbl_pack;
3256EXT MGVTBL PL_vtbl_packelem;
3257EXT MGVTBL PL_vtbl_dbline;
3258EXT MGVTBL PL_vtbl_isa;
3259EXT MGVTBL PL_vtbl_isaelem;
3260EXT MGVTBL PL_vtbl_arylen;
3261EXT MGVTBL PL_vtbl_glob;
3262EXT MGVTBL PL_vtbl_mglob;
3263EXT MGVTBL PL_vtbl_nkeys;
3264EXT MGVTBL PL_vtbl_taint;
3265EXT MGVTBL PL_vtbl_substr;
3266EXT MGVTBL PL_vtbl_vec;
3267EXT MGVTBL PL_vtbl_pos;
3268EXT MGVTBL PL_vtbl_bm;
3269EXT MGVTBL PL_vtbl_fm;
3270EXT MGVTBL PL_vtbl_uvar;
d460ef45 3271EXT MGVTBL PL_vtbl_ovrld;
a0d0e21e 3272
f93b4edd 3273#ifdef USE_THREADS
22c35a8c 3274EXT MGVTBL PL_vtbl_mutex;
f93b4edd
MB
3275#endif /* USE_THREADS */
3276
22c35a8c
GS
3277EXT MGVTBL PL_vtbl_defelem;
3278EXT MGVTBL PL_vtbl_regexp;
3279EXT MGVTBL PL_vtbl_regdata;
3280EXT MGVTBL PL_vtbl_regdatum;
a0d0e21e 3281
36477c24 3282#ifdef USE_LOCALE_COLLATE
22c35a8c 3283EXT MGVTBL PL_vtbl_collxfrm;
bbce6d69 3284#endif
a0d0e21e 3285
22c35a8c
GS
3286EXT MGVTBL PL_vtbl_amagic;
3287EXT MGVTBL PL_vtbl_amagicelem;
a0d0e21e 3288
810b8aa5
GS
3289EXT MGVTBL PL_vtbl_backref;
3290
bbce6d69 3291#endif /* !DOINIT */
85e6fe83 3292
f5284f61
IZ
3293enum {
3294 fallback_amg, abs_amg,
3295 bool__amg, nomethod_amg,
3296 string_amg, numer_amg,
3297 add_amg, add_ass_amg,
3298 subtr_amg, subtr_ass_amg,
3299 mult_amg, mult_ass_amg,
3300 div_amg, div_ass_amg,
3301 modulo_amg, modulo_ass_amg,
3302 pow_amg, pow_ass_amg,
3303 lshift_amg, lshift_ass_amg,
3304 rshift_amg, rshift_ass_amg,
3305 band_amg, band_ass_amg,
3306 bor_amg, bor_ass_amg,
3307 bxor_amg, bxor_ass_amg,
3308 lt_amg, le_amg,
3309 gt_amg, ge_amg,
3310 eq_amg, ne_amg,
3311 ncmp_amg, scmp_amg,
3312 slt_amg, sle_amg,
3313 sgt_amg, sge_amg,
3314 seq_amg, sne_amg,
3315 not_amg, compl_amg,
3316 inc_amg, dec_amg,
3317 atan2_amg, cos_amg,
3318 sin_amg, exp_amg,
3319 log_amg, sqrt_amg,
3320 repeat_amg, repeat_ass_amg,
3321 concat_amg, concat_ass_amg,
3322 copy_amg, neg_amg,
3323 to_sv_amg, to_av_amg,
3324 to_hv_amg, to_gv_amg,
d460ef45 3325 to_cv_amg, iter_amg,
f216259d
IZ
3326 int_amg, DESTROY_amg,
3327 max_amg_code
64a0062a 3328 /* Do not leave a trailing comma here. C9X allows it, C89 doesn't. */
f5284f61
IZ
3329};
3330
3331#define NofAMmeth max_amg_code
89ffc314 3332#define AMG_id2name(id) ((char*)PL_AMG_names[id]+1)
f5284f61 3333
a0d0e21e 3334#ifdef DOINIT
22c35a8c 3335EXTCONST char * PL_AMG_names[NofAMmeth] = {
89ffc314
IZ
3336 /* Names kept in the symbol table. fallback => "()", the rest has
3337 "(" prepended. The only other place in perl which knows about
3338 this convention is AMG_id2name (used for debugging output and
3339 'nomethod' only), the only other place which has it hardwired is
3340 overload.pm. */
3341 "()", "(abs", /* "fallback" should be the first. */
3342 "(bool", "(nomethod",
3343 "(\"\"", "(0+",
3344 "(+", "(+=",
3345 "(-", "(-=",
3346 "(*", "(*=",
3347 "(/", "(/=",
3348 "(%", "(%=",
3349 "(**", "(**=",
3350 "(<<", "(<<=",
3351 "(>>", "(>>=",
3352 "(&", "(&=",
3353 "(|", "(|=",
3354 "(^", "(^=",
3355 "(<", "(<=",
3356 "(>", "(>=",
3357 "(==", "(!=",
3358 "(<=>", "(cmp",
3359 "(lt", "(le",
3360 "(gt", "(ge",
3361 "(eq", "(ne",
3362 "(!", "(~",
3363 "(++", "(--",
3364 "(atan2", "(cos",
3365 "(sin", "(exp",
3366 "(log", "(sqrt",
3367 "(x", "(x=",
3368 "(.", "(.=",
3369 "(=", "(neg",
3370 "(${}", "(@{}",
3371 "(%{}", "(*{}",
3372 "(&{}", "(<>",
f216259d 3373 "(int", "DESTROY",
a0d0e21e
LW
3374};
3375#else
22c35a8c 3376EXTCONST char * PL_AMG_names[NofAMmeth];
a0d0e21e
LW
3377#endif /* def INITAMAGIC */
3378
73c4f7a1
GS
3379END_EXTERN_C
3380
a6006777 3381struct am_table {
a0d0e21e
LW
3382 long was_ok_sub;
3383 long was_ok_am;
a6006777 3384 U32 flags;
3385 CV* table[NofAMmeth];
a0d0e21e
LW
3386 long fallback;
3387};
a6006777 3388struct am_table_short {
3389 long was_ok_sub;
3390 long was_ok_am;
3391 U32 flags;
3392};
a0d0e21e 3393typedef struct am_table AMT;
a6006777 3394typedef struct am_table_short AMTS;
a0d0e21e
LW
3395
3396#define AMGfallNEVER 1
3397#define AMGfallNO 2
3398#define AMGfallYES 3
3399
a6006777 3400#define AMTf_AMAGIC 1
32251b26 3401#define AMTf_OVERLOADED 2
a6006777 3402#define AMT_AMAGIC(amt) ((amt)->flags & AMTf_AMAGIC)
3403#define AMT_AMAGIC_on(amt) ((amt)->flags |= AMTf_AMAGIC)
3404#define AMT_AMAGIC_off(amt) ((amt)->flags &= ~AMTf_AMAGIC)
32251b26
IZ
3405#define AMT_OVERLOADED(amt) ((amt)->flags & AMTf_OVERLOADED)
3406#define AMT_OVERLOADED_on(amt) ((amt)->flags |= AMTf_OVERLOADED)
3407#define AMT_OVERLOADED_off(amt) ((amt)->flags &= ~AMTf_OVERLOADED)
a6006777 3408
32251b26 3409#define StashHANDLER(stash,meth) gv_handler((stash),CAT2(meth,_amg))
c0315cdf
JH
3410
3411/*
3412 * some compilers like to redefine cos et alia as faster
3413 * (and less accurate?) versions called F_cos et cetera (Quidquid
3414 * latine dictum sit, altum viditur.) This trick collides with
3415 * the Perl overloading (amg). The following #defines fool both.
3416 */
3417
3418#ifdef _FASTMATH
3419# ifdef atan2
3420# define F_atan2_amg atan2_amg
3421# endif
3422# ifdef cos
3423# define F_cos_amg cos_amg
3424# endif
3425# ifdef exp
3426# define F_exp_amg exp_amg
3427# endif
3428# ifdef log
3429# define F_log_amg log_amg
3430# endif
3431# ifdef pow
3432# define F_pow_amg pow_amg
3433# endif
3434# ifdef sin
3435# define F_sin_amg sin_amg
3436# endif
3437# ifdef sqrt
3438# define F_sqrt_amg sqrt_amg
3439# endif
3440#endif /* _FASTMATH */
3441
83ee9e09
GS
3442#define PERLDB_ALL (PERLDBf_SUB | PERLDBf_LINE | \
3443 PERLDBf_NOOPT | PERLDBf_INTER | \
3444 PERLDBf_SUBLINE| PERLDBf_SINGLE| \
3445 PERLDBf_NAMEEVAL| PERLDBf_NAMEANON)
3446 /* No _NONAME, _GOTO */
3447#define PERLDBf_SUB 0x01 /* Debug sub enter/exit */
3448#define PERLDBf_LINE 0x02 /* Keep line # */
3449#define PERLDBf_NOOPT 0x04 /* Switch off optimizations */
3450#define PERLDBf_INTER 0x08 /* Preserve more data for
3451 later inspections */
3452#define PERLDBf_SUBLINE 0x10 /* Keep subr source lines */
3453#define PERLDBf_SINGLE 0x20 /* Start with single-step on */
3454#define PERLDBf_NONAME 0x40 /* For _SUB: no name of the subr */
3455#define PERLDBf_GOTO 0x80 /* Report goto: call DB::goto */
3456#define PERLDBf_NAMEEVAL 0x100 /* Informative names for evals */
3457#define PERLDBf_NAMEANON 0x200 /* Informative names for anon subs */
84902520 3458
3280af22
NIS
3459#define PERLDB_SUB (PL_perldb && (PL_perldb & PERLDBf_SUB))
3460#define PERLDB_LINE (PL_perldb && (PL_perldb & PERLDBf_LINE))
3461#define PERLDB_NOOPT (PL_perldb && (PL_perldb & PERLDBf_NOOPT))
3462#define PERLDB_INTER (PL_perldb && (PL_perldb & PERLDBf_INTER))
3463#define PERLDB_SUBLINE (PL_perldb && (PL_perldb & PERLDBf_SUBLINE))
3464#define PERLDB_SINGLE (PL_perldb && (PL_perldb & PERLDBf_SINGLE))
3465#define PERLDB_SUB_NN (PL_perldb && (PL_perldb & (PERLDBf_NONAME)))
3466#define PERLDB_GOTO (PL_perldb && (PL_perldb & PERLDBf_GOTO))
83ee9e09
GS
3467#define PERLDB_NAMEEVAL (PL_perldb && (PL_perldb & PERLDBf_NAMEEVAL))
3468#define PERLDB_NAMEANON (PL_perldb && (PL_perldb & PERLDBf_NAMEANON))
84902520 3469
bbce6d69 3470
36477c24 3471#ifdef USE_LOCALE_NUMERIC
bbce6d69 3472
36477c24 3473#define SET_NUMERIC_STANDARD() \
ff4fed7c 3474 set_numeric_standard();
36477c24 3475
3476#define SET_NUMERIC_LOCAL() \
ff4fed7c 3477 set_numeric_local();
bbce6d69 3478
2de3dbcc
JH
3479#define IN_LOCALE_RUNTIME (PL_curcop->op_private & HINT_LOCALE)
3480#define IN_LOCALE_COMPILETIME (PL_hints & HINT_LOCALE)
3481
3482#define IN_LOCALE \
3483 (PL_curcop == &PL_compiling ? IN_LOCALE_COMPILETIME : IN_LOCALE_RUNTIME)
3484
f93f4e46 3485#define STORE_NUMERIC_LOCAL_SET_STANDARD() \
2de3dbcc 3486 bool was_local = PL_numeric_local && IN_LOCALE; \
ff4fed7c 3487 if (was_local) SET_NUMERIC_STANDARD();
f93f4e46
CK
3488
3489#define STORE_NUMERIC_STANDARD_SET_LOCAL() \
2de3dbcc 3490 bool was_standard = PL_numeric_standard && IN_LOCALE; \
ff4fed7c 3491 if (was_standard) SET_NUMERIC_LOCAL();
f93f4e46
CK
3492
3493#define RESTORE_NUMERIC_LOCAL() \
3494 if (was_local) SET_NUMERIC_LOCAL();
3495
3496#define RESTORE_NUMERIC_STANDARD() \
3497 if (was_standard) SET_NUMERIC_STANDARD();
3498
5b877257 3499#define Atof my_atof
097ee67d 3500
36477c24 3501#else /* !USE_LOCALE_NUMERIC */
bbce6d69 3502
097ee67d
JH
3503#define SET_NUMERIC_STANDARD() /**/
3504#define SET_NUMERIC_LOCAL() /**/
5e931b6b 3505#define IS_NUMERIC_RADIX(a, b) (0)
f93f4e46
CK
3506#define STORE_NUMERIC_LOCAL_SET_STANDARD() /**/
3507#define STORE_NUMERIC_STANDARD_SET_LOCAL() /**/
097ee67d
JH
3508#define RESTORE_NUMERIC_LOCAL() /**/
3509#define RESTORE_NUMERIC_STANDARD() /**/
65202027 3510#define Atof Perl_atof
bbce6d69 3511
36477c24 3512#endif /* !USE_LOCALE_NUMERIC */
a0d0e21e 3513
079290de 3514#if !defined(Strtol) && defined(USE_64_BIT_INT) && defined(IV_IS_QUAD) && QUADKIND == QUAD_IS_LONG_LONG
ec7b9793
JH
3515# ifdef __hpux
3516# define strtoll __strtoll /* secret handshake */
3517# endif
079290de
GS
3518# if !defined(Strtol) && defined(HAS_STRTOLL)
3519# define Strtol strtoll
ad551343 3520# endif
28e5dec8
JH
3521# if !defined(Strtol) && defined(HAS_STRTOQ)
3522# define Strtol strtoq
3523# endif
ff935051 3524/* is there atoq() anywhere? */
15b99d39 3525#endif
079290de
GS
3526#if !defined(Strtol) && defined(HAS_STRTOL)
3527# define Strtol strtol
3528#endif
3529#ifndef Atol
3530/* It would be more fashionable to use Strtol() to define atol()
3531 * (as is done for Atoul(), see below) but for backward compatibility
3532 * we just assume atol(). */
76b882ba
JH
3533# if defined(USE_64_BIT_INT) && defined(IV_IS_QUAD) && QUADKIND == QUAD_IS_LONG_LONG && defined(HAS_ATOLL)
3534# define Atol atoll
3535# else
3536# define Atol atol
3537# endif
cf2093f6
JH
3538#endif
3539
55eb892c 3540#if !defined(Strtoul) && defined(USE_64_BIT_INT) && defined(UV_IS_QUAD) && QUADKIND == QUAD_IS_LONG_LONG
ec7b9793
JH
3541# ifdef __hpux
3542# define strtoull __strtoull /* secret handshake */
3543# endif
ad551343 3544# if !defined(Strtoul) && defined(HAS_STRTOULL)
388d3c03 3545# define Strtoul strtoull
15b99d39 3546# endif
079290de
GS
3547# if !defined(Strtoul) && defined(HAS_STRTOUQ)
3548# define Strtoul strtouq
3549# endif
76d49b1c 3550/* is there atouq() anywhere? */
ad551343 3551#endif
079290de
GS
3552#if !defined(Strtoul) && defined(HAS_STRTOUL)
3553# define Strtoul strtoul
cf2093f6 3554#endif
079290de
GS
3555#ifndef Atoul
3556# define Atoul(s) Strtoul(s, (char **)NULL, 10)
55eb892c 3557#endif
cf2093f6 3558
e5c9fcd0 3559#if !defined(PERLIO_IS_STDIO) && defined(HASATTRIBUTE)
d460ef45
NIS
3560/*
3561 * Now we have __attribute__ out of the way
3562 * Remap printf
760ac839 3563 */
39455587 3564#undef printf
c745e42c
NIS
3565#ifdef __GNUC__
3566#define printf(fmt,args...) PerlIO_stdoutf(fmt,##args)
3567#else
760ac839
LW
3568#define printf PerlIO_stdoutf
3569#endif
c745e42c 3570#endif
760ac839 3571
06d86050
GS
3572/* if these never got defined, they need defaults */
3573#ifndef PERL_SET_CONTEXT
3574# define PERL_SET_CONTEXT(i) PERL_SET_INTERP(i)
3575#endif
3576
3577#ifndef PERL_GET_CONTEXT
3578# define PERL_GET_CONTEXT PERL_GET_INTERP
3579#endif
3580
3581#ifndef PERL_GET_THX
3582# define PERL_GET_THX ((void*)NULL)
3583#endif
3584
3585#ifndef PERL_SET_THX
3586# define PERL_SET_THX(t) NOOP
3587#endif
3588
a868473f
NIS
3589#ifndef PERL_SCRIPT_MODE
3590#define PERL_SCRIPT_MODE "r"
3591#endif
3592
fba3b22e 3593/*
da927450
JH
3594 * Some operating systems are stingy with stack allocation,
3595 * so perl may have to guard against stack overflow.
3596 */
3597#ifndef PERL_STACK_OVERFLOW_CHECK
c2af87cb 3598#define PERL_STACK_OVERFLOW_CHECK() NOOP
da927450
JH
3599#endif
3600
3601/*
3602 * Some nonpreemptive operating systems find it convenient to
3603 * check for asynchronous conditions after each op execution.
3604 * Keep this check simple, or it may slow down execution
3605 * massively.
3606 */
ce08f86c 3607
1d615522
JH
3608#ifndef PERL_MICRO
3609# ifndef PERL_OLD_SIGNALS
2986a63f
JH
3610# ifndef PERL_ASYNC_CHECK
3611# define PERL_ASYNC_CHECK() if (PL_sig_pending) despatch_signals()
3612# endif
1d615522 3613# endif
ce08f86c
NIS
3614#endif
3615
da927450 3616#ifndef PERL_ASYNC_CHECK
1d615522 3617# define PERL_ASYNC_CHECK() NOOP
da927450
JH
3618#endif
3619
3620/*
3621 * On some operating systems, a memory allocation may succeed,
3622 * but put the process too close to the system's comfort limit.
3623 * In this case, PERL_ALLOC_CHECK frees the pointer and sets
3624 * it to NULL.
3625 */
3626#ifndef PERL_ALLOC_CHECK
c2af87cb 3627#define PERL_ALLOC_CHECK(p) NOOP
da927450
JH
3628#endif
3629
3630/*
fba3b22e
MB
3631 * nice_chunk and nice_chunk size need to be set
3632 * and queried under the protection of sv_mutex
3633 */
30ad99e7
MJD
3634#define offer_nice_chunk(chunk, chunk_size) STMT_START { \
3635 void *new_chunk; \
3636 U32 new_chunk_size; \
3637 LOCK_SV_MUTEX; \
3638 new_chunk = (void *)(chunk); \
3639 new_chunk_size = (chunk_size); \
3640 if (new_chunk_size > PL_nice_chunk_size) { \
3641 if (PL_nice_chunk) Safefree(PL_nice_chunk); \
3642 PL_nice_chunk = new_chunk; \
3643 PL_nice_chunk_size = new_chunk_size; \
3644 } else { \
3645 Safefree(chunk); \
3646 } \
3647 UNLOCK_SV_MUTEX; \
3648 } STMT_END
fba3b22e 3649
bd89102f
AD
3650#ifdef HAS_SEM
3651# include <sys/ipc.h>
3652# include <sys/sem.h>
3653# ifndef HAS_UNION_SEMUN /* Provide the union semun. */
3654 union semun {
dbba660d
TC
3655 int val;
3656 struct semid_ds *buf;
3657 unsigned short *array;
bd89102f
AD
3658 };
3659# endif
3660# ifdef USE_SEMCTL_SEMUN
dbba660d
TC
3661# ifdef IRIX32_SEMUN_BROKEN_BY_GCC
3662 union gccbug_semun {
3663 int val;
3664 struct semid_ds *buf;
3665 unsigned short *array;
3666 char __dummy[5];
3667 };
3668# define semun gccbug_semun
3669# endif
bd89102f
AD
3670# define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun)
3671# else
3672# ifdef USE_SEMCTL_SEMID_DS
e6f0bdd6
GS
3673# ifdef EXTRA_F_IN_SEMUN_BUF
3674# define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun.buff)
3675# else
3676# define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun.buf)
3677# endif
bd89102f
AD
3678# endif
3679# endif
bd89102f 3680#endif
49f531da 3681
9a34ef1d
GS
3682#ifdef I_FCNTL
3683# include <fcntl.h>
9a34ef1d
GS
3684#endif
3685
3686#ifdef I_SYS_FILE
3687# include <sys/file.h>
3688#endif
3689
fa0a29af 3690#if defined(HAS_FLOCK) && !defined(HAS_FLOCK_PROTO)
2ef53570
JH
3691int flock(int fd, int op);
3692#endif
3693
fe52b3b7
GS
3694#ifndef O_RDONLY
3695/* Assume UNIX defaults */
3696# define O_RDONLY 0000
3697# define O_WRONLY 0001
3698# define O_RDWR 0002
3699# define O_CREAT 0100
3700#endif
9a34ef1d 3701
16fe6d59
GS
3702#ifndef O_BINARY
3703# define O_BINARY 0
3704#endif
3705
3706#ifndef O_TEXT
3707# define O_TEXT 0
3708#endif
3709
104d25b7
JH
3710#ifdef IAMSUID
3711
3712#ifdef I_SYS_STATVFS
9f982a77
IG
3713# if defined(PERL_SCO) && !defined(_SVID3)
3714# define _SVID3
3715# endif
32b3cf08
JH
3716# include <sys/statvfs.h> /* for f?statvfs() */
3717#endif
3718#ifdef I_SYS_MOUNT
3719# include <sys/mount.h> /* for *BSD f?statfs() */
3720#endif
3721#ifdef I_MNTENT
3722# include <mntent.h> /* for getmntent() */
104d25b7 3723#endif
0545a864
JH
3724#ifdef I_SYS_STATFS
3725# include <sys/statfs.h> /* for some statfs() */
3726#endif
3727#ifdef I_SYS_VFS
8d9e1a19
GS
3728# ifdef __sgi
3729# define sv IRIX_sv /* kludge: IRIX has an sv of its own */
3730# endif
3731# include <sys/vfs.h> /* for some statfs() */
3732# ifdef __sgi
3733# undef IRIX_sv
3734# endif
0545a864
JH
3735#endif
3736#ifdef I_USTAT
3737# include <ustat.h> /* for ustat() */
3738#endif
3739
3740#if !defined(PERL_MOUNT_NOSUID) && defined(MOUNT_NOSUID)
3741# define PERL_MOUNT_NOSUID MOUNT_NOSUID
3742#endif
3743#if !defined(PERL_MOUNT_NOSUID) && defined(MNT_NOSUID)
3744# define PERL_MOUNT_NOSUID MNT_NOSUID
3745#endif
3746#if !defined(PERL_MOUNT_NOSUID) && defined(MS_NOSUID)
3747# define PERL_MOUNT_NOSUID MS_NOSUID
3748#endif
3749#if !defined(PERL_MOUNT_NOSUID) && defined(M_NOSUID)
3750# define PERL_MOUNT_NOSUID M_NOSUID
3751#endif
104d25b7
JH
3752
3753#endif /* IAMSUID */
3754
4bc88a62
PS
3755#ifdef I_LIBUTIL
3756# include <libutil.h> /* setproctitle() in some FreeBSDs */
3757#endif
3758
b4748376
NIS
3759#ifndef EXEC_ARGV_CAST
3760#define EXEC_ARGV_CAST(x) x
3761#endif
3762
dd5dc04f
JH
3763#define IS_NUMBER_IN_UV 0x01 /* number within UV range (maybe not
3764 int). value returned in pointed-
3765 to UV */
3766#define IS_NUMBER_GREATER_THAN_UV_MAX 0x02 /* pointed to UV undefined */
3767#define IS_NUMBER_NOT_INT 0x04 /* saw . or E notation */
3768#define IS_NUMBER_NEG 0x08 /* leading minus sign */
3769#define IS_NUMBER_INFINITY 0x10 /* this is big */
3770
3771#define GROK_NUMERIC_RADIX(sp, send) grok_numeric_radix(sp, send)
3772
2c4f7f0e
DM
3773/* to let user control profiling */
3774#ifdef PERL_GPROF_CONTROL
3775extern void moncontrol(int);
3776#define PERL_GPROF_MONCONTROL(x) moncontrol(x)
3777#else
3778#define PERL_GPROF_MONCONTROL(x)
3779#endif
3780
4d8076ea 3781/* and finally... */
cceca5ed 3782#define PERL_PATCHLEVEL_H_IMPLICIT
4d8076ea 3783#include "patchlevel.h"
cceca5ed 3784#undef PERL_PATCHLEVEL_H_IMPLICIT
4d8076ea 3785
43999f95 3786/* Mention
d460ef45 3787
43999f95 3788 NV_PRESERVES_UV
fe749a9f 3789
43999f95
JH
3790 HAS_ICONV
3791 I_ICONV
3792
fe749a9f
JH
3793 HAS_MKSTEMP
3794 HAS_MKSTEMPS
3795 HAS_MKDTEMP
3796
49dabb45
JH
3797 HAS_GETCWD
3798
d59b5429 3799 HAS_MMAP
fe749a9f
JH
3800 HAS_MPROTECT
3801 HAS_MSYNC
1e8c3fde 3802 HAS_MADVISE
fe749a9f
JH
3803 HAS_MUNMAP
3804 I_SYSMMAN
3805 Mmap_t
3806
6b4667fc
A
3807 NVef
3808 NVff
3809 NVgf
3810
4e0554ec
JH
3811 HAS_USLEEP
3812 HAS_UALARM
3813
3814 HAS_SETITIMER
3815 HAS_GETITIMER
3816
3817 HAS_SENDMSG
3818 HAS_RECVMSG
3819 HAS_READV
3820 HAS_WRITEV
3821 I_SYSUIO
3822 HAS_STRUCT_MSGHDR
3823 HAS_STRUCT_CMSGHDR
3824
9514c62b
JH
3825 USE_REENTRANT_API
3826
43999f95
JH
3827 so that Configure picks them up. */
3828
85e6fe83 3829#endif /* Include guard */