search for: m_llvm_exec

Displaying 1 result from an estimated 1 matches for "m_llvm_exec".

Did you mean: llvm_exec
2014 Jan 20
2
[LLVMdev] MCJIT versus getLazyBitcodeModule?
...so that any calls I inserted into the IR will work properly. * When I JIT, I just refer to functions in the bitcode like "foo", if that's what I called it in the original .cpp file that was turned into bitcode. * Traditionally, I have created a JIT execution engine like this: m_llvm_exec = llvm::ExecutionEngine::createJIT (module(), err, jitmm(), llvm::CodeGenOpt::Default, /*AllocateGVsWithCode*/ false); All has worked fine, this is a system that's seen heavy production use for a couple years now. Now I...