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