HomeSort by relevance Sort by last modified time
    Searched full:bitcode (Results 76 - 100 of 264) sorted by null

1 2 34 5 6 7 8 91011

  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitReader_3_0.h 21 #include "llvm/Bitcode/BitstreamReader.h"
22 #include "llvm/Bitcode/LLVMBitCodes.h"
  /frameworks/compile/slang/lit-tests/
README 6 used to verify certain strings are present in the output bitcode files.
25 more than just emitted bitcode. For example, with some changes to the testcases
  /external/clang/include/clang/CodeGen/
BackendUtil.h 27 Backend_EmitBC, ///< Emit LLVM bitcode files
  /external/clang/test/CodeGen/
arm-pnaclcall.c 5 // Test that functions with pnaclcall attribute generate portable bitcode
  /external/llvm/examples/BrainF/
BrainFDriver.cpp 11 // which it can then run using the JIT or output as BitCode.
21 // ./BrainF prog.bf #Write as BitCode
23 // lli prog.bf.bc #Run generated BitCode
29 #include "llvm/Bitcode/ReaderWriter.h"
  /external/llvm/examples/ModuleMaker/
README.txt 7 LLVM bitcode file to standard output. It is designed to show some basic
  /external/llvm/lib/
Makefile 13 PARALLEL_DIRS := IR AsmParser Bitcode Archive Analysis Transforms CodeGen \
LLVMBuild.txt 19 subdirectories = Analysis Archive AsmParser Bitcode CodeGen DebugInfo ExecutionEngine Linker IR MC Object Option Support TableGen Target Transforms
  /external/llvm/tools/llvm-link/
llvm-link.cpp 17 #include "llvm/Bitcode/ReaderWriter.h"
33 cl::desc("<input bitcode files>"));
52 // LoadFile - Read the specified bitcode file in and return it. This routine
132 if (Verbose) errs() << "Writing bitcode...\n";
  /external/llvm/unittests/
Makefile 12 PARALLEL_DIRS = ADT ExecutionEngine Support Transforms IR Analysis Bitcode
  /frameworks/compile/libbcc/include/bcinfo/Wrap/
file_wrapper_output.h 17 // Defines utility allowing files for bitcode output wrapping.
  /external/llvm/include/llvm/Bitcode/
LLVMBitCodes.h 1 //===- LLVMBitCodes.h - Enum values for the LLVM bitcode format -*- C++ -*-===//
10 // This header defines Bitcode enum values for LLVM IR bitcode files.
21 #include "llvm/Bitcode/BitCodes.h"
181 /// CastOpcodes - These are values used in the bitcode files to encode which
200 /// BinaryOpcodes - These are values used in the bitcode files to encode which
220 /// These are values used in the bitcode files to encode AtomicRMW operations.
BitCodes.h 1 //===- BitCodes.h - Enum values for the bitcode format ----------*- C++ -*-===//
10 // This header Bitcode enum values.
37 END_BLOCK = 0, // Must be zero to guarantee termination for broken bitcode.
55 /// StandardBlockIDs - All bitcode files can optionally include a BLOCKINFO
  /frameworks/compile/libbcc/bcinfo/
MetadataExtractor.cpp 26 #include "llvm/Bitcode/ReaderWriter.h"
62 MetadataExtractor::MetadataExtractor(const char *bitcode, size_t bitcodeSize)
63 : mModule(NULL), mBitcode(bitcode), mBitcodeSize(bitcodeSize),
70 BitcodeWrapper wrapper(bitcode, bitcodeSize);
331 // Handle legacy case for pre-ICS bitcode that doesn't contain a metadata
404 ALOGE("Invalid/empty bitcode/module");
420 ALOGE("Could not parse bitcode file");
  /external/llvm/docs/
GoldPlugin.rst 69 You can produce bitcode files from ``clang`` using ``-emit-llvm`` or
86 bitcode and native code.
124 $ clang -flto a.c -c -o a.o # <-- a.o is LLVM bitcode file
125 $ ar q a.a a.o # <-- a.a is an archive with LLVM bitcode
136 Once your system ``ld``, ``ar``, and ``nm`` all support LLVM bitcode,
  /external/llvm/unittests/ExecutionEngine/JIT/
JITTest.cpp 14 #include "llvm/Bitcode/ReaderWriter.h"
735 // Converts the LLVM assembly to bitcode and returns it in a std::string. An
750 // Returns a newly-created ExecutionEngine that reads the bitcode in 'Bitcode'
752 // M. Both will be NULL on an error. Bitcode must live at least as long as the
755 LLVMContext &Context, const std::string &Bitcode, Module *&M) {
758 MemoryBuffer::getMemBuffer(Bitcode, "Bitcode for test");
781 const std::string Bitcode =
793 ASSERT_FALSE(Bitcode.empty()) << "Assembling failed"
    [all...]
  /external/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.
ToolRunner.cpp 184 virtual int ExecuteProgram(const std::string &Bitcode,
197 int LLI::ExecuteProgram(const std::string &Bitcode,
220 LLIArgs.push_back(Bitcode.c_str());
257 // Allows using a custom command for compiling the bitcode, thus allows, for
258 // example, to compile a bitcode fragment without linking or executing, then
269 virtual void compileProgram(const std::string &Bitcode,
274 virtual int ExecuteProgram(const std::string &Bitcode,
291 void CustomCompiler::compileProgram(const std::string &Bitcode,
301 ProgramArgs.push_back(Bitcode.c_str());
318 // Allows using a custom command for executing the bitcode, thus allows
    [all...]
  /external/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"
  /external/llvm/tools/llvm-ranlib/
llvm-ranlib.cpp 15 #include "llvm/Bitcode/Archive.h"
58 " This program adds or updates an index of bitcode symbols\n"
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
VersionTest.java 24 * Test for appropriate handling of versioned bitcode.
  /external/llvm/bindings/ocaml/bitwriter/
llvm_bitwriter.ml 16 (* Writes the bitcode for module the given path. Returns true if successful. *)
  /external/llvm/docs/CommandGuide/
llvm-ranlib.rst 20 implementations of ``ranlib``, **llvm-ranlib** indexes LLVM bitcode files, not
opt.rst 32 language format (``.ll``) or the LLVM bitcode format (``.bc``).
43 write raw bitcode output if the output stream is a terminal. With this option,
44 :program:`opt` will write raw bitcode regardless of the output device.
56 Write output in LLVM intermediate language (instead of bitcode).
  /external/llvm/lib/Bitcode/Writer/
BitWriter.cpp 11 #include "llvm/Bitcode/ReaderWriter.h"

Completed in 1087 milliseconds

1 2 34 5 6 7 8 91011