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