Nvidia, TLS and __thread keyword -- an observation

Marcel Moolenaar marcel at xcllnt.net
Tue Jun 17 17:36:29 PDT 2003


On Wed, Jun 18, 2003 at 07:48:09AM +0800, David Xu wrote:
> 
> > The static TLS model requires the least amount of work: add support
> > to allocate the TLS image for every thread creation and point the
> > thread pointer to it in a way compatible with the runtime spec.
> > 
> > The dynamic TLS model requires more substantial changes and involves
> > RTLD as well. This is the model that requires __tls_get_addr().
> > 
> 
> I believe this will add overhead to thread creating and destroying,
> How fast an RTLD can be in this case ?

In the dynamic TLS model you would like to delay the creation of
the TLS space. Normally __tls_get_addr() gets used for this. In
the static TLS model you allocate the TLS when you llocate the
thread control structure.

Thus, there's virtually no cost. However TLS accesses for the
dynamic TLS model are expensive. I have some ideas about that.
With some kernel support you can even create dynamic TLS with
static TLS code sequences...

-- 
 Marcel Moolenaar	  USPA: A-39004		 marcel at xcllnt.net


More information about the freebsd-threads mailing list