123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- #ifndef _TLS_H
- #define _TLS_H
- #ifndef __ASSEMBLER__
- # include <pt-machine.h>
- # include <stdbool.h>
- # include <stddef.h>
- typedef union dtv
- {
- size_t counter;
- struct
- {
- void *val;
- bool is_static;
- } pointer;
- } dtv_t;
- #else
- # include <tcb-offsets.h>
- #endif
- #ifdef HAVE_TLS_SUPPORT
- # define USE_TLS 1
- # ifndef __ASSEMBLER__
- typedef struct
- {
- dtv_t *dtv;
- } tcbhead_t;
- # define TLS_INIT_TCB_SIZE 0
- # define TLS_INIT_TCB_ALIGN __alignof__ (struct _pthread_descr_struct)
- # define TLS_TCB_SIZE 0
- # define TLS_TCB_ALIGN __alignof__ (struct _pthread_descr_struct)
- # define TLS_PRE_TCB_SIZE \
- (sizeof (struct _pthread_descr_struct) \
- + ((sizeof (tcbhead_t) + TLS_TCB_ALIGN - 1) & ~(TLS_TCB_ALIGN - 1)))
- #define TLS_TCB_OFFSET 0x7000
- # define TLS_DTV_AT_TP 1
- # define INSTALL_DTV(TCBP, DTVP) \
- (((tcbhead_t *) (TCBP))[-1].dtv = (DTVP) + 1)
- # define INSTALL_NEW_DTV(DTV) (THREAD_DTV() = (DTV))
- # define GET_DTV(TCBP) (((tcbhead_t *) (TCBP))[-1].dtv)
- # define __thread_register ((void *) __thread_self)
- # define TLS_INIT_TP(TCBP, SECONDCALL) \
- (__thread_self = (struct _pthread_descr_struct *) \
- ((void *) (TCBP) + TLS_TCB_OFFSET), NULL)
- # define THREAD_DTV() \
- (((tcbhead_t *) ((void *) __thread_self - TLS_TCB_OFFSET))[-1].dtv)
- # undef THREAD_SELF
- # define THREAD_SELF \
- ((pthread_descr) (__thread_register \
- - TLS_TCB_OFFSET - TLS_PRE_TCB_SIZE))
- # undef INIT_THREAD_SELF
- # define INIT_THREAD_SELF(DESCR, NR) \
- (__thread_self = (struct _pthread_descr_struct *)((void *) (DESCR) \
- + TLS_TCB_OFFSET + TLS_PRE_TCB_SIZE))
- # define TLS_MULTIPLE_THREADS_IN_TCB 1
- # include <linuxthreads/descr.h>
- # define NO_TLS_OFFSET -1
- # endif
- #elif !defined __ASSEMBLER__
- typedef struct
- {
- void *tcb;
- dtv_t *dtv;
- void *self;
- int multiple_threads;
- } tcbhead_t;
- #define NONTLS_INIT_TP \
- do { \
- static const tcbhead_t nontls_init_tp = { .multiple_threads = 0 }; \
- __thread_self = (__typeof (__thread_self)) &nontls_init_tp; \
- } while (0)
- #endif
- #endif
|