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