The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#! perl
use B::Assembler qw(assemble_fh);
use FileHandle;

=pod

=head1 NAME

assemble - Assemble Perl bytecode

=head1 SYNOPSIS

  assemble [-d] [bytecode.asm | -] [bytecode.plc]

=head1 DESCRIPTION

Compiles an ascii bytecode as produced by L<disassemble> to binary bytecode assembler.

C<bytecode> is a binary file wih either the magic 4 bytes 'PLBC'
at the start, or something like "#! /usr/bin/perl\n
use ByteLoader '0.07'", typically with the F<.plc> or F<.pmc> extension.

If filename is -, the input is read from STDIN and
you can still provide an output filename.

=head1 OPTION -d

Prints some debugging information.

=cut


my ($filename, $fh, $out);

if ($ARGV[0] eq "-d") {
    B::Assembler::debug(1);
    shift;
}

$out = \*STDOUT;

if (@ARGV == 0) {
    $fh = \*STDIN;
    $filename = "-";
} elsif (@ARGV == 1) {
    $filename = $ARGV[0];
    $fh = new FileHandle "<$filename";
} elsif (@ARGV == 2) {
    $filename = $ARGV[0];
    $fh = new FileHandle "<$filename";
    $out = new FileHandle ">$ARGV[1]";
} else {
    die "Usage: assemble [-d] [filename | -] [outfilename]\n";
}

binmode $out;
$SIG{__WARN__} = sub { warn "$filename:@_" };
$SIG{__DIE__} = sub { die "$filename: @_" };
assemble_fh($fh, sub { print $out @_ });