AVX: implement all the convert instructions...
[nasm.git] / insns.pl
blobfbdb7999eb84f42da4502e87118a904a411b6afd
1 #!/usr/bin/perl
3 # insns.pl produce insnsa.c, insnsd.c, insnsi.h, insnsn.c from insns.dat
5 # The Netwide Assembler is copyright (C) 1996 Simon Tatham and
6 # Julian Hall. All rights reserved. The software is
7 # redistributable under the license given in the file "LICENSE"
8 # distributed in the NASM archive.
10 # Opcode prefixes which need their own opcode tables
11 # LONGER PREFIXES FIRST!
12 @disasm_prefixes = qw(0F24 0F25 0F38 0F3A 0F7A 0FA6 0FA7 0F);
14 # This should match MAX_OPERANDS from nasm.h
15 $MAX_OPERANDS = 5;
17 print STDERR "Reading insns.dat...\n";
19 @args = ();
20 undef $output;
21 foreach $arg ( @ARGV ) {
22 if ( $arg =~ /^\-/ ) {
23 if ( $arg =~ /^\-([abdin])$/ ) {
24 $output = $1;
25 } else {
26 die "$0: Unknown option: ${arg}\n";
28 } else {
29 push (@args, $arg);
33 $fname = "insns.dat" unless $fname = $args[0];
34 open (F, $fname) || die "unable to open $fname";
36 %dinstables = ();
37 @bytecode_list = ();
39 $line = 0;
40 $insns = 0;
41 while (<F>) {
42 $line++;
43 chomp;
44 next if ( /^\s*(\;.*|)$/ ); # comments or blank lines
46 unless (/^\s*(\S+)\s+(\S+)\s+(\S+|\[.*\])\s+(\S+)\s*$/) {
47 warn "line $line does not contain four fields\n";
48 next;
50 @fields = ($1, $2, $3, $4);
51 ($formatted, $nd) = format_insn(@fields);
52 if ($formatted) {
53 $insns++;
54 $aname = "aa_$fields[0]";
55 push @$aname, $formatted;
57 if ( $fields[0] =~ /cc$/ ) {
58 # Conditional instruction
59 $k_opcodes_cc{$fields[0]}++;
60 } else {
61 # Unconditional instruction
62 $k_opcodes{$fields[0]}++;
64 if ($formatted && !$nd) {
65 push @big, $formatted;
66 my @sseq = startseq($fields[2]);
67 foreach $i (@sseq) {
68 if (!defined($dinstables{$i})) {
69 $dinstables{$i} = [];
71 push(@{$dinstables{$i}}, $#big);
76 close F;
79 # Generate the bytecode array. At this point, @bytecode_list contains
80 # the full set of bytecodes.
83 # Sort by descending length
84 @bytecode_list = sort { scalar(@$b) <=> scalar(@$a) } @bytecode_list;
85 @bytecode_array = ();
86 %bytecode_pos = ();
87 $bytecode_next = 0;
88 foreach $bl (@bytecode_list) {
89 my $h = hexstr(@$bl);
90 next if (defined($bytecode_pos{$h}));
92 push(@bytecode_array, $bl);
93 while ($h ne '') {
94 $bytecode_pos{$h} = $bytecode_next;
95 $h = substr($h, 2);
96 $bytecode_next++;
99 undef @bytecode_list;
101 @opcodes = sort keys(%k_opcodes);
102 @opcodes_cc = sort keys(%k_opcodes_cc);
104 if ( !defined($output) || $output eq 'b') {
105 print STDERR "Writing insnsb.c...\n";
107 open B, ">insnsb.c";
109 print B "/* This file auto-generated from insns.dat by insns.pl" .
110 " - don't edit it */\n\n";
112 print B "#include \"nasm.h\"\n";
113 print B "#include \"insns.h\"\n\n";
115 print B "const uint8_t nasm_bytecodes[$bytecode_next] = {\n";
117 $p = 0;
118 foreach $bl (@bytecode_array) {
119 printf B " /* %5d */ ", $p;
120 foreach $d (@$bl) {
121 printf B "%#o,", $d;
122 $p++;
124 printf B "\n";
126 print B "};\n";
128 close B;
131 if ( !defined($output) || $output eq 'a' ) {
132 print STDERR "Writing insnsa.c...\n";
134 open A, ">insnsa.c";
136 print A "/* This file auto-generated from insns.dat by insns.pl" .
137 " - don't edit it */\n\n";
139 print A "#include \"nasm.h\"\n";
140 print A "#include \"insns.h\"\n\n";
142 foreach $i (@opcodes, @opcodes_cc) {
143 print A "static const struct itemplate instrux_${i}[] = {\n";
144 $aname = "aa_$i";
145 foreach $j (@$aname) {
146 print A " ", codesubst($j), "\n";
148 print A " ITEMPLATE_END\n};\n\n";
150 print A "const struct itemplate * const nasm_instructions[] = {\n";
151 foreach $i (@opcodes, @opcodes_cc) {
152 print A " instrux_${i},\n";
154 print A "};\n";
156 close A;
159 if ( !defined($output) || $output eq 'd' ) {
160 print STDERR "Writing insnsd.c...\n";
162 open D, ">insnsd.c";
164 print D "/* This file auto-generated from insns.dat by insns.pl" .
165 " - don't edit it */\n\n";
167 print D "#include \"nasm.h\"\n";
168 print D "#include \"insns.h\"\n\n";
170 print D "static const struct itemplate instrux[] = {\n";
171 $n = 0;
172 foreach $j (@big) {
173 printf D " /* %4d */ %s\n", $n++, codesubst($j);
175 print D "};\n";
177 foreach $h (sort(keys(%dinstables))) {
178 print D "\nstatic const struct itemplate * const itable_${h}[] = {\n";
179 foreach $j (@{$dinstables{$h}}) {
180 print D " instrux + $j,\n";
182 print D "};\n";
185 foreach $h (@disasm_prefixes, '') {
186 $is_prefix{$h} = 1;
187 print D "\n";
188 print D "static " unless ($h eq '');
189 print D "const struct disasm_index ";
190 print D ($h eq '') ? 'itable' : "itable_$h";
191 print D "[256] = {\n";
192 for ($c = 0; $c < 256; $c++) {
193 $nn = sprintf("%s%02X", $h, $c);
194 if ($is_prefix{$nn}) {
195 die "$0: ambiguous decoding of $nn\n"
196 if (defined($dinstables{$nn}));
197 printf D " { itable_%s, -1 },\n", $nn;
198 } elsif (defined($dinstables{$nn})) {
199 printf D " { itable_%s, %u },\n",
200 $nn, scalar(@{$dinstables{$nn}});
201 } else {
202 printf D " { NULL, 0 },\n";
205 print D "};\n";
208 close D;
211 if ( !defined($output) || $output eq 'i' ) {
212 print STDERR "Writing insnsi.h...\n";
214 open I, ">insnsi.h";
216 print I "/* This file is auto-generated from insns.dat by insns.pl" .
217 " - don't edit it */\n\n";
218 print I "/* This file in included by nasm.h */\n\n";
220 print I "/* Instruction names */\n\n";
221 print I "#ifndef NASM_INSNSI_H\n";
222 print I "#define NASM_INSNSI_H 1\n\n";
223 print I "enum opcode {\n";
224 $maxlen = 0;
225 foreach $i (@opcodes, @opcodes_cc) {
226 print I "\tI_${i},\n";
227 $len = length($i);
228 $len++ if ( $i =~ /cc$/ ); # Condition codes can be 3 characters long
229 $maxlen = $len if ( $len > $maxlen );
231 print I "\tI_none = -1\n";
232 print I "\n};\n\n";
233 print I "#define MAX_INSLEN ", $maxlen, "\n";
234 print I "#define FIRST_COND_OPCODE I_", $opcodes_cc[0], "\n\n";
235 print I "#endif /* NASM_INSNSI_H */\n";
237 close I;
240 if ( !defined($output) || $output eq 'n' ) {
241 print STDERR "Writing insnsn.c...\n";
243 open N, ">insnsn.c";
245 print N "/* This file is auto-generated from insns.dat by insns.pl" .
246 " - don't edit it */\n\n";
247 print N "#include \"tables.h\"\n\n";
249 print N "const char * const nasm_insn_names[] = {";
250 $first = 1;
251 foreach $i (@opcodes) {
252 print N "," if ( !$first );
253 $first = 0;
254 $ilower = $i;
255 $ilower =~ tr/A-Z/a-z/; # Change to lower case (Perl 4 compatible)
256 print N "\n\t\"${ilower}\"";
258 print N "\n};\n\n";
259 print N "/* Conditional instructions */\n";
260 print N "const char * const nasm_cond_insn_names[] = {";
261 $first = 1;
262 foreach $i (@opcodes_cc) {
263 print N "," if ( !$first );
264 $first = 0;
265 $ilower = $i;
266 $ilower =~ s/cc$//; # Skip cc suffix
267 $ilower =~ tr/A-Z/a-z/; # Change to lower case (Perl 4 compatible)
268 print N "\n\t\"${ilower}\"";
271 print N "\n};\n\n";
272 print N "/* and the corresponding opcodes */\n";
273 print N "const enum opcode nasm_cond_insn_opcodes[] = {";
274 $first = 1;
275 foreach $i (@opcodes_cc) {
276 print N "," if ( !$first );
277 $first = 0;
278 print N "\n\tI_$i";
281 print N "\n};\n";
282 close N;
285 printf STDERR "Done: %d instructions\n", $insns;
287 sub format_insn(@) {
288 my ($opcode, $operands, $codes, $flags) = @_;
289 my $num, $nd = 0;
290 my @bytecode;
292 return (undef, undef) if $operands eq "ignore";
294 # format the operands
295 $operands =~ s/:/|colon,/g;
296 $operands =~ s/mem(\d+)/mem|bits$1/g;
297 $operands =~ s/mem/memory/g;
298 $operands =~ s/memory_offs/mem_offs/g;
299 $operands =~ s/imm(\d+)/imm|bits$1/g;
300 $operands =~ s/imm/immediate/g;
301 $operands =~ s/rm(\d+)/rm_gpr|bits$1/g;
302 $operands =~ s/(mmx|xmm|ymm)rm/rm_$1/g;
303 $operands =~ s/\=([0-9]+)/same_as|$1/g;
304 if ($operands eq 'void') {
305 @ops = ();
306 } else {
307 @ops = split(/\,/, $operands);
309 $num = scalar(@ops);
310 while (scalar(@ops) < $MAX_OPERANDS) {
311 push(@ops, '0');
313 $operands = join(',', @ops);
314 $operands =~ tr/a-z/A-Z/;
316 # format the flags
317 $flags =~ s/,/|IF_/g;
318 $flags =~ s/(\|IF_ND|IF_ND\|)//, $nd = 1 if $flags =~ /IF_ND/;
319 $flags = "IF_" . $flags;
321 @bytecode = (decodify($codes), 0);
322 push(@bytecode_list, [@bytecode]);
323 $codes = hexstr(@bytecode);
325 ("{I_$opcode, $num, {$operands}, \@\@CODES-$codes\@\@, $flags},", $nd);
329 # Look for @@CODES-xxx@@ sequences and replace them with the appropriate
330 # offset into nasm_bytecodes
332 sub codesubst($) {
333 my($s) = @_;
334 my $n;
336 while ($s =~ /\@\@CODES-([0-9A-F]+)\@\@/) {
337 my $pos = $bytecode_pos{$1};
338 if (!defined($pos)) {
339 die "$0: no position assigned to byte code $1\n";
341 $s = $` . "nasm_bytecodes+${pos}" . "$'";
343 return $s;
346 sub addprefix ($@) {
347 my ($prefix, @list) = @_;
348 my $x;
349 my @l = ();
351 foreach $x (@list) {
352 push(@l, sprintf("%s%02X", $prefix, $x));
355 return @l;
359 # Turn a code string into a sequence of bytes
361 sub decodify($) {
362 # Although these are C-syntax strings, by convention they should have
363 # only octal escapes (for directives) and hexadecimal escapes
364 # (for verbatim bytes)
365 my($codestr) = @_;
367 if ($codestr =~ /^\s*\[([^\]]*)\]\s*$/) {
368 return byte_code_compile($1);
371 my $c = $codestr;
372 my @codes = ();
374 while ($c ne '') {
375 if ($c =~ /^\\x([0-9a-f]+)(.*)$/i) {
376 push(@codes, hex $1);
377 $c = $2;
378 next;
379 } elsif ($c =~ /^\\([0-7]{1,3})(.*)$/) {
380 push(@codes, oct $1);
381 $c = $2;
382 next;
383 } else {
384 die "$0: unknown code format in \"$codestr\"\n";
388 return @codes;
391 # Turn a numeric list into a hex string
392 sub hexstr(@) {
393 my $s = '';
394 my $c;
396 foreach $c (@_) {
397 $s .= sprintf("%02X", $c);
399 return $s;
402 # Here we determine the range of possible starting bytes for a given
403 # instruction. We need only consider the codes:
404 # \1 \2 \3 mean literal bytes, of course
405 # \4 \5 \6 \7 mean PUSH/POP of segment registers: special case
406 # \1[0123] mean byte plus register value
407 # \330 means byte plus condition code
408 # \0 or \340 mean give up and return empty set
409 sub startseq($) {
410 my ($codestr) = @_;
411 my $word, @range;
412 my @codes = ();
413 my $c = $codestr;
414 my $c0, $c1, $i;
415 my $prefix = '';
417 @codes = decodify($codestr);
419 while ($c0 = shift(@codes)) {
420 $c1 = $codes[0];
421 if ($c0 == 01 || $c0 == 02 || $c0 == 03) {
422 # Fixed byte string
423 my $fbs = $prefix;
424 while (1) {
425 if ($c0 == 01 || $c0 == 02 || $c0 == 03) {
426 while ($c0--) {
427 $fbs .= sprintf("%02X", shift(@codes));
429 } else {
430 last;
432 $c0 = shift(@codes);
435 foreach $pfx (@disasm_prefixes) {
436 if (substr($fbs, 0, length($pfx)) eq $pfx) {
437 $prefix = $pfx;
438 $fbs = substr($fbs, length($pfx));
439 last;
443 if ($fbs ne '') {
444 return ($prefix.substr($fbs,0,2));
447 unshift(@codes, $c0);
448 } elsif ($c0 == 04) {
449 return addprefix($prefix, 0x07, 0x17, 0x1F);
450 } elsif ($c0 == 05) {
451 return addprefix($prefix, 0xA1, 0xA9);
452 } elsif ($c0 == 06) {
453 return addprefix($prefix, 0x06, 0x0E, 0x16, 0x1E);
454 } elsif ($c0 == 07) {
455 return addprefix($prefix, 0xA0, 0xA8);
456 } elsif ($c0 >= 010 && $c0 <= 013) {
457 return addprefix($prefix, $c1..($c1+7));
458 } elsif (($c0 & ~013) == 0144) {
459 return addprefix($prefix, $c1, $c1|2);
460 } elsif ($c0 == 0330) {
461 return addprefix($prefix, $c1..($c1+15));
462 } elsif ($c0 == 0 || $c0 == 0340) {
463 return $prefix;
464 } elsif (($c0 & ~3) == 0260 || $c0 == 270) {
465 shift(@codes);
466 shift(@codes);
467 } elsif ($c0 == 0172) {
468 shift(@codes);
469 } else {
470 # We really need to be able to distinguish "forbidden"
471 # and "ignorable" codes here
474 return $prefix;
478 # This function takes a series of byte codes in a format which is more
479 # typical of the Intel documentation, and encode it.
481 # The format looks like:
483 # [operands: opcodes]
485 # The operands word lists the order of the operands:
487 # r = register field in the modr/m
488 # m = modr/m
489 # v = VEX "v" field
490 # d = DREX "dst" field
491 # i = immediate
492 # s = register field of is4/imz2 field
494 # For an operand that should be filled into more than one field,
495 # enter it as e.g. "r+v".
497 sub byte_code_compile($) {
498 my($str) = @_;
499 my $opr;
500 my $opc;
501 my @codes = ();
502 my $litix = undef;
503 my %oppos = ();
504 my $i;
505 my $op, $oq;
507 if ($str =~ /^(\S*)\:\s*(.*\S)\s*$/) {
508 $opr = "\L$1";
509 $opc = "\L$2";
510 } else {
511 $opr = '';
512 $opc = "\L$str";
515 my $op = 0;
516 for ($i = 0; $i < length($opr); $i++) {
517 my $c = substr($opr,$i,1);
518 if ($c eq '+') {
519 $op--;
520 } else {
521 $oppos{$c} = $op++;
525 $prefix_ok = 1;
526 foreach $op (split(/\s*(?:\s|(?=[\/\\]))/, $opc)) {
527 if ($op eq 'o16') {
528 push(@codes, 0320);
529 } elsif ($op eq 'o32') {
530 push(@codes, 0321);
531 } elsif ($op eq 'o64') { # 64-bit operand size requiring REX.W
532 push(@codes, 0324);
533 } elsif ($op eq 'o64i') { # Implied 64-bit operand size (no REX.W)
534 push(@codes, 0323);
535 } elsif ($op eq 'a16') {
536 push(@codes, 0310);
537 } elsif ($op eq 'a32') {
538 push(@codes, 0311);
539 } elsif ($op eq 'a64') {
540 push(@codes, 0313);
541 } elsif ($op eq '!osp') {
542 push(@codes, 0364);
543 } elsif ($op eq '!asp') {
544 push(@codes, 0365);
545 } elsif ($op eq 'rex.l') {
546 push(@codes, 0334);
547 } elsif ($op eq 'repe') {
548 push(@codes, 0335);
549 } elsif ($prefix_ok && $op =~ /^(66|f2|f3|np)$/) {
550 # 66/F2/F3 prefix used as an opcode extension, or np = no prefix
551 if ($op eq '66') {
552 push(@codes, 0361);
553 } elsif ($op eq 'f2') {
554 push(@codes, 0362);
555 } elsif ($op eq 'f3') {
556 push(@codes, 0363);
557 } else {
558 push(@codes, 0360);
560 } elsif ($op =~ /^[0-9a-f]{2}$/) {
561 if (defined($litix) && $litix+$codes[$litix]+1 == scalar @codes) {
562 $codes[$litix]++;
563 push(@codes, hex $op);
564 } else {
565 $litix = scalar(@codes);
566 push(@codes, 01, hex $op);
568 $prefix_ok = 0;
569 } elsif ($op eq '/r') {
570 if (!defined($oppos{'r'}) || !defined($oppos{'m'})) {
571 die "$0: $line: $op requires r and m operands\n";
573 push(@codes, 0100 + ($oppos{'m'} << 3) + $oppos{'r'});
574 $prefix_ok = 0;
575 } elsif ($op =~ m:^/([0-7])$:) {
576 if (!defined($oppos{'m'})) {
577 die "$0: $line: $op requires m operand\n";
579 push(@codes, 0200 + ($oppos{'m'} << 3) + $1);
580 $prefix_ok = 0;
581 } elsif ($op =~ /^vex(|\..*)$/) {
582 my ($m,$w,$l,$p) = (undef,2,undef,0);
583 foreach $oq (split(/\./, $op)) {
584 if ($oq eq 'vex') {
585 # prefix
586 } elsif ($oq eq '128' || $oq eq 'l0') {
587 $l = 0;
588 } elsif ($oq eq '256' || $oq eq 'l1') {
589 $l = 1;
590 } elsif ($oq eq 'w0') {
591 $w = 0;
592 } elsif ($oq eq 'w1') {
593 $w = 1;
594 } elsif ($oq eq '66') {
595 $p = 1;
596 } elsif ($oq eq 'f3') {
597 $p = 2;
598 } elsif ($oq eq 'f2') {
599 $p = 3;
600 } elsif ($oq eq '0f') {
601 $m = 1;
602 } elsif ($oq eq '0f38') {
603 $m = 2;
604 } elsif ($oq eq '0f3a') {
605 $m = 3;
606 } elsif ($oq =~ /^m([0-9]+)$/) {
607 $m = $1+0;
608 } elsif ($oq eq 'nds' || $oq eq 'ndd') {
609 if (!defined($oppos{'v'})) {
610 die "$0: $line: vex.$oq without 'v' operand\n";
612 } else {
613 die "$0: $line: undefined VEX subcode: $oq\n";
616 if (!defined($m) || !defined($w) || !defined($l) || !defined($p)) {
617 die "$0: $line: missing fields in VEX specification\n";
619 push(@codes, defined($oppos{'v'}) ? 0260+$oppos{'v'} : 0270,
620 $m, ($w << 3)+($l << 2)+$p);
621 $prefix_ok = 0;
622 } elsif ($op =~ /^drex(|..*)$/) {
623 my ($oc0) = (0);
624 foreach $oq (split(/\./, $op)) {
625 if ($oq eq 'drex') {
626 #prefix
627 } elsif ($oq eq 'oc0') {
628 $oc0 = 1;
629 } else {
630 die "$0: $line: undefined DREX subcode: $oq\n";
633 if (!defined($oppos{'d'})) {
634 die "$0: $line: DREX without a 'd' operand\n";
636 push(@codes, 0160+$oppos{'d'}+($oc0 ? 4 : 0));
637 } elsif ($op =~ /^(ib\,s|ib|ib\,w|iw|iwd|id|iwdq|rel|rel8|rel16|rel32|iq|seg|ibw|ibd|ibd,s)$/) {
638 if (!defined($oppos{'i'})) {
639 die "$0: $op without 'i' operand\n";
641 if ($op eq 'ib,s') { # Signed imm8
642 push(@codes, 014+$oppos{'i'});
643 } elsif ($op eq 'ib') { # imm8
644 push(@codes, 020+$oppos{'i'});
645 } elsif ($op eq 'ib,u') { # Unsigned imm8
646 push(@codes, 024+$oppos{'i'});
647 } elsif ($op eq 'iw') { # imm16
648 push(@codes, 030+$oppos{'i'});
649 } elsif ($op eq 'iwd') { # imm16 or imm32, depending on opsize
650 push(@codes, 034+$oppos{'i'});
651 } elsif ($op eq 'id') { # imm32
652 push(@codes, 040+$oppos{'i'});
653 } elsif ($op eq 'iwdq') { # imm16/32/64, depending on opsize
654 push(@codes, 044+$oppos{'i'});
655 } elsif ($op eq 'rel8') {
656 push(@codes, 050+$oppos{'i'});
657 } elsif ($op eq 'iq') {
658 push(@codes, 054+$oppos{'i'});
659 } elsif ($op eq 'rel16') {
660 push(@codes, 060+$oppos{'i'});
661 } elsif ($op eq 'rel') { # 16 or 32 bit relative operand
662 push(@codes, 064+$oppos{'i'});
663 } elsif ($op eq 'rel32') {
664 push(@codes, 070+$oppos{'i'});
665 } elsif ($op eq 'seg') {
666 push(@codes, 074+$oppos{'i'});
667 } elsif ($op eq 'ibw') { # imm16 that can be bytified
668 if (!defined($s_pos)) {
669 die "$0: $line: $op without a +s byte\n";
671 $codes[$s_pos] += 0144;
672 push(@codes, 0140+$oppos{'i'});
673 } elsif ($op eq 'ibd') { # imm32 that can be bytified
674 if (!defined($s_pos)) {
675 die "$0: $line: $op without a +s byte\n";
677 $codes[$s_pos] += 0154;
678 push(@codes, 0150+$oppos{'i'});
679 } elsif ($op eq 'ibd,s') {
680 # imm32 that can be bytified, sign extended to 64 bits
681 if (!defined($s_pos)) {
682 die "$0: $line: $op without a +s byte\n";
684 $codes[$s_pos] += 0154;
685 push(@codes, 0250+$oppos{'i'});
687 $prefix_ok = 0;
688 } elsif ($op eq '/is4') {
689 if (!defined($oppos{'i'} || !defined($oppos{'s'}))) {
690 die "$0: $line: $op without 'i' and 's' operands\n";
692 push(@codes, 0172, ($oppos{'s'} << 3)+$oppos{'i'});
693 $prefix_ok = 0;
694 } elsif ($op =~ /^\/is4\=([0-9]+)$/) {
695 my $imm = $1;
696 if (!defined($oppos{'s'})) {
697 die "$0: $line: $op without 's' operand\n";
699 if ($imm < 0 || $imm > 15) {
700 die "$0: $line: invalid imm4 value for $op: $imm\n";
702 push(@codes, 0173, ($oppos{'s'} << 4) + $imm);
703 $prefix_ok = 0;
704 } elsif ($op =~ /^([0-9a-f]{2})\+s$/) {
705 if (!defined($oppos{'i'})) {
706 die "$0: $op without 'i' operand\n";
708 $s_pos = scalar @codes;
709 push(@codes, $oppos{'i'}, hex $1);
710 $prefix_ok = 0;
711 } elsif ($op =~ /^([0-9a-f]{2})\+c$/) {
712 push(@codes, 0330, hex $1);
713 $prefix_ok = 0;
714 } elsif ($op =~ /^\\([0-7]+|x[0-9a-f]{2})$/) {
715 # Escape to enter literal bytecodes
716 push(@codes, oct $1);
717 } else {
718 die "$0: unknown operation: $op\n";
722 return @codes;