From: | Andres Freund <andres(at)anarazel(dot)de> |
---|---|
To: | Dmitry Marakasov <amdmi3(at)amdmi3(dot)ru> |
Cc: | pgsql-bugs(at)lists(dot)postgresql(dot)org |
Subject: | Re: BUG #16696: Backend crash in llvmjit |
Date: | 2020-11-10 05:48:02 |
Message-ID: | 20201110054802.bjmjkfv4gzj3nkbe@alap3.anarazel.de |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-bugs |
Hi,
On 2020-11-05 00:20:15 +0300, Dmitry Marakasov wrote:
> The problem happens when boolin() function is inlined by LLVM.
> The named function calls isspace() internally, which on FreeBSD is
> locale-specific and involves caching some locale parameters in
> thread-local variable defined as
>
> extern _Thread_local const _RuneLocale *_ThreadRuneLocale;
>
> The execution crashes on trying to access the named thread-local varible,
> probably because something related to TLS is not set up properly in/for
> LLVM.
>
> I've confirmed this hypothesis by disabling isspace() calls in boolin()
> which has also fixed the problem.
Nice digging. I suspect your approach of disabling inlining for TLS
might be the most reasonable one for now.
Any chance you're interested in extending your patch with a testcase
that crashes reliably without it? Best on multiple platforms, including
linux? Easiest way would probably be to add a function referencing a
thread local variable in regress.c and set jit_above_cost = 0,
jit_inline_above_cost=0 for a query using that function.
Greetings,
Andres Freund
From | Date | Subject | |
---|---|---|---|
Next Message | Kurt Roeckx | 2020-11-10 08:09:13 | Re: BUG #16707: Memory leak |
Previous Message | Andres Freund | 2020-11-10 04:31:27 | Re: BUG #16707: Memory leak |