Home | History | Annotate | Download | only in docs

Lines Matching full:bitcode

16 contains an assembler, disassembler, bitcode analyzer and bitcode optimizer.  It
22 bitcode. Once compiled into LLVM bitcode, a program can be manipulated with the
196 assemble, disassemble, analyze, and optimize LLVM bitcode. Code generation
431 ``LLVM_LIB_SEARCH_PATH=/path/to/your/bitcode/libs``
434 locations of your bitcode libraries. It is provided only as a convenience
436 C/C++ front-end will automatically use the bitcode files installed in its
856 install bitcode libraries into the GCC front end's bitcode library directory.
857 If you need to update your bitcode libraries, this is the target to use once
996 execute LLVM bitcode files directly. To do this, use commands like this (the
1006 This allows you to execute LLVM bitcode files directly. On Debian, you can also
1071 ``llvm/lib/BitCode/``
1073 This directory holds code for reading and write LLVM bitcode.
1112 This directory contains libraries for executing LLVM bitcode directly at
1131 This directory contains libraries which are compiled into LLVM bitcode and used
1178 The archiver produces an archive containing the given LLVM bitcode files,
1183 The assembler transforms the human readable LLVM assembly to LLVM bitcode.
1187 The disassembler transforms the LLVM bitcode to human readable LLVM assembly.
1196 ``lli`` is the LLVM interpreter, which can directly execute LLVM bitcode
1204 ``llc`` is the LLVM backend compiler, which translates LLVM bitcode to a
1209 ``opt`` reads LLVM bitcode, applies a series of LLVM to LLVM transformations
1211 bitcode. The '``opt -help``' command is a good way to get a list of the
1214 ``opt`` can also be used to run a specific analysis on an input LLVM bitcode
1309 #. Next, compile the C file into a LLVM bitcode file:
1317 the `standard LLVM tools <CommandGuide/index.html>`_ on the bitcode file.