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