John Criswell | ecf32e5 | 2003-09-11 19:58:03 +0000 | [diff] [blame^] | 1 | <html> |
| 2 | <title> |
| 3 | gccas |
| 4 | </title> |
| 5 | |
| 6 | <body> |
| 7 | |
| 8 | <center> |
| 9 | <h1>Low Level Virtual Machine</h1> |
| 10 | </center> |
| 11 | <HR> |
| 12 | |
| 13 | <h3> |
| 14 | NAME |
| 15 | </h3> |
| 16 | |
| 17 | gccas |
| 18 | |
| 19 | <h3> |
| 20 | SYNOPSIS |
| 21 | </h3> |
| 22 | |
| 23 | gccas [options] < filename> |
| 24 | <h3> |
| 25 | DESCRIPTION |
| 26 | </h3> |
| 27 | |
| 28 | The gccas utility takes an LLVM assembly file generated by GCC and converts it |
| 29 | into an LLVM bytecode file. It is primarily used by the GCC front end, and as |
| 30 | such, attempts to mimic the interface provided by the default system assembler |
| 31 | so that it can act as a "drop-in" replacement. |
| 32 | |
| 33 | <h3> |
| 34 | OPTIONS |
| 35 | </h3> |
| 36 | |
| 37 | <ul> |
| 38 | <li> -help |
| 39 | <br> |
| 40 | Print a summary of command line options. |
| 41 | <p> |
| 42 | |
| 43 | <li> -o <filename> |
| 44 | <br> |
| 45 | Specify the output filename which will hold the assembled bytecode. |
| 46 | <p> |
| 47 | |
| 48 | <li> -stats |
| 49 | <br> |
| 50 | Print statistics. |
| 51 | <p> |
| 52 | |
| 53 | <li> -time-passes |
| 54 | <br> |
| 55 | Record the amount of time needed for each pass and print it to standard |
| 56 | error. |
| 57 | <p> |
| 58 | |
| 59 | <li> -verify |
| 60 | <br> |
| 61 | Verify each pass result. |
| 62 | <p> |
| 63 | </ul> |
| 64 | |
| 65 | <h3> |
| 66 | EXIT STATUS |
| 67 | </h3> |
| 68 | |
| 69 | If gccas succeeds, it will exit with 0. Otherwise, if an error occurs, it |
| 70 | will exit with a non-zero value. |
| 71 | |
| 72 | <h3> |
| 73 | SEE ALSO |
| 74 | </h3> |
| 75 | llvm-dis |
| 76 | |
| 77 | <HR> |
| 78 | University of Illinois at Urbana-Champaign |
| 79 | </body> |
| 80 | </html> |
| 81 | |