HomeSort by relevance Sort by last modified time
    Searched refs:Bitcode (Results 1 - 15 of 15) sorted by null

  /external/llvm/unittests/Bitcode/
Makefile 1 ##===- unittests/Bitcode/Makefile --------------------------*- Makefile -*-===##
11 TESTNAME = Bitcode
  /external/llvm/unittests/
Makefile 12 PARALLEL_DIRS = ADT ExecutionEngine Support Transforms VMCore Analysis Bitcode
  /external/llvm/lib/
Makefile 13 PARALLEL_DIRS := VMCore AsmParser Bitcode Archive Analysis Transforms CodeGen \
  /external/llvm/tools/bugpoint/
ToolRunner.h 85 /// LLVM bitcode in a variety of ways. This abstract interface hides this
118 /// compileProgram - Compile the specified program from bitcode to executable
121 virtual void compileProgram(const std::string &Bitcode, std::string *Error,
124 /// OutputCode - Compile the specified program from bitcode to code
128 virtual GCC::FileType OutputCode(const std::string &Bitcode,
136 /// ExecuteProgram - Run the specified bitcode file, emitting output to the
141 virtual int ExecuteProgram(const std::string &Bitcode,
170 /// compileProgram - Compile the specified program from bitcode to executable
173 virtual void compileProgram(const std::string &Bitcode, std::string *Error,
176 virtual int ExecuteProgram(const std::string &Bitcode,
    [all...]
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...]
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
  /frameworks/compile/slang/
slang_backend.cpp 39 #include "llvm/Bitcode/ReaderWriter.h"
237 // Encase the Bitcode in a wrapper containing RS version information.
238 void Backend::WrapBitcode(llvm::raw_string_ostream &Bitcode) {
241 &wrapper, Bitcode.str().length(), getTargetAPI(),
246 // Write out the bitcode wrapper.
249 // Write out the actual encoded bitcode.
250 FormattedOutStream << Bitcode.str();
349 llvm::raw_string_ostream Bitcode(BCStr);
356 BCEmitPM->add(llvm_2_9::createBitcodeWriterPass(Bitcode));
362 BCEmitPM->add(llvm_2_9_func::createBitcodeWriterPass(Bitcode));
    [all...]
slang_backend.h 77 void WrapBitcode(llvm::raw_string_ostream &Bitcode);
  /external/llvm/
Android.mk 13 lib/Bitcode/Reader \
14 lib/Bitcode/Writer \
  /external/llvm/bindings/ocaml/bitreader/
llvm_bitreader.mli 10 (** Bitcode reader.
12 This interface provides an ocaml API for the LLVM bitcode reader, the
17 (** [get_module context mb] reads the bitcode for a new module [m] from the
24 (** [parse_bitcode context mb] parses the bitcode for a new module [m] from the
  /external/llvm/bindings/ocaml/bitwriter/
llvm_bitwriter.mli 10 (** Bitcode writer.
12 This interface provides an ocaml API for the LLVM bitcode writer, the
15 (** [write_bitcode_file m path] writes the bitcode for module [m] to the file at
20 (** [write_bitcode_to_fd ~unbuffered fd m] writes the bitcode for module
27 (** [output_bitcode ~unbuffered c m] writes the bitcode for module [m]
  /external/llvm/utils/
GenLibDeps.pl 97 $libpath =~ s/^BitReader/Bitcode\/Reader/;
98 $libpath =~ s/^BitWriter/Bitcode\/Writer/;
138 $libpath =~ s/^BitReader/Bitcode\/Reader/;
139 $libpath =~ s/^BitWriter/Bitcode\/Writer/;
  /external/llvm/unittests/ExecutionEngine/JIT/
JITTest.cpp 15 #include "llvm/Bitcode/ReaderWriter.h"
671 // Converts the LLVM assembly to bitcode and returns it in a std::string. An
686 // Returns a newly-created ExecutionEngine that reads the bitcode in 'Bitcode'
688 // M. Both will be NULL on an error. Bitcode must live at least as long as the
691 LLVMContext &Context, const std::string &Bitcode, Module *&M) {
694 MemoryBuffer::getMemBuffer(Bitcode, "Bitcode for test");
717 const std::string Bitcode =
729 ASSERT_FALSE(Bitcode.empty()) << "Assembling failed"
    [all...]
  /frameworks/compile/libbcc/lib/ExecutionEngine/
SourceInfo.cpp 28 #include <llvm/Bitcode/ReaderWriter.h>
43 char const *bitcode,
54 result->buffer.bitcode = bitcode;
69 calcSHA1(result->sha1, bitcode, bitcodeSize);
135 llvm::StringRef(buffer.bitcode, buffer.bitcodeSize), "", false));
139 buffer.bitcode, (unsigned long)buffer.bitcodeSize);
  /gdk/build/core/
definitions.mk     [all...]

Completed in 1122 milliseconds