Displaying 2 results from an estimated 2 matches for "getpointertonamed".
2012 Nov 26
0
[LLVMdev] linking individual functions in execution module
...address of the function in module B as it is re-JITed (maybe the stub could be a lightweight class with a member variable that's kept up-to-date or whatever). The problem I'm trying to solve with this approach is that once you return the address of a function from the memory manager's getPointerToNamed function, the address you return is going to be written into the JITed code as part of the linking process, so you need a central location to maintain updates to that address.
Your approach of linking with a cloned copy of the module (before JITing?) would work too. The main downside I see to tha...
2012 Nov 22
2
[LLVMdev] linking individual functions in execution module
2012/11/21 Kaylor, Andrew <andrew.kaylor at intel.com>:
> If you re-JIT a module that you have previously linked to that will obviously cause some problems, but you can probably work around that with a stub function.
could you elaborate a little bit on that ? i was thinking in something
different; linking a cloned copy of the module rather than the module
directly. Would that work