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