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