X-Git-Url: https://perl5.git.perl.org/perl5.git/blobdiff_plain/3c4b39bee8832007b7e91bfce8701d34cacab411..a86a1ca71b6cc69a4a01c17f91f95d556810d9f3:/bytecode.pl diff --git a/bytecode.pl b/bytecode.pl index fc2cae4..95b5b12 100644 --- a/bytecode.pl +++ b/bytecode.pl @@ -14,7 +14,8 @@ my @optype= qw(OP UNOP BINOP LOGOP LISTOP PMOP SVOP PADOP PVOP LOOP COP); # Nullsv *must* come first in the following so that the condition # ($$sv == 0) can continue to be used to test (sv == Nullsv). -my @specialsv = qw(Nullsv &PL_sv_undef &PL_sv_yes &PL_sv_no pWARN_ALL pWARN_NONE); +my @specialsv = qw(Nullsv &PL_sv_undef &PL_sv_yes &PL_sv_no + (SV*)pWARN_ALL (SV*)pWARN_NONE (SV*)pWARN_STD); my (%alias_from, $from, $tos); while (($from, $tos) = each %alias_to) { @@ -38,7 +39,7 @@ EOT my $perl_header; ($perl_header = $c_header) =~ s{[/ ]?\*/?}{#}g; -safer_unlink "ext/ByteLoader/byterun.c", "ext/ByteLoader/byterun.h", "ext/B/B/Asmdata.pm"; +safer_unlink "ext/B/B/Asmdata.pm"; # # Start with boilerplate for Asmdata.pm @@ -65,76 +66,12 @@ print ASMDATA_PM <<"EOT"; # I get a hard-to-track-down stack underflow and segfault. EOT -# -# Boilerplate for byterun.c -# -open(BYTERUN_C, ">ext/ByteLoader/byterun.c") or die "ext/ByteLoader/byterun.c: $!"; -binmode BYTERUN_C; -print BYTERUN_C $c_header, <<'EOT'; - -#define PERL_NO_GET_CONTEXT -#include "EXTERN.h" -#include "perl.h" -#define NO_XSLOCKS -#include "XSUB.h" - -#include "byterun.h" -#include "bytecode.h" - - -static const int optype_size[] = { -EOT -my $i = 0; -for ($i = 0; $i < @optype - 1; $i++) { - printf BYTERUN_C " sizeof(%s),\n", $optype[$i], $i; -} -printf BYTERUN_C " sizeof(%s)\n", $optype[$i], $i; -print BYTERUN_C <<'EOT'; -}; - -void * -bset_obj_store(pTHX_ struct byteloader_state *bstate, void *obj, I32 ix) -{ - if (ix > bstate->bs_obj_list_fill) { - Renew(bstate->bs_obj_list, ix + 32, void*); - bstate->bs_obj_list_fill = ix + 31; - } - bstate->bs_obj_list[ix] = obj; - return obj; -} - -int -byterun(pTHX_ register struct byteloader_state *bstate) -{ - dVAR; - register int insn; - U32 ix; - SV *specialsv_list[6]; - - BYTECODE_HEADER_CHECK; /* croak if incorrect platform */ - Newx(bstate->bs_obj_list, 32, void*); /* set op objlist */ - bstate->bs_obj_list_fill = 31; - bstate->bs_obj_list[0] = NULL; /* first is always Null */ - bstate->bs_ix = 1; - -EOT - -for my $i ( 0 .. $#specialsv ) { - print BYTERUN_C " specialsv_list[$i] = $specialsv[$i];\n"; -} - -print BYTERUN_C <<'EOT'; - - while ((insn = BGET_FGETC()) != EOF) { - switch (insn) { -EOT - +my $size = @specialsv; my (@insn_name, $insn_num, $insn, $lvalue, $argtype, $flags, $fundtype); while () { if (/^\s*#/) { - print BYTERUN_C if /^\s*#\s*(?:if|endif|el)/; next; } chop; @@ -155,26 +92,6 @@ while () { $fundtype = $alias_from{$argtype} || $argtype; # - # Add the case statement and code for the bytecode interpreter in byterun.c - # - printf BYTERUN_C "\t case INSN_%s:\t\t/* %d */\n\t {\n", - uc($insn), $insn_num; - my $optarg = $argtype eq "none" ? "" : ", arg"; - if ($optarg) { - printf BYTERUN_C "\t\t$argtype arg;\n\t\tBGET_%s(arg);\n", $fundtype; - } - if ($flags =~ /x/) { - print BYTERUN_C "\t\tBSET_$insn($lvalue$optarg);\n"; - } elsif ($flags =~ /s/) { - # Store instructions store to bytecode_obj_list[arg]. "lvalue" field is rvalue. - print BYTERUN_C "\t\tBSET_OBJ_STORE($lvalue$optarg);\n"; - } - elsif ($optarg && $lvalue ne "none") { - print BYTERUN_C "\t\t$lvalue = ${rvalcast}arg;\n"; - } - print BYTERUN_C "\t\tbreak;\n\t }\n"; - - # # Add the initialiser line for %insn_data in Asmdata.pm # print ASMDATA_PM <<"EOT"; @@ -186,82 +103,6 @@ EOT } # -# Finish off byterun.c -# -print BYTERUN_C <<'EOT'; - default: - Perl_croak(aTHX_ "Illegal bytecode instruction %d\n", insn); - /* NOTREACHED */ - } - } - return 0; -} - -/* ex: set ro: */ -EOT - -# -# Write the instruction and optype enum constants into byterun.h -# -open(BYTERUN_H, ">ext/ByteLoader/byterun.h") or die "ext/ByteLoader/byterun.h: $!"; -binmode BYTERUN_H; -print BYTERUN_H $c_header, <<'EOT'; -struct byteloader_fdata { - SV *datasv; - int next_out; - int idx; -}; - -struct byteloader_pv_state { - char *pvx; - XPV xpv; -}; - -struct byteloader_state { - struct byteloader_fdata *bs_fdata; - SV *bs_sv; - void **bs_obj_list; - int bs_obj_list_fill; - int bs_ix; - struct byteloader_pv_state bs_pv; - int bs_iv_overflows; -}; - -int bl_getc(struct byteloader_fdata *); -int bl_read(struct byteloader_fdata *, char *, size_t, size_t); -extern int byterun(pTHX_ struct byteloader_state *); - -enum { -EOT - -my $add_enum_value = 0; -my $max_insn; -for $i ( 0 .. $#insn_name ) { - $insn = uc($insn_name[$i]); - if (defined($insn)) { - $max_insn = $i; - if ($add_enum_value) { - print BYTERUN_H " INSN_$insn = $i,\t\t\t/* $i */\n"; - $add_enum_value = 0; - } else { - print BYTERUN_H " INSN_$insn,\t\t\t/* $i */\n"; - } - } else { - $add_enum_value = 1; - } -} - -print BYTERUN_H " MAX_INSN = $max_insn\n};\n"; - -print BYTERUN_H "\nenum {\n"; -for ($i = 0; $i < @optype - 1; $i++) { - printf BYTERUN_H " OPt_%s,\t\t/* %d */\n", $optype[$i], $i; -} -printf BYTERUN_H " OPt_%s\t\t/* %d */\n};\n\n", $optype[$i], $i; - -print BYTERUN_H "/* ex: set ro: */\n"; - -# # Finish off insn_data and create array initialisers in Asmdata.pm # print ASMDATA_PM <<'EOT'; @@ -279,7 +120,7 @@ __END__ =head1 NAME -B::Asmdata - Autogenerated data about Perl ops, used to generate bytecode +B::Asmdata - Autogenerated data about Perl ops =head1 SYNOPSIS @@ -342,8 +183,6 @@ EOT close ASMDATA_PM or die "Error closing ASMDATA_PM: $!"; -close BYTERUN_H or die "Error closing BYTERUN_H: $!"; -close BYTERUN_C or die "Error closing BYTERUN_C: $!"; __END__ # First set instruction ord("#") to read comment to end-of-line (sneaky) @@ -369,15 +208,15 @@ stop PL_op U32 s stpv bstate->bs_pv.pvx U32 x ldspecsv bstate->bs_sv U8 x ldspecsvx bstate->bs_sv U8 x -newsv bstate->bs_sv U8 x -newsvx bstate->bs_sv U32 x +newsv bstate->bs_sv svtype x +newsvx bstate->bs_sv svtype x newop PL_op U8 x newopx PL_op U16 x newopn PL_op U8 x newpv none PV pv_cur bstate->bs_pv.xpv.xpv_cur STRLEN pv_free bstate->bs_pv.pvx none x -sv_upgrade bstate->bs_sv U8 x +sv_upgrade bstate->bs_sv svtype x sv_refcnt SvREFCNT(bstate->bs_sv) U32 sv_refcnt_add SvREFCNT(bstate->bs_sv) I32 x sv_flags SvFLAGS(bstate->bs_sv) U32 @@ -444,7 +283,7 @@ gp_refcnt_add GvREFCNT(bstate->bs_sv) I32 x gp_av *(SV**)&GvAV(bstate->bs_sv) svindex gp_hv *(SV**)&GvHV(bstate->bs_sv) svindex gp_cv *(SV**)&GvCV(bstate->bs_sv) svindex -gp_file GvFILE(bstate->bs_sv) pvindex +gp_file bstate->bs_sv pvindex x gp_io *(SV**)&GvIOp(bstate->bs_sv) svindex gp_form *(SV**)&GvFORM(bstate->bs_sv) svindex gp_cvgen GvCVGEN(bstate->bs_sv) U32 @@ -493,10 +332,9 @@ cop_stash cCOP svindex x cop_filegv cCOP svindex x #endif cop_seq cCOP->cop_seq U32 -cop_arybase cCOP->cop_arybase I32 +cop_arybase cCOP I32 x cop_line cCOP->cop_line line_t -cop_io cCOP->cop_io svindex -cop_warnings cCOP->cop_warnings svindex +cop_warnings cCOP svindex x main_start PL_main_start opindex main_root PL_main_root opindex main_cv *(SV**)&PL_main_cv svindex