[llvm] r227300 - [LPM] Rip all of ManagedStatic and ThreadLocal out of the pretty stack

Chandler Carruth chandlerc at gmail.com
Wed Jan 28 17:23:55 PST 2015


On Wed, Jan 28, 2015 at 4:53 PM, Owen Anderson <resistor at mac.com> wrote:

>
> On Jan 28, 2015, at 3:05 PM, Chandler Carruth <chandlerc at gmail.com> wrote:
>
>
> On Wed, Jan 28, 2015 at 2:14 PM, Owen Anderson <resistor at mac.com> wrote:
>
>> Hi Chandler,
>>
>> On Jan 28, 2015, at 1:52 AM, Chandler Carruth <chandlerc at gmail.com>
>> wrote:
>>
>> -static ManagedStatic<sys::ThreadLocal<const PrettyStackTraceEntry> >
>> PrettyStackTraceHead;
>> +// We need a thread local pointer to manage the stack of our stack trace
>> +// objects, but we *really* cannot tolerate destructors running and do
>> not want
>> +// to pay any overhead of synchronizing. As a consequence, we use a raw
>> +// thread-local variable. Some day, we should be able to use a limited
>> subset
>> +// of C++11's thread_local, but compilers aren't up for it today.
>> +// FIXME: This should be moved to a Compiler.h abstraction.
>> +#ifdef _MSC_VER // MSVC supports this with a __declspec.
>> +static __declspec(thread) const PrettyStackTraceEntry
>> +    *PrettyStackTraceHead = nullptr;
>> +#else // Clang, GCC, and all compatible compilers tend to use __thread.
>> +static __thread const PrettyStackTraceEntry *PrettyStackTraceHead =
>> nullptr;
>> +#endif
>>
>>
>> Darwin doesn’t support __thread or thread_local on armv7 or arm64.  This
>> is breaking all Darwin embedded builds.  :-(
>>
>
> So, this is part of C++11 and threading... I don't know how to support a
> system which wants a threaded LLVM but doesn't support TLS. I'm happy to
> make these compile out when threading is disabled of course. Do you have
> any other suggestions?
>
>
> Not particularly, other than restoring (part of?) the old behavior.
> Threaded LLVM is required by multiple users on embedded Darwin.
>

Ok dude.

You complained about compile time hit from fixing a race condition. I
didn't know how to fix it and it didn't significantly impact any other
users. Still, I did my absolute best, put off other work, and found a way
to speed things up. It even helps other users a small amount. Awesome. I'm
actually still working on getting all the platforms working that we have
active build bots for.

Now some of the functionality doesn't work on a some other platform I don't
have access to, we don't have build bots for, and I can't possibly debug.

Please propose patches which address your needs. Personally, I would
suggest teaching Clang to support thread_local when targeting iOS. LLVM
requires C++11 in large part for threading. This requirement seems unlikely
to go away, and the need for TLS in that context is *huge*. This is just
the first occasion.

Still, if that is simply impossible, my suggestion would be to go into
PrettyStackPrinter.cpp (and any other future user of thread_local) and wrap
the access to the pointer in a function that does completely manual
pthread_create, pthread_set_specific, and pthread_get_specific. It's almost
impossible to even wrap this up in a helper class because of the lifetime
issues that cause the destructor to run while the TLS is being used. At
least for other users of TLS we could potentially just have the embedded
darwin target use the slow managed static of an llvm::ThreadLocal<T> with
all its destructor madness.

Maybe the latter will even be done for you because I may not be able to fix
PPC64 any other way.

That's about all I've got. I'm somewhat regretting investing as much time
as I have in this issue.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20150128/e1f8296f/attachment.html>


More information about the llvm-commits mailing list