<div dir="ltr">Hi All,<div><br></div><div>Alex -- thanks for stepping in!</div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex">Many thanks for the sample code, Alex. In the end I did it the same way OrcMCJITReplacement does it. Constructors and destructors are called and, thanks to LocalCXXRuntimeOverrides, the program does not crash on exit! But it does seem like there should be a simpler way; the learning curve is steep...</blockquote><div><br></div><div>It is a bit. Some background, in case it helps: LLVM's JIT APIs are all based on re-using the static compiler pipeline and patching up relocatable object files in memory. That forces the JIT APIs to conform to linker rules. In particular, there is no way to refer to a private or anonymous symbol, which is why we have to name the constructors and make sure their linkage is promoted to external.</div><div><br></div><div>It would probably be reasonable to wrap all this up in a utility function though:</div><div><br></div><div><font face="monospace, monospace">std::pair<CtorDtorRunner, CtorDtorRunner></font></div><div><font face="monospace, monospace">enableStaticConstructorsAndDestructors(Module &M);</font></div><div><br></div><div>I'll try that out.</div><div><br></div><div>Also worth noting here: I'm going to land a new ORC stack (tentatively called LLJIT) intended for general use in the next couple of days. It will replace the custom JIT stack currently buried in the LLI tool. If you are interested in trying it I will let you know when it lands, and I'd be happy to hear your feedback. :)</div><div><br></div><div>Cheers,</div><div>Lang.</div></div><br><div class="gmail_quote"><div dir="ltr">On Mon, Jun 25, 2018 at 9:21 AM David Blaikie <<a href="mailto:dblaikie@gmail.com">dblaikie@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Adding Lang here - in case he's got some ideas on this issue/plans to improve support.<br><br><div class="gmail_quote"><div dir="ltr">On Mon, Jun 25, 2018 at 7:29 AM Geoff Levner via llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div>Many thanks for the sample code, Alex. In the end I did it the same way OrcMCJITReplacement does it. Constructors and destructors are called and, thanks to LocalCXXRuntimeOverrides, the program does not crash on exit! But it does seem like there should be a simpler way; the learning curve is steep...</div></div><div dir="ltr"><div><br></div><div>Geoff<br></div></div><div dir="ltr"><br><div class="gmail_quote"><div dir="ltr">On Thu, 21 Jun 2018 at 12:28, Alex Denisov <<a href="mailto:1101.debian@gmail.com" target="_blank">1101.debian@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Now I see, thanks.<br>
<br>
There is no need to do it exactly the same way as OrcMCJITReplacement does.<br>
What you need is to get list of constructors and destructors functions from a module. You can just reuse this code snippet in your code:<br>
<a href="https://github.com/llvm-mirror/llvm/blob/91b6092209489b4790826efc66fce178a6ec7f46/lib/ExecutionEngine/ExecutionEngine.cpp#L371" rel="noreferrer" target="_blank">https://github.com/llvm-mirror/llvm/blob/91b6092209489b4790826efc66fce178a6ec7f46/lib/ExecutionEngine/ExecutionEngine.cpp#L371</a><br>
<br>
Then, before running main (or whatever else function you want to run) you just iterate through the list of constructors, ask JIT for a pointer to a constructor given it's mangled name, and just run it as you would run any other function.<br>
After running main do the same for destructors.<br>
<br>
We do it the same way and it seemed to be working (code is a bit messy, but you get the idea):<br>
<a href="https://github.com/mull-project/mull/blob/master/lib/CustomTestFramework/CustomTestRunner.cpp#L71" rel="noreferrer" target="_blank">https://github.com/mull-project/mull/blob/master/lib/CustomTestFramework/CustomTestRunner.cpp#L71</a><br>
<br>
I hope it helps.<br>
<br>
Cheers,<br>
Alex.<br>
<br>
> On 21. Jun 2018, at 09:27, Geoff Levner <<a href="mailto:glevner@gmail.com" target="_blank">glevner@gmail.com</a>> wrote:<br>
> <br>
> When OrcMCJITReplacement is given a new module, it asks for the module's constructors, gives them names like $static_ctor.0, $static_ctor.1, etc., and saves the mangled names in a map. Later, to execute them, it uses runViaLayer(), which looks for those symbol names in the given JIT layer. Could one not simply execute the constructors straight away, rather than naming them and looking them up by name later, if there is only one module?<br>
> <br>
> On Wed, 20 Jun 2018 at 23:08, Alex Denisov <<a href="mailto:1101.debian@gmail.com" target="_blank">1101.debian@gmail.com</a>> wrote:<br>
> Hi Geoff,<br>
> <br>
> As far as I know there is no "simple" way to do that.<br>
> <br>
> > I would prefer to avoid having to invent secret names for constructors, play with their linkage and visibility, and generally get involved in things I don't understand...<br>
> <br>
> What do you mean by "invent secret names"? If you don't need to JIT native object files, but only bitcode, then MCJIT' approach should work. Just use that "snippet" in your code :)<br>
> <br>
> > On 19. Jun 2018, at 17:54, Geoff Levner <<a href="mailto:glevner@gmail.com" target="_blank">glevner@gmail.com</a>> wrote:<br>
> ><br>
> > On Alex's advice I am switching from MCJIT to the Orc API to compile and execute functions. Starting from the new clang-interpreter example in the source code (top of the tree!), I am able to execute my functions all right... as long as there are no constructors and destructors to call.<br>
> ><br>
> > My question: is there a simple way, with the Orc API, to run a module's constructors and destructors? I see how OrcMCJITReplacement does it, calling getConstructors() and getDestructors() when a module is added, and running them later using a layer, but is there maybe a simpler way that I am missing? I would prefer to avoid having to invent secret names for constructors, play with their linkage and visibility, and generally get involved in things I don't understand...<br>
> ><br>
> > Thanks,<br>
> > Geoff<br>
> ><br>
> > On Fri, 15 Jun 2018 at 11:23, Alex Denisov <<a href="mailto:1101.debian@gmail.com" target="_blank">1101.debian@gmail.com</a>> wrote:<br>
> > Hi Geoff,<br>
> ><br>
> > I hit the same problem some time ago.<br>
> > The problem that atexit handlers are registered from the JITted code, and the handlers point to the memory allocated by JIT.<br>
> > When the host program exits it calls the atexit handlers, but the memory is already deallocated by JIT.<br>
> > That's basically the reason of the crash.<br>
> ><br>
> > From what I see ExecutionEngine and MCJIT do not provide any helpful API for this case.<br>
> > I can only recommend switching to Orc APIs in this case: there you can use custom symbol resolver and redirect atexit functions to your own function(s).<br>
> > That function would record atexit handlers, which you can call manually after running your program.<br>
> > Orc APIs even provide a class for that: orc::LocalCXXRuntimeOverrides.<br>
> ><br>
> > I think this is the right place to ask such questions.<br>
> > Otherwise, feel free to ping me on #llvm (AlexDenisov) if you need some hints on how to JIT native code using Orc APIs.<br>
> ><br>
> > I hope it helps.<br>
> ><br>
> > Cheers,<br>
> > Alex.<br>
> ><br>
> > > On 14. Jun 2018, at 12:44, Geoff Levner via llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>> wrote:<br>
> > ><br>
> > > Greetings, LLVM wizards.<br>
> > ><br>
> > > I am using clang to compile a C++ module, and an ExecutionEngine (MCJIT) to execute a function it defines. That works (or pretends to). However, if I call the module's constructors first:<br>
> > ><br>
> > > exec_engine->runStaticConstructorsDestructors(false);<br>
> > > exec_engine->runFunctionAsMain(function, argvec, NULL);<br>
> > ><br>
> > > execution still works, but my program crashes when it exits, in __run_exit_handlers(). I can't tell from gdb what exit handler is crashing, but no calls are made to atexit() or on_exit(); all exit handlers are installed via __cxa_atexit().<br>
> > ><br>
> > > This may or may not be meaningful, but I am forced to compile with -fno-use-cxa-atexit, otherwise clang complains that __dso_handle could not be resolved.<br>
> > ><br>
> > > Any guidance would be MUCH appreciated. I am at a loss... Also, if you know of a better place to look for help than this mailing list, that would be appreciated, too.<br>
> > ><br>
> > > Thanks,<br>
> > > Geoff<br>
> <br>
<br>
</blockquote></div></div>
_______________________________________________<br>
LLVM Developers mailing list<br>
<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a><br>
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev</a><br>
</blockquote></div></div>
</blockquote></div>