perl 5.002beta1h patch: Configure
[p5sagit/p5-mst-13.2.git] / perl.h
diff --git a/perl.h b/perl.h
index 97c5f93..f5bf952 100644 (file)
--- a/perl.h
+++ b/perl.h
  * code can be a lot prettier.  Well, so much for theory.  Sorry, Henry...
  */
 
-#ifdef MYMALLOC
-#   ifdef HIDEMYMALLOC
-#      define malloc Mymalloc
-#      define realloc Myremalloc
-#      define free Myfree
-#   endif
-#   define safemalloc malloc
-#   define saferealloc realloc
-#   define safefree free
-#endif
-
-/* work around some libPW problems */
-#ifdef DOINIT
-EXT char Error[1];
-#endif
-
 /* define this once if either system, instead of cluttering up the src */
 #if defined(MSDOS) || defined(atarist)
 #define DOSISH 1
@@ -72,10 +56,6 @@ EXT char Error[1];
 #define TAINT_PROPER(s)        if (tainting) taint_proper(no_security, s)
 #define TAINT_ENV()    if (tainting) taint_env()
 
-#ifndef HAS_VFORK
-#   define vfork fork
-#endif
-
 #ifdef HAS_GETPGRP2
 #   ifndef HAS_GETPGRP
 #      define HAS_GETPGRP
@@ -89,12 +69,16 @@ EXT char Error[1];
 #endif
 
 #include <stdio.h>
-#ifdef USE_NEXT_CTYPE 
+#ifdef USE_NEXT_CTYPE
 #include <appkit/NXCType.h>
 #else
 #include <ctype.h>
 #endif
 
+#ifdef I_LOCALE
+#include <locale.h>
+#endif
+
 #ifdef METHOD  /* Defined by OSF/1 v3.0 by ctype.h */
 #undef METHOD
 #endif
@@ -114,6 +98,21 @@ EXT char Error[1];
 #   include <stdlib.h>
 #endif /* STANDARD_C */
 
+/* Maybe this comes after <stdlib.h> so we don't try to change 
+   the standard library prototypes?.  We'll use our own in 
+   proto.h instead.  I guess.  The patch had no explanation.
+*/
+#ifdef MYMALLOC
+#   ifdef HIDEMYMALLOC
+#      define malloc Mymalloc
+#      define realloc Myremalloc
+#      define free Myfree
+#   endif
+#   define safemalloc malloc
+#   define saferealloc realloc
+#   define safefree free
+#endif
+
 #define MEM_SIZE Size_t
 
 #if defined(I_STRING) || defined(__cplusplus)
@@ -131,6 +130,10 @@ EXT char Error[1];
 #   undef HAS_MEMCMP
 #endif
 
+#ifdef I_MEMORY
+#  include <memory.h>
+#endif
+
 #ifdef HAS_MEMCPY
 #  if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY)
 #    ifndef memcpy
@@ -205,7 +208,9 @@ EXT char Error[1];
 #   include <netinet/in.h>
 #endif
 
+#ifdef I_SYS_STAT
 #include <sys/stat.h>
+#endif
 
 /* The stat macros for Amdahl UTS, Unisoft System V/88 (and derivatives
    like UTekV) are broken, sometimes giving false positives.  Undefine
@@ -261,6 +266,15 @@ EXT char Error[1];
 #     include <net/errno.h>
 #   endif
 #endif
+#ifndef VMS
+#   define FIXSTATUS(sts)  (U_L((sts) & 0xffff))
+#   define SHIFTSTATUS(sts) ((sts) >> 8)
+#   define SETERRNO(errcode,vmserrcode) errno = (errcode)
+#else
+#   define FIXSTATUS(sts)  (U_L(sts))
+#   define SHIFTSTATUS(sts) (sts)
+#   define SETERRNO(errcode,vmserrcode) {set_errno(errcode); set_vaxc_errno(vmserrcode);}
+#endif
 
 #ifndef MSDOS
 #   ifndef errno
@@ -329,7 +343,7 @@ EXT char Error[1];
 #          endif
 #      endif
 #   endif
-#endif 
+#endif
 
 #ifdef FPUTS_BOTCH
 /* work around botch in SunOS 4.0.1 and 4.0.2 */
@@ -450,6 +464,10 @@ EXT char Error[1];
 #   define HAS_QUAD
 #endif
 
+#ifdef UV
+#undef UV
+#endif
+
 #ifdef HAS_QUAD
 #   ifdef cray
 #      define Quad_t int
@@ -460,36 +478,11 @@ EXT char Error[1];
 #          define Quad_t long
 #      endif
 #   endif
-#endif
-
-#ifdef VOIDSIG
-#   define VOIDRET void
-#else
-#   define VOIDRET int
-#endif
-
-#ifdef DOSISH
-#   include "dosish.h"
+    typedef Quad_t IV;
+    typedef unsigned Quad_t UV;
 #else
-# if defined(VMS)
-#   include "vmsish.h"
-# else
-#   include "unixish.h"
-# endif
-#endif
-
-#ifndef HAS_PAUSE
-#define pause() sleep((32767<<16)+32767)
-#endif
-
-#ifndef IOCPARM_LEN
-#   ifdef IOCPARM_MASK
-       /* on BSDish systes we're safe */
-#      define IOCPARM_LEN(x)  (((x) >> 16) & IOCPARM_MASK)
-#   else
-       /* otherwise guess at what's safe */
-#      define IOCPARM_LEN(x)   256
-#   endif
+    typedef long IV;
+    typedef unsigned long UV;
 #endif
 
 typedef MEM_SIZE STRLEN;
@@ -509,7 +502,6 @@ typedef struct cvop CVOP;
 typedef struct loop LOOP;
 
 typedef struct Outrec Outrec;
-typedef struct lstring Lstring;
 typedef struct interpreter PerlInterpreter;
 typedef struct ff FF;
 typedef struct sv SV;
@@ -540,14 +532,39 @@ typedef struct xpvio XPVIO;
 typedef struct mgvtbl MGVTBL;
 typedef union any ANY;
 
-typedef FILE * (*cryptswitch_t) _((FILE *rfp));
-
 #include "handy.h"
 
-#ifdef HAS_QUAD
-typedef Quad_t IV;
+typedef I32 (*filter_t) _((int, SV *, int));
+#define FILTER_READ(idx, sv, len)  filter_read(idx, sv, len)
+#define FILTER_DATA(idx)          (AvARRAY(rsfp_filters)[idx])
+#define FILTER_ISREADER(idx)      (idx >= AvFILL(rsfp_filters))
+
+#ifdef DOSISH
+# if defined(OS2)
+#   include "os2ish.h"
+# else
+#   include "dosish.h"
+# endif
 #else
-typedef long IV;
+# if defined(VMS)
+#   include "vmsish.h"
+# else
+#   include "unixish.h"
+# endif
+#endif
+
+#ifndef HAS_PAUSE
+#define pause() sleep((32767<<16)+32767)
+#endif
+
+#ifndef IOCPARM_LEN
+#   ifdef IOCPARM_MASK
+       /* on BSDish systes we're safe */
+#      define IOCPARM_LEN(x)  (((x) >> 16) & IOCPARM_MASK)
+#   else
+       /* otherwise guess at what's safe */
+#      define IOCPARM_LEN(x)   256
+#   endif
 #endif
 
 union any {
@@ -572,6 +589,11 @@ union any {
 #include "mg.h"
 #include "scope.h"
 
+/* work around some libPW problems */
+#ifdef DOINIT
+EXT char Error[1];
+#endif
+
 #if defined(iAPX286) || defined(M_I286) || defined(I80286)
 #   define I286
 #endif
@@ -636,19 +658,22 @@ union any {
 #define U_L(what) ((U32)(what))
 #else
 U32 cast_ulong _((double));
-#define U_S(what) ((U16)cast_ulong(what))
-#define U_I(what) ((unsigned int)cast_ulong(what))
-#define U_L(what) (cast_ulong(what))
+#define U_S(what) ((U16)cast_ulong((double)(what)))
+#define U_I(what) ((unsigned int)cast_ulong((double)(what)))
+#define U_L(what) (cast_ulong((double)(what)))
 #endif
 
 #ifdef CASTI32
 #define I_32(what) ((I32)(what))
 #define I_V(what) ((IV)(what))
+#define U_V(what) ((UV)(what))
 #else
 I32 cast_i32 _((double));
-#define I_32(what) (cast_i32(what))
+#define I_32(what) (cast_i32((double)(what)))
 IV cast_iv _((double));
-#define I_V(what) (cast_iv(what))
+#define I_V(what) (cast_iv((double)(what)))
+UV cast_uv _((double));
+#define U_V(what) (cast_uv((double)(what)))
 #endif
 
 struct Outrec {
@@ -665,7 +690,7 @@ struct Outrec {
 #define TMPPATH "plXXXXXX"
 #else
 #ifdef VMS
-#define TMPPATH "/sys$scratch/perl-eXXXXXX"
+#define TMPPATH "sys$scratch:perl-eXXXXXX"
 #else
 #define TMPPATH "/tmp/perl-eXXXXXX"
 #endif
@@ -755,7 +780,6 @@ char *strcpy(), *strcat();
        extern "C" {
 #   endif
            double exp _((double));
-           double fmod _((double,double));
            double log _((double));
            double sqrt _((double));
            double modf _((double,double*));
@@ -768,13 +792,6 @@ char *strcpy(), *strcat();
 #   endif
 #endif
 
-#if !defined(HAS_FMOD) && defined(HAS_DREM)
-#define fmod(x,y) drem((x),(y))
-#else
-#define USE_MY_FMOD
-#define fmod(x,y) my_fmod(x,y)
-#endif
-
 #ifndef __cplusplus
 char *crypt _((const char*, const char*));
 char *getenv _((const char*));
@@ -782,7 +799,7 @@ Off_t lseek _((int,Off_t,int));
 char *getlogin _((void));
 #endif
 
-#ifdef EUNICE
+#ifdef UNLINK_ALL_VERSIONS /* Currently only makes sense for VMS */
 #define UNLINK unlnk
 I32 unlnk _((char*));
 #else
@@ -807,7 +824,7 @@ I32 unlnk _((char*));
 #define SCAN_REPL 2
 
 #ifdef DEBUGGING
-# ifndef register 
+# ifndef register
 #  define register
 # endif
 # define PAD_SV(po) pad_sv(po)
@@ -843,6 +860,7 @@ EXT IV **   xiv_root;       /* free xiv list--shared by interpreters */
 EXT double *   xnv_root;       /* free xnv list--shared by interpreters */
 EXT XRV *      xrv_root;       /* free xrv list--shared by interpreters */
 EXT XPV *      xpv_root;       /* free xpv list--shared by interpreters */
+EXT HE *       he_root;        /* free he list--shared by interpreters */
 
 /* Stack for currently executing thread--context switch must handle this.     */
 EXT SV **      stack_base;     /* stack->array_ary */
@@ -905,7 +923,7 @@ EXT char    warn_nl[]
 EXT char       no_wrongref[]
   INIT("Can't use %s ref as %s ref");
 EXT char       no_symref[]
-  INIT("Can't use a string as %s ref while \"strict refs\" in use");
+  INIT("Can't use string (\"%.32s\") as %s ref while \"strict refs\" in use");
 EXT char       no_usym[]
   INIT("Can't use an undefined value as %s reference");
 EXT char       no_aelem[]
@@ -924,6 +942,8 @@ EXT char    no_dir_func[]
   INIT("Unsupported directory function \"%s\" called");
 EXT char       no_func[]
   INIT("The %s function is unimplemented");
+EXT char       no_myglob[]
+  INIT("\"my\" variable %s can't be in a package");
 
 EXT SV         sv_undef;
 EXT SV         sv_no;
@@ -934,11 +954,11 @@ EXT SV            sv_yes;
 #endif
 
 #ifdef DOINIT
-EXT char *sig_name[] = {
-    SIG_NAME,0
-};
+EXT char *sig_name[] = { SIG_NAME };
+EXT int   sig_num[]  = { SIG_NUM };
 #else
 EXT char *sig_name[];
+EXT int   sig_num[];
 #endif
 
 #ifdef DOINIT
@@ -1080,6 +1100,7 @@ EXT char *        oldoldbufptr;
 EXT char *     bufend;
 EXT expectation expect INIT(XSTATE);   /* how to interpret ambiguous tokens */
 EXT char *     autoboot_preamble INIT(Nullch);
+EXT AV *       rsfp_filters;
 
 EXT I32                multi_start;    /* 1st line of multi-line string */
 EXT I32                multi_end;      /* last line of multi-line string */
@@ -1091,6 +1112,7 @@ EXT I32           error_count;    /* how many errors so far, max 10 */
 EXT I32                subline;        /* line this subroutine began on */
 EXT SV *       subname;        /* name of current subroutine */
 
+EXT CV *       compcv;         /* currently compiling subroutine */
 EXT AV *       comppad;        /* storage for lexically scoped temporaries */
 EXT AV *       comppad_name;   /* variable names for "my" variables */
 EXT I32                comppad_name_fill;/* last "introduced" variable offset */
@@ -1098,7 +1120,7 @@ EXT I32           min_intro_pending;/* start of vars to introduce */
 EXT I32                max_intro_pending;/* end of vars to introduce */
 EXT I32                padix;          /* max used index in current "register" pad */
 EXT I32                padix_floor;    /* how low may inner block reset padix */
-EXT bool       pad_reset_pending; /* reset pad on next attempted alloc */
+EXT I32                pad_reset_pending; /* reset pad on next attempted alloc */
 EXT COP                compiling;
 
 EXT I32                thisexpr;       /* name id for nothing_in_common() */
@@ -1164,6 +1186,9 @@ IEXT GV * Ienvgv;
 IEXT GV *      Isiggv;
 IEXT GV *      Iincgv;
 IEXT char *    Iorigfilename;
+IEXT SV *      Idiehook;
+IEXT SV *      Iwarnhook;
+IEXT SV *      Iparsehook;
 
 /* switches */
 IEXT char *    Icddir;
@@ -1193,6 +1218,8 @@ IEXT char *       Ie_tmpname;
 IEXT FILE *    Ie_fp;
 IEXT VOL U32   Idebug;
 IEXT U32       Iperldb;
+       /* This value may be raised by extensions for testing purposes */
+IEXT int       Iperl_destruct_level;   /* 0=none, 1=full, 2=full with checks */
 
 /* magical thingies */
 IEXT Time_t    Ibasetime;              /* $^T */
@@ -1209,7 +1236,7 @@ IEXT STRLEN       Iorslen;
 IEXT char *    Iofmt;                  /* $# */
 IEXT I32       Imaxsysfd IINIT(MAXSYSFD); /* top fd to pass to subprocesses */
 IEXT int       Imultiline;       /* $*--do strings hold >1 line? */
-IEXT U16       Istatusvalue;   /* $? */
+IEXT U32       Istatusvalue;   /* $? */
 
 IEXT struct stat Istatcache;           /* _ */
 IEXT GV *      Istatgv;
@@ -1233,6 +1260,9 @@ IEXT I32 *        Iscreamnext;
 IEXT I32       Imaxscream IINIT(-1);
 IEXT SV *      Ilastscream;
 
+/* shortcuts to misc objects */
+IEXT GV *      Ierrgv;
+
 /* shortcuts to debugging objects */
 IEXT GV *      IDBgv;
 IEXT GV *      IDBline;
@@ -1277,9 +1307,10 @@ IEXT VOL int     Iin_eval;       /* trap "fatal" errors? */
 IEXT OP *      Irestartop;     /* Are we propagating an error from croak? */
 IEXT int       Idelaymagic;    /* ($<,$>) = ... */
 IEXT bool      Idirty;         /* In the middle of tearing things down? */
-IEXT bool      Ilocalizing;    /* are we processing a local() list? */
+IEXT U8                Ilocalizing;    /* are we processing a local() list? */
 IEXT bool      Itainted;       /* using variables controlled by $< */
 IEXT bool      Itainting;      /* doing taint checks */
+IEXT char *    Iop_mask IINIT(NULL);   /* masked operations for safe evals */
 
 /* trace state */
 IEXT I32       Idlevel;
@@ -1288,6 +1319,7 @@ IEXT char *       Idebname;
 IEXT char *    Idebdelim;
 
 /* current interpreter roots */
+IEXT CV *      Imain_cv;
 IEXT OP *      Imain_root;
 IEXT OP *      Imain_start;
 IEXT OP *      Ieval_root;
@@ -1383,57 +1415,57 @@ extern "C" {
 /* The following must follow proto.h */
 
 #ifdef DOINIT
-MGVTBL vtbl_sv =       {magic_get,
+EXT MGVTBL vtbl_sv =   {magic_get,
                                magic_set,
                                        magic_len,
                                                0,      0};
-MGVTBL vtbl_env =      {0,     0,      0,      0,      0};
-MGVTBL vtbl_envelem =  {0,     magic_setenv,
+EXT MGVTBL vtbl_env =  {0,     0,      0,      0,      0};
+EXT MGVTBL vtbl_envelem =      {0,     magic_setenv,
                                        0,      magic_clearenv,
                                                        0};
-MGVTBL vtbl_sig =      {0,     0,               0, 0, 0};
-MGVTBL vtbl_sigelem =  {0,     magic_setsig,
+EXT MGVTBL vtbl_sig =  {0,     0,               0, 0, 0};
+EXT MGVTBL vtbl_sigelem =      {0,     magic_setsig,
                                        0,      0,      0};
-MGVTBL vtbl_pack =     {0,     0,      0,      magic_wipepack,
+EXT MGVTBL vtbl_pack = {0,     0,      0,      magic_wipepack,
                                                        0};
-MGVTBL vtbl_packelem = {magic_getpack,
+EXT MGVTBL vtbl_packelem =     {magic_getpack,
                                magic_setpack,
                                        0,      magic_clearpack,
                                                        0};
-MGVTBL vtbl_dbline =   {0,     magic_setdbline,
+EXT MGVTBL vtbl_dbline =       {0,     magic_setdbline,
                                        0,      0,      0};
-MGVTBL vtbl_isa =      {0,     magic_setisa,
+EXT MGVTBL vtbl_isa =  {0,     magic_setisa,
                                        0,      0,      0};
-MGVTBL vtbl_isaelem =  {0,     magic_setisa,
+EXT MGVTBL vtbl_isaelem =      {0,     magic_setisa,
                                        0,      0,      0};
-MGVTBL vtbl_arylen =   {magic_getarylen,
+EXT MGVTBL vtbl_arylen =       {magic_getarylen,
                                magic_setarylen,
                                        0,      0,      0};
-MGVTBL vtbl_glob =     {magic_getglob,
+EXT MGVTBL vtbl_glob = {magic_getglob,
                                magic_setglob,
                                        0,      0,      0};
-MGVTBL vtbl_mglob =    {0,     magic_setmglob,
+EXT MGVTBL vtbl_mglob =        {0,     magic_setmglob,
                                        0,      0,      0};
-MGVTBL vtbl_taint =    {magic_gettaint,magic_settaint,
+EXT MGVTBL vtbl_taint =        {magic_gettaint,magic_settaint,
                                        0,      0,      0};
-MGVTBL vtbl_substr =   {0,     magic_setsubstr,
+EXT MGVTBL vtbl_substr =       {0,     magic_setsubstr,
                                        0,      0,      0};
-MGVTBL vtbl_vec =      {0,     magic_setvec,
+EXT MGVTBL vtbl_vec =  {0,     magic_setvec,
                                        0,      0,      0};
-MGVTBL vtbl_pos =      {magic_getpos,
+EXT MGVTBL vtbl_pos =  {magic_getpos,
                                magic_setpos,
                                        0,      0,      0};
-MGVTBL vtbl_bm =       {0,     magic_setbm,
+EXT MGVTBL vtbl_bm =   {0,     magic_setbm,
                                        0,      0,      0};
-MGVTBL vtbl_uvar =     {magic_getuvar,
+EXT MGVTBL vtbl_uvar = {magic_getuvar,
                                magic_setuvar,
                                        0,      0,      0};
 
 #ifdef OVERLOAD
-MGVTBL vtbl_amagic =       {0,     magic_setamagic,
-                                        0,      0,      0};
-MGVTBL vtbl_amagicelem =   {0,     magic_setamagic,
-                                        0,      0,      0};
+EXT MGVTBL vtbl_amagic =       {0,     magic_setamagic,
+                                        0,      0,      magic_setamagic};
+EXT MGVTBL vtbl_amagicelem =   {0,     magic_setamagic,
+                                        0,      0,      magic_setamagic};
 #endif /* OVERLOAD */
 
 #else
@@ -1467,7 +1499,7 @@ EXT MGVTBL vtbl_amagicelem;
 #ifdef OVERLOAD
 EXT long amagic_generation;
 
-#define NofAMmeth 27
+#define NofAMmeth 29
 #ifdef DOINIT
 EXT char * AMG_names[NofAMmeth][2] = {
   {"fallback","abs"},
@@ -1481,6 +1513,9 @@ EXT char * AMG_names[NofAMmeth][2] = {
   {"**", "**="},
   {"<<", "<<="},
   {">>", ">>="},
+  {"&", "&="},
+  {"|", "|="},
+  {"^", "^="},
   {"<", "<="},
   {">", ">="},
   {"==", "!="},
@@ -1488,15 +1523,14 @@ EXT char * AMG_names[NofAMmeth][2] = {
   {"lt", "le"},
   {"gt", "ge"},
   {"eq", "ne"},
-  {"&", "^"},
-  {"|", "neg"},
   {"!", "~"},
   {"++", "--"},
   {"atan2", "cos"},
   {"sin", "exp"},
   {"log", "sqrt"},
   {"x","x="},
-  {".",".="}
+  {".",".="},
+  {"=","neg"}
 };
 #else
 EXT char * AMG_names[NofAMmeth][2];
@@ -1526,6 +1560,9 @@ enum {
   pow_amg,     pow_ass_amg,
   lshift_amg,  lshift_ass_amg,
   rshift_amg,  rshift_ass_amg,
+  band_amg,    band_ass_amg,
+  bor_amg,     bor_ass_amg,
+  bxor_amg,    bxor_ass_amg,
   lt_amg,      le_amg,
   gt_amg,      ge_amg,
   eq_amg,      ne_amg,
@@ -1533,15 +1570,14 @@ enum {
   slt_amg,     sle_amg,
   sgt_amg,     sge_amg,
   seq_amg,     sne_amg,
-  band_amg,    bxor_amg,
-  bor_amg,     neg_amg,
   not_amg,     compl_amg,
   inc_amg,     dec_amg,
   atan2_amg,   cos_amg,
   sin_amg,     exp_amg,
   log_amg,     sqrt_amg,
   repeat_amg,   repeat_ass_amg,
-  concat_amg,  concat_ass_amg
+  concat_amg,  concat_ass_amg,
+  copy_amg,    neg_amg
 };
 #endif /* OVERLOAD */