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