Home | History | Annotate | Download | only in docs

Lines Matching full:bitcode

86 assembler, disassembler, bitcode analyzer and bitcode optimizer.  It

91 GCC that compiles C and C++ code into LLVM bitcode. Currently, the GCC front
93 compiled into LLVM bitcode, a program can be manipulated with the LLVM tools
360 able to assemble, disassemble, analyze, and optimize LLVM bitcode. Code
676 <dt><tt>LLVM_LIB_SEARCH_PATH</tt>=<tt>/path/to/your/bitcode/libs</tt></dt>
678 locations of your bitcode libraries. It is provided only as a
680 tools and the C/C++ front-end will automatically use the bitcode files
1226 install bitcode libraries into the GCC front end's bitcode library
1227 directory. If you need to update your bitcode libraries,
1367 execute LLVM bitcode files directly. To do this, use commands like this (the
1380 This allows you to execute LLVM bitcode files directly. On Debian, you
1468 <dt><tt><b>llvm/lib/BitCode/</b></tt></dt>
1469 <dd>This directory holds code for reading and write LLVM bitcode.</dd>
1502 <dd> This directory contains libraries for executing LLVM bitcode directly
1532 <p>This directory contains libraries which are compiled into LLVM bitcode and
1597 the given LLVM bitcode files, optionally with an index for faster
1602 bitcode.</dd>
1605 <dd>The disassembler transforms the LLVM bitcode to human readable
1620 can directly execute LLVM bitcode (although very slowly...). For architectures
1627 translates LLVM bitcode to a native code assembly file or to C code (with
1633 bitcode or assembly (with the <tt>-emit-llvm</tt> option) instead of the
1640 <dd><tt>opt</tt> reads LLVM bitcode, applies a series of LLVM to LLVM
1642 the resultant bitcode. The '<tt>opt -help</tt>' command is a good way to
1645 LLVM bitcode file and print out the results. It is primarily useful for
1731 create bitcode by default: <i>gcc4</i> produces native code. As the example below illustrates,
1732 the '--emit-llvm' flag is needed to produce LLVM bitcode output. For <i>makefiles</i> and
1733 <i>configure</i> scripts, the CFLAGS variable needs '--emit-llvm' to produce bitcode
1764 <li><p>Next, compile the C file into a LLVM bitcode file:</p>
1772 the bitcode file.</p>