Brian Gaeke | ff0c766 | 2004-07-01 20:29:08 +0000 | [diff] [blame] | 1 | =pod |
| 2 | |
| 3 | =head1 NAME |
| 4 | |
| 5 | bugpoint - automatic test case reduction tool |
| 6 | |
| 7 | =head1 SYNOPSIS |
| 8 | |
Misha Brukman | c08937a | 2004-07-02 16:06:19 +0000 | [diff] [blame] | 9 | B<bugpoint> [I<options>] [I<input LLVM ll/bc files>] [I<LLVM passes>] B<--args> |
Misha Brukman | a856f5b | 2004-07-02 15:42:20 +0000 | [diff] [blame] | 10 | I<program arguments> |
Brian Gaeke | ff0c766 | 2004-07-01 20:29:08 +0000 | [diff] [blame] | 11 | |
| 12 | =head1 DESCRIPTION |
| 13 | |
Misha Brukman | 595d32e | 2004-07-02 15:36:29 +0000 | [diff] [blame] | 14 | B<bugpoint> narrows down the source of problems in LLVM tools and passes. It |
| 15 | can be used to debug three types of failures: optimizer crashes, miscompilations |
| 16 | by optimizers, or bad native code generation (including problems in the static |
| 17 | and JIT compilers). It aims to reduce large test cases to small, useful ones. |
Misha Brukman | ee3b045 | 2004-12-09 20:28:42 +0000 | [diff] [blame] | 18 | For more information on the design and inner workings of B<bugpoint>, as well as |
| 19 | advice for using bugpoint, see F<llvm/docs/Bugpoint.html> in the LLVM |
| 20 | distribution. |
Brian Gaeke | ff0c766 | 2004-07-01 20:29:08 +0000 | [diff] [blame] | 21 | |
| 22 | =head1 OPTIONS |
| 23 | |
| 24 | =over |
| 25 | |
| 26 | =item B<--additional-so> F<library> |
| 27 | |
| 28 | Load the dynamic shared object F<library> into the test program whenever it is |
| 29 | run. This is useful if you are debugging programs which depend on non-LLVM |
| 30 | libraries (such as the X or curses libraries) to run. |
| 31 | |
| 32 | =item B<--args> I<program args> |
| 33 | |
| 34 | Pass all arguments specified after -args to the test program whenever it runs. |
| 35 | Note that if any of the I<program args> start with a '-', you should use: |
| 36 | |
| 37 | bugpoint [bugpoint args] --args -- [program args] |
| 38 | |
| 39 | The "--" right after the B<--args> option tells B<bugpoint> to consider any |
| 40 | options starting with C<-> to be part of the B<--args> option, not as options to |
| 41 | B<bugpoint> itself. |
| 42 | |
| 43 | =item B<--tool-args> I<tool args> |
| 44 | |
| 45 | Pass all arguments specified after --tool-args to the LLVM tool under test |
| 46 | (B<llc>, B<lli>, etc.) whenever it runs. You should use this option in the |
| 47 | following way: |
| 48 | |
| 49 | bugpoint [bugpoint args] --tool-args -- [tool args] |
| 50 | |
| 51 | The "--" right after the B<--tool-args> option tells B<bugpoint> to consider any |
| 52 | options starting with C<-> to be part of the B<--tool-args> option, not as |
| 53 | options to B<bugpoint> itself. (See B<--args>, above.) |
| 54 | |
| 55 | =item B<--check-exit-code>=I<{true,false}> |
| 56 | |
| 57 | Assume a non-zero exit code or core dump from the test program is a failure. |
| 58 | Defaults to true. |
| 59 | |
| 60 | =item B<--disable-{dce,simplifycfg}> |
| 61 | |
| 62 | Do not run the specified passes to clean up and reduce the size of the test |
| 63 | program. By default, B<bugpoint> uses these passes internally when attempting to |
| 64 | reduce test programs. If you're trying to find a bug in one of these passes, |
| 65 | B<bugpoint> may crash. |
| 66 | |
| 67 | =item B<--help> |
| 68 | |
| 69 | Print a summary of command line options. |
| 70 | |
| 71 | =item B<--input> F<filename> |
| 72 | |
| 73 | Open F<filename> and redirect the standard input of the test program, whenever |
| 74 | it runs, to come from that file. |
| 75 | |
| 76 | =item B<--load> F<plugin> |
| 77 | |
| 78 | Load the dynamic object F<plugin> into B<bugpoint> itself. This object should |
| 79 | register new optimization passes. Once loaded, the object will add new command |
| 80 | line options to enable various optimizations. To see the new complete list of |
| 81 | optimizations, use the B<--help> and B<--load> options together; for example: |
| 82 | |
| 83 | bugpoint --load myNewPass.so --help |
| 84 | |
| 85 | =item B<--output> F<filename> |
| 86 | |
| 87 | Whenever the test program produces output on its standard output stream, it |
| 88 | should match the contents of F<filename> (the "reference output"). If you |
| 89 | do not use this option, B<bugpoint> will attempt to generate a reference output |
| 90 | by compiling the program with the C backend and running it. |
| 91 | |
| 92 | =item B<--profile-info-file> F<filename> |
| 93 | |
| 94 | Profile file loaded by B<--profile-loader>. |
| 95 | |
| 96 | =item B<--run-{int,jit,llc,cbe}> |
| 97 | |
| 98 | Whenever the test program is compiled, B<bugpoint> should generate code for it |
| 99 | using the specified code generator. These options allow you to choose the |
| 100 | interpreter, the JIT compiler, the static native code compiler, or the C |
| 101 | backend, respectively. |
| 102 | |
| 103 | =back |
| 104 | |
| 105 | =head1 EXIT STATUS |
| 106 | |
| 107 | If B<bugpoint> succeeds in finding a problem, it will exit with 0. Otherwise, |
| 108 | if an error occurs, it will exit with a non-zero value. |
| 109 | |
| 110 | =head1 SEE ALSO |
| 111 | |
Misha Brukman | c08937a | 2004-07-02 16:06:19 +0000 | [diff] [blame] | 112 | L<opt|opt>, L<analyze|analyze> |
Brian Gaeke | ff0c766 | 2004-07-01 20:29:08 +0000 | [diff] [blame] | 113 | |
| 114 | =head1 AUTHOR |
| 115 | |
Reid Spencer | cd143fc | 2006-03-14 05:42:07 +0000 | [diff] [blame] | 116 | Maintained by the LLVM Team (L<http://llvm.org>). |
Brian Gaeke | ff0c766 | 2004-07-01 20:29:08 +0000 | [diff] [blame] | 117 | |
| 118 | =cut |