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