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
188 assemble, disassemble, analyze, and optimize LLVM bitcode. Code generation
911 execute LLVM bitcode files directly. To do this, use commands like this (the
921 This allows you to execute LLVM bitcode files directly. On Debian, you can also
982 ``llvm/lib/Bitcode/``
984 Code for reading and writing bitcode.
1013 Libraries for directly executing bitcode at runtime in interpreted and
1063 The archiver produces an archive containing the given LLVM bitcode files,
1068 The assembler transforms the human readable LLVM assembly to LLVM bitcode.
1072 The disassembler transforms the LLVM bitcode to human readable LLVM assembly.
1081 ``lli`` is the LLVM interpreter, which can directly execute LLVM bitcode
1089 ``llc`` is the LLVM backend compiler, which translates LLVM bitcode to a
1094 ``opt`` reads LLVM bitcode, applies a series of LLVM to LLVM transformations
1096 bitcode. '``opt -help``' is a good way to get a list of the
1099 ``opt`` can also run a specific analysis on an input LLVM bitcode
1189 #. Next, compile the C file into an LLVM bitcode file:
1197 the `standard LLVM tools <CommandGuide/index.html>`_ on the bitcode file.