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