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