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