HomeSort by relevance Sort by last modified time
    Searched full:bitcode (Results 276 - 300 of 530) sorted by null

<<11121314151617181920>>

  /external/swiftshader/third_party/LLVM/tools/bugpoint/
BugDriver.h 174 std::string Bitcode,
249 /// runPasses - Run the specified passes on Program, outputting a bitcode
252 /// otherwise return false. If DeleteOutput is set to true, the bitcode is
275 /// bitcode file. If an error occurs, true is returned.
297 /// ParseInputFile - Given a bitcode or assembly input filename, parse and
  /external/swiftshader/third_party/LLVM/tools/llvm-nm/
llvm-nm.cpp 11 // that is, it prints out the names of symbols in a bitcode file,
21 #include "llvm/Bitcode/ReaderWriter.h"
22 #include "llvm/Bitcode/Archive.h"
55 InputFilenames(cl::Positional, cl::desc("<input bitcode files>"),
332 // Try opening it as a bitcode file.
  /frameworks/compile/libbcc/tools/bcc_compat/
Main.cpp 46 llvm::cl::desc("<input bitcode files>"));
86 // of generating shared library directly from given bitcode. It only
91 "the input bitcode to the shared "
95 OptShared("shared", llvm::cl::desc("Create a shared library from input bitcode "
225 // There's only one input bitcode file.
  /external/swiftshader/third_party/LLVM/docs/
GettingStarted.html 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
    [all...]
HowToSubmitABug.html 237 that causes an error, and simplify the bitcode file as much as it can to assist
263 bugpoint -run-jit -output=[correct output file] [bitcode file] \
273 bugpoint -run-llc -output=[correct output file] [bitcode file] \
292 with two bitcode files: a <em>safe</em> file which can be compiled with the C
301 <li><p>Regenerate the shared object from the safe bitcode file:</p>
310 <li><p>If debugging LLC, compile test bitcode native and link with the shared
322 bitcode:</p>
BitCodeFormat.html 6 <title>LLVM Bitcode File Format</title>
10 <h1> LLVM Bitcode File Format</h1>
25 <li><a href="#wrapper">Bitcode Wrapper Format</a>
67 What is commonly known as the LLVM bitcode file format (also, sometimes
124 <p>The first two bytes of a bitcode file are 'BC' (0x42, 0x43).
126 bitcode tools can look at only the first two bytes to verify the file is
127 bitcode, while application-specific programs will want to look at all four.</p>
268 whose meaning is defined by Bitcode; block IDs 8 and greater are
605 this to dump out bitcode files symbolically.</p>
610 this to dump out bitcode files symbolically.</p>
    [all...]
  /external/llvm/include/llvm-c/
lto.h 12 |* llvm bitcode files. *|
139 * Return true if \p Buffer contains a bitcode file with ObjC code (category
542 * \brief Set whether to embed uselists in bitcode.
545 * output bitcode. This should be turned on for all -save-temps output.
718 * Sets the path to a directory to use as a storage for temporary bitcode files.
719 * The intention is to make the bitcode files available for debugging at various
736 * be bitcode.
  /frameworks/compile/libbcc/bcinfo/
MetadataExtractor.cpp 27 #include "llvm/Bitcode/ReaderWriter.h"
180 MetadataExtractor::MetadataExtractor(const char *bitcode, size_t bitcodeSize)
181 : mModule(nullptr), mBitcode(bitcode), mBitcodeSize(bitcodeSize),
192 BitcodeWrapper wrapper(bitcode, bitcodeSize);
416 // Handle legacy case for pre-ICS bitcode that doesn't contain a metadata
601 ALOGE("Invalid/empty bitcode/module");
618 ALOGE("Could not parse bitcode file");
  /external/clang/lib/CodeGen/
BackendUtil.cpp 22 #include "llvm/Bitcode/BitcodeWriterPass.h"
23 #include "llvm/Bitcode/ReaderWriter.h"
817 // With -fembed-bitcode, save a copy of the llvm IR as data in the
838 // Embed the bitcode for the llvm module.
842 // Create a constant that contains the bitcode.
844 // ArrayRef. It is also legal to create a bitcode marker even Buf is empty.
848 // If the input is LLVM Assembly, bitcode is produced by serializing
855 // If the input is LLVM bitcode, write the input byte stream directly
    [all...]
  /external/llvm/include/llvm/LTO/legacy/
LTOCodeGenerator.h 14 // The Pre-IPO phase compiles source code into bitcode file. The resulting
15 // bitcode files, along with object files and libraries, will be fed to the
17 // the resulting bitcode file disguises itself as an object file, and therefore
  /external/llvm/lib/Bitcode/Writer/
ValueEnumerator.h 1 //===-- Bitcode/Writer/ValueEnumerator.h - Number values --------*- C++ -*-===//
71 unsigned ID = 0; ///< The implicit ID of this metadata in bitcode.
263 /// cost of reading bitcode records, and so the primary consideration is that
BitcodeWriter.cpp 1 //===--- Bitcode/Writer/BitcodeWriter.cpp - Bitcode Writer ----------------===//
10 // Bitcode writer implementation.
17 #include "llvm/Bitcode/BitstreamWriter.h"
18 #include "llvm/Bitcode/LLVMBitCodes.h"
19 #include "llvm/Bitcode/ReaderWriter.h"
41 /// These are manifest constants used by the bitcode writer. They do not need to
67 /// Abstract class to manage the bitcode writing, subclassed for each bitcode
72 /// Pointer to the buffer allocated by caller for bitcode writing
    [all...]
  /external/llvm/tools/llvm-extract/
llvm-extract.cpp 17 #include "llvm/Bitcode/BitcodeWriterPass.h"
39 InputFilename(cl::Positional, cl::desc("<input bitcode file>"),
95 cl::desc("Preserve use-list order when writing LLVM bitcode."),
  /external/swiftshader/third_party/LLVM/tools/llvm-prof/
llvm-prof.cpp 24 #include "llvm/Bitcode/ReaderWriter.h"
43 BitcodeFile(cl::Positional, cl::desc("<program bitcode file>"),
265 // Read in the bitcode file...
  /external/llvm/docs/
BitCodeFormat.rst 5 LLVM Bitcode File Format
20 What is commonly known as the LLVM bitcode file format (also, sometimes
65 The first two bytes of a bitcode file are 'BC' (``0x42``, ``0x43``). The second
66 two bytes are an application-specific magic number. Generic bitcode tools can
67 look at only the first two bytes to verify the file is bitcode, while
171 meaning is defined by Bitcode; block IDs 8 and greater are application
432 llvm-bcanalyzer can use this to dump out bitcode files symbolically.
437 use this to dump out bitcode files symbolically.
445 Bitcode Wrapper Format
448 Bitcode files for LLVM IR may optionally be wrapped in a simple wrappe
    [all...]
  /external/clang/include/clang/CodeGen/
CodeGenAction.h 28 // Vector of {Linker::Flags, Module*} pairs to specify bitcode
  /external/clang/include/clang/Frontend/
SerializedDiagnosticReader.h 15 #include "llvm/Bitcode/BitstreamReader.h"
  /external/clang/lib/Frontend/
TestModuleFileExtension.cpp 13 #include "llvm/Bitcode/BitstreamWriter.h"
  /external/llvm/docs/CommandGuide/
llvm-config.rst 166 Includes either a native JIT or the bitcode interpreter.
  /external/llvm/include/llvm/Analysis/
ModuleSummaryAnalysis.h 81 // object for the module, to be written to bitcode or LLVM assembly.
  /external/llvm/include/llvm/LTO/
LTO.h 28 /// Helper to load a module from bitcode.
  /external/llvm/include/llvm/Support/
StreamingMemoryObject.h 35 /// remaining bytes down by s. This is used to skip past the bitcode header,
  /external/llvm/lib/Object/
Error.cpp 52 return "Bitcode section not found in object file";
  /external/llvm/lib/Support/
DataStream.cpp 12 // bitcode. An example implementation of streaming from a file or stdin
  /external/llvm/test/Bitcode/
calling-conventions.3.2.ll 6 ; older bitcode files.

Completed in 6251 milliseconds

<<11121314151617181920>>