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