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