John Criswell | 69d903d | 2003-09-12 15:46:24 +0000 | [diff] [blame] | 1 | <html> |
| 2 | <title> |
Chris Lattner | ee43b69 | 2003-09-25 19:50:05 +0000 | [diff] [blame] | 3 | LLVM: llc tool |
John Criswell | 69d903d | 2003-09-12 15:46:24 +0000 | [diff] [blame] | 4 | </title> |
| 5 | |
| 6 | <body> |
| 7 | |
| 8 | <center> |
Chris Lattner | ee43b69 | 2003-09-25 19:50:05 +0000 | [diff] [blame] | 9 | <h1>LLVM: llc tool</h1> |
John Criswell | 69d903d | 2003-09-12 15:46:24 +0000 | [diff] [blame] | 10 | </center> |
| 11 | <HR> |
| 12 | |
| 13 | <h3> |
| 14 | NAME |
| 15 | </h3> |
| 16 | |
| 17 | llc |
| 18 | |
| 19 | <h3> |
| 20 | SYNOPSIS |
| 21 | </h3> |
| 22 | |
John Criswell | 511a491 | 2003-09-29 20:10:08 +0000 | [diff] [blame] | 23 | llc [options] [filename] |
John Criswell | 69d903d | 2003-09-12 15:46:24 +0000 | [diff] [blame] | 24 | <h3> |
| 25 | DESCRIPTION |
| 26 | </h3> |
| 27 | |
| 28 | The llc command compiles LLVM bytecode into assembly language for a specified |
| 29 | architecture. The assembly language output can then be passed through a native |
| 30 | assembler and linker to generate native code. |
John Criswell | 511a491 | 2003-09-29 20:10:08 +0000 | [diff] [blame] | 31 | <p> |
| 32 | The choice of architecture for the output assembly code is determined as |
| 33 | follows: |
| 34 | |
| 35 | <ul> |
| 36 | <li> |
| 37 | If the user has specified an architecture with the -m option, use that |
| 38 | architecture. |
| 39 | <p> |
| 40 | |
| 41 | <li> |
| 42 | Examine the input LLVM bytecode file: |
| 43 | <ul> |
| 44 | <li> |
| 45 | If it specifies little endian and a pointer size of 32 bits, select the |
| 46 | x86 architecture. |
| 47 | <p> |
| 48 | |
| 49 | <li> |
| 50 | If it specifies big endian and a pointer size of 64 bit pointers, |
| 51 | select the SparcV9 architecture. |
| 52 | </ul> |
| 53 | <p> |
| 54 | |
| 55 | <li> |
| 56 | If llc was compiled on an architecture for which it can generate code, |
| 57 | select the architecture upon which llc was compiled. |
| 58 | <p> |
| 59 | |
| 60 | <li> |
| 61 | Print a message to the user asking him or her to specify the output |
| 62 | architecture explicitly. |
| 63 | </ul> |
| 64 | |
| 65 | <p> |
| 66 | |
| 67 | If filename is not specified, or if filename is -, llc reads its input from |
| 68 | standard input. Otherwise, it will read its input from filename. |
| 69 | <p> |
| 70 | |
| 71 | If the -o option is left unspecified, then llc will send its output to standard |
| 72 | output if the input is from standard input. If the -o option specifies -, then |
| 73 | the output will also be sent to standard output. |
| 74 | <p> |
| 75 | |
| 76 | If no -o option is specified and an input file other than - is specified, then |
| 77 | llc creates the output filename as follows: |
| 78 | |
| 79 | <ul> |
| 80 | <li> |
| 81 | If the file ends in .bc, then the .bc suffix is removed, and the .s suffix |
| 82 | is appended. |
| 83 | <p> |
| 84 | <li> |
| 85 | Otherwise, the .s suffix is appended to the input filename. |
| 86 | </ul> |
John Criswell | 69d903d | 2003-09-12 15:46:24 +0000 | [diff] [blame] | 87 | |
| 88 | <h3> |
| 89 | OPTIONS |
| 90 | </h3> |
| 91 | |
| 92 | <ul> |
| 93 | <li>-disable-fp-elim |
| 94 | <br> |
John Criswell | 511a491 | 2003-09-29 20:10:08 +0000 | [diff] [blame] | 95 | Disable frame pointer elimination optimization. |
John Criswell | 69d903d | 2003-09-12 15:46:24 +0000 | [diff] [blame] | 96 | <p> |
| 97 | |
John Criswell | 69d903d | 2003-09-12 15:46:24 +0000 | [diff] [blame] | 98 | <li>-disable-pattern-isel |
| 99 | <br> |
John Criswell | 511a491 | 2003-09-29 20:10:08 +0000 | [diff] [blame] | 100 | Use the 'simple' X86 instruction selector. |
John Criswell | 69d903d | 2003-09-12 15:46:24 +0000 | [diff] [blame] | 101 | <p> |
| 102 | |
| 103 | <li>-disable-peephole |
| 104 | <br> |
John Criswell | 511a491 | 2003-09-29 20:10:08 +0000 | [diff] [blame] | 105 | Disable peephole optimization pass. |
John Criswell | 69d903d | 2003-09-12 15:46:24 +0000 | [diff] [blame] | 106 | <p> |
| 107 | |
| 108 | <li>-disable-preopt |
| 109 | <br> |
John Criswell | 511a491 | 2003-09-29 20:10:08 +0000 | [diff] [blame] | 110 | Disable optimizations prior to instruction selection. |
John Criswell | 69d903d | 2003-09-12 15:46:24 +0000 | [diff] [blame] | 111 | <p> |
| 112 | |
| 113 | <li>-disable-sched |
| 114 | <br> |
John Criswell | 511a491 | 2003-09-29 20:10:08 +0000 | [diff] [blame] | 115 | Disable local scheduling pass. |
John Criswell | 69d903d | 2003-09-12 15:46:24 +0000 | [diff] [blame] | 116 | <p> |
| 117 | |
| 118 | <li>-disable-strip |
| 119 | <br> |
John Criswell | 511a491 | 2003-09-29 20:10:08 +0000 | [diff] [blame] | 120 | Do not strip the LLVM bytecode included in executable. |
John Criswell | 69d903d | 2003-09-12 15:46:24 +0000 | [diff] [blame] | 121 | <p> |
| 122 | |
| 123 | <li>-enable-maps |
| 124 | <br> |
John Criswell | 511a491 | 2003-09-29 20:10:08 +0000 | [diff] [blame] | 125 | Emit LLVM-to-MachineCode mapping info to assembly. |
John Criswell | 69d903d | 2003-09-12 15:46:24 +0000 | [diff] [blame] | 126 | <p> |
| 127 | |
| 128 | <li>-f |
| 129 | <br> |
| 130 | Overwrite output files |
| 131 | <p> |
| 132 | |
| 133 | <li>-load=<plugin.so> |
| 134 | <br> |
John Criswell | 511a491 | 2003-09-29 20:10:08 +0000 | [diff] [blame] | 135 | Load the specified plugin. |
John Criswell | 69d903d | 2003-09-12 15:46:24 +0000 | [diff] [blame] | 136 | <p> |
| 137 | |
| 138 | <li>-m<arch> |
| 139 | <br> |
| 140 | Specify the architecture for which to generate assembly. Valid |
John Criswell | 69d903d | 2003-09-12 15:46:24 +0000 | [diff] [blame] | 141 | architectures are: |
| 142 | |
| 143 | <dl compact> |
Alkis Evlogimenos | eed462b | 2003-10-02 06:13:19 +0000 | [diff] [blame^] | 144 | <di> x86 |
| 145 | <dd>IA-32 (Pentium and above)</dd> |
John Criswell | 69d903d | 2003-09-12 15:46:24 +0000 | [diff] [blame] | 146 | |
Alkis Evlogimenos | eed462b | 2003-10-02 06:13:19 +0000 | [diff] [blame^] | 147 | <di> sparc |
| 148 | <dd>SPARC V9</dd> |
John Criswell | 69d903d | 2003-09-12 15:46:24 +0000 | [diff] [blame] | 149 | </dl> |
| 150 | <p> |
| 151 | |
| 152 | <li>-o <filename> |
| 153 | <br> |
John Criswell | 511a491 | 2003-09-29 20:10:08 +0000 | [diff] [blame] | 154 | Specify the output filename. |
John Criswell | 69d903d | 2003-09-12 15:46:24 +0000 | [diff] [blame] | 155 | <p> |
| 156 | |
| 157 | <li>-print-machineinstrs |
| 158 | <br> |
John Criswell | 511a491 | 2003-09-29 20:10:08 +0000 | [diff] [blame] | 159 | Print generated machine code. |
John Criswell | 69d903d | 2003-09-12 15:46:24 +0000 | [diff] [blame] | 160 | <p> |
| 161 | |
Alkis Evlogimenos | eed462b | 2003-10-02 06:13:19 +0000 | [diff] [blame^] | 162 | <li>-regalloc=<ra> |
| 163 | <br> |
| 164 | Specify the register allocator to use. The default is <i>simple<i>. |
| 165 | Valid register allocators are: |
| 166 | <dl compact> |
| 167 | <di> simple |
| 168 | <dd>Very simple register allocator</dd> |
| 169 | |
| 170 | <di> local |
| 171 | <dd>Local register allocator</dd> |
| 172 | </dl> |
| 173 | <p> |
| 174 | |
John Criswell | 69d903d | 2003-09-12 15:46:24 +0000 | [diff] [blame] | 175 | <li> -help |
| 176 | <br> |
| 177 | Print a summary of command line options. |
| 178 | <p> |
| 179 | |
| 180 | <li> -stats |
| 181 | <br> |
| 182 | Print statistics. |
| 183 | <p> |
| 184 | |
| 185 | <li> -time-passes |
| 186 | <br> |
| 187 | Record the amount of time needed for each pass and print it to standard |
| 188 | error. |
| 189 | <p> |
| 190 | </ul> |
| 191 | |
| 192 | <h3> |
| 193 | EXIT STATUS |
| 194 | </h3> |
| 195 | |
| 196 | If llc succeeds, it will exit with 0. Otherwise, if an error occurs, it |
| 197 | will exit with a non-zero value. |
| 198 | |
| 199 | <h3> |
| 200 | SEE ALSO |
| 201 | </h3> |
| 202 | llvm-dis, lli |
| 203 | |
| 204 | <HR> |
| 205 | <a href="http://llvm.cs.uiuc.edu">LLVM Team</a> |
| 206 | </body> |
| 207 | </html> |
| 208 | |