[llvm-commits] CVS: llvm-www/releases/1.4/docs/CommandGuide/.cvsignore index.html manpage.css

John Criswell criswell at cs.uiuc.edu
Thu Dec 9 14:19:14 PST 2004



Changes in directory llvm-www/releases/1.4/docs/CommandGuide:

.cvsignore added (r1.1)
index.html added (r1.1)
manpage.css added (r1.1)
---
Log message:

Adding in documentation for LLVM 1.4.



---
Diffs of the changes:  (+404 -0)

Index: llvm-www/releases/1.4/docs/CommandGuide/.cvsignore
diff -c /dev/null llvm-www/releases/1.4/docs/CommandGuide/.cvsignore:1.1
*** /dev/null	Thu Dec  9 16:19:13 2004
--- llvm-www/releases/1.4/docs/CommandGuide/.cvsignore	Thu Dec  9 16:19:03 2004
***************
*** 0 ****
--- 1 ----
+ pod2htm?.tmp


Index: llvm-www/releases/1.4/docs/CommandGuide/index.html
diff -c /dev/null llvm-www/releases/1.4/docs/CommandGuide/index.html:1.1
*** /dev/null	Thu Dec  9 16:19:14 2004
--- llvm-www/releases/1.4/docs/CommandGuide/index.html	Thu Dec  9 16:19:03 2004
***************
*** 0 ****
--- 1,147 ----
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
+                       "http://www.w3.org/TR/html4/strict.dtd">
+ <html>
+ <head>
+   <title>LLVM Command Guide</title>
+   <link rel="stylesheet" href="../llvm.css" type="text/css">
+ </head>
+ <body>
+ 
+ <div class="doc_title">
+   LLVM Command Guide
+ </div>
+ 
+ <div class="doc_text">
+ 
+ <p>These documents are HTML versions of the <a href="man/man1/">man pages</a>
+ for all of the LLVM tools.  These pages describe how to use the LLVM commands
+ and what their options are.  Note that these pages do not describe all of the 
+ options available for all tools.  To get a complete listing, pass the 
+ <tt>--help</tt> (general options) or <tt>--help-hidden</tt> (general+debugging
+ options) arguments to the tool you are interested in.</p>
+ 
+ </div>
+ 
+ <!-- *********************************************************************** -->
+ <div class="doc_section">
+   <a name="basic">Basic Commands</a>
+ </div>
+ <!-- *********************************************************************** -->
+ 
+ <div class="doc_text">
+ 
+ <ul>
+ 
+ <li><a href="llvm-as.html"><b>llvm-as</b></a> - 
+     assemble a human-readable .ll file into bytecode</li>
+ 
+ <li><a href="llvm-dis.html"><b>llvm-dis</b></a> -
+     disassemble a bytecode file into a human-readable .ll file</li>
+ 
+ <li><a href="opt.html"><b>opt</b></a> -
+     run a series of LLVM-to-LLVM optimizations on a bytecode file</li>
+ 
+ <li><a href="llc.html"><b>llc</b></a> - 
+     generate native machine code for a bytecode file</li>
+ 
+ <li><a href="lli.html"><b>lli</b></a> - 
+     directly run a program compiled to bytecode using a JIT compiler or 
+     interpreter</li>
+ 
+ <li><a href="llvm-link.html"><b>llvm-link</b></a> -
+     link several bytecode files into one</li>
+ 
+ <li><a href="analyze.html"><b>analyze</b></a> -
+     run LLVM analyses on a bytecode file and print the results</li>
+ 
+ <li><a href="llvm-ar.html"><b>llvm-ar</b></a> - 
+     archive bytecode files</li>
+ 
+ <li><a href="llvm-ranlib.html"><b>llvm-ranlib</b></a> - 
+     create an index for archives made with llvm-ar</li>
+ 
+ <li><a href="llvm-nm.html"><b>llvm-nm</b></a> -
+     print out the names and types of symbols in a bytecode file</li>
+ 
+ <li><a href="llvm-prof.html"><b>llvm-prof</b></a> -
+     format raw `<tt>llvmprof.out</tt>' data into a human-readable report</li>
+ 
+ <li><a href="llvmc.html"><b>llvmc</b></a> -
+   generic and configurable compiler driver</li>
+ 
+ <li><a href="llvm-ld.html"><b>llvm-ld</b></a> -
+   general purpose linker with loadable runtime optimization support</li>
+ 
+ </ul>
+ 
+ </div>
+ 
+ <!-- *********************************************************************** -->
+ <div class="doc_section">
+   <a name="frontend">C, C++, and Stacker Front-end Commands</a>
+ </div>
+ <!-- *********************************************************************** -->
+ 
+ <div class="doc_text">
+ <ul>
+ 
+ <li><a href="llvmgcc.html"><b>llvmgcc</b></a> -
+     GCC-based C front-end for LLVM
+ 
+ <li><a href="llvmgxx.html"><b>llvmg++</b></a> -
+     GCC-based C++ front-end for LLVM</li>
+ 
+ <li><a href="gccas.html"><b>gccas</b></a> -
+     compile-time optimizer used by llvm-g++ and llvm-gcc</li>
+ 
+ <li><a href="gccld.html"><b>gccld</b></a> -
+     linker and link-time optimizer used by llvm-g++ and llvm-gcc</li>
+ 
+ <li><a href="stkrc.html"><b>stkrc</b></a> -
+     front-end compiler for the <a href="../Stacker.html">Stacker</a> 
+     language</li>
+ 
+ </ul>
+ 
+ </div>
+ 
+ <!-- *********************************************************************** -->
+ <div class="doc_section">
+   <a name="debug">Debugging Tools</a>
+ </div>
+ <!-- *********************************************************************** -->
+ 
+ 
+ <div class="doc_text">
+ 
+ <ul>
+ 
+ <li><a href="bugpoint.html"><b>bugpoint</b></a> -
+     automatic test-case reducer</li>
+ 
+ <li><a href="extract.html"><b>extract</b></a> -
+     extract a function from an LLVM bytecode file</li>
+ 
+ <li><a href="llvm-bcanalyzer.html"><b>llvm-bcanalyzer</b></a> -
+     bytecode analyzer (analyzes the binary encoding itself, not the program it
+     represents)</li>
+ 
+ </ul>
+ 
+ </div>
+ 
+ <!-- *********************************************************************** -->
+ 
+ <hr>
+ <address>
+   <a href="http://jigsaw.w3.org/css-validator/check/referer"><img
+   src="http://jigsaw.w3.org/css-validator/images/vcss" alt="Valid CSS!"></a>
+   <a href="http://validator.w3.org/check/referer"><img
+   src="http://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01!"></a>
+ 
+   <a href="http://llvm.cs.uiuc.edu">LLVM Compiler Infrastructure</a><br>
+   Last modified: $Date: 2004/12/09 22:19:03 $
+ </address>
+ 
+ </body>
+ </html>


Index: llvm-www/releases/1.4/docs/CommandGuide/manpage.css
diff -c /dev/null llvm-www/releases/1.4/docs/CommandGuide/manpage.css:1.1
*** /dev/null	Thu Dec  9 16:19:14 2004
--- llvm-www/releases/1.4/docs/CommandGuide/manpage.css	Thu Dec  9 16:19:03 2004
***************
*** 0 ****
--- 1,256 ----
+ /* Based on http://www.perldoc.com/css/perldoc.css */
+ 
+ @import url("../llvm.css");
+ 
+ body { font-family: Arial,Helvetica; }
+ 
+ blockquote { margin: 10pt;  }
+ 
+ h1, a { color: #336699; }
+ 
+ 
+ /*** Top menu style ****/
+ .mmenuon { 
+  font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
+  color: #ff6600; font-size: 10pt;
+  }
+ .mmenuoff { 
+  font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
+  color: #ffffff; font-size: 10pt;
+ }	  
+ .cpyright {
+  font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
+  color: #ffffff; font-size: xx-small;
+ }
+ .cpyrightText {
+  font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
+  color: #ffffff; font-size: xx-small;
+ }
+ .sections { 
+  font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
+  color: #336699; font-size: 11pt;
+ }	 
+ .dsections { 
+  font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
+  color: #336699; font-size: 12pt;
+ }	
+ .slink { 
+  font-family: Arial,Helvetica; font-weight: normal; text-decoration: none;
+  color: #000000; font-size: 9pt;
+ }	 
+ 
+ .slink2 { font-family: Arial,Helvetica; text-decoration: none; color: #336699; }	 
+ 
+ .maintitle { 
+  font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
+  color: #336699; font-size: 18pt;
+ }	 
+ .dblArrow {
+  font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
+  color: #336699; font-size: small;
+ }
+ .menuSec {
+  font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
+  color: #336699; font-size: small;
+ }
+ 
+ .newstext {
+  font-family: Arial,Helvetica; font-size: small;
+ }
+ 
+ .linkmenu {
+  font-family: Arial,Helvetica; color: #000000; font-weight: bold;
+  text-decoration: none;
+ }
+ 
+ P {
+  font-family: Arial,Helvetica;
+ }
+ 
+ PRE {
+     font-size: 10pt;
+ }
+ .quote { 
+  font-family: Times; text-decoration: none;
+  color: #000000; font-size: 9pt; font-style: italic;
+ }	
+ .smstd { font-family: Arial,Helvetica; color: #000000; font-size: x-small; } 
+ .std { font-family: Arial,Helvetica; color: #000000; } 
+ .meerkatTitle { 
+  font-family: sans-serif; font-size: x-small;  color: black;    }
+ 
+ .meerkatDescription { font-family: sans-serif; font-size: 10pt; color: black }
+ .meerkatCategory { 
+  font-family: sans-serif; font-size: 9pt; font-weight: bold; font-style: italic; 
+  color: brown; }
+ .meerkatChannel { 
+  font-family: sans-serif; font-size: 9pt; font-style: italic; color: brown; }
+ .meerkatDate { font-family: sans-serif; font-size: xx-small; color: #336699; }
+ 
+ .tocTitle {
+  font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
+  color: #333333; font-size: 10pt;
+ }
+ 
+ .toc-item {
+  font-family: Arial,Helvetica; font-weight: bold; 
+  color: #336699; font-size: 10pt; text-decoration: underline;
+ }
+ 
+ .perlVersion {
+  font-family: Arial,Helvetica; font-weight: bold; 
+  color: #336699; font-size: 10pt; text-decoration: none;
+ }
+ 
+ .podTitle {
+  font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
+  color: #000000;
+ }
+ 
+ .docTitle {
+  font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
+  color: #000000; font-size: 10pt;
+ }
+ .dotDot {
+  font-family: Arial,Helvetica; font-weight: bold; 
+  color: #000000; font-size: 9pt;
+ }
+ 
+ .docSec {
+  font-family: Arial,Helvetica; font-weight: normal; 
+  color: #333333; font-size: 9pt;
+ }
+ .docVersion {
+  font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
+  color: #336699; font-size: 10pt;
+ }
+ 
+ .docSecs-on {
+  font-family: Arial,Helvetica; font-weight: normal; text-decoration: none;
+  color: #ff0000; font-size: 10pt;
+ }
+ .docSecs-off {
+  font-family: Arial,Helvetica; font-weight: normal; text-decoration: none;
+  color: #333333; font-size: 10pt;
+ }
+ 
+ h2 {
+  font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
+  color: #336699; font-size: medium;
+ }
+ h1 {
+  font-family: Verdana,Arial,Helvetica; font-weight: bold; text-decoration: none;
+  color: #336699; font-size: large;
+ }
+ 
+ DL {
+  font-family: Arial,Helvetica; font-weight: normal; text-decoration: none;
+  color: #333333; font-size: 10pt;
+ }
+ 
+ UL > LI > A {
+  font-family: Arial,Helvetica; font-weight: bold;
+  color: #336699; font-size: 10pt;
+ }
+ 
+ .moduleInfo {
+  font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
+  color: #333333; font-size: 11pt;
+ }
+ 
+ .moduleInfoSec {
+  font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
+  color: #336699; font-size: 10pt;
+ }
+ 
+ .moduleInfoVal {
+  font-family: Arial,Helvetica; font-weight: normal; text-decoration: underline;
+  color: #000000; font-size: 10pt;
+ }
+ 
+ .cpanNavTitle {
+  font-family: Arial,Helvetica; font-weight: bold; 
+  color: #ffffff; font-size: 10pt;
+ }
+ .cpanNavLetter {
+  font-family: Arial,Helvetica; font-weight: bold; text-decoration: none; 
+  color: #333333; font-size: 9pt;
+ }
+ .cpanCat {
+  font-family: Arial,Helvetica; font-weight: bold; text-decoration: none; 
+  color: #336699; font-size: 9pt;
+ }
+ 
+ .bttndrkblue-bkgd-top {
+ 	background-color: #225688;
+ 	background-image: url(/global/mvc_objects/images/bttndrkblue_bgtop.gif);
+ }
+ .bttndrkblue-bkgd-left {
+ 	background-color: #225688;
+ 	background-image: url(/global/mvc_objects/images/bttndrkblue_bgleft.gif);
+ }
+ .bttndrkblue-bkgd {
+ 	padding-top: 0px;
+ 	padding-bottom: 0px;
+ 	margin-bottom: 0px;
+ 	margin-top: 0px;
+ 	background-repeat: no-repeat;
+ 	background-color: #225688;
+ 	background-image: url(/global/mvc_objects/images/bttndrkblue_bgmiddle.gif);
+ 	vertical-align: top;
+ }
+ .bttndrkblue-bkgd-right {
+ 	background-color: #225688;
+ 	background-image: url(/global/mvc_objects/images/bttndrkblue_bgright.gif);
+ }
+ .bttndrkblue-bkgd-bottom {
+ 	background-color: #225688;
+ 	background-image: url(/global/mvc_objects/images/bttndrkblue_bgbottom.gif);
+ }
+ .bttndrkblue-text a {
+ 	color: #ffffff;
+ 	text-decoration: none;
+ }
+ a.bttndrkblue-text:hover {
+ 	color: #ffDD3C;
+ 	text-decoration: none;
+ }
+ .bg-ltblue {
+ 	background-color: #f0f5fa;
+ } 
+ 
+ .border-left-b {
+ 	background: #f0f5fa url(/i/corner-leftline.gif) repeat-y;
+ } 
+ 
+ .border-right-b {
+ 	background: #f0f5fa url(/i/corner-rightline.gif) repeat-y;
+ } 
+ 
+ .border-top-b {
+ 	background: #f0f5fa url(/i/corner-topline.gif) repeat-x;
+ } 
+ 
+ .border-bottom-b {
+ 	background: #f0f5fa url(/i/corner-botline.gif) repeat-x;
+ } 
+ 
+ .border-right-w {
+ 	background: #ffffff url(/i/corner-rightline.gif) repeat-y;
+ } 
+ 
+ .border-top-w {
+ 	background: #ffffff url(/i/corner-topline.gif) repeat-x;
+ } 
+ 
+ .border-bottom-w {
+ 	background: #ffffff url(/i/corner-botline.gif) repeat-x;
+ } 
+ 
+ .bg-white {
+ 	background-color: #ffffff;
+ } 
+ 
+ .border-left-w {
+ 	background: #ffffff url(/i/corner-leftline.gif) repeat-y;
+ } 






More information about the llvm-commits mailing list