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