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