Lines Matching full:program
4 .. program:: lli
9 :program:`lli` [*options*] [*filename*] [*program args*]
14 :program:`lli` directly executes programs in LLVM bitcode format. It takes a program
18 :program:`lli` is *not* an emulator. It will not execute IR of different architectures
21 The JIT compiler takes the same arguments as other tools, like :program:`llc`,
24 If `filename` is not specified, then :program:`lli` reads the LLVM bitcode for the
25 program from standard input.
27 The optional *args* specified on the command line are passed to the program as
35 Override the ``argv[0]`` value passed into the executing program.
48 Causes :program:`lli` to load the plugin (shared object) named *pluginfilename* and use
63 Print out the version of :program:`lli` and exit without doing anything else.
112 Causes :program:`lli` to enable optimizations that may decrease floating point
117 Causes :program:`lli` to generate software floating point library calls instead of
213 If :program:`lli` fails to load the program, it will exit with an exit code of 1.
214 Otherwise, it will return the exit code of the program it executes.