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