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