search for: ircode

Displaying 2 results from an estimated 2 matches for "ircode".

Did you mean: rcode
2014 May 23
2
[LLVMdev] Selectively Jitting using MCJIT
...uld be a good way to callback into the jit for applying the optimisation passes before calling one of the function? My current idea is to make the function extern in the llvm IR prior to static compile, and then use "installLazyFunctionCreator" to generate this function by loading ircode from an isolated module. Is this a feasible approach?
2014 May 23
4
[LLVMdev] Selectively Jitting using MCJIT
...t; jit for applying the optimisation passes before calling one of the >> function? My current idea is to make the function extern in the >> llvm IR prior to static compile, and then use >> "installLazyFunctionCreator" to generate this function by loading >> ircode from an isolated module. Is this a feasible approach? >> > > What you can do is to isolate the function you want to jit by > extracting it to a new module. Load this module during runtime, > apply your pass and jitting it. > -- > Willy WOLFF