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