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