From: Chris Lattner Date: Tue, 7 Oct 2003 19:46:37 +0000 (+0000) Subject: Add pointer to LLC for code generator options. a bunch of stuff which should be X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=090fcc185375a0e7df8515b562b21122fc87b9e3;p=oota-llvm.git Add pointer to LLC for code generator options. a bunch of stuff which should be git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8932 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/CommandGuide/lli.html b/docs/CommandGuide/lli.html index 2b504472be6..dd6119bc7e3 100644 --- a/docs/CommandGuide/lli.html +++ b/docs/CommandGuide/lli.html @@ -6,7 +6,7 @@ LLVM: lli tool
-

LLVM: lli tool

+

LLVM: lli tool


@@ -14,56 +14,36 @@ LLVM: lli tool NAME -lli +lli

SYNOPSIS

-lli [options] [filename] [args ...] +lli [options] [filename] [args ...]

DESCRIPTION

-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 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. lli takes all of the same code generator option as the +llc tool as well.

If filename is not specified, then lli reads its input from standard input.

-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.

-

-MAIN FUNCTION -

- -The main() function of the bytecode program is where execution starts. It -is passed three arguments: - -
    -
  • - int argc - The number of command line arguments. -

    - -

  • - char ** argv - The arguments to the program. -

    - -

  • - char ** envp - An array of environment variables used by the program. -
- -The first argument to the program is the name of the executed bytecode file -(with the .bc suffix removed).

OPTIONS

    -
  • -array-checks +
  • -array-checks (interpreter specific)
    Enable array bound checks.

    @@ -73,11 +53,6 @@ OPTIONS Print a summary of command line options.

    -

  • -disable-fp-elim -
    - Disable frame pointer elimination optimization. -

    -

  • -stats
    Print statistics. @@ -100,7 +75,7 @@ will exit with a non-zero value.

    SEE ALSO

    -llvm-dis +llc
    LLVM Team