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