Thread-awareness from Doug MacEachern.
[p5sagit/p5-mst-13.2.git] / ext / B / O.pm
CommitLineData
a798dbf2 1package O;
059a8bb7 2use B qw(minus_c save_BEGINs);
a798dbf2 3use Carp;
4
5sub import {
6 my ($class, $backend, @options) = @_;
7 eval "use B::$backend ()";
8 if ($@) {
9 croak "use of backend $backend failed: $@";
10 }
11 my $compilesub = &{"B::${backend}::compile"}(@options);
12 if (ref($compilesub) eq "CODE") {
13 minus_c;
059a8bb7 14 save_BEGINs;
7d30b5c4 15 eval 'CHECK { &$compilesub() }';
a798dbf2 16 } else {
17 die $compilesub;
18 }
19}
20
211;
22
7f20e9dd 23__END__
24
25=head1 NAME
26
27O - Generic interface to Perl Compiler backends
28
29=head1 SYNOPSIS
30
31 perl -MO=Backend[,OPTIONS] foo.pl
32
33=head1 DESCRIPTION
34
1a52ab62 35This is the module that is used as a frontend to the Perl Compiler.
36
37=head1 CONVENTIONS
38
39Most compiler backends use the following conventions: OPTIONS
40consists of a comma-separated list of words (no white-space).
41The C<-v> option usually puts the backend into verbose mode.
42The C<-ofile> option generates output to B<file> instead of
43stdout. The C<-D> option followed by various letters turns on
44various internal debugging flags. See the documentation for the
45desired backend (named C<B::Backend> for the example above) to
46find out about that backend.
47
48=head1 IMPLEMENTATION
49
50This section is only necessary for those who want to write a
51compiler backend module that can be used via this module.
52
53The command-line mentioned in the SYNOPSIS section corresponds to
54the Perl code
55
56 use O ("Backend", OPTIONS);
57
58The C<import> function which that calls loads in the appropriate
59C<B::Backend> module and calls the C<compile> function in that
60package, passing it OPTIONS. That function is expected to return
61a sub reference which we'll call CALLBACK. Next, the "compile-only"
62flag is switched on (equivalent to the command-line option C<-c>)
7d30b5c4 63and a CHECK block is registered which calls CALLBACK. Thus the main
1a52ab62 64Perl program mentioned on the command-line is read in, parsed and
65compiled into internal syntax tree form. Since the C<-c> flag is
66set, the program does not start running (excepting BEGIN blocks of
67course) but the CALLBACK function registered by the compiler
68backend is called.
69
70In summary, a compiler backend module should be called "B::Foo"
71for some foo and live in the appropriate directory for that name.
72It should define a function called C<compile>. When the user types
73
74 perl -MO=Foo,OPTIONS foo.pl
75
76that function is called and is passed those OPTIONS (split on
77commas). It should return a sub ref to the main compilation function.
78After the user's program is loaded and parsed, that returned sub ref
79is invoked which can then go ahead and do the compilation, usually by
80making use of the C<B> module's functionality.
7f20e9dd 81
82=head1 AUTHOR
83
84Malcolm Beattie, C<mbeattie@sable.ox.ac.uk>
85
86=cut