Initial commit of OpenSPARC T2 architecture model.
[OpenSPARC-T2-SAM] / sam-t2 / devtools / amd64 / lib / perl5 / 5.8.8 / i86pc-solaris-64-ld / ByteLoader.pm
CommitLineData
920dae64
AT
1package ByteLoader;
2
3use XSLoader ();
4
5our $VERSION = '0.06';
6
7XSLoader::load 'ByteLoader', $VERSION;
8
91;
10__END__
11
12=head1 NAME
13
14ByteLoader - load byte compiled perl code
15
16=head1 SYNOPSIS
17
18 use ByteLoader 0.06;
19 <byte code>
20
21 or just
22
23 perl -MByteLoader bytecode_file
24
25=head1 DESCRIPTION
26
27This module is used to load byte compiled perl code as produced by
28C<perl -MO=Bytecode=...>. It uses the source filter mechanism to read
29the byte code and insert it into the compiled code at the appropriate point.
30
31=head1 AUTHOR
32
33Tom Hughes <tom@compton.nu> based on the ideas of Tim Bunce and others.
34Many changes by Enache Adrian <enache@rdslink.ro> 2003 a.d.
35
36=head1 SEE ALSO
37
38perl(1).
39
40=cut