mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-26 23:32:58 +00:00
Minor cleanups:
* Mention the --help and --help-hidden options * Don't say program when we really mean any old bytecode file * Add a link to the man pages * Move analyze down in the list, as it's not as important as the rest git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14730 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2439972a61
commit
1a5a79c4bc
@ -13,16 +13,12 @@
|
|||||||
|
|
||||||
<div class="doc_text">
|
<div class="doc_text">
|
||||||
|
|
||||||
<p>This document is the reference manual for the LLVM utilities. It will
|
<p>These documents are HTML versions of the <a href="man/man1/">man pages</a>
|
||||||
show you how to use the LLVM commands and what their options are. Note that in
|
for all of the LLVM tools. These pages describe how to use the LLVM commands
|
||||||
the descriptions below, `bytecode' and `program' refer to LLVM bytecode files
|
and what their options are. Note that these pages do not describe all of the
|
||||||
and assembly programs, respectively.</p>
|
options available for all tools. To get a complete listing, pass the
|
||||||
|
<tt>--help</tt> (general options) or <tt>--help-hidden</tt> (general+debugging
|
||||||
<ul>
|
options) arguments to the tool you are interested in.</p>
|
||||||
<li><a href="#basic">Basic Commands</a></li>
|
|
||||||
<li><a href="#frontend">C and C++ Frond-end Commands</a></li>
|
|
||||||
<li><a href="#debug">Debugging commands</a></li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -37,31 +33,32 @@ and assembly programs, respectively.</p>
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li><a href="html/llvm-as.html"><b>llvm-as</b></a> -
|
<li><a href="html/llvm-as.html"><b>llvm-as</b></a> -
|
||||||
assemble a human-readable program into bytecode</li>
|
assemble a human-readable .ll file into bytecode</li>
|
||||||
|
|
||||||
<li><a href="html/llvm-dis.html"><b>llvm-dis</b></a> -
|
<li><a href="html/llvm-dis.html"><b>llvm-dis</b></a> -
|
||||||
disassemble a bytecode file into human-readable form</li>
|
disassemble a bytecode file into a human-readable .ll file</li>
|
||||||
|
|
||||||
<li><a href="html/analyze.html"><b>analyze</b></a> -
|
|
||||||
analyze a program compiled to bytecode</li>
|
|
||||||
|
|
||||||
<li><a href="html/opt.html"><b>opt</b></a> -
|
<li><a href="html/opt.html"><b>opt</b></a> -
|
||||||
optimize a bytecode file</li>
|
run a series of LLVM-to-LLVM optimizations on a bytecode file</li>
|
||||||
|
|
||||||
<li><a href="html/llc.html"><b>llc</b></a> -
|
<li><a href="html/llc.html"><b>llc</b></a> -
|
||||||
compile a bytecode program into native machine code</li>
|
generate native machine code for a bytecode file</li>
|
||||||
|
|
||||||
<li><a href="html/lli.html"><b>lli</b></a> -
|
<li><a href="html/lli.html"><b>lli</b></a> -
|
||||||
run a bytecode program using either an interpreter or a JIT compiler</li>
|
directly run a program compiled to bytecode using a JIT compiler or
|
||||||
|
interpreter</li>
|
||||||
|
|
||||||
<li><a href="html/llvm-link.html"><b>llvm-link</b></A>
|
<li><a href="html/llvm-link.html"><b>llvm-link</b></A>
|
||||||
link several bytecode files into one</li>
|
link several bytecode files into one</li>
|
||||||
|
|
||||||
|
<li><a href="html/analyze.html"><b>analyze</b></a> -
|
||||||
|
run LLVM analyses on a bytecode file and print the results</li>
|
||||||
|
|
||||||
<li><a href="html/llvm-nm.html"><b>llvm-nm</b></a>
|
<li><a href="html/llvm-nm.html"><b>llvm-nm</b></a>
|
||||||
print out the names and types of symbols in a bytecode file</li>
|
print out the names and types of symbols in a bytecode file</li>
|
||||||
|
|
||||||
<li><a href="html/llvm-prof.html"><b>llvm-prof</b></a> -
|
<li><a href="html/llvm-prof.html"><b>llvm-prof</b></a> -
|
||||||
transform raw `<tt>llvmprof.out</tt>' data into a human-readable report</li>
|
format raw `<tt>llvmprof.out</tt>' data into a human-readable report</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
@ -78,16 +75,16 @@ and assembly programs, respectively.</p>
|
|||||||
<ul>
|
<ul>
|
||||||
|
|
||||||
<li><a href="html/llvmgcc.html"><b>llvmgcc</b></a> -
|
<li><a href="html/llvmgcc.html"><b>llvmgcc</b></a> -
|
||||||
GCC-based C front end for LLVM
|
GCC-based C front-end for LLVM
|
||||||
|
|
||||||
<li><a href="html/llvmgxx.html"><b>llvmg++</b></a> -
|
<li><a href="html/llvmgxx.html"><b>llvmg++</b></a> -
|
||||||
GCC-based C++ front end for LLVM</li>
|
GCC-based C++ front-end for LLVM</li>
|
||||||
|
|
||||||
<li><a href="html/gccas.html"><b>gccas</b></a> -
|
<li><a href="html/gccas.html"><b>gccas</b></a> -
|
||||||
optimizing assembler used by llvm-g++ and llvm-gcc</li>
|
compile-time optimizer used by llvm-g++ and llvm-gcc</li>
|
||||||
|
|
||||||
<li><a href="html/gccld.html"><b>gccld</b></a> -
|
<li><a href="html/gccld.html"><b>gccld</b></a> -
|
||||||
optimizing linker used by llvm-g++ and llvm-gcc</li>
|
linker and link-time optimizer used by llvm-g++ and llvm-gcc</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user