Displaying 3 results from an estimated 3 matches for "theododiri".
Did you mean:
theododiris
2016 May 27
0
How to recompile functions with ORC JIT?
...els of substitutability. One
way is to indirect every call through global function pointers - so when
you want to replace the function you write the new function pointer to the
global variable. I forget which layers do which kinds of indirection.
- Dave
On Thu, May 26, 2016 at 11:49 PM, Theodoros Theododiris via llvm-dev <
llvm-dev at lists.llvm.org> wrote:
> Hello,
>
> I am trying to figure out how to recompile functions multiple times during
> run-time with ORC JIT
>
> and I'd appreciate any help/advice.
>
>
> My use case is t he following: every time a function...
2016 May 27
2
How to recompile functions with ORC JIT?
Hello,
I am trying to figure out how to recompile functions multiple times
during run-time with ORC JIT
and I'd appreciate any help/advice.
My use case is t he following: every time a function of interest
(annotated) is called, profiling data
are gathered. Given enough data the function is recompiled using
different optimizations. This happens
repeatedly until the "best"
2016 May 27
1
How to recompile functions with ORC JIT?
...way is to indirect every call through global function pointers - so when
> you want to replace the function you write the new function pointer to the
> global variable. I forget which layers do which kinds of indirection.
>
> - Dave
>
> On Thu, May 26, 2016 at 11:49 PM, Theodoros Theododiris via llvm-dev <
> llvm-dev at lists.llvm.org> wrote:
>
>> Hello,
>>
>> I am trying to figure out how to recompile functions multiple times
>> during run-time with ORC JIT
>>
>> and I'd appreciate any help/advice.
>>
>>
>> My use...