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