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
435 ``LLVM_LIB_SEARCH_PATH=/path/to/your/bitcode/libs``
438 locations of your bitcode libraries. It is provided only as a convenience
440 C/C++ front-end will automatically use the bitcode files installed in its
862 install bitcode libraries into the GCC front end's bitcode library directory.
863 If you need to update your bitcode libraries, this is the target to use once
1002 execute LLVM bitcode files directly. To do this, use commands like this (the
1012 This allows you to execute LLVM bitcode files directly. On Debian, you can also
1077 ``llvm/lib/Bitcode/``
1079 This directory holds code for reading and write LLVM bitcode.
1118 This directory contains libraries for executing LLVM bitcode directly at
1137 This directory contains libraries which are compiled into LLVM bitcode and used
1184 The archiver produces an archive containing the given LLVM bitcode files,
1189 The assembler transforms the human readable LLVM assembly to LLVM bitcode.
1193 The disassembler transforms the LLVM bitcode to human readable LLVM assembly.
1202 ``lli`` is the LLVM interpreter, which can directly execute LLVM bitcode
1210 ``llc`` is the LLVM backend compiler, which translates LLVM bitcode to a
1215 ``opt`` reads LLVM bitcode, applies a series of LLVM to LLVM transformations
1217 bitcode. The '``opt -help``' command is a good way to get a list of the
1220 ``opt`` can also be used to run a specific analysis on an input LLVM bitcode
1315 #. Next, compile the C file into a LLVM bitcode file:
1323 the `standard LLVM tools <CommandGuide/index.html>`_ on the bitcode file.