[llvm-commits] CVS: llvm/www/docs/CommandGuide/lli.html

Chris Lattner lattner at cs.uiuc.edu
Tue Oct 7 14:47:01 PDT 2003


Changes in directory llvm/www/docs/CommandGuide:

lli.html updated: 1.4 -> 1.5

---
Log message:

Add pointer to LLC for code generator options.  <tt> a bunch of stuff which should be


---
Diffs of the changes:  (+10 -35)

Index: llvm/www/docs/CommandGuide/lli.html
diff -u llvm/www/docs/CommandGuide/lli.html:1.4 llvm/www/docs/CommandGuide/lli.html:1.5
--- llvm/www/docs/CommandGuide/lli.html:1.4	Mon Sep 29 15:10:08 2003
+++ llvm/www/docs/CommandGuide/lli.html	Tue Oct  7 14:46:37 2003
@@ -6,7 +6,7 @@
 <body>
 
 <center>
-<h1>LLVM: lli tool</h1>
+<h1>LLVM: <tt>lli</tt> tool</h1>
 </center>
 <HR>
 
@@ -14,56 +14,36 @@
 NAME
 </h3>
 
-lli
+<tt>lli</tt>
 
 <h3>
 SYNOPSIS
 </h3>
 
-lli [options] [filename] [args ...]
+<tt>lli [options] [filename] [args ...]</tt>
 <h3>
 DESCRIPTION
 </h3>
 
-The lli command is the LLVM interpreter.  It takes a program in LLVM bytecode
-format and executes it using an interpreter or a Just In Time (JIT) compiler.
+The <tt>lli</tt> command is the LLVM interpreter.  It takes a program in LLVM
+bytecode format and executes it using an interpreter or a Just In Time (JIT)
+compiler.  <tt>lli</tt> takes all of the same code generator option as the
+<tt><a href="llc.html">llc</a></tt> tool as well.
 <p>
 
 If filename is not specified, then lli reads its input from standard input.
 <p>
-The optional arguments specified on the command line are passed to the executed
+The optional "args" specified on the command line are passed to the executed
 program as arguments.
 <p>
 
-<h3>
-MAIN FUNCTION
-</h3>
-
-The main() function of the bytecode program is where execution starts.  It
-is passed three arguments:
-
-<ul>
-    <li>
-    int argc - The number of command line arguments.
-    <p>
-
-    <li>
-    char ** argv - The arguments to the program.
-    <p>
-
-    <li>
-    char ** envp - An array of environment variables used by the program.
-</ul>
-
-The first argument to the program is the name of the executed bytecode file
-(with the .bc suffix removed).
 
 <h3>
 OPTIONS
 </h3>
 
 <ul>
-	<li> -array-checks
+	<li> -array-checks (interpreter specific)
 	<br>
 	Enable array bound checks.
 	<p>
@@ -73,11 +53,6 @@
 	Print a summary of command line options.
 	<p>
 
-	<li> -disable-fp-elim
-	<br>
-	Disable frame pointer elimination optimization.
-	<p>
-
 	<li> -stats
 	<br>
 	Print statistics.
@@ -100,7 +75,7 @@
 <h3>
 SEE ALSO
 </h3>
-llvm-dis
+<a href="llc.html"><tt>llc</tt></a>
 
 <HR>
 <a href="http://llvm.cs.uiuc.edu">LLVM Team</a>





More information about the llvm-commits mailing list