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