xref: /freebsd/usr.bin/clang/lli/lli.1 (revision e39e854e27f53a784c3982cbeb68f4ad1cfd9162)
$FreeBSD$
Automatically generated by Pod::Man 2.23 (Pod::Simple 3.14)

Standard preamble:
========================================================================
..
..
.. Set up some character translations and predefined strings. \*(-- will
give an unbreakable dash, \*(PI will give pi, \*(L" will give a left
double quote, and \*(R" will give a right double quote. \*(C+ will
give a nicer C++. Capital omega is used to do unbreakable dashes and
therefore won't be available. \*(C` and \*(C' expand to `' in nroff,
nothing in troff, for use with C<>.
.tr \(*W- . ds -- \(*W- . ds PI pi . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch . ds L" "" . ds R" "" . ds C` "" . ds C' "" 'br\} . ds -- \|\(em\| . ds PI \(*p . ds L" `` . ds R" '' 'br\}
Escape single quotes in literal strings from groff's Unicode transform.

If the F register is turned on, we'll generate index entries on stderr for
titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
entries marked with X<> in POD. Of course, you'll have to process the
output yourself in some meaningful fashion.
. de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . nr % 0 . rr F .\} . de IX .. .\}
Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2).
Fear. Run. Save yourself. No user-serviceable parts.
. \" fudge factors for nroff and troff . ds #H 0 . ds #V .8m . ds #F .3m . ds #[ \f1 . ds #] .\} . ds #H ((1u-(\\\\n(.fu%2u))*.13m) . ds #V .6m . ds #F 0 . ds #[ \& . ds #] \& .\} . \" simple accents for nroff and troff . ds ' \& . ds ` \& . ds ^ \& . ds , \& . ds ~ ~ . ds / .\} . ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u" . ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u' . ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u' . ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u' . ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u' . ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u' .\} . \" troff and (daisy-wheel) nroff accents . \" corrections for vroff . \" for low resolution devices (crt and lpr) \{\ . ds : e . ds 8 ss . ds o a . ds d- d\h'-1'\(ga . ds D- D\h'-1'\(hy . ds th \o'bp' . ds Th \o'LP' . ds ae ae . ds Ae AE .\} ========================================================================

Title "LLI 1"
LLI 1 "2012-04-05" "LLVM 3.1" "LLVM Command Guide"
For nroff, turn off justification. Always turn off hyphenation; it makes
way too many mistakes in technical documents.
"NAME"
lli - directly execute programs from LLVM bitcode
"SYNOPSIS"
Header "SYNOPSIS" \fBlli [options] [filename] [program args]
"DESCRIPTION"
Header "DESCRIPTION" \fBlli directly executes programs in \s-1LLVM\s0 bitcode format. It takes a program in \s-1LLVM\s0 bitcode format and executes it using a just-in-time compiler, if one is available for the current architecture, or an interpreter. lli takes all of the same code generator options as llc, but they are only effective when \fBlli is using the just-in-time compiler.

If filename is not specified, then lli reads the \s-1LLVM\s0 bitcode for the program from standard input.

The optional args specified on the command line are passed to the program as arguments.

"GENERAL OPTIONS"
Header "GENERAL OPTIONS"
"-fake-argv0=executable" 4
Item "-fake-argv0=executable" Override the \*(C`argv[0]\*(C' value passed into the executing program.
"-force-interpreter={false,true}" 4
Item "-force-interpreter={false,true}" If set to true, use the interpreter even if a just-in-time compiler is available for this architecture. Defaults to false.
"-help" 4
Item "-help" Print a summary of command line options.
"-load=puginfilename" 4
Item "-load=puginfilename" Causes lli to load the plugin (shared object) named pluginfilename and use it for optimization.
"-stats" 4
Item "-stats" Print statistics from the code-generation passes. This is only meaningful for the just-in-time compiler, at present.
"-time-passes" 4
Item "-time-passes" Record the amount of time needed for each code-generation pass and print it to standard error.
"-version" 4
Item "-version" Print out the version of lli and exit without doing anything else.
"TARGET OPTIONS"
Header "TARGET OPTIONS"
"-mtriple=target triple" 4
Item "-mtriple=target triple" Override the target triple specified in the input bitcode file with the specified string. This may result in a crash if you pick an architecture which is not compatible with the current system.
"-march=arch" 4
Item "-march=arch" Specify the architecture for which to generate assembly, overriding the target encoded in the bitcode file. See the output of llc -help for a list of valid architectures. By default this is inferred from the target triple or autodetected to the current architecture.
"-mcpu=cpuname" 4
Item "-mcpu=cpuname" Specify a specific chip in the current architecture to generate code for. By default this is inferred from the target triple and autodetected to the current architecture. For a list of available CPUs, use: \fBllvm-as < /dev/null | llc -march=xyz -mcpu=help
"-mattr=a1,+a2,-a3,..." 4
Item "-mattr=a1,+a2,-a3,..." Override or control specific attributes of the target, such as whether \s-1SIMD\s0 operations are enabled or not. The default set of attributes is set by the current \s-1CPU\s0. For a list of available attributes, use: \fBllvm-as < /dev/null | llc -march=xyz -mattr=help
"FLOATING POINT OPTIONS"
Header "FLOATING POINT OPTIONS"
"-disable-excess-fp-precision" 4
Item "-disable-excess-fp-precision" Disable optimizations that may increase floating point precision.
"-enable-no-infs-fp-math" 4
Item "-enable-no-infs-fp-math" Enable optimizations that assume no Inf values.
"-enable-no-nans-fp-math" 4
Item "-enable-no-nans-fp-math" Enable optimizations that assume no \s-1NAN\s0 values.
"-enable-unsafe-fp-math" 4
Item "-enable-unsafe-fp-math" Causes lli to enable optimizations that may decrease floating point precision.
"-soft-float" 4
Item "-soft-float" Causes lli to generate software floating point library calls instead of equivalent hardware instructions.
"CODE GENERATION OPTIONS"
Header "CODE GENERATION OPTIONS"
"-code-model=model" 4
Item "-code-model=model" Choose the code model from: .Sp .Vb 5 default: Target default code model small: Small code model kernel: Kernel code model medium: Medium code model large: Large code model .Ve
"-disable-post-RA-scheduler" 4
Item "-disable-post-RA-scheduler" Disable scheduling after register allocation.
"-disable-spill-fusing" 4
Item "-disable-spill-fusing" Disable fusing of spill code into instructions.
"-enable-correct-eh-support" 4
Item "-enable-correct-eh-support" Make the -lowerinvoke pass insert expensive, but correct, \s-1EH\s0 code.
"-jit-enable-eh" 4
Item "-jit-enable-eh" Exception handling should be enabled in the just-in-time compiler.
"-join-liveintervals" 4
Item "-join-liveintervals" Coalesce copies (default=true).
"-nozero-initialized-in-bss Don't place zero-initialized symbols into the \s-1BSS\s0 section." 4
Item "-nozero-initialized-in-bss Don't place zero-initialized symbols into the BSS section."

0

"-pre-RA-sched=scheduler" 4
Item "-pre-RA-sched=scheduler"

Instruction schedulers available (before register allocation): .Sp .Vb 7 =default: Best scheduler for the target =none: No scheduling: breadth first sequencing =simple: Simple two pass scheduling: minimize critical path and maximize processor utilization =simple-noitin: Simple two pass scheduling: Same as simple except using generic latency =list-burr: Bottom-up register reduction list scheduling =list-tdrr: Top-down register reduction list scheduling =list-td: Top-down list scheduler -print-machineinstrs - Print generated machine code .Ve

"-regalloc=allocator" 4
Item "-regalloc=allocator" Register allocator to use (default=linearscan) .Sp .Vb 3 =bigblock: Big-block register allocator =linearscan: linear scan register allocator =local - local register allocator =simple: simple register allocator .Ve
"-relocation-model=model" 4
Item "-relocation-model=model" Choose relocation model from: .Sp .Vb 3 =default: Target default relocation model =static: Non-relocatable code =pic - Fully relocatable, position independent code =dynamic-no-pic: Relocatable external references, non-relocatable code .Ve
"-spiller" 4
Item "-spiller" Spiller to use (default=local) .Sp .Vb 2 =simple: simple spiller =local: local spiller .Ve
"-x86-asm-syntax=syntax" 4
Item "-x86-asm-syntax=syntax" Choose style of code to emit from X86 backend: .Sp .Vb 2 =att: Emit AT&T-style assembly =intel: Emit Intel-style assembly .Ve
"EXIT STATUS"
Header "EXIT STATUS" If lli fails to load the program, it will exit with an exit code of 1. Otherwise, it will return the exit code of the program it executes.
"SEE ALSO"
Header "SEE ALSO" llc
"AUTHOR"
Header "AUTHOR" Maintained by the \s-1LLVM\s0 Team (<http://llvm.org/>).