2.5-18.1
[glibc.git] / nptl / sysdeps / alpha / tls.h
blob07db15939dae7001efb41a66dbe0cc3657f662c4
1 /* Definition for thread-local data handling. NPTL/Alpha version.
2 Copyright (C) 2003, 2005, 2007 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA. */
20 #ifndef _TLS_H
21 #define _TLS_H 1
23 # include <dl-sysdep.h>
25 #ifndef __ASSEMBLER__
26 # include <stdbool.h>
27 # include <stddef.h>
28 # include <stdint.h>
30 /* Type for the dtv. */
31 typedef union dtv
33 size_t counter;
34 struct
36 void *val;
37 bool is_static;
38 } pointer;
39 } dtv_t;
41 #else /* __ASSEMBLER__ */
42 # include <tcb-offsets.h>
43 #endif /* __ASSEMBLER__ */
46 /* We require TLS support in the tools. */
47 #ifndef HAVE_TLS_SUPPORT
48 # error "TLS support is required."
49 #endif
51 /* Signal that TLS support is available. */
52 # define USE_TLS 1
54 #ifndef __ASSEMBLER__
56 /* Get system call information. */
57 # include <sysdep.h>
59 /* The TP points to the start of the thread blocks. */
60 # define TLS_DTV_AT_TP 1
62 /* Get the thread descriptor definition. */
63 # include <nptl/descr.h>
65 typedef struct
67 dtv_t *dtv;
68 void *__private;
69 } tcbhead_t;
71 /* This is the size of the initial TCB. */
72 # define TLS_INIT_TCB_SIZE sizeof (tcbhead_t)
74 /* Alignment requirements for the initial TCB. */
75 # define TLS_INIT_TCB_ALIGN 16
77 /* This is the size of the TCB. */
78 # define TLS_TCB_SIZE sizeof (tcbhead_t)
80 /* This is the size we need before TCB. */
81 # define TLS_PRE_TCB_SIZE sizeof (struct pthread)
83 /* Alignment requirements for the TCB. */
84 # define TLS_TCB_ALIGN 16
86 /* Install the dtv pointer. The pointer passed is to the element with
87 index -1 which contain the length. */
88 # define INSTALL_DTV(tcbp, dtvp) \
89 (((tcbhead_t *) (tcbp))->dtv = (dtvp) + 1)
91 /* Install new dtv for current thread. */
92 # define INSTALL_NEW_DTV(dtv) \
93 (THREAD_DTV() = (dtv))
95 /* Return dtv of given thread descriptor. */
96 # define GET_DTV(tcbp) \
97 (((tcbhead_t *) (tcbp))->dtv)
99 /* Code to initially initialize the thread pointer. This might need
100 special attention since 'errno' is not yet available and if the
101 operation can cause a failure 'errno' must not be touched. */
102 # define TLS_INIT_TP(tcbp, secondcall) \
103 (__builtin_set_thread_pointer ((void *)(tcbp)), NULL)
105 /* Return the address of the dtv for the current thread. */
106 # define THREAD_DTV() \
107 (((tcbhead_t *) __builtin_thread_pointer ())->dtv)
109 /* Return the thread descriptor for the current thread. */
110 # define THREAD_SELF \
111 ((struct pthread *)__builtin_thread_pointer () - 1)
113 /* Magic for libthread_db to know how to do THREAD_SELF. */
114 # define DB_THREAD_SELF \
115 REGISTER (64, 64, 32 * 8, -sizeof (struct pthread))
117 /* Access to data in the thread descriptor is easy. */
118 #define THREAD_GETMEM(descr, member) \
119 descr->member
120 #define THREAD_GETMEM_NC(descr, member, idx) \
121 descr->member[idx]
122 #define THREAD_SETMEM(descr, member, value) \
123 descr->member = (value)
124 #define THREAD_SETMEM_NC(descr, member, idx, value) \
125 descr->member[idx] = (value)
127 /* Get and set the global scope generation counter in struct pthread. */
128 #define THREAD_GSCOPE_FLAG_UNUSED 0
129 #define THREAD_GSCOPE_FLAG_USED 1
130 #define THREAD_GSCOPE_FLAG_WAIT 2
131 #define THREAD_GSCOPE_RESET_FLAG() \
132 do \
133 { int __res \
134 = atomic_exchange_rel (&THREAD_SELF->header.gscope_flag, \
135 THREAD_GSCOPE_FLAG_UNUSED); \
136 if (__res == THREAD_GSCOPE_FLAG_WAIT) \
137 lll_futex_wake (&THREAD_SELF->header.gscope_flag, 1); \
139 while (0)
140 #define THREAD_GSCOPE_SET_FLAG() \
141 do \
143 THREAD_SELF->header.gscope_flag = THREAD_GSCOPE_FLAG_USED; \
144 atomic_write_barrier (); \
146 while (0)
147 #define THREAD_GSCOPE_WAIT() \
148 GL(dl_wait_lookup_done) ()
150 #endif /* __ASSEMBLER__ */
152 #endif /* tls.h */