This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Undo #3790 and the patches that attempted to fix it
[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
79072805 1027#else
03145268
SH
1028 typedef long IV;
1029 typedef unsigned long UV;
5ff3f7a4
GS
1030# if defined(INT32_MAX) && LONGSIZE == 4
1031# define IV_MAX INT32_MAX
1032# define IV_MIN INT32_MIN
1033# define UV_MAX UINT32_MAX
1034# define UV_MIN UINT32_MIN
1035# else
1036# define IV_MAX PERL_LONG_MAX
1037# define IV_MIN PERL_LONG_MIN
1038# define UV_MAX PERL_ULONG_MAX
1039# define UV_MIN PERL_ULONG_MIN
1040# endif
2cc4c2dc
JH
1041# define UV_SIZEOF LONGSIZE
1042# define IV_SIZEOF LONGSIZE
79072805
LW
1043#endif
1044
65202027
DS
1045#ifdef USE_LONG_DOUBLE
1046# if defined(HAS_LONG_DOUBLE) && (LONG_DOUBLESIZE > DOUBLESIZE)
1047# define LDoub_t long double
1048# endif
1049#endif
1050
1051#ifdef USE_LONG_DOUBLE
1052# define HAS_LDOUB
1053 typedef LDoub_t NV;
1054# define Perl_modf modfl
1055# define Perl_frexp frexpl
1056# define Perl_cos cosl
1057# define Perl_sin sinl
1058# define Perl_sqrt sqrtl
1059# define Perl_exp expl
1060# define Perl_log logl
1061# define Perl_atan2 atan2l
1062# define Perl_pow powl
1063# define Perl_floor floorl
1064# define Perl_atof atof
1065# define Perl_fmod fmodl
1066#else
1067 typedef double NV;
1068# define Perl_modf modf
1069# define Perl_frexp frexp
1070# define Perl_cos cos
1071# define Perl_sin sin
1072# define Perl_sqrt sqrt
1073# define Perl_exp exp
1074# define Perl_log log
1075# define Perl_atan2 atan2
1076# define Perl_pow pow
1077# define Perl_floor floor
1078# define Perl_atof atof /* At some point there may be an atolf */
1079# define Perl_fmod fmod
1080#endif
1081
760ac839
LW
1082/* Previously these definitions used hardcoded figures.
1083 * It is hoped these formula are more portable, although
1084 * no data one way or another is presently known to me.
1085 * The "PERL_" names are used because these calculated constants
1086 * do not meet the ANSI requirements for LONG_MAX, etc., which
1087 * need to be constants acceptable to #if - kja
1088 * define PERL_LONG_MAX 2147483647L
1089 * define PERL_LONG_MIN (-LONG_MAX - 1)
1090 * define PERL ULONG_MAX 4294967295L
1091 */
1092
1093#ifdef I_LIMITS /* Needed for cast_xxx() functions below. */
1094# include <limits.h>
1095#else
1096#ifdef I_VALUES
1097# include <values.h>
1098#endif
1099#endif
1100
99abf803 1101/*
1102 * Try to figure out max and min values for the integral types. THE CORRECT
1103 * SOLUTION TO THIS MESS: ADAPT enquire.c FROM GCC INTO CONFIGURE. The
1104 * following hacks are used if neither limits.h or values.h provide them:
1105 * U<TYPE>_MAX: for types >= int: ~(unsigned TYPE)0
1106 * for types < int: (unsigned TYPE)~(unsigned)0
1107 * The argument to ~ must be unsigned so that later signed->unsigned
1108 * conversion can't modify the value's bit pattern (e.g. -0 -> +0),
1109 * and it must not be smaller than int because ~ does integral promotion.
1110 * <type>_MAX: (<type>) (U<type>_MAX >> 1)
1111 * <type>_MIN: -<type>_MAX - <is_twos_complement_architecture: (3 & -1) == 3>.
1112 * The latter is a hack which happens to work on some machines but
1113 * does *not* catch any random system, or things like integer types
1114 * with NaN if that is possible.
1115 *
1116 * All of the types are explicitly cast to prevent accidental loss of
1117 * numeric range, and in the hope that they will be less likely to confuse
1118 * over-eager optimizers.
1119 *
1120 */
27d4fb96 1121
99abf803 1122#define PERL_UCHAR_MIN ((unsigned char)0)
1123
1124#ifdef UCHAR_MAX
1125# define PERL_UCHAR_MAX ((unsigned char)UCHAR_MAX)
27d4fb96 1126#else
99abf803 1127# ifdef MAXUCHAR
1128# define PERL_UCHAR_MAX ((unsigned char)MAXUCHAR)
27d4fb96 1129# else
99abf803 1130# define PERL_UCHAR_MAX ((unsigned char)~(unsigned)0)
27d4fb96 1131# endif
1132#endif
99abf803 1133
1134/*
1135 * CHAR_MIN and CHAR_MAX are not included here, as the (char) type may be
1136 * ambiguous. It may be equivalent to (signed char) or (unsigned char)
1137 * depending on local options. Until Configure detects this (or at least
1138 * detects whether the "signed" keyword is available) the CHAR ranges
1139 * will not be included. UCHAR functions normally.
1140 * - kja
1141 */
27d4fb96 1142
99abf803 1143#define PERL_USHORT_MIN ((unsigned short)0)
1144
1145#ifdef USHORT_MAX
1146# define PERL_USHORT_MAX ((unsigned short)USHORT_MAX)
27d4fb96 1147#else
99abf803 1148# ifdef MAXUSHORT
1149# define PERL_USHORT_MAX ((unsigned short)MAXUSHORT)
27d4fb96 1150# else
ef2f54b0
CB
1151# ifdef USHRT_MAX
1152# define PERL_USHORT_MAX ((unsigned short)USHRT_MAX)
1153# else
1154# define PERL_USHORT_MAX ((unsigned short)~(unsigned)0)
1155# endif
27d4fb96 1156# endif
1157#endif
1158
27d4fb96 1159#ifdef SHORT_MAX
99abf803 1160# define PERL_SHORT_MAX ((short)SHORT_MAX)
27d4fb96 1161#else
1162# ifdef MAXSHORT /* Often used in <values.h> */
99abf803 1163# define PERL_SHORT_MAX ((short)MAXSHORT)
27d4fb96 1164# else
ef2f54b0
CB
1165# ifdef SHRT_MAX
1166# define PERL_SHORT_MAX ((short)SHRT_MAX)
1167# else
1168# define PERL_SHORT_MAX ((short) (PERL_USHORT_MAX >> 1))
1169# endif
27d4fb96 1170# endif
1171#endif
1172
1173#ifdef SHORT_MIN
99abf803 1174# define PERL_SHORT_MIN ((short)SHORT_MIN)
27d4fb96 1175#else
1176# ifdef MINSHORT
99abf803 1177# define PERL_SHORT_MIN ((short)MINSHORT)
27d4fb96 1178# else
ef2f54b0
CB
1179# ifdef SHRT_MIN
1180# define PERL_SHORT_MIN ((short)SHRT_MIN)
1181# else
1182# define PERL_SHORT_MIN (-PERL_SHORT_MAX - ((3 & -1) == 3))
1183# endif
27d4fb96 1184# endif
1185#endif
1186
99abf803 1187#ifdef UINT_MAX
1188# define PERL_UINT_MAX ((unsigned int)UINT_MAX)
27d4fb96 1189#else
99abf803 1190# ifdef MAXUINT
1191# define PERL_UINT_MAX ((unsigned int)MAXUINT)
27d4fb96 1192# else
99abf803 1193# define PERL_UINT_MAX (~(unsigned int)0)
27d4fb96 1194# endif
1195#endif
1196
99abf803 1197#define PERL_UINT_MIN ((unsigned int)0)
27d4fb96 1198
1199#ifdef INT_MAX
99abf803 1200# define PERL_INT_MAX ((int)INT_MAX)
27d4fb96 1201#else
1202# ifdef MAXINT /* Often used in <values.h> */
99abf803 1203# define PERL_INT_MAX ((int)MAXINT)
27d4fb96 1204# else
99abf803 1205# define PERL_INT_MAX ((int)(PERL_UINT_MAX >> 1))
27d4fb96 1206# endif
1207#endif
1208
1209#ifdef INT_MIN
99abf803 1210# define PERL_INT_MIN ((int)INT_MIN)
27d4fb96 1211#else
1212# ifdef MININT
99abf803 1213# define PERL_INT_MIN ((int)MININT)
27d4fb96 1214# else
1215# define PERL_INT_MIN (-PERL_INT_MAX - ((3 & -1) == 3))
1216# endif
1217#endif
1218
99abf803 1219#ifdef ULONG_MAX
1220# define PERL_ULONG_MAX ((unsigned long)ULONG_MAX)
27d4fb96 1221#else
99abf803 1222# ifdef MAXULONG
1223# define PERL_ULONG_MAX ((unsigned long)MAXULONG)
27d4fb96 1224# else
99abf803 1225# define PERL_ULONG_MAX (~(unsigned long)0)
27d4fb96 1226# endif
1227#endif
1228
99abf803 1229#define PERL_ULONG_MIN ((unsigned long)0L)
27d4fb96 1230
760ac839 1231#ifdef LONG_MAX
99abf803 1232# define PERL_LONG_MAX ((long)LONG_MAX)
760ac839
LW
1233#else
1234# ifdef MAXLONG /* Often used in <values.h> */
99abf803 1235# define PERL_LONG_MAX ((long)MAXLONG)
760ac839 1236# else
99abf803 1237# define PERL_LONG_MAX ((long) (PERL_ULONG_MAX >> 1))
760ac839
LW
1238# endif
1239#endif
1240
1241#ifdef LONG_MIN
99abf803 1242# define PERL_LONG_MIN ((long)LONG_MIN)
760ac839
LW
1243#else
1244# ifdef MINLONG
99abf803 1245# define PERL_LONG_MIN ((long)MINLONG)
760ac839 1246# else
27d4fb96 1247# define PERL_LONG_MIN (-PERL_LONG_MAX - ((3 & -1) == 3))
760ac839
LW
1248# endif
1249#endif
1250
99abf803 1251#ifdef HAS_QUAD
1252
1253# ifdef UQUAD_MAX
1254# define PERL_UQUAD_MAX ((UV)UQUAD_MAX)
760ac839 1255# else
99abf803 1256# define PERL_UQUAD_MAX (~(UV)0)
760ac839 1257# endif
760ac839 1258
99abf803 1259# define PERL_UQUAD_MIN ((UV)0)
27d4fb96 1260
27d4fb96 1261# ifdef QUAD_MAX
99abf803 1262# define PERL_QUAD_MAX ((IV)QUAD_MAX)
27d4fb96 1263# else
99abf803 1264# define PERL_QUAD_MAX ((IV) (PERL_UQUAD_MAX >> 1))
27d4fb96 1265# endif
1266
1267# ifdef QUAD_MIN
99abf803 1268# define PERL_QUAD_MIN ((IV)QUAD_MIN)
27d4fb96 1269# else
a6e633de 1270# define PERL_QUAD_MIN (-PERL_QUAD_MAX - ((3 & -1) == 3))
27d4fb96 1271# endif
1272
79072805
LW
1273#endif
1274
ee0007ab 1275typedef MEM_SIZE STRLEN;
450a55e4 1276
79072805
LW
1277typedef struct op OP;
1278typedef struct cop COP;
1279typedef struct unop UNOP;
1280typedef struct binop BINOP;
1281typedef struct listop LISTOP;
1282typedef struct logop LOGOP;
79072805
LW
1283typedef struct pmop PMOP;
1284typedef struct svop SVOP;
1285typedef struct gvop GVOP;
1286typedef struct pvop PVOP;
79072805
LW
1287typedef struct loop LOOP;
1288
1289typedef struct Outrec Outrec;
93a17b20 1290typedef struct interpreter PerlInterpreter;
3e3baf6d
TB
1291#ifndef __BORLANDC__
1292typedef struct ff FF; /* XXX not defined anywhere, should go? */
1293#endif
79072805
LW
1294typedef struct sv SV;
1295typedef struct av AV;
1296typedef struct hv HV;
1297typedef struct cv CV;
378cc40b 1298typedef struct regexp REGEXP;
79072805 1299typedef struct gp GP;
0c30d9ec 1300typedef struct gv GV;
8990e307 1301typedef struct io IO;
c09156bb 1302typedef struct context PERL_CONTEXT;
79072805
LW
1303typedef struct block BLOCK;
1304
1305typedef struct magic MAGIC;
ed6116ce 1306typedef struct xrv XRV;
79072805
LW
1307typedef struct xpv XPV;
1308typedef struct xpviv XPVIV;
ff68c719 1309typedef struct xpvuv XPVUV;
79072805
LW
1310typedef struct xpvnv XPVNV;
1311typedef struct xpvmg XPVMG;
1312typedef struct xpvlv XPVLV;
1313typedef struct xpvav XPVAV;
1314typedef struct xpvhv XPVHV;
1315typedef struct xpvgv XPVGV;
1316typedef struct xpvcv XPVCV;
1317typedef struct xpvbm XPVBM;
1318typedef struct xpvfm XPVFM;
8990e307 1319typedef struct xpvio XPVIO;
79072805
LW
1320typedef struct mgvtbl MGVTBL;
1321typedef union any ANY;
8d063cd8 1322
378cc40b 1323#include "handy.h"
a0d0e21e 1324
03145268
SH
1325/* Some day when we have more 64-bit experience under our belts we may
1326 * be able to merge some of the USE_64_BIT_{FILES,OFFSETS,STDIO,DBM}. At
1327 * the moment (Oct 1998), though, keep them separate. --jhi
1328 */
5ff3f7a4
GS
1329#ifdef USE_64_BITS
1330# ifdef USE_64_BIT_FILES
03145268
SH
1331# ifndef USE_64_BIT_OFFSETS
1332# define USE_64_BIT_OFFSETS
5ff3f7a4
GS
1333# endif
1334# ifndef USE_64_BIT_STDIO
1335# define USE_64_BIT_STDIO
1336# endif
1337# ifndef USE_64_BIT_DBM
1338# define USE_64_BIT_DBM
1339# endif
1340# endif
03145268
SH
1341/* Mention LSEEKSIZE here to get it included in %Config. */
1342# ifdef USE_64_BIT_OFFSETS
5ff3f7a4
GS
1343# ifdef HAS_FSTAT64
1344# define fstat fstat64
1345# endif
1346# ifdef HAS_FTRUNCATE64
1347# define ftruncate ftruncate64
1348# endif
1349# ifdef HAS_LSEEK64
1350# define lseek lseek64
1351# ifdef HAS_OFF64_T
1352# undef Off_t
1353# define Off_t off64_t
1354# endif
1355# endif
1356# ifdef HAS_LSTAT64
1357# define lstat lstat64
1358# endif
1359 /* Some systems have open64() in libc but use that only
1360 * for true LP64 mode, in mixed mode (ILP32LL64, for example)
85ab1d1d
JH
1361 * they use the vanilla open(). Such systems should undefine
1362 * d_open64 in their hints files. --jhi */
1363# if defined(HAS_OPEN64)
5ff3f7a4
GS
1364# define open open64
1365# endif
1366# ifdef HAS_OPENDIR64
1367# define opendir opendir64
1368# endif
1369# ifdef HAS_READDIR64
1370# define readdir readdir64
1371# ifdef HAS_STRUCT_DIRENT64
1372# define dirent dirent64
1373# endif
1374# endif
1375# ifdef HAS_SEEKDIR64
1376# define seekdir seekdir64
1377# endif
1378# ifdef HAS_STAT64
1379# define stat stat64 /* Affects also struct stat, hopefully okay. */
1380# endif
1381# ifdef HAS_TELLDIR64
1382# define telldir telldir64
1383# endif
1384# ifdef HAS_TRUNCATE64
1385# define truncate truncate64
1386# endif
1387 /* flock is not #defined here to be flock64 because it seems
1388 that a system may have struct flock64 but still use flock()
1389 and not flock64(). The actual flocking code in pp_sys.c
1390 must be changed. Also lockf and lockf64 must be dealt
1391 with in pp_sys.c. --jhi */
1392# endif
1393# ifdef USE_64_BIT_STDIO
1394# ifdef HAS_FGETPOS64
1395# define fgetpos fgetpos64
1396# endif
1397# ifdef HAS_FOPEN64
1398# define fopen fopen64
1399# endif
1400# ifdef HAS_FREOPEN64
1401# define freopen freopen64
1402# endif
1403# ifdef HAS_FSEEK64
1404# define fseek fseek64
1405# endif
1406# ifdef HAS_FSEEKO64
1407# define fseeko fseeko64
1408# endif
1409# ifdef HAS_FSETPOS64
1410# define fsetpos fsetpos64
1411# endif
1412# ifdef HAS_FTELL64
1413# define ftell ftell64
1414# endif
1415# ifdef HAS_FTELLO64
1416# define ftello ftello64
1417# endif
1418# ifdef HAS_TMPFILE64
1419# define tmpfile tmpfile64
1420# endif
1421# endif
1422# ifdef USE_64_BIT_DBM
1423# ifdef HAS_DBMINIT64
1424# define dbminit dbminit64
1425# endif
1426# ifdef HAS_DBMCLOSE64
1427# define dbmclose dbmclose64
1428# endif
1429# ifdef HAS_FETCH64
1430# define fetch fetch64
1431# endif
1432# ifdef HAS_DELETE64
1433# define delete delete64
1434# endif
1435# ifdef HAS_STORE64
1436# define store store64
1437# endif
1438# ifdef HAS_FIRSTKEY64
1439# define firstkey firstkey64
1440# endif
1441# ifdef HAS_NEXTKEY64
1442# define nextkey nextkey64
1443# endif
1444# endif
1445#endif
1446
6f71a643
JH
1447#if defined(__OPEN_VM)
1448# include "vmesa/vmesaish.h"
1449#endif
1450
748a9306 1451#ifdef DOSISH
4633a7c4
LW
1452# if defined(OS2)
1453# include "os2ish.h"
1454# else
748a9306 1455# include "dosish.h"
4633a7c4 1456# endif
a0d0e21e 1457#else
748a9306
LW
1458# if defined(VMS)
1459# include "vmsish.h"
1460# else
0c30d9ec 1461# if defined(PLAN9)
1462# include "./plan9/plan9ish.h"
1463# else
1d84e8df
JH
1464# if defined(MPE)
1465# include "mpeix/mpeixish.h"
1466# else
495c5fdc
PG
1467# if defined(__VOS__)
1468# include "vosish.h"
1469# else
4d2c4e07
OF
1470# if defined(EPOC)
1471# include "epocish.h"
1472# else
1473# include "unixish.h"
1474# endif
495c5fdc 1475# endif
1d84e8df 1476# endif
0c30d9ec 1477# endif
748a9306 1478# endif
32f822de
GS
1479#endif
1480
0f31cffe
GS
1481#ifndef MAXPATHLEN
1482# ifdef PATH_MAX
b990c8b2
JH
1483# ifdef _POSIX_PATH_MAX
1484# if PATH_MAX > _POSIX_PATH_MAX
1485/* MAXPATHLEN is supposed to include the final null character,
1486 * as opposed to PATH_MAX and _POSIX_PATH_MAX. */
1487# define MAXPATHLEN (PATH_MAX+1)
1488# else
1489# define MAXPATHLEN (_POSIX_PATH_MAX+1)
1490# endif
1491# else
1492# define MAXPATHLEN (PATH_MAX+1)
1493# endif
0f31cffe 1494# else
b990c8b2
JH
1495# ifdef _POSIX_PATH_MAX
1496# define MAXPATHLEN (_POSIX_PATH_MAX+1)
1497# else
1498# define MAXPATHLEN 1024 /* Err on the large side. */
1499# endif
0f31cffe
GS
1500# endif
1501#endif
1502
32f822de 1503/*
dd96f567
IZ
1504 * USE_THREADS needs to be after unixish.h as <pthread.h> includes
1505 * <sys/signal.h> which defines NSIG - which will stop inclusion of <signal.h>
32f822de
GS
1506 * this results in many functions being undeclared which bothers C++
1507 * May make sense to have threads after "*ish.h" anyway
1508 */
1509
1510#ifdef USE_THREADS
79d59c5f
GS
1511 /* pending resolution of licensing issues, we avoid the erstwhile
1512 * atomic.h everywhere */
1513# define EMULATE_ATOMIC_REFCOUNTS
1514
32f822de
GS
1515# ifdef FAKE_THREADS
1516# include "fakethr.h"
1517# else
1518# ifdef WIN32
1519# include <win32thread.h>
1520# else
dd96f567
IZ
1521# ifdef OS2
1522# include "os2thread.h"
1523# else
7f3d1cf1 1524# ifdef I_MACH_CTHREADS
bdd66968 1525# include <mach/cthreads.h>
8f1f23e8 1526# if (defined(NeXT) || defined(__NeXT__)) && defined(PERL_POLLUTE_MALLOC)
772fe5b3
HM
1527# define MUTEX_INIT_CALLS_MALLOC
1528# endif
7f3d1cf1
BH
1529typedef cthread_t perl_os_thread;
1530typedef mutex_t perl_mutex;
1531typedef condition_t perl_cond;
1532typedef void * perl_key;
1533# else /* Posix threads */
1534# include <pthread.h>
1535typedef pthread_t perl_os_thread;
1536typedef pthread_mutex_t perl_mutex;
1537typedef pthread_cond_t perl_cond;
1538typedef pthread_key_t perl_key;
1539# endif /* I_MACH_CTHREADS */
dd96f567 1540# endif /* OS2 */
32f822de
GS
1541# endif /* WIN32 */
1542# endif /* FAKE_THREADS */
1543#endif /* USE_THREADS */
c5be433b
GS
1544
1545#ifdef WIN32
1546#include "win32.h"
1547#endif
1548
68dc0745 1549#ifdef VMS
6b88bc9c 1550# define STATUS_NATIVE PL_statusvalue_vms
68dc0745 1551# define STATUS_NATIVE_EXPORT \
6b88bc9c 1552 ((I32)PL_statusvalue_vms == -1 ? 44 : PL_statusvalue_vms)
68dc0745 1553# define STATUS_NATIVE_SET(n) \
1554 STMT_START { \
6b88bc9c
GS
1555 PL_statusvalue_vms = (n); \
1556 if ((I32)PL_statusvalue_vms == -1) \
3280af22 1557 PL_statusvalue = -1; \
6b88bc9c 1558 else if (PL_statusvalue_vms & STS$M_SUCCESS) \
3280af22 1559 PL_statusvalue = 0; \
6b88bc9c
GS
1560 else if ((PL_statusvalue_vms & STS$M_SEVERITY) == 0) \
1561 PL_statusvalue = 1 << 8; \
68dc0745 1562 else \
6b88bc9c 1563 PL_statusvalue = (PL_statusvalue_vms & STS$M_SEVERITY) << 8; \
68dc0745 1564 } STMT_END
3280af22 1565# define STATUS_POSIX PL_statusvalue
68dc0745 1566# ifdef VMSISH_STATUS
1567# define STATUS_CURRENT (VMSISH_STATUS ? STATUS_NATIVE : STATUS_POSIX)
1568# else
1569# define STATUS_CURRENT STATUS_POSIX
1570# endif
1571# define STATUS_POSIX_SET(n) \
1572 STMT_START { \
3280af22
NIS
1573 PL_statusvalue = (n); \
1574 if (PL_statusvalue != -1) { \
1575 PL_statusvalue &= 0xFFFF; \
6b88bc9c 1576 PL_statusvalue_vms = PL_statusvalue ? 44 : 1; \
68dc0745 1577 } \
6b88bc9c 1578 else PL_statusvalue_vms = -1; \
68dc0745 1579 } STMT_END
6b88bc9c
GS
1580# define STATUS_ALL_SUCCESS (PL_statusvalue = 0, PL_statusvalue_vms = 1)
1581# define STATUS_ALL_FAILURE (PL_statusvalue = 1, PL_statusvalue_vms = 44)
68dc0745 1582#else
1583# define STATUS_NATIVE STATUS_POSIX
1584# define STATUS_NATIVE_EXPORT STATUS_POSIX
1585# define STATUS_NATIVE_SET STATUS_POSIX_SET
3280af22 1586# define STATUS_POSIX PL_statusvalue
68dc0745 1587# define STATUS_POSIX_SET(n) \
1588 STMT_START { \
3280af22
NIS
1589 PL_statusvalue = (n); \
1590 if (PL_statusvalue != -1) \
1591 PL_statusvalue &= 0xFFFF; \
68dc0745 1592 } STMT_END
1593# define STATUS_CURRENT STATUS_POSIX
3280af22
NIS
1594# define STATUS_ALL_SUCCESS (PL_statusvalue = 0)
1595# define STATUS_ALL_FAILURE (PL_statusvalue = 1)
68dc0745 1596#endif
1597
0b94c7bb
GS
1598#ifndef MEMBER_TO_FPTR
1599#define MEMBER_TO_FPTR(name) name
1600#endif
1601
45bc9206
GS
1602/* This defines a way to flush all output buffers. This may be a
1603 * performance issue, so we allow people to disable it.
1604 * XXX the default needs a Configure test, as it may not work everywhere.
1605 */
1606#ifndef PERL_FLUSHALL_FOR_CHILD
767df6a1 1607# if defined(FFLUSH_NULL) || defined(USE_SFIO)
66fe083f 1608# define PERL_FLUSHALL_FOR_CHILD PerlIO_flush((PerlIO*)NULL)
767df6a1
JH
1609# else
1610# ifdef FFLUSH_ALL
1611# define PERL_FLUSHALL_FOR_CHILD my_fflush_all()
e2dbf222 1612# else
c5be433b 1613# define PERL_FLUSHALL_FOR_CHILD NOOP
767df6a1 1614# endif
66fe083f 1615# endif
45bc9206
GS
1616#endif
1617
c5be433b
GS
1618#ifndef PERL_SET_INTERP
1619# define PERL_SET_INTERP(i) (PL_curinterp = (PerlInterpreter*)(i))
1620#endif
1621
1622#ifndef PERL_GET_INTERP
1623# define PERL_GET_INTERP (PL_curinterp)
1624#endif
1625
3fc1aec6 1626/* Some unistd.h's give a prototype for pause() even though
1627 HAS_PAUSE ends up undefined. This causes the #define
1628 below to be rejected by the compmiler. Sigh.
1629*/
1630#ifdef HAS_PAUSE
1631#define Pause pause
1632#else
1633#define Pause() sleep((32767<<16)+32767)
748a9306
LW
1634#endif
1635
1636#ifndef IOCPARM_LEN
1637# ifdef IOCPARM_MASK
1638 /* on BSDish systes we're safe */
1639# define IOCPARM_LEN(x) (((x) >> 16) & IOCPARM_MASK)
1640# else
1641 /* otherwise guess at what's safe */
1642# define IOCPARM_LEN(x) 256
1643# endif
a0d0e21e
LW
1644#endif
1645
521e0776 1646#if defined(CYGWIN32)
521e0776
GS
1647/* USEMYBINMODE
1648 * This symbol, if defined, indicates that the program should
1649 * use the routine my_binmode(FILE *fp, char iotype) to insure
1650 * that a file is in "binary" mode -- that is, that no translation
1651 * of bytes occurs on read or write operations.
1652 */
1653# define USEMYBINMODE / **/
1654# define my_binmode(fp, iotype) \
1655 (PerlLIO_setmode(PerlIO_fileno(fp), O_BINARY) != -1 ? TRUE : NULL)
5aabfad6 1656#endif
1657
cea2e8a9
GS
1658#ifdef UNION_ANY_DEFINITION
1659UNION_ANY_DEFINITION;
1660#else
1661union any {
1662 void* any_ptr;
1663 I32 any_i32;
1664 IV any_iv;
1665 long any_long;
51371543 1666 void (*any_dptr) (pTHXo_ void*);
cea2e8a9
GS
1667};
1668#endif
1669
1670#ifdef USE_THREADS
1671#define ARGSproto struct perl_thread *thr
1672#else
1673#define ARGSproto
1674#endif /* USE_THREADS */
1675
1cab015a
EF
1676#if defined(CYGWIN32)
1677/* USEMYBINMODE
1678 * This symbol, if defined, indicates that the program should
1679 * use the routine my_binmode(FILE *fp, char iotype) to insure
1680 * that a file is in "binary" mode -- that is, that no translation
1681 * of bytes occurs on read or write operations.
1682 */
1683#define USEMYBINMODE / **/
1684#define my_binmode(fp, iotype) \
1685 (PerlLIO_setmode(PerlIO_fileno(fp), O_BINARY) != -1 ? TRUE : FALSE)
1686#endif
1687
0cb96387 1688typedef I32 (*filter_t) (pTHXo_ int, SV *, int);
cea2e8a9
GS
1689
1690#define FILTER_READ(idx, sv, len) filter_read(idx, sv, len)
1691#define FILTER_DATA(idx) (AvARRAY(PL_rsfp_filters)[idx])
1692#define FILTER_ISREADER(idx) (idx >= AvFILLp(PL_rsfp_filters))
1693
4f63d024 1694#include "iperlsys.h"
378cc40b 1695#include "regexp.h"
79072805 1696#include "sv.h"
378cc40b 1697#include "util.h"
8d063cd8 1698#include "form.h"
79072805
LW
1699#include "gv.h"
1700#include "cv.h"
79072805
LW
1701#include "op.h"
1702#include "cop.h"
1703#include "av.h"
1704#include "hv.h"
1705#include "mg.h"
1706#include "scope.h"
599cee73 1707#include "warning.h"
a0ed51b3 1708#include "utf8.h"
8d063cd8 1709
7fae4e64
GS
1710/* Current curly descriptor */
1711typedef struct curcur CURCUR;
1712struct curcur {
1713 int parenfloor; /* how far back to strip paren data */
1714 int cur; /* how many instances of scan we've matched */
1715 int min; /* the minimal number of scans to match */
1716 int max; /* the maximal number of scans to match */
1717 int minmod; /* whether to work our way up or down */
1718 regnode * scan; /* the thing to match */
1719 regnode * next; /* what has to match after it */
1720 char * lastloc; /* where we started matching this scan */
1721 CURCUR * oldcc; /* current curly before we started this one */
1722};
1723
1724typedef struct _sublex_info SUBLEXINFO;
1725struct _sublex_info {
1726 I32 super_state; /* lexer state to save */
1727 I32 sub_inwhat; /* "lex_inwhat" to use */
1728 OP *sub_op; /* "lex_op" to use */
0244c3a4
GS
1729 char *super_bufptr; /* PL_bufptr that was */
1730 char *super_bufend; /* PL_bufend that was */
7fae4e64
GS
1731};
1732
455ece5e 1733typedef struct magic_state MGS; /* struct magic_state defined in mg.c */
76e3520e 1734
864dbfa3
GS
1735/* Length of a variant. */
1736
76e3520e
GS
1737typedef struct {
1738 I32 len_min;
1739 I32 len_delta;
1740 I32 pos_min;
1741 I32 pos_delta;
1742 SV *last_found;
1743 I32 last_end; /* min value, <0 unless valid. */
1744 I32 last_start_min;
1745 I32 last_start_max;
1746 SV **longest; /* Either &l_fixed, or &l_float. */
1747 SV *longest_fixed;
1748 I32 offset_fixed;
1749 SV *longest_float;
1750 I32 offset_float_min;
1751 I32 offset_float_max;
1752 I32 flags;
1753} scan_data_t;
1754
1755typedef I32 CHECKPOINT;
76e3520e 1756
450a55e4 1757#if defined(iAPX286) || defined(M_I286) || defined(I80286)
a687059c
LW
1758# define I286
1759#endif
1760
fe14fcc3
LW
1761#if defined(htonl) && !defined(HAS_HTONL)
1762#define HAS_HTONL
ae986130 1763#endif
fe14fcc3
LW
1764#if defined(htons) && !defined(HAS_HTONS)
1765#define HAS_HTONS
ae986130 1766#endif
fe14fcc3
LW
1767#if defined(ntohl) && !defined(HAS_NTOHL)
1768#define HAS_NTOHL
ae986130 1769#endif
fe14fcc3
LW
1770#if defined(ntohs) && !defined(HAS_NTOHS)
1771#define HAS_NTOHS
ae986130 1772#endif
fe14fcc3 1773#ifndef HAS_HTONL
d9d8d8de 1774#if (BYTEORDER & 0xffff) != 0x4321
fe14fcc3
LW
1775#define HAS_HTONS
1776#define HAS_HTONL
1777#define HAS_NTOHS
1778#define HAS_NTOHL
a687059c
LW
1779#define MYSWAP
1780#define htons my_swap
1781#define htonl my_htonl
1782#define ntohs my_swap
1783#define ntohl my_ntohl
1784#endif
1785#else
d9d8d8de 1786#if (BYTEORDER & 0xffff) == 0x4321
fe14fcc3
LW
1787#undef HAS_HTONS
1788#undef HAS_HTONL
1789#undef HAS_NTOHS
1790#undef HAS_NTOHL
a687059c
LW
1791#endif
1792#endif
1793
988174c1
LW
1794/*
1795 * Little-endian byte order functions - 'v' for 'VAX', or 'reVerse'.
1796 * -DWS
1797 */
1798#if BYTEORDER != 0x1234
1799# define HAS_VTOHL
1800# define HAS_VTOHS
1801# define HAS_HTOVL
1802# define HAS_HTOVS
c67712b2 1803# if BYTEORDER == 0x4321 || BYTEORDER == 0x87654321
988174c1
LW
1804# define vtohl(x) ((((x)&0xFF)<<24) \
1805 +(((x)>>24)&0xFF) \
1806 +(((x)&0x0000FF00)<<8) \
1807 +(((x)&0x00FF0000)>>8) )
1808# define vtohs(x) ((((x)&0xFF)<<8) + (((x)>>8)&0xFF))
1809# define htovl(x) vtohl(x)
1810# define htovs(x) vtohs(x)
1811# endif
1812 /* otherwise default to functions in util.c */
1813#endif
1814
0f85fab0 1815#ifdef CASTNEGFLOAT
79072805 1816#define U_S(what) ((U16)(what))
0f85fab0 1817#define U_I(what) ((unsigned int)(what))
79072805 1818#define U_L(what) ((U32)(what))
0f85fab0 1819#else
65202027
DS
1820#define U_S(what) ((U16)cast_ulong((NV)(what)))
1821#define U_I(what) ((unsigned int)cast_ulong((NV)(what)))
1822#define U_L(what) (cast_ulong((NV)(what)))
ee0007ab
LW
1823#endif
1824
ed6116ce
LW
1825#ifdef CASTI32
1826#define I_32(what) ((I32)(what))
a0d0e21e 1827#define I_V(what) ((IV)(what))
5d94fbed 1828#define U_V(what) ((UV)(what))
ed6116ce 1829#else
65202027
DS
1830#define I_32(what) (cast_i32((NV)(what)))
1831#define I_V(what) (cast_iv((NV)(what)))
1832#define U_V(what) (cast_uv((NV)(what)))
ed6116ce
LW
1833#endif
1834
25da4f38
IZ
1835/* Used with UV/IV arguments: */
1836 /* XXXX: need to speed it up */
1837#define CLUMP_2UV(iv) ((iv) < 0 ? 0 : (UV)(iv))
1838#define CLUMP_2IV(uv) ((uv) > (UV)IV_MAX ? IV_MAX : (IV)(uv))
1839
79072805
LW
1840struct Outrec {
1841 I32 o_lines;
d9d8d8de 1842 char *o_str;
79072805 1843 U32 o_len;
8d063cd8
LW
1844};
1845
352d5a3a
LW
1846#ifndef MAXSYSFD
1847# define MAXSYSFD 2
1848#endif
ee0007ab 1849
f82b3d41 1850#ifndef TMPPATH
1851# define TMPPATH "/tmp/perl-eXXXXXX"
a0d0e21e 1852#endif
79072805
LW
1853
1854#ifndef __cplusplus
20ce7b12
GS
1855Uid_t getuid (void);
1856Uid_t geteuid (void);
1857Gid_t getgid (void);
1858Gid_t getegid (void);
79072805 1859#endif
8d063cd8 1860
0c30d9ec 1861#ifndef Perl_debug_log
760ac839 1862#define Perl_debug_log PerlIO_stderr()
0c30d9ec 1863#endif
3967c732
JD
1864
1865#ifdef DEBUGGING
9d116dd7 1866#undef YYDEBUG
d96024cf 1867#define YYDEBUG 1
79072805 1868#define DEB(a) a
3280af22
NIS
1869#define DEBUG(a) if (PL_debug) a
1870#define DEBUG_p(a) if (PL_debug & 1) a
1871#define DEBUG_s(a) if (PL_debug & 2) a
1872#define DEBUG_l(a) if (PL_debug & 4) a
1873#define DEBUG_t(a) if (PL_debug & 8) a
1874#define DEBUG_o(a) if (PL_debug & 16) a
1875#define DEBUG_c(a) if (PL_debug & 32) a
1876#define DEBUG_P(a) if (PL_debug & 64) a
0672f40e 1877# if defined(PERL_OBJECT)
c850101c
JD
1878# define DEBUG_m(a) if (PL_debug & 128) a
1879# else
c5be433b 1880# define DEBUG_m(a) if (PERL_GET_INTERP && PL_debug & 128) a
c850101c 1881# endif
3280af22
NIS
1882#define DEBUG_f(a) if (PL_debug & 256) a
1883#define DEBUG_r(a) if (PL_debug & 512) a
1884#define DEBUG_x(a) if (PL_debug & 1024) a
1885#define DEBUG_u(a) if (PL_debug & 2048) a
1886#define DEBUG_L(a) if (PL_debug & 4096) a
1887#define DEBUG_H(a) if (PL_debug & 8192) a
1888#define DEBUG_X(a) if (PL_debug & 16384) a
1889#define DEBUG_D(a) if (PL_debug & 32768) a
8b73bbec
IZ
1890# ifdef USE_THREADS
1891# define DEBUG_S(a) if (PL_debug & (1<<16)) a
1892# else
1893# define DEBUG_S(a)
1894# endif
79072805
LW
1895#else
1896#define DEB(a)
1897#define DEBUG(a)
1898#define DEBUG_p(a)
1899#define DEBUG_s(a)
1900#define DEBUG_l(a)
1901#define DEBUG_t(a)
1902#define DEBUG_o(a)
1903#define DEBUG_c(a)
1904#define DEBUG_P(a)
1905#define DEBUG_m(a)
1906#define DEBUG_f(a)
1907#define DEBUG_r(a)
1908#define DEBUG_x(a)
1909#define DEBUG_u(a)
8b73bbec 1910#define DEBUG_S(a)
79072805
LW
1911#define DEBUG_H(a)
1912#define DEBUG_X(a)
8990e307 1913#define DEBUG_D(a)
8b73bbec 1914#define DEBUG_S(a)
8d063cd8 1915#endif
fe14fcc3 1916#define YYMAXDEPTH 300
8d063cd8 1917
a6e633de 1918#ifndef assert /* <assert.h> might have been included somehow */
79072805
LW
1919#define assert(what) DEB( { \
1920 if (!(what)) { \
cea2e8a9 1921 Perl_croak(aTHX_ "Assertion failed: file \"%s\", line %d", \
79072805 1922 __FILE__, __LINE__); \
cea2e8a9 1923 PerlProc_exit(1); \
79072805 1924 }})
a6e633de 1925#endif
8d063cd8 1926
450a55e4 1927struct ufuncs {
20ce7b12
GS
1928 I32 (*uf_val)(IV, SV*);
1929 I32 (*uf_set)(IV, SV*);
a0d0e21e 1930 IV uf_index;
450a55e4
LW
1931};
1932
fe14fcc3 1933/* Fix these up for __STDC__ */
68dc0745 1934#ifndef DONT_DECLARE_STD
20ce7b12
GS
1935char *mktemp (char*);
1936double atof (const char*);
a0d0e21e 1937#endif
79072805 1938
352d5a3a 1939#ifndef STANDARD_C
fe14fcc3 1940/* All of these are in stdlib.h or time.h for ANSI C */
85e6fe83 1941Time_t time();
8d063cd8 1942struct tm *gmtime(), *localtime();
092bebab 1943#if defined(OEMVS) || defined(__OPEN_VM)
9d116dd7
JH
1944char *(strchr)(), *(strrchr)();
1945char *(strcpy)(), *(strcat)();
1946#else
93a17b20 1947char *strchr(), *strrchr();
378cc40b 1948char *strcpy(), *strcat();
9d116dd7 1949#endif
352d5a3a 1950#endif /* ! STANDARD_C */
8d063cd8 1951
79072805
LW
1952
1953#ifdef I_MATH
1954# include <math.h>
1955#else
32f822de 1956START_EXTERN_C
20ce7b12
GS
1957 double exp (double);
1958 double log (double);
1959 double log10 (double);
1960 double sqrt (double);
1961 double frexp (double,int*);
1962 double ldexp (double,int);
1963 double modf (double,double*);
1964 double sin (double);
1965 double cos (double);
1966 double atan2 (double,double);
1967 double pow (double,double);
32f822de 1968END_EXTERN_C
79072805
LW
1969#endif
1970
a0d0e21e 1971#ifndef __cplusplus
8f1f23e8 1972# if defined(NeXT) || defined(__NeXT__) /* or whatever catches all NeXTs */
3fc1aec6 1973char *crypt (); /* Maybe more hosts will need the unprototyped version */
26618a56
GS
1974# else
1975# if !defined(WIN32) || !defined(HAVE_DES_FCRYPT)
20ce7b12 1976char *crypt (const char*, const char*);
26618a56 1977# endif /* !WIN32 && !HAVE_CRYPT_SOURCE */
8f1f23e8 1978# endif /* !NeXT && !__NeXT__ */
26618a56
GS
1979# ifndef DONT_DECLARE_STD
1980# ifndef getenv
20ce7b12 1981char *getenv (const char*);
26618a56 1982# endif /* !getenv */
4d2c4e07 1983#ifndef EPOC
20ce7b12 1984Off_t lseek (int,Off_t,int);
4d2c4e07 1985#endif
26618a56 1986# endif /* !DONT_DECLARE_STD */
20ce7b12 1987char *getlogin (void);
26618a56 1988#endif /* !__cplusplus */
79072805 1989
16d20bd9 1990#ifdef UNLINK_ALL_VERSIONS /* Currently only makes sense for VMS */
378cc40b 1991#define UNLINK unlnk
20ce7b12 1992I32 unlnk (char*);
8d063cd8 1993#else
80252599 1994#define UNLINK PerlLIO_unlink
8d063cd8 1995#endif
a687059c 1996
fe14fcc3 1997#ifndef HAS_SETREUID
85e6fe83
LW
1998# ifdef HAS_SETRESUID
1999# define setreuid(r,e) setresuid(r,e,(Uid_t)-1)
2000# define HAS_SETREUID
2001# endif
a687059c 2002#endif
fe14fcc3 2003#ifndef HAS_SETREGID
85e6fe83
LW
2004# ifdef HAS_SETRESGID
2005# define setregid(r,e) setresgid(r,e,(Gid_t)-1)
2006# define HAS_SETREGID
2007# endif
a687059c 2008#endif
ee0007ab 2009
20ce7b12 2010typedef Signal_t (*Sighandler_t) (int);
ff68c719 2011
2012#ifdef HAS_SIGACTION
2013typedef struct sigaction Sigsave_t;
2014#else
2015typedef Sighandler_t Sigsave_t;
2016#endif
2017
ee0007ab
LW
2018#define SCAN_DEF 0
2019#define SCAN_TR 1
2020#define SCAN_REPL 2
79072805
LW
2021
2022#ifdef DEBUGGING
4633a7c4 2023# ifndef register
a0d0e21e
LW
2024# define register
2025# endif
2026# define PAD_SV(po) pad_sv(po)
cea2e8a9 2027# define RUNOPS_DEFAULT Perl_runops_debug
79072805 2028#else
6b88bc9c 2029# define PAD_SV(po) PL_curpad[po]
cea2e8a9 2030# define RUNOPS_DEFAULT Perl_runops_standard
79072805
LW
2031#endif
2032
18f739ee 2033#ifdef MYMALLOC
772fe5b3 2034# ifdef MUTEX_INIT_CALLS_MALLOC
3541dd58
HM
2035# define MALLOC_INIT \
2036 STMT_START { \
2037 PL_malloc_mutex = NULL; \
2038 MUTEX_INIT(&PL_malloc_mutex); \
2039 } STMT_END
2040# define MALLOC_TERM \
2041 STMT_START { \
2042 perl_mutex tmp = PL_malloc_mutex; \
2043 PL_malloc_mutex = NULL; \
2044 MUTEX_DESTROY(&tmp); \
2045 } STMT_END
2046# else
2047# define MALLOC_INIT MUTEX_INIT(&PL_malloc_mutex)
2048# define MALLOC_TERM MUTEX_DESTROY(&PL_malloc_mutex)
2049# endif
18f739ee
IZ
2050#else
2051# define MALLOC_INIT
2052# define MALLOC_TERM
2053#endif
2054
b6d9d515 2055
0cb96387
GS
2056typedef int (CPERLscope(*runops_proc_t)) (pTHX);
2057typedef OP* (CPERLscope(*PPADDR_t)[]) (pTHX);
22c35a8c 2058
940cb80d 2059/* _ (for $_) must be first in the following list (DEFSV requires it) */
54b9620d 2060#define THREADSV_NAMES "_123456789&`'+/.,\\\";^-%=|~:\001\005!@"
a863c7d1 2061
8f1f23e8
W
2062/* NeXT has problems with crt0.o globals */
2063#if defined(__DYNAMIC__) && \
2064 (defined(NeXT) || defined(__NeXT__) || defined(__APPLE__))
2065# if defined(NeXT) || defined(__NeXT)
2066# include <mach-o/dyld.h>
2067# define environ (*environ_pointer)
0c30d9ec 2068EXT char *** environ_pointer;
8f1f23e8
W
2069# else
2070# if defined(__APPLE__)
2071# include <crt_externs.h> /* for the env array */
2072# define environ (*_NSGetEnviron())
2073# endif
0c30d9ec 2074# endif
8f1f23e8
W
2075#else
2076 /* VMS and some other platforms don't use the environ array */
a6c40364
GS
2077# if !defined(VMS)
2078# if !defined(DONT_DECLARE_STD) || \
2079 (defined(__svr4__) && defined(__GNUC__) && defined(sun)) || \
2080 defined(__sgi) || \
4d2c4e07 2081 defined(__DGUX) || defined(EPOC)
8f1f23e8 2082extern char ** environ; /* environment variables supplied via exec */
a6c40364 2083# endif
8f1f23e8
W
2084# endif
2085#endif
79072805 2086
73c4f7a1
GS
2087START_EXTERN_C
2088
79072805 2089/* handy constants */
22c35a8c 2090EXTCONST char PL_warn_uninit[]
a0d0e21e 2091 INIT("Use of uninitialized value");
22c35a8c 2092EXTCONST char PL_warn_nosemi[]
463ee0b2 2093 INIT("Semicolon seems to be missing");
22c35a8c 2094EXTCONST char PL_warn_reserved[]
463ee0b2 2095 INIT("Unquoted string \"%s\" may clash with future reserved word");
22c35a8c 2096EXTCONST char PL_warn_nl[]
93a17b20 2097 INIT("Unsuccessful %s on filename containing newline");
22c35a8c 2098EXTCONST char PL_no_wrongref[]
a0d0e21e 2099 INIT("Can't use %s ref as %s ref");
22c35a8c 2100EXTCONST char PL_no_symref[]
748a9306 2101 INIT("Can't use string (\"%.32s\") as %s ref while \"strict refs\" in use");
22c35a8c 2102EXTCONST char PL_no_usym[]
8990e307 2103 INIT("Can't use an undefined value as %s reference");
22c35a8c 2104EXTCONST char PL_no_aelem[]
93a17b20 2105 INIT("Modification of non-creatable array value attempted, subscript %d");
22c35a8c 2106EXTCONST char PL_no_helem[]
93a17b20 2107 INIT("Modification of non-creatable hash value attempted, subscript \"%s\"");
22c35a8c 2108EXTCONST char PL_no_modify[]
93a17b20 2109 INIT("Modification of a read-only value attempted");
22c35a8c 2110EXTCONST char PL_no_mem[]
93a17b20 2111 INIT("Out of memory!\n");
22c35a8c 2112EXTCONST char PL_no_security[]
463ee0b2 2113 INIT("Insecure dependency in %s%s");
22c35a8c 2114EXTCONST char PL_no_sock_func[]
93a17b20 2115 INIT("Unsupported socket function \"%s\" called");
22c35a8c 2116EXTCONST char PL_no_dir_func[]
93a17b20 2117 INIT("Unsupported directory function \"%s\" called");
22c35a8c 2118EXTCONST char PL_no_func[]
93a17b20 2119 INIT("The %s function is unimplemented");
22c35a8c 2120EXTCONST char PL_no_myglob[]
748a9306 2121 INIT("\"my\" variable %s can't be in a package");
93a17b20 2122
7575fa06 2123EXTCONST char PL_uuemap[65]
80252599
GS
2124 INIT("`!\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_");
2125
2126
79072805 2127#ifdef DOINIT
22c35a8c
GS
2128EXT char *PL_sig_name[] = { SIG_NAME };
2129EXT int PL_sig_num[] = { SIG_NUM };
2130EXT SV * PL_psig_ptr[sizeof(PL_sig_num)/sizeof(*PL_sig_num)];
2131EXT SV * PL_psig_name[sizeof(PL_sig_num)/sizeof(*PL_sig_num)];
79072805 2132#else
22c35a8c
GS
2133EXT char *PL_sig_name[];
2134EXT int PL_sig_num[];
2135EXT SV * PL_psig_ptr[];
2136EXT SV * PL_psig_name[];
79072805
LW
2137#endif
2138
bbce6d69 2139/* fast case folding tables */
2140
79072805 2141#ifdef DOINIT
9d116dd7 2142#ifdef EBCDIC
22c35a8c 2143EXT unsigned char PL_fold[] = { /* fast EBCDIC case folding table */
9d116dd7
JH
2144 0, 1, 2, 3, 4, 5, 6, 7,
2145 8, 9, 10, 11, 12, 13, 14, 15,
2146 16, 17, 18, 19, 20, 21, 22, 23,
2147 24, 25, 26, 27, 28, 29, 30, 31,
2148 32, 33, 34, 35, 36, 37, 38, 39,
2149 40, 41, 42, 43, 44, 45, 46, 47,
2150 48, 49, 50, 51, 52, 53, 54, 55,
2151 56, 57, 58, 59, 60, 61, 62, 63,
2152 64, 65, 66, 67, 68, 69, 70, 71,
2153 72, 73, 74, 75, 76, 77, 78, 79,
2154 80, 81, 82, 83, 84, 85, 86, 87,
2155 88, 89, 90, 91, 92, 93, 94, 95,
2156 96, 97, 98, 99, 100, 101, 102, 103,
2157 104, 105, 106, 107, 108, 109, 110, 111,
2158 112, 113, 114, 115, 116, 117, 118, 119,
2159 120, 121, 122, 123, 124, 125, 126, 127,
2160 128, 'A', 'B', 'C', 'D', 'E', 'F', 'G',
2161 'H', 'I', 138, 139, 140, 141, 142, 143,
2162 144, 'J', 'K', 'L', 'M', 'N', 'O', 'P',
2163 'Q', 'R', 154, 155, 156, 157, 158, 159,
2164 160, 161, 'S', 'T', 'U', 'V', 'W', 'X',
2165 'Y', 'Z', 170, 171, 172, 173, 174, 175,
2166 176, 177, 178, 179, 180, 181, 182, 183,
2167 184, 185, 186, 187, 188, 189, 190, 191,
2168 192, 'a', 'b', 'c', 'd', 'e', 'f', 'g',
2169 'h', 'i', 202, 203, 204, 205, 206, 207,
2170 208, 'j', 'k', 'l', 'm', 'n', 'o', 'p',
2171 'q', 'r', 218, 219, 220, 221, 222, 223,
2172 224, 225, 's', 't', 'u', 'v', 'w', 'x',
2173 'y', 'z', 234, 235, 236, 237, 238, 239,
2174 240, 241, 242, 243, 244, 245, 246, 247,
2175 248, 249, 250, 251, 252, 253, 254, 255
2176};
2177#else /* ascii rather than ebcdic */
22c35a8c 2178EXTCONST unsigned char PL_fold[] = {
79072805
LW
2179 0, 1, 2, 3, 4, 5, 6, 7,
2180 8, 9, 10, 11, 12, 13, 14, 15,
2181 16, 17, 18, 19, 20, 21, 22, 23,
2182 24, 25, 26, 27, 28, 29, 30, 31,
2183 32, 33, 34, 35, 36, 37, 38, 39,
2184 40, 41, 42, 43, 44, 45, 46, 47,
2185 48, 49, 50, 51, 52, 53, 54, 55,
2186 56, 57, 58, 59, 60, 61, 62, 63,
2187 64, 'a', 'b', 'c', 'd', 'e', 'f', 'g',
2188 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o',
2189 'p', 'q', 'r', 's', 't', 'u', 'v', 'w',
2190 'x', 'y', 'z', 91, 92, 93, 94, 95,
2191 96, 'A', 'B', 'C', 'D', 'E', 'F', 'G',
2192 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O',
2193 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W',
2194 'X', 'Y', 'Z', 123, 124, 125, 126, 127,
2195 128, 129, 130, 131, 132, 133, 134, 135,
2196 136, 137, 138, 139, 140, 141, 142, 143,
2197 144, 145, 146, 147, 148, 149, 150, 151,
2198 152, 153, 154, 155, 156, 157, 158, 159,
2199 160, 161, 162, 163, 164, 165, 166, 167,
2200 168, 169, 170, 171, 172, 173, 174, 175,
2201 176, 177, 178, 179, 180, 181, 182, 183,
2202 184, 185, 186, 187, 188, 189, 190, 191,
2203 192, 193, 194, 195, 196, 197, 198, 199,
2204 200, 201, 202, 203, 204, 205, 206, 207,
2205 208, 209, 210, 211, 212, 213, 214, 215,
2206 216, 217, 218, 219, 220, 221, 222, 223,
2207 224, 225, 226, 227, 228, 229, 230, 231,
2208 232, 233, 234, 235, 236, 237, 238, 239,
2209 240, 241, 242, 243, 244, 245, 246, 247,
2210 248, 249, 250, 251, 252, 253, 254, 255
2211};
9d116dd7 2212#endif /* !EBCDIC */
79072805 2213#else
22c35a8c 2214EXTCONST unsigned char PL_fold[];
79072805
LW
2215#endif
2216
2217#ifdef DOINIT
22c35a8c 2218EXT unsigned char PL_fold_locale[] = {
79072805
LW
2219 0, 1, 2, 3, 4, 5, 6, 7,
2220 8, 9, 10, 11, 12, 13, 14, 15,
2221 16, 17, 18, 19, 20, 21, 22, 23,
2222 24, 25, 26, 27, 28, 29, 30, 31,
2223 32, 33, 34, 35, 36, 37, 38, 39,
2224 40, 41, 42, 43, 44, 45, 46, 47,
2225 48, 49, 50, 51, 52, 53, 54, 55,
2226 56, 57, 58, 59, 60, 61, 62, 63,
2227 64, 'a', 'b', 'c', 'd', 'e', 'f', 'g',
2228 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o',
2229 'p', 'q', 'r', 's', 't', 'u', 'v', 'w',
2230 'x', 'y', 'z', 91, 92, 93, 94, 95,
2231 96, 'A', 'B', 'C', 'D', 'E', 'F', 'G',
2232 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O',
2233 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W',
2234 'X', 'Y', 'Z', 123, 124, 125, 126, 127,
2235 128, 129, 130, 131, 132, 133, 134, 135,
2236 136, 137, 138, 139, 140, 141, 142, 143,
2237 144, 145, 146, 147, 148, 149, 150, 151,
2238 152, 153, 154, 155, 156, 157, 158, 159,
2239 160, 161, 162, 163, 164, 165, 166, 167,
2240 168, 169, 170, 171, 172, 173, 174, 175,
2241 176, 177, 178, 179, 180, 181, 182, 183,
2242 184, 185, 186, 187, 188, 189, 190, 191,
2243 192, 193, 194, 195, 196, 197, 198, 199,
2244 200, 201, 202, 203, 204, 205, 206, 207,
2245 208, 209, 210, 211, 212, 213, 214, 215,
2246 216, 217, 218, 219, 220, 221, 222, 223,
2247 224, 225, 226, 227, 228, 229, 230, 231,
2248 232, 233, 234, 235, 236, 237, 238, 239,
2249 240, 241, 242, 243, 244, 245, 246, 247,
2250 248, 249, 250, 251, 252, 253, 254, 255
2251};
2252#else
22c35a8c 2253EXT unsigned char PL_fold_locale[];
79072805
LW
2254#endif
2255
2256#ifdef DOINIT
9d116dd7 2257#ifdef EBCDIC
22c35a8c 2258EXT unsigned char PL_freq[] = {/* EBCDIC frequencies for mixed English/C */
9d116dd7
JH
2259 1, 2, 84, 151, 154, 155, 156, 157,
2260 165, 246, 250, 3, 158, 7, 18, 29,
2261 40, 51, 62, 73, 85, 96, 107, 118,
2262 129, 140, 147, 148, 149, 150, 152, 153,
2263 255, 6, 8, 9, 10, 11, 12, 13,
2264 14, 15, 24, 25, 26, 27, 28, 226,
2265 29, 30, 31, 32, 33, 43, 44, 45,
2266 46, 47, 48, 49, 50, 76, 77, 78,
2267 79, 80, 81, 82, 83, 84, 85, 86,
2268 87, 94, 95, 234, 181, 233, 187, 190,
2269 180, 96, 97, 98, 99, 100, 101, 102,
2270 104, 112, 182, 174, 236, 232, 229, 103,
2271 228, 226, 114, 115, 116, 117, 118, 119,
2272 120, 121, 122, 235, 176, 230, 194, 162,
2273 130, 131, 132, 133, 134, 135, 136, 137,
2274 138, 139, 201, 205, 163, 217, 220, 224,
2275 5, 248, 227, 244, 242, 255, 241, 231,
2276 240, 253, 16, 197, 19, 20, 21, 187,
2277 23, 169, 210, 245, 237, 249, 247, 239,
2278 168, 252, 34, 196, 36, 37, 38, 39,
2279 41, 42, 251, 254, 238, 223, 221, 213,
2280 225, 177, 52, 53, 54, 55, 56, 57,
2281 58, 59, 60, 61, 63, 64, 65, 66,
2282 67, 68, 69, 70, 71, 72, 74, 75,
2283 205, 208, 186, 202, 200, 218, 198, 179,
2284 178, 214, 88, 89, 90, 91, 92, 93,
2285 217, 166, 170, 207, 199, 209, 206, 204,
2286 160, 212, 105, 106, 108, 109, 110, 111,
2287 203, 113, 216, 215, 192, 175, 193, 243,
2288 172, 161, 123, 124, 125, 126, 127, 128,
2289 222, 219, 211, 195, 188, 193, 185, 184,
2290 191, 183, 141, 142, 143, 144, 145, 146
2291};
2292#else /* ascii rather than ebcdic */
22c35a8c 2293EXTCONST unsigned char PL_freq[] = { /* letter frequencies for mixed English/C */
79072805
LW
2294 1, 2, 84, 151, 154, 155, 156, 157,
2295 165, 246, 250, 3, 158, 7, 18, 29,
2296 40, 51, 62, 73, 85, 96, 107, 118,
2297 129, 140, 147, 148, 149, 150, 152, 153,
2298 255, 182, 224, 205, 174, 176, 180, 217,
2299 233, 232, 236, 187, 235, 228, 234, 226,
2300 222, 219, 211, 195, 188, 193, 185, 184,
2301 191, 183, 201, 229, 181, 220, 194, 162,
2302 163, 208, 186, 202, 200, 218, 198, 179,
2303 178, 214, 166, 170, 207, 199, 209, 206,
2304 204, 160, 212, 216, 215, 192, 175, 173,
2305 243, 172, 161, 190, 203, 189, 164, 230,
2306 167, 248, 227, 244, 242, 255, 241, 231,
2307 240, 253, 169, 210, 245, 237, 249, 247,
2308 239, 168, 252, 251, 254, 238, 223, 221,
2309 213, 225, 177, 197, 171, 196, 159, 4,
2310 5, 6, 8, 9, 10, 11, 12, 13,
2311 14, 15, 16, 17, 19, 20, 21, 22,
2312 23, 24, 25, 26, 27, 28, 30, 31,
2313 32, 33, 34, 35, 36, 37, 38, 39,
2314 41, 42, 43, 44, 45, 46, 47, 48,
2315 49, 50, 52, 53, 54, 55, 56, 57,
2316 58, 59, 60, 61, 63, 64, 65, 66,
2317 67, 68, 69, 70, 71, 72, 74, 75,
2318 76, 77, 78, 79, 80, 81, 82, 83,
2319 86, 87, 88, 89, 90, 91, 92, 93,
2320 94, 95, 97, 98, 99, 100, 101, 102,
2321 103, 104, 105, 106, 108, 109, 110, 111,
2322 112, 113, 114, 115, 116, 117, 119, 120,
2323 121, 122, 123, 124, 125, 126, 127, 128,
2324 130, 131, 132, 133, 134, 135, 136, 137,
2325 138, 139, 141, 142, 143, 144, 145, 146
2326};
9d116dd7 2327#endif
79072805 2328#else
22c35a8c 2329EXTCONST unsigned char PL_freq[];
79072805
LW
2330#endif
2331
8990e307
LW
2332#ifdef DEBUGGING
2333#ifdef DOINIT
22c35a8c 2334EXTCONST char* PL_block_type[] = {
8990e307
LW
2335 "NULL",
2336 "SUB",
2337 "EVAL",
2338 "LOOP",
2339 "SUBST",
2340 "BLOCK",
2341};
2342#else
22c35a8c 2343EXTCONST char* PL_block_type[];
8990e307
LW
2344#endif
2345#endif
2346
73c4f7a1
GS
2347END_EXTERN_C
2348
79072805
LW
2349/*****************************************************************************/
2350/* This lexer/parser stuff is currently global since yacc is hard to reenter */
2351/*****************************************************************************/
8990e307 2352/* XXX This needs to be revisited, since BEGIN makes yacc re-enter... */
79072805 2353
a0d0e21e
LW
2354#include "perly.h"
2355
fb73857a 2356#define LEX_NOTPARSING 11 /* borrowed from toke.c */
2357
79072805
LW
2358typedef enum {
2359 XOPERATOR,
2360 XTERM,
79072805 2361 XREF,
8990e307 2362 XSTATE,
a0d0e21e
LW
2363 XBLOCK,
2364 XTERMBLOCK
79072805
LW
2365} expectation;
2366
dc9e4912
GS
2367enum { /* pass one of these to get_vtbl */
2368 want_vtbl_sv,
2369 want_vtbl_env,
2370 want_vtbl_envelem,
2371 want_vtbl_sig,
2372 want_vtbl_sigelem,
2373 want_vtbl_pack,
2374 want_vtbl_packelem,
2375 want_vtbl_dbline,
2376 want_vtbl_isa,
2377 want_vtbl_isaelem,
2378 want_vtbl_arylen,
2379 want_vtbl_glob,
2380 want_vtbl_mglob,
2381 want_vtbl_nkeys,
2382 want_vtbl_taint,
2383 want_vtbl_substr,
2384 want_vtbl_vec,
2385 want_vtbl_pos,
2386 want_vtbl_bm,
2387 want_vtbl_fm,
2388 want_vtbl_uvar,
2389 want_vtbl_defelem,
2390 want_vtbl_regexp,
2391 want_vtbl_collxfrm,
2392 want_vtbl_amagic,
2393 want_vtbl_amagicelem,
2394#ifdef USE_THREADS
2395 want_vtbl_mutex,
2396#endif
2397 want_vtbl_regdata,
810b8aa5
GS
2398 want_vtbl_regdatum,
2399 want_vtbl_backref
dc9e4912
GS
2400};
2401
85e6fe83
LW
2402 /* Note: the lowest 8 bits are reserved for
2403 stuffing into op->op_private */
f3aa04c2 2404#define HINT_PRIVATE_MASK 0x000000ff
85e6fe83
LW
2405#define HINT_INTEGER 0x00000001
2406#define HINT_STRICT_REFS 0x00000002
a0ed51b3
LW
2407/* #define HINT_notused4 0x00000004 */
2408#define HINT_UTF8 0x00000008
2409/* #define HINT_notused10 0x00000010 */
2410 /* Note: 20,40,80 used for NATIVE_HINTS */
85e6fe83
LW
2411
2412#define HINT_BLOCK_SCOPE 0x00000100
2413#define HINT_STRICT_SUBS 0x00000200
2414#define HINT_STRICT_VARS 0x00000400
bbce6d69 2415#define HINT_LOCALE 0x00000800
85e6fe83 2416
b3ac6de7
IZ
2417#define HINT_NEW_INTEGER 0x00001000
2418#define HINT_NEW_FLOAT 0x00002000
2419#define HINT_NEW_BINARY 0x00004000
2420#define HINT_NEW_STRING 0x00008000
2421#define HINT_NEW_RE 0x00010000
2422#define HINT_LOCALIZE_HH 0x00020000 /* %^H needs to be copied */
2423
b3eb6a9b 2424#define HINT_RE_TAINT 0x00100000
e4d48cc9 2425#define HINT_RE_EVAL 0x00200000
b3eb6a9b 2426
5ff3f7a4
GS
2427#define HINT_FILETEST_ACCESS 0x00400000
2428
d4cce5f1
NIS
2429/* Various states of an input record separator SV (rs, nrs) */
2430#define RsSNARF(sv) (! SvOK(sv))
af7d13df
MG
2431#define RsSIMPLE(sv) (SvOK(sv) && (! SvPOK(sv) || SvCUR(sv)))
2432#define RsPARA(sv) (SvPOK(sv) && ! SvCUR(sv))
5b2b9c68 2433#define RsRECORD(sv) (SvROK(sv) && (SvIV(SvRV(sv)) > 0))
79072805 2434
56953603 2435/* Enable variables which are pointers to functions */
0cb96387
GS
2436typedef regexp*(CPERLscope(*regcomp_t)) (pTHX_ char* exp, char* xend, PMOP* pm);
2437typedef I32 (CPERLscope(*regexec_t)) (pTHX_ regexp* prog, char* stringarg,
2438 char* strend, char* strbeg, I32 minend,
2439 SV* screamer, void* data, U32 flags);
f722798b
IZ
2440typedef char* (CPERLscope(*re_intuit_start_t)) (pTHX_ regexp *prog, SV *sv,
2441 char *strpos, char *strend,
2442 U32 flags,
2443 struct re_scream_pos_data_s *d);
2444typedef SV* (CPERLscope(*re_intuit_string_t)) (pTHX_ regexp *prog);
2445typedef void (CPERLscope(*regfree_t)) (pTHX_ struct regexp* r);
56953603 2446
51371543
GS
2447#ifdef USE_PURE_BISON
2448int Perl_yylex(pTHX_ YYSTYPE *lvalp, int *lcharp);
2449#endif
2450
2451typedef void (*DESTRUCTORFUNC_t) (pTHXo_ void*);
2452typedef void (*SVFUNC_t) (pTHXo_ SV*);
2453typedef I32 (*SVCOMPARE_t) (pTHXo_ SV*, SV*);
2454typedef void (*XSINIT_t) (pTHXo);
2455typedef void (*ATEXIT_t) (pTHXo_ void*);
2456typedef void (*XSUBADDR_t) (pTHXo_ CV *);
15e52e56 2457
22239a37
NIS
2458/* Set up PERLVAR macros for populating structs */
2459#define PERLVAR(var,type) type var;
51371543 2460#define PERLVARA(var,n,type) type var[n];
22239a37 2461#define PERLVARI(var,type,init) type var;
3fe35a81 2462#define PERLVARIC(var,type,init) type var;
22239a37 2463
58a50f62
GS
2464/* Interpreter exitlist entry */
2465typedef struct exitlistentry {
0cb96387 2466 void (*fn) (pTHXo_ void*);
58a50f62
GS
2467 void *ptr;
2468} PerlExitListEntry;
2469
76e3520e 2470#ifdef PERL_OBJECT
0cb96387
GS
2471#undef perl_alloc
2472#define perl_alloc Perl_alloc
2473CPerlObj* Perl_alloc (IPerlMem*, IPerlEnv*, IPerlStdIO*, IPerlLIO*, IPerlDir*, IPerlSock*, IPerlProc*);
76e3520e 2474
76e3520e
GS
2475#undef EXT
2476#define EXT
2477#undef EXTCONST
2478#define EXTCONST
2479#undef INIT
2480#define INIT(x)
2481
2482class CPerlObj {
2483public:
2484 CPerlObj(IPerlMem*, IPerlEnv*, IPerlStdIO*, IPerlLIO*, IPerlDir*, IPerlSock*, IPerlProc*);
2485 void Init(void);
2486 void* operator new(size_t nSize, IPerlMem *pvtbl);
3075ddba 2487 static void operator delete(void* pPerl, IPerlMem *pvtbl);
76e3520e
GS
2488#endif /* PERL_OBJECT */
2489
22239a37
NIS
2490#ifdef PERL_GLOBAL_STRUCT
2491struct perl_vars {
2492#include "perlvars.h"
2493};
2494
2495#ifdef PERL_CORE
533c011a
NIS
2496EXT struct perl_vars PL_Vars;
2497EXT struct perl_vars *PL_VarsPtr INIT(&PL_Vars);
2498#else /* PERL_CORE */
8736538c 2499#if !defined(__GNUC__) || !(defined(WIN32) || defined(CYGWIN32))
22239a37 2500EXT
533c011a
NIS
2501#endif /* WIN32 */
2502struct perl_vars *PL_VarsPtr;
2503#define PL_Vars (*((PL_VarsPtr) ? PL_VarsPtr : (PL_VarsPtr = Perl_GetVars())))
2504#endif /* PERL_CORE */
22239a37
NIS
2505#endif /* PERL_GLOBAL_STRUCT */
2506
8990e307 2507#ifdef MULTIPLICITY
d4cce5f1
NIS
2508/* If we have multiple interpreters define a struct
2509 holding variables which must be per-interpreter
2510 If we don't have threads anything that would have
2511 be per-thread is per-interpreter.
2512*/
2513
79072805 2514struct interpreter {
d4cce5f1 2515#include "thrdvar.h"
d4cce5f1 2516#include "intrpvar.h"
49f531da 2517};
d4cce5f1 2518
79072805 2519#else
49f531da
NIS
2520struct interpreter {
2521 char broiled;
2522};
79072805
LW
2523#endif
2524
d4cce5f1
NIS
2525#ifdef USE_THREADS
2526/* If we have threads define a struct with all the variables
2527 * that have to be per-thread
49f531da 2528 */
8023c3ce 2529
79072805 2530
49f531da 2531struct perl_thread {
49f531da 2532#include "thrdvar.h"
79072805 2533};
d4cce5f1 2534
22fae026
TM
2535typedef struct perl_thread *Thread;
2536
2537#else
2538typedef void *Thread;
22239a37
NIS
2539#endif
2540
2541/* Done with PERLVAR macros for now ... */
d4cce5f1 2542#undef PERLVAR
51371543 2543#undef PERLVARA
d4cce5f1 2544#undef PERLVARI
3fe35a81 2545#undef PERLVARIC
79072805 2546
22239a37 2547#include "thread.h"
79072805 2548#include "pp.h"
864dbfa3
GS
2549
2550#ifndef PERL_CALLCONV
2551# define PERL_CALLCONV
2552#endif
2553
2554#ifdef PERL_OBJECT
2555# define VIRTUAL virtual PERL_CALLCONV
2556#else
2557# define VIRTUAL PERL_CALLCONV
0cb96387 2558/*START_EXTERN_C*/
864dbfa3
GS
2559#endif
2560
2561#ifndef NEXT30_NO_ATTRIBUTE
2562# ifndef HASATTRIBUTE /* disable GNU-cc attribute checking? */
2563# ifdef __attribute__ /* Avoid possible redefinition errors */
2564# undef __attribute__
2565# endif
2566# define __attribute__(attr)
2567# endif
2568#endif
2569
0cb96387
GS
2570#ifdef PERL_OBJECT
2571#define PERL_DECL_PROT
2572#define perl_alloc Perl_alloc
2573#endif
864dbfa3 2574
79072805
LW
2575#include "proto.h"
2576
0cb96387
GS
2577#undef PERL_CKDEF
2578#undef PERL_PPDEF
2579#define PERL_CKDEF(s) OP *s (pTHX_ OP *o);
2580#define PERL_PPDEF(s) OP *s (pTHX);
2581#ifdef PERL_OBJECT
2582public:
2583#endif
2584
864dbfa3
GS
2585#include "pp_proto.h"
2586
0cb96387 2587#ifdef PERL_OBJECT
0cb96387
GS
2588VIRTUAL int CPerlObj::do_aspawn (void *vreally, void **vmark, void **vsp);
2589#undef PERL_DECL_PROT
2590#else
2591/*END_EXTERN_C*/
2592#endif
2593
864dbfa3 2594#ifndef PERL_OBJECT
0cb96387
GS
2595/* this has structure inits, so it cannot be included before here */
2596# include "opcode.h"
864dbfa3
GS
2597#endif
2598
d4cce5f1
NIS
2599/* The following must follow proto.h as #defines mess up syntax */
2600
22c35a8c
GS
2601#if !defined(PERL_FOR_X2P)
2602# include "embedvar.h"
2603#endif
d4cce5f1
NIS
2604
2605/* Now include all the 'global' variables
2606 * If we don't have threads or multiple interpreters
2607 * these include variables that would have been their struct-s
2608 */
533c011a
NIS
2609
2610#define PERLVAR(var,type) EXT type PL_##var;
51371543 2611#define PERLVARA(var,n,type) EXT type PL_##var[n];
533c011a
NIS
2612#define PERLVARI(var,type,init) EXT type PL_##var INIT(init);
2613#define PERLVARIC(var,type,init) EXTCONST type PL_##var INIT(init);
d4cce5f1 2614
d4cce5f1 2615#ifndef MULTIPLICITY
d4cce5f1 2616
066ef5b5
GS
2617# include "intrpvar.h"
2618# ifndef USE_THREADS
2619# include "thrdvar.h"
2620# endif
d4cce5f1 2621
22239a37
NIS
2622#endif
2623
76e3520e 2624#ifdef PERL_OBJECT
d0c1b099
GS
2625/*
2626 * The following is a buffer where new variables must
2627 * be defined to maintain binary compatibility with PERL_OBJECT
2628 * for 5.005
2629 */
51371543 2630PERLVARA(object_compatibility,30, char)
76e3520e
GS
2631};
2632
c5be433b 2633
22c35a8c
GS
2634# include "embed.h"
2635# if defined(WIN32) && !defined(WIN32IO_IS_STDIO)
2636# define errno CPerlObj::ErrorNo()
2637# endif
76e3520e 2638
22c35a8c
GS
2639# ifdef DOINIT
2640# include "INTERN.h"
2641# else
2642# include "EXTERN.h"
2643# endif
2644
2645/* this has structure inits, so it cannot be included before here */
2646# include "opcode.h"
2647
2648#endif /* PERL_OBJECT */
22239a37 2649
c5be433b
GS
2650#ifndef PERL_GLOBAL_STRUCT
2651START_EXTERN_C
2652
2653# include "perlvars.h"
2654
2655END_EXTERN_C
2656#endif
2657
d4cce5f1 2658#undef PERLVAR
51371543 2659#undef PERLVARA
d4cce5f1 2660#undef PERLVARI
0f3f18a6 2661#undef PERLVARIC
79072805 2662
73c4f7a1
GS
2663START_EXTERN_C
2664
79072805 2665#ifdef DOINIT
bbce6d69 2666
cea2e8a9
GS
2667EXT MGVTBL PL_vtbl_sv = {Perl_magic_get,
2668 Perl_magic_set,
2669 Perl_magic_len,
463ee0b2 2670 0, 0};
cea2e8a9
GS
2671EXT MGVTBL PL_vtbl_env = {0, Perl_magic_set_all_env,
2672 0, Perl_magic_clear_all_env,
66b1d557 2673 0};
cea2e8a9
GS
2674EXT MGVTBL PL_vtbl_envelem = {0, Perl_magic_setenv,
2675 0, Perl_magic_clearenv,
85e6fe83 2676 0};
22c35a8c 2677EXT MGVTBL PL_vtbl_sig = {0, 0, 0, 0, 0};
cea2e8a9
GS
2678EXT MGVTBL PL_vtbl_sigelem = {Perl_magic_getsig,
2679 Perl_magic_setsig,
2680 0, Perl_magic_clearsig,
0c30d9ec 2681 0};
cea2e8a9 2682EXT MGVTBL PL_vtbl_pack = {0, 0, Perl_magic_sizepack, Perl_magic_wipepack,
a0d0e21e 2683 0};
cea2e8a9
GS
2684EXT MGVTBL PL_vtbl_packelem = {Perl_magic_getpack,
2685 Perl_magic_setpack,
2686 0, Perl_magic_clearpack,
463ee0b2 2687 0};
cea2e8a9 2688EXT MGVTBL PL_vtbl_dbline = {0, Perl_magic_setdbline,
463ee0b2 2689 0, 0, 0};
cea2e8a9
GS
2690EXT MGVTBL PL_vtbl_isa = {0, Perl_magic_setisa,
2691 0, Perl_magic_setisa,
fb73857a 2692 0};
cea2e8a9 2693EXT MGVTBL PL_vtbl_isaelem = {0, Perl_magic_setisa,
463ee0b2 2694 0, 0, 0};
cea2e8a9
GS
2695EXT MGVTBL PL_vtbl_arylen = {Perl_magic_getarylen,
2696 Perl_magic_setarylen,
463ee0b2 2697 0, 0, 0};
cea2e8a9
GS
2698EXT MGVTBL PL_vtbl_glob = {Perl_magic_getglob,
2699 Perl_magic_setglob,
463ee0b2 2700 0, 0, 0};
cea2e8a9 2701EXT MGVTBL PL_vtbl_mglob = {0, Perl_magic_setmglob,
463ee0b2 2702 0, 0, 0};
cea2e8a9
GS
2703EXT MGVTBL PL_vtbl_nkeys = {Perl_magic_getnkeys,
2704 Perl_magic_setnkeys,
99abf803 2705 0, 0, 0};
cea2e8a9 2706EXT MGVTBL PL_vtbl_taint = {Perl_magic_gettaint,Perl_magic_settaint,
463ee0b2 2707 0, 0, 0};
cea2e8a9 2708EXT MGVTBL PL_vtbl_substr = {Perl_magic_getsubstr, Perl_magic_setsubstr,
463ee0b2 2709 0, 0, 0};
cea2e8a9
GS
2710EXT MGVTBL PL_vtbl_vec = {Perl_magic_getvec,
2711 Perl_magic_setvec,
463ee0b2 2712 0, 0, 0};
cea2e8a9
GS
2713EXT MGVTBL PL_vtbl_pos = {Perl_magic_getpos,
2714 Perl_magic_setpos,
a0d0e21e 2715 0, 0, 0};
cea2e8a9 2716EXT MGVTBL PL_vtbl_bm = {0, Perl_magic_setbm,
463ee0b2 2717 0, 0, 0};
cea2e8a9 2718EXT MGVTBL PL_vtbl_fm = {0, Perl_magic_setfm,
55497cff 2719 0, 0, 0};
cea2e8a9
GS
2720EXT MGVTBL PL_vtbl_uvar = {Perl_magic_getuvar,
2721 Perl_magic_setuvar,
463ee0b2 2722 0, 0, 0};
f93b4edd 2723#ifdef USE_THREADS
cea2e8a9 2724EXT MGVTBL PL_vtbl_mutex = {0, 0, 0, 0, Perl_magic_mutexfree};
f93b4edd 2725#endif /* USE_THREADS */
cea2e8a9 2726EXT MGVTBL PL_vtbl_defelem = {Perl_magic_getdefelem,Perl_magic_setdefelem,
02270b4e 2727 0, 0, 0};
a0d0e21e 2728
cea2e8a9
GS
2729EXT MGVTBL PL_vtbl_regexp = {0,0,0,0, Perl_magic_freeregexp};
2730EXT MGVTBL PL_vtbl_regdata = {0, 0, Perl_magic_regdata_cnt, 0, 0};
2731EXT MGVTBL PL_vtbl_regdatum = {Perl_magic_regdatum_get, 0, 0, 0, 0};
c277df42 2732
36477c24 2733#ifdef USE_LOCALE_COLLATE
22c35a8c 2734EXT MGVTBL PL_vtbl_collxfrm = {0,
cea2e8a9 2735 Perl_magic_setcollxfrm,
bbce6d69 2736 0, 0, 0};
2737#endif
a0d0e21e 2738
cea2e8a9
GS
2739EXT MGVTBL PL_vtbl_amagic = {0, Perl_magic_setamagic,
2740 0, 0, Perl_magic_setamagic};
2741EXT MGVTBL PL_vtbl_amagicelem = {0, Perl_magic_setamagic,
2742 0, 0, Perl_magic_setamagic};
a0d0e21e 2743
810b8aa5 2744EXT MGVTBL PL_vtbl_backref = {0, 0,
cea2e8a9 2745 0, 0, Perl_magic_killbackrefs};
810b8aa5 2746
bbce6d69 2747#else /* !DOINIT */
2748
22c35a8c
GS
2749EXT MGVTBL PL_vtbl_sv;
2750EXT MGVTBL PL_vtbl_env;
2751EXT MGVTBL PL_vtbl_envelem;
2752EXT MGVTBL PL_vtbl_sig;
2753EXT MGVTBL PL_vtbl_sigelem;
2754EXT MGVTBL PL_vtbl_pack;
2755EXT MGVTBL PL_vtbl_packelem;
2756EXT MGVTBL PL_vtbl_dbline;
2757EXT MGVTBL PL_vtbl_isa;
2758EXT MGVTBL PL_vtbl_isaelem;
2759EXT MGVTBL PL_vtbl_arylen;
2760EXT MGVTBL PL_vtbl_glob;
2761EXT MGVTBL PL_vtbl_mglob;
2762EXT MGVTBL PL_vtbl_nkeys;
2763EXT MGVTBL PL_vtbl_taint;
2764EXT MGVTBL PL_vtbl_substr;
2765EXT MGVTBL PL_vtbl_vec;
2766EXT MGVTBL PL_vtbl_pos;
2767EXT MGVTBL PL_vtbl_bm;
2768EXT MGVTBL PL_vtbl_fm;
2769EXT MGVTBL PL_vtbl_uvar;
a0d0e21e 2770
f93b4edd 2771#ifdef USE_THREADS
22c35a8c 2772EXT MGVTBL PL_vtbl_mutex;
f93b4edd
MB
2773#endif /* USE_THREADS */
2774
22c35a8c
GS
2775EXT MGVTBL PL_vtbl_defelem;
2776EXT MGVTBL PL_vtbl_regexp;
2777EXT MGVTBL PL_vtbl_regdata;
2778EXT MGVTBL PL_vtbl_regdatum;
a0d0e21e 2779
36477c24 2780#ifdef USE_LOCALE_COLLATE
22c35a8c 2781EXT MGVTBL PL_vtbl_collxfrm;
bbce6d69 2782#endif
a0d0e21e 2783
22c35a8c
GS
2784EXT MGVTBL PL_vtbl_amagic;
2785EXT MGVTBL PL_vtbl_amagicelem;
a0d0e21e 2786
810b8aa5
GS
2787EXT MGVTBL PL_vtbl_backref;
2788
bbce6d69 2789#endif /* !DOINIT */
85e6fe83 2790
f5284f61
IZ
2791enum {
2792 fallback_amg, abs_amg,
2793 bool__amg, nomethod_amg,
2794 string_amg, numer_amg,
2795 add_amg, add_ass_amg,
2796 subtr_amg, subtr_ass_amg,
2797 mult_amg, mult_ass_amg,
2798 div_amg, div_ass_amg,
2799 modulo_amg, modulo_ass_amg,
2800 pow_amg, pow_ass_amg,
2801 lshift_amg, lshift_ass_amg,
2802 rshift_amg, rshift_ass_amg,
2803 band_amg, band_ass_amg,
2804 bor_amg, bor_ass_amg,
2805 bxor_amg, bxor_ass_amg,
2806 lt_amg, le_amg,
2807 gt_amg, ge_amg,
2808 eq_amg, ne_amg,
2809 ncmp_amg, scmp_amg,
2810 slt_amg, sle_amg,
2811 sgt_amg, sge_amg,
2812 seq_amg, sne_amg,
2813 not_amg, compl_amg,
2814 inc_amg, dec_amg,
2815 atan2_amg, cos_amg,
2816 sin_amg, exp_amg,
2817 log_amg, sqrt_amg,
2818 repeat_amg, repeat_ass_amg,
2819 concat_amg, concat_ass_amg,
2820 copy_amg, neg_amg,
2821 to_sv_amg, to_av_amg,
2822 to_hv_amg, to_gv_amg,
2823 to_cv_amg, iter_amg,
64a0062a
JH
2824 max_amg_code
2825 /* Do not leave a trailing comma here. C9X allows it, C89 doesn't. */
f5284f61
IZ
2826};
2827
2828#define NofAMmeth max_amg_code
2829
a0d0e21e 2830#ifdef DOINIT
22c35a8c 2831EXTCONST char * PL_AMG_names[NofAMmeth] = {
a6006777 2832 "fallback", "abs", /* "fallback" should be the first. */
2833 "bool", "nomethod",
2834 "\"\"", "0+",
2835 "+", "+=",
2836 "-", "-=",
2837 "*", "*=",
2838 "/", "/=",
2839 "%", "%=",
2840 "**", "**=",
2841 "<<", "<<=",
2842 ">>", ">>=",
2843 "&", "&=",
2844 "|", "|=",
2845 "^", "^=",
2846 "<", "<=",
2847 ">", ">=",
2848 "==", "!=",
2849 "<=>", "cmp",
2850 "lt", "le",
2851 "gt", "ge",
2852 "eq", "ne",
2853 "!", "~",
2854 "++", "--",
2855 "atan2", "cos",
2856 "sin", "exp",
2857 "log", "sqrt",
2858 "x", "x=",
2859 ".", ".=",
f5284f61
IZ
2860 "=", "neg",
2861 "${}", "@{}",
2862 "%{}", "*{}",
2863 "&{}", "<>",
a0d0e21e
LW
2864};
2865#else
22c35a8c 2866EXTCONST char * PL_AMG_names[NofAMmeth];
a0d0e21e
LW
2867#endif /* def INITAMAGIC */
2868
73c4f7a1
GS
2869END_EXTERN_C
2870
a6006777 2871struct am_table {
a0d0e21e
LW
2872 long was_ok_sub;
2873 long was_ok_am;
a6006777 2874 U32 flags;
2875 CV* table[NofAMmeth];
a0d0e21e
LW
2876 long fallback;
2877};
a6006777 2878struct am_table_short {
2879 long was_ok_sub;
2880 long was_ok_am;
2881 U32 flags;
2882};
a0d0e21e 2883typedef struct am_table AMT;
a6006777 2884typedef struct am_table_short AMTS;
a0d0e21e
LW
2885
2886#define AMGfallNEVER 1
2887#define AMGfallNO 2
2888#define AMGfallYES 3
2889
a6006777 2890#define AMTf_AMAGIC 1
2891#define AMT_AMAGIC(amt) ((amt)->flags & AMTf_AMAGIC)
2892#define AMT_AMAGIC_on(amt) ((amt)->flags |= AMTf_AMAGIC)
2893#define AMT_AMAGIC_off(amt) ((amt)->flags &= ~AMTf_AMAGIC)
2894
c0315cdf
JH
2895
2896/*
2897 * some compilers like to redefine cos et alia as faster
2898 * (and less accurate?) versions called F_cos et cetera (Quidquid
2899 * latine dictum sit, altum viditur.) This trick collides with
2900 * the Perl overloading (amg). The following #defines fool both.
2901 */
2902
2903#ifdef _FASTMATH
2904# ifdef atan2
2905# define F_atan2_amg atan2_amg
2906# endif
2907# ifdef cos
2908# define F_cos_amg cos_amg
2909# endif
2910# ifdef exp
2911# define F_exp_amg exp_amg
2912# endif
2913# ifdef log
2914# define F_log_amg log_amg
2915# endif
2916# ifdef pow
2917# define F_pow_amg pow_amg
2918# endif
2919# ifdef sin
2920# define F_sin_amg sin_amg
2921# endif
2922# ifdef sqrt
2923# define F_sqrt_amg sqrt_amg
2924# endif
2925#endif /* _FASTMATH */
2926
491527d0 2927#define PERLDB_ALL 0x3f /* No _NONAME, _GOTO */
84902520
TB
2928#define PERLDBf_SUB 0x01 /* Debug sub enter/exit. */
2929#define PERLDBf_LINE 0x02 /* Keep line #. */
2930#define PERLDBf_NOOPT 0x04 /* Switch off optimizations. */
2931#define PERLDBf_INTER 0x08 /* Preserve more data for
2932 later inspections. */
2933#define PERLDBf_SUBLINE 0x10 /* Keep subr source lines. */
2934#define PERLDBf_SINGLE 0x20 /* Start with single-step on. */
491527d0
GS
2935#define PERLDBf_NONAME 0x40 /* For _SUB: no name of the subr. */
2936#define PERLDBf_GOTO 0x80 /* Report goto: call DB::goto. */
84902520 2937
3280af22
NIS
2938#define PERLDB_SUB (PL_perldb && (PL_perldb & PERLDBf_SUB))
2939#define PERLDB_LINE (PL_perldb && (PL_perldb & PERLDBf_LINE))
2940#define PERLDB_NOOPT (PL_perldb && (PL_perldb & PERLDBf_NOOPT))
2941#define PERLDB_INTER (PL_perldb && (PL_perldb & PERLDBf_INTER))
2942#define PERLDB_SUBLINE (PL_perldb && (PL_perldb & PERLDBf_SUBLINE))
2943#define PERLDB_SINGLE (PL_perldb && (PL_perldb & PERLDBf_SINGLE))
2944#define PERLDB_SUB_NN (PL_perldb && (PL_perldb & (PERLDBf_NONAME)))
2945#define PERLDB_GOTO (PL_perldb && (PL_perldb & PERLDBf_GOTO))
84902520 2946
bbce6d69 2947
36477c24 2948#ifdef USE_LOCALE_NUMERIC
bbce6d69 2949
36477c24 2950#define SET_NUMERIC_STANDARD() \
2951 STMT_START { \
864dbfa3
GS
2952 if (! PL_numeric_standard) \
2953 set_numeric_standard(); \
36477c24 2954 } STMT_END
2955
2956#define SET_NUMERIC_LOCAL() \
2957 STMT_START { \
3280af22 2958 if (! PL_numeric_local) \
864dbfa3 2959 set_numeric_local(); \
36477c24 2960 } STMT_END
bbce6d69 2961
097ee67d
JH
2962#define IS_NUMERIC_RADIX(c) \
2963 ((PL_hints & HINT_LOCALE) && \
2964 PL_numeric_radix && (c) == PL_numeric_radix)
2965
2966#define RESTORE_NUMERIC_LOCAL() if ((PL_hints & HINT_LOCALE) && PL_numeric_standard) SET_NUMERIC_LOCAL()
2967#define RESTORE_NUMERIC_STANDARD() if ((PL_hints & HINT_LOCALE) && PL_numeric_local) SET_NUMERIC_STANDARD()
5b877257 2968#define Atof my_atof
097ee67d 2969
36477c24 2970#else /* !USE_LOCALE_NUMERIC */
bbce6d69 2971
097ee67d
JH
2972#define SET_NUMERIC_STANDARD() /**/
2973#define SET_NUMERIC_LOCAL() /**/
2974#define IS_NUMERIC_RADIX(c) (0)
2975#define RESTORE_NUMERIC_LOCAL() /**/
2976#define RESTORE_NUMERIC_STANDARD() /**/
65202027 2977#define Atof Perl_atof
bbce6d69 2978
36477c24 2979#endif /* !USE_LOCALE_NUMERIC */
a0d0e21e 2980
e5c9fcd0 2981#if !defined(PERLIO_IS_STDIO) && defined(HASATTRIBUTE)
760ac839
LW
2982/*
2983 * Now we have __attribute__ out of the way
2984 * Remap printf
2985 */
2986#define printf PerlIO_stdoutf
2987#endif
2988
a868473f
NIS
2989#ifndef PERL_SCRIPT_MODE
2990#define PERL_SCRIPT_MODE "r"
2991#endif
2992
fba3b22e
MB
2993/*
2994 * nice_chunk and nice_chunk size need to be set
2995 * and queried under the protection of sv_mutex
2996 */
2997#define offer_nice_chunk(chunk, chunk_size) do { \
940cb80d 2998 LOCK_SV_MUTEX; \
3280af22
NIS
2999 if (!PL_nice_chunk) { \
3000 PL_nice_chunk = (char*)(chunk); \
3001 PL_nice_chunk_size = (chunk_size); \
fba3b22e 3002 } \
fc80cf79
GS
3003 else { \
3004 Safefree(chunk); \
3005 } \
940cb80d 3006 UNLOCK_SV_MUTEX; \
fba3b22e
MB
3007 } while (0)
3008
bd89102f
AD
3009#ifdef HAS_SEM
3010# include <sys/ipc.h>
3011# include <sys/sem.h>
3012# ifndef HAS_UNION_SEMUN /* Provide the union semun. */
3013 union semun {
3014 int val;
3015 struct semid_ds *buf;
3016 unsigned short *array;
3017 };
3018# endif
3019# ifdef USE_SEMCTL_SEMUN
3020# define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun)
3021# else
3022# ifdef USE_SEMCTL_SEMID_DS
3023# define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun.buf)
3024# endif
3025# endif
bd89102f 3026#endif
49f531da 3027
ff49bff8
JH
3028/* Mention
3029
3030 INSTALL_USR_BIN_PERL
3031
3032 I_SYS_MMAN
3033 HAS_MMAP
3034 HAS_MUNMAP
3035 HAS_MPROTECT
3036 HAS_MSYNC
3037 HAS_MADVISE
3038 Mmap_t
3039
3040 here so that Configure picks them up. */
104d25b7
JH
3041
3042#ifdef IAMSUID
3043
3044#ifdef I_SYS_STATVFS
32b3cf08
JH
3045# include <sys/statvfs.h> /* for f?statvfs() */
3046#endif
3047#ifdef I_SYS_MOUNT
3048# include <sys/mount.h> /* for *BSD f?statfs() */
3049#endif
3050#ifdef I_MNTENT
3051# include <mntent.h> /* for getmntent() */
104d25b7
JH
3052#endif
3053
3054#endif /* IAMSUID */
3055
4d8076ea 3056/* and finally... */
cceca5ed 3057#define PERL_PATCHLEVEL_H_IMPLICIT
4d8076ea 3058#include "patchlevel.h"
cceca5ed 3059#undef PERL_PATCHLEVEL_H_IMPLICIT
4d8076ea 3060
85e6fe83 3061#endif /* Include guard */