This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Update to Unicode::Collate 0.08.
[perl5.git] / perl.h
CommitLineData
a0d0e21e 1/* perl.h
a687059c 2 *
bc89e66f 3 * Copyright (c) 1987-2001, 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/*
d460ef45 14 * This file is being used for x2p stuff.
760ac839 15 * Above symbol is defined via -D in 'x2p/Makefile.SH'
d460ef45 16 * Decouple x2p stuff from some of perls more extreme eccentricities.
760ac839 17 */
55497cff 18#undef MULTIPLICITY
760ac839
LW
19#undef USE_STDIO
20#define USE_STDIO
21#endif /* PERL_FOR_X2P */
22
0cb96387 23#define VOIDUSED 1
d460ef45 24#ifdef PERL_MICRO
12ae5dfc
JH
25# include "uconfig.h"
26#else
27# include "config.h"
28#endif
0cb96387 29
aaacdc8b
GS
30#if defined(USE_ITHREADS) && defined(USE_5005THREADS)
31# include "error: USE_ITHREADS and USE_5005THREADS are incompatible"
32#endif
33
34/* XXX This next guard can disappear if the sources are revised
35 to use USE_5005THREADS throughout. -- A.D 1/6/2000
36*/
4d1ff10f
AB
37#if defined(USE_ITHREADS) && defined(USE_5005THREADS)
38# include "error: USE_ITHREADS and USE_5005THREADS are incompatible"
aaacdc8b
GS
39#endif
40
2c2d71f5
JH
41/* See L<perlguts/"The Perl API"> for detailed notes on
42 * PERL_IMPLICIT_CONTEXT and PERL_IMPLICIT_SYS */
43
6f4183fe 44#ifdef USE_ITHREADS
acfe0abc 45# if !defined(MULTIPLICITY)
6f4183fe
GS
46# define MULTIPLICITY
47# endif
48#endif
49
4d1ff10f 50#ifdef USE_5005THREADS
c5be433b
GS
51# ifndef PERL_IMPLICIT_CONTEXT
52# define PERL_IMPLICIT_CONTEXT
53# endif
c5be433b
GS
54#endif
55
c5be433b
GS
56#if defined(MULTIPLICITY)
57# ifndef PERL_IMPLICIT_CONTEXT
58# define PERL_IMPLICIT_CONTEXT
59# endif
c5be433b
GS
60#endif
61
c5be433b 62#ifdef PERL_IMPLICIT_CONTEXT
4d1ff10f 63# ifdef USE_5005THREADS
c5be433b
GS
64struct perl_thread;
65# define pTHX register struct perl_thread *thr
66# define aTHX thr
411caa50 67# define dTHR dNOOP /* only backward compatibility */
fd89de3a 68# define dTHXa(a) pTHX = (struct perl_thread*)a
c5be433b 69# else
f63b9778
GS
70# ifndef MULTIPLICITY
71# define MULTIPLICITY
72# endif
c5be433b
GS
73# define pTHX register PerlInterpreter *my_perl
74# define aTHX my_perl
fd89de3a 75# define dTHXa(a) pTHX = (PerlInterpreter*)a
c5be433b 76# endif
fd89de3a 77# define dTHX pTHX = PERL_GET_THX
c5be433b 78# define pTHX_ pTHX,
c5be433b 79# define aTHX_ aTHX,
894356b3
GS
80# define pTHX_1 2
81# define pTHX_2 3
82# define pTHX_3 4
83# define pTHX_4 5
c5be433b
GS
84#endif
85
76e3520e
GS
86#define STATIC static
87#define CPERLscope(x) x
565764a8 88#define CPERLarg void
76e3520e 89#define CPERLarg_
e3b8966e 90#define _CPERLarg
1d583055
GS
91#define PERL_OBJECT_THIS
92#define _PERL_OBJECT_THIS
93#define PERL_OBJECT_THIS_
312caa8e 94#define CALL_FPTR(fptr) (*fptr)
76e3520e 95
312caa8e
CS
96#define CALLRUNOPS CALL_FPTR(PL_runops)
97#define CALLREGCOMP CALL_FPTR(PL_regcompp)
98#define CALLREGEXEC CALL_FPTR(PL_regexecp)
f722798b
IZ
99#define CALLREG_INTUIT_START CALL_FPTR(PL_regint_start)
100#define CALLREG_INTUIT_STRING CALL_FPTR(PL_regint_string)
101#define CALLREGFREE CALL_FPTR(PL_regfree)
14dd3ad8
GS
102
103#ifdef PERL_FLEXIBLE_EXCEPTIONS
104# define CALLPROTECT CALL_FPTR(PL_protect)
105#endif
312caa8e 106
44dbb695
JH
107#ifdef HASATTRIBUTE
108# define PERL_UNUSED_DECL __attribute__((unused))
109#else
110# define PERL_UNUSED_DECL
111#endif
112
349b520e
DM
113/* gcc -Wall:
114 * for silencing unused variables that are actually used most of the time,
115 * but we cannot quite get rid of, such `ax' in PPCODE+noargs xsubs
116 */
117#define PERL_UNUSED_VAR(var) if (0) var = var
118
0cb96387 119#define NOOP (void)0
44dbb695 120#define dNOOP extern int Perl___notused PERL_UNUSED_DECL
71be2cbc 121
0cb96387
GS
122#ifndef pTHX
123# define pTHX void
124# define pTHX_
0cb96387
GS
125# define aTHX
126# define aTHX_
0cb96387
GS
127# define dTHXa(a) dNOOP
128# define dTHX dNOOP
894356b3
GS
129# define pTHX_1 1
130# define pTHX_2 2
131# define pTHX_3 3
132# define pTHX_4 4
0cb96387
GS
133#endif
134
135#ifndef pTHXo
136# define pTHXo pTHX
137# define pTHXo_ pTHX_
0cb96387
GS
138# define aTHXo aTHX
139# define aTHXo_ aTHX_
c5be433b 140# define dTHXo dTHX
71d280e3 141# define dTHXoa(x) dTHXa(x)
0cb96387
GS
142#endif
143
144#ifndef pTHXx
145# define pTHXx register PerlInterpreter *my_perl
146# define pTHXx_ pTHXx,
0cb96387
GS
147# define aTHXx my_perl
148# define aTHXx_ aTHXx,
c5be433b 149# define dTHXx dTHX
22c35a8c 150#endif
71be2cbc 151
1de7c2ac
GS
152/* Under PERL_IMPLICIT_SYS (used in Windows for fork emulation)
153 * PerlIO_foo() expands to PL_StdIO->pFOO(PL_StdIO, ...).
154 * dTHXs is therefore needed for all functions using PerlIO_foo(). */
155#ifdef PERL_IMPLICIT_SYS
156# define dTHXs dTHX
157#else
158# define dTHXs dNOOP
159#endif
160
326b05e3
GS
161#undef START_EXTERN_C
162#undef END_EXTERN_C
163#undef EXTERN_C
32f822de
GS
164#ifdef __cplusplus
165# define START_EXTERN_C extern "C" {
166# define END_EXTERN_C }
167# define EXTERN_C extern "C"
168#else
d460ef45
NIS
169# define START_EXTERN_C
170# define END_EXTERN_C
73c4f7a1 171# define EXTERN_C extern
32f822de
GS
172#endif
173
462e5cf6
MB
174#ifdef OP_IN_REGISTER
175# ifdef __GNUC__
176# define stringify_immed(s) #s
177# define stringify(s) stringify_immed(s)
d1ca3daa 178register struct op *Perl_op asm(stringify(OP_IN_REGISTER));
462e5cf6
MB
179# endif
180#endif
181
728e2803 182/*
183 * STMT_START { statements; } STMT_END;
184 * can be used as a single statement, as in
185 * if (x) STMT_START { ... } STMT_END; else ...
186 *
187 * Trying to select a version that gives no warnings...
188 */
189#if !(defined(STMT_START) && defined(STMT_END))
169d69b2 190# if defined(__GNUC__) && !defined(__STRICT_ANSI__) && !defined(__cplusplus)
728e2803 191# define STMT_START (void)( /* gcc supports ``({ STATEMENTS; })'' */
192# define STMT_END )
193# else
194 /* Now which other defined()s do we need here ??? */
195# if (VOIDFLAGS) && (defined(sun) || defined(__sun__))
196# define STMT_START if (1)
197# define STMT_END else (void)0
198# else
199# define STMT_START do
200# define STMT_END while (0)
201# endif
202# endif
203#endif
204
0cb96387 205#define WITH_THX(s) STMT_START { dTHX; s; } STMT_END
411caa50 206#define WITH_THR(s) WITH_THX(s)
ea0efc06 207
55497cff 208/*
209 * SOFT_CAST can be used for args to prototyped functions to retain some
210 * type checking; it only casts if the compiler does not know prototypes.
211 */
212#if defined(CAN_PROTOTYPE) && defined(DEBUGGING_COMPILE)
213#define SOFT_CAST(type)
214#else
215#define SOFT_CAST(type) (type)
216#endif
79072805 217
6ee623d5 218#ifndef BYTEORDER /* Should never happen -- byteorder is in config.h */
79072805
LW
219# define BYTEORDER 0x1234
220#endif
221
222/* Overall memory policy? */
223#ifndef CONSERVATIVE
224# define LIBERAL 1
225#endif
226
8ada0baa
JH
227#if 'A' == 65 && 'I' == 73 && 'J' == 74 && 'Z' == 90
228#define ASCIIish
229#else
230#undef ASCIIish
231#endif
232
79072805
LW
233/*
234 * The following contortions are brought to you on behalf of all the
235 * standards, semi-standards, de facto standards, not-so-de-facto standards
236 * of the world, as well as all the other botches anyone ever thought of.
237 * The basic theory is that if we work hard enough here, the rest of the
238 * code can be a lot prettier. Well, so much for theory. Sorry, Henry...
239 */
ac58e20f 240
ee0007ab 241/* define this once if either system, instead of cluttering up the src */
2986a63f 242#if defined(MSDOS) || defined(atarist) || defined(WIN32) || defined(NETWARE)
ee0007ab
LW
243#define DOSISH 1
244#endif
245
2986a63f 246#if defined(__STDC__) || defined(vax11c) || defined(_AIX) || defined(__stdc__) || defined(__cplusplus) || defined( EPOC) || defined(NETWARE)
352d5a3a
LW
247# define STANDARD_C 1
248#endif
249
2986a63f 250#if defined(__cplusplus) || defined(WIN32) || defined(__sgi) || defined(OS2) || defined(__DGUX) || defined( EPOC) || defined(__QNX__) || defined(NETWARE)
68dc0745 251# define DONT_DECLARE_STD 1
252#endif
253
352d5a3a 254#if defined(HASVOLATILE) || defined(STANDARD_C)
79072805
LW
255# ifdef __cplusplus
256# define VOL // to temporarily suppress warnings
257# else
258# define VOL volatile
259# endif
663a0e37 260#else
79072805 261# define VOL
663a0e37
LW
262#endif
263
3280af22
NIS
264#define TAINT (PL_tainted = TRUE)
265#define TAINT_NOT (PL_tainted = FALSE)
266#define TAINT_IF(c) if (c) { PL_tainted = TRUE; }
267#define TAINT_ENV() if (PL_tainting) { taint_env(); }
22c35a8c 268#define TAINT_PROPER(s) if (PL_tainting) { taint_proper(Nullch, s); }
a687059c 269
d460ef45 270/* XXX All process group stuff is handled in pp_sys.c. Should these
a6e633de 271 defines move there? If so, I could simplify this a lot. --AD 9/96.
272*/
273/* Process group stuff changed from traditional BSD to POSIX.
274 perlfunc.pod documents the traditional BSD-style syntax, so we'll
275 try to preserve that, if possible.
276*/
277#ifdef HAS_SETPGID
278# define BSD_SETPGRP(pid, pgrp) setpgid((pid), (pgrp))
c07a80fd 279#else
a6e633de 280# if defined(HAS_SETPGRP) && defined(USE_BSD_SETPGRP)
281# define BSD_SETPGRP(pid, pgrp) setpgrp((pid), (pgrp))
282# else
283# ifdef HAS_SETPGRP2 /* DG/UX */
284# define BSD_SETPGRP(pid, pgrp) setpgrp2((pid), (pgrp))
285# endif
286# endif
287#endif
288#if defined(BSD_SETPGRP) && !defined(HAS_SETPGRP)
289# define HAS_SETPGRP /* Well, effectively it does . . . */
290#endif
291
292/* getpgid isn't POSIX, but at least Solaris and Linux have it, and it makes
293 our life easier :-) so we'll try it.
294*/
295#ifdef HAS_GETPGID
296# define BSD_GETPGRP(pid) getpgid((pid))
297#else
298# if defined(HAS_GETPGRP) && defined(USE_BSD_GETPGRP)
299# define BSD_GETPGRP(pid) getpgrp((pid))
300# else
301# ifdef HAS_GETPGRP2 /* DG/UX */
302# define BSD_GETPGRP(pid) getpgrp2((pid))
303# endif
304# endif
305#endif
306#if defined(BSD_GETPGRP) && !defined(HAS_GETPGRP)
307# define HAS_GETPGRP /* Well, effectively it does . . . */
308#endif
309
d460ef45 310/* These are not exact synonyms, since setpgrp() and getpgrp() may
a6e633de 311 have different behaviors, but perl.h used to define USE_BSDPGRP
312 (prior to 5.003_05) so some extension might depend on it.
313*/
314#if defined(USE_BSD_SETPGRP) || defined(USE_BSD_GETPGRP)
315# ifndef USE_BSDPGRP
316# define USE_BSDPGRP
317# endif
663a0e37
LW
318#endif
319
3d62afa2 320/* Use the reentrant APIs like localtime_r and getpwent_r */
d80aa559
GS
321/* Win32 has naturally threadsafe libraries, no need to use any _r variants. */
322#if defined(USE_ITHREADS) && !defined(USE_REENTRANT_API) && !defined(WIN32)
d8916601 323# define USE_REENTRANT_API
3d62afa2
JH
324#endif
325
8ac5a1fe
MH
326/* HP-UX 10.X CMA (Common Multithreaded Architecure) insists that
327 pthread.h must be included before all other header files.
328*/
4d1ff10f 329#if (defined(USE_5005THREADS) || defined(USE_ITHREADS)) \
1feb2720 330 && defined(PTHREAD_H_FIRST) && defined(I_PTHREAD)
8ac5a1fe
MH
331# include <pthread.h>
332#endif
333
760ac839
LW
334#ifndef _TYPES_ /* If types.h defines this it's easy. */
335# ifndef major /* Does everyone's types.h define this? */
336# include <sys/types.h>
c07a80fd 337# endif
663a0e37
LW
338#endif
339
760ac839
LW
340#ifdef __cplusplus
341# ifndef I_STDARG
342# define I_STDARG 1
343# endif
344#endif
345
346#ifdef I_STDARG
347# include <stdarg.h>
348#else
349# ifdef I_VARARGS
350# include <varargs.h>
351# endif
352#endif
353
4633a7c4 354#ifdef USE_NEXT_CTYPE
0c30d9ec 355
092bebab
JH
356#if NX_CURRENT_COMPILER_RELEASE >= 500
357# include <bsd/ctypes.h>
358#else
359# if NX_CURRENT_COMPILER_RELEASE >= 400
360# include <objc/NXCType.h>
361# else /* NX_CURRENT_COMPILER_RELEASE < 400 */
362# include <appkit/NXCType.h>
363# endif /* NX_CURRENT_COMPILER_RELEASE >= 400 */
364#endif /* NX_CURRENT_COMPILER_RELEASE >= 500 */
0c30d9ec 365
366#else /* !USE_NEXT_CTYPE */
fe14fcc3 367#include <ctype.h>
0c30d9ec 368#endif /* USE_NEXT_CTYPE */
a0d0e21e
LW
369
370#ifdef METHOD /* Defined by OSF/1 v3.0 by ctype.h */
371#undef METHOD
a0d0e21e
LW
372#endif
373
12ae5dfc
JH
374#ifdef PERL_MICRO
375# define NO_LOCALE
376#endif
377
4633a7c4 378#ifdef I_LOCALE
36477c24 379# include <locale.h>
4633a7c4
LW
380#endif
381
36477c24 382#if !defined(NO_LOCALE) && defined(HAS_SETLOCALE)
383# define USE_LOCALE
384# if !defined(NO_LOCALE_COLLATE) && defined(LC_COLLATE) \
385 && defined(HAS_STRXFRM)
386# define USE_LOCALE_COLLATE
387# endif
388# if !defined(NO_LOCALE_CTYPE) && defined(LC_CTYPE)
389# define USE_LOCALE_CTYPE
390# endif
391# if !defined(NO_LOCALE_NUMERIC) && defined(LC_NUMERIC)
392# define USE_LOCALE_NUMERIC
393# endif
394#endif /* !NO_LOCALE && HAS_SETLOCALE */
a0d0e21e 395
fe14fcc3 396#include <setjmp.h>
79072805 397
a0d0e21e 398#ifdef I_SYS_PARAM
79072805
LW
399# ifdef PARAM_NEEDS_TYPES
400# include <sys/types.h>
401# endif
402# include <sys/param.h>
352d5a3a 403#endif
79072805 404
79072805 405/* Use all the "standard" definitions? */
a0d0e21e 406#if defined(STANDARD_C) && defined(I_STDLIB)
79072805 407# include <stdlib.h>
ff68c719 408#endif
03a14243 409
3f270f98
JH
410/* If this causes problems, set i_unistd=undef in the hint file. */
411#ifdef I_UNISTD
412# include <unistd.h>
413#endif
414
fa0a29af 415#if defined(HAS_SYSCALL) && !defined(HAS_SYSCALL_PROTO)
2ef53570
JH
416int syscall(int, ...);
417#endif
418
fa0a29af
JH
419#if defined(HAS_USLEEP) && !defined(HAS_USLEEP_PROTO)
420int usleep(unsigned int);
2ef53570
JH
421#endif
422
9a34ef1d
GS
423#ifdef PERL_MICRO /* Last chance to export Perl_my_swap */
424# define MYSWAP
425#endif
426
d18c6117 427#if !defined(PERL_FOR_X2P) && !defined(WIN32)
cea2e8a9
GS
428# include "embed.h"
429#endif
430
c31fac66
GS
431#define MEM_SIZE Size_t
432
51371543
GS
433#if defined(STANDARD_C) && defined(I_STDDEF)
434# include <stddef.h>
435# define STRUCT_OFFSET(s,m) offsetof(s,m)
436#else
437# define STRUCT_OFFSET(s,m) (Size_t)(&(((s *)0)->m))
438#endif
439
440#if defined(I_STRING) || defined(__cplusplus)
441# include <string.h>
442#else
443# include <strings.h>
444#endif
445
55497cff 446/* This comes after <stdlib.h> so we don't try to change the standard
447 * library prototypes; we'll use our own in proto.h instead. */
03a14243 448
4633a7c4 449#ifdef MYMALLOC
86058a2d 450# ifdef PERL_POLLUTE_MALLOC
ee13e175 451# ifndef PERL_EXTMALLOC_DEF
86058a2d
GS
452# define Perl_malloc malloc
453# define Perl_calloc calloc
454# define Perl_realloc realloc
455# define Perl_mfree free
ee13e175 456# endif
86058a2d
GS
457# else
458# define EMBEDMYMALLOC /* for compatibility */
459# endif
20ce7b12
GS
460Malloc_t Perl_malloc (MEM_SIZE nbytes);
461Malloc_t Perl_calloc (MEM_SIZE elements, MEM_SIZE size);
462Malloc_t Perl_realloc (Malloc_t where, MEM_SIZE nbytes);
86058a2d
GS
463/* 'mfree' rather than 'free', since there is already a 'perl_free'
464 * that causes clashes with case-insensitive linkers */
20ce7b12 465Free_t Perl_mfree (Malloc_t where);
55497cff 466
827e134a
GS
467typedef struct perl_mstats perl_mstats_t;
468
651b9576
GS
469# define safemalloc Perl_malloc
470# define safecalloc Perl_calloc
471# define saferealloc Perl_realloc
472# define safefree Perl_mfree
f2517201
GS
473#else /* MYMALLOC */
474# define safemalloc safesysmalloc
475# define safecalloc safesyscalloc
476# define saferealloc safesysrealloc
477# define safefree safesysfree
55497cff 478#endif /* MYMALLOC */
4633a7c4 479
a0d0e21e
LW
480#if !defined(HAS_STRCHR) && defined(HAS_INDEX) && !defined(strchr)
481#define strchr index
482#define strrchr rindex
483#endif
484
16d20bd9
AD
485#ifdef I_MEMORY
486# include <memory.h>
487#endif
488
fe14fcc3 489#ifdef HAS_MEMCPY
85e6fe83 490# if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY)
fe14fcc3 491# ifndef memcpy
20ce7b12 492 extern char * memcpy (char*, char*, int);
ee0007ab
LW
493# endif
494# endif
495#else
496# ifndef memcpy
497# ifdef HAS_BCOPY
498# define memcpy(d,s,l) bcopy(s,d,l)
499# else
500# define memcpy(d,s,l) my_bcopy(s,d,l)
501# endif
502# endif
503#endif /* HAS_MEMCPY */
fe14fcc3 504
ee0007ab 505#ifdef HAS_MEMSET
85e6fe83 506# if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY)
ee0007ab 507# ifndef memset
20ce7b12 508 extern char *memset (char*, int, int);
ee0007ab
LW
509# endif
510# endif
ee0007ab 511#else
12ae5dfc 512# undef memset
fc36a67e 513# define memset(d,c,l) my_memset(d,c,l)
ee0007ab
LW
514#endif /* HAS_MEMSET */
515
85e6fe83 516#if !defined(HAS_MEMMOVE) && !defined(memmove)
2304df62 517# if defined(HAS_BCOPY) && defined(HAS_SAFE_BCOPY)
79072805
LW
518# define memmove(d,s,l) bcopy(s,d,l)
519# else
2304df62 520# if defined(HAS_MEMCPY) && defined(HAS_SAFE_MEMCPY)
79072805 521# define memmove(d,s,l) memcpy(d,s,l)
ee0007ab 522# else
79072805 523# define memmove(d,s,l) my_bcopy(s,d,l)
ee0007ab 524# endif
352d5a3a 525# endif
d9d8d8de 526#endif
ee0007ab 527
36477c24 528#if defined(mips) && defined(ultrix) && !defined(__STDC__)
529# undef HAS_MEMCMP
530#endif
531
532#if defined(HAS_MEMCMP) && defined(HAS_SANE_MEMCMP)
85e6fe83 533# if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY)
ee0007ab 534# ifndef memcmp
20ce7b12 535 extern int memcmp (char*, char*, int);
ee0007ab
LW
536# endif
537# endif
36477c24 538# ifdef BUGGY_MSC
539 # pragma function(memcmp)
540# endif
ee0007ab
LW
541#else
542# ifndef memcmp
ecfc5424 543# define memcmp my_memcmp
352d5a3a 544# endif
36477c24 545#endif /* HAS_MEMCMP && HAS_SANE_MEMCMP */
8d063cd8 546
fc36a67e 547#ifndef memzero
c635e13b 548# ifdef HAS_MEMSET
549# define memzero(d,l) memset(d,0,l)
79072805 550# else
c635e13b 551# ifdef HAS_BZERO
552# define memzero(d,l) bzero(d,l)
79072805 553# else
fc36a67e 554# define memzero(d,l) my_bzero(d,l)
79072805
LW
555# endif
556# endif
d9d8d8de 557#endif
378cc40b 558
0f27ced1
JH
559#ifndef memchr
560# ifndef HAS_MEMCHR
561# define memchr(s,c,n) ninstr((char*)(s), ((char*)(s)) + n, &(c), &(c) + 1)
562# endif
563#endif
564
36477c24 565#ifndef HAS_BCMP
566# ifndef bcmp
567# define bcmp(s1,s2,l) memcmp(s1,s2,l)
79072805 568# endif
36477c24 569#endif /* !HAS_BCMP */
378cc40b 570
ae986130 571#ifdef I_NETINET_IN
79072805 572# include <netinet/in.h>
ae986130
LW
573#endif
574
28e8609d
JH
575#ifdef I_ARPA_INET
576# include <arpa/inet.h>
577#endif
578
84902520
TB
579#if defined(SF_APPEND) && defined(USE_SFIO) && defined(I_SFIO)
580/* <sfio.h> defines SF_APPEND and <sys/stat.h> might define SF_APPEND
581 * (the neo-BSD seem to do this). */
582# undef SF_APPEND
583#endif
584
1aef975c 585#ifdef I_SYS_STAT
84902520 586# include <sys/stat.h>
1aef975c 587#endif
79072805 588
a0d0e21e
LW
589/* The stat macros for Amdahl UTS, Unisoft System V/88 (and derivatives
590 like UTekV) are broken, sometimes giving false positives. Undefine
591 them here and let the code below set them to proper values.
592
593 The ghs macro stands for GreenHills Software C-1.8.5 which
594 is the C compiler for sysV88 and the various derivatives.
595 This header file bug is corrected in gcc-2.5.8 and later versions.
596 --Kaveh Ghazi (ghazi@noc.rutgers.edu) 10/3/94. */
597
598#if defined(uts) || (defined(m88k) && defined(ghs))
79072805
LW
599# undef S_ISDIR
600# undef S_ISCHR
601# undef S_ISBLK
602# undef S_ISREG
603# undef S_ISFIFO
604# undef S_ISLNK
ee0007ab 605#endif
135863df 606
663a0e37
LW
607#ifdef I_TIME
608# include <time.h>
ffed7fef 609#endif
663a0e37 610
fe14fcc3 611#ifdef I_SYS_TIME
85e6fe83 612# ifdef I_SYS_TIME_KERNEL
663a0e37
LW
613# define KERNEL
614# endif
615# include <sys/time.h>
85e6fe83 616# ifdef I_SYS_TIME_KERNEL
663a0e37
LW
617# undef KERNEL
618# endif
a687059c 619#endif
135863df 620
55497cff 621#if defined(HAS_TIMES) && defined(I_SYS_TIMES)
85e6fe83 622# include <sys/times.h>
d9d8d8de 623#endif
8d063cd8 624
fe14fcc3 625#if defined(HAS_STRERROR) && (!defined(HAS_MKDIR) || !defined(HAS_RMDIR))
79072805 626# undef HAS_STRERROR
663a0e37
LW
627#endif
628
629#include <errno.h>
1e743fda 630
acfe0abc 631#if defined(WIN32) && defined(PERL_IMPLICIT_SYS)
b4748376
NIS
632# define WIN32SCK_IS_STDSCK /* don't pull in custom wsock layer */
633#endif
634
4e0554ec
JH
635/* In Tru64 use the 4.4BSD struct msghdr, not the 4.3 one */
636#if defined(__osf__) && defined(__alpha) && !defined(_SOCKADDR_LEN)
637# define _SOCKADDR_LEN
638#endif
639
8d3f517a 640#if defined(HAS_SOCKET) && !defined(VMS) && !defined(WIN32) /* VMS/WIN32 handle sockets via vmsish.h/win32.h */
1e743fda
JH
641# include <sys/socket.h>
642# if defined(USE_SOCKS) && defined(I_SOCKS)
643# if !defined(INCLUDE_PROTOTYPES)
644# define INCLUDE_PROTOTYPES /* for <socks.h> */
645# define PERL_SOCKS_NEED_PROTOTYPES
646# endif
4d1ff10f 647# ifdef USE_5005THREADS
c3dedce1 648# define PERL_USE_THREADS /* store our value */
4d1ff10f 649# undef USE_5005THREADS
c3dedce1 650# endif
1e743fda 651# include <socks.h>
4d1ff10f
AB
652# ifdef USE_5005THREADS
653# undef USE_5005THREADS /* socks.h does this on its own */
c3dedce1
JH
654# endif
655# ifdef PERL_USE_THREADS
4d1ff10f 656# define USE_5005THREADS /* restore our value */
c3dedce1
JH
657# undef PERL_USE_THREADS
658# endif
1e743fda
JH
659# ifdef PERL_SOCKS_NEED_PROTOTYPES /* keep cpp space clean */
660# undef INCLUDE_PROTOTYPES
661# undef PERL_SOCKS_NEED_PROTOTYPES
ed6116ce 662# endif
d460ef45 663# endif
1e743fda 664# ifdef I_NETDB
2986a63f
JH
665# ifdef NETWARE
666# include<stdio.h>
667# endif
1e743fda
JH
668# include <netdb.h>
669# endif
670# ifndef ENOTSOCK
671# ifdef I_NET_ERRNO
672# include <net/errno.h>
673# endif
674# endif
675#endif
676
fa0a29af 677/* sockatmark() is so new (2001) that many places might have it hidden
2ef53570 678 * behind some -D_BLAH_BLAH_SOURCE guard. */
fa0a29af 679#if defined(HAS_SOCKATMARK) && !defined(HAS_SOCKATMARK_PROTO)
2ef53570
JH
680int sockatmark(int);
681#endif
682
1e743fda
JH
683#ifdef SETERRNO
684# undef SETERRNO /* SOCKS might have defined this */
ed6116ce 685#endif
f86702cc 686
687#ifdef VMS
688# define SETERRNO(errcode,vmserrcode) \
689 STMT_START { \
690 set_errno(errcode); \
691 set_vaxc_errno(vmserrcode); \
692 } STMT_END
748a9306 693#else
aba27d88 694# define SETERRNO(errcode,vmserrcode) (errno = (errcode))
748a9306 695#endif
ed6116ce 696
4d1ff10f 697#ifdef USE_5005THREADS
38a03e6e 698# define ERRSV (thr->errsv)
940cb80d
MB
699# define DEFSV THREADSV(0)
700# define SAVE_DEFSV save_threadsv(0)
38a03e6e 701#else
3280af22 702# define ERRSV GvSV(PL_errgv)
3280af22
NIS
703# define DEFSV GvSV(PL_defgv)
704# define SAVE_DEFSV SAVESPTR(GvSV(PL_defgv))
4d1ff10f 705#endif /* USE_5005THREADS */
38a03e6e 706
98eae8f5
GS
707#define ERRHV GvHV(PL_errgv) /* XXX unused, here for compatibility */
708
55497cff 709#ifndef errno
5ff3f7a4
GS
710 extern int errno; /* ANSI allows errno to be an lvalue expr.
711 * For example in multithreaded environments
712 * something like this might happen:
713 * extern int *_errno(void);
714 * #define errno (*_errno()) */
d9d8d8de 715#endif
663a0e37 716
2304df62 717#ifdef HAS_STRERROR
a0d0e21e 718# ifdef VMS
20ce7b12 719 char *strerror (int,...);
a0d0e21e 720# else
68dc0745 721#ifndef DONT_DECLARE_STD
20ce7b12 722 char *strerror (int);
68dc0745 723#endif
a0d0e21e 724# endif
2304df62
AD
725# ifndef Strerror
726# define Strerror strerror
727# endif
728#else
729# ifdef HAS_SYS_ERRLIST
79072805
LW
730 extern int sys_nerr;
731 extern char *sys_errlist[];
2304df62
AD
732# ifndef Strerror
733# define Strerror(e) \
79072805 734 ((e) < 0 || (e) >= sys_nerr ? "(unknown)" : sys_errlist[e])
2304df62 735# endif
79072805 736# endif
35c8bce7 737#endif
663a0e37 738
2304df62 739#ifdef I_SYS_IOCTL
79072805
LW
740# ifndef _IOCTL_
741# include <sys/ioctl.h>
742# endif
a687059c
LW
743#endif
744
ee0007ab 745#if defined(mc300) || defined(mc500) || defined(mc700) || defined(mc6000)
79072805
LW
746# ifdef HAS_SOCKETPAIR
747# undef HAS_SOCKETPAIR
748# endif
2304df62
AD
749# ifdef I_NDBM
750# undef I_NDBM
79072805 751# endif
a687059c
LW
752#endif
753
a687059c 754#if INTSIZE == 2
79072805
LW
755# define htoni htons
756# define ntohi ntohs
a687059c 757#else
79072805
LW
758# define htoni htonl
759# define ntohi ntohl
a687059c
LW
760#endif
761
a0d0e21e 762/* Configure already sets Direntry_t */
35c8bce7 763#if defined(I_DIRENT)
663a0e37 764# include <dirent.h>
8f1f23e8
W
765 /* NeXT needs dirent + sys/dir.h */
766# if defined(I_SYS_DIR) && (defined(NeXT) || defined(__NeXT__))
a0d0e21e
LW
767# include <sys/dir.h>
768# endif
ae986130 769#else
fe14fcc3 770# ifdef I_SYS_NDIR
79a0689e 771# include <sys/ndir.h>
663a0e37 772# else
fe14fcc3 773# ifdef I_SYS_DIR
79a0689e
LW
774# ifdef hp9000s500
775# include <ndir.h> /* may be wrong in the future */
776# else
777# include <sys/dir.h>
778# endif
663a0e37
LW
779# endif
780# endif
4633a7c4 781#endif
a687059c 782
12ae5dfc
JH
783#ifdef PERL_MICRO
784# ifndef DIR
785# define DIR void
786# endif
787#endif
788
352d5a3a
LW
789#ifdef FPUTS_BOTCH
790/* work around botch in SunOS 4.0.1 and 4.0.2 */
791# ifndef fputs
79072805 792# define fputs(sv,fp) fprintf(fp,"%s",sv)
352d5a3a
LW
793# endif
794#endif
795
c623bd54
LW
796/*
797 * The following gobbledygook brought to you on behalf of __STDC__.
798 * (I could just use #ifndef __STDC__, but this is more bulletproof
799 * in the face of half-implementations.)
800 */
801
ca6e1c26
JH
802#ifdef I_SYSMODE
803#include <sys/mode.h>
804#endif
805
c623bd54
LW
806#ifndef S_IFMT
807# ifdef _S_IFMT
808# define S_IFMT _S_IFMT
809# else
810# define S_IFMT 0170000
811# endif
812#endif
813
814#ifndef S_ISDIR
815# define S_ISDIR(m) ((m & S_IFMT) == S_IFDIR)
816#endif
817
818#ifndef S_ISCHR
819# define S_ISCHR(m) ((m & S_IFMT) == S_IFCHR)
820#endif
821
822#ifndef S_ISBLK
fe14fcc3
LW
823# ifdef S_IFBLK
824# define S_ISBLK(m) ((m & S_IFMT) == S_IFBLK)
825# else
826# define S_ISBLK(m) (0)
827# endif
c623bd54
LW
828#endif
829
830#ifndef S_ISREG
831# define S_ISREG(m) ((m & S_IFMT) == S_IFREG)
832#endif
833
834#ifndef S_ISFIFO
fe14fcc3
LW
835# ifdef S_IFIFO
836# define S_ISFIFO(m) ((m & S_IFMT) == S_IFIFO)
837# else
838# define S_ISFIFO(m) (0)
839# endif
c623bd54
LW
840#endif
841
842#ifndef S_ISLNK
843# ifdef _S_ISLNK
844# define S_ISLNK(m) _S_ISLNK(m)
845# else
846# ifdef _S_IFLNK
847# define S_ISLNK(m) ((m & S_IFMT) == _S_IFLNK)
848# else
849# ifdef S_IFLNK
850# define S_ISLNK(m) ((m & S_IFMT) == S_IFLNK)
851# else
852# define S_ISLNK(m) (0)
853# endif
854# endif
855# endif
856#endif
857
858#ifndef S_ISSOCK
859# ifdef _S_ISSOCK
860# define S_ISSOCK(m) _S_ISSOCK(m)
861# else
862# ifdef _S_IFSOCK
863# define S_ISSOCK(m) ((m & S_IFMT) == _S_IFSOCK)
864# else
865# ifdef S_IFSOCK
866# define S_ISSOCK(m) ((m & S_IFMT) == S_IFSOCK)
867# else
868# define S_ISSOCK(m) (0)
869# endif
870# endif
871# endif
872#endif
873
874#ifndef S_IRUSR
875# ifdef S_IREAD
876# define S_IRUSR S_IREAD
877# define S_IWUSR S_IWRITE
878# define S_IXUSR S_IEXEC
879# else
880# define S_IRUSR 0400
881# define S_IWUSR 0200
882# define S_IXUSR 0100
883# endif
fac7cdfc
JS
884#endif
885
886#ifndef S_IRGRP
887# ifdef S_IRUSR
888# define S_IRGRP (S_IRUSR>>3)
889# define S_IWGRP (S_IWUSR>>3)
890# define S_IXGRP (S_IXUSR>>3)
891# else
892# define S_IRGRP 0040
893# define S_IWGRP 0020
894# define S_IXGRP 0010
895# endif
896#endif
897
898#ifndef S_IROTH
899# ifdef S_IRUSR
900# define S_IROTH (S_IRUSR>>6)
901# define S_IWOTH (S_IWUSR>>6)
902# define S_IXOTH (S_IXUSR>>6)
903# else
904# define S_IROTH 0040
905# define S_IWOTH 0020
906# define S_IXOTH 0010
907# endif
c623bd54
LW
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)
d460ef45 920#endif
ca6e1c26
JH
921
922#ifndef S_IRWXG
923# define S_IRWXG (S_IRGRP|S_IWGRP|S_IXGRP)
d460ef45 924#endif
ca6e1c26
JH
925
926#ifndef S_IRWXO
927# define S_IRWXO (S_IROTH|S_IWOTH|S_IXOTH)
d460ef45 928#endif
ca6e1c26
JH
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
c89df6bf
JH
954#ifdef SPRINTF_E_BUG
955# define sprintf UTS_sprintf_wrap
956#endif
957
c495e728
JH
958/* Configure gets this right but the UTS compiler gets it wrong.
959 -- Hal Morris <hom00@utsglobal.com> */
960#ifdef UTS
961# undef UVTYPE
962# define UVTYPE unsigned
963#endif
964
05f13f53 965/*
27d4fb96 966 The IV type is supposed to be long enough to hold any integral
967 value or a pointer.
968 --Andy Dougherty August 1996
969*/
970
a22e52b9
JH
971typedef IVTYPE IV;
972typedef UVTYPE UV;
8175356b 973
10cc9d2a 974#if defined(USE_64_BIT_INT) && defined(HAS_QUAD)
6b8eaf93 975# if QUADKIND == QUAD_IS_INT64_T && defined(INT64_MAX)
5ff3f7a4
GS
976# define IV_MAX INT64_MAX
977# define IV_MIN INT64_MIN
978# define UV_MAX UINT64_MAX
cae7ae48
JH
979# ifndef UINT64_MIN
980# define UINT64_MIN 0
981# endif
5ff3f7a4
GS
982# define UV_MIN UINT64_MIN
983# else
984# define IV_MAX PERL_QUAD_MAX
985# define IV_MIN PERL_QUAD_MIN
986# define UV_MAX PERL_UQUAD_MAX
987# define UV_MIN PERL_UQUAD_MIN
988# endif
cf2093f6
JH
989# define IV_IS_QUAD
990# define UV_IS_QUAD
79072805 991#else
8175356b 992# if defined(INT32_MAX) && IVSIZE == 4
5ff3f7a4
GS
993# define IV_MAX INT32_MAX
994# define IV_MIN INT32_MIN
716026f9
DL
995# ifndef UINT32_MAX_BROKEN /* e.g. HP-UX with gcc messes this up */
996# define UV_MAX UINT32_MAX
997# else
998# define UV_MAX 4294967295U
999# endif
cae7ae48
JH
1000# ifndef UINT32_MIN
1001# define UINT32_MIN 0
1002# endif
5ff3f7a4
GS
1003# define UV_MIN UINT32_MIN
1004# else
1005# define IV_MAX PERL_LONG_MAX
1006# define IV_MIN PERL_LONG_MIN
1007# define UV_MAX PERL_ULONG_MAX
1008# define UV_MIN PERL_ULONG_MIN
1009# endif
8175356b 1010# if IVSIZE == 8
cf2093f6
JH
1011# define IV_IS_QUAD
1012# define UV_IS_QUAD
de1c2614
JH
1013# ifndef HAS_QUAD
1014# define HAS_QUAD
1015# endif
cf2093f6
JH
1016# else
1017# undef IV_IS_QUAD
1018# undef UV_IS_QUAD
de1c2614 1019# undef HAS_QUAD
cf2093f6 1020# endif
79072805 1021#endif
d7d93a81 1022
6cde8aec 1023#if defined(uts) || defined(UTS)
11afe549
HM
1024# undef UV_MAX
1025# define UV_MAX (4294967295u)
20601011
JH
1026#endif
1027
cae7ae48 1028#define IV_DIG (BIT_DIGITS(IVSIZE * 8))
22ec83e3 1029#define UV_DIG (BIT_DIGITS(UVSIZE * 8))
56431972 1030
28e5dec8 1031#ifndef NO_PERL_PRESERVE_IVUV
f5c03d33 1032#define PERL_PRESERVE_IVUV /* We like our integers to stay integers. */
28e5dec8
JH
1033#endif
1034
d460ef45 1035/*
26bb67e2
JH
1036 * The macros INT2PTR and NUM2PTR are (despite their names)
1037 * bi-directional: they will convert int/float to or from pointers.
1038 * However the conversion to int/float are named explicitly:
1039 * PTR2IV, PTR2UV, PTR2NV.
1040 *
1041 * For int conversions we do not need two casts if pointers are
1042 * the same size as IV and UV. Otherwise we need an explicit
1043 * cast (PTRV) to avoid compiler warnings.
1044 */
56431972
RB
1045#if (IVSIZE == PTRSIZE) && (UVSIZE == PTRSIZE)
1046# define PTRV UV
1047# define INT2PTR(any,d) (any)(d)
1048#else
d460ef45 1049# if PTRSIZE == LONGSIZE
56431972 1050# define PTRV unsigned long
42718184 1051# else
56431972 1052# define PTRV unsigned
42718184 1053# endif
56431972 1054# define INT2PTR(any,d) (any)(PTRV)(d)
42718184 1055#endif
56431972
RB
1056#define NUM2PTR(any,d) (any)(PTRV)(d)
1057#define PTR2IV(p) INT2PTR(IV,p)
1058#define PTR2UV(p) INT2PTR(UV,p)
1059#define PTR2NV(p) NUM2PTR(NV,p)
d460ef45 1060#if PTRSIZE == LONGSIZE
d2560b70
RB
1061# define PTR2ul(p) (unsigned long)(p)
1062#else
1063# define PTR2ul(p) INT2PTR(unsigned long,p)
1064#endif
d460ef45 1065
65202027 1066#ifdef USE_LONG_DOUBLE
1048ea30
JH
1067# if defined(HAS_LONG_DOUBLE) && LONG_DOUBLESIZE == DOUBLESIZE
1068# define LONG_DOUBLE_EQUALS_DOUBLE
1069# endif
68d4903c 1070# if !(defined(HAS_LONG_DOUBLE) && (LONG_DOUBLESIZE > DOUBLESIZE))
2d4389e4 1071# undef USE_LONG_DOUBLE /* Ouch! */
65202027
DS
1072# endif
1073#endif
1074
2d4389e4
JH
1075#ifdef OVR_DBL_DIG
1076/* Use an overridden DBL_DIG */
1077# ifdef DBL_DIG
1078# undef DBL_DIG
1079# endif
1080# define DBL_DIG OVR_DBL_DIG
1081#else
1082/* The following is all to get DBL_DIG, in order to pick a nice
1083 default value for printing floating point numbers in Gconvert.
1084 (see config.h)
1085*/
1086#ifdef I_LIMITS
1087#include <limits.h>
1088#endif
1089#ifdef I_FLOAT
1090#include <float.h>
1091#endif
1092#ifndef HAS_DBL_DIG
1093#define DBL_DIG 15 /* A guess that works lots of places */
1094#endif
1095#endif
cbca01e1
JH
1096#ifdef I_FLOAT
1097#include <float.h>
1098#endif
1099#ifndef HAS_DBL_DIG
1100#define DBL_DIG 15 /* A guess that works lots of places */
1101#endif
2d4389e4
JH
1102
1103#ifdef OVR_LDBL_DIG
1104/* Use an overridden LDBL_DIG */
1105# ifdef LDBL_DIG
1106# undef LDBL_DIG
1107# endif
1108# define LDBL_DIG OVR_LDBL_DIG
1109#else
1110/* The following is all to get LDBL_DIG, in order to pick a nice
1111 default value for printing floating point numbers in Gconvert.
1112 (see config.h)
1113*/
68d4903c
JH
1114# ifdef I_LIMITS
1115# include <limits.h>
1116# endif
1117# ifdef I_FLOAT
1118# include <float.h>
1119# endif
1120# ifndef HAS_LDBL_DIG
1121# if LONG_DOUBLESIZE == 10
1122# define LDBL_DIG 18 /* assume IEEE */
1123# else
1124# if LONG_DOUBLESIZE == 12
1125# define LDBL_DIG 18 /* gcc? */
1126# else
1127# if LONG_DOUBLESIZE == 16
1128# define LDBL_DIG 33 /* assume IEEE */
1129# else
1130# if LONG_DOUBLESIZE == DOUBLESIZE
1131# define LDBL_DIG DBL_DIG /* bummer */
1132# endif
1133# endif
1134# endif
1135# endif
1136# endif
2d4389e4
JH
1137#endif
1138
a22e52b9 1139typedef NVTYPE NV;
8175356b 1140
792d8dab
JH
1141#ifdef I_IEEEFP
1142# include <ieeefp.h>
1143#endif
923fc586 1144
65202027 1145#ifdef USE_LONG_DOUBLE
923fc586
JH
1146# ifdef I_SUNMATH
1147# include <sunmath.h>
1148# endif
2d4389e4 1149# define NV_DIG LDBL_DIG
d6c14000
JH
1150# ifdef LDBL_MANT_DIG
1151# define NV_MANT_DIG LDBL_MANT_DIG
1152# endif
06fc1729
JH
1153# ifdef LDBL_MIN
1154# define NV_MIN LDBL_MIN
1155# endif
1156# ifdef LDBL_MAX
1157# define NV_MAX LDBL_MAX
1158# endif
1159# ifdef LDBL_MIN_10_EXP
1160# define NV_MIN_10_EXP LDBL_MIN_10_EXP
1161# endif
1162# ifdef LDBL_MAX_10_EXP
1163# define NV_MAX_10_EXP LDBL_MAX_10_EXP
1164# endif
1165# ifdef LDBL_EPSILON
1166# define NV_EPSILON LDBL_EPSILON
1167# endif
f4a14a62
JH
1168# ifdef LDBL_MAX
1169# define NV_MAX LDBL_MAX
1170# define NV_MIN LDBL_MIN
1171# else
1172# ifdef HUGE_VALL
1173# define NV_MAX HUGE_VALL
1174# else
1175# ifdef HUGE_VAL
1176# define NV_MAX ((NV)HUGE_VAL)
1177# endif
1178# endif
1179# endif
68d4903c 1180# ifdef HAS_SQRTL
68d4903c
JH
1181# define Perl_cos cosl
1182# define Perl_sin sinl
1183# define Perl_sqrt sqrtl
1184# define Perl_exp expl
1185# define Perl_log logl
1186# define Perl_atan2 atan2l
1187# define Perl_pow powl
1188# define Perl_floor floorl
1189# define Perl_fmod fmodl
1190# endif
a3540c92
JH
1191/* e.g. libsunmath doesn't have modfl and frexpl as of mid-March 2000 */
1192# ifdef HAS_MODFL
1193# define Perl_modf(x,y) modfl(x,y)
e82e08d5
JH
1194# else
1195# define Perl_modf(x,y) ((long double)modf((double)(x),(double*)(y)))
a3540c92
JH
1196# endif
1197# ifdef HAS_FREXPL
dff3e0b8 1198# define Perl_frexp(x,y) frexpl(x,y)
e82e08d5
JH
1199# else
1200# define Perl_frexp(x,y) ((long double)frexp((double)(x),y))
a3540c92 1201# endif
758a5d79
JH
1202# ifndef Perl_isinf
1203# ifdef HAS_ISNANL
1204# define Perl_isnan(x) isnanl(x)
1205# endif
1206# endif
1207# ifndef Perl_isinf
1208# ifdef HAS_FINITEL
1209# define Perl_isinf(x) !(finitel(x)||Perl_isnan(x))
a3540c92
JH
1210# endif
1211# endif
65202027 1212#else
2d4389e4 1213# define NV_DIG DBL_DIG
d6c14000
JH
1214# ifdef DBL_MANT_DIG
1215# define NV_MANT_DIG DBL_MANT_DIG
1216# endif
06fc1729
JH
1217# ifdef DBL_MIN
1218# define NV_MIN DBL_MIN
1219# endif
1220# ifdef DBL_MAX
1221# define NV_MAX DBL_MAX
1222# endif
1223# ifdef DBL_MIN_10_EXP
1224# define NV_MIN_10_EXP DBL_MIN_10_EXP
1225# endif
1226# ifdef DBL_MAX_10_EXP
1227# define NV_MAX_10_EXP DBL_MAX_10_EXP
1228# endif
1229# ifdef DBL_EPSILON
1230# define NV_EPSILON DBL_EPSILON
1231# endif
f4a14a62
JH
1232# ifdef DBL_MAX
1233# define NV_MAX DBL_MAX
1234# define NV_MIN DBL_MIN
1235# else
1236# ifdef HUGE_VAL
1237# define NV_MAX HUGE_VAL
1238# endif
1239# endif
65202027
DS
1240# define Perl_cos cos
1241# define Perl_sin sin
1242# define Perl_sqrt sqrt
1243# define Perl_exp exp
1244# define Perl_log log
1245# define Perl_atan2 atan2
1246# define Perl_pow pow
1247# define Perl_floor floor
65202027 1248# define Perl_fmod fmod
a3540c92 1249# define Perl_modf(x,y) modf(x,y)
dff3e0b8 1250# define Perl_frexp(x,y) frexp(x,y)
758a5d79
JH
1251#endif
1252
1253/* rumor has it that Win32 has _fpclass() */
1254
1255#if !defined(Perl_fp_class) && (defined(HAS_FPCLASS)||defined(HAS_FPCLASSL))
1256# ifdef I_IEEFP
1257# include <ieeefp.h>
1258# endif
1259# ifdef I_FP
1260# include <fp.h>
1261# endif
1262# if defined(USE_LONG_DOUBLE) && defined(HAS_FPCLASSL)
1263# define Perl_fp_class() fpclassl(x)
1264# else
1265# define Perl_fp_class() fpclass(x)
1266# endif
1267# define Perl_fp_class_snan(x) (Perl_fp_class(x)==FP_CLASS_SNAN)
1268# define Perl_fp_class_qnan(x) (Perl_fp_class(x)==FP_CLASS_QNAN)
1269# define Perl_fp_class_nan(x) (Perl_fp_class(x)==FP_CLASS_SNAN||Perl_fp_class(x)==FP_CLASS_QNAN)
1270# define Perl_fp_class_ninf(x) (Perl_fp_class(x)==FP_CLASS_NINF)
1271# define Perl_fp_class_pinf(x) (Perl_fp_class(x)==FP_CLASS_PINF)
1272# define Perl_fp_class_inf(x) (Perl_fp_class(x)==FP_CLASS_NINF||Perl_fp_class(x)==FP_CLASS_PINF)
1273# define Perl_fp_class_nnorm(x) (Perl_fp_class(x)==FP_CLASS_NNORM)
1274# define Perl_fp_class_pnorm(x) (Perl_fp_class(x)==FP_CLASS_PNORM)
1275# define Perl_fp_class_norm(x) (Perl_fp_class(x)==FP_CLASS_NNORM||Perl_fp_class(x)==FP_CLASS_PNORM)
1276# define Perl_fp_class_ndenorm(x) (Perl_fp_class(x)==FP_CLASS_NDENORM)
1277# define Perl_fp_class_pdenorm(x) (Perl_fp_class(x)==FP_CLASS_PDENORM)
1278# define Perl_fp_class_denorm(x) (Perl_fp_class(x)==FP_CLASS_NDENORM||Perl_fp_class(x)==FP_CLASS_PDENORM)
1279# define Perl_fp_class_nzero(x) (Perl_fp_class(x)==FP_CLASS_NZERO)
1280# define Perl_fp_class_pzero(x) (Perl_fp_class(x)==FP_CLASS_PZERO)
1281# define Perl_fp_class_zero(x) (Perl_fp_class(x)==FP_CLASS_NZERO||Perl_fp_class(x)==FP_CLASS_PZERO)
1282#endif
1283
1284#if !defined(Perl_fp_class) && defined(HAS_FP_CLASS)
1285# include <math.h>
1286# if !defined(FP_SNAN) && defined(I_FP_CLASS)
1287# include <fp_class.h>
1288# endif
1289# define Perl_fp_class(x) fp_class(x)
1290# define Perl_fp_class_snan(x) (fp_class(x)==FP_SNAN)
1291# define Perl_fp_class_qnan(x) (fp_class(x)==FP_QNAN)
1292# define Perl_fp_class_nan(x) (fp_class(x)==FP_SNAN||fp_class(x)==FP_QNAN)
1293# define Perl_fp_class_ninf(x) (fp_class(x)==FP_NEG_INF)
1294# define Perl_fp_class_pinf(x) (fp_class(x)==FP_POS_INF)
1295# define Perl_fp_class_inf(x) (fp_class(x)==FP_NEG_INF||fp_class(x)==FP_POS_INF)
1296# define Perl_fp_class_nnorm(x) (fp_class(x)==FP_NEG_NORM)
1297# define Perl_fp_class_pnorm(x) (fp_class(x)==FP_POS_NORM)
1298# define Perl_fp_class_norm(x) (fp_class(x)==FP_NEG_NORM||fp_class(x)==FP_POS_NORM)
1299# define Perl_fp_class_ndenorm(x) (fp_class(x)==FP_NEG_DENORM)
1300# define Perl_fp_class_pdenorm(x) (fp_class(x)==FP_POS_DENORM)
1301# define Perl_fp_class_denorm(x) (fp_class(x)==FP_NEG_DENORM||fp_class(x)==FP_POS_DENORM)
1302# define Perl_fp_class_nzero(x) (fp_class(x)==FP_NEG_ZERO)
1303# define Perl_fp_class_pzero(x) (fp_class(x)==FP_POS_ZERO)
1304# define Perl_fp_class_zero(x) (fp_class(x)==FP_NEG_ZERO||fp_class(x)==FP_POS_ZERO)
1305#endif
1306
1307#if !defined(Perl_fp_class) && defined(HAS_FPCLASSIFY)
1308# include <math.h>
1309# define Perl_fp_class(x) fpclassify(x)
1310# define Perl_fp_class_nan(x) (fp_classify(x)==FP_SNAN|FP|_fp_classify(x)==QNAN)
1311# define Perl_fp_class_inf(x) (fp_classify(x)==FP_INFINITE)
1312# define Perl_fp_class_norm(x) (fp_classify(x)==FP_NORMAL)
1313# define Perl_fp_class_denorm(x) (fp_classify(x)==FP_SUBNORMAL)
1314# define Perl_fp_class_zero(x) (fp_classify(x)==FP_ZERO)
1315#endif
1316
1317#if !defined(Perl_fp_class) && defined(HAS_CLASS)
1318# include <math.h>
1319# ifndef _cplusplus
1320# define Perl_fp_class(x) class(x)
1321# else
1322# define Perl_fp_class(x) _class(x)
1323# endif
1324# define Perl_fp_class_snan(x) (Perl_fp_class(x)==FP_NANS)
1325# define Perl_fp_class_qnan(x) (Perl_fp_class(x)==FP_NANQ)
1326# define Perl_fp_class_nan(x) (Perl_fp_class(x)==FP_SNAN||Perl_fp_class(x)==FP_QNAN)
1327# define Perl_fp_class_ninf(x) (Perl_fp_class(x)==FP_MINUS_INF)
1328# define Perl_fp_class_pinf(x) (Perl_fp_class(x)==FP_PLUS_INF)
1329# define Perl_fp_class_inf(x) (Perl_fp_class(x)==FP_MINUS_INF||Perl_fp_class(x)==FP_PLUS_INF)
1330# define Perl_fp_class_nnorm(x) (Perl_fp_class(x)==FP_MINUS_NORM)
1331# define Perl_fp_class_pnorm(x) (Perl_fp_class(x)==FP_PLUS_NORM)
1332# define Perl_fp_class_norm(x) (Perl_fp_class(x)==FP_MINUS_NORM||Perl_fp_class(x)==FP_PLUS_NORM)
1333# define Perl_fp_class_ndenorm(x) (Perl_fp_class(x)==FP_MINUS_DENORM)
1334# define Perl_fp_class_pdenorm(x) (Perl_fp_class(x)==FP_PLUS_DENORM)
1335# define Perl_fp_class_denorm(x) (Perl_fp_class(x)==FP_MINUS_DENORM||Perl_fp_class(x)==FP_PLUS_DENORM)
1336# define Perl_fp_class_nzero(x) (Perl_fp_class(x)==FP_MINUS_ZERO)
1337# define Perl_fp_class_pzero(x) (Perl_fp_class(x)==FP_PLUS_ZERO)
1338# define Perl_fp_class_zero(x) (Perl_fp_class(x)==FP_MINUS_ZERO||Perl_fp_class(x)==FP_PLUS_ZERO)
1339#endif
1340
1341/* rumor has it that Win32 has _isnan() */
1342
1343#ifndef Perl_isnan
a3540c92 1344# ifdef HAS_ISNAN
758a5d79
JH
1345# define Perl_isnan(x) isnan((NV)x)
1346# else
1347# ifdef Perl_fp_class_nan
1348# define Perl_isnan(x) Perl_fp_class_nan(x)
1349# else
1350# ifdef HAS_UNORDERED
1351# define Perl_isnan(x) unordered((x), 0.0)
1352# else
1353# define Perl_isnan(x) ((x)!=(x))
1354# endif
1355# endif
1356# endif
1357#endif
1358
1359#ifndef Perl_isinf
1360# ifdef HAS_ISINF
1361# define Perl_isinf(x) isinf((NV)x)
a3540c92 1362# else
758a5d79
JH
1363# ifdef Perl_fp_class_inf
1364# define Perl_isinf(x) Perl_fp_class_inf(x)
1365# else
1366# define Perl_isinf(x) ((x)==NV_INF)
1367# endif
1368# endif
1369#endif
1370
1371#ifndef Perl_isfinite
1372# ifdef HAS_FINITE
1373# define Perl_isfinite(x) finite((NV)x)
1374# else
1375# ifdef HAS_ISFINITE
1376# define Perl_isfinite(x) isfinite(x)
1377# else
1378# ifdef Perl_fp_class_finite
1379# define Perl_isfinite(x) Perl_fp_class_finite(x)
1380# else
1381# define Perl_isfinite(x) !(Perl_is_inf(x)||Perl_is_nan(x))
1382# endif
1383# endif
a3540c92 1384# endif
65202027
DS
1385#endif
1386
1f727ac0
HS
1387#define Perl_atof(s) Perl_my_atof(s)
1388#define Perl_atof2(s, np) Perl_my_atof2(s, np)
cf2093f6 1389
d460ef45 1390/* Previously these definitions used hardcoded figures.
760ac839
LW
1391 * It is hoped these formula are more portable, although
1392 * no data one way or another is presently known to me.
1393 * The "PERL_" names are used because these calculated constants
1394 * do not meet the ANSI requirements for LONG_MAX, etc., which
1395 * need to be constants acceptable to #if - kja
1396 * define PERL_LONG_MAX 2147483647L
1397 * define PERL_LONG_MIN (-LONG_MAX - 1)
1398 * define PERL ULONG_MAX 4294967295L
1399 */
1400
1401#ifdef I_LIMITS /* Needed for cast_xxx() functions below. */
1402# include <limits.h>
1403#else
1404#ifdef I_VALUES
1405# include <values.h>
1406#endif
1407#endif
1408
99abf803 1409/*
1410 * Try to figure out max and min values for the integral types. THE CORRECT
1411 * SOLUTION TO THIS MESS: ADAPT enquire.c FROM GCC INTO CONFIGURE. The
1412 * following hacks are used if neither limits.h or values.h provide them:
1413 * U<TYPE>_MAX: for types >= int: ~(unsigned TYPE)0
1414 * for types < int: (unsigned TYPE)~(unsigned)0
1415 * The argument to ~ must be unsigned so that later signed->unsigned
1416 * conversion can't modify the value's bit pattern (e.g. -0 -> +0),
1417 * and it must not be smaller than int because ~ does integral promotion.
1418 * <type>_MAX: (<type>) (U<type>_MAX >> 1)
1419 * <type>_MIN: -<type>_MAX - <is_twos_complement_architecture: (3 & -1) == 3>.
1420 * The latter is a hack which happens to work on some machines but
1421 * does *not* catch any random system, or things like integer types
1422 * with NaN if that is possible.
1423 *
1424 * All of the types are explicitly cast to prevent accidental loss of
1425 * numeric range, and in the hope that they will be less likely to confuse
1426 * over-eager optimizers.
1427 *
1428 */
27d4fb96 1429
99abf803 1430#define PERL_UCHAR_MIN ((unsigned char)0)
1431
1432#ifdef UCHAR_MAX
1433# define PERL_UCHAR_MAX ((unsigned char)UCHAR_MAX)
27d4fb96 1434#else
99abf803 1435# ifdef MAXUCHAR
1436# define PERL_UCHAR_MAX ((unsigned char)MAXUCHAR)
27d4fb96 1437# else
99abf803 1438# define PERL_UCHAR_MAX ((unsigned char)~(unsigned)0)
27d4fb96 1439# endif
1440#endif
d460ef45 1441
99abf803 1442/*
1443 * CHAR_MIN and CHAR_MAX are not included here, as the (char) type may be
1444 * ambiguous. It may be equivalent to (signed char) or (unsigned char)
1445 * depending on local options. Until Configure detects this (or at least
1446 * detects whether the "signed" keyword is available) the CHAR ranges
1447 * will not be included. UCHAR functions normally.
1448 * - kja
1449 */
27d4fb96 1450
99abf803 1451#define PERL_USHORT_MIN ((unsigned short)0)
1452
1453#ifdef USHORT_MAX
1454# define PERL_USHORT_MAX ((unsigned short)USHORT_MAX)
27d4fb96 1455#else
99abf803 1456# ifdef MAXUSHORT
1457# define PERL_USHORT_MAX ((unsigned short)MAXUSHORT)
27d4fb96 1458# else
ef2f54b0
CB
1459# ifdef USHRT_MAX
1460# define PERL_USHORT_MAX ((unsigned short)USHRT_MAX)
1461# else
1462# define PERL_USHORT_MAX ((unsigned short)~(unsigned)0)
1463# endif
27d4fb96 1464# endif
1465#endif
1466
27d4fb96 1467#ifdef SHORT_MAX
99abf803 1468# define PERL_SHORT_MAX ((short)SHORT_MAX)
27d4fb96 1469#else
1470# ifdef MAXSHORT /* Often used in <values.h> */
99abf803 1471# define PERL_SHORT_MAX ((short)MAXSHORT)
27d4fb96 1472# else
ef2f54b0
CB
1473# ifdef SHRT_MAX
1474# define PERL_SHORT_MAX ((short)SHRT_MAX)
1475# else
1476# define PERL_SHORT_MAX ((short) (PERL_USHORT_MAX >> 1))
1477# endif
27d4fb96 1478# endif
1479#endif
1480
1481#ifdef SHORT_MIN
99abf803 1482# define PERL_SHORT_MIN ((short)SHORT_MIN)
27d4fb96 1483#else
1484# ifdef MINSHORT
99abf803 1485# define PERL_SHORT_MIN ((short)MINSHORT)
27d4fb96 1486# else
ef2f54b0
CB
1487# ifdef SHRT_MIN
1488# define PERL_SHORT_MIN ((short)SHRT_MIN)
1489# else
1490# define PERL_SHORT_MIN (-PERL_SHORT_MAX - ((3 & -1) == 3))
1491# endif
27d4fb96 1492# endif
1493#endif
1494
99abf803 1495#ifdef UINT_MAX
1496# define PERL_UINT_MAX ((unsigned int)UINT_MAX)
27d4fb96 1497#else
99abf803 1498# ifdef MAXUINT
1499# define PERL_UINT_MAX ((unsigned int)MAXUINT)
27d4fb96 1500# else
99abf803 1501# define PERL_UINT_MAX (~(unsigned int)0)
27d4fb96 1502# endif
1503#endif
1504
99abf803 1505#define PERL_UINT_MIN ((unsigned int)0)
27d4fb96 1506
1507#ifdef INT_MAX
99abf803 1508# define PERL_INT_MAX ((int)INT_MAX)
27d4fb96 1509#else
1510# ifdef MAXINT /* Often used in <values.h> */
99abf803 1511# define PERL_INT_MAX ((int)MAXINT)
27d4fb96 1512# else
99abf803 1513# define PERL_INT_MAX ((int)(PERL_UINT_MAX >> 1))
27d4fb96 1514# endif
1515#endif
1516
1517#ifdef INT_MIN
99abf803 1518# define PERL_INT_MIN ((int)INT_MIN)
27d4fb96 1519#else
1520# ifdef MININT
99abf803 1521# define PERL_INT_MIN ((int)MININT)
27d4fb96 1522# else
1523# define PERL_INT_MIN (-PERL_INT_MAX - ((3 & -1) == 3))
1524# endif
1525#endif
1526
99abf803 1527#ifdef ULONG_MAX
1528# define PERL_ULONG_MAX ((unsigned long)ULONG_MAX)
27d4fb96 1529#else
99abf803 1530# ifdef MAXULONG
1531# define PERL_ULONG_MAX ((unsigned long)MAXULONG)
27d4fb96 1532# else
99abf803 1533# define PERL_ULONG_MAX (~(unsigned long)0)
27d4fb96 1534# endif
1535#endif
1536
99abf803 1537#define PERL_ULONG_MIN ((unsigned long)0L)
27d4fb96 1538
760ac839 1539#ifdef LONG_MAX
99abf803 1540# define PERL_LONG_MAX ((long)LONG_MAX)
760ac839
LW
1541#else
1542# ifdef MAXLONG /* Often used in <values.h> */
99abf803 1543# define PERL_LONG_MAX ((long)MAXLONG)
760ac839 1544# else
99abf803 1545# define PERL_LONG_MAX ((long) (PERL_ULONG_MAX >> 1))
760ac839
LW
1546# endif
1547#endif
1548
1549#ifdef LONG_MIN
99abf803 1550# define PERL_LONG_MIN ((long)LONG_MIN)
760ac839
LW
1551#else
1552# ifdef MINLONG
99abf803 1553# define PERL_LONG_MIN ((long)MINLONG)
760ac839 1554# else
27d4fb96 1555# define PERL_LONG_MIN (-PERL_LONG_MAX - ((3 & -1) == 3))
760ac839
LW
1556# endif
1557#endif
1558
d7d93a81 1559#ifdef UV_IS_QUAD
99abf803 1560
99abf803 1561# define PERL_UQUAD_MAX (~(UV)0)
f1c3b19a 1562# define PERL_UQUAD_MIN ((UV)0)
99abf803 1563# define PERL_QUAD_MAX ((IV) (PERL_UQUAD_MAX >> 1))
a6e633de 1564# define PERL_QUAD_MIN (-PERL_QUAD_MAX - ((3 & -1) == 3))
27d4fb96 1565
79072805
LW
1566#endif
1567
880b20b6
IZ
1568struct perl_mstats {
1569 UV *nfree;
1570 UV *ntotal;
1571 IV topbucket, topbucket_ev, topbucket_odd, totfree, total, total_chain;
1572 IV total_sbrk, sbrks, sbrk_good, sbrk_slack, start_slack, sbrked_remains;
1573 IV minbucket;
1574 /* Level 1 info */
1575 UV *bucket_mem_size;
1576 UV *bucket_available_size;
1577 UV nbuckets;
1578};
830247a4 1579struct RExC_state_t;
880b20b6 1580
ee0007ab 1581typedef MEM_SIZE STRLEN;
450a55e4 1582
79072805
LW
1583typedef struct op OP;
1584typedef struct cop COP;
1585typedef struct unop UNOP;
1586typedef struct binop BINOP;
1587typedef struct listop LISTOP;
1588typedef struct logop LOGOP;
79072805
LW
1589typedef struct pmop PMOP;
1590typedef struct svop SVOP;
7934575e 1591typedef struct padop PADOP;
79072805 1592typedef struct pvop PVOP;
79072805
LW
1593typedef struct loop LOOP;
1594
93a17b20 1595typedef struct interpreter PerlInterpreter;
d2b3f365
SS
1596
1597/* Amdahl's <ksync.h> has struct sv */
1598/* SGI's <sys/sema.h> has struct sv */
1599#if defined(UTS) || defined(__sgi)
1600# define STRUCT_SV perl_sv
b8d3c5db
JH
1601#else
1602# define STRUCT_SV sv
1603#endif
1604typedef struct STRUCT_SV SV;
79072805
LW
1605typedef struct av AV;
1606typedef struct hv HV;
1607typedef struct cv CV;
378cc40b 1608typedef struct regexp REGEXP;
79072805 1609typedef struct gp GP;
0c30d9ec 1610typedef struct gv GV;
8990e307 1611typedef struct io IO;
c09156bb 1612typedef struct context PERL_CONTEXT;
79072805
LW
1613typedef struct block BLOCK;
1614
1615typedef struct magic MAGIC;
ed6116ce 1616typedef struct xrv XRV;
79072805
LW
1617typedef struct xpv XPV;
1618typedef struct xpviv XPVIV;
ff68c719 1619typedef struct xpvuv XPVUV;
79072805
LW
1620typedef struct xpvnv XPVNV;
1621typedef struct xpvmg XPVMG;
1622typedef struct xpvlv XPVLV;
1623typedef struct xpvav XPVAV;
1624typedef struct xpvhv XPVHV;
1625typedef struct xpvgv XPVGV;
1626typedef struct xpvcv XPVCV;
1627typedef struct xpvbm XPVBM;
1628typedef struct xpvfm XPVFM;
8990e307 1629typedef struct xpvio XPVIO;
79072805
LW
1630typedef struct mgvtbl MGVTBL;
1631typedef union any ANY;
5f7fde29
GS
1632typedef struct ptr_tbl_ent PTR_TBL_ENT_t;
1633typedef struct ptr_tbl PTR_TBL_t;
8d063cd8 1634
378cc40b 1635#include "handy.h"
a0d0e21e 1636
6b8eaf93 1637#if defined(USE_LARGE_FILES) && !defined(NO_64_BIT_RAWIO)
6b8eaf93
JH
1638# if LSEEKSIZE == 8 && !defined(USE_64_BIT_RAWIO)
1639# define USE_64_BIT_RAWIO /* implicit */
1640# endif
4564133c
JH
1641#endif
1642
6b8eaf93
JH
1643/* Notice the use of HAS_FSEEKO: now we are obligated to always use
1644 * fseeko/ftello if possible. Don't go #defining ftell to ftello yourself,
1645 * however, because operating systems like to do that themself. */
1646#ifndef FSEEKSIZE
1647# ifdef HAS_FSEEKO
1648# define FSEEKSIZE LSEEKSIZE
1649# else
1650# define FSEEKSIZE LONGSIZE
d460ef45 1651# endif
6b8eaf93
JH
1652#endif
1653
1654#if defined(USE_LARGE_FILES) && !defined(NO_64_BIT_STDIO)
6b8eaf93
JH
1655# if FSEEKSIZE == 8 && !defined(USE_64_BIT_STDIO)
1656# define USE_64_BIT_STDIO /* implicit */
1657# endif
1658#endif
4564133c 1659
09458382 1660#ifdef USE_64_BIT_RAWIO
d9b3e12d
JH
1661# ifdef HAS_OFF64_T
1662# undef Off_t
1663# define Off_t off64_t
1664# undef LSEEKSIZE
1665# define LSEEKSIZE 8
5ff3f7a4 1666# endif
d9b3e12d
JH
1667/* Most 64-bit environments have defines like _LARGEFILE_SOURCE that
1668 * will trigger defines like the ones below. Some 64-bit environments,
09458382 1669 * however, do not. Therefore we have to explicitly mix and match. */
d9b3e12d
JH
1670# if defined(USE_OPEN64)
1671# define open open64
5ff3f7a4 1672# endif
d9b3e12d
JH
1673# if defined(USE_LSEEK64)
1674# define lseek lseek64
6b8eaf93
JH
1675# else
1676# if defined(USE_LLSEEK)
1677# define lseek llseek
1678# endif
d9b3e12d
JH
1679# endif
1680# if defined(USE_STAT64)
1681# define stat stat64
1682# endif
1683# if defined(USE_FSTAT64)
1684# define fstat fstat64
1685# endif
1686# if defined(USE_LSTAT64)
1687# define lstat lstat64
1688# endif
1689# if defined(USE_FLOCK64)
1690# define flock flock64
1691# endif
1692# if defined(USE_LOCKF64)
1693# define lockf lockf64
1694# endif
1695# if defined(USE_FCNTL64)
1696# define fcntl fcntl64
1697# endif
1698# if defined(USE_TRUNCATE64)
1699# define truncate truncate64
1700# endif
1701# if defined(USE_FTRUNCATE64)
1702# define ftruncate ftruncate64
1703# endif
1704#endif
1705
1706#ifdef USE_64_BIT_STDIO
1707# ifdef HAS_FPOS64_T
1708# undef Fpos_t
1709# define Fpos_t fpos64_t
1710# endif
1711/* Most 64-bit environments have defines like _LARGEFILE_SOURCE that
1712 * will trigger defines like the ones below. Some 64-bit environments,
1713 * however, do not. */
1714# if defined(USE_FOPEN64)
1715# define fopen fopen64
1716# endif
1717# if defined(USE_FSEEK64)
6b8eaf93 1718# define fseek fseek64 /* don't do fseeko here, see perlio.c */
d9b3e12d
JH
1719# endif
1720# if defined(USE_FTELL64)
6b8eaf93 1721# define ftell ftell64 /* don't do ftello here, see perlio.c */
d9b3e12d
JH
1722# endif
1723# if defined(USE_FSETPOS64)
1724# define fsetpos fsetpos64
1725# endif
1726# if defined(USE_FGETPOS64)
1727# define fgetpos fgetpos64
1728# endif
1729# if defined(USE_TMPFILE64)
1730# define tmpfile tmpfile64
1731# endif
1732# if defined(USE_FREOPEN64)
1733# define freopen freopen64
5ff3f7a4
GS
1734# endif
1735#endif
1736
2c2d71f5
JH
1737#if defined(OS2)
1738# include "iperlsys.h"
1739#endif
1740
6f71a643
JH
1741#if defined(__OPEN_VM)
1742# include "vmesa/vmesaish.h"
1743#endif
1744
748a9306 1745#ifdef DOSISH
4633a7c4
LW
1746# if defined(OS2)
1747# include "os2ish.h"
1748# else
748a9306 1749# include "dosish.h"
4633a7c4 1750# endif
a0d0e21e 1751#else
748a9306
LW
1752# if defined(VMS)
1753# include "vmsish.h"
1754# else
0c30d9ec 1755# if defined(PLAN9)
1756# include "./plan9/plan9ish.h"
1757# else
1d84e8df
JH
1758# if defined(MPE)
1759# include "mpeix/mpeixish.h"
1760# else
495c5fdc
PG
1761# if defined(__VOS__)
1762# include "vosish.h"
1763# else
4d2c4e07
OF
1764# if defined(EPOC)
1765# include "epocish.h"
1766# else
cd39f2b6
JH
1767# if defined(MACOS_TRADITIONAL)
1768# include "macos/macish.h"
2b3f4ecd
JH
1769# ifndef NO_ENVIRON_ARRAY
1770# define NO_ENVIRON_ARRAY
1771# endif
cd39f2b6
JH
1772# else
1773# include "unixish.h"
1774# endif
4d2c4e07 1775# endif
495c5fdc 1776# endif
1d84e8df 1777# endif
0c30d9ec 1778# endif
748a9306 1779# endif
13b6e58c
JH
1780#endif
1781
1782#ifndef NO_ENVIRON_ARRAY
1783# define USE_ENVIRON_ARRAY
1784#endif
32f822de 1785
103a7189
JH
1786#ifdef JPL
1787 /* E.g. JPL needs to operate on a copy of the real environment.
1788 * JDK 1.2 and 1.3 seem to get upset if the original environment
1789 * is diddled with. */
1790# define NEED_ENVIRON_DUP_FOR_MODIFY
1791#endif
1792
c77b533b
JH
1793/*
1794 * initialise to avoid floating-point exceptions from overflow, etc
1795 */
1796#ifndef PERL_FPU_INIT
1797# ifdef HAS_FPSETMASK
1798# if HAS_FLOATINGPOINT_H
1799# include <floatingpoint.h>
1800# endif
1801# define PERL_FPU_INIT fpsetmask(0);
c77b533b 1802# else
7014c407
JH
1803# if defined(SIGFPE) && defined(SIG_IGN)
1804# define PERL_FPU_INIT signal(SIGFPE, SIG_IGN);
1805# else
1806# define PERL_FPU_INIT
1807# endif
c77b533b
JH
1808# endif
1809#endif
1810
ed344e4f
IZ
1811#ifndef PERL_SYS_INIT3
1812# define PERL_SYS_INIT3(argvp,argcp,envp) PERL_SYS_INIT(argvp,argcp)
1813#endif
1814
0f31cffe
GS
1815#ifndef MAXPATHLEN
1816# ifdef PATH_MAX
b990c8b2
JH
1817# ifdef _POSIX_PATH_MAX
1818# if PATH_MAX > _POSIX_PATH_MAX
1819/* MAXPATHLEN is supposed to include the final null character,
1820 * as opposed to PATH_MAX and _POSIX_PATH_MAX. */
1821# define MAXPATHLEN (PATH_MAX+1)
1822# else
1823# define MAXPATHLEN (_POSIX_PATH_MAX+1)
1824# endif
1825# else
1826# define MAXPATHLEN (PATH_MAX+1)
1827# endif
0f31cffe 1828# else
b990c8b2
JH
1829# ifdef _POSIX_PATH_MAX
1830# define MAXPATHLEN (_POSIX_PATH_MAX+1)
1831# else
1832# define MAXPATHLEN 1024 /* Err on the large side. */
1833# endif
0f31cffe
GS
1834# endif
1835#endif
1836
d460ef45 1837/*
4d1ff10f 1838 * USE_5005THREADS needs to be after unixish.h as <pthread.h> includes
dd96f567 1839 * <sys/signal.h> which defines NSIG - which will stop inclusion of <signal.h>
32f822de
GS
1840 * this results in many functions being undeclared which bothers C++
1841 * May make sense to have threads after "*ish.h" anyway
1842 */
1843
4d1ff10f
AB
1844#if defined(USE_5005THREADS) || defined(USE_ITHREADS)
1845# if defined(USE_5005THREADS)
79d59c5f
GS
1846 /* pending resolution of licensing issues, we avoid the erstwhile
1847 * atomic.h everywhere */
1848# define EMULATE_ATOMIC_REFCOUNTS
1feb2720 1849# endif
2986a63f
JH
1850# ifdef NETWARE
1851# include <nw5thread.h>
1852# else
32f822de
GS
1853# ifdef FAKE_THREADS
1854# include "fakethr.h"
1855# else
1856# ifdef WIN32
1857# include <win32thread.h>
1858# else
dd96f567
IZ
1859# ifdef OS2
1860# include "os2thread.h"
1861# else
7f3d1cf1 1862# ifdef I_MACH_CTHREADS
bdd66968 1863# include <mach/cthreads.h>
8f1f23e8 1864# if (defined(NeXT) || defined(__NeXT__)) && defined(PERL_POLLUTE_MALLOC)
772fe5b3
HM
1865# define MUTEX_INIT_CALLS_MALLOC
1866# endif
7f3d1cf1
BH
1867typedef cthread_t perl_os_thread;
1868typedef mutex_t perl_mutex;
1869typedef condition_t perl_cond;
1870typedef void * perl_key;
1871# else /* Posix threads */
1f5ae88c
JH
1872# ifdef I_PTHREAD
1873# include <pthread.h>
1874# endif
7f3d1cf1
BH
1875typedef pthread_t perl_os_thread;
1876typedef pthread_mutex_t perl_mutex;
1877typedef pthread_cond_t perl_cond;
1878typedef pthread_key_t perl_key;
1879# endif /* I_MACH_CTHREADS */
dd96f567 1880# endif /* OS2 */
32f822de
GS
1881# endif /* WIN32 */
1882# endif /* FAKE_THREADS */
2986a63f 1883#endif /* NETWARE */
4d1ff10f 1884#endif /* USE_5005THREADS || USE_ITHREADS */
c5be433b
GS
1885
1886#ifdef WIN32
1feb2720 1887# include "win32.h"
c5be433b
GS
1888#endif
1889
2986a63f
JH
1890#ifdef NETWARE
1891# include "netware.h"
1892#endif
1893
68dc0745 1894#ifdef VMS
6b88bc9c 1895# define STATUS_NATIVE PL_statusvalue_vms
68dc0745 1896# define STATUS_NATIVE_EXPORT \
d98f61e7 1897 (((I32)PL_statusvalue_vms == -1 ? 44 : PL_statusvalue_vms) | (VMSISH_HUSHED ? 0x10000000 : 0))
68dc0745 1898# define STATUS_NATIVE_SET(n) \
1899 STMT_START { \
6b88bc9c
GS
1900 PL_statusvalue_vms = (n); \
1901 if ((I32)PL_statusvalue_vms == -1) \
3280af22 1902 PL_statusvalue = -1; \
6b88bc9c 1903 else if (PL_statusvalue_vms & STS$M_SUCCESS) \
3280af22 1904 PL_statusvalue = 0; \
6b88bc9c
GS
1905 else if ((PL_statusvalue_vms & STS$M_SEVERITY) == 0) \
1906 PL_statusvalue = 1 << 8; \
68dc0745 1907 else \
6b88bc9c 1908 PL_statusvalue = (PL_statusvalue_vms & STS$M_SEVERITY) << 8; \
68dc0745 1909 } STMT_END
3280af22 1910# define STATUS_POSIX PL_statusvalue
68dc0745 1911# ifdef VMSISH_STATUS
1912# define STATUS_CURRENT (VMSISH_STATUS ? STATUS_NATIVE : STATUS_POSIX)
1913# else
1914# define STATUS_CURRENT STATUS_POSIX
1915# endif
1916# define STATUS_POSIX_SET(n) \
1917 STMT_START { \
3280af22
NIS
1918 PL_statusvalue = (n); \
1919 if (PL_statusvalue != -1) { \
1920 PL_statusvalue &= 0xFFFF; \
6b88bc9c 1921 PL_statusvalue_vms = PL_statusvalue ? 44 : 1; \
68dc0745 1922 } \
6b88bc9c 1923 else PL_statusvalue_vms = -1; \
68dc0745 1924 } STMT_END
6b88bc9c
GS
1925# define STATUS_ALL_SUCCESS (PL_statusvalue = 0, PL_statusvalue_vms = 1)
1926# define STATUS_ALL_FAILURE (PL_statusvalue = 1, PL_statusvalue_vms = 44)
68dc0745 1927#else
1928# define STATUS_NATIVE STATUS_POSIX
1929# define STATUS_NATIVE_EXPORT STATUS_POSIX
1930# define STATUS_NATIVE_SET STATUS_POSIX_SET
3280af22 1931# define STATUS_POSIX PL_statusvalue
68dc0745 1932# define STATUS_POSIX_SET(n) \
1933 STMT_START { \
3280af22
NIS
1934 PL_statusvalue = (n); \
1935 if (PL_statusvalue != -1) \
1936 PL_statusvalue &= 0xFFFF; \
68dc0745 1937 } STMT_END
1938# define STATUS_CURRENT STATUS_POSIX
3280af22
NIS
1939# define STATUS_ALL_SUCCESS (PL_statusvalue = 0)
1940# define STATUS_ALL_FAILURE (PL_statusvalue = 1)
68dc0745 1941#endif
1942
cc3604b1
GS
1943/* flags in PL_exit_flags for nature of exit() */
1944#define PERL_EXIT_EXPECTED 0x01
31d77e54 1945#define PERL_EXIT_DESTRUCT_END 0x02 /* Run END in perl_destruct */
cc3604b1 1946
0b94c7bb 1947#ifndef MEMBER_TO_FPTR
a7cb1f99
GS
1948# define MEMBER_TO_FPTR(name) name
1949#endif
1950
1951/* format to use for version numbers in file/directory names */
273cf8d1 1952/* XXX move to Configure? */
a7cb1f99 1953#ifndef PERL_FS_VER_FMT
273cf8d1 1954# define PERL_FS_VER_FMT "%d.%d.%d"
0b94c7bb
GS
1955#endif
1956
45bc9206 1957/* This defines a way to flush all output buffers. This may be a
76549fef
JH
1958 * performance issue, so we allow people to disable it. Also, if
1959 * we are using stdio, there are broken implementations of fflush(NULL)
1960 * out there, Solaris being the most prominent.
45bc9206
GS
1961 */
1962#ifndef PERL_FLUSHALL_FOR_CHILD
76549fef 1963# if defined(USE_PERLIO) || defined(FFLUSH_NULL) || defined(USE_SFIO)
66fe083f 1964# define PERL_FLUSHALL_FOR_CHILD PerlIO_flush((PerlIO*)NULL)
767df6a1
JH
1965# else
1966# ifdef FFLUSH_ALL
1967# define PERL_FLUSHALL_FOR_CHILD my_fflush_all()
e2dbf222 1968# else
c5be433b 1969# define PERL_FLUSHALL_FOR_CHILD NOOP
767df6a1 1970# endif
66fe083f 1971# endif
45bc9206
GS
1972#endif
1973
7766f137
GS
1974#ifndef PERL_WAIT_FOR_CHILDREN
1975# define PERL_WAIT_FOR_CHILDREN NOOP
1976#endif
1977
ba869deb 1978/* the traditional thread-unsafe notion of "current interpreter". */
c5be433b
GS
1979#ifndef PERL_SET_INTERP
1980# define PERL_SET_INTERP(i) (PL_curinterp = (PerlInterpreter*)(i))
1981#endif
1982
1983#ifndef PERL_GET_INTERP
1984# define PERL_GET_INTERP (PL_curinterp)
1985#endif
1986
54aff467 1987#if defined(PERL_IMPLICIT_CONTEXT) && !defined(PERL_GET_THX)
4d1ff10f 1988# ifdef USE_5005THREADS
ba869deb 1989# define PERL_GET_THX ((struct perl_thread *)PERL_GET_CONTEXT)
54aff467
GS
1990# else
1991# ifdef MULTIPLICITY
ba869deb 1992# define PERL_GET_THX ((PerlInterpreter *)PERL_GET_CONTEXT)
54aff467
GS
1993# endif
1994# endif
ba869deb
GS
1995# define PERL_SET_THX(t) PERL_SET_CONTEXT(t)
1996#endif
1997
894356b3
GS
1998#ifndef SVf
1999# ifdef CHECK_FORMAT
2000# define SVf "p"
2001# else
2002# define SVf "_"
d460ef45 2003# endif
894356b3
GS
2004#endif
2005
d2560b70
RB
2006#ifndef UVf
2007# ifdef CHECK_FORMAT
2008# define UVf UVuf
2009# else
2010# define UVf "Vu"
d460ef45 2011# endif
d2560b70
RB
2012#endif
2013
2014#ifndef VDf
2015# ifdef CHECK_FORMAT
2016# define VDf "p"
2017# else
2018# define VDf "vd"
d460ef45 2019# endif
d2560b70
RB
2020#endif
2021
3fc1aec6 2022/* Some unistd.h's give a prototype for pause() even though
2023 HAS_PAUSE ends up undefined. This causes the #define
d2560b70 2024 below to be rejected by the compiler. Sigh.
3fc1aec6 2025*/
2026#ifdef HAS_PAUSE
2027#define Pause pause
2028#else
2029#define Pause() sleep((32767<<16)+32767)
748a9306
LW
2030#endif
2031
2032#ifndef IOCPARM_LEN
2033# ifdef IOCPARM_MASK
2034 /* on BSDish systes we're safe */
2035# define IOCPARM_LEN(x) (((x) >> 16) & IOCPARM_MASK)
2036# else
2037 /* otherwise guess at what's safe */
2038# define IOCPARM_LEN(x) 256
2039# endif
a0d0e21e
LW
2040#endif
2041
1761cee5 2042#if defined(__CYGWIN__)
521e0776
GS
2043/* USEMYBINMODE
2044 * This symbol, if defined, indicates that the program should
16fe6d59 2045 * use the routine my_binmode(FILE *fp, char iotype, int mode) to insure
521e0776
GS
2046 * that a file is in "binary" mode -- that is, that no translation
2047 * of bytes occurs on read or write operations.
2048 */
2049# define USEMYBINMODE / **/
16fe6d59
GS
2050# define my_binmode(fp, iotype, mode) \
2051 (PerlLIO_setmode(PerlIO_fileno(fp), mode) != -1 ? TRUE : FALSE)
5aabfad6 2052#endif
2053
cea2e8a9
GS
2054#ifdef UNION_ANY_DEFINITION
2055UNION_ANY_DEFINITION;
2056#else
2057union any {
2058 void* any_ptr;
2059 I32 any_i32;
2060 IV any_iv;
2061 long any_long;
c76ac1ee 2062 void (*any_dptr) (void*);
acfe0abc 2063 void (*any_dxptr) (pTHX_ void*);
cea2e8a9
GS
2064};
2065#endif
2066
4d1ff10f 2067#ifdef USE_5005THREADS
cea2e8a9
GS
2068#define ARGSproto struct perl_thread *thr
2069#else
2070#define ARGSproto
4d1ff10f 2071#endif /* USE_5005THREADS */
cea2e8a9 2072
acfe0abc 2073typedef I32 (*filter_t) (pTHX_ int, SV *, int);
cea2e8a9
GS
2074
2075#define FILTER_READ(idx, sv, len) filter_read(idx, sv, len)
2076#define FILTER_DATA(idx) (AvARRAY(PL_rsfp_filters)[idx])
2077#define FILTER_ISREADER(idx) (idx >= AvFILLp(PL_rsfp_filters))
2078
2c2d71f5
JH
2079#if !defined(OS2)
2080# include "iperlsys.h"
2081#endif
378cc40b 2082#include "regexp.h"
79072805 2083#include "sv.h"
378cc40b 2084#include "util.h"
8d063cd8 2085#include "form.h"
79072805
LW
2086#include "gv.h"
2087#include "cv.h"
abdd5c84 2088#include "opnames.h"
79072805
LW
2089#include "op.h"
2090#include "cop.h"
2091#include "av.h"
2092#include "hv.h"
2093#include "mg.h"
2094#include "scope.h"
4438c4b7 2095#include "warnings.h"
a0ed51b3 2096#include "utf8.h"
cd1ee231 2097#include "sharedsv.h"
8d063cd8 2098
7fae4e64
GS
2099/* Current curly descriptor */
2100typedef struct curcur CURCUR;
2101struct curcur {
2102 int parenfloor; /* how far back to strip paren data */
2103 int cur; /* how many instances of scan we've matched */
2104 int min; /* the minimal number of scans to match */
2105 int max; /* the maximal number of scans to match */
2106 int minmod; /* whether to work our way up or down */
2107 regnode * scan; /* the thing to match */
2108 regnode * next; /* what has to match after it */
2109 char * lastloc; /* where we started matching this scan */
2110 CURCUR * oldcc; /* current curly before we started this one */
2111};
2112
2113typedef struct _sublex_info SUBLEXINFO;
2114struct _sublex_info {
2115 I32 super_state; /* lexer state to save */
2116 I32 sub_inwhat; /* "lex_inwhat" to use */
2117 OP *sub_op; /* "lex_op" to use */
0244c3a4
GS
2118 char *super_bufptr; /* PL_bufptr that was */
2119 char *super_bufend; /* PL_bufend that was */
7fae4e64
GS
2120};
2121
455ece5e 2122typedef struct magic_state MGS; /* struct magic_state defined in mg.c */
76e3520e 2123
2c2d71f5 2124struct scan_data_t; /* Used in S_* functions in regcomp.c */
653099ff 2125struct regnode_charclass_class; /* Used in S_* functions in regcomp.c */
76e3520e
GS
2126
2127typedef I32 CHECKPOINT;
76e3520e 2128
5f7fde29
GS
2129struct ptr_tbl_ent {
2130 struct ptr_tbl_ent* next;
2131 void* oldval;
2132 void* newval;
d18c6117
GS
2133};
2134
5f7fde29
GS
2135struct ptr_tbl {
2136 struct ptr_tbl_ent** tbl_ary;
2137 UV tbl_max;
2138 UV tbl_items;
d18c6117
GS
2139};
2140
450a55e4 2141#if defined(iAPX286) || defined(M_I286) || defined(I80286)
a687059c
LW
2142# define I286
2143#endif
2144
fe14fcc3
LW
2145#if defined(htonl) && !defined(HAS_HTONL)
2146#define HAS_HTONL
ae986130 2147#endif
fe14fcc3
LW
2148#if defined(htons) && !defined(HAS_HTONS)
2149#define HAS_HTONS
ae986130 2150#endif
fe14fcc3
LW
2151#if defined(ntohl) && !defined(HAS_NTOHL)
2152#define HAS_NTOHL
ae986130 2153#endif
fe14fcc3
LW
2154#if defined(ntohs) && !defined(HAS_NTOHS)
2155#define HAS_NTOHS
ae986130 2156#endif
fe14fcc3 2157#ifndef HAS_HTONL
d9d8d8de 2158#if (BYTEORDER & 0xffff) != 0x4321
fe14fcc3
LW
2159#define HAS_HTONS
2160#define HAS_HTONL
2161#define HAS_NTOHS
2162#define HAS_NTOHL
a687059c
LW
2163#define MYSWAP
2164#define htons my_swap
2165#define htonl my_htonl
2166#define ntohs my_swap
2167#define ntohl my_ntohl
2168#endif
2169#else
d9d8d8de 2170#if (BYTEORDER & 0xffff) == 0x4321
fe14fcc3
LW
2171#undef HAS_HTONS
2172#undef HAS_HTONL
2173#undef HAS_NTOHS
2174#undef HAS_NTOHL
a687059c
LW
2175#endif
2176#endif
2177
988174c1
LW
2178/*
2179 * Little-endian byte order functions - 'v' for 'VAX', or 'reVerse'.
2180 * -DWS
2181 */
2182#if BYTEORDER != 0x1234
2183# define HAS_VTOHL
2184# define HAS_VTOHS
2185# define HAS_HTOVL
2186# define HAS_HTOVS
c67712b2 2187# if BYTEORDER == 0x4321 || BYTEORDER == 0x87654321
988174c1
LW
2188# define vtohl(x) ((((x)&0xFF)<<24) \
2189 +(((x)>>24)&0xFF) \
2190 +(((x)&0x0000FF00)<<8) \
2191 +(((x)&0x00FF0000)>>8) )
2192# define vtohs(x) ((((x)&0xFF)<<8) + (((x)>>8)&0xFF))
2193# define htovl(x) vtohl(x)
2194# define htovs(x) vtohs(x)
2195# endif
2196 /* otherwise default to functions in util.c */
2197#endif
2198
3bb7c1b4
JH
2199/* *MAX Plus 1. A floating point value.
2200 Hopefully expressed in a way that dodgy floating point can't mess up.
2201 >> 2 rather than 1, so that value is safely less than I32_MAX after 1
2202 is added to it
2203 May find that some broken compiler will want the value cast to I32.
2204 [after the shift, as signed >> may not be as secure as unsigned >>]
2205*/
2206#define I32_MAX_P1 (2.0 * (1 + (((U32)I32_MAX) >> 1)))
2207#define U32_MAX_P1 (4.0 * (1 + ((U32_MAX) >> 2)))
2208/* For compilers that can't correctly cast NVs over 0x7FFFFFFF (or
2209 0x7FFFFFFFFFFFFFFF) to an unsigned integer. In the future, sizeof(UV)
2210 may be greater than sizeof(IV), so don't assume that half max UV is max IV.
2211*/
2212#define U32_MAX_P1_HALF (2.0 * (1 + ((U32_MAX) >> 2)))
ee0007ab 2213
3bb7c1b4
JH
2214#define UV_MAX_P1 (4.0 * (1 + ((UV_MAX) >> 2)))
2215#define IV_MAX_P1 (2.0 * (1 + (((UV)IV_MAX) >> 1)))
2216#define UV_MAX_P1_HALF (2.0 * (1 + ((UV_MAX) >> 2)))
2217
2218/* This may look like unnecessary jumping through hoops, but converting
2219 out of range floating point values to integers *is* undefined behaviour,
2220 and it is starting to bite.
2221*/
2222#ifndef CAST_INLINE
65202027 2223#define I_32(what) (cast_i32((NV)(what)))
3bb7c1b4 2224#define U_32(what) (cast_ulong((NV)(what)))
65202027
DS
2225#define I_V(what) (cast_iv((NV)(what)))
2226#define U_V(what) (cast_uv((NV)(what)))
3bb7c1b4
JH
2227#else
2228#define I_32(n) ((n) < I32_MAX_P1 ? ((n) < I32_MIN ? I32_MIN : (I32) (n)) \
2229 : ((n) < U32_MAX_P1 ? (I32)(U32) (n) \
2230 : ((n) > 0 ? (I32) U32_MAX : 0 /* NaN */)))
2231#define U_32(n) ((n) < 0.0 ? ((n) < I32_MIN ? (UV) I32_MIN : (U32)(I32) (n)) \
2232 : ((n) < U32_MAX_P1 ? (U32) (n) \
2233 : ((n) > 0 ? U32_MAX : 0 /* NaN */)))
2234#define I_V(n) ((n) < IV_MAX_P1 ? ((n) < IV_MIN ? IV_MIN : (IV) (n)) \
2235 : ((n) < UV_MAX_P1 ? (IV)(UV) (n) \
2236 : ((n) > 0 ? (IV)UV_MAX : 0 /* NaN */)))
2237#define U_V(n) ((n) < 0.0 ? ((n) < IV_MIN ? (UV) IV_MIN : (UV)(IV) (n)) \
2238 : ((n) < UV_MAX_P1 ? (UV) (n) \
2239 : ((n) > 0 ? UV_MAX : 0 /* NaN */)))
2240#endif
2241
2242#define U_S(what) ((U16)U_32(what))
2243#define U_I(what) ((unsigned int)U_32(what))
2244#define U_L(what) U_32(what)
ed6116ce 2245
2d4389e4
JH
2246/* These do not care about the fractional part, only about the range. */
2247#define NV_WITHIN_IV(nv) (I_V(nv) >= IV_MIN && I_V(nv) <= IV_MAX)
24db6c0d 2248#define NV_WITHIN_UV(nv) ((nv)>=0.0 && U_V(nv) >= UV_MIN && U_V(nv) <= UV_MAX)
2d4389e4 2249
25da4f38
IZ
2250/* Used with UV/IV arguments: */
2251 /* XXXX: need to speed it up */
2252#define CLUMP_2UV(iv) ((iv) < 0 ? 0 : (UV)(iv))
2253#define CLUMP_2IV(uv) ((uv) > (UV)IV_MAX ? IV_MAX : (IV)(uv))
2254
352d5a3a
LW
2255#ifndef MAXSYSFD
2256# define MAXSYSFD 2
2257#endif
ee0007ab 2258
79072805 2259#ifndef __cplusplus
e1caacb4 2260#ifndef UNDER_CE
20ce7b12
GS
2261Uid_t getuid (void);
2262Uid_t geteuid (void);
2263Gid_t getgid (void);
2264Gid_t getegid (void);
79072805 2265#endif
e1caacb4 2266#endif
8d063cd8 2267
0c30d9ec 2268#ifndef Perl_debug_log
bf49b057
GS
2269# define Perl_debug_log PerlIO_stderr()
2270#endif
2271
2272#ifndef Perl_error_log
2273# define Perl_error_log (PL_stderrgv \
01bb7c6d 2274 && GvIOp(PL_stderrgv) \
42de951c 2275 && IoOFP(GvIOp(PL_stderrgv)) \
bf49b057
GS
2276 ? IoOFP(GvIOp(PL_stderrgv)) \
2277 : PerlIO_stderr())
0c30d9ec 2278#endif
3967c732 2279
aea4f609
DM
2280
2281#define DEBUG_p_FLAG 0x00000001 /* 1 */
2282#define DEBUG_s_FLAG 0x00000002 /* 2 */
2283#define DEBUG_l_FLAG 0x00000004 /* 4 */
2284#define DEBUG_t_FLAG 0x00000008 /* 8 */
2285#define DEBUG_o_FLAG 0x00000010 /* 16 */
2286#define DEBUG_c_FLAG 0x00000020 /* 32 */
2287#define DEBUG_P_FLAG 0x00000040 /* 64 */
2288#define DEBUG_m_FLAG 0x00000080 /* 128 */
2289#define DEBUG_f_FLAG 0x00000100 /* 256 */
2290#define DEBUG_r_FLAG 0x00000200 /* 512 */
2291#define DEBUG_x_FLAG 0x00000400 /* 1024 */
2292#define DEBUG_u_FLAG 0x00000800 /* 2048 */
2293#define DEBUG_L_FLAG 0x00001000 /* 4096 */
2294#define DEBUG_H_FLAG 0x00002000 /* 8192 */
2295#define DEBUG_X_FLAG 0x00004000 /* 16384 */
2296#define DEBUG_D_FLAG 0x00008000 /* 32768 */
2297#define DEBUG_S_FLAG 0x00010000 /* 65536 */
2298#define DEBUG_T_FLAG 0x00020000 /* 131072 */
04932ac8
DM
2299#define DEBUG_R_FLAG 0x00040000 /* 262144 */
2300#define DEBUG_MASK 0x0007FFFF /* mask of all the standard flags */
aea4f609
DM
2301
2302#define DEBUG_DB_RECURSE_FLAG 0x40000000
2303#define DEBUG_TOP_FLAG 0x80000000 /* XXX what's this for ??? */
2304
2305
3967c732 2306#ifdef DEBUGGING
aea4f609
DM
2307
2308# undef YYDEBUG
2309# define YYDEBUG 1
2310
2311# define DEBUG_p_TEST (PL_debug & DEBUG_p_FLAG)
2312# define DEBUG_s_TEST (PL_debug & DEBUG_s_FLAG)
2313# define DEBUG_l_TEST (PL_debug & DEBUG_l_FLAG)
2314# define DEBUG_t_TEST (PL_debug & DEBUG_t_FLAG)
2315# define DEBUG_o_TEST (PL_debug & DEBUG_o_FLAG)
2316# define DEBUG_c_TEST (PL_debug & DEBUG_c_FLAG)
2317# define DEBUG_P_TEST (PL_debug & DEBUG_P_FLAG)
2318# define DEBUG_m_TEST (PL_debug & DEBUG_m_FLAG)
2319# define DEBUG_f_TEST (PL_debug & DEBUG_f_FLAG)
2320# define DEBUG_r_TEST (PL_debug & DEBUG_r_FLAG)
2321# define DEBUG_x_TEST (PL_debug & DEBUG_x_FLAG)
2322# define DEBUG_u_TEST (PL_debug & DEBUG_u_FLAG)
2323# define DEBUG_L_TEST (PL_debug & DEBUG_L_FLAG)
2324# define DEBUG_H_TEST (PL_debug & DEBUG_H_FLAG)
2325# define DEBUG_X_TEST (PL_debug & DEBUG_X_FLAG)
2326# define DEBUG_D_TEST (PL_debug & DEBUG_D_FLAG)
2327# define DEBUG_S_TEST (PL_debug & DEBUG_S_FLAG)
2328# define DEBUG_T_TEST (PL_debug & DEBUG_T_FLAG)
04932ac8 2329# define DEBUG_R_TEST (PL_debug & DEBUG_R_FLAG)
aea4f609
DM
2330
2331# define DEB(a) a
2332# define DEBUG(a) if (PL_debug) a
2333# define DEBUG_p(a) if (DEBUG_p_TEST) a
2334# define DEBUG_s(a) if (DEBUG_s_TEST) a
2335# define DEBUG_l(a) if (DEBUG_l_TEST) a
2336# define DEBUG_t(a) if (DEBUG_t_TEST) a
2337# define DEBUG_o(a) if (DEBUG_o_TEST) a
2338# define DEBUG_c(a) if (DEBUG_c_TEST) a
2339# define DEBUG_P(a) if (DEBUG_P_TEST) a
2340
969058bb
VK
2341 /* Temporarily turn off memory debugging in case the a
2342 * does memory allocation, either directly or indirectly. */
acfe0abc 2343# define DEBUG_m(a) \
0b250b9e 2344 STMT_START { \
aea4f609 2345 if (PERL_GET_INTERP) { dTHX; if (DEBUG_m_TEST) {PL_debug&=~DEBUG_m_FLAG; a; PL_debug|=DEBUG_m_FLAG;} } \
0b250b9e 2346 } STMT_END
aea4f609 2347
5f80b19c
AMS
2348# define DEBUG__(t, a) \
2349 STMT_START { \
2350 if (t) STMT_START {a;} STMT_END; \
2351 } STMT_END
2352
2353# define DEBUG_f(a) DEBUG__(DEBUG_f_TEST, a)
2354# define DEBUG_r(a) DEBUG__(DEBUG_r_TEST, a)
2355# define DEBUG_x(a) DEBUG__(DEBUG_x_TEST, a)
2356# define DEBUG_u(a) DEBUG__(DEBUG_u_TEST, a)
2357# define DEBUG_L(a) DEBUG__(DEBUG_L_TEST, a)
2358# define DEBUG_H(a) DEBUG__(DEBUG_H_TEST, a)
2359# define DEBUG_X(a) DEBUG__(DEBUG_X_TEST, a)
2360# define DEBUG_D(a) DEBUG__(DEBUG_D_TEST, a)
aea4f609 2361
4d1ff10f 2362# ifdef USE_5005THREADS
5f80b19c 2363# define DEBUG_S(a) DEBUG__(DEBUG_S_TEST, a)
8b73bbec
IZ
2364# else
2365# define DEBUG_S(a)
2366# endif
aea4f609 2367
5f80b19c
AMS
2368# define DEBUG_T(a) DEBUG__(DEBUG_T_TEST, a)
2369# define DEBUG_R(a) DEBUG__(DEBUG_R_TEST, a)
aea4f609
DM
2370
2371#else /* DEBUGGING */
2372
2373# define DEBUG_p_TEST (0)
2374# define DEBUG_s_TEST (0)
2375# define DEBUG_l_TEST (0)
2376# define DEBUG_t_TEST (0)
2377# define DEBUG_o_TEST (0)
2378# define DEBUG_c_TEST (0)
2379# define DEBUG_P_TEST (0)
2380# define DEBUG_m_TEST (0)
2381# define DEBUG_f_TEST (0)
2382# define DEBUG_r_TEST (0)
2383# define DEBUG_x_TEST (0)
2384# define DEBUG_u_TEST (0)
2385# define DEBUG_L_TEST (0)
2386# define DEBUG_H_TEST (0)
2387# define DEBUG_X_TEST (0)
2388# define DEBUG_D_TEST (0)
2389# define DEBUG_S_TEST (0)
2390# define DEBUG_T_TEST (0)
04932ac8 2391# define DEBUG_R_TEST (0)
aea4f609
DM
2392
2393# define DEB(a)
2394# define DEBUG(a)
2395# define DEBUG_p(a)
2396# define DEBUG_s(a)
2397# define DEBUG_l(a)
2398# define DEBUG_t(a)
2399# define DEBUG_o(a)
2400# define DEBUG_c(a)
2401# define DEBUG_P(a)
2402# define DEBUG_m(a)
2403# define DEBUG_f(a)
2404# define DEBUG_r(a)
2405# define DEBUG_x(a)
2406# define DEBUG_u(a)
2407# define DEBUG_L(a)
2408# define DEBUG_H(a)
2409# define DEBUG_X(a)
2410# define DEBUG_D(a)
2411# define DEBUG_S(a)
2412# define DEBUG_T(a)
04932ac8 2413# define DEBUG_R(a)
aea4f609
DM
2414#endif /* DEBUGGING */
2415
2416
14befaf4
DM
2417/* These constants should be used in preference to to raw characters
2418 * when using magic. Note that some perl guts still assume
2419 * certain character properties of these constants, namely that
2420 * isUPPER() and toLOWER() may do useful mappings.
2421 *
2422 * Update the magic_names table in dump.c when adding/amending these
2423 */
2424
2425#define PERL_MAGIC_sv '\0' /* Special scalar variable */
2426#define PERL_MAGIC_overload 'A' /* %OVERLOAD hash */
2427#define PERL_MAGIC_overload_elem 'a' /* %OVERLOAD hash element */
2428#define PERL_MAGIC_overload_table 'c' /* Holds overload table (AMT) on stash */
2429#define PERL_MAGIC_bm 'B' /* Boyer-Moore (fast string search) */
2430#define PERL_MAGIC_regdata 'D' /* Regex match position data
2431 (@+ and @- vars) */
2432#define PERL_MAGIC_regdatum 'd' /* Regex match position data element */
2433#define PERL_MAGIC_env 'E' /* %ENV hash */
2434#define PERL_MAGIC_envelem 'e' /* %ENV hash element */
2435#define PERL_MAGIC_fm 'f' /* Formline ('compiled' format) */
2436#define PERL_MAGIC_regex_global 'g' /* m//g target / study()ed string */
2437#define PERL_MAGIC_isa 'I' /* @ISA array */
2438#define PERL_MAGIC_isaelem 'i' /* @ISA array element */
2439#define PERL_MAGIC_nkeys 'k' /* scalar(keys()) lvalue */
2440#define PERL_MAGIC_dbfile 'L' /* Debugger %_<filename */
2441#define PERL_MAGIC_dbline 'l' /* Debugger %_<filename element */
2442#define PERL_MAGIC_mutex 'm' /* ??? */
2443#define PERL_MAGIC_collxfrm 'o' /* Locale transformation */
2444#define PERL_MAGIC_tied 'P' /* Tied array or hash */
2445#define PERL_MAGIC_tiedelem 'p' /* Tied array or hash element */
2446#define PERL_MAGIC_tiedscalar 'q' /* Tied scalar or handle */
2447#define PERL_MAGIC_qr 'r' /* precompiled qr// regex */
2448#define PERL_MAGIC_sig 'S' /* %SIG hash */
2449#define PERL_MAGIC_sigelem 's' /* %SIG hash element */
2450#define PERL_MAGIC_taint 't' /* Taintedness */
2451#define PERL_MAGIC_uvar 'U' /* Available for use by extensions */
2452#define PERL_MAGIC_vec 'v' /* vec() lvalue */
2453#define PERL_MAGIC_substr 'x' /* substr() lvalue */
2454#define PERL_MAGIC_defelem 'y' /* Shadow "foreach" iterator variable /
2455 smart parameter vivification */
2456#define PERL_MAGIC_glob '*' /* GV (typeglob) */
2457#define PERL_MAGIC_arylen '#' /* Array length ($#ary) */
2458#define PERL_MAGIC_pos '.' /* pos() lvalue */
2459#define PERL_MAGIC_backref '<' /* ??? */
2460#define PERL_MAGIC_ext '~' /* Available for use by extensions */
2461
2462
fe14fcc3 2463#define YYMAXDEPTH 300
8d063cd8 2464
a6e633de 2465#ifndef assert /* <assert.h> might have been included somehow */
79072805
LW
2466#define assert(what) DEB( { \
2467 if (!(what)) { \
cea2e8a9 2468 Perl_croak(aTHX_ "Assertion failed: file \"%s\", line %d", \
79072805 2469 __FILE__, __LINE__); \
cea2e8a9 2470 PerlProc_exit(1); \
79072805 2471 }})
a6e633de 2472#endif
8d063cd8 2473
450a55e4 2474struct ufuncs {
24f81a43
DM
2475 I32 (*uf_val)(pTHX_ IV, SV*);
2476 I32 (*uf_set)(pTHX_ IV, SV*);
a0d0e21e 2477 IV uf_index;
450a55e4
LW
2478};
2479
14befaf4 2480/* In pre-5.7-Perls the PERL_MAGIC_uvar magic didn't get the thread context.
24f81a43
DM
2481 * XS code wanting to be backward compatible can do something
2482 * like the following:
c745e42c 2483
24f81a43 2484#ifndef PERL_MG_UFUNC
24f81a43
DM
2485#define PERL_MG_UFUNC(name,ix,sv) I32 name(IV ix, SV *sv)
2486#endif
2487
2488static PERL_MG_UFUNC(foo_get, index, val)
2489{
2490 sv_setsv(val, ...);
2491 return TRUE;
2492}
2493
2494-- Doug MacEachern
2495
2496*/
2497
fc9c74e6 2498#ifndef PERL_MG_UFUNC
24f81a43 2499#define PERL_MG_UFUNC(name,ix,sv) I32 name(pTHX_ IV ix, SV *sv)
fc9c74e6 2500#endif
24f81a43 2501
fe14fcc3 2502/* Fix these up for __STDC__ */
68dc0745 2503#ifndef DONT_DECLARE_STD
20ce7b12 2504char *mktemp (char*);
37bd1396 2505#ifndef atof
20ce7b12 2506double atof (const char*);
a0d0e21e 2507#endif
37bd1396 2508#endif
79072805 2509
352d5a3a 2510#ifndef STANDARD_C
fe14fcc3 2511/* All of these are in stdlib.h or time.h for ANSI C */
85e6fe83 2512Time_t time();
8d063cd8 2513struct tm *gmtime(), *localtime();
092bebab 2514#if defined(OEMVS) || defined(__OPEN_VM)
9d116dd7
JH
2515char *(strchr)(), *(strrchr)();
2516char *(strcpy)(), *(strcat)();
2517#else
93a17b20 2518char *strchr(), *strrchr();
378cc40b 2519char *strcpy(), *strcat();
9d116dd7 2520#endif
352d5a3a 2521#endif /* ! STANDARD_C */
8d063cd8 2522
79072805
LW
2523
2524#ifdef I_MATH
2525# include <math.h>
2526#else
32f822de 2527START_EXTERN_C
20ce7b12
GS
2528 double exp (double);
2529 double log (double);
2530 double log10 (double);
2531 double sqrt (double);
2532 double frexp (double,int*);
2533 double ldexp (double,int);
2534 double modf (double,double*);
2535 double sin (double);
2536 double cos (double);
2537 double atan2 (double,double);
2538 double pow (double,double);
32f822de 2539END_EXTERN_C
79072805
LW
2540#endif
2541
aa8b85de
JH
2542#if !defined(NV_INF) && defined(USE_LONG_DOUBLE) && defined(LDBL_INFINITY)
2543# define NV_INF LDBL_INFINITY
2544#endif
2545#if !defined(NV_INF) && defined(DBL_INFINITY)
2546# define NV_INF (NV)DBL_INFINITY
2547#endif
2548#if !defined(NV_INF) && defined(INFINITY)
2549# define NV_INF (NV)INFINITY
2550#endif
2551#if !defined(NV_INF) && defined(INF)
2552# define NV_INF (NV)INF
2553#endif
2554#if !defined(NV_INF) && defined(USE_LONG_DOUBLE) && defined(HUGE_VALL)
2555# define NV_INF (NV)HUGE_VALL
2556#endif
2557#if !defined(NV_INF) && defined(HUGE_VAL)
2558# define NV_INF (NV)HUGE_VAL
2559#endif
2560
2561#if !defined(NV_NAN) && defined(USE_LONG_DOUBLE)
2562# if !defined(NV_NAN) && defined(LDBL_NAN)
2563# define NV_NAN LDBL_NAN
2564# endif
2565# if !defined(NV_NAN) && defined(LDBL_QNAN)
2566# define NV_NAN LDBL_QNAN
2567# endif
2568# if !defined(NV_NAN) && defined(LDBL_SNAN)
2569# define NV_NAN LDBL_SNAN
2570# endif
2571#endif
2572#if !defined(NV_NAN) && defined(DBL_NAN)
2573# define NV_NAN (NV)DBL_NAN
2574#endif
2575#if !defined(NV_NAN) && defined(DBL_QNAN)
2576# define NV_NAN (NV)DBL_QNAN
2577#endif
2578#if !defined(NV_NAN) && defined(DBL_SNAN)
2579# define NV_NAN (NV)DBL_SNAN
2580#endif
2581#if !defined(NV_NAN) && defined(QNAN)
2582# define NV_NAN (NV)QNAN
2583#endif
2584#if !defined(NV_NAN) && defined(SNAN)
2585# define NV_NAN (NV)SNAN
2586#endif
2587#if !defined(NV_NAN) && defined(NAN)
2588# define NV_NAN (NV)NAN
2589#endif
2590
a0d0e21e 2591#ifndef __cplusplus
8f1f23e8 2592# if defined(NeXT) || defined(__NeXT__) /* or whatever catches all NeXTs */
3fc1aec6 2593char *crypt (); /* Maybe more hosts will need the unprototyped version */
26618a56 2594# else
fd8cd3a3 2595# if !defined(WIN32) && !defined(VMS)
20ce7b12 2596char *crypt (const char*, const char*);
5014db98 2597# endif /* !WIN32 */
8f1f23e8 2598# endif /* !NeXT && !__NeXT__ */
26618a56
GS
2599# ifndef DONT_DECLARE_STD
2600# ifndef getenv
20ce7b12 2601char *getenv (const char*);
26618a56 2602# endif /* !getenv */
28ca6303 2603# if !defined(HAS_LSEEK_PROTO) && !defined(EPOC) && !defined(__hpux)
0fc67700 2604# ifdef _FILE_OFFSET_BITS
28ca6303 2605# if _FILE_OFFSET_BITS == 64
20ce7b12 2606Off_t lseek (int,Off_t,int);
0fc67700
JH
2607# endif
2608# endif
bf0c440f 2609# endif
26618a56 2610# endif /* !DONT_DECLARE_STD */
20ce7b12 2611char *getlogin (void);
26618a56 2612#endif /* !__cplusplus */
79072805 2613
16d20bd9 2614#ifdef UNLINK_ALL_VERSIONS /* Currently only makes sense for VMS */
378cc40b 2615#define UNLINK unlnk
20ce7b12 2616I32 unlnk (char*);
8d063cd8 2617#else
80252599 2618#define UNLINK PerlLIO_unlink
8d063cd8 2619#endif
a687059c 2620
fa0a29af
JH
2621/* some versions of glibc are missing the setresuid() proto */
2622#if defined(HAS_SETRESUID) && !defined(HAS_SETRESUID_PROTO)
640374d0
JH
2623int setresuid(uid_t ruid, uid_t euid, uid_t suid);
2624#endif
fa0a29af
JH
2625/* some versions of glibc are missing the setresgid() proto */
2626#if defined(HAS_SETRESGID) && !defined(HAS_SETRESGID_PROTO)
640374d0
JH
2627int setresgid(gid_t rgid, gid_t egid, gid_t sgid);
2628#endif
2629
fe14fcc3 2630#ifndef HAS_SETREUID
85e6fe83
LW
2631# ifdef HAS_SETRESUID
2632# define setreuid(r,e) setresuid(r,e,(Uid_t)-1)
2633# define HAS_SETREUID
2634# endif
a687059c 2635#endif
fe14fcc3 2636#ifndef HAS_SETREGID
85e6fe83
LW
2637# ifdef HAS_SETRESGID
2638# define setregid(r,e) setresgid(r,e,(Gid_t)-1)
2639# define HAS_SETREGID
2640# endif
a687059c 2641#endif
ee0007ab 2642
d543acb6 2643/* Sighandler_t defined in iperlsys.h */
ff68c719 2644
2645#ifdef HAS_SIGACTION
2646typedef struct sigaction Sigsave_t;
2647#else
2648typedef Sighandler_t Sigsave_t;
2649#endif
2650
ee0007ab
LW
2651#define SCAN_DEF 0
2652#define SCAN_TR 1
2653#define SCAN_REPL 2
79072805
LW
2654
2655#ifdef DEBUGGING
4633a7c4 2656# ifndef register
a0d0e21e
LW
2657# define register
2658# endif
2659# define PAD_SV(po) pad_sv(po)
cea2e8a9 2660# define RUNOPS_DEFAULT Perl_runops_debug
79072805 2661#else
6b88bc9c 2662# define PAD_SV(po) PL_curpad[po]
cea2e8a9 2663# define RUNOPS_DEFAULT Perl_runops_standard
79072805
LW
2664#endif
2665
18f739ee 2666#ifdef MYMALLOC
772fe5b3 2667# ifdef MUTEX_INIT_CALLS_MALLOC
3541dd58
HM
2668# define MALLOC_INIT \
2669 STMT_START { \
2670 PL_malloc_mutex = NULL; \
2671 MUTEX_INIT(&PL_malloc_mutex); \
2672 } STMT_END
2673# define MALLOC_TERM \
2674 STMT_START { \
2675 perl_mutex tmp = PL_malloc_mutex; \
2676 PL_malloc_mutex = NULL; \
2677 MUTEX_DESTROY(&tmp); \
2678 } STMT_END
2679# else
2680# define MALLOC_INIT MUTEX_INIT(&PL_malloc_mutex)
2681# define MALLOC_TERM MUTEX_DESTROY(&PL_malloc_mutex)
2682# endif
18f739ee
IZ
2683#else
2684# define MALLOC_INIT
2685# define MALLOC_TERM
2686#endif
2687
b6d9d515 2688
0cb96387
GS
2689typedef int (CPERLscope(*runops_proc_t)) (pTHX);
2690typedef OP* (CPERLscope(*PPADDR_t)[]) (pTHX);
22c35a8c 2691
940cb80d 2692/* _ (for $_) must be first in the following list (DEFSV requires it) */
54b9620d 2693#define THREADSV_NAMES "_123456789&`'+/.,\\\";^-%=|~:\001\005!@"
a863c7d1 2694
8f1f23e8
W
2695/* NeXT has problems with crt0.o globals */
2696#if defined(__DYNAMIC__) && \
2697 (defined(NeXT) || defined(__NeXT__) || defined(__APPLE__))
2698# if defined(NeXT) || defined(__NeXT)
2699# include <mach-o/dyld.h>
2700# define environ (*environ_pointer)
0c30d9ec 2701EXT char *** environ_pointer;
8f1f23e8 2702# else
82cabb9e 2703# if defined(__APPLE__) && defined(PERL_CORE)
8f1f23e8
W
2704# include <crt_externs.h> /* for the env array */
2705# define environ (*_NSGetEnviron())
2706# endif
0c30d9ec 2707# endif
8f1f23e8
W
2708#else
2709 /* VMS and some other platforms don't use the environ array */
13b6e58c 2710# ifdef USE_ENVIRON_ARRAY
a6c40364
GS
2711# if !defined(DONT_DECLARE_STD) || \
2712 (defined(__svr4__) && defined(__GNUC__) && defined(sun)) || \
2713 defined(__sgi) || \
d460ef45 2714 defined(__DGUX)
8f1f23e8 2715extern char ** environ; /* environment variables supplied via exec */
a6c40364 2716# endif
8f1f23e8
W
2717# endif
2718#endif
79072805 2719
73c4f7a1
GS
2720START_EXTERN_C
2721
79072805 2722/* handy constants */
22c35a8c 2723EXTCONST char PL_warn_uninit[]
b89fed5f 2724 INIT("Use of uninitialized value%s%s");
22c35a8c 2725EXTCONST char PL_warn_nosemi[]
463ee0b2 2726 INIT("Semicolon seems to be missing");
22c35a8c 2727EXTCONST char PL_warn_reserved[]
463ee0b2 2728 INIT("Unquoted string \"%s\" may clash with future reserved word");
22c35a8c 2729EXTCONST char PL_warn_nl[]
93a17b20 2730 INIT("Unsuccessful %s on filename containing newline");
22c35a8c 2731EXTCONST char PL_no_wrongref[]
a0d0e21e 2732 INIT("Can't use %s ref as %s ref");
22c35a8c 2733EXTCONST char PL_no_symref[]
748a9306 2734 INIT("Can't use string (\"%.32s\") as %s ref while \"strict refs\" in use");
22c35a8c 2735EXTCONST char PL_no_usym[]
8990e307 2736 INIT("Can't use an undefined value as %s reference");
22c35a8c 2737EXTCONST char PL_no_aelem[]
93a17b20 2738 INIT("Modification of non-creatable array value attempted, subscript %d");
22c35a8c 2739EXTCONST char PL_no_helem[]
93a17b20 2740 INIT("Modification of non-creatable hash value attempted, subscript \"%s\"");
22c35a8c 2741EXTCONST char PL_no_modify[]
93a17b20 2742 INIT("Modification of a read-only value attempted");
22c35a8c 2743EXTCONST char PL_no_mem[]
93a17b20 2744 INIT("Out of memory!\n");
22c35a8c 2745EXTCONST char PL_no_security[]
463ee0b2 2746 INIT("Insecure dependency in %s%s");
22c35a8c 2747EXTCONST char PL_no_sock_func[]
93a17b20 2748 INIT("Unsupported socket function \"%s\" called");
22c35a8c 2749EXTCONST char PL_no_dir_func[]
93a17b20 2750 INIT("Unsupported directory function \"%s\" called");
22c35a8c 2751EXTCONST char PL_no_func[]
93a17b20 2752 INIT("The %s function is unimplemented");
22c35a8c 2753EXTCONST char PL_no_myglob[]
748a9306 2754 INIT("\"my\" variable %s can't be in a package");
93a17b20 2755
7575fa06 2756EXTCONST char PL_uuemap[65]
80252599
GS
2757 INIT("`!\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_");
2758
2759
79072805 2760#ifdef DOINIT
22c35a8c
GS
2761EXT char *PL_sig_name[] = { SIG_NAME };
2762EXT int PL_sig_num[] = { SIG_NUM };
79072805 2763#else
22c35a8c
GS
2764EXT char *PL_sig_name[];
2765EXT int PL_sig_num[];
79072805
LW
2766#endif
2767
3bd709b1 2768/* fast conversion and case folding tables */
bbce6d69 2769
79072805 2770#ifdef DOINIT
9d116dd7 2771#ifdef EBCDIC
22c35a8c 2772EXT unsigned char PL_fold[] = { /* fast EBCDIC case folding table */
9d116dd7
JH
2773 0, 1, 2, 3, 4, 5, 6, 7,
2774 8, 9, 10, 11, 12, 13, 14, 15,
2775 16, 17, 18, 19, 20, 21, 22, 23,
2776 24, 25, 26, 27, 28, 29, 30, 31,
2777 32, 33, 34, 35, 36, 37, 38, 39,
2778 40, 41, 42, 43, 44, 45, 46, 47,
2779 48, 49, 50, 51, 52, 53, 54, 55,
2780 56, 57, 58, 59, 60, 61, 62, 63,
2781 64, 65, 66, 67, 68, 69, 70, 71,
2782 72, 73, 74, 75, 76, 77, 78, 79,
2783 80, 81, 82, 83, 84, 85, 86, 87,
2784 88, 89, 90, 91, 92, 93, 94, 95,
2785 96, 97, 98, 99, 100, 101, 102, 103,
2786 104, 105, 106, 107, 108, 109, 110, 111,
2787 112, 113, 114, 115, 116, 117, 118, 119,
2788 120, 121, 122, 123, 124, 125, 126, 127,
2789 128, 'A', 'B', 'C', 'D', 'E', 'F', 'G',
2790 'H', 'I', 138, 139, 140, 141, 142, 143,
2791 144, 'J', 'K', 'L', 'M', 'N', 'O', 'P',
2792 'Q', 'R', 154, 155, 156, 157, 158, 159,
2793 160, 161, 'S', 'T', 'U', 'V', 'W', 'X',
2794 'Y', 'Z', 170, 171, 172, 173, 174, 175,
2795 176, 177, 178, 179, 180, 181, 182, 183,
2796 184, 185, 186, 187, 188, 189, 190, 191,
2797 192, 'a', 'b', 'c', 'd', 'e', 'f', 'g',
2798 'h', 'i', 202, 203, 204, 205, 206, 207,
2799 208, 'j', 'k', 'l', 'm', 'n', 'o', 'p',
2800 'q', 'r', 218, 219, 220, 221, 222, 223,
2801 224, 225, 's', 't', 'u', 'v', 'w', 'x',
2802 'y', 'z', 234, 235, 236, 237, 238, 239,
2803 240, 241, 242, 243, 244, 245, 246, 247,
2804 248, 249, 250, 251, 252, 253, 254, 255
2805};
2806#else /* ascii rather than ebcdic */
22c35a8c 2807EXTCONST unsigned char PL_fold[] = {
79072805
LW
2808 0, 1, 2, 3, 4, 5, 6, 7,
2809 8, 9, 10, 11, 12, 13, 14, 15,
2810 16, 17, 18, 19, 20, 21, 22, 23,
2811 24, 25, 26, 27, 28, 29, 30, 31,
2812 32, 33, 34, 35, 36, 37, 38, 39,
2813 40, 41, 42, 43, 44, 45, 46, 47,
2814 48, 49, 50, 51, 52, 53, 54, 55,
2815 56, 57, 58, 59, 60, 61, 62, 63,
2816 64, 'a', 'b', 'c', 'd', 'e', 'f', 'g',
2817 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o',
2818 'p', 'q', 'r', 's', 't', 'u', 'v', 'w',
2819 'x', 'y', 'z', 91, 92, 93, 94, 95,
2820 96, 'A', 'B', 'C', 'D', 'E', 'F', 'G',
2821 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O',
2822 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W',
2823 'X', 'Y', 'Z', 123, 124, 125, 126, 127,
2824 128, 129, 130, 131, 132, 133, 134, 135,
2825 136, 137, 138, 139, 140, 141, 142, 143,
2826 144, 145, 146, 147, 148, 149, 150, 151,
2827 152, 153, 154, 155, 156, 157, 158, 159,
2828 160, 161, 162, 163, 164, 165, 166, 167,
2829 168, 169, 170, 171, 172, 173, 174, 175,
2830 176, 177, 178, 179, 180, 181, 182, 183,
2831 184, 185, 186, 187, 188, 189, 190, 191,
2832 192, 193, 194, 195, 196, 197, 198, 199,
2833 200, 201, 202, 203, 204, 205, 206, 207,
2834 208, 209, 210, 211, 212, 213, 214, 215,
2835 216, 217, 218, 219, 220, 221, 222, 223,
2836 224, 225, 226, 227, 228, 229, 230, 231,
2837 232, 233, 234, 235, 236, 237, 238, 239,
2838 240, 241, 242, 243, 244, 245, 246, 247,
2839 248, 249, 250, 251, 252, 253, 254, 255
2840};
9d116dd7 2841#endif /* !EBCDIC */
79072805 2842#else
22c35a8c 2843EXTCONST unsigned char PL_fold[];
79072805
LW
2844#endif
2845
2846#ifdef DOINIT
22c35a8c 2847EXT unsigned char PL_fold_locale[] = {
79072805
LW
2848 0, 1, 2, 3, 4, 5, 6, 7,
2849 8, 9, 10, 11, 12, 13, 14, 15,
2850 16, 17, 18, 19, 20, 21, 22, 23,
2851 24, 25, 26, 27, 28, 29, 30, 31,
2852 32, 33, 34, 35, 36, 37, 38, 39,
2853 40, 41, 42, 43, 44, 45, 46, 47,
2854 48, 49, 50, 51, 52, 53, 54, 55,
2855 56, 57, 58, 59, 60, 61, 62, 63,
2856 64, 'a', 'b', 'c', 'd', 'e', 'f', 'g',
2857 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o',
2858 'p', 'q', 'r', 's', 't', 'u', 'v', 'w',
2859 'x', 'y', 'z', 91, 92, 93, 94, 95,
2860 96, 'A', 'B', 'C', 'D', 'E', 'F', 'G',
2861 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O',
2862 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W',
2863 'X', 'Y', 'Z', 123, 124, 125, 126, 127,
2864 128, 129, 130, 131, 132, 133, 134, 135,
2865 136, 137, 138, 139, 140, 141, 142, 143,
2866 144, 145, 146, 147, 148, 149, 150, 151,
2867 152, 153, 154, 155, 156, 157, 158, 159,
2868 160, 161, 162, 163, 164, 165, 166, 167,
2869 168, 169, 170, 171, 172, 173, 174, 175,
2870 176, 177, 178, 179, 180, 181, 182, 183,
2871 184, 185, 186, 187, 188, 189, 190, 191,
2872 192, 193, 194, 195, 196, 197, 198, 199,
2873 200, 201, 202, 203, 204, 205, 206, 207,
2874 208, 209, 210, 211, 212, 213, 214, 215,
2875 216, 217, 218, 219, 220, 221, 222, 223,
2876 224, 225, 226, 227, 228, 229, 230, 231,
2877 232, 233, 234, 235, 236, 237, 238, 239,
2878 240, 241, 242, 243, 244, 245, 246, 247,
2879 248, 249, 250, 251, 252, 253, 254, 255
2880};
2881#else
22c35a8c 2882EXT unsigned char PL_fold_locale[];
79072805
LW
2883#endif
2884
2885#ifdef DOINIT
9d116dd7 2886#ifdef EBCDIC
22c35a8c 2887EXT unsigned char PL_freq[] = {/* EBCDIC frequencies for mixed English/C */
9d116dd7
JH
2888 1, 2, 84, 151, 154, 155, 156, 157,
2889 165, 246, 250, 3, 158, 7, 18, 29,
2890 40, 51, 62, 73, 85, 96, 107, 118,
2891 129, 140, 147, 148, 149, 150, 152, 153,
2892 255, 6, 8, 9, 10, 11, 12, 13,
2893 14, 15, 24, 25, 26, 27, 28, 226,
2894 29, 30, 31, 32, 33, 43, 44, 45,
2895 46, 47, 48, 49, 50, 76, 77, 78,
2896 79, 80, 81, 82, 83, 84, 85, 86,
2897 87, 94, 95, 234, 181, 233, 187, 190,
2898 180, 96, 97, 98, 99, 100, 101, 102,
2899 104, 112, 182, 174, 236, 232, 229, 103,
2900 228, 226, 114, 115, 116, 117, 118, 119,
2901 120, 121, 122, 235, 176, 230, 194, 162,
2902 130, 131, 132, 133, 134, 135, 136, 137,
2903 138, 139, 201, 205, 163, 217, 220, 224,
2904 5, 248, 227, 244, 242, 255, 241, 231,
2905 240, 253, 16, 197, 19, 20, 21, 187,
2906 23, 169, 210, 245, 237, 249, 247, 239,
2907 168, 252, 34, 196, 36, 37, 38, 39,
2908 41, 42, 251, 254, 238, 223, 221, 213,
2909 225, 177, 52, 53, 54, 55, 56, 57,
2910 58, 59, 60, 61, 63, 64, 65, 66,
2911 67, 68, 69, 70, 71, 72, 74, 75,
2912 205, 208, 186, 202, 200, 218, 198, 179,
2913 178, 214, 88, 89, 90, 91, 92, 93,
2914 217, 166, 170, 207, 199, 209, 206, 204,
2915 160, 212, 105, 106, 108, 109, 110, 111,
2916 203, 113, 216, 215, 192, 175, 193, 243,
2917 172, 161, 123, 124, 125, 126, 127, 128,
2918 222, 219, 211, 195, 188, 193, 185, 184,
2919 191, 183, 141, 142, 143, 144, 145, 146
2920};
2921#else /* ascii rather than ebcdic */
22c35a8c 2922EXTCONST unsigned char PL_freq[] = { /* letter frequencies for mixed English/C */
79072805
LW
2923 1, 2, 84, 151, 154, 155, 156, 157,
2924 165, 246, 250, 3, 158, 7, 18, 29,
2925 40, 51, 62, 73, 85, 96, 107, 118,
2926 129, 140, 147, 148, 149, 150, 152, 153,
2927 255, 182, 224, 205, 174, 176, 180, 217,
2928 233, 232, 236, 187, 235, 228, 234, 226,
2929 222, 219, 211, 195, 188, 193, 185, 184,
2930 191, 183, 201, 229, 181, 220, 194, 162,
2931 163, 208, 186, 202, 200, 218, 198, 179,
2932 178, 214, 166, 170, 207, 199, 209, 206,
2933 204, 160, 212, 216, 215, 192, 175, 173,
2934 243, 172, 161, 190, 203, 189, 164, 230,
2935 167, 248, 227, 244, 242, 255, 241, 231,
2936 240, 253, 169, 210, 245, 237, 249, 247,
2937 239, 168, 252, 251, 254, 238, 223, 221,
2938 213, 225, 177, 197, 171, 196, 159, 4,
2939 5, 6, 8, 9, 10, 11, 12, 13,
2940 14, 15, 16, 17, 19, 20, 21, 22,
2941 23, 24, 25, 26, 27, 28, 30, 31,
2942 32, 33, 34, 35, 36, 37, 38, 39,
2943 41, 42, 43, 44, 45, 46, 47, 48,
2944 49, 50, 52, 53, 54, 55, 56, 57,
2945 58, 59, 60, 61, 63, 64, 65, 66,
2946 67, 68, 69, 70, 71, 72, 74, 75,
2947 76, 77, 78, 79, 80, 81, 82, 83,
2948 86, 87, 88, 89, 90, 91, 92, 93,
2949 94, 95, 97, 98, 99, 100, 101, 102,
2950 103, 104, 105, 106, 108, 109, 110, 111,
2951 112, 113, 114, 115, 116, 117, 119, 120,
2952 121, 122, 123, 124, 125, 126, 127, 128,
2953 130, 131, 132, 133, 134, 135, 136, 137,
2954 138, 139, 141, 142, 143, 144, 145, 146
2955};
9d116dd7 2956#endif
79072805 2957#else
22c35a8c 2958EXTCONST unsigned char PL_freq[];
79072805
LW
2959#endif
2960
8990e307
LW
2961#ifdef DEBUGGING
2962#ifdef DOINIT
22c35a8c 2963EXTCONST char* PL_block_type[] = {
8990e307
LW
2964 "NULL",
2965 "SUB",
2966 "EVAL",
2967 "LOOP",
2968 "SUBST",
2969 "BLOCK",
2970};
2971#else
22c35a8c 2972EXTCONST char* PL_block_type[];
8990e307
LW
2973#endif
2974#endif
2975
73c4f7a1
GS
2976END_EXTERN_C
2977
79072805
LW
2978/*****************************************************************************/
2979/* This lexer/parser stuff is currently global since yacc is hard to reenter */
2980/*****************************************************************************/
8990e307 2981/* XXX This needs to be revisited, since BEGIN makes yacc re-enter... */
79072805 2982
a0d0e21e
LW
2983#include "perly.h"
2984
fb73857a 2985#define LEX_NOTPARSING 11 /* borrowed from toke.c */
2986
79072805
LW
2987typedef enum {
2988 XOPERATOR,
2989 XTERM,
79072805 2990 XREF,
8990e307 2991 XSTATE,
a0d0e21e 2992 XBLOCK,
09bef843
SB
2993 XATTRBLOCK,
2994 XATTRTERM,
a0d0e21e 2995 XTERMBLOCK
79072805
LW
2996} expectation;
2997
dc9e4912
GS
2998enum { /* pass one of these to get_vtbl */
2999 want_vtbl_sv,
3000 want_vtbl_env,
3001 want_vtbl_envelem,
3002 want_vtbl_sig,
3003 want_vtbl_sigelem,
3004 want_vtbl_pack,
3005 want_vtbl_packelem,
3006 want_vtbl_dbline,
3007 want_vtbl_isa,
3008 want_vtbl_isaelem,
3009 want_vtbl_arylen,
3010 want_vtbl_glob,
3011 want_vtbl_mglob,
3012 want_vtbl_nkeys,
3013 want_vtbl_taint,
3014 want_vtbl_substr,
3015 want_vtbl_vec,
3016 want_vtbl_pos,
3017 want_vtbl_bm,
3018 want_vtbl_fm,
3019 want_vtbl_uvar,
3020 want_vtbl_defelem,
3021 want_vtbl_regexp,
3022 want_vtbl_collxfrm,
3023 want_vtbl_amagic,
3024 want_vtbl_amagicelem,
4d1ff10f 3025#ifdef USE_5005THREADS
dc9e4912
GS
3026 want_vtbl_mutex,
3027#endif
3028 want_vtbl_regdata,
810b8aa5
GS
3029 want_vtbl_regdatum,
3030 want_vtbl_backref
dc9e4912
GS
3031};
3032
85e6fe83
LW
3033 /* Note: the lowest 8 bits are reserved for
3034 stuffing into op->op_private */
f3aa04c2 3035#define HINT_PRIVATE_MASK 0x000000ff
85e6fe83
LW
3036#define HINT_INTEGER 0x00000001
3037#define HINT_STRICT_REFS 0x00000002
2de3dbcc
JH
3038#define HINT_LOCALE 0x00000004
3039#define HINT_BYTES 0x00000008
0064a8a9 3040#define HINT_BYTES 0x00000008
393fec97 3041/* #define HINT_notused10 0x00000010 */
a0ed51b3 3042 /* Note: 20,40,80 used for NATIVE_HINTS */
85e6fe83
LW
3043
3044#define HINT_BLOCK_SCOPE 0x00000100
3045#define HINT_STRICT_SUBS 0x00000200
3046#define HINT_STRICT_VARS 0x00000400
3047
b3ac6de7
IZ
3048#define HINT_NEW_INTEGER 0x00001000
3049#define HINT_NEW_FLOAT 0x00002000
3050#define HINT_NEW_BINARY 0x00004000
3051#define HINT_NEW_STRING 0x00008000
3052#define HINT_NEW_RE 0x00010000
3053#define HINT_LOCALIZE_HH 0x00020000 /* %^H needs to be copied */
3054
b3eb6a9b 3055#define HINT_RE_TAINT 0x00100000
e4d48cc9 3056#define HINT_RE_EVAL 0x00200000
b3eb6a9b 3057
5ff3f7a4 3058#define HINT_FILETEST_ACCESS 0x00400000
393fec97 3059#define HINT_UTF8 0x00800000
5ff3f7a4 3060
d4cce5f1
NIS
3061/* Various states of an input record separator SV (rs, nrs) */
3062#define RsSNARF(sv) (! SvOK(sv))
af7d13df
MG
3063#define RsSIMPLE(sv) (SvOK(sv) && (! SvPOK(sv) || SvCUR(sv)))
3064#define RsPARA(sv) (SvPOK(sv) && ! SvCUR(sv))
5b2b9c68 3065#define RsRECORD(sv) (SvROK(sv) && (SvIV(SvRV(sv)) > 0))
79072805 3066
56953603 3067/* Enable variables which are pointers to functions */
a2efc822 3068typedef void (CPERLscope(*peep_t))(pTHX_ OP* o);
0cb96387
GS
3069typedef regexp*(CPERLscope(*regcomp_t)) (pTHX_ char* exp, char* xend, PMOP* pm);
3070typedef I32 (CPERLscope(*regexec_t)) (pTHX_ regexp* prog, char* stringarg,
3071 char* strend, char* strbeg, I32 minend,
3072 SV* screamer, void* data, U32 flags);
f722798b
IZ
3073typedef char* (CPERLscope(*re_intuit_start_t)) (pTHX_ regexp *prog, SV *sv,
3074 char *strpos, char *strend,
3075 U32 flags,
3076 struct re_scream_pos_data_s *d);
3077typedef SV* (CPERLscope(*re_intuit_string_t)) (pTHX_ regexp *prog);
3078typedef void (CPERLscope(*regfree_t)) (pTHX_ struct regexp* r);
56953603 3079
c76ac1ee 3080typedef void (*DESTRUCTORFUNC_NOCONTEXT_t) (void*);
acfe0abc
GS
3081typedef void (*DESTRUCTORFUNC_t) (pTHX_ void*);
3082typedef void (*SVFUNC_t) (pTHX_ SV*);
3083typedef I32 (*SVCOMPARE_t) (pTHX_ SV*, SV*);
3084typedef void (*XSINIT_t) (pTHX);
3085typedef void (*ATEXIT_t) (pTHX_ void*);
3086typedef void (*XSUBADDR_t) (pTHX_ CV *);
15e52e56 3087
22239a37
NIS
3088/* Set up PERLVAR macros for populating structs */
3089#define PERLVAR(var,type) type var;
51371543 3090#define PERLVARA(var,n,type) type var[n];
22239a37 3091#define PERLVARI(var,type,init) type var;
3fe35a81 3092#define PERLVARIC(var,type,init) type var;
22239a37 3093
58a50f62
GS
3094/* Interpreter exitlist entry */
3095typedef struct exitlistentry {
acfe0abc 3096 void (*fn) (pTHX_ void*);
58a50f62
GS
3097 void *ptr;
3098} PerlExitListEntry;
3099
22239a37
NIS
3100#ifdef PERL_GLOBAL_STRUCT
3101struct perl_vars {
7766f137 3102# include "perlvars.h"
22239a37
NIS
3103};
3104
7766f137 3105# ifdef PERL_CORE
533c011a
NIS
3106EXT struct perl_vars PL_Vars;
3107EXT struct perl_vars *PL_VarsPtr INIT(&PL_Vars);
7766f137
GS
3108# else /* PERL_CORE */
3109# if !defined(__GNUC__) || !defined(WIN32)
22239a37 3110EXT
7766f137 3111# endif /* WIN32 */
533c011a 3112struct perl_vars *PL_VarsPtr;
7766f137
GS
3113# define PL_Vars (*((PL_VarsPtr) \
3114 ? PL_VarsPtr : (PL_VarsPtr = Perl_GetVars(aTHX))))
3115# endif /* PERL_CORE */
22239a37
NIS
3116#endif /* PERL_GLOBAL_STRUCT */
3117
acfe0abc 3118#if defined(MULTIPLICITY)
d460ef45 3119/* If we have multiple interpreters define a struct
d4cce5f1 3120 holding variables which must be per-interpreter
d460ef45 3121 If we don't have threads anything that would have
d4cce5f1
NIS
3122 be per-thread is per-interpreter.
3123*/
3124
79072805 3125struct interpreter {
4d1ff10f 3126# ifndef USE_5005THREADS
7766f137
GS
3127# include "thrdvar.h"
3128# endif
3129# include "intrpvar.h"
3130/*
3131 * The following is a buffer where new variables must
acfe0abc 3132 * be defined to maintain binary compatibility with previous versions
7766f137
GS
3133 */
3134PERLVARA(object_compatibility,30, char)
49f531da 3135};
d4cce5f1 3136
79072805 3137#else
49f531da
NIS
3138struct interpreter {
3139 char broiled;
3140};
acfe0abc 3141#endif /* MULTIPLICITY */
79072805 3142
4d1ff10f 3143#ifdef USE_5005THREADS
d4cce5f1
NIS
3144/* If we have threads define a struct with all the variables
3145 * that have to be per-thread
49f531da 3146 */
8023c3ce 3147
79072805 3148
49f531da 3149struct perl_thread {
49f531da 3150#include "thrdvar.h"
79072805 3151};
d4cce5f1 3152
22fae026
TM
3153typedef struct perl_thread *Thread;
3154
3155#else
3156typedef void *Thread;
22239a37
NIS
3157#endif
3158
3159/* Done with PERLVAR macros for now ... */
d4cce5f1 3160#undef PERLVAR
51371543 3161#undef PERLVARA
d4cce5f1 3162#undef PERLVARI
3fe35a81 3163#undef PERLVARIC
79072805 3164
22239a37 3165#include "thread.h"
79072805 3166#include "pp.h"
864dbfa3
GS
3167
3168#ifndef PERL_CALLCONV
3169# define PERL_CALLCONV
d460ef45 3170#endif
864dbfa3 3171
65f19062
GS
3172#ifndef NEXT30_NO_ATTRIBUTE
3173# ifndef HASATTRIBUTE /* disable GNU-cc attribute checking? */
3174# ifdef __attribute__ /* Avoid possible redefinition errors */
3175# undef __attribute__
3176# endif
3177# define __attribute__(attr)
3178# endif
3179#endif
3180
0cb96387
GS
3181#undef PERL_CKDEF
3182#undef PERL_PPDEF
3183#define PERL_CKDEF(s) OP *s (pTHX_ OP *o);
3184#define PERL_PPDEF(s) OP *s (pTHX);
0cb96387 3185
7766f137 3186#include "proto.h"
864dbfa3 3187
0cb96387 3188/* this has structure inits, so it cannot be included before here */
acfe0abc 3189#include "opcode.h"
864dbfa3 3190
d4cce5f1
NIS
3191/* The following must follow proto.h as #defines mess up syntax */
3192
22c35a8c
GS
3193#if !defined(PERL_FOR_X2P)
3194# include "embedvar.h"
3195#endif
d4cce5f1 3196
d460ef45 3197/* Now include all the 'global' variables
d4cce5f1 3198 * If we don't have threads or multiple interpreters
d460ef45 3199 * these include variables that would have been their struct-s
d4cce5f1 3200 */
d460ef45 3201
533c011a 3202#define PERLVAR(var,type) EXT type PL_##var;
51371543 3203#define PERLVARA(var,n,type) EXT type PL_##var[n];
533c011a
NIS
3204#define PERLVARI(var,type,init) EXT type PL_##var INIT(init);
3205#define PERLVARIC(var,type,init) EXTCONST type PL_##var INIT(init);
d4cce5f1 3206
acfe0abc 3207#if !defined(MULTIPLICITY)
7766f137 3208START_EXTERN_C
066ef5b5 3209# include "intrpvar.h"
4d1ff10f 3210# ifndef USE_5005THREADS
066ef5b5
GS
3211# include "thrdvar.h"
3212# endif
7766f137 3213END_EXTERN_C
22239a37
NIS
3214#endif
3215
acfe0abc 3216#if defined(WIN32)
22c35a8c 3217# include "embed.h"
acfe0abc 3218#endif
22239a37 3219
c5be433b
GS
3220#ifndef PERL_GLOBAL_STRUCT
3221START_EXTERN_C
3222
3223# include "perlvars.h"
3224
3225END_EXTERN_C
3226#endif
3227
d4cce5f1 3228#undef PERLVAR
51371543 3229#undef PERLVARA
d4cce5f1 3230#undef PERLVARI
0f3f18a6 3231#undef PERLVARIC
79072805 3232
73c4f7a1
GS
3233START_EXTERN_C
3234
79072805 3235#ifdef DOINIT
bbce6d69 3236
2b260de0
GS
3237EXT MGVTBL PL_vtbl_sv = {MEMBER_TO_FPTR(Perl_magic_get),
3238 MEMBER_TO_FPTR(Perl_magic_set),
3239 MEMBER_TO_FPTR(Perl_magic_len),
463ee0b2 3240 0, 0};
2b260de0
GS
3241EXT MGVTBL PL_vtbl_env = {0, MEMBER_TO_FPTR(Perl_magic_set_all_env),
3242 0, MEMBER_TO_FPTR(Perl_magic_clear_all_env),
66b1d557 3243 0};
2b260de0
GS
3244EXT MGVTBL PL_vtbl_envelem = {0, MEMBER_TO_FPTR(Perl_magic_setenv),
3245 0, MEMBER_TO_FPTR(Perl_magic_clearenv),
85e6fe83 3246 0};
22c35a8c 3247EXT MGVTBL PL_vtbl_sig = {0, 0, 0, 0, 0};
64ca3a65
JH
3248#ifdef PERL_MICRO
3249EXT MGVTBL PL_vtbl_sigelem = {0, 0, 0, 0, 0};
3250#else
2b260de0
GS
3251EXT MGVTBL PL_vtbl_sigelem = {MEMBER_TO_FPTR(Perl_magic_getsig),
3252 MEMBER_TO_FPTR(Perl_magic_setsig),
3253 0, MEMBER_TO_FPTR(Perl_magic_clearsig),
0c30d9ec 3254 0};
64ca3a65 3255#endif
2b260de0 3256EXT MGVTBL PL_vtbl_pack = {0, 0, MEMBER_TO_FPTR(Perl_magic_sizepack), MEMBER_TO_FPTR(Perl_magic_wipepack),
a0d0e21e 3257 0};
2b260de0
GS
3258EXT MGVTBL PL_vtbl_packelem = {MEMBER_TO_FPTR(Perl_magic_getpack),
3259 MEMBER_TO_FPTR(Perl_magic_setpack),
3260 0, MEMBER_TO_FPTR(Perl_magic_clearpack),
463ee0b2 3261 0};
2b260de0 3262EXT MGVTBL PL_vtbl_dbline = {0, MEMBER_TO_FPTR(Perl_magic_setdbline),
463ee0b2 3263 0, 0, 0};
2b260de0
GS
3264EXT MGVTBL PL_vtbl_isa = {0, MEMBER_TO_FPTR(Perl_magic_setisa),
3265 0, MEMBER_TO_FPTR(Perl_magic_setisa),
fb73857a 3266 0};
2b260de0 3267EXT MGVTBL PL_vtbl_isaelem = {0, MEMBER_TO_FPTR(Perl_magic_setisa),
463ee0b2 3268 0, 0, 0};
2b260de0
GS
3269EXT MGVTBL PL_vtbl_arylen = {MEMBER_TO_FPTR(Perl_magic_getarylen),
3270 MEMBER_TO_FPTR(Perl_magic_setarylen),
463ee0b2 3271 0, 0, 0};
2b260de0
GS
3272EXT MGVTBL PL_vtbl_glob = {MEMBER_TO_FPTR(Perl_magic_getglob),
3273 MEMBER_TO_FPTR(Perl_magic_setglob),
463ee0b2 3274 0, 0, 0};
2b260de0 3275EXT MGVTBL PL_vtbl_mglob = {0, MEMBER_TO_FPTR(Perl_magic_setmglob),
463ee0b2 3276 0, 0, 0};
2b260de0
GS
3277EXT MGVTBL PL_vtbl_nkeys = {MEMBER_TO_FPTR(Perl_magic_getnkeys),
3278 MEMBER_TO_FPTR(Perl_magic_setnkeys),
99abf803 3279 0, 0, 0};
2b260de0 3280EXT MGVTBL PL_vtbl_taint = {MEMBER_TO_FPTR(Perl_magic_gettaint),MEMBER_TO_FPTR(Perl_magic_settaint),
463ee0b2 3281 0, 0, 0};
2b260de0 3282EXT MGVTBL PL_vtbl_substr = {MEMBER_TO_FPTR(Perl_magic_getsubstr), MEMBER_TO_FPTR(Perl_magic_setsubstr),
463ee0b2 3283 0, 0, 0};
2b260de0
GS
3284EXT MGVTBL PL_vtbl_vec = {MEMBER_TO_FPTR(Perl_magic_getvec),
3285 MEMBER_TO_FPTR(Perl_magic_setvec),
463ee0b2 3286 0, 0, 0};
2b260de0
GS
3287EXT MGVTBL PL_vtbl_pos = {MEMBER_TO_FPTR(Perl_magic_getpos),
3288 MEMBER_TO_FPTR(Perl_magic_setpos),
a0d0e21e 3289 0, 0, 0};
2b260de0 3290EXT MGVTBL PL_vtbl_bm = {0, MEMBER_TO_FPTR(Perl_magic_setbm),
463ee0b2 3291 0, 0, 0};
2b260de0 3292EXT MGVTBL PL_vtbl_fm = {0, MEMBER_TO_FPTR(Perl_magic_setfm),
55497cff 3293 0, 0, 0};
2b260de0
GS
3294EXT MGVTBL PL_vtbl_uvar = {MEMBER_TO_FPTR(Perl_magic_getuvar),
3295 MEMBER_TO_FPTR(Perl_magic_setuvar),
463ee0b2 3296 0, 0, 0};
4d1ff10f 3297#ifdef USE_5005THREADS
2b260de0 3298EXT MGVTBL PL_vtbl_mutex = {0, 0, 0, 0, MEMBER_TO_FPTR(Perl_magic_mutexfree)};
4d1ff10f 3299#endif /* USE_5005THREADS */
2b260de0 3300EXT MGVTBL PL_vtbl_defelem = {MEMBER_TO_FPTR(Perl_magic_getdefelem),MEMBER_TO_FPTR(Perl_magic_setdefelem),
02270b4e 3301 0, 0, 0};
a0d0e21e 3302
2b260de0
GS
3303EXT MGVTBL PL_vtbl_regexp = {0,0,0,0, MEMBER_TO_FPTR(Perl_magic_freeregexp)};
3304EXT MGVTBL PL_vtbl_regdata = {0, 0, MEMBER_TO_FPTR(Perl_magic_regdata_cnt), 0, 0};
a29d06ed
MG
3305EXT MGVTBL PL_vtbl_regdatum = {MEMBER_TO_FPTR(Perl_magic_regdatum_get),
3306 MEMBER_TO_FPTR(Perl_magic_regdatum_set), 0, 0, 0};
c277df42 3307
36477c24 3308#ifdef USE_LOCALE_COLLATE
22c35a8c 3309EXT MGVTBL PL_vtbl_collxfrm = {0,
2b260de0 3310 MEMBER_TO_FPTR(Perl_magic_setcollxfrm),
bbce6d69 3311 0, 0, 0};
3312#endif
a0d0e21e 3313
2b260de0
GS
3314EXT MGVTBL PL_vtbl_amagic = {0, MEMBER_TO_FPTR(Perl_magic_setamagic),
3315 0, 0, MEMBER_TO_FPTR(Perl_magic_setamagic)};
3316EXT MGVTBL PL_vtbl_amagicelem = {0, MEMBER_TO_FPTR(Perl_magic_setamagic),
3317 0, 0, MEMBER_TO_FPTR(Perl_magic_setamagic)};
a0d0e21e 3318
810b8aa5 3319EXT MGVTBL PL_vtbl_backref = {0, 0,
2b260de0 3320 0, 0, MEMBER_TO_FPTR(Perl_magic_killbackrefs)};
810b8aa5 3321
d460ef45
NIS
3322EXT MGVTBL PL_vtbl_ovrld = {0, 0,
3323 0, 0, MEMBER_TO_FPTR(Perl_magic_freeovrld)};
3324
bbce6d69 3325#else /* !DOINIT */
3326
22c35a8c
GS
3327EXT MGVTBL PL_vtbl_sv;
3328EXT MGVTBL PL_vtbl_env;
3329EXT MGVTBL PL_vtbl_envelem;
3330EXT MGVTBL PL_vtbl_sig;
3331EXT MGVTBL PL_vtbl_sigelem;
3332EXT MGVTBL PL_vtbl_pack;
3333EXT MGVTBL PL_vtbl_packelem;
3334EXT MGVTBL PL_vtbl_dbline;
3335EXT MGVTBL PL_vtbl_isa;
3336EXT MGVTBL PL_vtbl_isaelem;
3337EXT MGVTBL PL_vtbl_arylen;
3338EXT MGVTBL PL_vtbl_glob;
3339EXT MGVTBL PL_vtbl_mglob;
3340EXT MGVTBL PL_vtbl_nkeys;
3341EXT MGVTBL PL_vtbl_taint;
3342EXT MGVTBL PL_vtbl_substr;
3343EXT MGVTBL PL_vtbl_vec;
3344EXT MGVTBL PL_vtbl_pos;
3345EXT MGVTBL PL_vtbl_bm;
3346EXT MGVTBL PL_vtbl_fm;
3347EXT MGVTBL PL_vtbl_uvar;
d460ef45 3348EXT MGVTBL PL_vtbl_ovrld;
a0d0e21e 3349
4d1ff10f 3350#ifdef USE_5005THREADS
22c35a8c 3351EXT MGVTBL PL_vtbl_mutex;
4d1ff10f 3352#endif /* USE_5005THREADS */
f93b4edd 3353
22c35a8c
GS
3354EXT MGVTBL PL_vtbl_defelem;
3355EXT MGVTBL PL_vtbl_regexp;
3356EXT MGVTBL PL_vtbl_regdata;
3357EXT MGVTBL PL_vtbl_regdatum;
a0d0e21e 3358
36477c24 3359#ifdef USE_LOCALE_COLLATE
22c35a8c 3360EXT MGVTBL PL_vtbl_collxfrm;
bbce6d69 3361#endif
a0d0e21e 3362
22c35a8c
GS
3363EXT MGVTBL PL_vtbl_amagic;
3364EXT MGVTBL PL_vtbl_amagicelem;
a0d0e21e 3365
810b8aa5
GS
3366EXT MGVTBL PL_vtbl_backref;
3367
bbce6d69 3368#endif /* !DOINIT */
85e6fe83 3369
f5284f61
IZ
3370enum {
3371 fallback_amg, abs_amg,
3372 bool__amg, nomethod_amg,
3373 string_amg, numer_amg,
3374 add_amg, add_ass_amg,
3375 subtr_amg, subtr_ass_amg,
3376 mult_amg, mult_ass_amg,
3377 div_amg, div_ass_amg,
3378 modulo_amg, modulo_ass_amg,
3379 pow_amg, pow_ass_amg,
3380 lshift_amg, lshift_ass_amg,
3381 rshift_amg, rshift_ass_amg,
3382 band_amg, band_ass_amg,
3383 bor_amg, bor_ass_amg,
3384 bxor_amg, bxor_ass_amg,
3385 lt_amg, le_amg,
3386 gt_amg, ge_amg,
3387 eq_amg, ne_amg,
3388 ncmp_amg, scmp_amg,
3389 slt_amg, sle_amg,
3390 sgt_amg, sge_amg,
3391 seq_amg, sne_amg,
3392 not_amg, compl_amg,
3393 inc_amg, dec_amg,
3394 atan2_amg, cos_amg,
3395 sin_amg, exp_amg,
3396 log_amg, sqrt_amg,
3397 repeat_amg, repeat_ass_amg,
3398 concat_amg, concat_ass_amg,
3399 copy_amg, neg_amg,
3400 to_sv_amg, to_av_amg,
3401 to_hv_amg, to_gv_amg,
d460ef45 3402 to_cv_amg, iter_amg,
f216259d
IZ
3403 int_amg, DESTROY_amg,
3404 max_amg_code
64a0062a 3405 /* Do not leave a trailing comma here. C9X allows it, C89 doesn't. */
f5284f61
IZ
3406};
3407
3408#define NofAMmeth max_amg_code
89ffc314 3409#define AMG_id2name(id) ((char*)PL_AMG_names[id]+1)
f5284f61 3410
a0d0e21e 3411#ifdef DOINIT
22c35a8c 3412EXTCONST char * PL_AMG_names[NofAMmeth] = {
89ffc314
IZ
3413 /* Names kept in the symbol table. fallback => "()", the rest has
3414 "(" prepended. The only other place in perl which knows about
3415 this convention is AMG_id2name (used for debugging output and
3416 'nomethod' only), the only other place which has it hardwired is
3417 overload.pm. */
3418 "()", "(abs", /* "fallback" should be the first. */
3419 "(bool", "(nomethod",
3420 "(\"\"", "(0+",
3421 "(+", "(+=",
3422 "(-", "(-=",
3423 "(*", "(*=",
3424 "(/", "(/=",
3425 "(%", "(%=",
3426 "(**", "(**=",
3427 "(<<", "(<<=",
3428 "(>>", "(>>=",
3429 "(&", "(&=",
3430 "(|", "(|=",
3431 "(^", "(^=",
3432 "(<", "(<=",
3433 "(>", "(>=",
3434 "(==", "(!=",
3435 "(<=>", "(cmp",
3436 "(lt", "(le",
3437 "(gt", "(ge",
3438 "(eq", "(ne",
3439 "(!", "(~",
3440 "(++", "(--",
3441 "(atan2", "(cos",
3442 "(sin", "(exp",
3443 "(log", "(sqrt",
3444 "(x", "(x=",
3445 "(.", "(.=",
3446 "(=", "(neg",
3447 "(${}", "(@{}",
3448 "(%{}", "(*{}",
3449 "(&{}", "(<>",
f216259d 3450 "(int", "DESTROY",
a0d0e21e
LW
3451};
3452#else
22c35a8c 3453EXTCONST char * PL_AMG_names[NofAMmeth];
a0d0e21e
LW
3454#endif /* def INITAMAGIC */
3455
73c4f7a1
GS
3456END_EXTERN_C
3457
a6006777 3458struct am_table {
a0d0e21e
LW
3459 long was_ok_sub;
3460 long was_ok_am;
a6006777 3461 U32 flags;
3462 CV* table[NofAMmeth];
a0d0e21e
LW
3463 long fallback;
3464};
a6006777 3465struct am_table_short {
3466 long was_ok_sub;
3467 long was_ok_am;
3468 U32 flags;
3469};
a0d0e21e 3470typedef struct am_table AMT;
a6006777 3471typedef struct am_table_short AMTS;
a0d0e21e
LW
3472
3473#define AMGfallNEVER 1
3474#define AMGfallNO 2
3475#define AMGfallYES 3
3476
a6006777 3477#define AMTf_AMAGIC 1
32251b26 3478#define AMTf_OVERLOADED 2
a6006777 3479#define AMT_AMAGIC(amt) ((amt)->flags & AMTf_AMAGIC)
3480#define AMT_AMAGIC_on(amt) ((amt)->flags |= AMTf_AMAGIC)
3481#define AMT_AMAGIC_off(amt) ((amt)->flags &= ~AMTf_AMAGIC)
32251b26
IZ
3482#define AMT_OVERLOADED(amt) ((amt)->flags & AMTf_OVERLOADED)
3483#define AMT_OVERLOADED_on(amt) ((amt)->flags |= AMTf_OVERLOADED)
3484#define AMT_OVERLOADED_off(amt) ((amt)->flags &= ~AMTf_OVERLOADED)
a6006777 3485
32251b26 3486#define StashHANDLER(stash,meth) gv_handler((stash),CAT2(meth,_amg))
c0315cdf
JH
3487
3488/*
3489 * some compilers like to redefine cos et alia as faster
3490 * (and less accurate?) versions called F_cos et cetera (Quidquid
3491 * latine dictum sit, altum viditur.) This trick collides with
3492 * the Perl overloading (amg). The following #defines fool both.
3493 */
3494
3495#ifdef _FASTMATH
3496# ifdef atan2
3497# define F_atan2_amg atan2_amg
3498# endif
3499# ifdef cos
3500# define F_cos_amg cos_amg
3501# endif
3502# ifdef exp
3503# define F_exp_amg exp_amg
3504# endif
3505# ifdef log
3506# define F_log_amg log_amg
3507# endif
3508# ifdef pow
3509# define F_pow_amg pow_amg
3510# endif
3511# ifdef sin
3512# define F_sin_amg sin_amg
3513# endif
3514# ifdef sqrt
3515# define F_sqrt_amg sqrt_amg
3516# endif
3517#endif /* _FASTMATH */
3518
83ee9e09
GS
3519#define PERLDB_ALL (PERLDBf_SUB | PERLDBf_LINE | \
3520 PERLDBf_NOOPT | PERLDBf_INTER | \
3521 PERLDBf_SUBLINE| PERLDBf_SINGLE| \
3522 PERLDBf_NAMEEVAL| PERLDBf_NAMEANON)
3523 /* No _NONAME, _GOTO */
3524#define PERLDBf_SUB 0x01 /* Debug sub enter/exit */
3525#define PERLDBf_LINE 0x02 /* Keep line # */
3526#define PERLDBf_NOOPT 0x04 /* Switch off optimizations */
3527#define PERLDBf_INTER 0x08 /* Preserve more data for
3528 later inspections */
3529#define PERLDBf_SUBLINE 0x10 /* Keep subr source lines */
3530#define PERLDBf_SINGLE 0x20 /* Start with single-step on */
3531#define PERLDBf_NONAME 0x40 /* For _SUB: no name of the subr */
3532#define PERLDBf_GOTO 0x80 /* Report goto: call DB::goto */
3533#define PERLDBf_NAMEEVAL 0x100 /* Informative names for evals */
3534#define PERLDBf_NAMEANON 0x200 /* Informative names for anon subs */
84902520 3535
3280af22
NIS
3536#define PERLDB_SUB (PL_perldb && (PL_perldb & PERLDBf_SUB))
3537#define PERLDB_LINE (PL_perldb && (PL_perldb & PERLDBf_LINE))
3538#define PERLDB_NOOPT (PL_perldb && (PL_perldb & PERLDBf_NOOPT))
3539#define PERLDB_INTER (PL_perldb && (PL_perldb & PERLDBf_INTER))
3540#define PERLDB_SUBLINE (PL_perldb && (PL_perldb & PERLDBf_SUBLINE))
3541#define PERLDB_SINGLE (PL_perldb && (PL_perldb & PERLDBf_SINGLE))
3542#define PERLDB_SUB_NN (PL_perldb && (PL_perldb & (PERLDBf_NONAME)))
3543#define PERLDB_GOTO (PL_perldb && (PL_perldb & PERLDBf_GOTO))
83ee9e09
GS
3544#define PERLDB_NAMEEVAL (PL_perldb && (PL_perldb & PERLDBf_NAMEEVAL))
3545#define PERLDB_NAMEANON (PL_perldb && (PL_perldb & PERLDBf_NAMEANON))
84902520 3546
bbce6d69 3547
36477c24 3548#ifdef USE_LOCALE_NUMERIC
bbce6d69 3549
36477c24 3550#define SET_NUMERIC_STANDARD() \
ff4fed7c 3551 set_numeric_standard();
36477c24 3552
3553#define SET_NUMERIC_LOCAL() \
ff4fed7c 3554 set_numeric_local();
bbce6d69 3555
2de3dbcc
JH
3556#define IN_LOCALE_RUNTIME (PL_curcop->op_private & HINT_LOCALE)
3557#define IN_LOCALE_COMPILETIME (PL_hints & HINT_LOCALE)
3558
3559#define IN_LOCALE \
3560 (PL_curcop == &PL_compiling ? IN_LOCALE_COMPILETIME : IN_LOCALE_RUNTIME)
3561
f93f4e46 3562#define STORE_NUMERIC_LOCAL_SET_STANDARD() \
2de3dbcc 3563 bool was_local = PL_numeric_local && IN_LOCALE; \
ff4fed7c 3564 if (was_local) SET_NUMERIC_STANDARD();
f93f4e46
CK
3565
3566#define STORE_NUMERIC_STANDARD_SET_LOCAL() \
2de3dbcc 3567 bool was_standard = PL_numeric_standard && IN_LOCALE; \
ff4fed7c 3568 if (was_standard) SET_NUMERIC_LOCAL();
f93f4e46
CK
3569
3570#define RESTORE_NUMERIC_LOCAL() \
3571 if (was_local) SET_NUMERIC_LOCAL();
3572
3573#define RESTORE_NUMERIC_STANDARD() \
3574 if (was_standard) SET_NUMERIC_STANDARD();
3575
5b877257 3576#define Atof my_atof
097ee67d 3577
36477c24 3578#else /* !USE_LOCALE_NUMERIC */
bbce6d69 3579
097ee67d
JH
3580#define SET_NUMERIC_STANDARD() /**/
3581#define SET_NUMERIC_LOCAL() /**/
5e931b6b 3582#define IS_NUMERIC_RADIX(a, b) (0)
f93f4e46
CK
3583#define STORE_NUMERIC_LOCAL_SET_STANDARD() /**/
3584#define STORE_NUMERIC_STANDARD_SET_LOCAL() /**/
097ee67d
JH
3585#define RESTORE_NUMERIC_LOCAL() /**/
3586#define RESTORE_NUMERIC_STANDARD() /**/
65202027 3587#define Atof Perl_atof
ad3e0f90 3588#define IN_LOCALE_RUNTIME 0
bbce6d69 3589
36477c24 3590#endif /* !USE_LOCALE_NUMERIC */
a0d0e21e 3591
079290de 3592#if !defined(Strtol) && defined(USE_64_BIT_INT) && defined(IV_IS_QUAD) && QUADKIND == QUAD_IS_LONG_LONG
ec7b9793
JH
3593# ifdef __hpux
3594# define strtoll __strtoll /* secret handshake */
3595# endif
079290de
GS
3596# if !defined(Strtol) && defined(HAS_STRTOLL)
3597# define Strtol strtoll
ad551343 3598# endif
28e5dec8
JH
3599# if !defined(Strtol) && defined(HAS_STRTOQ)
3600# define Strtol strtoq
3601# endif
ff935051 3602/* is there atoq() anywhere? */
15b99d39 3603#endif
079290de
GS
3604#if !defined(Strtol) && defined(HAS_STRTOL)
3605# define Strtol strtol
3606#endif
3607#ifndef Atol
3608/* It would be more fashionable to use Strtol() to define atol()
3609 * (as is done for Atoul(), see below) but for backward compatibility
3610 * we just assume atol(). */
76b882ba
JH
3611# if defined(USE_64_BIT_INT) && defined(IV_IS_QUAD) && QUADKIND == QUAD_IS_LONG_LONG && defined(HAS_ATOLL)
3612# define Atol atoll
3613# else
3614# define Atol atol
3615# endif
cf2093f6
JH
3616#endif
3617
55eb892c 3618#if !defined(Strtoul) && defined(USE_64_BIT_INT) && defined(UV_IS_QUAD) && QUADKIND == QUAD_IS_LONG_LONG
ec7b9793
JH
3619# ifdef __hpux
3620# define strtoull __strtoull /* secret handshake */
3621# endif
ad551343 3622# if !defined(Strtoul) && defined(HAS_STRTOULL)
388d3c03 3623# define Strtoul strtoull
15b99d39 3624# endif
079290de
GS
3625# if !defined(Strtoul) && defined(HAS_STRTOUQ)
3626# define Strtoul strtouq
3627# endif
76d49b1c 3628/* is there atouq() anywhere? */
ad551343 3629#endif
079290de
GS
3630#if !defined(Strtoul) && defined(HAS_STRTOUL)
3631# define Strtoul strtoul
cf2093f6 3632#endif
079290de
GS
3633#ifndef Atoul
3634# define Atoul(s) Strtoul(s, (char **)NULL, 10)
55eb892c 3635#endif
cf2093f6 3636
e5c9fcd0 3637#if !defined(PERLIO_IS_STDIO) && defined(HASATTRIBUTE)
d460ef45
NIS
3638/*
3639 * Now we have __attribute__ out of the way
3640 * Remap printf
760ac839 3641 */
39455587 3642#undef printf
c745e42c
NIS
3643#ifdef __GNUC__
3644#define printf(fmt,args...) PerlIO_stdoutf(fmt,##args)
3645#else
760ac839
LW
3646#define printf PerlIO_stdoutf
3647#endif
c745e42c 3648#endif
760ac839 3649
06d86050
GS
3650/* if these never got defined, they need defaults */
3651#ifndef PERL_SET_CONTEXT
3652# define PERL_SET_CONTEXT(i) PERL_SET_INTERP(i)
3653#endif
3654
3655#ifndef PERL_GET_CONTEXT
3656# define PERL_GET_CONTEXT PERL_GET_INTERP
3657#endif
3658
3659#ifndef PERL_GET_THX
3660# define PERL_GET_THX ((void*)NULL)
3661#endif
3662
3663#ifndef PERL_SET_THX
3664# define PERL_SET_THX(t) NOOP
3665#endif
3666
a868473f
NIS
3667#ifndef PERL_SCRIPT_MODE
3668#define PERL_SCRIPT_MODE "r"
3669#endif
3670
fba3b22e 3671/*
da927450
JH
3672 * Some operating systems are stingy with stack allocation,
3673 * so perl may have to guard against stack overflow.
3674 */
3675#ifndef PERL_STACK_OVERFLOW_CHECK
c2af87cb 3676#define PERL_STACK_OVERFLOW_CHECK() NOOP
da927450
JH
3677#endif
3678
3679/*
3680 * Some nonpreemptive operating systems find it convenient to
3681 * check for asynchronous conditions after each op execution.
3682 * Keep this check simple, or it may slow down execution
3683 * massively.
3684 */
ce08f86c 3685
1d615522
JH
3686#ifndef PERL_MICRO
3687# ifndef PERL_OLD_SIGNALS
2986a63f
JH
3688# ifndef PERL_ASYNC_CHECK
3689# define PERL_ASYNC_CHECK() if (PL_sig_pending) despatch_signals()
3690# endif
1d615522 3691# endif
ce08f86c
NIS
3692#endif
3693
da927450 3694#ifndef PERL_ASYNC_CHECK
1d615522 3695# define PERL_ASYNC_CHECK() NOOP
da927450
JH
3696#endif
3697
3698/*
3699 * On some operating systems, a memory allocation may succeed,
3700 * but put the process too close to the system's comfort limit.
3701 * In this case, PERL_ALLOC_CHECK frees the pointer and sets
3702 * it to NULL.
3703 */
3704#ifndef PERL_ALLOC_CHECK
c2af87cb 3705#define PERL_ALLOC_CHECK(p) NOOP
da927450
JH
3706#endif
3707
3708/*
fba3b22e
MB
3709 * nice_chunk and nice_chunk size need to be set
3710 * and queried under the protection of sv_mutex
3711 */
30ad99e7
MJD
3712#define offer_nice_chunk(chunk, chunk_size) STMT_START { \
3713 void *new_chunk; \
3714 U32 new_chunk_size; \
3715 LOCK_SV_MUTEX; \
3716 new_chunk = (void *)(chunk); \
3717 new_chunk_size = (chunk_size); \
3718 if (new_chunk_size > PL_nice_chunk_size) { \
3719 if (PL_nice_chunk) Safefree(PL_nice_chunk); \
3720 PL_nice_chunk = new_chunk; \
3721 PL_nice_chunk_size = new_chunk_size; \
3722 } else { \
3723 Safefree(chunk); \
3724 } \
3725 UNLOCK_SV_MUTEX; \
3726 } STMT_END
fba3b22e 3727
bd89102f
AD
3728#ifdef HAS_SEM
3729# include <sys/ipc.h>
3730# include <sys/sem.h>
3731# ifndef HAS_UNION_SEMUN /* Provide the union semun. */
3732 union semun {
dbba660d
TC
3733 int val;
3734 struct semid_ds *buf;
3735 unsigned short *array;
bd89102f
AD
3736 };
3737# endif
3738# ifdef USE_SEMCTL_SEMUN
dbba660d
TC
3739# ifdef IRIX32_SEMUN_BROKEN_BY_GCC
3740 union gccbug_semun {
3741 int val;
3742 struct semid_ds *buf;
3743 unsigned short *array;
3744 char __dummy[5];
3745 };
3746# define semun gccbug_semun
3747# endif
bd89102f
AD
3748# define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun)
3749# else
3750# ifdef USE_SEMCTL_SEMID_DS
e6f0bdd6
GS
3751# ifdef EXTRA_F_IN_SEMUN_BUF
3752# define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun.buff)
3753# else
3754# define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun.buf)
3755# endif
bd89102f
AD
3756# endif
3757# endif
bd89102f 3758#endif
49f531da 3759
9a34ef1d
GS
3760#ifdef I_FCNTL
3761# include <fcntl.h>
9a34ef1d
GS
3762#endif
3763
3764#ifdef I_SYS_FILE
3765# include <sys/file.h>
3766#endif
3767
fa0a29af 3768#if defined(HAS_FLOCK) && !defined(HAS_FLOCK_PROTO)
2ef53570
JH
3769int flock(int fd, int op);
3770#endif
3771
fe52b3b7
GS
3772#ifndef O_RDONLY
3773/* Assume UNIX defaults */
3774# define O_RDONLY 0000
3775# define O_WRONLY 0001
3776# define O_RDWR 0002