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