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

  /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
117 /// compileProgram - Compile the specified program from bitcode to executable
120 virtual void compileProgram(const std::string &Bitcode, std::string *Error,
123 /// OutputCode - Compile the specified program from bitcode to code
127 virtual GCC::FileType OutputCode(const std::string &Bitcode,
135 /// ExecuteProgram - Run the specified bitcode file, emitting output to the
140 virtual int ExecuteProgram(const std::string &Bitcode,
169 /// compileProgram - Compile the specified program from bitcode to executable
172 virtual void compileProgram(const std::string &Bitcode, std::string *Error,
175 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());
255 // Allows using a custom command for compiling the bitcode, thus allows, for
256 // example, to compile a bitcode fragment without linking or executing, then
267 virtual void compileProgram(const std::string &Bitcode,
272 virtual int ExecuteProgram(const std::string &Bitcode,
289 void CustomCompiler::compileProgram(const std::string &Bitcode,
299 ProgramArgs.push_back(Bitcode.c_str());
316 // 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
  /external/llvm/
Android.mk 11 lib/Bitcode/Reader \
12 lib/Bitcode/Writer \
  /frameworks/compile/slang/
slang_backend.cpp 39 #include "llvm/Bitcode/ReaderWriter.h"
233 // Encase the Bitcode in a wrapper containing RS version information.
234 void Backend::WrapBitcode(llvm::raw_string_ostream &Bitcode) {
239 header.BitcodeSize = Bitcode.str().length();
243 // Write out the bitcode wrapper.
246 // Write out the actual encoded bitcode.
247 FormattedOutStream << Bitcode.str();
347 llvm::raw_string_ostream Bitcode(BCStr);
350 BCEmitPM->add(llvm_2_9::createBitcodeWriterPass(Bitcode));
352 BCEmitPM->add(llvm::createBitcodeWriterPass(Bitcode));
    [all...]
slang_backend.h 78 void WrapBitcode(llvm::raw_string_ostream &Bitcode);
  /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/;
139 $libpath =~ s/^BitReader/Bitcode\/Reader/;
140 $libpath =~ s/^BitWriter/Bitcode\/Writer/;
  /external/llvm/unittests/ExecutionEngine/JIT/
JITTest.cpp 15 #include "llvm/Bitcode/ReaderWriter.h"
659 // Converts the LLVM assembly to bitcode and returns it in a std::string. An
674 // Returns a newly-created ExecutionEngine that reads the bitcode in 'Bitcode'
676 // M. Both will be NULL on an error. Bitcode must live at least as long as the
679 LLVMContext &Context, const std::string &Bitcode, Module *&M) {
682 MemoryBuffer::getMemBuffer(Bitcode, "Bitcode for test");
705 const std::string Bitcode =
717 ASSERT_FALSE(Bitcode.empty()) << "Assembling failed"
    [all...]

Completed in 211 milliseconds