<div dir="ltr">Hi Pawel,<div><br></div><div>Option (1) and (3) are very similar, but using custom resolution (option 3) guarantees that JIT'd code can't accidentally end up depending on functions in your JIT that you didn't mean to expose. Having a smaller symbol lookup space may improve performance too.</div><div>Option (2) would work, but there's no advantage vs option (3).</div><div><br></div><div>So I recommend option 3. :)</div><div><br></div><div>If you're using MCJIT you can override the findSymbol method on the MemoryManager. If you're using ORC you can pass a custom resolver to addModuleSet.</div><div><br></div><div>Cheers,</div><div>Lang.</div><div><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, May 11, 2016 at 6:47 AM, PaweÅ‚ Bylica <span dir="ltr"><<a href="mailto:chfast@gmail.com" target="_blank">chfast@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Hi LLVM, Lang.<div><br></div><div>I'm looking for a advice here. And I truly understand very little what the relocations are and how they work.</div><div><br></div><div>The problem I want to solve is the case where a jitted code has to call back the host application to query additional data. I can think of 3 possible solutions:</div><div><ol><li>Use built-in relocation resolver (in default memory manager?) and allow the JIT to find the callback function by name. The host application needs to contain symbols that the JIT will search for. You can have only single implementation of them. The JIT will need to search in the set of all symbols in the executable.</li><li>Pass addresses of callback functions as pointers to functions to a jitted function. The generated code should use pointer to functions instead of predefined function names in calls.</li><li>Create you own Memory Manager that will provide addresses to callback functions. Because the set of callback functions is known upfront and quite small that seems to be better than 1.</li></ol><div>Can you help me to evaluate the solutions?</div></div><span class="HOEnZb"><font color="#888888"><div><br></div><div>- PaweÅ‚</div></font></span></div>
</blockquote></div><br></div>