Home | History | Annotate | Download | only in JIT

Lines Matching refs:Bitcode

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";
719 OwningPtr<ExecutionEngine> TheJIT(getJITFromBitcode(Context, Bitcode, M));
739 const std::string Bitcode =
756 ASSERT_FALSE(Bitcode.empty()) << "Assembling failed";
758 OwningPtr<ExecutionEngine> TheJIT(getJITFromBitcode(Context, Bitcode, M));