Home | History | Annotate | Download | only in JIT

Lines Matching refs:Bitcode

14 #include "llvm/Bitcode/ReaderWriter.h"
606 // Converts the LLVM assembly to bitcode and returns it in a std::string. An
621 // Returns a newly-created ExecutionEngine that reads the bitcode in 'Bitcode'
623 // M. Both will be NULL on an error. Bitcode must live at least as long as the
626 LLVMContext &Context, const std::string &Bitcode, Module *&M) {
629 MemoryBuffer::getMemBuffer(Bitcode, "Bitcode for test");
652 const std::string Bitcode =
664 ASSERT_FALSE(Bitcode.empty()) << "Assembling failed";
666 OwningPtr<ExecutionEngine> TheJIT(getJITFromBitcode(Context, Bitcode, M));
686 const std::string Bitcode =
703 ASSERT_FALSE(Bitcode.empty()) << "Assembling failed";
705 OwningPtr<ExecutionEngine> TheJIT(getJITFromBitcode(Context, Bitcode, M));