<div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div>Hi Greg,</div><div><br></div><div>Thanks for your patience.</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">Looking through the LLVM source code, it appears that for the<br>"systemz" architecture, there is  currently no local CCMgr<br>implementation available, and this then prevents indirection support<br>and COD layer support. BUT - apparently it can still function (maybe<br>less efficiently?) without these?<br>Is somebody able to clarify exactly what that error message means and<br>what the limitations are? Is it unwise to use LLVM on architectures on<br>which this error is reported?<br>I looked through the LLVM V10 source code and there still seems to be<br>this issue for systemz.</blockquote></div><div><br></div><div>You are correct: The error is generated when a call is made to the createLocalCompileCallbackManager function. Platforms that don't support a callback manager (yet) can not use lazy compilation, but can still JIT whole modules.</div><div><br></div><div>I suspect that postgres is using the older ORC C bindings. These always try to enable lazy compilation support and direct any errors to stderr. Postgress probably isn't using the lazy compilation support anyway, which is why everything works just fine despite the error.</div><div><br></div><div>These older APIs are deprecated, so the best solution would be for postgres to move to the newer C APIs (see <a href="https://github.com/llvm/llvm-project/blob/master/llvm/include/llvm-c/Orc.h">https://github.com/llvm/llvm-project/blob/master/llvm/include/llvm-c/Orc.h</a>).</div><div><br></div><div>Are you working on Postgres yourself, or just building it?</div><div><br></div><div>Regards,</div><div>Lang.</div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Thu, Jun 25, 2020 at 4:49 AM Greg Nancarrow via llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a>> wrote:<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">Hi LLVM Developers,<br>
<br>
I have a query about an LLVM error message that I'm encountering and I<br>
hope it's appropriate to post to this mailing list about it.<br>
<br>
Postgres can be built with LLVM-based JIT support.<br>
I find that when running on Linux (RHEL8) on IBM Z hardware, using<br>
LLVM8+, I'm seeing many instances of the following LLVM error message<br>
appearing in the Postgres server log:<br>
<br>
    ORC error: No callback manager available for s390x-ibm-linux<br>
<br>
(strangely, it otherwise doesn't seem to be causing any problems)<br>
<br>
Looking through the LLVM source code, it appears that for the<br>
"systemz" architecture, there is  currently no local CCMgr<br>
implementation available, and this then prevents indirection support<br>
and COD layer support. BUT - apparently it can still function (maybe<br>
less efficiently?) without these?<br>
Is somebody able to clarify exactly what that error message means and<br>
what the limitations are? Is it unwise to use LLVM on architectures on<br>
which this error is reported?<br>
I looked through the LLVM V10 source code and there still seems to be<br>
this issue for systemz.<br>
<br>
Secondly, LLVM sends this error message to standard error. As a caller<br>
of the LLVM library, it would be nice to be able to redirect such<br>
messages from the library - is it possible?<br>
<br>
Hope you can advise,<br>
Greg<br>
_______________________________________________<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="https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev" rel="noreferrer" target="_blank">https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev</a><br>
</blockquote></div></div></div></div></div></div>