Ulrich Drepper's paper on thread-local storage outlines the TLS ABI for several different cpu architectures, but I'm finding it insufficient as a basis for implementing TLS for two reasons:
- It omits a number of important archs like ARM, MIPS, etc. (while including a bunch of completely-irrelevant ones like Itanium)
- More importantly, it mixes a lot of implementation details with ABI, so that it's hard to tell which properties are required for interoperability, and which are just aspects of his implementation.
As an example, the only actual ABI requirements for i386 are:
%gs:0
points to a pointer to itself.- The main executable's TLS segment, if any, must be located at a fixed (by the linker, negative) offset from this address.
- All other TLS segments for initially-loaded libraries must have a runtime-constant (i.e. same for each thread, but not necessarily the same across different program runs) offsets relative to this address (and the dynamic linker must be able to fill in relocations with these offsets).
___tls_get_addr
and__tls_get_addr
functions must exist with the correct semantics for looking up arbitrary TLS segments.
In particular, the existence or layout of a DTV is not part of the ABI, nor is the ordering/layout of TLS segments other than the main program's.
It seems that any arch using "TLS variant II" has roughly the above ABI requirements. But I don't understand the requirements of "TLS variant I" very well at all, and it seems from reading sources (in uClibc and glibc) that there may even be several variants of "variant I".
Are there any better documents I should be looking at, or can somebody familiar with the workings of TLS explain the ABI requirements to me?
GCC
TLS support? For example, thegcc-patches
mailing list has a thread starting on the first of June this year, about adding MIPS16 TLS support (marc.info/?l=gcc-patches&m=132586147826602). The compiler folks seem to be much more formal about this kind of stuff than the C library developers; they might have better formal documentation. – Nominal Animal