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