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