<div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div>Hi Andres,</div><div><br></div><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">I also want to highlight the necessity of some form of C API, that others already have.<br></blockquote><div><snip> </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">It's fine if the set of "somewhat stable" C APIs doesn't provide all the possible features, though.</blockquote></div><div dir="ltr"><br></div><div>Ok. This got me thinking about what a simple LLJIT API should look like. I have posted a sketch of a possible API on <a href="http://llvm.org/PR31103">http://llvm.org/PR31103</a> . I don't have time to implement it just yet, but I would be very happy to provide support and review patches if </div><div><div style="color:rgb(0,0,0)">anyone else wants to give it a shot.</div></div><div style="color:rgb(0,0,0)"><br></div><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">What's the capability level of ORCv2 on RuntimeDyld compared to ORCv1?<br>Are there features supported in v1 that are only available on JITLink<br>supported platforms?</blockquote></div><div><br></div><div>At a high level, ORCv2's design allows for basically the same features as ORCv1, plus concurrent compilation. There are still a number of APIs that haven't been hooked up or implemented though. Most prominently: Event listeners and removable code. If you're using either of those features please let me know: I do want to make sure we continue to support them (or provide an equivalent).</div><div><br></div><div>There are no features supported by ORCv1 that require JITLink under ORCv2. </div><div><br></div><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">> - Improve JIT support for static initializers:<br>>   - Add support for running initializers from object files, which will enable loading and caching of objects containing initializers.<br>Hm, that's kind of supported for v1, right?</blockquote></div><div><br></div><div>It's "kind of" supported. MCJIT and ORCv1 provided support for scanning the llvm.global_ctors variable to find the names of static initializers to run. This works fine when (1) you're adding LLVM IR AND (2) you only care initializers described by llvm.global_ctors. On the other hand, if you add object files (or loading them from an ObjectCache), or if you have initializers not described by llvm.global_ctors (e.g. ObjC and Swift, which have additional initializers described by metadata sections) then MCJIT and ORCv1 provide no help out-of-the-box. This problem is further exacerbated by concurrent compilation in ORCv2: You may need to order your initializers (e.g. according to the llvm.global_ctors priority field), but objects may arrive at the JIT linker out of order due to concurrent compilation.</div><div><br></div><div>The new ORCv2 initializer support aims to make all of this natural: We will provide 'dlopen' and 'dlclose' equivalent calls on JITDylibs. This will trigger compilation and execution of initializers that have not been run already. If you use JITLink, this will include using JITLink-plugins to discover the initializers to run, including initializers in metadata sections.</div><div><br></div><div>-- Lang.   </div><div><br></div><div>On Mon, Jan 27, 2020 at 10:14 AM Andres Freund <<a href="mailto:andres@anarazel.de">andres@anarazel.de</a>> wrote:<br></div><div class="gmail_quote"><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">Hi,<br>
<br>
On 2020-01-16 18:00:53 -0800, Lang Hames via llvm-dev wrote:<br>
> In the interests of improving visibility into ORC JIT development I'm<br>
> going to try writing weekly status updates for the community. I hope<br>
> they will provide insight into the design and state of development of<br>
> LLVM's JIT APIs, as well as serving as a convenient space for<br>
> discussions among LLVM's large and growing community of JIT API users.<br>
<br>
That's a great idea.<br>
<br>
<br>
> Since this is the first update, I have also added some highlights from last year, and the plan for 2020.<br>
> <br>
> Highlights from 2019:<br>
> <br>
> (1) ORCv1 was officially deprecated in LLVM 9. I have left it in for<br>
> the LLVM 10 branch, but plan to remove it from master in the coming<br>
> weeks. All development effort is now focused on ORCv2. If you are an<br>
> ORCv1 client, now's the time to switch over. If you need help please<br>
> ask on the llvm-dev mailing lists (make sure you CC me) or #llvm on<br>
> discord. There are also some tips available in<br>
> <a href="https://llvm.org/docs/ORCv2.html" rel="noreferrer" target="_blank">https://llvm.org/docs/ORCv2.html</a><br>
<br>
I also want to highlight the necessity of some form of C API, that<br>
others already have.<br>
<br>
Besides just needing something that can be called from languages besides<br>
C++, some amount of higher API stability is also important. For users of<br>
LLVM with longer support cycles than LLVM (e.g. Postgres has 5 years of<br>
back branch maintenance), and which live in a world where vendoring is<br>
not allowed (most things going into linux distros), the API churn can be<br>
serious problem.  It's fine if the set of "somewhat stable" C APIs<br>
doesn't provide all the possible features, though.<br>
<br>
It's easy enough to add a bunch of wrappers or ifdefs hiding some simple<br>
signature changes, e.g. LLVMOrcGetSymbolAddress adding a parameter as<br>
happened in LLVM 6, but backpatching support for a larger API redesigns,<br>
into stable versions, is scary.  We do however quickly get complaints if<br>
a supported version cannot be compiled due to dependencies, as people<br>
tend to upgrade their OS separately from e.g. their database major<br>
version.<br>
<br>
<br>
> (2) LLVM has a new JIT linker, JITLink, which is intended as an<br>
> eventual replacement for RuntimeDyld. The new design supports linker<br>
> plugins (allowing operation on the low-level bits generated by the JIT<br>
> linker) and native code models (RuntimeDyld required a custom code<br>
> model on some platforms). Currently JITLink only supports Darwin<br>
> x86-64 and arm64, but I hope to see support for new platforms added in<br>
> the future.<br>
<br>
What's the capability level of ORCv2 on RuntimeDyld compared to ORCv1?<br>
Are there features supported in v1 that are only available on JITLink<br>
supported platforms?<br>
<br>
<br>
> - Improve JIT support for static initializers:<br>
>   - Add support for running initializers from object files, which will enable loading and caching of objects containing initializers.<br>
<br>
Hm, that's kind of supported for v1, right?<br>
<br>
<br>
Greetings,<br>
<br>
Andres Freund<br>
</blockquote></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div>