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