]> sourceware.org Git - glibc.git/blob - sysdeps/csky/nptl/tls.h
39fd6404591b73352645cbeb1e10a7151e491e3b
[glibc.git] / sysdeps / csky / nptl / tls.h
1 /* Definitions for thread-local data handling. NPTL/C-SKY version.
2 Copyright (C) 2018-2021 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 <https://www.gnu.org/licenses/>. */
18
19 #ifndef _TLS_H
20 #define _TLS_H 1
21
22 #ifndef __ASSEMBLER__
23
24 # include <stdbool.h>
25 # include <stddef.h>
26 # include <stdint.h>
27 # include <dl-dtv.h>
28
29 /* Define r31 as thread pointer register. */
30 # define READ_THREAD_POINTER() \
31 ({ void *__result; \
32 __asm__ __volatile__ ("mov %0, r31" \
33 : "=r" (__result)); \
34 __result; })
35
36 #else
37 # include <tcb-offsets.h>
38 /* Define r31 as thread pointer register. */
39 # define READ_THREAD_POINTER() \
40 mov r0, r31;
41 #endif /* __ASSEMBLER__ */
42
43 #ifndef __ASSEMBLER__
44
45 /* Get system call information. */
46 # include <sysdep.h>
47
48 /* The TP points to the start of the thread blocks. */
49 # define TLS_DTV_AT_TP 1
50 # define TLS_TCB_AT_TP 0
51
52 /* Get the thread descriptor definition. */
53 # include <nptl/descr.h>
54
55 typedef struct
56 {
57 dtv_t *dtv;
58 void *private;
59 } tcbhead_t;
60
61 /* This is the size of the initial TCB. */
62 # define TLS_INIT_TCB_SIZE sizeof (tcbhead_t)
63
64 /* Alignment requirements for the initial TCB. */
65 # define TLS_INIT_TCB_ALIGN 8
66
67 /* This is the size of the TCB. */
68 # define TLS_TCB_SIZE sizeof (tcbhead_t)
69
70 /* Alignment requirements for the TCB. */
71 # define TLS_TCB_ALIGN 8
72
73 /* This is the size we need before TCB. */
74 # define TLS_PRE_TCB_SIZE sizeof (struct pthread)
75
76 /* The thread pointer tp points to the end of the TCB.
77 The pthread_descr structure is immediately in front of the TCB. */
78 # define TLS_TCB_OFFSET 0
79
80 /* Install the dtv pointer. The pointer passed is to the element with
81 index -1 which contain the length. */
82 # define INSTALL_DTV(tcbp, dtvp) \
83 (((tcbhead_t *) (tcbp))->dtv = (dtvp) + 1)
84
85 /* Install new dtv for current thread. */
86 # define INSTALL_NEW_DTV(dtv) \
87 (THREAD_DTV() = (dtv))
88
89 /* Return dtv of given thread descriptor. */
90 # define GET_DTV(tcbp) \
91 (((tcbhead_t *) (tcbp))->dtv)
92
93 # define TLS_DEFINE_INIT_TP(tp, pd) void *tp = (pd) + 1
94
95 /* Code to initially initialize the thread pointer. This might need
96 special attention since 'errno' is not yet available and if the
97 operation can cause a failure 'errno' must not be touched. */
98 # define TLS_INIT_TP(tcbp) \
99 ({ long int result_var; \
100 result_var = INTERNAL_SYSCALL_CALL (set_thread_area, \
101 (char *) (tcbp) + TLS_TCB_OFFSET); \
102 INTERNAL_SYSCALL_ERROR_P (result_var) \
103 ? "unknown error" : NULL; })
104
105 /* Return the address of the dtv for the current thread. */
106 # define THREAD_DTV() \
107 (((tcbhead_t *) (READ_THREAD_POINTER () - TLS_TCB_OFFSET))->dtv)
108
109 /* Return the thread descriptor for the current thread. */
110 # undef THREAD_SELF
111 # define THREAD_SELF \
112 ((struct pthread *) (READ_THREAD_POINTER () \
113 - TLS_TCB_OFFSET - TLS_PRE_TCB_SIZE))
114
115 /* Magic for libthread_db to know how to do THREAD_SELF. */
116 # define DB_THREAD_SELF \
117 CONST_THREAD_AREA (32, sizeof (struct pthread))
118
119 # include <tcb-access.h>
120
121 /* Get and set the global scope generation counter in struct pthread. */
122 # define THREAD_GSCOPE_FLAG_UNUSED 0
123 # define THREAD_GSCOPE_FLAG_USED 1
124 # define THREAD_GSCOPE_FLAG_WAIT 2
125 # define THREAD_GSCOPE_RESET_FLAG() \
126 do \
127 { int __res \
128 = atomic_exchange_rel (&THREAD_SELF->header.gscope_flag, \
129 THREAD_GSCOPE_FLAG_UNUSED); \
130 if (__res == THREAD_GSCOPE_FLAG_WAIT) \
131 lll_futex_wake (&THREAD_SELF->header.gscope_flag, 1, LLL_PRIVATE); \
132 } \
133 while (0)
134 # define THREAD_GSCOPE_SET_FLAG() \
135 do \
136 { \
137 THREAD_SELF->header.gscope_flag = THREAD_GSCOPE_FLAG_USED; \
138 atomic_write_barrier (); \
139 } \
140 while (0)
141
142 #endif /* __ASSEMBLER__ */
143
144 #endif /* tls.h */
This page took 0.101511 seconds and 4 git commands to generate.