Displaying 1 result from an estimated 1 matches for "jit_funct".
2013 Apr 24
1
[LLVMdev] JIT pass runtime struct on to subroutines
.../ add the call to the function we're creating
llvm_builder.CreateCall(machine_instr, llvm_arg);
}
// finish the function by adding return
llvm_builder.CreateRetVoid();
// and finish with generating the function and saving it for later use
llvm_function_pass_manager->run(*llvm_function);
jit_functions[predicate_id] = (void*)(llvm_execution_engine->getPointerToFunction(llvm_function));
---------------------------------------------------------------------------------------
Could you direct me in the right direction as to how I might do some of the stuff I'm trying to do here? Or correc...