applied suggested patch, with win32 and PERL_OBJECT additions
authorTom Hughes <tom@compton.nu>
Sat, 24 Apr 1999 18:11:59 +0000 (19:11 +0100)
committerGurusamy Sarathy <gsar@cpan.org>
Mon, 10 May 1999 03:48:08 +0000 (03:48 +0000)
Message-ID: <609bdff748.tom@compton.compton.nu>
Subject: ByteLoader patch

p4raw-id: //depot/perl@3356

22 files changed:
MANIFEST
bytecode.h
bytecode.pl
byterun.c
byterun.h
embed.h
embed.pl
ext/B/B.xs
ext/B/B/Asmdata.pm
ext/B/B/Bytecode.pm
ext/B/B/Debug.pm
ext/ByteLoader/ByteLoader.pm [new file with mode: 0644]
ext/ByteLoader/ByteLoader.xs [new file with mode: 0644]
ext/ByteLoader/Makefile.PL [new file with mode: 0644]
objXSUB.h
op.c
pp_ctl.c
proto.h
utils/Makefile
utils/perlbc.PL [new file with mode: 0644]
win32/Makefile
win32/makefile.mk

index bb9cb4b..5451a88 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -195,6 +195,9 @@ ext/B/ramblings/magic               Compiler ramblings: notes on magic
 ext/B/ramblings/reg.alloc      Compiler ramblings: register allocation
 ext/B/ramblings/runtime.porting        Compiler ramblings: porting PP enging
 ext/B/typemap          Compiler backend interface types
+ext/ByteLoader/ByteLoader.pm   Bytecode loader Perl module
+ext/ByteLoader/ByteLoader.xs   Bytecode loader external subroutines
+ext/ByteLoader/Makefile.PL     Bytecode loader makefile writer
 ext/DB_File/Changes            Berkeley DB extension change log
 ext/DB_File/DB_File.pm         Berkeley DB extension Perl module
 ext/DB_File/DB_File.xs         Berkeley DB extension external subroutines
@@ -1311,6 +1314,7 @@ utils/c2ph.PL             program to translate dbx stabs to perl
 utils/h2ph.PL          A thing to turn C .h files into perl .ph files
 utils/h2xs.PL          Program to make .xs files from C header files
 utils/perlbug.PL       A simple tool to submit a bug report
+utils/perlbc.PL                Front-end for bytecode compiler
 utils/perlcc.PL                Front-end for compiler
 utils/perldoc.PL       A simple tool to find & display perl's documentation
 utils/pl2pm.PL         A pl to pm translator
index 8564aed..9f4f781 100644 (file)
@@ -154,7 +154,10 @@ typedef IV IV64;
        o->op_ppaddr = PL_ppaddr[arg];          \
     } STMT_END
 #define BSET_op_ppaddr(o, arg) croak("op_ppaddr not yet implemented")
-#define BSET_curpad(pad, arg) pad = AvARRAY(arg)
+#define BSET_curpad(pad, arg) STMT_START {     \
+       PL_comppad = (AV *)arg;                 \
+       pad = AvARRAY(arg);                     \
+    } STMT_END
 
 #define BSET_OBJ_STORE(obj, ix)                \
        (I32)ix > PL_bytecode_obj_list_fill ?   \
index 126ea5f..c61b7aa 100644 (file)
@@ -386,6 +386,7 @@ cop_filegv  *(SV**)&cCOP->cop_filegv                svindex
 cop_seq                cCOP->cop_seq                           U32
 cop_arybase    cCOP->cop_arybase                       I32
 cop_line       cCOP->cop_line                          line_t
+cop_warnings   cCOP->cop_warnings                      svindex
 main_start     PL_main_start                           opindex
 main_root      PL_main_root                            opindex
 curpad         PL_curpad                               svindex         x
index 34beaf4..f6c5232 100644 (file)
--- a/byterun.c
+++ b/byterun.c
@@ -838,21 +838,28 @@ void byterun(PerlIO *fp)
                cCOP->cop_line = arg;
                break;
            }
-         case INSN_MAIN_START:         /* 116 */
+         case INSN_COP_WARNINGS:               /* 116 */
+           {
+               svindex arg;
+               BGET_svindex(arg);
+               cCOP->cop_warnings = arg;
+               break;
+           }
+         case INSN_MAIN_START:         /* 117 */
            {
                opindex arg;
                BGET_opindex(arg);
                PL_main_start = arg;
                break;
            }
-         case INSN_MAIN_ROOT:          /* 117 */
+         case INSN_MAIN_ROOT:          /* 118 */
            {
                opindex arg;
                BGET_opindex(arg);
                PL_main_root = arg;
                break;
            }
-         case INSN_CURPAD:             /* 118 */
+         case INSN_CURPAD:             /* 119 */
            {
                svindex arg;
                BGET_svindex(arg);
index 6e559ef..430de55 100644 (file)
--- a/byterun.h
+++ b/byterun.h
@@ -17,9 +17,7 @@ struct bytestream {
 };
 #endif /* INDIRECT_BGET_MACROS */
 
-#ifndef PERL_OBJECT
 void *bset_obj_store _((void *, I32));
-#endif
 
 enum {
     INSN_RET,                  /* 0 */
@@ -138,10 +136,11 @@ enum {
     INSN_COP_SEQ,                      /* 113 */
     INSN_COP_ARYBASE,                  /* 114 */
     INSN_COP_LINE,                     /* 115 */
-    INSN_MAIN_START,                   /* 116 */
-    INSN_MAIN_ROOT,                    /* 117 */
-    INSN_CURPAD,                       /* 118 */
-    MAX_INSN = 118
+    INSN_COP_WARNINGS,                 /* 116 */
+    INSN_MAIN_START,                   /* 117 */
+    INSN_MAIN_ROOT,                    /* 118 */
+    INSN_CURPAD,                       /* 119 */
+    MAX_INSN = 119
 };
 
 enum {
diff --git a/embed.h b/embed.h
index fed0530..dad61c7 100644 (file)
--- a/embed.h
+++ b/embed.h
 #define dofindlabel            CPerlObj::Perl_dofindlabel
 #define dofindlabel            CPerlObj::Perl_dofindlabel
 #define doform                 CPerlObj::Perl_doform
+#define doopen                 CPerlObj::Perl_doopen
 #define doparseform            CPerlObj::Perl_doparseform
 #define dopoptoeval            CPerlObj::Perl_dopoptoeval
 #define dopoptoeval            CPerlObj::Perl_dopoptoeval
index 248792c..32c034f 100755 (executable)
--- a/embed.pl
+++ b/embed.pl
@@ -254,6 +254,7 @@ my @staticfuncs = qw(
     dopoptosub_at
     save_lines
     doeval
+    doopen
     sv_ncmp
     sv_i_ncmp
     amagic_ncmp
index ccac053..dd50d97 100644 (file)
@@ -808,6 +808,7 @@ LOOP_lastop(o)
 #define COP_cop_seq(o) o->cop_seq
 #define COP_arybase(o) o->cop_arybase
 #define COP_line(o)    o->cop_line
+#define COP_warnings(o)        o->cop_warnings
 
 MODULE = B     PACKAGE = B::COP                PREFIX = COP_
 
@@ -835,6 +836,10 @@ U16
 COP_line(o)
        B::COP  o
 
+B::SV
+COP_warnings(o)
+       B::COP  o
+
 MODULE = B     PACKAGE = B::SV         PREFIX = Sv
 
 U32
index f3e57a1..ddc391b 100644 (file)
@@ -136,9 +136,10 @@ $insn_data{cop_filegv} = [112, \&PUT_svindex, "GET_svindex"];
 $insn_data{cop_seq} = [113, \&PUT_U32, "GET_U32"];
 $insn_data{cop_arybase} = [114, \&PUT_I32, "GET_I32"];
 $insn_data{cop_line} = [115, \&PUT_U16, "GET_U16"];
-$insn_data{main_start} = [116, \&PUT_opindex, "GET_opindex"];
-$insn_data{main_root} = [117, \&PUT_opindex, "GET_opindex"];
-$insn_data{curpad} = [118, \&PUT_svindex, "GET_svindex"];
+$insn_data{cop_warnings} = [116, \&PUT_svindex, "GET_svindex"];
+$insn_data{main_start} = [117, \&PUT_opindex, "GET_opindex"];
+$insn_data{main_root} = [118, \&PUT_opindex, "GET_opindex"];
+$insn_data{curpad} = [119, \&PUT_svindex, "GET_svindex"];
 
 my ($insn_name, $insn_data);
 while (($insn_name, $insn_data) = each %insn_data) {
index de2bf99..29683b8 100644 (file)
@@ -293,6 +293,8 @@ sub B::COP::bytecode {
     my $filegv = $op->filegv;
     my $filegvix = $filegv->objix;
     my $line = $op->line;
+    my $warnings = $op->warnings;
+    my $warningsix = $warnings->objix;
     if ($debug_bc) {
        printf "# line %s:%d\n", $filegv->SV->PV, $line;
     }
@@ -305,6 +307,7 @@ cop_seq %d
 cop_filegv $filegvix
 cop_arybase %d
 cop_line $line
+cop_warnings $warningsix
 EOT
     $filegv->bytecode;
     $stash->bytecode;
index 7754a5a..d10db9c 100644 (file)
@@ -68,13 +68,14 @@ sub B::COP::debug {
     my ($op) = @_;
     $op->B::OP::debug();
     my ($filegv) = $op->filegv;
-    printf <<'EOT', $op->label, ${$op->stash}, $$filegv, $op->seq, $op->arybase, $op->line;
+    printf <<'EOT', $op->label, ${$op->stash}, $$filegv, $op->seq, $op->arybase, $op->line, ${$op->warnings};
        cop_label       %s
        cop_stash       0x%x
        cop_filegv      0x%x
        cop_seq         %d
        cop_arybase     %d
        cop_line        %d
+       cop_warnings    0x%x
 EOT
     $filegv->debug;
 }
diff --git a/ext/ByteLoader/ByteLoader.pm b/ext/ByteLoader/ByteLoader.pm
new file mode 100644 (file)
index 0000000..9faec2e
--- /dev/null
@@ -0,0 +1,45 @@
+package ByteLoader;
+
+use strict;
+use vars qw($VERSION @ISA);
+
+require DynaLoader;
+
+@ISA = qw(DynaLoader);
+
+$VERSION = 0.01;
+
+bootstrap ByteLoader $VERSION;
+
+# Preloaded methods go here.
+
+1;
+__END__
+
+=head1 NAME
+
+ByteLoader - load byte compiled perl code
+
+=head1 SYNOPSIS
+
+  use ByteLoader 0.01;
+  <byte code>
+
+  use ByteLoader 0.01;
+  <byte code>
+
+=head1 DESCRIPTION
+
+This module is used to load byte compiled perl code. It uses the source
+filter mechanism to read the byte code and insert it into the compiled
+code at the appropriate point.
+
+=head1 AUTHOR
+
+Tom Hughes <tom@compton.nu> based on the ideas of Tim Bunce and others.
+
+=head1 SEE ALSO
+
+perl(1).
+
+=cut
diff --git a/ext/ByteLoader/ByteLoader.xs b/ext/ByteLoader/ByteLoader.xs
new file mode 100644 (file)
index 0000000..98053c7
--- /dev/null
@@ -0,0 +1,64 @@
+#include "EXTERN.h"
+#include "perl.h"
+#include "XSUB.h"
+
+#include "byterun.c"
+
+/* defgv must be accessed differently under threaded perl */
+/* DEFSV et al are in 5.004_56 */
+#ifndef DEFSV
+#define DEFSV          GvSV(defgv)
+#endif
+
+static I32
+#ifdef PERL_OBJECT
+byteloader_filter(CPerlObj *pPerl, int idx, SV *buf_sv, int maxlen)
+#else
+byteloader_filter(int idx, SV *buf_sv, int maxlen)
+#endif
+{
+    OP *saveroot = PL_main_root;
+    OP *savestart = PL_main_start;
+
+#ifdef INDIRECT_BGET_MACROS
+    struct bytesream bs;
+
+    bs.data = PL_rsfp;
+    bs.fgetc = (int(*) _((void*)))fgetc;
+    bs.fread = (int(*) _((char*,size_t,size_t,void*)))fread;
+    bs.freadpv = freadpv;
+#else
+    byterun(PL_rsfp);
+#endif
+
+    if (PL_in_eval) {
+        OP *o;
+
+        PL_eval_start = PL_main_start;
+
+        o = newSVOP(OP_CONST, 0, newSViv(1));
+        PL_eval_root = newLISTOP(OP_LINESEQ, 0, PL_main_root, o);
+        PL_main_root->op_next = o;
+        PL_eval_root = newUNOP(OP_LEAVEEVAL, 0, PL_eval_root);
+        o->op_next = PL_eval_root;
+    
+        PL_main_root = saveroot;
+        PL_main_start = savestart;
+    }
+
+    return 0;
+}
+
+MODULE = ByteLoader            PACKAGE = ByteLoader
+
+PROTOTYPES:    ENABLE
+
+void
+import(...)
+  PPCODE:
+    filter_add(byteloader_filter, NULL);
+
+void
+unimport(...)
+  PPCODE:
+    filter_del(byteloader_filter);
diff --git a/ext/ByteLoader/Makefile.PL b/ext/ByteLoader/Makefile.PL
new file mode 100644 (file)
index 0000000..4aabe79
--- /dev/null
@@ -0,0 +1,10 @@
+use ExtUtils::MakeMaker;
+# See lib/ExtUtils/MakeMaker.pm for details of how to influence
+# the contents of the Makefile that is written.
+WriteMakefile(
+    'NAME'     => 'ByteLoader',
+    'VERSION_FROM' => 'ByteLoader.pm', # finds $VERSION
+    'LIBS'     => [''],   # e.g., '-lm' 
+    'DEFINE'   => '',     # e.g., '-DHAVE_SOMETHING' 
+    'INC'      => '-I$(PERL_SRC)',     # e.g., '-I/usr/include/other' 
+);
index 59856fd..aa75722 100644 (file)
--- a/objXSUB.h
+++ b/objXSUB.h
 #define dofindlabel            pPerl->Perl_dofindlabel
 #undef  doform
 #define doform                 pPerl->Perl_doform
+#undef  doopen
+#define doopen                 pPerl->Perl_doopen
 #undef  doparseform
 #define doparseform            pPerl->Perl_doparseform
 #undef  dopoptoeval
diff --git a/op.c b/op.c
index 6898731..13f2a15 100644 (file)
--- a/op.c
+++ b/op.c
@@ -1722,6 +1722,8 @@ newPROG(OP *o)
 {
     dTHR;
     if (PL_in_eval) {
+       if (PL_eval_root)
+               return;
        PL_eval_root = newUNOP(OP_LEAVEEVAL, ((PL_in_eval & 4) ? OPf_SPECIAL : 0), o);
        PL_eval_start = linklist(PL_eval_root);
        PL_eval_root->op_next = 0;
index 0beaea9..ec98233 100644 (file)
--- a/pp_ctl.c
+++ b/pp_ctl.c
@@ -41,6 +41,7 @@ static void save_lines _((AV *array, SV *sv));
 static I32 sortcv _((SV *a, SV *b));
 static void qsortsv _((SV **array, size_t num_elts, I32 (*fun)(SV *a, SV *b)));
 static OP *doeval _((int gimme, OP** startop));
+static PerlIO *doopen _((const char *name, const char *mode));
 static I32 sv_ncmp _((SV *a, SV *b));
 static I32 sv_i_ncmp _((SV *a, SV *b));
 static I32 amagic_ncmp _((SV *a, SV *b));
@@ -2771,6 +2772,35 @@ doeval(int gimme, OP** startop)
     RETURNOP(PL_eval_start);
 }
 
+static PerlIO *
+doopen(const char *name, const char *mode)
+{
+    STRLEN namelen = strlen(name);
+    PerlIO *fp;
+
+    if (namelen > 3 && strcmp(name + namelen - 3, ".pm") == 0) {
+        SV *pmcsv = newSVpvf("%s%c", name, 'c');
+       char *pmc = SvPV_nolen(pmcsv);
+       Stat_t pmstat;
+        Stat_t pmcstat;
+        if (PerlLIO_stat(pmc, &pmcstat) < 0) {
+           fp = PerlIO_open(name, mode);
+       } else {
+           if (PerlLIO_stat(name, &pmstat) < 0 ||
+               pmstat.st_mtime < pmcstat.st_mtime) {
+               fp = PerlIO_open(pmc, mode);
+         } else {
+               fp = PerlIO_open(name, mode);
+         }
+       }
+        SvREFCNT_dec(pmcsv);
+    } else {
+        fp = PerlIO_open(name, mode);
+    }
+
+    return fp;
+}
+
 PP(pp_require)
 {
     djSP;
@@ -2821,7 +2851,7 @@ PP(pp_require)
     )
     {
        tryname = name;
-       tryrsfp = PerlIO_open(name,PERL_SCRIPT_MODE);
+       tryrsfp = doopen(name,PERL_SCRIPT_MODE);
     }
     else {
        AV *ar = GvAVn(PL_incgv);
@@ -2845,7 +2875,7 @@ PP(pp_require)
 #endif
                TAINT_PROPER("require");
                tryname = SvPVX(namesv);
-               tryrsfp = PerlIO_open(tryname, PERL_SCRIPT_MODE);
+               tryrsfp = doopen(tryname, PERL_SCRIPT_MODE);
                if (tryrsfp) {
                    if (tryname[0] == '.' && tryname[1] == '/')
                        tryname += 2;
diff --git a/proto.h b/proto.h
index 4ba68fe..61e5fa0 100644 (file)
--- a/proto.h
+++ b/proto.h
@@ -752,6 +752,7 @@ I32 dopoptosub _((I32 startingblock));
 I32 dopoptosub_at _((PERL_CONTEXT* cxstk, I32 startingblock));
 void save_lines _((AV *array, SV *sv));
 OP *doeval _((int gimme, OP** startop));
+PerlIO *doopen _((const char *name, const char *mode));
 I32 sv_ncmp _((SV *a, SV *b));
 I32 sv_i_ncmp _((SV *a, SV *b));
 I32 amagic_ncmp _((SV *a, SV *b));
index 2df16d8..b650bbd 100644 (file)
@@ -5,9 +5,9 @@ REALPERL = ../perl
 # Files to be built with variable substitution after miniperl is
 # available.  Dependencies handled manually below (for now).
 
-pl = c2ph.PL h2ph.PL h2xs.PL perlbug.PL perldoc.PL pl2pm.PL splain.PL perlcc.PL
-plextract  = c2ph h2ph h2xs perlbug perldoc pl2pm splain perlcc
-plextractexe  = c2ph.exe h2ph.exe h2xs.exe perlbug.exe perldoc.exe pl2pm.exe splain.exe perlcc.exe
+pl = c2ph.PL h2ph.PL h2xs.PL perlbug.PL perldoc.PL pl2pm.PL splain.PL perlcc.PL perlbc.PL
+plextract  = c2ph h2ph h2xs perlbug perldoc pl2pm splain perlcc perlbc
+plextractexe  = c2ph.exe h2ph.exe h2xs.exe perlbug.exe perldoc.exe pl2pm.exe splain.exe perlcc.exe perlbc.exe
 
 all: $(plextract) 
 
@@ -31,7 +31,9 @@ pl2pm:                pl2pm.PL ../config.sh
 
 splain:                splain.PL ../config.sh ../lib/diagnostics.pm
 
-perlcc:     perlcc.PL ../config.sh
+perlcc:                perlcc.PL ../config.sh
+
+perlbc:                perlbc.PL ../config.sh
 
 clean:
 
diff --git a/utils/perlbc.PL b/utils/perlbc.PL
new file mode 100644 (file)
index 0000000..51d074b
--- /dev/null
@@ -0,0 +1,80 @@
+#!/usr/local/bin/perl
+
+use Config;
+use File::Basename qw(&basename &dirname);
+use Cwd;
+
+# List explicitly here the variables you want Configure to
+# generate.  Metaconfig only looks for shell variables, so you
+# have to mention them as if they were shell variables, not
+# %Config entries.  Thus you write
+#  $startperl
+# to ensure Configure will look for $Config{startperl}.
+# Wanted:  $archlibexp
+
+# This forces PL files to create target in same directory as PL file.
+# This is so that make depend always knows where to find PL derivatives.
+$origdir = cwd;
+chdir dirname($0);
+$file = basename($0, '.PL');
+$file .= '.com' if $^O eq 'VMS';
+
+open OUT,">$file" or die "Can't create $file: $!";
+
+print "Extracting $file (with variable substitutions)\n";
+
+# In this section, perl variables will be expanded during extraction.
+# You can use $Config{...} to use Configure variables.
+
+print OUT <<"!GROK!THIS!";
+$Config{startperl}
+    eval 'exec $Config{perlpath} -S \$0 \${1+"\$@"}'
+    if \$running_under_some_shell;
+!GROK!THIS!
+
+# In the following, perl variables are not expanded during extraction.
+
+print OUT <<'!NO!SUBS!';
+
+use strict;
+use warning;
+no warning qw(once);
+
+use Config;
+
+require ByteLoader;
+
+foreach my $infile (@ARGV)
+{
+    if ($infile =~ /\.p[ml]$/)
+    {
+       my $outfile = $infile . "c";
+
+       open(OUT,"> $outfile") || die "Can't open $outfile: $!";
+
+       if ($infile =~ /\.pl$/)
+       {
+           print OUT "$Config{startperl}\n";
+           print OUT "    eval 'exec $Config{perlpath} -S \$0 \${1+\"\$@\"}'\n";
+           print OUT "    if \$running_under_some_shell;\n\n";
+       }
+
+       print OUT "use ByteLoader $ByteLoader::VERSION;\n";
+
+       close(OUT);
+
+       print "$^X -MO=Bytecode $infile >> $outfile\n";
+
+       system("$^X -MO=Bytecode $infile >> $outfile");
+    }
+    else
+    {
+       warn "Don't know how to byte compile $infile";
+    }
+}
+!NO!SUBS!
+
+close OUT or die "Can't close $file: $!";
+chmod 0755, $file or die "Can't reset permissions for $file: $!\n";
+exec("$Config{'eunicefix'} $file") if $Config{'eunicefix'} ne ':';
+chdir $origdir;
index 49271f2..ffa8c6b 100644 (file)
@@ -509,7 +509,7 @@ SETARGV_OBJ = setargv$(o)
 !ENDIF
 
 DYNAMIC_EXT    = Socket IO Fcntl Opcode SDBM_File POSIX attrs Thread B re \
-               Data/Dumper Devel/Peek
+               Data/Dumper Devel/Peek ByteLoader
 STATIC_EXT     = DynaLoader
 NONXS_EXT      = Errno
 
@@ -527,6 +527,7 @@ RE          = $(EXTDIR)\re\re
 DUMPER         = $(EXTDIR)\Data\Dumper\Dumper
 ERRNO          = $(EXTDIR)\Errno\Errno
 PEEK           = $(EXTDIR)\Devel\Peek\Peek
+BYTELOADER     = $(EXTDIR)\ByteLoader
 
 SOCKET_DLL     = $(AUTODIR)\Socket\Socket.dll
 FCNTL_DLL      = $(AUTODIR)\Fcntl\Fcntl.dll
@@ -540,6 +541,7 @@ B_DLL               = $(AUTODIR)\B\B.dll
 DUMPER_DLL     = $(AUTODIR)\Data\Dumper\Dumper.dll
 PEEK_DLL       = $(AUTODIR)\Devel\Peek\Peek.dll
 RE_DLL         = $(AUTODIR)\re\re.dll
+BYTELOADER_DLL = $(AUTODIR)\ByteLoader\ByteLoader.dll
 
 ERRNO_PM       = $(LIBDIR)\Errno.pm
 
@@ -555,7 +557,8 @@ EXTENSION_C =               \
                $(RE).c         \
                $(DUMPER).c     \
                $(PEEK).c       \
-               $(B).c
+               $(B).c          \
+               $(BYTELOADER).c
 
 EXTENSION_DLL  =               \
                $(SOCKET_DLL)   \
@@ -567,7 +570,8 @@ EXTENSION_DLL       =               \
                $(ATTRS_DLL)    \
                $(DUMPER_DLL)   \
                $(PEEK_DLL)     \
-               $(B_DLL)
+               $(B_DLL)        \
+               $(BYTELOADER_DLL)
 
 EXTENSION_PM   =               \
                $(ERRNO_PM)
@@ -857,6 +861,12 @@ $(SOCKET_DLL): $(PERLEXE) $(SOCKET).xs
        $(MAKE)
        cd ..\..\win32
 
+$(BYTELOADER_DLL): $(PERLEXE) $(BYTELOADER).xs
+       cd $(EXTDIR)\$(*B)
+       ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl
+       $(MAKE)
+       cd ..\..\win32
+
 $(ERRNO_PM): $(PERLEXE) $(ERRNO)_pm.PL
        cd $(EXTDIR)\$(*B)
        ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl
@@ -889,7 +899,7 @@ distclean: clean
        -del /f $(LIBDIR)\ops.pm $(LIBDIR)\Safe.pm $(LIBDIR)\Thread.pm
        -del /f $(LIBDIR)\SDBM_File.pm $(LIBDIR)\Socket.pm $(LIBDIR)\POSIX.pm
        -del /f $(LIBDIR)\B.pm $(LIBDIR)\O.pm $(LIBDIR)\re.pm
-       -del /f $(LIBDIR)\Data\Dumper.pm
+       -del /f $(LIBDIR)\Data\Dumper.pm $(LIBDIR)\ByteLoader.pm
        -del /f $(LIBDIR)\Devel\Peek.pm
        -rmdir /s /q $(LIBDIR)\IO || rmdir /s $(LIBDIR)\IO
        -rmdir /s /q $(LIBDIR)\Thread || rmdir /s $(LIBDIR)\Thread
index 32056a9..bee351c 100644 (file)
@@ -624,7 +624,7 @@ SETARGV_OBJ = setargv$(o)
 .ENDIF
 
 DYNAMIC_EXT    = Socket IO Fcntl Opcode SDBM_File POSIX attrs Thread B re \
-               Data/Dumper Devel/Peek
+               Data/Dumper Devel/Peek ByteLoader
 STATIC_EXT     = DynaLoader
 NONXS_EXT      = Errno
 
@@ -642,6 +642,7 @@ RE          = $(EXTDIR)\re\re
 DUMPER         = $(EXTDIR)\Data\Dumper\Dumper
 ERRNO          = $(EXTDIR)\Errno\Errno
 PEEK           = $(EXTDIR)\Devel\Peek\Peek
+BYTELOADER     = $(EXTDIR)\ByteLoader
 
 SOCKET_DLL     = $(AUTODIR)\Socket\Socket.dll
 FCNTL_DLL      = $(AUTODIR)\Fcntl\Fcntl.dll
@@ -655,6 +656,7 @@ B_DLL               = $(AUTODIR)\B\B.dll
 DUMPER_DLL     = $(AUTODIR)\Data\Dumper\Dumper.dll
 PEEK_DLL       = $(AUTODIR)\Devel\Peek\Peek.dll
 RE_DLL         = $(AUTODIR)\re\re.dll
+BYTELOADER_DLL = $(AUTODIR)\ByteLoader\ByteLoader.dll
 
 ERRNO_PM       = $(LIBDIR)\Errno.pm
 
@@ -670,7 +672,8 @@ EXTENSION_C =               \
                $(RE).c         \
                $(DUMPER).c     \
                $(PEEK).c       \
-               $(B).c
+               $(B).c          \
+               $(BYTELOADER).c
 
 EXTENSION_DLL  =               \
                $(SOCKET_DLL)   \
@@ -682,7 +685,8 @@ EXTENSION_DLL       =               \
                $(ATTRS_DLL)    \
                $(DUMPER_DLL)   \
                $(PEEK_DLL)     \
-               $(B_DLL)
+               $(B_DLL)        \
+               $(BYTELOADER_DLL)
 
 EXTENSION_PM   =               \
                $(ERRNO_PM)
@@ -1024,6 +1028,11 @@ $(SOCKET_DLL): $(PERLEXE) $(SOCKET).xs
        ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl
        cd $(EXTDIR)\$(*B) && $(MAKE)
 
+$(BYTELOADER_DLL): $(PERLEXE) $(BYTELOADER).xs
+       cd $(EXTDIR)\$(*B) && \
+       ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl
+       cd $(EXTDIR)\$(*B) && $(MAKE)
+
 $(ERRNO_PM): $(PERLEXE) $(ERRNO)_pm.PL
        cd $(EXTDIR)\$(*B) && \
        ..\..\miniperl -I..\..\lib Makefile.PL INSTALLDIRS=perl
@@ -1052,7 +1061,7 @@ distclean: clean
        -del /f $(LIBDIR)\ops.pm $(LIBDIR)\Safe.pm $(LIBDIR)\Thread.pm
        -del /f $(LIBDIR)\SDBM_File.pm $(LIBDIR)\Socket.pm $(LIBDIR)\POSIX.pm
        -del /f $(LIBDIR)\B.pm $(LIBDIR)\O.pm $(LIBDIR)\re.pm
-       -del /f $(LIBDIR)\Data\Dumper.pm
+       -del /f $(LIBDIR)\Data\Dumper.pm $(LIBDIR)\ByteLoader.pm
        -del /f $(LIBDIR)\Devel\Peek.pm
        -rmdir /s /q $(LIBDIR)\IO || rmdir /s $(LIBDIR)\IO
        -rmdir /s /q $(LIBDIR)\Thread || rmdir /s $(LIBDIR)\Thread