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