3 U32 => [qw(PADOFFSET STRLEN)],
4 I32 => [qw(SSize_t long)],
5 U16 => [qw(OPCODE line_t short)],
7 objindex => [qw(svindex opindex)]
10 my @optype= qw(OP UNOP BINOP LOGOP CONDOP LISTOP PMOP SVOP GVOP PVOP LOOP COP);
12 # Nullsv *must* come first in the following so that the condition
13 # ($$sv == 0) can continue to be used to test (sv == Nullsv).
14 my @specialsv = qw(Nullsv &sv_undef &sv_yes &sv_no);
16 my (%alias_from, $from, $tos);
17 while (($from, $tos) = each %alias_to) {
18 map { $alias_from{$_} = $from } @$tos;
21 my $c_header = <<'EOT';
23 * Copyright (c) 1996 Malcolm Beattie
25 * You may distribute under the terms of either the GNU General Public
26 * License or the Artistic License, as specified in the README file.
30 * This file is autogenerated from bytecode.pl. Changes made here will be lost.
35 ($perl_header = $c_header) =~ s{[/ ]?\*/?}{#}g;
38 rename("byterun.c", "byterun.c.old");
41 rename("byterun.h", "byterun.h.old");
43 if (-f "Asmdata.pm") {
44 rename("Asmdata.pm", "Asmdata.pm.old");
48 # Start with boilerplate for Asmdata.pm
50 open(ASMDATA_PM, ">Asmdata.pm") or die "Asmdata.pm: $!";
51 print ASMDATA_PM $perl_header, <<'EOT';
55 @EXPORT_OK = qw(%insn_data @insn_name @optype @specialsv_name);
56 use vars qw(%insn_data @insn_name @optype @specialsv_name);
59 print ASMDATA_PM <<"EOT";
60 \@optype = qw(@optype);
61 \@specialsv_name = qw(@specialsv);
63 # XXX insn_data is initialised this way because with a large
64 # %insn_data = (foo => [...], bar => [...], ...) initialiser
65 # I get a hard-to-track-down stack underflow and segfault.
69 # Boilerplate for byterun.c
71 open(BYTERUN_C, ">byterun.c") or die "byterun.c: $!";
72 print BYTERUN_C $c_header, <<'EOT';
79 #ifdef INDIRECT_BGET_MACROS
85 #endif /* INDIRECT_BGET_MACROS */
88 while ((insn = FGETC()) != EOF) {
93 my (@insn_name, $insn_num, $insn, $lvalue, $argtype, $flags, $fundtype);
97 s/#.*//; # remove comments
99 if (/^%number\s+(.*)/) {
102 } elsif (/%enum\s+(.*?)\s+(.*)/) {
103 create_enum($1, $2); # must come before instructions
106 ($insn, $lvalue, $argtype, $flags) = split;
107 $insn_name[$insn_num] = $insn;
108 $fundtype = $alias_from{$argtype} || $argtype;
111 # Add the case statement and code for the bytecode interpreter in byterun.c
113 printf BYTERUN_C "\t case INSN_%s:\t\t/* %d */\n\t {\n",
114 uc($insn), $insn_num;
115 my $optarg = $argtype eq "none" ? "" : ", arg";
117 printf BYTERUN_C "\t\t$argtype arg;\n\t\tBGET_%s(arg);\n", $fundtype;
120 print BYTERUN_C "\t\tBSET_$insn($lvalue$optarg);\n";
121 } elsif ($flags =~ /s/) {
122 # Store instructions store to obj_list[arg]. "lvalue" field is rvalue.
123 print BYTERUN_C "\t\tBSET_OBJ_STORE($lvalue$optarg);\n";
125 elsif ($optarg && $lvalue ne "none") {
126 print BYTERUN_C "\t\t$lvalue = arg;\n";
128 print BYTERUN_C "\t\tbreak;\n\t }\n";
131 # Add the initialiser line for %insn_data in Asmdata.pm
133 print ASMDATA_PM <<"EOT";
134 \$insn_data{$insn} = [$insn_num, \\&PUT_$fundtype, "GET_$fundtype"];
137 # Find the next unused instruction number
138 do { $insn_num++ } while $insn_name[$insn_num];
142 # Finish off byterun.c
144 print BYTERUN_C <<'EOT';
146 croak("Illegal bytecode instruction %d\n", insn);
154 # Write the instruction and optype enum constants into byterun.h
156 open(BYTERUN_H, ">byterun.h") or die "byterun.h: $!";
157 print BYTERUN_H $c_header, <<'EOT';
158 #ifdef INDIRECT_BGET_MACROS
161 int (*fgetc)(void *);
162 int (*fread)(char *, size_t, size_t, void*);
163 void (*freadpv)(U32, void*);
165 void freadpv _((U32, void *));
166 void byterun _((struct bytestream));
168 void byterun _((FILE *));
169 #endif /* INDIRECT_BGET_MACROS */
175 my $add_enum_value = 0;
177 for ($i = 0; $i < @insn_name; $i++) {
178 $insn = uc($insn_name[$i]);
179 if (defined($insn)) {
181 if ($add_enum_value) {
182 print BYTERUN_H " INSN_$insn = $i,\t\t\t/* $i */\n";
185 print BYTERUN_H " INSN_$insn,\t\t\t/* $i */\n";
192 print BYTERUN_H " MAX_INSN = $max_insn\n};\n";
194 print BYTERUN_H "\nenum {\n";
195 for ($i = 0; $i < @optype - 1; $i++) {
196 printf BYTERUN_H " OPt_%s,\t\t/* %d */\n", $optype[$i], $i;
198 printf BYTERUN_H " OPt_%s\t\t/* %d */\n};\n\n", $optype[$i], $i;
199 print BYTERUN_H <<'EOT';
200 EXT int optype_size[]
204 for ($i = 0; $i < @optype - 1; $i++) {
205 printf BYTERUN_H " sizeof(%s),\n", $optype[$i], $i;
207 printf BYTERUN_H " sizeof(%s)\n}\n", $optype[$i], $i;
208 print BYTERUN_H <<'EOT';
214 printf BYTERUN_H <<'EOT', scalar(@specialsv);
215 EXT SV * specialsv_list[%d]
218 print BYTERUN_H "= { ", join(", ", @specialsv), " }\n";
219 print BYTERUN_H <<'EOT';
225 # Finish off insn_data and create array initialisers in Asmdata.pm
227 print ASMDATA_PM <<'EOT';
229 my ($insn_name, $insn_data);
230 while (($insn_name, $insn_data) = each %insn_data) {
231 $insn_name[$insn_data->[0]] = $insn_name;
234 @insn_name = map($_ || "unused", @insn_name);
240 # First set instruction ord("#") to read comment to end-of-line (sneaky)
243 # Then make ord("\n") into a no-op
246 # Now for the rest of the ordinary ones, beginning with \0 which is
247 # ret so that \0-terminated strings can be read properly as bytecode.
250 #opcode lvalue argtype flags
262 pv_cur pv.xpv_cur STRLEN
265 sv_refcnt SvREFCNT(sv) U32
266 sv_refcnt_add SvREFCNT(sv) I32 x
267 sv_flags SvFLAGS(sv) U32
273 xlv_targoff LvTARGOFF(sv) STRLEN
274 xlv_targlen LvTARGLEN(sv) STRLEN
275 xlv_targ LvTARG(sv) svindex
276 xlv_type LvTYPE(sv) char
277 xbm_useful BmUSEFUL(sv) I32
278 xbm_previous BmPREVIOUS(sv) U16
279 xbm_rare BmRARE(sv) U8
280 xfm_lines FmLINES(sv) I32
281 xio_lines IoLINES(sv) long
282 xio_page IoPAGE(sv) long
283 xio_page_len IoPAGE_LEN(sv) long
284 xio_lines_left IoLINES_LEFT(sv) long
285 xio_top_name IoTOP_NAME(sv) pvcontents
286 xio_top_gv *(SV**)&IoTOP_GV(sv) svindex
287 xio_fmt_name IoFMT_NAME(sv) pvcontents
288 xio_fmt_gv *(SV**)&IoFMT_GV(sv) svindex
289 xio_bottom_name IoBOTTOM_NAME(sv) pvcontents
290 xio_bottom_gv *(SV**)&IoBOTTOM_GV(sv) svindex
291 xio_subprocess IoSUBPROCESS(sv) short
292 xio_type IoTYPE(sv) char
293 xio_flags IoFLAGS(sv) char
294 xcv_stash *(SV**)&CvSTASH(sv) svindex
295 xcv_start CvSTART(sv) opindex
296 xcv_root CvROOT(sv) opindex
297 xcv_gv *(SV**)&CvGV(sv) svindex
298 xcv_filegv *(SV**)&CvFILEGV(sv) svindex
299 xcv_depth CvDEPTH(sv) long
300 xcv_padlist *(SV**)&CvPADLIST(sv) svindex
301 xcv_outside *(SV**)&CvOUTSIDE(sv) svindex
302 xcv_flags CvFLAGS(sv) U8
303 av_extend sv SSize_t x
305 xav_fill AvFILL(sv) SSize_t
306 xav_max AvMAX(sv) SSize_t
307 xav_flags AvFLAGS(sv) U8
308 xhv_riter HvRITER(sv) I32
309 xhv_name HvNAME(sv) pvcontents
310 hv_store sv svindex x
312 mg_obj SvMAGIC(sv)->mg_obj svindex
313 mg_private SvMAGIC(sv)->mg_private U16
314 mg_flags SvMAGIC(sv)->mg_flags U8
315 mg_pv SvMAGIC(sv) pvcontents x
316 xmg_stash *(SV**)&SvSTASH(sv) svindex
317 gv_fetchpv sv strconst x
318 gv_stashpv sv strconst x
319 gp_sv GvSV(sv) svindex
320 gp_refcnt GvREFCNT(sv) U32
321 gp_refcnt_add GvREFCNT(sv) I32 x
322 gp_av *(SV**)&GvAV(sv) svindex
323 gp_hv *(SV**)&GvHV(sv) svindex
324 gp_cv *(SV**)&GvCV(sv) svindex
325 gp_filegv *(SV**)&GvFILEGV(sv) svindex
326 gp_io *(SV**)&GvIOp(sv) svindex
327 gp_form *(SV**)&GvFORM(sv) svindex
328 gp_cvgen GvCVGEN(sv) U32
329 gp_line GvLINE(sv) line_t
330 gp_share sv svindex x
331 xgv_flags GvFLAGS(sv) U8
332 op_next op->op_next opindex
333 op_sibling op->op_sibling opindex
334 op_ppaddr op->op_ppaddr strconst x
335 op_targ op->op_targ PADOFFSET
337 op_seq op->op_seq U16
338 op_flags op->op_flags U8
339 op_private op->op_private U8
340 op_first cUNOP->op_first opindex
341 op_last cBINOP->op_last opindex
342 op_other cLOGOP->op_other opindex
343 op_true cCONDOP->op_true opindex
344 op_false cCONDOP->op_false opindex
345 op_children cLISTOP->op_children U32
346 op_pmreplroot cPMOP->op_pmreplroot opindex
347 op_pmreplrootgv *(SV**)&cPMOP->op_pmreplroot svindex
348 op_pmreplstart cPMOP->op_pmreplstart opindex
349 op_pmnext *(OP**)&cPMOP->op_pmnext opindex
350 pregcomp op pvcontents x
351 op_pmshort cPMOP->op_pmshort svindex
352 op_pmflags cPMOP->op_pmflags U16
353 op_pmpermflags cPMOP->op_pmpermflags U16
354 op_pmslen cPMOP->op_pmslen char
355 op_sv cSVOP->op_sv svindex
356 op_gv *(SV**)&cGVOP->op_gv svindex
357 op_pv cPVOP->op_pv pvcontents
358 op_pv_tr cPVOP->op_pv op_tr_array
359 op_redoop cLOOP->op_redoop opindex
360 op_nextop cLOOP->op_nextop opindex
361 op_lastop cLOOP->op_lastop opindex
362 cop_label cCOP->cop_label pvcontents
363 cop_stash *(SV**)&cCOP->cop_stash svindex
364 cop_filegv *(SV**)&cCOP->cop_filegv svindex
365 cop_seq cCOP->cop_seq U32
366 cop_arybase cCOP->cop_arybase I32
367 cop_line cCOP->cop_line line_t
368 main_start main_start opindex
369 main_root main_root opindex
370 curpad curpad svindex x