Home | History | Annotate | Download | only in JIT

Lines Matching full:bitcode

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";
795 OwningPtr<ExecutionEngine> TheJIT(getJITFromBitcode(Context, Bitcode, M));
815 const std::string Bitcode =
832 ASSERT_FALSE(Bitcode.empty()) << "Assembling failed";
834 OwningPtr<ExecutionEngine> TheJIT(getJITFromBitcode(Context, Bitcode, M));