3b133185cfacd557d263f71163f2dc995372c09e
[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
12 /*#define PERL_IMPLICIT_CONTEXT*/
13
14 #ifdef PERL_FOR_X2P
15 /*
16  * This file is being used for x2p stuff. 
17  * Above symbol is defined via -D in 'x2p/Makefile.SH'
18  * Decouple x2p stuff from some of perls more extreme eccentricities. 
19  */
20 #undef MULTIPLICITY
21 #undef USE_STDIO
22 #define USE_STDIO
23 #endif /* PERL_FOR_X2P */
24
25 #define VOIDUSED 1
26 #include "config.h"
27
28 /* XXXXXX testing threads via implicit pointer */
29 #ifdef USE_THREADS
30 #define PERL_IMPLICIT_CONTEXT
31 #endif
32
33 #ifdef PERL_OBJECT
34
35 /* PERL_OBJECT explained  - DickH and DougL @ ActiveState.com
36
37 Defining PERL_OBJECT turns on creation of a C++ object that
38 contains all writable core perl global variables and functions.
39 Stated another way, all necessary global variables and functions
40 are members of a big C++ object. This object's class is CPerlObj.
41 This allows a Perl Host to have multiple, independent perl
42 interpreters in the same process space. This is very important on
43 Win32 systems as the overhead of process creation is quite high --
44 this could be even higher than the script compile and execute time
45 for small scripts.
46
47 The perl executable implementation on Win32 is composed of perl.exe
48 (the Perl Host) and perlX.dll. (the Perl Core). This allows the
49 same Perl Core to easily be embedded in other applications that use
50 the perl interpreter.
51
52 +-----------+
53 | Perl Host |
54 +-----------+
55       ^
56           |
57           v
58 +-----------+   +-----------+
59 | Perl Core |<->| Extension |
60 +-----------+   +-----------+ ...
61
62 Defining PERL_OBJECT has the following effects:
63
64 PERL CORE
65 1. CPerlObj is defined (this is the PERL_OBJECT)
66 2. all static functions that needed to access either global
67 variables or functions needed are made member functions
68 3. all writable static variables are made member variables
69 4. all global variables and functions are defined as:
70         #define var CPerlObj::PL_var
71         #define func CPerlObj::Perl_func
72         * these are in embed.h
73 This necessitated renaming some local variables and functions that
74 had the same name as a global variable or function. This was
75 probably a _good_ thing anyway.
76
77
78 EXTENSIONS
79 1. Access to global variables and perl functions is through a
80 pointer to the PERL_OBJECT. This pointer type is CPerlObj*. This is
81 made transparent to extension developers by the following macros:
82         #define var pPerl->PL_var
83         #define func pPerl->Perl_func
84         * these are done in objXSUB.h
85 This requires that the extension be compiled as C++, which means
86 that the code must be ANSI C and not K&R C. For K&R extensions,
87 please see the C API notes located in Win32/GenCAPI.pl. This script
88 creates a perlCAPI.lib that provides a K & R compatible C interface
89 to the PERL_OBJECT.
90 2. Local variables and functions cannot have the same name as perl's
91 variables or functions since the macros will redefine these. Look for
92 this if you get some strange error message and it does not look like
93 the code that you had written. This often happens with variables that
94 are local to a function.
95
96 PERL HOST
97 1. The perl host is linked with perlX.lib to get perl_alloc. This
98 function will return a pointer to CPerlObj (the PERL_OBJECT). It
99 takes pointers to the various PerlXXX_YYY interfaces (see iperlsys.h
100 for more information on this).
101 2. The perl host calls the same functions as normally would be
102 called in setting up and running a perl script, except that the
103 functions are now member functions of the PERL_OBJECT.
104
105 */
106
107
108 class CPerlObj;
109
110 #define STATIC
111 #define CPERLscope(x) CPerlObj::x
112 #define CALL_FPTR(fptr) (this->*fptr)
113
114 #define pTHXo           CPerlObj *pPerl
115 #define pTHXo_          pTHXo,
116 #define _pTHXo          ,pTHXo
117 #define aTHXo           this
118 #define aTHXo_          this,
119 #define _aTHXo          ,this
120 #define PERL_OBJECT_THIS        aTHXo
121 #define PERL_OBJECT_THIS_       aTHXo_
122 #define _PERL_OBJECT_THIS       _aTHXo
123
124 #define pTHXx           void
125 #define pTHXx_
126 #define _pTHXx
127 #define aTHXx
128 #define aTHXx_
129 #define _aTHXx
130
131 #else /* !PERL_OBJECT */
132
133 #define STATIC static
134 #define CPERLscope(x) x
135 #define CPERLarg void
136 #define CPERLarg_
137 #define _CPERLarg
138 #define PERL_OBJECT_THIS
139 #define _PERL_OBJECT_THIS
140 #define PERL_OBJECT_THIS_
141 #define CALL_FPTR(fptr) (*fptr)
142
143 #endif /* PERL_OBJECT */
144
145 #define CALLRUNOPS  CALL_FPTR(PL_runops)
146 #define CALLREGCOMP CALL_FPTR(PL_regcompp)
147 #define CALLREGEXEC CALL_FPTR(PL_regexecp)
148 #define CALLPROTECT CALL_FPTR(PL_protect)
149
150 #define NOOP (void)0
151 #define dNOOP extern int Perl___notused
152
153 #ifdef PERL_IMPLICIT_CONTEXT
154 #  ifdef USE_THREADS
155 struct perl_thread;
156 #    define pTHX        register struct perl_thread *thr
157 #    define aTHX        thr
158 #    define dTHXa(a)    pTHX = (struct perl_thread *)a
159 #    define dTHX        dTHXa(SvPVX(PL_thrsv))
160 #    define dTHR        dNOOP
161 #  else
162 #    define MULTIPLICITY
163 #    define pTHX        register PerlInterpreter *my_perl
164 #    define aTHX        my_perl
165 #    define dTHXa(a)    pTHX = (PerlInterpreter *)a
166 #    define dTHX        dTHXa(PL_curinterp)
167 #  endif
168 #  define pTHX_         pTHX,
169 #  define _pTHX         ,pTHX
170 #  define aTHX_         aTHX,
171 #  define _aTHX         ,aTHX
172 #endif
173
174 #ifndef pTHX
175 #  define pTHX          void
176 #  define pTHX_
177 #  define _pTHX
178 #  define aTHX
179 #  define aTHX_
180 #  define _aTHX
181 #  define dTHXa(a)      dNOOP
182 #  define dTHX          dNOOP
183 #endif
184
185 #ifndef pTHXo
186 #  define pTHXo         pTHX
187 #  define pTHXo_        pTHX_
188 #  define _pTHXo        _pTHX
189 #  define aTHXo         aTHX
190 #  define aTHXo_        aTHX_
191 #  define _aTHXo        _aTHX
192 #endif
193
194 #ifndef pTHXx
195 #  define pTHXx         register PerlInterpreter *my_perl
196 #  define pTHXx_        pTHXx,
197 #  define _pTHXx        ,pTHXx
198 #  define aTHXx         my_perl
199 #  define aTHXx_        aTHXx,
200 #  define _aTHXx        ,aTHXx
201 #endif
202
203 #undef START_EXTERN_C
204 #undef END_EXTERN_C
205 #undef EXTERN_C
206 #ifdef __cplusplus
207 #  define START_EXTERN_C extern "C" {
208 #  define END_EXTERN_C }
209 #  define EXTERN_C extern "C"
210 #else
211 #  define START_EXTERN_C 
212 #  define END_EXTERN_C 
213 #  define EXTERN_C extern
214 #endif
215
216 #ifdef OP_IN_REGISTER
217 #  ifdef __GNUC__
218 #    define stringify_immed(s) #s
219 #    define stringify(s) stringify_immed(s)
220 register struct op *Perl_op asm(stringify(OP_IN_REGISTER));
221 #  endif
222 #endif
223
224 /*
225  * STMT_START { statements; } STMT_END;
226  * can be used as a single statement, as in
227  * if (x) STMT_START { ... } STMT_END; else ...
228  *
229  * Trying to select a version that gives no warnings...
230  */
231 #if !(defined(STMT_START) && defined(STMT_END))
232 # if defined(__GNUC__) && !defined(__STRICT_ANSI__) && !defined(__cplusplus)
233 #   define STMT_START   (void)( /* gcc supports ``({ STATEMENTS; })'' */
234 #   define STMT_END     )
235 # else
236    /* Now which other defined()s do we need here ??? */
237 #  if (VOIDFLAGS) && (defined(sun) || defined(__sun__))
238 #   define STMT_START   if (1)
239 #   define STMT_END     else (void)0
240 #  else
241 #   define STMT_START   do
242 #   define STMT_END     while (0)
243 #  endif
244 # endif
245 #endif
246
247 #define WITH_THX(s) STMT_START { dTHX; s; } STMT_END
248 #define WITH_THR(s) STMT_START { dTHR; s; } STMT_END
249
250 /*
251  * SOFT_CAST can be used for args to prototyped functions to retain some
252  * type checking; it only casts if the compiler does not know prototypes.
253  */
254 #if defined(CAN_PROTOTYPE) && defined(DEBUGGING_COMPILE)
255 #define SOFT_CAST(type) 
256 #else
257 #define SOFT_CAST(type) (type)
258 #endif
259
260 #ifndef BYTEORDER  /* Should never happen -- byteorder is in config.h */
261 #   define BYTEORDER 0x1234
262 #endif
263
264 /* Overall memory policy? */
265 #ifndef CONSERVATIVE
266 #   define LIBERAL 1
267 #endif
268
269 #if 'A' == 65 && 'I' == 73 && 'J' == 74 && 'Z' == 90
270 #define ASCIIish
271 #else
272 #undef  ASCIIish
273 #endif
274
275 /*
276  * The following contortions are brought to you on behalf of all the
277  * standards, semi-standards, de facto standards, not-so-de-facto standards
278  * of the world, as well as all the other botches anyone ever thought of.
279  * The basic theory is that if we work hard enough here, the rest of the
280  * code can be a lot prettier.  Well, so much for theory.  Sorry, Henry...
281  */
282
283 /* define this once if either system, instead of cluttering up the src */
284 #if defined(MSDOS) || defined(atarist) || defined(WIN32)
285 #define DOSISH 1
286 #endif
287
288 #if defined(__STDC__) || defined(vax11c) || defined(_AIX) || defined(__stdc__) || defined(__cplusplus)
289 # define STANDARD_C 1
290 #endif
291
292 #if defined(__cplusplus) || defined(WIN32) || defined(__sgi) || defined(OS2) || defined(__DGUX)
293 # define DONT_DECLARE_STD 1
294 #endif
295
296 #if defined(HASVOLATILE) || defined(STANDARD_C)
297 #   ifdef __cplusplus
298 #       define VOL              // to temporarily suppress warnings
299 #   else
300 #       define VOL volatile
301 #   endif
302 #else
303 #   define VOL
304 #endif
305
306 #define TAINT           (PL_tainted = TRUE)
307 #define TAINT_NOT       (PL_tainted = FALSE)
308 #define TAINT_IF(c)     if (c) { PL_tainted = TRUE; }
309 #define TAINT_ENV()     if (PL_tainting) { taint_env(); }
310 #define TAINT_PROPER(s) if (PL_tainting) { taint_proper(Nullch, s); }
311
312 /* XXX All process group stuff is handled in pp_sys.c.  Should these 
313    defines move there?  If so, I could simplify this a lot. --AD  9/96.
314 */
315 /* Process group stuff changed from traditional BSD to POSIX.
316    perlfunc.pod documents the traditional BSD-style syntax, so we'll
317    try to preserve that, if possible.
318 */
319 #ifdef HAS_SETPGID
320 #  define BSD_SETPGRP(pid, pgrp)        setpgid((pid), (pgrp))
321 #else
322 #  if defined(HAS_SETPGRP) && defined(USE_BSD_SETPGRP)
323 #    define BSD_SETPGRP(pid, pgrp)      setpgrp((pid), (pgrp))
324 #  else
325 #    ifdef HAS_SETPGRP2  /* DG/UX */
326 #      define BSD_SETPGRP(pid, pgrp)    setpgrp2((pid), (pgrp))
327 #    endif
328 #  endif
329 #endif
330 #if defined(BSD_SETPGRP) && !defined(HAS_SETPGRP)
331 #  define HAS_SETPGRP  /* Well, effectively it does . . . */
332 #endif
333
334 /* getpgid isn't POSIX, but at least Solaris and Linux have it, and it makes
335     our life easier :-) so we'll try it.
336 */
337 #ifdef HAS_GETPGID
338 #  define BSD_GETPGRP(pid)              getpgid((pid))
339 #else
340 #  if defined(HAS_GETPGRP) && defined(USE_BSD_GETPGRP)
341 #    define BSD_GETPGRP(pid)            getpgrp((pid))
342 #  else
343 #    ifdef HAS_GETPGRP2  /* DG/UX */
344 #      define BSD_GETPGRP(pid)          getpgrp2((pid))
345 #    endif
346 #  endif
347 #endif
348 #if defined(BSD_GETPGRP) && !defined(HAS_GETPGRP)
349 #  define HAS_GETPGRP  /* Well, effectively it does . . . */
350 #endif
351
352 /* These are not exact synonyms, since setpgrp() and getpgrp() may 
353    have different behaviors, but perl.h used to define USE_BSDPGRP
354    (prior to 5.003_05) so some extension might depend on it.
355 */
356 #if defined(USE_BSD_SETPGRP) || defined(USE_BSD_GETPGRP)
357 #  ifndef USE_BSDPGRP
358 #    define USE_BSDPGRP
359 #  endif
360 #endif
361
362 /* HP-UX 10.X CMA (Common Multithreaded Architecure) insists that
363    pthread.h must be included before all other header files.
364 */
365 #if defined(USE_THREADS) && defined(PTHREAD_H_FIRST)
366 #  include <pthread.h>
367 #endif
368
369 #ifndef _TYPES_         /* If types.h defines this it's easy. */
370 #   ifndef major                /* Does everyone's types.h define this? */
371 #       include <sys/types.h>
372 #   endif
373 #endif
374
375 #ifdef __cplusplus
376 #  ifndef I_STDARG
377 #    define I_STDARG 1
378 #  endif
379 #endif
380
381 #ifdef I_STDARG
382 #  include <stdarg.h>
383 #else
384 #  ifdef I_VARARGS
385 #    include <varargs.h>
386 #  endif
387 #endif
388
389 #ifdef USE_NEXT_CTYPE
390
391 #if NX_CURRENT_COMPILER_RELEASE >= 500
392 #  include <bsd/ctypes.h>
393 #else
394 #  if NX_CURRENT_COMPILER_RELEASE >= 400
395 #    include <objc/NXCType.h>
396 #  else /*  NX_CURRENT_COMPILER_RELEASE < 400 */
397 #    include <appkit/NXCType.h>
398 #  endif /*  NX_CURRENT_COMPILER_RELEASE >= 400 */
399 #endif /*  NX_CURRENT_COMPILER_RELEASE >= 500 */
400
401 #else /* !USE_NEXT_CTYPE */
402 #include <ctype.h>
403 #endif /* USE_NEXT_CTYPE */
404
405 #ifdef METHOD   /* Defined by OSF/1 v3.0 by ctype.h */
406 #undef METHOD
407 #endif
408
409 #ifdef I_LOCALE
410 #   include <locale.h>
411 #endif
412
413 #if !defined(NO_LOCALE) && defined(HAS_SETLOCALE)
414 #   define USE_LOCALE
415 #   if !defined(NO_LOCALE_COLLATE) && defined(LC_COLLATE) \
416        && defined(HAS_STRXFRM)
417 #       define USE_LOCALE_COLLATE
418 #   endif
419 #   if !defined(NO_LOCALE_CTYPE) && defined(LC_CTYPE)
420 #       define USE_LOCALE_CTYPE
421 #   endif
422 #   if !defined(NO_LOCALE_NUMERIC) && defined(LC_NUMERIC)
423 #       define USE_LOCALE_NUMERIC
424 #   endif
425 #endif /* !NO_LOCALE && HAS_SETLOCALE */
426
427 #include <setjmp.h>
428
429 #ifdef I_SYS_PARAM
430 #   ifdef PARAM_NEEDS_TYPES
431 #       include <sys/types.h>
432 #   endif
433 #   include <sys/param.h>
434 #endif
435
436
437 /* Use all the "standard" definitions? */
438 #if defined(STANDARD_C) && defined(I_STDLIB)
439 #   include <stdlib.h>
440 #endif
441
442 #if !defined(PERL_FOR_X2P) && !defined(PERL_OBJECT)
443 #  include "embed.h"
444 #endif
445
446 #define MEM_SIZE Size_t
447
448 /* This comes after <stdlib.h> so we don't try to change the standard
449  * library prototypes; we'll use our own in proto.h instead. */
450
451 #ifdef MYMALLOC
452 #  ifdef PERL_POLLUTE_MALLOC
453 #    define Perl_malloc         malloc
454 #    define Perl_calloc         calloc
455 #    define Perl_realloc        realloc
456 #    define Perl_mfree          free
457 #  else
458 #    define EMBEDMYMALLOC       /* for compatibility */
459 #  endif
460 Malloc_t Perl_malloc (MEM_SIZE nbytes);
461 Malloc_t Perl_calloc (MEM_SIZE elements, MEM_SIZE size);
462 Malloc_t Perl_realloc (Malloc_t where, MEM_SIZE nbytes);
463 /* 'mfree' rather than 'free', since there is already a 'perl_free'
464  * that causes clashes with case-insensitive linkers */
465 Free_t   Perl_mfree (Malloc_t where);
466
467 #  define safemalloc  Perl_malloc
468 #  define safecalloc  Perl_calloc
469 #  define saferealloc Perl_realloc
470 #  define safefree    Perl_mfree
471 #else  /* MYMALLOC */
472 #  define safemalloc  safesysmalloc
473 #  define safecalloc  safesyscalloc
474 #  define saferealloc safesysrealloc
475 #  define safefree    safesysfree
476 #endif /* MYMALLOC */
477
478 #if defined(STANDARD_C) && defined(I_STDDEF)
479 #   include <stddef.h>
480 #   define STRUCT_OFFSET(s,m)  offsetof(s,m)
481 #else
482 #   define STRUCT_OFFSET(s,m)  (Size_t)(&(((s *)0)->m))
483 #endif
484
485 #if defined(I_STRING) || defined(__cplusplus)
486 #   include <string.h>
487 #else
488 #   include <strings.h>
489 #endif
490
491 #if !defined(HAS_STRCHR) && defined(HAS_INDEX) && !defined(strchr)
492 #define strchr index
493 #define strrchr rindex
494 #endif
495
496 #ifdef I_MEMORY
497 #  include <memory.h>
498 #endif
499
500 #ifdef HAS_MEMCPY
501 #  if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY)
502 #    ifndef memcpy
503         extern char * memcpy (char*, char*, int);
504 #    endif
505 #  endif
506 #else
507 #   ifndef memcpy
508 #       ifdef HAS_BCOPY
509 #           define memcpy(d,s,l) bcopy(s,d,l)
510 #       else
511 #           define memcpy(d,s,l) my_bcopy(s,d,l)
512 #       endif
513 #   endif
514 #endif /* HAS_MEMCPY */
515
516 #ifdef HAS_MEMSET
517 #  if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY)
518 #    ifndef memset
519         extern char *memset (char*, int, int);
520 #    endif
521 #  endif
522 #else
523 #  define memset(d,c,l) my_memset(d,c,l)
524 #endif /* HAS_MEMSET */
525
526 #if !defined(HAS_MEMMOVE) && !defined(memmove)
527 #   if defined(HAS_BCOPY) && defined(HAS_SAFE_BCOPY)
528 #       define memmove(d,s,l) bcopy(s,d,l)
529 #   else
530 #       if defined(HAS_MEMCPY) && defined(HAS_SAFE_MEMCPY)
531 #           define memmove(d,s,l) memcpy(d,s,l)
532 #       else
533 #           define memmove(d,s,l) my_bcopy(s,d,l)
534 #       endif
535 #   endif
536 #endif
537
538 #if defined(mips) && defined(ultrix) && !defined(__STDC__)
539 #   undef HAS_MEMCMP
540 #endif
541
542 #if defined(HAS_MEMCMP) && defined(HAS_SANE_MEMCMP)
543 #  if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY)
544 #    ifndef memcmp
545         extern int memcmp (char*, char*, int);
546 #    endif
547 #  endif
548 #  ifdef BUGGY_MSC
549   #  pragma function(memcmp)
550 #  endif
551 #else
552 #   ifndef memcmp
553 #       define memcmp   my_memcmp
554 #   endif
555 #endif /* HAS_MEMCMP && HAS_SANE_MEMCMP */
556
557 #ifndef memzero
558 #   ifdef HAS_MEMSET
559 #       define memzero(d,l) memset(d,0,l)
560 #   else
561 #       ifdef HAS_BZERO
562 #           define memzero(d,l) bzero(d,l)
563 #       else
564 #           define memzero(d,l) my_bzero(d,l)
565 #       endif
566 #   endif
567 #endif
568
569 #ifndef memchr
570 #   ifndef HAS_MEMCHR
571 #       define memchr(s,c,n) ninstr((char*)(s), ((char*)(s)) + n, &(c), &(c) + 1)
572 #   endif
573 #endif
574
575 #ifndef HAS_BCMP
576 #   ifndef bcmp
577 #       define bcmp(s1,s2,l) memcmp(s1,s2,l)
578 #   endif
579 #endif /* !HAS_BCMP */
580
581 #ifdef I_NETINET_IN
582 #   include <netinet/in.h>
583 #endif
584
585 #ifdef I_ARPA_INET
586 #   include <arpa/inet.h>
587 #endif
588
589 #if defined(SF_APPEND) && defined(USE_SFIO) && defined(I_SFIO)
590 /* <sfio.h> defines SF_APPEND and <sys/stat.h> might define SF_APPEND
591  * (the neo-BSD seem to do this).  */
592 #   undef SF_APPEND
593 #endif
594
595 #ifdef I_SYS_STAT
596 #   include <sys/stat.h>
597 #endif
598
599 /* The stat macros for Amdahl UTS, Unisoft System V/88 (and derivatives
600    like UTekV) are broken, sometimes giving false positives.  Undefine
601    them here and let the code below set them to proper values.
602
603    The ghs macro stands for GreenHills Software C-1.8.5 which
604    is the C compiler for sysV88 and the various derivatives.
605    This header file bug is corrected in gcc-2.5.8 and later versions.
606    --Kaveh Ghazi (ghazi@noc.rutgers.edu) 10/3/94.  */
607
608 #if defined(uts) || (defined(m88k) && defined(ghs))
609 #   undef S_ISDIR
610 #   undef S_ISCHR
611 #   undef S_ISBLK
612 #   undef S_ISREG
613 #   undef S_ISFIFO
614 #   undef S_ISLNK
615 #endif
616
617 #ifdef I_TIME
618 #   include <time.h>
619 #endif
620
621 #ifdef I_SYS_TIME
622 #   ifdef I_SYS_TIME_KERNEL
623 #       define KERNEL
624 #   endif
625 #   include <sys/time.h>
626 #   ifdef I_SYS_TIME_KERNEL
627 #       undef KERNEL
628 #   endif
629 #endif
630
631 #if defined(HAS_TIMES) && defined(I_SYS_TIMES)
632 #    include <sys/times.h>
633 #endif
634
635 #if defined(HAS_STRERROR) && (!defined(HAS_MKDIR) || !defined(HAS_RMDIR))
636 #   undef HAS_STRERROR
637 #endif
638
639 #include <errno.h>
640 #ifdef HAS_SOCKET
641 #   ifdef I_NET_ERRNO
642 #     include <net/errno.h>
643 #   endif
644 #endif
645
646 #ifdef VMS
647 #   define SETERRNO(errcode,vmserrcode) \
648         STMT_START {                    \
649             set_errno(errcode);         \
650             set_vaxc_errno(vmserrcode); \
651         } STMT_END
652 #else
653 #   define SETERRNO(errcode,vmserrcode) (errno = (errcode))
654 #endif
655
656 #ifdef USE_THREADS
657 #  define ERRSV (thr->errsv)
658 #  define ERRHV (thr->errhv)
659 #  define DEFSV THREADSV(0)
660 #  define SAVE_DEFSV save_threadsv(0)
661 #else
662 #  define ERRSV GvSV(PL_errgv)
663 #  define ERRHV GvHV(PL_errgv)
664 #  define DEFSV GvSV(PL_defgv)
665 #  define SAVE_DEFSV SAVESPTR(GvSV(PL_defgv))
666 #endif /* USE_THREADS */
667
668 #ifndef errno
669         extern int errno;     /* ANSI allows errno to be an lvalue expr.
670                                * For example in multithreaded environments
671                                * something like this might happen:
672                                * extern int *_errno(void);
673                                * #define errno (*_errno()) */
674 #endif
675
676 #ifdef HAS_STRERROR
677 #       ifdef VMS
678         char *strerror (int,...);
679 #       else
680 #ifndef DONT_DECLARE_STD
681         char *strerror (int);
682 #endif
683 #       endif
684 #       ifndef Strerror
685 #           define Strerror strerror
686 #       endif
687 #else
688 #    ifdef HAS_SYS_ERRLIST
689         extern int sys_nerr;
690         extern char *sys_errlist[];
691 #       ifndef Strerror
692 #           define Strerror(e) \
693                 ((e) < 0 || (e) >= sys_nerr ? "(unknown)" : sys_errlist[e])
694 #       endif
695 #   endif
696 #endif
697
698 #ifdef I_SYS_IOCTL
699 #   ifndef _IOCTL_
700 #       include <sys/ioctl.h>
701 #   endif
702 #endif
703
704 #if defined(mc300) || defined(mc500) || defined(mc700) || defined(mc6000)
705 #   ifdef HAS_SOCKETPAIR
706 #       undef HAS_SOCKETPAIR
707 #   endif
708 #   ifdef I_NDBM
709 #       undef I_NDBM
710 #   endif
711 #endif
712
713 #if INTSIZE == 2
714 #   define htoni htons
715 #   define ntohi ntohs
716 #else
717 #   define htoni htonl
718 #   define ntohi ntohl
719 #endif
720
721 /* Configure already sets Direntry_t */
722 #if defined(I_DIRENT)
723 #   include <dirent.h>
724     /* NeXT needs dirent + sys/dir.h */
725 #   if  defined(I_SYS_DIR) && (defined(NeXT) || defined(__NeXT__))
726 #       include <sys/dir.h>
727 #   endif
728 #else
729 #   ifdef I_SYS_NDIR
730 #       include <sys/ndir.h>
731 #   else
732 #       ifdef I_SYS_DIR
733 #           ifdef hp9000s500
734 #               include <ndir.h>        /* may be wrong in the future */
735 #           else
736 #               include <sys/dir.h>
737 #           endif
738 #       endif
739 #   endif
740 #endif
741
742 #ifdef FPUTS_BOTCH
743 /* work around botch in SunOS 4.0.1 and 4.0.2 */
744 #   ifndef fputs
745 #       define fputs(sv,fp) fprintf(fp,"%s",sv)
746 #   endif
747 #endif
748
749 /*
750  * The following gobbledygook brought to you on behalf of __STDC__.
751  * (I could just use #ifndef __STDC__, but this is more bulletproof
752  * in the face of half-implementations.)
753  */
754
755 #ifndef S_IFMT
756 #   ifdef _S_IFMT
757 #       define S_IFMT _S_IFMT
758 #   else
759 #       define S_IFMT 0170000
760 #   endif
761 #endif
762
763 #ifndef S_ISDIR
764 #   define S_ISDIR(m) ((m & S_IFMT) == S_IFDIR)
765 #endif
766
767 #ifndef S_ISCHR
768 #   define S_ISCHR(m) ((m & S_IFMT) == S_IFCHR)
769 #endif
770
771 #ifndef S_ISBLK
772 #   ifdef S_IFBLK
773 #       define S_ISBLK(m) ((m & S_IFMT) == S_IFBLK)
774 #   else
775 #       define S_ISBLK(m) (0)
776 #   endif
777 #endif
778
779 #ifndef S_ISREG
780 #   define S_ISREG(m) ((m & S_IFMT) == S_IFREG)
781 #endif
782
783 #ifndef S_ISFIFO
784 #   ifdef S_IFIFO
785 #       define S_ISFIFO(m) ((m & S_IFMT) == S_IFIFO)
786 #   else
787 #       define S_ISFIFO(m) (0)
788 #   endif
789 #endif
790
791 #ifndef S_ISLNK
792 #   ifdef _S_ISLNK
793 #       define S_ISLNK(m) _S_ISLNK(m)
794 #   else
795 #       ifdef _S_IFLNK
796 #           define S_ISLNK(m) ((m & S_IFMT) == _S_IFLNK)
797 #       else
798 #           ifdef S_IFLNK
799 #               define S_ISLNK(m) ((m & S_IFMT) == S_IFLNK)
800 #           else
801 #               define S_ISLNK(m) (0)
802 #           endif
803 #       endif
804 #   endif
805 #endif
806
807 #ifndef S_ISSOCK
808 #   ifdef _S_ISSOCK
809 #       define S_ISSOCK(m) _S_ISSOCK(m)
810 #   else
811 #       ifdef _S_IFSOCK
812 #           define S_ISSOCK(m) ((m & S_IFMT) == _S_IFSOCK)
813 #       else
814 #           ifdef S_IFSOCK
815 #               define S_ISSOCK(m) ((m & S_IFMT) == S_IFSOCK)
816 #           else
817 #               define S_ISSOCK(m) (0)
818 #           endif
819 #       endif
820 #   endif
821 #endif
822
823 #ifndef S_IRUSR
824 #   ifdef S_IREAD
825 #       define S_IRUSR S_IREAD
826 #       define S_IWUSR S_IWRITE
827 #       define S_IXUSR S_IEXEC
828 #   else
829 #       define S_IRUSR 0400
830 #       define S_IWUSR 0200
831 #       define S_IXUSR 0100
832 #   endif
833 #   define S_IRGRP (S_IRUSR>>3)
834 #   define S_IWGRP (S_IWUSR>>3)
835 #   define S_IXGRP (S_IXUSR>>3)
836 #   define S_IROTH (S_IRUSR>>6)
837 #   define S_IWOTH (S_IWUSR>>6)
838 #   define S_IXOTH (S_IXUSR>>6)
839 #endif
840
841 #ifndef S_ISUID
842 #   define S_ISUID 04000
843 #endif
844
845 #ifndef S_ISGID
846 #   define S_ISGID 02000
847 #endif
848
849 #ifdef ff_next
850 #   undef ff_next
851 #endif
852
853 #if defined(cray) || defined(gould) || defined(i860) || defined(pyr)
854 #   define SLOPPYDIVIDE
855 #endif
856
857 #ifdef UV
858 #undef UV
859 #endif
860
861 #ifdef I_INTTYPES
862 #include <inttypes.h>
863 #endif
864
865 /*  XXX QUAD stuff is not currently supported on most systems.
866     Specifically, perl internals don't support long long.  Among
867     the many problems is that some compilers support long long,
868     but the underlying library functions (such as sprintf) don't.
869     Some things do work (such as quad pack/unpack on convex);
870     also some systems use long long for the fpos_t typedef.  That
871     seems to work too.
872
873     The IV type is supposed to be long enough to hold any integral
874     value or a pointer.
875     --Andy Dougherty    August 1996
876 */
877
878 /*  Much more 64-bit probing added.  Now we should get Quad_t
879     in most systems: int64_t, long long, long, int, will do.
880
881     Beware of LP32 systems (ILP32, ILP32LL64).  Such systems have been
882     used to sizeof(long) == sizeof(foo*).  This is a bad assumption
883     because then IV/UV have been 32 bits, too.  Which, in turn means
884     that even if the system has quads (e.g. long long), IV cannot be a
885     quad.  Introducing a 64-bit IV (because of long long existing)
886     will introduce binary incompatibility.
887
888     Summary: a long long system needs to add -DUSE_LONG_LONG to $ccflags
889     to get quads -- and if its pointers are still 32 bits, this will break
890     binary compatibility.  Casting an IV (a long long) to a pointer will
891     truncate half of the IV away.
892
893     --jhi               September 1998 */
894
895 #if INTSIZE == 4 && LONGSIZE == 4 && PTRSIZE == 4
896 #   define PERL_ILP32
897 #   if defined(HAS_LONG_LONG) && LONGLONGSIZE == 8
898 #       define PERL_ILP32LL64
899 #   endif
900 #endif
901
902 #if LONGSIZE == 8 && PTRSIZE == 8
903 #   define PERL_LP64
904 #   if INTSIZE == 8
905 #        define PERL_ILP64
906 #   endif
907 #endif
908
909 #ifndef Quad_t
910 #    if LONGSIZE == 8
911 #       define Quad_t  long
912 #       define Uquad_t unsigned long
913 #       define PERL_QUAD_IS_LONG
914 #    endif
915 #endif
916
917 #ifndef Quad_t
918 #    if INTSIZE == 8
919 #       define Quad_t  int
920 #       define Uquad_t unsigned int
921 #       define PERL_QUAD_IS_INT
922 #    endif
923 #endif
924
925 #ifndef Quad_t
926 #    ifdef USE_LONG_LONG /* See above note about LP32. --jhi */
927 #       if defined(HAS_LONG_LONG) && LONGLONGSIZE == 8
928 #           define Quad_t  long long
929 #           define Uquad_t unsigned long long
930 #           define PERL_QUAD_IS_LONG_LONG
931 #       endif
932 #    endif
933 #endif
934
935 #ifndef Quad_t
936 #    ifdef HAS_INT64_T
937 #        define Quad_t  int64_t
938 #        define Uquad_t uint64_t
939 #        define PERL_QUAD_IS_INT64_T
940 #    endif
941 #endif
942
943 #ifdef Quad_t
944 #   define HAS_QUAD
945 #   ifndef Uquad_t
946     /* Note that if your Quad_t is a typedef (not a #define) you *MUST*
947      * have defined by now Uquad_t yourself because 'unsigned type'
948      * is illegal. */
949 #       define Uquad_t unsigned Quad_t
950 #   endif
951 #endif
952
953 #if defined(USE_64_BITS) && defined(HAS_QUAD)
954 #  ifdef PERL_QUAD_IS_LONG                      /* LP64 */
955    typedef          long               IV;
956    typedef          unsigned long      UV;
957 #  else
958 #      ifdef PERL_QUAD_IS_INT                   /* ILP64 */
959    typedef          int                IV;
960    typedef          unsigned int       UV;
961 #      else
962 #          ifdef PERL_QUAD_IS_LONG_LONG         /* LL64 */
963    typedef          long long          IV;
964    typedef          unsigned long long UV;
965 #          else
966 #              ifdef PERL_QUAD_IS_INT64_T       /* C9X */
967    typedef          int64_t            IV;
968    typedef          uint64_t           UV;
969 #              endif
970 #          endif
971 #      endif
972 #  endif     
973 #  if defined(PERL_QUAD_IS_INT64_T) && defined(INT64_MAX)
974 #    define IV_MAX INT64_MAX
975 #    define IV_MIN INT64_MIN
976 #    define UV_MAX UINT64_MAX
977 #    define UV_MIN UINT64_MIN
978 #  else
979 #    define IV_MAX PERL_QUAD_MAX
980 #    define IV_MIN PERL_QUAD_MIN
981 #    define UV_MAX PERL_UQUAD_MAX
982 #    define UV_MIN PERL_UQUAD_MIN
983 #  endif
984 #else
985    typedef          long               IV;
986    typedef          unsigned long      UV;
987 #  if defined(INT32_MAX) && LONGSIZE == 4
988 #    define IV_MAX INT32_MAX
989 #    define IV_MIN INT32_MIN
990 #    define UV_MAX UINT32_MAX
991 #    define UV_MIN UINT32_MIN
992 #  else
993 #    define IV_MAX PERL_LONG_MAX
994 #    define IV_MIN PERL_LONG_MIN
995 #    define UV_MAX PERL_ULONG_MAX
996 #    define UV_MIN PERL_ULONG_MIN
997 #  endif
998 #endif
999
1000 /* Previously these definitions used hardcoded figures. 
1001  * It is hoped these formula are more portable, although
1002  * no data one way or another is presently known to me.
1003  * The "PERL_" names are used because these calculated constants
1004  * do not meet the ANSI requirements for LONG_MAX, etc., which
1005  * need to be constants acceptable to #if - kja
1006  *    define PERL_LONG_MAX        2147483647L
1007  *    define PERL_LONG_MIN        (-LONG_MAX - 1)
1008  *    define PERL ULONG_MAX       4294967295L
1009  */
1010
1011 #ifdef I_LIMITS  /* Needed for cast_xxx() functions below. */
1012 #  include <limits.h>
1013 #else
1014 #ifdef I_VALUES
1015 #  include <values.h>
1016 #endif
1017 #endif
1018
1019 /*
1020  * Try to figure out max and min values for the integral types.  THE CORRECT
1021  * SOLUTION TO THIS MESS: ADAPT enquire.c FROM GCC INTO CONFIGURE.  The
1022  * following hacks are used if neither limits.h or values.h provide them:
1023  * U<TYPE>_MAX: for types >= int: ~(unsigned TYPE)0
1024  *              for types <  int:  (unsigned TYPE)~(unsigned)0
1025  *      The argument to ~ must be unsigned so that later signed->unsigned
1026  *      conversion can't modify the value's bit pattern (e.g. -0 -> +0),
1027  *      and it must not be smaller than int because ~ does integral promotion.
1028  * <type>_MAX: (<type>) (U<type>_MAX >> 1)
1029  * <type>_MIN: -<type>_MAX - <is_twos_complement_architecture: (3 & -1) == 3>.
1030  *      The latter is a hack which happens to work on some machines but
1031  *      does *not* catch any random system, or things like integer types
1032  *      with NaN if that is possible.
1033  *
1034  * All of the types are explicitly cast to prevent accidental loss of
1035  * numeric range, and in the hope that they will be less likely to confuse
1036  * over-eager optimizers.
1037  *
1038  */
1039
1040 #define PERL_UCHAR_MIN ((unsigned char)0)
1041
1042 #ifdef UCHAR_MAX
1043 #  define PERL_UCHAR_MAX ((unsigned char)UCHAR_MAX)
1044 #else
1045 #  ifdef MAXUCHAR
1046 #    define PERL_UCHAR_MAX ((unsigned char)MAXUCHAR)
1047 #  else
1048 #    define PERL_UCHAR_MAX       ((unsigned char)~(unsigned)0)
1049 #  endif
1050 #endif
1051  
1052 /*
1053  * CHAR_MIN and CHAR_MAX are not included here, as the (char) type may be
1054  * ambiguous. It may be equivalent to (signed char) or (unsigned char)
1055  * depending on local options. Until Configure detects this (or at least
1056  * detects whether the "signed" keyword is available) the CHAR ranges
1057  * will not be included. UCHAR functions normally.
1058  *                                                           - kja
1059  */
1060
1061 #define PERL_USHORT_MIN ((unsigned short)0)
1062
1063 #ifdef USHORT_MAX
1064 #  define PERL_USHORT_MAX ((unsigned short)USHORT_MAX)
1065 #else
1066 #  ifdef MAXUSHORT
1067 #    define PERL_USHORT_MAX ((unsigned short)MAXUSHORT)
1068 #  else
1069 #    ifdef USHRT_MAX
1070 #      define PERL_USHORT_MAX ((unsigned short)USHRT_MAX)
1071 #    else
1072 #      define PERL_USHORT_MAX       ((unsigned short)~(unsigned)0)
1073 #    endif
1074 #  endif
1075 #endif
1076
1077 #ifdef SHORT_MAX
1078 #  define PERL_SHORT_MAX ((short)SHORT_MAX)
1079 #else
1080 #  ifdef MAXSHORT    /* Often used in <values.h> */
1081 #    define PERL_SHORT_MAX ((short)MAXSHORT)
1082 #  else
1083 #    ifdef SHRT_MAX
1084 #      define PERL_SHORT_MAX ((short)SHRT_MAX)
1085 #    else
1086 #      define PERL_SHORT_MAX      ((short) (PERL_USHORT_MAX >> 1))
1087 #    endif
1088 #  endif
1089 #endif
1090
1091 #ifdef SHORT_MIN
1092 #  define PERL_SHORT_MIN ((short)SHORT_MIN)
1093 #else
1094 #  ifdef MINSHORT
1095 #    define PERL_SHORT_MIN ((short)MINSHORT)
1096 #  else
1097 #    ifdef SHRT_MIN
1098 #      define PERL_SHORT_MIN ((short)SHRT_MIN)
1099 #    else
1100 #      define PERL_SHORT_MIN        (-PERL_SHORT_MAX - ((3 & -1) == 3))
1101 #    endif
1102 #  endif
1103 #endif
1104
1105 #ifdef UINT_MAX
1106 #  define PERL_UINT_MAX ((unsigned int)UINT_MAX)
1107 #else
1108 #  ifdef MAXUINT
1109 #    define PERL_UINT_MAX ((unsigned int)MAXUINT)
1110 #  else
1111 #    define PERL_UINT_MAX       (~(unsigned int)0)
1112 #  endif
1113 #endif
1114
1115 #define PERL_UINT_MIN ((unsigned int)0)
1116
1117 #ifdef INT_MAX
1118 #  define PERL_INT_MAX ((int)INT_MAX)
1119 #else
1120 #  ifdef MAXINT    /* Often used in <values.h> */
1121 #    define PERL_INT_MAX ((int)MAXINT)
1122 #  else
1123 #    define PERL_INT_MAX        ((int)(PERL_UINT_MAX >> 1))
1124 #  endif
1125 #endif
1126
1127 #ifdef INT_MIN
1128 #  define PERL_INT_MIN ((int)INT_MIN)
1129 #else
1130 #  ifdef MININT
1131 #    define PERL_INT_MIN ((int)MININT)
1132 #  else
1133 #    define PERL_INT_MIN        (-PERL_INT_MAX - ((3 & -1) == 3))
1134 #  endif
1135 #endif
1136
1137 #ifdef ULONG_MAX
1138 #  define PERL_ULONG_MAX ((unsigned long)ULONG_MAX)
1139 #else
1140 #  ifdef MAXULONG
1141 #    define PERL_ULONG_MAX ((unsigned long)MAXULONG)
1142 #  else
1143 #    define PERL_ULONG_MAX       (~(unsigned long)0)
1144 #  endif
1145 #endif
1146
1147 #define PERL_ULONG_MIN ((unsigned long)0L)
1148
1149 #ifdef LONG_MAX
1150 #  define PERL_LONG_MAX ((long)LONG_MAX)
1151 #else
1152 #  ifdef MAXLONG    /* Often used in <values.h> */
1153 #    define PERL_LONG_MAX ((long)MAXLONG)
1154 #  else
1155 #    define PERL_LONG_MAX        ((long) (PERL_ULONG_MAX >> 1))
1156 #  endif
1157 #endif
1158
1159 #ifdef LONG_MIN
1160 #  define PERL_LONG_MIN ((long)LONG_MIN)
1161 #else
1162 #  ifdef MINLONG
1163 #    define PERL_LONG_MIN ((long)MINLONG)
1164 #  else
1165 #    define PERL_LONG_MIN        (-PERL_LONG_MAX - ((3 & -1) == 3))
1166 #  endif
1167 #endif
1168
1169 #ifdef HAS_QUAD
1170
1171 #  ifdef UQUAD_MAX
1172 #    define PERL_UQUAD_MAX ((UV)UQUAD_MAX)
1173 #  else
1174 #    define PERL_UQUAD_MAX      (~(UV)0)
1175 #  endif
1176
1177 #  define PERL_UQUAD_MIN ((UV)0)
1178
1179 #  ifdef QUAD_MAX
1180 #    define PERL_QUAD_MAX ((IV)QUAD_MAX)
1181 #  else
1182 #    define PERL_QUAD_MAX       ((IV) (PERL_UQUAD_MAX >> 1))
1183 #  endif
1184
1185 #  ifdef QUAD_MIN
1186 #    define PERL_QUAD_MIN ((IV)QUAD_MIN)
1187 #  else
1188 #    define PERL_QUAD_MIN       (-PERL_QUAD_MAX - ((3 & -1) == 3))
1189 #  endif
1190
1191 #endif
1192
1193 typedef MEM_SIZE STRLEN;
1194
1195 typedef struct op OP;
1196 typedef struct cop COP;
1197 typedef struct unop UNOP;
1198 typedef struct binop BINOP;
1199 typedef struct listop LISTOP;
1200 typedef struct logop LOGOP;
1201 typedef struct condop CONDOP;
1202 typedef struct pmop PMOP;
1203 typedef struct svop SVOP;
1204 typedef struct gvop GVOP;
1205 typedef struct pvop PVOP;
1206 typedef struct loop LOOP;
1207
1208 typedef struct Outrec Outrec;
1209 typedef struct interpreter PerlInterpreter;
1210 #ifndef __BORLANDC__
1211 typedef struct ff FF;           /* XXX not defined anywhere, should go? */
1212 #endif
1213 typedef struct sv SV;
1214 typedef struct av AV;
1215 typedef struct hv HV;
1216 typedef struct cv CV;
1217 typedef struct regexp REGEXP;
1218 typedef struct gp GP;
1219 typedef struct gv GV;
1220 typedef struct io IO;
1221 typedef struct context PERL_CONTEXT;
1222 typedef struct block BLOCK;
1223
1224 typedef struct magic MAGIC;
1225 typedef struct xrv XRV;
1226 typedef struct xpv XPV;
1227 typedef struct xpviv XPVIV;
1228 typedef struct xpvuv XPVUV;
1229 typedef struct xpvnv XPVNV;
1230 typedef struct xpvmg XPVMG;
1231 typedef struct xpvlv XPVLV;
1232 typedef struct xpvav XPVAV;
1233 typedef struct xpvhv XPVHV;
1234 typedef struct xpvgv XPVGV;
1235 typedef struct xpvcv XPVCV;
1236 typedef struct xpvbm XPVBM;
1237 typedef struct xpvfm XPVFM;
1238 typedef struct xpvio XPVIO;
1239 typedef struct mgvtbl MGVTBL;
1240 typedef union any ANY;
1241
1242 #include "handy.h"
1243
1244 /* Some day when we have more 64-bit experience under our belts we may
1245  * be able to merge some of the USE_64_BIT_{FILES,OFFSETS,STDIO,DBM}. At
1246  * the moment (Oct 1998), though, keep them separate. --jhi
1247  */
1248 #ifdef USE_64_BITS
1249 #   ifdef USE_64_BIT_FILES
1250 #       ifndef USE_64_BIT_OFFSETS
1251 #          define USE_64_BIT_OFFSETS
1252 #       endif
1253 #       ifndef USE_64_BIT_STDIO
1254 #           define USE_64_BIT_STDIO
1255 #       endif
1256 #       ifndef USE_64_BIT_DBM
1257 #           define USE_64_BIT_DBM
1258 #       endif
1259 #   endif
1260 /* Mention LSEEKSIZE here to get it included in %Config. */
1261 #   ifdef USE_64_BIT_OFFSETS
1262 #       ifdef HAS_FSTAT64
1263 #           define fstat fstat64
1264 #       endif
1265 #       ifdef HAS_FTRUNCATE64
1266 #           define ftruncate ftruncate64
1267 #       endif
1268 #       ifdef HAS_LSEEK64
1269 #           define lseek lseek64
1270 #           ifdef HAS_OFF64_T
1271 #               undef Off_t
1272 #               define Off_t off64_t
1273 #           endif
1274 #       endif
1275 #       ifdef HAS_LSTAT64
1276 #           define lstat lstat64
1277 #       endif
1278         /* Some systems have open64() in libc but use that only
1279          * for true LP64 mode, in mixed mode (ILP32LL64, for example)
1280          * they use the vanilla open().  Such systems should undefine
1281          * d_open64 in their hints files. --jhi */
1282 #       if defined(HAS_OPEN64)
1283 #           define open open64
1284 #       endif
1285 #       ifdef HAS_OPENDIR64
1286 #           define opendir opendir64
1287 #       endif
1288 #       ifdef HAS_READDIR64
1289 #           define readdir readdir64
1290 #           ifdef HAS_STRUCT_DIRENT64
1291 #               define dirent dirent64
1292 #           endif
1293 #       endif
1294 #       ifdef HAS_SEEKDIR64
1295 #           define seekdir seekdir64
1296 #       endif
1297 #       ifdef HAS_STAT64
1298 #           define stat stat64 /* Affects also struct stat, hopefully okay. */
1299 #       endif
1300 #       ifdef HAS_TELLDIR64
1301 #           define telldir telldir64
1302 #       endif
1303 #       ifdef HAS_TRUNCATE64
1304 #           define truncate truncate64
1305 #       endif
1306         /* flock is not #defined here to be flock64 because it seems
1307            that a system may have struct flock64 but still use flock()
1308            and not flock64().  The actual flocking code in pp_sys.c
1309            must be changed.  Also lockf and lockf64 must be dealt
1310            with in pp_sys.c. --jhi */
1311 #   endif
1312 #   ifdef USE_64_BIT_STDIO
1313 #       ifdef HAS_FGETPOS64
1314 #           define fgetpos fgetpos64
1315 #       endif
1316 #       ifdef HAS_FOPEN64
1317 #           define fopen fopen64
1318 #       endif
1319 #       ifdef HAS_FREOPEN64
1320 #           define freopen freopen64
1321 #       endif
1322 #       ifdef HAS_FSEEK64
1323 #           define fseek fseek64
1324 #       endif
1325 #       ifdef HAS_FSEEKO64
1326 #           define fseeko fseeko64
1327 #       endif
1328 #       ifdef HAS_FSETPOS64
1329 #           define fsetpos fsetpos64
1330 #       endif
1331 #       ifdef HAS_FTELL64
1332 #           define ftell ftell64
1333 #       endif
1334 #       ifdef HAS_FTELLO64
1335 #           define ftello ftello64
1336 #       endif
1337 #       ifdef HAS_TMPFILE64
1338 #           define tmpfile tmpfile64
1339 #       endif
1340 #   endif
1341 #   ifdef USE_64_BIT_DBM
1342 #       ifdef HAS_DBMINIT64
1343 #           define dbminit dbminit64
1344 #       endif
1345 #       ifdef HAS_DBMCLOSE64
1346 #           define dbmclose dbmclose64
1347 #       endif
1348 #       ifdef HAS_FETCH64
1349 #           define fetch fetch64
1350 #       endif
1351 #       ifdef HAS_DELETE64
1352 #           define delete delete64
1353 #       endif
1354 #       ifdef HAS_STORE64
1355 #           define store store64
1356 #       endif
1357 #       ifdef HAS_FIRSTKEY64
1358 #           define firstkey firstkey64
1359 #       endif
1360 #       ifdef HAS_NEXTKEY64
1361 #           define nextkey nextkey64
1362 #       endif
1363 #   endif
1364 #endif
1365
1366 #if defined(__OPEN_VM)
1367 # include "vmesa/vmesaish.h"
1368 #endif
1369
1370 #ifdef DOSISH
1371 # if defined(OS2)
1372 #   include "os2ish.h"
1373 # else
1374 #   include "dosish.h"
1375 # endif
1376 #else
1377 # if defined(VMS)
1378 #   include "vmsish.h"
1379 # else
1380 #   if defined(PLAN9)
1381 #     include "./plan9/plan9ish.h"
1382 #   else
1383 #     if defined(MPE)
1384 #       include "mpeix/mpeixish.h"
1385 #     else
1386 #       if defined(__VOS__)
1387 #         include "vosish.h"
1388 #       else
1389 #         include "unixish.h"
1390 #       endif
1391 #     endif
1392 #   endif
1393 # endif
1394 #endif         
1395
1396 #ifndef MAXPATHLEN
1397 #  ifdef PATH_MAX
1398 #    ifdef _POSIX_PATH_MAX
1399 #       if PATH_MAX > _POSIX_PATH_MAX
1400 /* MAXPATHLEN is supposed to include the final null character,
1401  * as opposed to PATH_MAX and _POSIX_PATH_MAX. */
1402 #         define MAXPATHLEN (PATH_MAX+1)
1403 #       else
1404 #         define MAXPATHLEN (_POSIX_PATH_MAX+1)
1405 #       endif
1406 #    else
1407 #      define MAXPATHLEN (PATH_MAX+1)
1408 #    endif
1409 #  else
1410 #    ifdef _POSIX_PATH_MAX
1411 #       define MAXPATHLEN (_POSIX_PATH_MAX+1)
1412 #    else
1413 #       define MAXPATHLEN 1024  /* Err on the large side. */
1414 #    endif
1415 #  endif
1416 #endif
1417
1418 #ifndef FUNC_NAME_TO_PTR
1419 #define FUNC_NAME_TO_PTR(name)          name
1420 #endif
1421
1422 /* 
1423  * USE_THREADS needs to be after unixish.h as <pthread.h> includes
1424  * <sys/signal.h> which defines NSIG - which will stop inclusion of <signal.h>
1425  * this results in many functions being undeclared which bothers C++
1426  * May make sense to have threads after "*ish.h" anyway
1427  */
1428
1429 #ifdef USE_THREADS
1430    /* pending resolution of licensing issues, we avoid the erstwhile
1431     * atomic.h everywhere */
1432 #  define EMULATE_ATOMIC_REFCOUNTS
1433
1434 #  ifdef FAKE_THREADS
1435 #    include "fakethr.h"
1436 #  else
1437 #    ifdef WIN32
1438 #      include <win32thread.h>
1439 #    else
1440 #      ifdef OS2
1441 #        include "os2thread.h"
1442 #      else
1443 #        ifdef I_MACH_CTHREADS
1444 #          include <mach/cthreads.h>
1445 #          if (defined(NeXT) || defined(__NeXT__)) && defined(PERL_POLLUTE_MALLOC)
1446 #            define MUTEX_INIT_CALLS_MALLOC
1447 #          endif
1448 typedef cthread_t       perl_os_thread;
1449 typedef mutex_t         perl_mutex;
1450 typedef condition_t     perl_cond;
1451 typedef void *          perl_key;
1452 #        else /* Posix threads */
1453 #          include <pthread.h>
1454 typedef pthread_t       perl_os_thread;
1455 typedef pthread_mutex_t perl_mutex;
1456 typedef pthread_cond_t  perl_cond;
1457 typedef pthread_key_t   perl_key;
1458 #        endif /* I_MACH_CTHREADS */
1459 #      endif /* OS2 */
1460 #    endif /* WIN32 */
1461 #  endif /* FAKE_THREADS */
1462 #endif /* USE_THREADS */
1463   
1464 #ifdef VMS
1465 #   define STATUS_NATIVE        PL_statusvalue_vms
1466 #   define STATUS_NATIVE_EXPORT \
1467         ((I32)PL_statusvalue_vms == -1 ? 44 : PL_statusvalue_vms)
1468 #   define STATUS_NATIVE_SET(n)                                         \
1469         STMT_START {                                                    \
1470             PL_statusvalue_vms = (n);                                   \
1471             if ((I32)PL_statusvalue_vms == -1)                          \
1472                 PL_statusvalue = -1;                                    \
1473             else if (PL_statusvalue_vms & STS$M_SUCCESS)                \
1474                 PL_statusvalue = 0;                                     \
1475             else if ((PL_statusvalue_vms & STS$M_SEVERITY) == 0)        \
1476                 PL_statusvalue = 1 << 8;                                \
1477             else                                                        \
1478                 PL_statusvalue = (PL_statusvalue_vms & STS$M_SEVERITY) << 8;    \
1479         } STMT_END
1480 #   define STATUS_POSIX PL_statusvalue
1481 #   ifdef VMSISH_STATUS
1482 #       define STATUS_CURRENT   (VMSISH_STATUS ? STATUS_NATIVE : STATUS_POSIX)
1483 #   else
1484 #       define STATUS_CURRENT   STATUS_POSIX
1485 #   endif
1486 #   define STATUS_POSIX_SET(n)                          \
1487         STMT_START {                                    \
1488             PL_statusvalue = (n);                               \
1489             if (PL_statusvalue != -1) {                 \
1490                 PL_statusvalue &= 0xFFFF;                       \
1491                 PL_statusvalue_vms = PL_statusvalue ? 44 : 1;   \
1492             }                                           \
1493             else PL_statusvalue_vms = -1;                       \
1494         } STMT_END
1495 #   define STATUS_ALL_SUCCESS   (PL_statusvalue = 0, PL_statusvalue_vms = 1)
1496 #   define STATUS_ALL_FAILURE   (PL_statusvalue = 1, PL_statusvalue_vms = 44)
1497 #else
1498 #   define STATUS_NATIVE        STATUS_POSIX
1499 #   define STATUS_NATIVE_EXPORT STATUS_POSIX
1500 #   define STATUS_NATIVE_SET    STATUS_POSIX_SET
1501 #   define STATUS_POSIX         PL_statusvalue
1502 #   define STATUS_POSIX_SET(n)          \
1503         STMT_START {                    \
1504             PL_statusvalue = (n);               \
1505             if (PL_statusvalue != -1)   \
1506                 PL_statusvalue &= 0xFFFF;       \
1507         } STMT_END
1508 #   define STATUS_CURRENT STATUS_POSIX
1509 #   define STATUS_ALL_SUCCESS   (PL_statusvalue = 0)
1510 #   define STATUS_ALL_FAILURE   (PL_statusvalue = 1)
1511 #endif
1512
1513 /* This defines a way to flush all output buffers.  This may be a
1514  * performance issue, so we allow people to disable it.
1515  * XXX the default needs a Configure test, as it may not work everywhere.
1516  */
1517 #ifndef PERL_FLUSHALL_FOR_CHILD
1518 # if defined(FFLUSH_NULL) || defined(USE_SFIO)
1519 #  define PERL_FLUSHALL_FOR_CHILD       PerlIO_flush((PerlIO*)NULL)
1520 # else
1521 #  ifdef FFLUSH_ALL
1522 #   define PERL_FLUSHALL_FOR_CHILD      my_fflush_all()
1523 #  else
1524 #   define PERL_FLUSHALL_FOR_CHILD      (void)0
1525 #  endif
1526 # endif
1527 #endif
1528
1529 /* Some unistd.h's give a prototype for pause() even though
1530    HAS_PAUSE ends up undefined.  This causes the #define
1531    below to be rejected by the compmiler.  Sigh.
1532 */
1533 #ifdef HAS_PAUSE
1534 #define Pause   pause
1535 #else
1536 #define Pause() sleep((32767<<16)+32767)
1537 #endif
1538
1539 #ifndef IOCPARM_LEN
1540 #   ifdef IOCPARM_MASK
1541         /* on BSDish systes we're safe */
1542 #       define IOCPARM_LEN(x)  (((x) >> 16) & IOCPARM_MASK)
1543 #   else
1544         /* otherwise guess at what's safe */
1545 #       define IOCPARM_LEN(x)   256
1546 #   endif
1547 #endif
1548
1549 #if defined(CYGWIN32)
1550 /* USEMYBINMODE
1551  *   This symbol, if defined, indicates that the program should
1552  *   use the routine my_binmode(FILE *fp, char iotype) to insure
1553  *   that a file is in "binary" mode -- that is, that no translation
1554  *   of bytes occurs on read or write operations.
1555  */
1556 #  define USEMYBINMODE / **/
1557 #  define my_binmode(fp, iotype) \
1558             (PerlLIO_setmode(PerlIO_fileno(fp), O_BINARY) != -1 ? TRUE : NULL)
1559 #endif
1560
1561 #ifdef UNION_ANY_DEFINITION
1562 UNION_ANY_DEFINITION;
1563 #else
1564 union any {
1565     void*       any_ptr;
1566     I32         any_i32;
1567     IV          any_iv;
1568     long        any_long;
1569     void        (CPERLscope(*any_dptr)) (pTHX_ void*);
1570 };
1571 #endif
1572
1573 #ifdef USE_THREADS
1574 #define ARGSproto struct perl_thread *thr
1575 #else
1576 #define ARGSproto
1577 #endif /* USE_THREADS */
1578
1579 #if defined(CYGWIN32)
1580 /* USEMYBINMODE
1581  *   This symbol, if defined, indicates that the program should
1582  *   use the routine my_binmode(FILE *fp, char iotype) to insure
1583  *   that a file is in "binary" mode -- that is, that no translation
1584  *   of bytes occurs on read or write operations.
1585  */
1586 #define USEMYBINMODE / **/
1587 #define my_binmode(fp, iotype) \
1588         (PerlLIO_setmode(PerlIO_fileno(fp), O_BINARY) != -1 ? TRUE : FALSE)
1589 #endif
1590
1591 typedef I32 (*filter_t) (pTHXo_ int, SV *, int);
1592
1593 #define FILTER_READ(idx, sv, len)  filter_read(idx, sv, len)
1594 #define FILTER_DATA(idx)           (AvARRAY(PL_rsfp_filters)[idx])
1595 #define FILTER_ISREADER(idx)       (idx >= AvFILLp(PL_rsfp_filters))
1596
1597 #ifdef WIN32
1598 #include "win32.h"
1599 #endif
1600
1601 #include "iperlsys.h"
1602 #include "regexp.h"
1603 #include "sv.h"
1604 #include "util.h"
1605 #include "form.h"
1606 #include "gv.h"
1607 #include "cv.h"
1608 #include "op.h"
1609 #include "cop.h"
1610 #include "av.h"
1611 #include "hv.h"
1612 #include "mg.h"
1613 #include "scope.h"
1614 #include "warning.h"
1615 #include "utf8.h"
1616
1617 /* Current curly descriptor */
1618 typedef struct curcur CURCUR;
1619 struct curcur {
1620     int         parenfloor;     /* how far back to strip paren data */
1621     int         cur;            /* how many instances of scan we've matched */
1622     int         min;            /* the minimal number of scans to match */
1623     int         max;            /* the maximal number of scans to match */
1624     int         minmod;         /* whether to work our way up or down */
1625     regnode *   scan;           /* the thing to match */
1626     regnode *   next;           /* what has to match after it */
1627     char *      lastloc;        /* where we started matching this scan */
1628     CURCUR *    oldcc;          /* current curly before we started this one */
1629 };
1630
1631 typedef struct _sublex_info SUBLEXINFO;
1632 struct _sublex_info {
1633     I32 super_state;    /* lexer state to save */
1634     I32 sub_inwhat;     /* "lex_inwhat" to use */
1635     OP *sub_op;         /* "lex_op" to use */
1636     char *super_bufptr; /* PL_bufptr that was */
1637     char *super_bufend; /* PL_bufend that was */
1638 };
1639
1640 typedef struct magic_state MGS; /* struct magic_state defined in mg.c */
1641
1642 /* Length of a variant. */
1643
1644 typedef struct {
1645     I32 len_min;
1646     I32 len_delta;
1647     I32 pos_min;
1648     I32 pos_delta;
1649     SV *last_found;
1650     I32 last_end;                       /* min value, <0 unless valid. */
1651     I32 last_start_min;
1652     I32 last_start_max;
1653     SV **longest;                       /* Either &l_fixed, or &l_float. */
1654     SV *longest_fixed;
1655     I32 offset_fixed;
1656     SV *longest_float;
1657     I32 offset_float_min;
1658     I32 offset_float_max;
1659     I32 flags;
1660 } scan_data_t;
1661
1662 typedef I32 CHECKPOINT;
1663
1664 #if defined(iAPX286) || defined(M_I286) || defined(I80286)
1665 #   define I286
1666 #endif
1667
1668 #if defined(htonl) && !defined(HAS_HTONL)
1669 #define HAS_HTONL
1670 #endif
1671 #if defined(htons) && !defined(HAS_HTONS)
1672 #define HAS_HTONS
1673 #endif
1674 #if defined(ntohl) && !defined(HAS_NTOHL)
1675 #define HAS_NTOHL
1676 #endif
1677 #if defined(ntohs) && !defined(HAS_NTOHS)
1678 #define HAS_NTOHS
1679 #endif
1680 #ifndef HAS_HTONL
1681 #if (BYTEORDER & 0xffff) != 0x4321
1682 #define HAS_HTONS
1683 #define HAS_HTONL
1684 #define HAS_NTOHS
1685 #define HAS_NTOHL
1686 #define MYSWAP
1687 #define htons my_swap
1688 #define htonl my_htonl
1689 #define ntohs my_swap
1690 #define ntohl my_ntohl
1691 #endif
1692 #else
1693 #if (BYTEORDER & 0xffff) == 0x4321
1694 #undef HAS_HTONS
1695 #undef HAS_HTONL
1696 #undef HAS_NTOHS
1697 #undef HAS_NTOHL
1698 #endif
1699 #endif
1700
1701 /*
1702  * Little-endian byte order functions - 'v' for 'VAX', or 'reVerse'.
1703  * -DWS
1704  */
1705 #if BYTEORDER != 0x1234
1706 # define HAS_VTOHL
1707 # define HAS_VTOHS
1708 # define HAS_HTOVL
1709 # define HAS_HTOVS
1710 # if BYTEORDER == 0x4321 || BYTEORDER == 0x87654321
1711 #  define vtohl(x)      ((((x)&0xFF)<<24)       \
1712                         +(((x)>>24)&0xFF)       \
1713                         +(((x)&0x0000FF00)<<8)  \
1714                         +(((x)&0x00FF0000)>>8)  )
1715 #  define vtohs(x)      ((((x)&0xFF)<<8) + (((x)>>8)&0xFF))
1716 #  define htovl(x)      vtohl(x)
1717 #  define htovs(x)      vtohs(x)
1718 # endif
1719         /* otherwise default to functions in util.c */
1720 #endif
1721
1722 #ifdef CASTNEGFLOAT
1723 #define U_S(what) ((U16)(what))
1724 #define U_I(what) ((unsigned int)(what))
1725 #define U_L(what) ((U32)(what))
1726 #else
1727 #define U_S(what) ((U16)cast_ulong((double)(what)))
1728 #define U_I(what) ((unsigned int)cast_ulong((double)(what)))
1729 #define U_L(what) (cast_ulong((double)(what)))
1730 #endif
1731
1732 #ifdef CASTI32
1733 #define I_32(what) ((I32)(what))
1734 #define I_V(what) ((IV)(what))
1735 #define U_V(what) ((UV)(what))
1736 #else
1737 #define I_32(what) (cast_i32((double)(what)))
1738 #define I_V(what) (cast_iv((double)(what)))
1739 #define U_V(what) (cast_uv((double)(what)))
1740 #endif
1741
1742 /* Used with UV/IV arguments: */
1743                                         /* XXXX: need to speed it up */
1744 #define CLUMP_2UV(iv)   ((iv) < 0 ? 0 : (UV)(iv))
1745 #define CLUMP_2IV(uv)   ((uv) > (UV)IV_MAX ? IV_MAX : (IV)(uv))
1746
1747 struct Outrec {
1748     I32         o_lines;
1749     char        *o_str;
1750     U32         o_len;
1751 };
1752
1753 #ifndef MAXSYSFD
1754 #   define MAXSYSFD 2
1755 #endif
1756
1757 #ifndef TMPPATH
1758 #  define TMPPATH "/tmp/perl-eXXXXXX"
1759 #endif
1760
1761 #ifndef __cplusplus
1762 Uid_t getuid (void);
1763 Uid_t geteuid (void);
1764 Gid_t getgid (void);
1765 Gid_t getegid (void);
1766 #endif
1767
1768 #ifndef Perl_debug_log
1769 #define Perl_debug_log  PerlIO_stderr()
1770 #endif
1771
1772 #ifdef DEBUGGING
1773 #undef  YYDEBUG
1774 #define YYDEBUG 1
1775 #define DEB(a)                          a
1776 #define DEBUG(a)   if (PL_debug)                a
1777 #define DEBUG_p(a) if (PL_debug & 1)    a
1778 #define DEBUG_s(a) if (PL_debug & 2)    a
1779 #define DEBUG_l(a) if (PL_debug & 4)    a
1780 #define DEBUG_t(a) if (PL_debug & 8)    a
1781 #define DEBUG_o(a) if (PL_debug & 16)   a
1782 #define DEBUG_c(a) if (PL_debug & 32)   a
1783 #define DEBUG_P(a) if (PL_debug & 64)   a
1784 #  if defined(PERL_OBJECT)
1785 #    define DEBUG_m(a) if (PL_debug & 128)      a
1786 #  else
1787 #    define DEBUG_m(a) if (PL_curinterp && PL_debug & 128)      a
1788 #  endif
1789 #define DEBUG_f(a) if (PL_debug & 256)  a
1790 #define DEBUG_r(a) if (PL_debug & 512)  a
1791 #define DEBUG_x(a) if (PL_debug & 1024) a
1792 #define DEBUG_u(a) if (PL_debug & 2048) a
1793 #define DEBUG_L(a) if (PL_debug & 4096) a
1794 #define DEBUG_H(a) if (PL_debug & 8192) a
1795 #define DEBUG_X(a) if (PL_debug & 16384)        a
1796 #define DEBUG_D(a) if (PL_debug & 32768)        a
1797 #  ifdef USE_THREADS
1798 #    define DEBUG_S(a) if (PL_debug & (1<<16))  a
1799 #  else
1800 #    define DEBUG_S(a)
1801 #  endif
1802 #else
1803 #define DEB(a)
1804 #define DEBUG(a)
1805 #define DEBUG_p(a)
1806 #define DEBUG_s(a)
1807 #define DEBUG_l(a)
1808 #define DEBUG_t(a)
1809 #define DEBUG_o(a)
1810 #define DEBUG_c(a)
1811 #define DEBUG_P(a)
1812 #define DEBUG_m(a)
1813 #define DEBUG_f(a)
1814 #define DEBUG_r(a)
1815 #define DEBUG_x(a)
1816 #define DEBUG_u(a)
1817 #define DEBUG_S(a)
1818 #define DEBUG_H(a)
1819 #define DEBUG_X(a)
1820 #define DEBUG_D(a)
1821 #define DEBUG_S(a)
1822 #endif
1823 #define YYMAXDEPTH 300
1824
1825 #ifndef assert  /* <assert.h> might have been included somehow */
1826 #define assert(what)    DEB( {                                          \
1827         if (!(what)) {                                                  \
1828             Perl_croak(aTHX_ "Assertion failed: file \"%s\", line %d",  \
1829                 __FILE__, __LINE__);                                    \
1830             PerlProc_exit(1);                                           \
1831         }})
1832 #endif
1833
1834 struct ufuncs {
1835     I32 (*uf_val)(IV, SV*);
1836     I32 (*uf_set)(IV, SV*);
1837     IV uf_index;
1838 };
1839
1840 /* Fix these up for __STDC__ */
1841 #ifndef DONT_DECLARE_STD
1842 char *mktemp (char*);
1843 double atof (const char*);
1844 #endif
1845
1846 #ifndef STANDARD_C
1847 /* All of these are in stdlib.h or time.h for ANSI C */
1848 Time_t time();
1849 struct tm *gmtime(), *localtime();
1850 #if defined(OEMVS) || defined(__OPEN_VM)
1851 char *(strchr)(), *(strrchr)();
1852 char *(strcpy)(), *(strcat)();
1853 #else
1854 char *strchr(), *strrchr();
1855 char *strcpy(), *strcat();
1856 #endif
1857 #endif /* ! STANDARD_C */
1858
1859
1860 #ifdef I_MATH
1861 #    include <math.h>
1862 #else
1863 START_EXTERN_C
1864             double exp (double);
1865             double log (double);
1866             double log10 (double);
1867             double sqrt (double);
1868             double frexp (double,int*);
1869             double ldexp (double,int);
1870             double modf (double,double*);
1871             double sin (double);
1872             double cos (double);
1873             double atan2 (double,double);
1874             double pow (double,double);
1875 END_EXTERN_C
1876 #endif
1877
1878 #ifndef __cplusplus
1879 #  if defined(NeXT) || defined(__NeXT__) /* or whatever catches all NeXTs */
1880 char *crypt ();       /* Maybe more hosts will need the unprototyped version */
1881 #  else
1882 #    if !defined(WIN32) || !defined(HAVE_DES_FCRYPT)
1883 char *crypt (const char*, const char*);
1884 #    endif /* !WIN32 && !HAVE_CRYPT_SOURCE */
1885 #  endif /* !NeXT && !__NeXT__ */
1886 #  ifndef DONT_DECLARE_STD
1887 #    ifndef getenv
1888 char *getenv (const char*);
1889 #    endif /* !getenv */
1890 Off_t lseek (int,Off_t,int);
1891 #  endif /* !DONT_DECLARE_STD */
1892 char *getlogin (void);
1893 #endif /* !__cplusplus */
1894
1895 #ifdef UNLINK_ALL_VERSIONS /* Currently only makes sense for VMS */
1896 #define UNLINK unlnk
1897 I32 unlnk (char*);
1898 #else
1899 #define UNLINK PerlLIO_unlink
1900 #endif
1901
1902 #ifndef HAS_SETREUID
1903 #  ifdef HAS_SETRESUID
1904 #    define setreuid(r,e) setresuid(r,e,(Uid_t)-1)
1905 #    define HAS_SETREUID
1906 #  endif
1907 #endif
1908 #ifndef HAS_SETREGID
1909 #  ifdef HAS_SETRESGID
1910 #    define setregid(r,e) setresgid(r,e,(Gid_t)-1)
1911 #    define HAS_SETREGID
1912 #  endif
1913 #endif
1914
1915 typedef Signal_t (*Sighandler_t) (int);
1916
1917 #ifdef HAS_SIGACTION
1918 typedef struct sigaction Sigsave_t;
1919 #else
1920 typedef Sighandler_t Sigsave_t;
1921 #endif
1922
1923 #define SCAN_DEF 0
1924 #define SCAN_TR 1
1925 #define SCAN_REPL 2
1926
1927 #ifdef DEBUGGING
1928 # ifndef register
1929 #  define register
1930 # endif
1931 # define PAD_SV(po) pad_sv(po)
1932 # define RUNOPS_DEFAULT Perl_runops_debug
1933 #else
1934 # define PAD_SV(po) PL_curpad[po]
1935 # define RUNOPS_DEFAULT Perl_runops_standard
1936 #endif
1937
1938 #ifdef MYMALLOC
1939 #  ifdef MUTEX_INIT_CALLS_MALLOC
1940 #    define MALLOC_INIT                                 \
1941         STMT_START {                                    \
1942                 PL_malloc_mutex = NULL;                 \
1943                 MUTEX_INIT(&PL_malloc_mutex);           \
1944         } STMT_END
1945 #    define MALLOC_TERM                                 \
1946         STMT_START {                                    \
1947                 perl_mutex tmp = PL_malloc_mutex;       \
1948                 PL_malloc_mutex = NULL;                 \
1949                 MUTEX_DESTROY(&tmp);                    \
1950         } STMT_END
1951 #  else
1952 #    define MALLOC_INIT MUTEX_INIT(&PL_malloc_mutex)
1953 #    define MALLOC_TERM MUTEX_DESTROY(&PL_malloc_mutex)
1954 #  endif
1955 #else
1956 #  define MALLOC_INIT
1957 #  define MALLOC_TERM
1958 #endif
1959
1960
1961 typedef int (CPERLscope(*runops_proc_t)) (pTHX);
1962 typedef OP* (CPERLscope(*PPADDR_t)[]) (pTHX);
1963
1964 /* _ (for $_) must be first in the following list (DEFSV requires it) */
1965 #define THREADSV_NAMES "_123456789&`'+/.,\\\";^-%=|~:\001\005!@"
1966
1967 /* NeXT has problems with crt0.o globals */
1968 #if defined(__DYNAMIC__) && \
1969     (defined(NeXT) || defined(__NeXT__) || defined(__APPLE__))
1970 #  if defined(NeXT) || defined(__NeXT)
1971 #    include <mach-o/dyld.h>
1972 #    define environ (*environ_pointer)
1973 EXT char *** environ_pointer;
1974 #  else
1975 #    if defined(__APPLE__)
1976 #      include <crt_externs.h>  /* for the env array */
1977 #      define environ (*_NSGetEnviron())
1978 #    endif
1979 #  endif
1980 #else
1981    /* VMS and some other platforms don't use the environ array */
1982 #  if !defined(VMS)
1983 #    if !defined(DONT_DECLARE_STD) || \
1984         (defined(__svr4__) && defined(__GNUC__) && defined(sun)) || \
1985         defined(__sgi) || \
1986         defined(__DGUX)
1987 extern char **  environ;        /* environment variables supplied via exec */
1988 #    endif
1989 #  endif
1990 #endif
1991
1992 START_EXTERN_C
1993
1994 /* handy constants */
1995 EXTCONST char PL_warn_uninit[]
1996   INIT("Use of uninitialized value");
1997 EXTCONST char PL_warn_nosemi[]
1998   INIT("Semicolon seems to be missing");
1999 EXTCONST char PL_warn_reserved[]
2000   INIT("Unquoted string \"%s\" may clash with future reserved word");
2001 EXTCONST char PL_warn_nl[]
2002   INIT("Unsuccessful %s on filename containing newline");
2003 EXTCONST char PL_no_wrongref[]
2004   INIT("Can't use %s ref as %s ref");
2005 EXTCONST char PL_no_symref[]
2006   INIT("Can't use string (\"%.32s\") as %s ref while \"strict refs\" in use");
2007 EXTCONST char PL_no_usym[]
2008   INIT("Can't use an undefined value as %s reference");
2009 EXTCONST char PL_no_aelem[]
2010   INIT("Modification of non-creatable array value attempted, subscript %d");
2011 EXTCONST char PL_no_helem[]
2012   INIT("Modification of non-creatable hash value attempted, subscript \"%s\"");
2013 EXTCONST char PL_no_modify[]
2014   INIT("Modification of a read-only value attempted");
2015 EXTCONST char PL_no_mem[]
2016   INIT("Out of memory!\n");
2017 EXTCONST char PL_no_security[]
2018   INIT("Insecure dependency in %s%s");
2019 EXTCONST char PL_no_sock_func[]
2020   INIT("Unsupported socket function \"%s\" called");
2021 EXTCONST char PL_no_dir_func[]
2022   INIT("Unsupported directory function \"%s\" called");
2023 EXTCONST char PL_no_func[]
2024   INIT("The %s function is unimplemented");
2025 EXTCONST char PL_no_myglob[]
2026   INIT("\"my\" variable %s can't be in a package");
2027
2028 EXTCONST char PL_uuemap[65]
2029   INIT("`!\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_");
2030
2031
2032 #ifdef DOINIT
2033 EXT char *PL_sig_name[] = { SIG_NAME };
2034 EXT int   PL_sig_num[]  = { SIG_NUM };
2035 EXT SV  * PL_psig_ptr[sizeof(PL_sig_num)/sizeof(*PL_sig_num)];
2036 EXT SV  * PL_psig_name[sizeof(PL_sig_num)/sizeof(*PL_sig_num)];
2037 #else
2038 EXT char *PL_sig_name[];
2039 EXT int   PL_sig_num[];
2040 EXT SV  * PL_psig_ptr[];
2041 EXT SV  * PL_psig_name[];
2042 #endif
2043
2044 /* fast case folding tables */
2045
2046 #ifdef DOINIT
2047 #ifdef EBCDIC
2048 EXT unsigned char PL_fold[] = { /* fast EBCDIC case folding table */
2049     0,      1,      2,      3,      4,      5,      6,      7,
2050     8,      9,      10,     11,     12,     13,     14,     15,
2051     16,     17,     18,     19,     20,     21,     22,     23,
2052     24,     25,     26,     27,     28,     29,     30,     31,
2053     32,     33,     34,     35,     36,     37,     38,     39,
2054     40,     41,     42,     43,     44,     45,     46,     47,
2055     48,     49,     50,     51,     52,     53,     54,     55,
2056     56,     57,     58,     59,     60,     61,     62,     63,
2057     64,     65,     66,     67,     68,     69,     70,     71,
2058     72,     73,     74,     75,     76,     77,     78,     79,
2059     80,     81,     82,     83,     84,     85,     86,     87,
2060     88,     89,     90,     91,     92,     93,     94,     95,
2061     96,     97,     98,     99,     100,    101,    102,    103,
2062     104,    105,    106,    107,    108,    109,    110,    111,
2063     112,    113,    114,    115,    116,    117,    118,    119,
2064     120,    121,    122,    123,    124,    125,    126,    127,
2065     128,    'A',    'B',    'C',    'D',    'E',    'F',    'G',
2066     'H',    'I',    138,    139,    140,    141,    142,    143,
2067     144,    'J',    'K',    'L',    'M',    'N',    'O',    'P',
2068     'Q',    'R',    154,    155,    156,    157,    158,    159,
2069     160,    161,    'S',    'T',    'U',    'V',    'W',    'X',
2070     'Y',    'Z',    170,    171,    172,    173,    174,    175,
2071     176,    177,    178,    179,    180,    181,    182,    183,
2072     184,    185,    186,    187,    188,    189,    190,    191,
2073     192,    'a',    'b',    'c',    'd',    'e',    'f',    'g',
2074     'h',    'i',    202,    203,    204,    205,    206,    207,
2075     208,    'j',    'k',    'l',    'm',    'n',    'o',    'p',
2076     'q',    'r',    218,    219,    220,    221,    222,    223,
2077     224,    225,    's',    't',    'u',    'v',    'w',    'x',
2078     'y',    'z',    234,    235,    236,    237,    238,    239,
2079     240,    241,    242,    243,    244,    245,    246,    247,
2080     248,    249,    250,    251,    252,    253,    254,    255
2081 };
2082 #else   /* ascii rather than ebcdic */
2083 EXTCONST  unsigned char PL_fold[] = {
2084         0,      1,      2,      3,      4,      5,      6,      7,
2085         8,      9,      10,     11,     12,     13,     14,     15,
2086         16,     17,     18,     19,     20,     21,     22,     23,
2087         24,     25,     26,     27,     28,     29,     30,     31,
2088         32,     33,     34,     35,     36,     37,     38,     39,
2089         40,     41,     42,     43,     44,     45,     46,     47,
2090         48,     49,     50,     51,     52,     53,     54,     55,
2091         56,     57,     58,     59,     60,     61,     62,     63,
2092         64,     'a',    'b',    'c',    'd',    'e',    'f',    'g',
2093         'h',    'i',    'j',    'k',    'l',    'm',    'n',    'o',
2094         'p',    'q',    'r',    's',    't',    'u',    'v',    'w',
2095         'x',    'y',    'z',    91,     92,     93,     94,     95,
2096         96,     'A',    'B',    'C',    'D',    'E',    'F',    'G',
2097         'H',    'I',    'J',    'K',    'L',    'M',    'N',    'O',
2098         'P',    'Q',    'R',    'S',    'T',    'U',    'V',    'W',
2099         'X',    'Y',    'Z',    123,    124,    125,    126,    127,
2100         128,    129,    130,    131,    132,    133,    134,    135,
2101         136,    137,    138,    139,    140,    141,    142,    143,
2102         144,    145,    146,    147,    148,    149,    150,    151,
2103         152,    153,    154,    155,    156,    157,    158,    159,
2104         160,    161,    162,    163,    164,    165,    166,    167,
2105         168,    169,    170,    171,    172,    173,    174,    175,
2106         176,    177,    178,    179,    180,    181,    182,    183,
2107         184,    185,    186,    187,    188,    189,    190,    191,
2108         192,    193,    194,    195,    196,    197,    198,    199,
2109         200,    201,    202,    203,    204,    205,    206,    207,
2110         208,    209,    210,    211,    212,    213,    214,    215,
2111         216,    217,    218,    219,    220,    221,    222,    223,    
2112         224,    225,    226,    227,    228,    229,    230,    231,
2113         232,    233,    234,    235,    236,    237,    238,    239,
2114         240,    241,    242,    243,    244,    245,    246,    247,
2115         248,    249,    250,    251,    252,    253,    254,    255
2116 };
2117 #endif  /* !EBCDIC */
2118 #else
2119 EXTCONST unsigned char PL_fold[];
2120 #endif
2121
2122 #ifdef DOINIT
2123 EXT unsigned char PL_fold_locale[] = {
2124         0,      1,      2,      3,      4,      5,      6,      7,
2125         8,      9,      10,     11,     12,     13,     14,     15,
2126         16,     17,     18,     19,     20,     21,     22,     23,
2127         24,     25,     26,     27,     28,     29,     30,     31,
2128         32,     33,     34,     35,     36,     37,     38,     39,
2129         40,     41,     42,     43,     44,     45,     46,     47,
2130         48,     49,     50,     51,     52,     53,     54,     55,
2131         56,     57,     58,     59,     60,     61,     62,     63,
2132         64,     'a',    'b',    'c',    'd',    'e',    'f',    'g',
2133         'h',    'i',    'j',    'k',    'l',    'm',    'n',    'o',
2134         'p',    'q',    'r',    's',    't',    'u',    'v',    'w',
2135         'x',    'y',    'z',    91,     92,     93,     94,     95,
2136         96,     'A',    'B',    'C',    'D',    'E',    'F',    'G',
2137         'H',    'I',    'J',    'K',    'L',    'M',    'N',    'O',
2138         'P',    'Q',    'R',    'S',    'T',    'U',    'V',    'W',
2139         'X',    'Y',    'Z',    123,    124,    125,    126,    127,
2140         128,    129,    130,    131,    132,    133,    134,    135,
2141         136,    137,    138,    139,    140,    141,    142,    143,
2142         144,    145,    146,    147,    148,    149,    150,    151,
2143         152,    153,    154,    155,    156,    157,    158,    159,
2144         160,    161,    162,    163,    164,    165,    166,    167,
2145         168,    169,    170,    171,    172,    173,    174,    175,
2146         176,    177,    178,    179,    180,    181,    182,    183,
2147         184,    185,    186,    187,    188,    189,    190,    191,
2148         192,    193,    194,    195,    196,    197,    198,    199,
2149         200,    201,    202,    203,    204,    205,    206,    207,
2150         208,    209,    210,    211,    212,    213,    214,    215,
2151         216,    217,    218,    219,    220,    221,    222,    223,    
2152         224,    225,    226,    227,    228,    229,    230,    231,
2153         232,    233,    234,    235,    236,    237,    238,    239,
2154         240,    241,    242,    243,    244,    245,    246,    247,
2155         248,    249,    250,    251,    252,    253,    254,    255
2156 };
2157 #else
2158 EXT unsigned char PL_fold_locale[];
2159 #endif
2160
2161 #ifdef DOINIT
2162 #ifdef EBCDIC
2163 EXT unsigned char PL_freq[] = {/* EBCDIC frequencies for mixed English/C */
2164     1,      2,      84,     151,    154,    155,    156,    157,
2165     165,    246,    250,    3,      158,    7,      18,     29,
2166     40,     51,     62,     73,     85,     96,     107,    118,
2167     129,    140,    147,    148,    149,    150,    152,    153,
2168     255,      6,      8,      9,     10,     11,     12,     13,
2169      14,     15,     24,     25,     26,     27,     28,    226,
2170      29,     30,     31,     32,     33,     43,     44,     45,
2171      46,     47,     48,     49,     50,     76,     77,     78,
2172      79,     80,     81,     82,     83,     84,     85,     86,
2173      87,     94,     95,    234,    181,    233,    187,    190,
2174     180,     96,     97,     98,     99,    100,    101,    102,
2175     104,    112,    182,    174,    236,    232,    229,    103,
2176     228,    226,    114,    115,    116,    117,    118,    119,
2177     120,    121,    122,    235,    176,    230,    194,    162,
2178     130,    131,    132,    133,    134,    135,    136,    137,
2179     138,    139,    201,    205,    163,    217,    220,    224,
2180     5,      248,    227,    244,    242,    255,    241,    231,
2181     240,    253,    16,     197,    19,     20,     21,     187,
2182     23,     169,    210,    245,    237,    249,    247,    239,
2183     168,    252,    34,     196,    36,     37,     38,     39,
2184     41,     42,     251,    254,    238,    223,    221,    213,
2185     225,    177,    52,     53,     54,     55,     56,     57,
2186     58,     59,     60,     61,     63,     64,     65,     66,
2187     67,     68,     69,     70,     71,     72,     74,     75,
2188     205,    208,    186,    202,    200,    218,    198,    179,
2189     178,    214,    88,     89,     90,     91,     92,     93,
2190     217,    166,    170,    207,    199,    209,    206,    204,
2191     160,    212,    105,    106,    108,    109,    110,    111,
2192     203,    113,    216,    215,    192,    175,    193,    243,
2193     172,    161,    123,    124,    125,    126,    127,    128,
2194     222,    219,    211,    195,    188,    193,    185,    184,
2195     191,    183,    141,    142,    143,    144,    145,    146
2196 };
2197 #else  /* ascii rather than ebcdic */
2198 EXTCONST unsigned char PL_freq[] = {    /* letter frequencies for mixed English/C */
2199         1,      2,      84,     151,    154,    155,    156,    157,
2200         165,    246,    250,    3,      158,    7,      18,     29,
2201         40,     51,     62,     73,     85,     96,     107,    118,
2202         129,    140,    147,    148,    149,    150,    152,    153,
2203         255,    182,    224,    205,    174,    176,    180,    217,
2204         233,    232,    236,    187,    235,    228,    234,    226,
2205         222,    219,    211,    195,    188,    193,    185,    184,
2206         191,    183,    201,    229,    181,    220,    194,    162,
2207         163,    208,    186,    202,    200,    218,    198,    179,
2208         178,    214,    166,    170,    207,    199,    209,    206,
2209         204,    160,    212,    216,    215,    192,    175,    173,
2210         243,    172,    161,    190,    203,    189,    164,    230,
2211         167,    248,    227,    244,    242,    255,    241,    231,
2212         240,    253,    169,    210,    245,    237,    249,    247,
2213         239,    168,    252,    251,    254,    238,    223,    221,
2214         213,    225,    177,    197,    171,    196,    159,    4,
2215         5,      6,      8,      9,      10,     11,     12,     13,
2216         14,     15,     16,     17,     19,     20,     21,     22,
2217         23,     24,     25,     26,     27,     28,     30,     31,
2218         32,     33,     34,     35,     36,     37,     38,     39,
2219         41,     42,     43,     44,     45,     46,     47,     48,
2220         49,     50,     52,     53,     54,     55,     56,     57,
2221         58,     59,     60,     61,     63,     64,     65,     66,
2222         67,     68,     69,     70,     71,     72,     74,     75,
2223         76,     77,     78,     79,     80,     81,     82,     83,
2224         86,     87,     88,     89,     90,     91,     92,     93,
2225         94,     95,     97,     98,     99,     100,    101,    102,
2226         103,    104,    105,    106,    108,    109,    110,    111,
2227         112,    113,    114,    115,    116,    117,    119,    120,
2228         121,    122,    123,    124,    125,    126,    127,    128,
2229         130,    131,    132,    133,    134,    135,    136,    137,
2230         138,    139,    141,    142,    143,    144,    145,    146
2231 };
2232 #endif
2233 #else
2234 EXTCONST unsigned char PL_freq[];
2235 #endif
2236
2237 #ifdef DEBUGGING
2238 #ifdef DOINIT
2239 EXTCONST char* PL_block_type[] = {
2240         "NULL",
2241         "SUB",
2242         "EVAL",
2243         "LOOP",
2244         "SUBST",
2245         "BLOCK",
2246 };
2247 #else
2248 EXTCONST char* PL_block_type[];
2249 #endif
2250 #endif
2251
2252 END_EXTERN_C
2253
2254 /*****************************************************************************/
2255 /* This lexer/parser stuff is currently global since yacc is hard to reenter */
2256 /*****************************************************************************/
2257 /* XXX This needs to be revisited, since BEGIN makes yacc re-enter... */
2258
2259 #include "perly.h"
2260
2261 #define LEX_NOTPARSING          11      /* borrowed from toke.c */
2262
2263 typedef enum {
2264     XOPERATOR,
2265     XTERM,
2266     XREF,
2267     XSTATE,
2268     XBLOCK,
2269     XTERMBLOCK
2270 } expectation;
2271
2272 enum {          /* pass one of these to get_vtbl */
2273     want_vtbl_sv,
2274     want_vtbl_env,
2275     want_vtbl_envelem,
2276     want_vtbl_sig,
2277     want_vtbl_sigelem,
2278     want_vtbl_pack,
2279     want_vtbl_packelem,
2280     want_vtbl_dbline,
2281     want_vtbl_isa,
2282     want_vtbl_isaelem,
2283     want_vtbl_arylen,
2284     want_vtbl_glob,
2285     want_vtbl_mglob,
2286     want_vtbl_nkeys,
2287     want_vtbl_taint,
2288     want_vtbl_substr,
2289     want_vtbl_vec,
2290     want_vtbl_pos,
2291     want_vtbl_bm,
2292     want_vtbl_fm,
2293     want_vtbl_uvar,
2294     want_vtbl_defelem,
2295     want_vtbl_regexp,
2296     want_vtbl_collxfrm,
2297     want_vtbl_amagic,
2298     want_vtbl_amagicelem,
2299 #ifdef USE_THREADS
2300     want_vtbl_mutex,
2301 #endif
2302     want_vtbl_regdata,
2303     want_vtbl_regdatum,
2304     want_vtbl_backref
2305 };
2306
2307                                 /* Note: the lowest 8 bits are reserved for
2308                                    stuffing into op->op_private */
2309 #define HINT_PRIVATE_MASK       0x000000ff
2310 #define HINT_INTEGER            0x00000001
2311 #define HINT_STRICT_REFS        0x00000002
2312 /* #define HINT_notused4        0x00000004 */
2313 #define HINT_UTF8               0x00000008
2314 /* #define HINT_notused10       0x00000010 */
2315                                 /* Note: 20,40,80 used for NATIVE_HINTS */
2316
2317 #define HINT_BLOCK_SCOPE        0x00000100
2318 #define HINT_STRICT_SUBS        0x00000200
2319 #define HINT_STRICT_VARS        0x00000400
2320 #define HINT_LOCALE             0x00000800
2321
2322 #define HINT_NEW_INTEGER        0x00001000
2323 #define HINT_NEW_FLOAT          0x00002000
2324 #define HINT_NEW_BINARY         0x00004000
2325 #define HINT_NEW_STRING         0x00008000
2326 #define HINT_NEW_RE             0x00010000
2327 #define HINT_LOCALIZE_HH        0x00020000 /* %^H needs to be copied */
2328
2329 #define HINT_RE_TAINT           0x00100000
2330 #define HINT_RE_EVAL            0x00200000
2331
2332 #define HINT_FILETEST_ACCESS    0x00400000
2333
2334 /* Various states of an input record separator SV (rs, nrs) */
2335 #define RsSNARF(sv)   (! SvOK(sv))
2336 #define RsSIMPLE(sv)  (SvOK(sv) && SvCUR(sv))
2337 #define RsPARA(sv)    (SvOK(sv) && ! SvCUR(sv))
2338 #define RsRECORD(sv)  (SvROK(sv) && (SvIV(SvRV(sv)) > 0))
2339
2340 /* Enable variables which are pointers to functions */
2341 typedef regexp*(CPERLscope(*regcomp_t)) (pTHX_ char* exp, char* xend, PMOP* pm);
2342 typedef I32 (CPERLscope(*regexec_t)) (pTHX_ regexp* prog, char* stringarg,
2343                                       char* strend, char* strbeg, I32 minend,
2344                                       SV* screamer, void* data, U32 flags);
2345
2346
2347 /* Set up PERLVAR macros for populating structs */
2348 #define PERLVAR(var,type) type var;
2349 #define PERLVARI(var,type,init) type var;
2350 #define PERLVARIC(var,type,init) type var;
2351
2352 /* Interpreter exitlist entry */
2353 typedef struct exitlistentry {
2354     void (*fn) (pTHXo_ void*);
2355     void *ptr;
2356 } PerlExitListEntry;
2357
2358 #ifdef PERL_OBJECT
2359 #undef perl_alloc
2360 #define perl_alloc Perl_alloc
2361 CPerlObj* Perl_alloc (IPerlMem*, IPerlEnv*, IPerlStdIO*, IPerlLIO*, IPerlDir*, IPerlSock*, IPerlProc*);
2362
2363 #undef EXT
2364 #define EXT
2365 #undef EXTCONST
2366 #define EXTCONST
2367 #undef INIT
2368 #define INIT(x)
2369
2370 class CPerlObj {
2371 public:
2372         CPerlObj(IPerlMem*, IPerlEnv*, IPerlStdIO*, IPerlLIO*, IPerlDir*, IPerlSock*, IPerlProc*);
2373         void Init(void);
2374         void* operator new(size_t nSize, IPerlMem *pvtbl);
2375 #endif /* PERL_OBJECT */
2376
2377 #ifdef PERL_GLOBAL_STRUCT
2378 struct perl_vars {
2379 #include "perlvars.h"
2380 };
2381
2382 #ifdef PERL_CORE
2383 EXT struct perl_vars PL_Vars;
2384 EXT struct perl_vars *PL_VarsPtr INIT(&PL_Vars);
2385 #else /* PERL_CORE */
2386 #if !defined(__GNUC__) || !(defined(WIN32) || defined(CYGWIN32))
2387 EXT
2388 #endif /* WIN32 */
2389 struct perl_vars *PL_VarsPtr;
2390 #define PL_Vars (*((PL_VarsPtr) ? PL_VarsPtr : (PL_VarsPtr =  Perl_GetVars())))
2391 #endif /* PERL_CORE */
2392 #endif /* PERL_GLOBAL_STRUCT */
2393
2394 #ifdef MULTIPLICITY
2395 /* If we have multiple interpreters define a struct 
2396    holding variables which must be per-interpreter
2397    If we don't have threads anything that would have 
2398    be per-thread is per-interpreter.
2399 */
2400
2401 struct interpreter {
2402 #include "thrdvar.h"
2403 #include "intrpvar.h"
2404 };
2405
2406 #else
2407 struct interpreter {
2408     char broiled;
2409 };
2410 #endif
2411
2412 #ifdef USE_THREADS
2413 /* If we have threads define a struct with all the variables
2414  * that have to be per-thread
2415  */
2416
2417
2418 struct perl_thread {
2419 #include "thrdvar.h"
2420 };
2421
2422 typedef struct perl_thread *Thread;
2423
2424 #else
2425 typedef void *Thread;
2426 #endif
2427
2428 /* Done with PERLVAR macros for now ... */
2429 #undef PERLVAR
2430 #undef PERLVARI
2431 #undef PERLVARIC
2432
2433 #include "thread.h"
2434 #include "pp.h"
2435
2436 #ifndef PERL_CALLCONV
2437 #  define PERL_CALLCONV
2438 #endif 
2439
2440 #ifdef PERL_OBJECT
2441 #  define VIRTUAL virtual PERL_CALLCONV
2442 #else
2443 #  define VIRTUAL PERL_CALLCONV
2444 /*START_EXTERN_C*/
2445 #endif
2446
2447 #ifndef NEXT30_NO_ATTRIBUTE
2448 #  ifndef HASATTRIBUTE       /* disable GNU-cc attribute checking? */
2449 #    ifdef  __attribute__      /* Avoid possible redefinition errors */
2450 #      undef  __attribute__
2451 #    endif
2452 #    define __attribute__(attr)
2453 #  endif
2454 #endif
2455
2456 #ifdef USE_PURE_BISON
2457 int Perl_yylex(pTHX_ YYSTYPE *lvalp, int *lcharp);
2458 #endif
2459
2460 typedef void (CPERLscope(*DESTRUCTORFUNC_t)) (pTHX_ void*);
2461 typedef void (CPERLscope(*SVFUNC_t)) (pTHX_ SV*);
2462 typedef I32 (CPERLscope(*SVCOMPARE_t)) (pTHX_ SV*, SV*);
2463 typedef void (*XSINIT_t) (pTHXo);
2464 typedef void (*ATEXIT_t) (pTHXo_ void*);
2465 typedef void (*XSUBADDR_t) (pTHXo_ CV *);
2466
2467 #ifdef PERL_OBJECT
2468 #define PERL_DECL_PROT
2469 #define perl_alloc Perl_alloc
2470 #endif
2471
2472 #include "proto.h"
2473
2474 #undef PERL_CKDEF
2475 #undef PERL_PPDEF
2476 #define PERL_CKDEF(s)   OP *s (pTHX_ OP *o);
2477 #define PERL_PPDEF(s)   OP *s (pTHX);
2478 #ifdef PERL_OBJECT
2479 public:
2480 #endif
2481
2482 #include "pp_proto.h"
2483
2484 #ifdef PERL_OBJECT
2485 VIRTUAL int CPerlObj::fprintf (PerlIO *pf, const char *pat, ...);
2486 VIRTUAL int CPerlObj::do_aspawn (void *vreally, void **vmark, void **vsp);
2487 #undef PERL_DECL_PROT
2488 #else
2489 /*END_EXTERN_C*/
2490 #endif
2491
2492 #ifndef PERL_OBJECT
2493 /* this has structure inits, so it cannot be included before here */
2494 #  include "opcode.h"
2495 #endif
2496
2497 /* The following must follow proto.h as #defines mess up syntax */
2498
2499 #if !defined(PERL_FOR_X2P)
2500 #  include "embedvar.h"
2501 #endif
2502
2503 /* Now include all the 'global' variables 
2504  * If we don't have threads or multiple interpreters
2505  * these include variables that would have been their struct-s 
2506  */
2507                          
2508 #define PERLVAR(var,type) EXT type PL_##var;
2509 #define PERLVARI(var,type,init) EXT type  PL_##var INIT(init);
2510 #define PERLVARIC(var,type,init) EXTCONST type PL_##var INIT(init);
2511
2512 #ifndef PERL_GLOBAL_STRUCT
2513 #  ifndef PERL_OBJECT
2514 START_EXTERN_C
2515 #  endif
2516
2517 #  include "perlvars.h"
2518
2519 #  ifndef PERL_OBJECT
2520 END_EXTERN_C
2521 #  endif
2522 #endif
2523
2524 #ifndef MULTIPLICITY
2525
2526 #  include "intrpvar.h"
2527 #  ifndef USE_THREADS
2528 #    include "thrdvar.h"
2529 #  endif
2530
2531 #endif
2532
2533 #ifdef PERL_OBJECT
2534 /*
2535  * The following is a buffer where new variables must
2536  * be defined to maintain binary compatibility with PERL_OBJECT
2537  * for 5.005
2538  */
2539 PERLVAR(object_compatibility[30],       char)
2540 };
2541
2542 #  include "embed.h"
2543 #  if defined(WIN32) && !defined(WIN32IO_IS_STDIO)
2544 #    define errno       CPerlObj::ErrorNo()
2545 #  endif
2546
2547 #  ifdef DOINIT
2548 #    include "INTERN.h"
2549 #  else
2550 #    include "EXTERN.h"
2551 #  endif
2552
2553 /* this has structure inits, so it cannot be included before here */
2554 #  include "opcode.h"
2555
2556 #endif  /* PERL_OBJECT */
2557
2558 #undef PERLVAR
2559 #undef PERLVARI
2560 #undef PERLVARIC
2561
2562 START_EXTERN_C
2563
2564 #ifdef DOINIT
2565
2566 EXT MGVTBL PL_vtbl_sv = {Perl_magic_get,
2567                                 Perl_magic_set,
2568                                         Perl_magic_len,
2569                                                 0,      0};
2570 EXT MGVTBL PL_vtbl_env =        {0,     Perl_magic_set_all_env,
2571                                 0,      Perl_magic_clear_all_env,
2572                                                         0};
2573 EXT MGVTBL PL_vtbl_envelem =    {0,     Perl_magic_setenv,
2574                                         0,      Perl_magic_clearenv,
2575                                                         0};
2576 EXT MGVTBL PL_vtbl_sig =        {0,     0,               0, 0, 0};
2577 EXT MGVTBL PL_vtbl_sigelem =    {Perl_magic_getsig,
2578                                         Perl_magic_setsig,
2579                                         0,      Perl_magic_clearsig,
2580                                                         0};
2581 EXT MGVTBL PL_vtbl_pack =       {0,     0,      Perl_magic_sizepack,    Perl_magic_wipepack,
2582                                                         0};
2583 EXT MGVTBL PL_vtbl_packelem =   {Perl_magic_getpack,
2584                                 Perl_magic_setpack,
2585                                         0,      Perl_magic_clearpack,
2586                                                         0};
2587 EXT MGVTBL PL_vtbl_dbline =     {0,     Perl_magic_setdbline,
2588                                         0,      0,      0};
2589 EXT MGVTBL PL_vtbl_isa =        {0,     Perl_magic_setisa,
2590                                         0,      Perl_magic_setisa,
2591                                                         0};
2592 EXT MGVTBL PL_vtbl_isaelem =    {0,     Perl_magic_setisa,
2593                                         0,      0,      0};
2594 EXT MGVTBL PL_vtbl_arylen =     {Perl_magic_getarylen,
2595                                 Perl_magic_setarylen,
2596                                         0,      0,      0};
2597 EXT MGVTBL PL_vtbl_glob =       {Perl_magic_getglob,
2598                                 Perl_magic_setglob,
2599                                         0,      0,      0};
2600 EXT MGVTBL PL_vtbl_mglob =      {0,     Perl_magic_setmglob,
2601                                         0,      0,      0};
2602 EXT MGVTBL PL_vtbl_nkeys =      {Perl_magic_getnkeys,
2603                                 Perl_magic_setnkeys,
2604                                         0,      0,      0};
2605 EXT MGVTBL PL_vtbl_taint =      {Perl_magic_gettaint,Perl_magic_settaint,
2606                                         0,      0,      0};
2607 EXT MGVTBL PL_vtbl_substr =     {Perl_magic_getsubstr, Perl_magic_setsubstr,
2608                                         0,      0,      0};
2609 EXT MGVTBL PL_vtbl_vec =        {Perl_magic_getvec,
2610                                 Perl_magic_setvec,
2611                                         0,      0,      0};
2612 EXT MGVTBL PL_vtbl_pos =        {Perl_magic_getpos,
2613                                 Perl_magic_setpos,
2614                                         0,      0,      0};
2615 EXT MGVTBL PL_vtbl_bm = {0,     Perl_magic_setbm,
2616                                         0,      0,      0};
2617 EXT MGVTBL PL_vtbl_fm = {0,     Perl_magic_setfm,
2618                                         0,      0,      0};
2619 EXT MGVTBL PL_vtbl_uvar =       {Perl_magic_getuvar,
2620                                 Perl_magic_setuvar,
2621                                         0,      0,      0};
2622 #ifdef USE_THREADS
2623 EXT MGVTBL PL_vtbl_mutex =      {0,     0,      0,      0,      Perl_magic_mutexfree};
2624 #endif /* USE_THREADS */
2625 EXT MGVTBL PL_vtbl_defelem = {Perl_magic_getdefelem,Perl_magic_setdefelem,
2626                                         0,      0,      0};
2627
2628 EXT MGVTBL PL_vtbl_regexp = {0,0,0,0, Perl_magic_freeregexp};
2629 EXT MGVTBL PL_vtbl_regdata = {0, 0, Perl_magic_regdata_cnt, 0, 0};
2630 EXT MGVTBL PL_vtbl_regdatum = {Perl_magic_regdatum_get, 0, 0, 0, 0};
2631
2632 #ifdef USE_LOCALE_COLLATE
2633 EXT MGVTBL PL_vtbl_collxfrm = {0,
2634                                 Perl_magic_setcollxfrm,
2635                                         0,      0,      0};
2636 #endif
2637
2638 EXT MGVTBL PL_vtbl_amagic =       {0,     Perl_magic_setamagic,
2639                                         0,      0,      Perl_magic_setamagic};
2640 EXT MGVTBL PL_vtbl_amagicelem =   {0,     Perl_magic_setamagic,
2641                                         0,      0,      Perl_magic_setamagic};
2642
2643 EXT MGVTBL PL_vtbl_backref =      {0,   0,
2644                                         0,      0,      Perl_magic_killbackrefs};
2645
2646 #else /* !DOINIT */
2647
2648 EXT MGVTBL PL_vtbl_sv;
2649 EXT MGVTBL PL_vtbl_env;
2650 EXT MGVTBL PL_vtbl_envelem;
2651 EXT MGVTBL PL_vtbl_sig;
2652 EXT MGVTBL PL_vtbl_sigelem;
2653 EXT MGVTBL PL_vtbl_pack;
2654 EXT MGVTBL PL_vtbl_packelem;
2655 EXT MGVTBL PL_vtbl_dbline;
2656 EXT MGVTBL PL_vtbl_isa;
2657 EXT MGVTBL PL_vtbl_isaelem;
2658 EXT MGVTBL PL_vtbl_arylen;
2659 EXT MGVTBL PL_vtbl_glob;
2660 EXT MGVTBL PL_vtbl_mglob;
2661 EXT MGVTBL PL_vtbl_nkeys;
2662 EXT MGVTBL PL_vtbl_taint;
2663 EXT MGVTBL PL_vtbl_substr;
2664 EXT MGVTBL PL_vtbl_vec;
2665 EXT MGVTBL PL_vtbl_pos;
2666 EXT MGVTBL PL_vtbl_bm;
2667 EXT MGVTBL PL_vtbl_fm;
2668 EXT MGVTBL PL_vtbl_uvar;
2669
2670 #ifdef USE_THREADS
2671 EXT MGVTBL PL_vtbl_mutex;
2672 #endif /* USE_THREADS */
2673
2674 EXT MGVTBL PL_vtbl_defelem;
2675 EXT MGVTBL PL_vtbl_regexp;
2676 EXT MGVTBL PL_vtbl_regdata;
2677 EXT MGVTBL PL_vtbl_regdatum;
2678
2679 #ifdef USE_LOCALE_COLLATE
2680 EXT MGVTBL PL_vtbl_collxfrm;
2681 #endif
2682
2683 EXT MGVTBL PL_vtbl_amagic;
2684 EXT MGVTBL PL_vtbl_amagicelem;
2685
2686 EXT MGVTBL PL_vtbl_backref;
2687
2688 #endif /* !DOINIT */
2689
2690 enum {
2691   fallback_amg,        abs_amg,
2692   bool__amg,   nomethod_amg,
2693   string_amg,  numer_amg,
2694   add_amg,     add_ass_amg,
2695   subtr_amg,   subtr_ass_amg,
2696   mult_amg,    mult_ass_amg,
2697   div_amg,     div_ass_amg,
2698   modulo_amg,  modulo_ass_amg,
2699   pow_amg,     pow_ass_amg,
2700   lshift_amg,  lshift_ass_amg,
2701   rshift_amg,  rshift_ass_amg,
2702   band_amg,    band_ass_amg,
2703   bor_amg,     bor_ass_amg,
2704   bxor_amg,    bxor_ass_amg,
2705   lt_amg,      le_amg,
2706   gt_amg,      ge_amg,
2707   eq_amg,      ne_amg,
2708   ncmp_amg,    scmp_amg,
2709   slt_amg,     sle_amg,
2710   sgt_amg,     sge_amg,
2711   seq_amg,     sne_amg,
2712   not_amg,     compl_amg,
2713   inc_amg,     dec_amg,
2714   atan2_amg,   cos_amg,
2715   sin_amg,     exp_amg,
2716   log_amg,     sqrt_amg,
2717   repeat_amg,   repeat_ass_amg,
2718   concat_amg,  concat_ass_amg,
2719   copy_amg,    neg_amg,
2720   to_sv_amg,   to_av_amg,
2721   to_hv_amg,   to_gv_amg,
2722   to_cv_amg,   iter_amg,    
2723   max_amg_code
2724   /* Do not leave a trailing comma here.  C9X allows it, C89 doesn't. */
2725 };
2726
2727 #define NofAMmeth max_amg_code
2728
2729 #ifdef DOINIT
2730 EXTCONST char * PL_AMG_names[NofAMmeth] = {
2731   "fallback",   "abs",                  /* "fallback" should be the first. */
2732   "bool",       "nomethod",
2733   "\"\"",       "0+",
2734   "+",          "+=",
2735   "-",          "-=",
2736   "*",          "*=",
2737   "/",          "/=",
2738   "%",          "%=",
2739   "**",         "**=",
2740   "<<",         "<<=",
2741   ">>",         ">>=",
2742   "&",          "&=",
2743   "|",          "|=",
2744   "^",          "^=",
2745   "<",          "<=",
2746   ">",          ">=",
2747   "==",         "!=",
2748   "<=>",        "cmp",
2749   "lt",         "le",
2750   "gt",         "ge",
2751   "eq",         "ne",
2752   "!",          "~",
2753   "++",         "--",
2754   "atan2",      "cos",
2755   "sin",        "exp",
2756   "log",        "sqrt",
2757   "x",          "x=",
2758   ".",          ".=",
2759   "=",          "neg",
2760   "${}",        "@{}",
2761   "%{}",        "*{}",
2762   "&{}",        "<>",
2763 };
2764 #else
2765 EXTCONST char * PL_AMG_names[NofAMmeth];
2766 #endif /* def INITAMAGIC */
2767
2768 END_EXTERN_C
2769
2770 struct am_table {
2771   long was_ok_sub;
2772   long was_ok_am;
2773   U32 flags;
2774   CV* table[NofAMmeth];
2775   long fallback;
2776 };
2777 struct am_table_short {
2778   long was_ok_sub;
2779   long was_ok_am;
2780   U32 flags;
2781 };
2782 typedef struct am_table AMT;
2783 typedef struct am_table_short AMTS;
2784
2785 #define AMGfallNEVER    1
2786 #define AMGfallNO       2
2787 #define AMGfallYES      3
2788
2789 #define AMTf_AMAGIC             1
2790 #define AMT_AMAGIC(amt)         ((amt)->flags & AMTf_AMAGIC)
2791 #define AMT_AMAGIC_on(amt)      ((amt)->flags |= AMTf_AMAGIC)
2792 #define AMT_AMAGIC_off(amt)     ((amt)->flags &= ~AMTf_AMAGIC)
2793
2794
2795 /*
2796  * some compilers like to redefine cos et alia as faster
2797  * (and less accurate?) versions called F_cos et cetera (Quidquid
2798  * latine dictum sit, altum viditur.)  This trick collides with
2799  * the Perl overloading (amg).  The following #defines fool both.
2800  */
2801
2802 #ifdef _FASTMATH
2803 #   ifdef atan2
2804 #       define F_atan2_amg  atan2_amg
2805 #   endif
2806 #   ifdef cos
2807 #       define F_cos_amg    cos_amg
2808 #   endif
2809 #   ifdef exp
2810 #       define F_exp_amg    exp_amg
2811 #   endif
2812 #   ifdef log
2813 #       define F_log_amg    log_amg
2814 #   endif
2815 #   ifdef pow
2816 #       define F_pow_amg    pow_amg
2817 #   endif
2818 #   ifdef sin
2819 #       define F_sin_amg    sin_amg
2820 #   endif
2821 #   ifdef sqrt
2822 #       define F_sqrt_amg   sqrt_amg
2823 #   endif
2824 #endif /* _FASTMATH */
2825
2826 #define PERLDB_ALL      0x3f            /* No _NONAME, _GOTO */
2827 #define PERLDBf_SUB     0x01            /* Debug sub enter/exit. */
2828 #define PERLDBf_LINE    0x02            /* Keep line #. */
2829 #define PERLDBf_NOOPT   0x04            /* Switch off optimizations. */
2830 #define PERLDBf_INTER   0x08            /* Preserve more data for
2831                                            later inspections.  */
2832 #define PERLDBf_SUBLINE 0x10            /* Keep subr source lines. */
2833 #define PERLDBf_SINGLE  0x20            /* Start with single-step on. */
2834 #define PERLDBf_NONAME  0x40            /* For _SUB: no name of the subr. */
2835 #define PERLDBf_GOTO    0x80            /* Report goto: call DB::goto. */
2836
2837 #define PERLDB_SUB      (PL_perldb && (PL_perldb & PERLDBf_SUB))
2838 #define PERLDB_LINE     (PL_perldb && (PL_perldb & PERLDBf_LINE))
2839 #define PERLDB_NOOPT    (PL_perldb && (PL_perldb & PERLDBf_NOOPT))
2840 #define PERLDB_INTER    (PL_perldb && (PL_perldb & PERLDBf_INTER))
2841 #define PERLDB_SUBLINE  (PL_perldb && (PL_perldb & PERLDBf_SUBLINE))
2842 #define PERLDB_SINGLE   (PL_perldb && (PL_perldb & PERLDBf_SINGLE))
2843 #define PERLDB_SUB_NN   (PL_perldb && (PL_perldb & (PERLDBf_NONAME)))
2844 #define PERLDB_GOTO     (PL_perldb && (PL_perldb & PERLDBf_GOTO))
2845
2846
2847 #ifdef USE_LOCALE_NUMERIC
2848
2849 #define SET_NUMERIC_STANDARD() \
2850     STMT_START {                                \
2851         if (! PL_numeric_standard)              \
2852             set_numeric_standard();             \
2853     } STMT_END
2854
2855 #define SET_NUMERIC_LOCAL() \
2856     STMT_START {                                \
2857         if (! PL_numeric_local)                 \
2858             set_numeric_local();                \
2859     } STMT_END
2860
2861 #define IS_NUMERIC_RADIX(c)     \
2862         ((PL_hints & HINT_LOCALE) && \
2863           PL_numeric_radix && (c) == PL_numeric_radix)
2864
2865 #define RESTORE_NUMERIC_LOCAL()         if ((PL_hints & HINT_LOCALE) && PL_numeric_standard) SET_NUMERIC_LOCAL()
2866 #define RESTORE_NUMERIC_STANDARD()      if ((PL_hints & HINT_LOCALE) && PL_numeric_local) SET_NUMERIC_STANDARD()
2867 #define Atof(s)                         Perl_my_atof(s)
2868
2869 #else /* !USE_LOCALE_NUMERIC */
2870
2871 #define SET_NUMERIC_STANDARD()          /**/
2872 #define SET_NUMERIC_LOCAL()             /**/
2873 #define IS_NUMERIC_RADIX(c)             (0)
2874 #define RESTORE_NUMERIC_LOCAL()         /**/
2875 #define RESTORE_NUMERIC_STANDARD()      /**/
2876 #define Atof(s)                         atof(s)
2877
2878 #endif /* !USE_LOCALE_NUMERIC */
2879
2880 #if !defined(PERLIO_IS_STDIO) && defined(HASATTRIBUTE)
2881 /* 
2882  * Now we have __attribute__ out of the way 
2883  * Remap printf 
2884  */
2885 #define printf PerlIO_stdoutf
2886 #endif
2887
2888 #ifndef PERL_SCRIPT_MODE
2889 #define PERL_SCRIPT_MODE "r"
2890 #endif
2891
2892 /*
2893  * nice_chunk and nice_chunk size need to be set
2894  * and queried under the protection of sv_mutex
2895  */
2896 #define offer_nice_chunk(chunk, chunk_size) do {        \
2897         LOCK_SV_MUTEX;                                  \
2898         if (!PL_nice_chunk) {                           \
2899             PL_nice_chunk = (char*)(chunk);             \
2900             PL_nice_chunk_size = (chunk_size);          \
2901         }                                               \
2902         else {                                          \
2903             Safefree(chunk);                            \
2904         }                                               \
2905         UNLOCK_SV_MUTEX;                                \
2906     } while (0)
2907
2908 #ifdef HAS_SEM
2909 #   include <sys/ipc.h>
2910 #   include <sys/sem.h>
2911 #   ifndef HAS_UNION_SEMUN      /* Provide the union semun. */
2912     union semun {
2913         int val;
2914         struct semid_ds *buf;
2915         unsigned short *array;
2916     };
2917 #   endif
2918 #   ifdef USE_SEMCTL_SEMUN
2919 #       define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun)
2920 #   else
2921 #       ifdef USE_SEMCTL_SEMID_DS
2922 #           define Semctl(id, num, cmd, semun) semctl(id, num, cmd, semun.buf)
2923 #       endif
2924 #   endif
2925 #endif
2926
2927 /* Mention
2928
2929    INSTALL_USR_BIN_PERL
2930
2931    I_SYS_MMAN
2932    HAS_MMAP
2933    HAS_MUNMAP
2934    HAS_MPROTECT
2935    HAS_MSYNC
2936    HAS_MADVISE
2937    Mmap_t
2938
2939    here so that Configure picks them up. */
2940
2941 #ifdef IAMSUID
2942
2943 #ifdef I_SYS_STATVFS
2944 #   include <sys/statvfs.h>     /* for f?statvfs() */
2945 #endif
2946 #ifdef I_SYS_MOUNT
2947 #   include <sys/mount.h>       /* for *BSD f?statfs() */
2948 #endif
2949 #ifdef I_MNTENT
2950 #   include <mntent.h>          /* for getmntent() */
2951 #endif
2952
2953 #endif /* IAMSUID */
2954
2955 /* and finally... */
2956 #define PERL_PATCHLEVEL_H_IMPLICIT
2957 #include "patchlevel.h"
2958 #undef PERL_PATCHLEVEL_H_IMPLICIT
2959
2960 #endif /* Include guard */