]> git.ipfire.org Git - thirdparty/glibc.git/blob - sysdeps/hppa/nptl/tls.h
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / sysdeps / hppa / nptl / tls.h
1 /* Definition for thread-local data handling. NPTL/hppa version.
2 Copyright (C) 2005-2017 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4
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.
9
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.
14
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library. If not, see
17 <http://www.gnu.org/licenses/>. */
18
19 #ifndef _TLS_H
20 #define _TLS_H 1
21
22 #include <dl-sysdep.h>
23
24 #ifndef __ASSEMBLER__
25 # include <stdbool.h>
26 # include <stddef.h>
27 # include <stdint.h>
28 # include <dl-dtv.h>
29
30 #else /* __ASSEMBLER__ */
31 # include <tcb-offsets.h>
32 #endif /* __ASSEMBLER__ */
33
34 #ifndef __ASSEMBLER__
35
36 /* Get system call information. */
37 # include <sysdep.h>
38
39 /* The TP points to the start of the thread blocks. */
40 # define TLS_DTV_AT_TP 1
41 # define TLS_TCB_AT_TP 0
42
43 /* Get the thread descriptor definition. */
44 # include <nptl/descr.h>
45
46 typedef struct
47 {
48 dtv_t *dtv;
49 void *private;
50 } tcbhead_t;
51
52 /* This is the size of the initial TCB. */
53 # define TLS_INIT_TCB_SIZE sizeof (tcbhead_t)
54
55 /* Alignment requirements for the initial TCB. */
56 # define TLS_INIT_TCB_ALIGN __alignof__ (tcbhead_t)
57
58 /* This is the size of the TCB. */
59 # define TLS_TCB_SIZE sizeof (tcbhead_t)
60
61 /* Alignment requirements for the TCB. */
62 # define TLS_TCB_ALIGN __alignof__ (struct pthread)
63
64 /* This is the size we need before TCB */
65 # define TLS_PRE_TCB_SIZE sizeof (struct pthread)
66
67 /* Install the dtv pointer. The pointer passed is to the element with
68 index -1 which contain the length. */
69 # define INSTALL_DTV(tcbp, dtvp) \
70 ((tcbhead_t *) (tcbp))->dtv = (dtvp) + 1
71
72 /* Install new dtv for current thread. */
73 # define INSTALL_NEW_DTV(dtv) \
74 ({ tcbhead_t *__tcbp = (tcbhead_t *)__get_cr27(); \
75 __tcbp->dtv = dtv; \
76 })
77
78 /* Return dtv of given thread descriptor. */
79 # define GET_DTV(tcbp) \
80 (((tcbhead_t *) (tcbp))->dtv)
81
82 /* Code to initially initialize the thread pointer. This might need
83 special attention since 'errno' is not yet available and if the
84 operation can cause a failure 'errno' must not be touched. */
85 # define TLS_INIT_TP(tcbp) \
86 ({ __set_cr27(tcbp); NULL; })
87
88 /* Value passed to 'clone' for initialization of the thread register. */
89 # define TLS_DEFINE_INIT_TP(tp, pd) void *tp = (pd) + 1
90
91 /* Return the address of the dtv for the current thread. */
92 # define THREAD_DTV() \
93 ({ tcbhead_t *__tcbp = (tcbhead_t *)__get_cr27(); \
94 __tcbp->dtv; \
95 })
96
97 /* Return the thread descriptor for the current thread. */
98 # define THREAD_SELF \
99 ({ struct pthread *__self; \
100 __self = __get_cr27(); \
101 __self - 1; \
102 })
103
104 /* Magic for libthread_db to know how to do THREAD_SELF.
105 Our thread pointer is stored in cr27. See asm/elf.h for the offset into
106 elf_gregset_t. The thread descriptor is sizeof (struct pthread) away. */
107 # define DB_THREAD_SELF \
108 REGISTER (32, 32, 53 * 4, -sizeof (struct pthread))
109
110 /* Access to data in the thread descriptor is easy. */
111 # define THREAD_GETMEM(descr, member) \
112 descr->member
113 # define THREAD_GETMEM_NC(descr, member, idx) \
114 descr->member[idx]
115 # define THREAD_SETMEM(descr, member, value) \
116 descr->member = (value)
117 # define THREAD_SETMEM_NC(descr, member, idx, value) \
118 descr->member[idx] = (value)
119
120 static inline struct pthread *__get_cr27(void)
121 {
122 long cr27;
123 asm ("mfctl %%cr27, %0" : "=r" (cr27) : );
124 return (struct pthread *) cr27;
125 }
126
127 /* We write to cr27, clobber r26 as the input argument, and clobber
128 r31 as the link register. */
129 static inline void __set_cr27(struct pthread *cr27)
130 {
131 asm ( "ble 0xe0(%%sr2, %%r0)\n\t"
132 "copy %0, %%r26"
133 : : "r" (cr27) : "r26", "r31" );
134 }
135
136 /* Get and set the global scope generation counter in struct pthread. */
137 #define THREAD_GSCOPE_FLAG_UNUSED 0
138 #define THREAD_GSCOPE_FLAG_USED 1
139 #define THREAD_GSCOPE_FLAG_WAIT 2
140 #define THREAD_GSCOPE_RESET_FLAG() \
141 do \
142 { int __res \
143 = atomic_exchange_rel (&THREAD_SELF->header.gscope_flag, \
144 THREAD_GSCOPE_FLAG_UNUSED); \
145 if (__res == THREAD_GSCOPE_FLAG_WAIT) \
146 lll_futex_wake (&THREAD_SELF->header.gscope_flag, 1, LLL_PRIVATE); \
147 } \
148 while (0)
149 #define THREAD_GSCOPE_SET_FLAG() \
150 do \
151 { \
152 THREAD_SELF->header.gscope_flag = THREAD_GSCOPE_FLAG_USED; \
153 atomic_write_barrier (); \
154 } \
155 while (0)
156 #define THREAD_GSCOPE_WAIT() \
157 GL(dl_wait_lookup_done) ()
158
159 #endif /* !__ASSEMBLER__ */
160
161 #endif /* tls.h */