search for: waern

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

2014 May 23
4
[LLVMdev] Selectively Jitting using MCJIT
...initialisation, but rather I want to load and JIT it during program execution. Hence my idea of declaring the function in the module as extern and load it through the lazy function creator. Quoting Willy WOLFF <willy.wolff at etu.unistra.fr>: > > On 23 May 2014, at 14:55, Jonatan Waern wrote: > >> Hello, I am a novice at using the llvm api to do much of anything. >> >> I am trying to lazily apply certain optimisation passes on select >> functions when jitting a large program. It is undesirable to me to >> load the entire program as IR code and...
2014 May 23
2
[LLVMdev] Selectively Jitting using MCJIT
Hello, I am a novice at using the llvm api to do much of anything. I am trying to lazily apply certain optimisation passes on select functions when jitting a large program. It is undesirable to me to load the entire program as IR code and then generate code in memory for it (time concerns). It seems that there is a function in MCJIT "loadObjectFile" that would suit my purposes,