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