Misha Brukman | 38ca9be | 2004-07-01 16:04:49 +0000 | [diff] [blame] | 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" |
| 2 | "http://www.w3.org/TR/html4/strict.dtd"> |
John Criswell | ecf32e5 | 2003-09-11 19:58:03 +0000 | [diff] [blame] | 3 | <html> |
Misha Brukman | c6ad94c | 2003-10-31 00:39:28 +0000 | [diff] [blame] | 4 | <head> |
| 5 | <title>LLVM Command Guide</title> |
Misha Brukman | 38ca9be | 2004-07-01 16:04:49 +0000 | [diff] [blame] | 6 | <link rel="stylesheet" href="../llvm.css" type="text/css"> |
Misha Brukman | c6ad94c | 2003-10-31 00:39:28 +0000 | [diff] [blame] | 7 | </head> |
Misha Brukman | 38ca9be | 2004-07-01 16:04:49 +0000 | [diff] [blame] | 8 | <body> |
John Criswell | ecf32e5 | 2003-09-11 19:58:03 +0000 | [diff] [blame] | 9 | |
Misha Brukman | 38ca9be | 2004-07-01 16:04:49 +0000 | [diff] [blame] | 10 | <div class="doc_title"> |
| 11 | LLVM Command Guide |
| 12 | </div> |
John Criswell | ecf32e5 | 2003-09-11 19:58:03 +0000 | [diff] [blame] | 13 | |
Misha Brukman | 38ca9be | 2004-07-01 16:04:49 +0000 | [diff] [blame] | 14 | <div class="doc_text"> |
John Criswell | ecf32e5 | 2003-09-11 19:58:03 +0000 | [diff] [blame] | 15 | |
Chris Lattner | 1a5a79c | 2004-07-10 06:06:56 +0000 | [diff] [blame] | 16 | <p>These documents are HTML versions of the <a href="man/man1/">man pages</a> |
| 17 | for all of the LLVM tools. These pages describe how to use the LLVM commands |
| 18 | and what their options are. Note that these pages do not describe all of the |
| 19 | options available for all tools. To get a complete listing, pass the |
| 20 | <tt>--help</tt> (general options) or <tt>--help-hidden</tt> (general+debugging |
| 21 | options) arguments to the tool you are interested in.</p> |
Chris Lattner | d053efd | 2003-10-07 20:05:23 +0000 | [diff] [blame] | 22 | |
Misha Brukman | 38ca9be | 2004-07-01 16:04:49 +0000 | [diff] [blame] | 23 | </div> |
John Criswell | ecf32e5 | 2003-09-11 19:58:03 +0000 | [diff] [blame] | 24 | |
Misha Brukman | 38ca9be | 2004-07-01 16:04:49 +0000 | [diff] [blame] | 25 | <!-- *********************************************************************** --> |
| 26 | <div class="doc_section"> |
| 27 | <a name="basic">Basic Commands</a> |
| 28 | </div> |
| 29 | <!-- *********************************************************************** --> |
John Criswell | ecf32e5 | 2003-09-11 19:58:03 +0000 | [diff] [blame] | 30 | |
Misha Brukman | 38ca9be | 2004-07-01 16:04:49 +0000 | [diff] [blame] | 31 | <div class="doc_text"> |
John Criswell | ecf32e5 | 2003-09-11 19:58:03 +0000 | [diff] [blame] | 32 | |
Misha Brukman | 38ca9be | 2004-07-01 16:04:49 +0000 | [diff] [blame] | 33 | <ul> |
John Criswell | ecf32e5 | 2003-09-11 19:58:03 +0000 | [diff] [blame] | 34 | |
Misha Brukman | 66a72ef | 2004-07-02 15:46:55 +0000 | [diff] [blame] | 35 | <li><a href="html/llvm-as.html"><b>llvm-as</b></a> - |
Chris Lattner | 1a5a79c | 2004-07-10 06:06:56 +0000 | [diff] [blame] | 36 | assemble a human-readable .ll file into bytecode</li> |
John Criswell | ecf32e5 | 2003-09-11 19:58:03 +0000 | [diff] [blame] | 37 | |
Misha Brukman | 66a72ef | 2004-07-02 15:46:55 +0000 | [diff] [blame] | 38 | <li><a href="html/llvm-dis.html"><b>llvm-dis</b></a> - |
Chris Lattner | 1a5a79c | 2004-07-10 06:06:56 +0000 | [diff] [blame] | 39 | disassemble a bytecode file into a human-readable .ll file</li> |
Chris Lattner | e66e73a | 2003-11-02 02:10:54 +0000 | [diff] [blame] | 40 | |
Misha Brukman | 66a72ef | 2004-07-02 15:46:55 +0000 | [diff] [blame] | 41 | <li><a href="html/opt.html"><b>opt</b></a> - |
Chris Lattner | 1a5a79c | 2004-07-10 06:06:56 +0000 | [diff] [blame] | 42 | run a series of LLVM-to-LLVM optimizations on a bytecode file</li> |
Chris Lattner | e66e73a | 2003-11-02 02:10:54 +0000 | [diff] [blame] | 43 | |
Misha Brukman | 66a72ef | 2004-07-02 15:46:55 +0000 | [diff] [blame] | 44 | <li><a href="html/llc.html"><b>llc</b></a> - |
Chris Lattner | 1a5a79c | 2004-07-10 06:06:56 +0000 | [diff] [blame] | 45 | generate native machine code for a bytecode file</li> |
Chris Lattner | e66e73a | 2003-11-02 02:10:54 +0000 | [diff] [blame] | 46 | |
Misha Brukman | 66a72ef | 2004-07-02 15:46:55 +0000 | [diff] [blame] | 47 | <li><a href="html/lli.html"><b>lli</b></a> - |
Chris Lattner | 1a5a79c | 2004-07-10 06:06:56 +0000 | [diff] [blame] | 48 | directly run a program compiled to bytecode using a JIT compiler or |
| 49 | interpreter</li> |
John Criswell | ecf32e5 | 2003-09-11 19:58:03 +0000 | [diff] [blame] | 50 | |
Misha Brukman | 66a72ef | 2004-07-02 15:46:55 +0000 | [diff] [blame] | 51 | <li><a href="html/llvm-link.html"><b>llvm-link</b></A> |
Misha Brukman | 38ca9be | 2004-07-01 16:04:49 +0000 | [diff] [blame] | 52 | link several bytecode files into one</li> |
John Criswell | 3200330 | 2003-09-11 20:23:52 +0000 | [diff] [blame] | 53 | |
Chris Lattner | 1a5a79c | 2004-07-10 06:06:56 +0000 | [diff] [blame] | 54 | <li><a href="html/analyze.html"><b>analyze</b></a> - |
| 55 | run LLVM analyses on a bytecode file and print the results</li> |
| 56 | |
Misha Brukman | 66a72ef | 2004-07-02 15:46:55 +0000 | [diff] [blame] | 57 | <li><a href="html/llvm-nm.html"><b>llvm-nm</b></a> |
Misha Brukman | 38ca9be | 2004-07-01 16:04:49 +0000 | [diff] [blame] | 58 | print out the names and types of symbols in a bytecode file</li> |
John Criswell | 3200330 | 2003-09-11 20:23:52 +0000 | [diff] [blame] | 59 | |
Misha Brukman | 66a72ef | 2004-07-02 15:46:55 +0000 | [diff] [blame] | 60 | <li><a href="html/llvm-prof.html"><b>llvm-prof</b></a> - |
Chris Lattner | 1a5a79c | 2004-07-10 06:06:56 +0000 | [diff] [blame] | 61 | format raw `<tt>llvmprof.out</tt>' data into a human-readable report</li> |
John Criswell | aa5ff24 | 2003-10-03 13:48:27 +0000 | [diff] [blame] | 62 | |
Misha Brukman | 38ca9be | 2004-07-01 16:04:49 +0000 | [diff] [blame] | 63 | </ul> |
John Criswell | aa5ff24 | 2003-10-03 13:48:27 +0000 | [diff] [blame] | 64 | |
Misha Brukman | 38ca9be | 2004-07-01 16:04:49 +0000 | [diff] [blame] | 65 | </div> |
John Criswell | 3200330 | 2003-09-11 20:23:52 +0000 | [diff] [blame] | 66 | |
Misha Brukman | 38ca9be | 2004-07-01 16:04:49 +0000 | [diff] [blame] | 67 | <!-- *********************************************************************** --> |
| 68 | <div class="doc_section"> |
Chris Lattner | 9099e3e | 2004-07-10 21:43:12 +0000 | [diff] [blame] | 69 | <a name="frontend">C, C++, and Stacker Front-end Commands</a> |
Misha Brukman | 38ca9be | 2004-07-01 16:04:49 +0000 | [diff] [blame] | 70 | </div> |
| 71 | <!-- *********************************************************************** --> |
John Criswell | 3200330 | 2003-09-11 20:23:52 +0000 | [diff] [blame] | 72 | |
Misha Brukman | 38ca9be | 2004-07-01 16:04:49 +0000 | [diff] [blame] | 73 | <div class="doc_text"> |
Misha Brukman | 38ca9be | 2004-07-01 16:04:49 +0000 | [diff] [blame] | 74 | <ul> |
Chris Lattner | d053efd | 2003-10-07 20:05:23 +0000 | [diff] [blame] | 75 | |
Misha Brukman | 66a72ef | 2004-07-02 15:46:55 +0000 | [diff] [blame] | 76 | <li><a href="html/llvmgcc.html"><b>llvmgcc</b></a> - |
Chris Lattner | 1a5a79c | 2004-07-10 06:06:56 +0000 | [diff] [blame] | 77 | GCC-based C front-end for LLVM |
Misha Brukman | 38ca9be | 2004-07-01 16:04:49 +0000 | [diff] [blame] | 78 | |
Misha Brukman | 66a72ef | 2004-07-02 15:46:55 +0000 | [diff] [blame] | 79 | <li><a href="html/llvmgxx.html"><b>llvmg++</b></a> - |
Chris Lattner | 1a5a79c | 2004-07-10 06:06:56 +0000 | [diff] [blame] | 80 | GCC-based C++ front-end for LLVM</li> |
Misha Brukman | 38ca9be | 2004-07-01 16:04:49 +0000 | [diff] [blame] | 81 | |
Misha Brukman | 66a72ef | 2004-07-02 15:46:55 +0000 | [diff] [blame] | 82 | <li><a href="html/gccas.html"><b>gccas</b></a> - |
Chris Lattner | 1a5a79c | 2004-07-10 06:06:56 +0000 | [diff] [blame] | 83 | compile-time optimizer used by llvm-g++ and llvm-gcc</li> |
Misha Brukman | 38ca9be | 2004-07-01 16:04:49 +0000 | [diff] [blame] | 84 | |
Misha Brukman | 66a72ef | 2004-07-02 15:46:55 +0000 | [diff] [blame] | 85 | <li><a href="html/gccld.html"><b>gccld</b></a> - |
Chris Lattner | 1a5a79c | 2004-07-10 06:06:56 +0000 | [diff] [blame] | 86 | linker and link-time optimizer used by llvm-g++ and llvm-gcc</li> |
Misha Brukman | 38ca9be | 2004-07-01 16:04:49 +0000 | [diff] [blame] | 87 | |
Chris Lattner | 9099e3e | 2004-07-10 21:43:12 +0000 | [diff] [blame] | 88 | <li><a href="html/stkrc.html"><b>stkrc</b></a> - |
| 89 | front-end compiler for the <a href="../Stacker.html">Stacker</a> |
| 90 | language</li> |
| 91 | |
Misha Brukman | 38ca9be | 2004-07-01 16:04:49 +0000 | [diff] [blame] | 92 | </ul> |
| 93 | |
| 94 | </div> |
| 95 | |
| 96 | <!-- *********************************************************************** --> |
| 97 | <div class="doc_section"> |
| 98 | <a name="debug">Debugging Tools</a> |
| 99 | </div> |
| 100 | <!-- *********************************************************************** --> |
Chris Lattner | d053efd | 2003-10-07 20:05:23 +0000 | [diff] [blame] | 101 | |
| 102 | |
Misha Brukman | 38ca9be | 2004-07-01 16:04:49 +0000 | [diff] [blame] | 103 | <div class="doc_text"> |
| 104 | |
| 105 | <ul> |
| 106 | |
Misha Brukman | 66a72ef | 2004-07-02 15:46:55 +0000 | [diff] [blame] | 107 | <li><a href="html/bugpoint.html"><b>bugpoint</b></a> - |
Misha Brukman | 38ca9be | 2004-07-01 16:04:49 +0000 | [diff] [blame] | 108 | automatic test-case reducer</li> |
| 109 | |
Misha Brukman | 66a72ef | 2004-07-02 15:46:55 +0000 | [diff] [blame] | 110 | <li><a href="html/extract.html"><b>extract</b></a> - |
Misha Brukman | 38ca9be | 2004-07-01 16:04:49 +0000 | [diff] [blame] | 111 | extract a function from an LLVM bytecode file</li> |
| 112 | |
Misha Brukman | 66a72ef | 2004-07-02 15:46:55 +0000 | [diff] [blame] | 113 | <li><a href="html/llvm-bcanalyzer.html"><b>llvm-bcanalyzer</b></a> - |
Misha Brukman | 95bba87 | 2004-07-01 16:59:05 +0000 | [diff] [blame] | 114 | bytecode analyzer (analyzes the binary encoding itself, not the program it |
| 115 | represents)</li> |
| 116 | |
Misha Brukman | 38ca9be | 2004-07-01 16:04:49 +0000 | [diff] [blame] | 117 | </ul> |
| 118 | |
| 119 | </div> |
| 120 | |
| 121 | <!-- *********************************************************************** --> |
| 122 | |
| 123 | <hr> |
| 124 | <address> |
| 125 | <a href="http://jigsaw.w3.org/css-validator/check/referer"><img |
| 126 | src="http://jigsaw.w3.org/css-validator/images/vcss" alt="Valid CSS!"></a> |
| 127 | <a href="http://validator.w3.org/check/referer"><img |
| 128 | src="http://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01!"></a> |
| 129 | |
Misha Brukman | 38ca9be | 2004-07-01 16:04:49 +0000 | [diff] [blame] | 130 | <a href="http://llvm.cs.uiuc.edu">LLVM Compiler Infrastructure</a><br> |
| 131 | Last modified: $Date$ |
| 132 | </address> |
Chris Lattner | d053efd | 2003-10-07 20:05:23 +0000 | [diff] [blame] | 133 | |
Misha Brukman | c6ad94c | 2003-10-31 00:39:28 +0000 | [diff] [blame] | 134 | </body> |
John Criswell | ecf32e5 | 2003-09-11 19:58:03 +0000 | [diff] [blame] | 135 | </html> |