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