/external/llvm/docs/CommandGuide/ |
lli.rst | 1 lli - directly execute programs from LLVM bitcode 12 :program:`lli` directly executes programs in LLVM bitcode format. It takes a program 13 in LLVM bitcode format and executes it using a just-in-time compiler or an 22 If `filename` is not specified, then :program:`lli` reads the LLVM bitcode for the 68 Override the target triple specified in the input bitcode file with the 75 encoded in the bitcode file. See the output of **llc -help** for a list of
|
/external/llvm/tools/bugpoint/ |
ToolRunner.cpp | 164 int ExecuteProgram(const std::string &Bitcode, 177 int LLI::ExecuteProgram(const std::string &Bitcode, 200 LLIArgs.push_back(Bitcode.c_str()); 268 // Allows using a custom command for compiling the bitcode, thus allows, for 269 // example, to compile a bitcode fragment without linking or executing, then 280 void compileProgram(const std::string &Bitcode, 285 int ExecuteProgram(const std::string &Bitcode, 302 void CustomCompiler::compileProgram(const std::string &Bitcode, 312 ProgramArgs.push_back(Bitcode.c_str()); 329 // Allows using a custom command for executing the bitcode, thus allows [all...] |
/external/spirv-llvm/tools/llvm-spirv/ |
llvm-spirv.cpp | 36 /// llvm-spirv - Read LLVM bitcode from stdin, write SPIRV to stdout 37 /// llvm-spirv x.bc - Read LLVM bitcode from the x.bc file, write SPIR-V 39 /// llvm-spirv -r - Read SPIRV from stdin, write LLVM bitcode to stdout 48 #include "llvm/Bitcode/ReaderWriter.h" 132 errs() << "Fails to load bitcode: " << EC.message(); 252 errs() << "Fails to load bitcode: " << EC.message();
|
/external/swiftshader/third_party/LLVM/tools/bugpoint/ |
BugDriver.cpp | 82 /// ParseInputFile - Given a bitcode or assembly input filename, parse and
110 // them, either as assembly or bitcode, then link them together. It returns
111 // true on failure (if, for example, an input bitcode file could not be
160 // which should generate a bitcode file. If it does generate a bitcode
169 // Set up the execution environment, selecting a method to run LLVM bitcode.
|
ExecutionDriver.cpp | 11 // various ways of running LLVM bitcode.
56 "compile the bitcode. Useful to avoid linking."),
59 "the bitcode. Useful for cross-compilation."),
70 "the bitcode. Useful for cross-compilation."),
99 cl::desc("Command to compile the bitcode (use with -compile-custom) "
104 cl::desc("Command to execute the bitcode (use with -run-custom) "
311 // Emit the program to a bitcode file...
320 errs() << ToolName << ": Error emitting bitcode to file '"
325 // Remove the temporary bitcode file when we are done.
348 // Emit the program to a bitcode file... [all...] |
/external/llvm/lib/Support/ |
StreamingMemoryObject.cpp | 72 // If the bitcode has a header, then its size is known, and we don't have to 90 // Note: For wrapped bitcode files will set ObjectSize after the
|
/external/llvm/tools/llvm-c-test/ |
diagnostic.c | 75 // We do not return if the bitcode was invalid, as we want to test whether 77 fprintf(stderr, "Error parsing bitcode: %s\n", msg);
|
module.c | 23 fprintf(stderr, "Error with new bitcode parser: %s\n", CErr); 54 fprintf(stderr, "Error parsing bitcode: %s\n", msg);
|
/external/llvm/tools/llvm-link/ |
llvm-link.cpp | 16 #include "llvm/Bitcode/ReaderWriter.h" 44 cl::desc("<input bitcode files>")); 49 "input bitcode file which can override previously defined symbol(s)")); 56 "imported from bitcode in filename")); 100 cl::desc("Preserve use-list order when writing LLVM bitcode."), 108 // Read the specified bitcode file in and return it. This routine searches the 221 // Identify the requested function and its bitcode source file. 389 if (Verbose) errs() << "Writing bitcode...\n";
|
/external/llvm/tools/llvm-split/ |
llvm-split.cpp | 15 #include "llvm/Bitcode/ReaderWriter.h" 29 InputFilename(cl::Positional, cl::desc("<input bitcode file>"),
|
/external/swiftshader/third_party/LLVM/include/llvm/ |
Linker.h | 33 /// The Linker can link Modules from memory, bitcode files, or bitcode 171 /// This function links the bitcode \p Files into the composite module. 174 /// unresolved symbols. This function just loads each bitcode file and 183 /// This function links a single bitcode file, \p File, into the composite 185 /// just loads the bitcode file and calls LinkInModule on it. If an error 225 /// This function links one bitcode archive, \p Filename, into the module. 281 /// Read in and parse the bitcode file named by FN and return the
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
SystemUtils.cpp | 25 errs() << "WARNING: You're attempting to print out a bitcode file.\n" 27 "you REALLY want to taste LLVM bitcode first-hand, you\n"
|
/frameworks/compile/libbcc/tests/libbcc/ |
getelementptr.ll | 64 ; The following named metadata would not be present in a bitcode file, 65 ; but instead synthesized by bcc from the bitcode wrapper. However,
|
tbaa-through-alloca.ll | 57 ; The following named metadata would not be present in a bitcode file, 58 ; but instead synthesized by bcc from the bitcode wrapper. However,
|
/frameworks/compile/libbcc/tools/bcc/ |
Main.cpp | 59 llvm::cl::desc("<input bitcode files>")); 287 ALOGE("Failed to compile bitcode, -bclib was not specified"); 317 ALOGE("Failed to load bitcode from path %s! (%s)", 323 const char *bitcode = input_data->getBufferStart(); local 329 bitcode, bitcodeSize, 340 bitcode, bitcodeSize); 342 // If the bitcode fails verification in the bitcode loader, the returned Source is set to NULL.
|
/frameworks/compile/mclinker/include/mcld/ |
LinkerConfig.h | 26 * bitcode() - the bitcode being linked
|
/frameworks/compile/slang/lit-tests/bitcode_wrapper/ |
bitcode_wrapper_test.ll | 1 ; This test assembles this file to bitcode with all supported target 2 ; API versions, then checks that the bitcode file was generated and
|
/cts/tests/tests/renderscriptlegacy/src/android/renderscriptlegacy/cts/ |
VersionTest.java | 23 * Test for appropriate handling of versioned bitcode.
|
/external/clang/include/clang/CodeGen/ |
BackendUtil.h | 30 Backend_EmitBC, ///< Emit LLVM bitcode files
|
/external/clang/include/clang/Frontend/ |
SerializedDiagnostics.h | 13 #include "llvm/Bitcode/BitCodes.h"
|
/external/clang/lib/Frontend/ |
TestModuleFileExtension.h | 15 #include "llvm/Bitcode/BitstreamReader.h"
|
/external/llvm/bindings/go/llvm/ |
bitwriter.go | 24 var writeBitcodeToFileErr = errors.New("Failed to write bitcode to file")
|
/external/llvm/include/llvm/Bitcode/ |
BitCodes.h | 1 //===- BitCodes.h - Enum values for the bitcode format ----------*- C++ -*-===// 10 // This header Bitcode enum values. 38 END_BLOCK = 0, // Must be zero to guarantee termination for broken bitcode. 56 /// StandardBlockIDs - All bitcode files can optionally include a BLOCKINFO
|
/external/llvm/include/llvm/LTO/legacy/ |
LTOModule.h | 64 /// Returns 'true' if the file or memory contents is LLVM bitcode. 71 /// Returns 'true' if the memory buffer is LLVM bitcode for the specified 77 /// bitcode, or "" if the bitcode does not contains any.
|
/external/llvm/include/llvm/Support/ |
SystemUtils.h | 22 /// generate a warning message to errs() advising against display of bitcode
|