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