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