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