2004-06-02 21:21:26 +02:00
|
|
|
=pod
|
|
|
|
|
|
|
|
=head1 NAME
|
|
|
|
|
2005-04-24 19:46:58 +02:00
|
|
|
llvm-extract - extract a function from an LLVM module
|
2004-06-02 21:21:26 +02:00
|
|
|
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
|
2005-04-24 19:46:58 +02:00
|
|
|
B<llvm-extract> [I<options>] B<--func> I<function-name> [I<filename>]
|
2004-06-02 21:21:26 +02:00
|
|
|
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
|
2005-04-24 19:46:58 +02:00
|
|
|
The B<llvm-extract> command takes the name of a function and extracts it from
|
2007-07-09 13:24:05 +02:00
|
|
|
the specified LLVM bitcode file. It is primarily used as a debugging tool to
|
2004-06-02 21:21:26 +02:00
|
|
|
reduce test cases from larger programs that are triggering a bug.
|
|
|
|
|
2007-07-09 13:24:05 +02:00
|
|
|
In addition to extracting the bitcode of the specified function,
|
2005-04-24 19:46:58 +02:00
|
|
|
B<llvm-extract> will also remove unreachable global variables, prototypes, and
|
2004-06-02 21:21:26 +02:00
|
|
|
unused types.
|
|
|
|
|
2005-04-24 19:46:58 +02:00
|
|
|
The B<llvm-extract> command reads its input from standard input if filename is
|
2004-06-02 21:21:26 +02:00
|
|
|
omitted or if filename is -. The output is always written to standard output,
|
|
|
|
unless the B<-o> option is specified (see below).
|
|
|
|
|
|
|
|
=head1 OPTIONS
|
|
|
|
|
|
|
|
=over
|
|
|
|
|
|
|
|
=item B<-f>
|
|
|
|
|
2009-08-25 17:54:01 +02:00
|
|
|
Enable binary output on terminals. Normally, B<llvm-extract> will refuse to
|
|
|
|
write raw bitcode output if the output stream is a terminal. With this option,
|
|
|
|
B<llvm-extract> will write raw bitcode regardless of the output device.
|
2004-06-02 21:21:26 +02:00
|
|
|
|
|
|
|
=item B<--func> I<function-name>
|
|
|
|
|
2010-02-11 00:58:53 +01:00
|
|
|
Extract the function named I<function-name> from the LLVM bitcode. May be
|
|
|
|
specified multiple times to extract multiple functions at once.
|
|
|
|
|
|
|
|
=item B<--glob> I<global-name>
|
|
|
|
|
|
|
|
Extract the global variable named I<global-name> from the LLVM bitcode. May be
|
|
|
|
specified multiple times to extract multiple global variables at once.
|
2004-06-02 21:21:26 +02:00
|
|
|
|
2010-02-18 15:08:13 +01:00
|
|
|
=item B<-help>
|
2004-06-02 21:21:26 +02:00
|
|
|
|
|
|
|
Print a summary of command line options.
|
|
|
|
|
|
|
|
=item B<-o> I<filename>
|
|
|
|
|
|
|
|
Specify the output filename. If filename is "-" (the default), then
|
2005-04-24 19:46:58 +02:00
|
|
|
B<llvm-extract> sends its output to standard output.
|
2004-06-02 21:21:26 +02:00
|
|
|
|
2009-09-11 22:46:33 +02:00
|
|
|
=item B<-S>
|
|
|
|
|
|
|
|
Write output in LLVM intermediate language (instead of bitcode).
|
|
|
|
|
2004-06-02 21:21:26 +02:00
|
|
|
=back
|
|
|
|
|
|
|
|
=head1 EXIT STATUS
|
|
|
|
|
2005-04-24 19:46:58 +02:00
|
|
|
If B<llvm-extract> succeeds, it will exit with 0. Otherwise, if an error
|
2004-06-02 21:21:26 +02:00
|
|
|
occurs, it will exit with a non-zero value.
|
|
|
|
|
|
|
|
=head1 SEE ALSO
|
|
|
|
|
2004-07-02 18:06:19 +02:00
|
|
|
L<bugpoint|bugpoint>
|
2004-06-02 21:21:26 +02:00
|
|
|
|
|
|
|
=head1 AUTHORS
|
|
|
|
|
2006-03-14 06:42:07 +01:00
|
|
|
Maintained by the LLVM Team (L<http://llvm.org>).
|
2004-06-02 21:21:26 +02:00
|
|
|
|
|
|
|
=cut
|