From 38ca9be9efade42cf9d78fd163d94a115a3807e6 Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Thu, 1 Jul 2004 16:04:49 +0000 Subject: [PATCH] Change format of CommandGuide index page to look like other docs. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14531 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/CommandGuide/index.html | 239 ++++++++++++++++++++++--------------------- 1 file changed, 124 insertions(+), 115 deletions(-) diff --git a/docs/CommandGuide/index.html b/docs/CommandGuide/index.html index 295966c40e8..789d85d68b5 100644 --- a/docs/CommandGuide/index.html +++ b/docs/CommandGuide/index.html @@ -1,123 +1,132 @@ - + LLVM Command Guide + + - - -

LLVM Command Guide

- -This document is the reference manual for the LLVM utilities. It will -show you how to use the LLVM commands and what all of their options -are. - - -
- - -

Basic Commands

- - -
-
llvm-as -
- Assemble a human-readable LLVM program into LLVM bytecode. -

- -

llvm-dis -
- Disassemble an LLVM bytecode file into human-readable form. -

- -

analyze -
- Analyze an LLVM bytecode file. -

- -

opt -
- Optimize an LLVM bytecode file. -

- -

llc -
- Compile an LLVM bytecode program into native machine code. -

- -

lli -
- Run an LLVM bytecode program using either an interpreter or a - JIT compiler. -

- -

llvm-link -
- Link several LLVM bytecode files together into one LLVM - bytecode file. -

- -

llvm-nm -
- Print out the names and types of symbols in an LLVM bytecode file. -

- -

llvm-prof -
- Transform raw 'llvmprof.out' data into a human readable report. -

-

- -
- - -

C and C++ Front-end Commands

- - -
-
llvmgcc -
- GCC-based C front end for LLVM. -

- -

llvmg++ -
- GCC-based C++ front end for LLVM. -

- -

gccas -
- LLVM assembler used by GCC and other native compiler tools. -

- -

gccld -
- LLVM linker used by GCC and other native compiler tools. -
- - -

Debugging Tools

- - -
-
bugpoint -
- Trace an LLVM bytecode program and reduce its failure to a - simple testcase. -

- -

extract -
- Extract a function from an LLVM bytecode file. -
-
- - -
-Maintained by the -LLVM Team.
-Last modified: $Date$ -
+
+ LLVM Command Guide +
+ +
+ +

This document is the reference manual for the LLVM utilities. It will +show you how to use the LLVM commands and what their options are. Note that in +the descriptions below, `bytecode' and `program' refer to LLVM bytecode files +and assembly programs, respectively.

+ + + +
+ + +
+ Basic Commands +
+ + +
+ + + +
+ + +
+ C and C++ Front-end Commands +
+ + +
+ + + +
+ + +
+ Debugging Tools +
+ + + +
+ + + +
+ + + +
+
+ Valid CSS! + Valid HTML 4.01! + + John Criswell
+ LLVM Compiler Infrastructure
+ Last modified: $Date$ +
-- 2.11.0