]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/arc/nptl/tls.h
Update copyright dates with scripts/update-copyrights
[thirdparty/glibc.git] / sysdeps / arc / nptl / tls.h
CommitLineData
02613152 1/* Definition for thread-local data handling. NPTL/ARC version.
2b778ceb 2 Copyright (C) 2020-2021 Free Software Foundation, Inc.
02613152
VG
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 _ARC_NPTL_TLS_H
20#define _ARC_NPTL_TLS_H 1
21
22#include <dl-sysdep.h>
23
24#ifndef __ASSEMBLER__
25
26# include <stdbool.h>
27# include <stddef.h>
28# include <stdint.h>
29
30#include <dl-dtv.h>
31
32/* Get system call information. */
33# include <sysdep.h>
34
35/* The TLS blocks start right after the TCB. */
36# define TLS_DTV_AT_TP 1
37# define TLS_TCB_AT_TP 0
38
39/* Get the thread descriptor definition. */
40# include <nptl/descr.h>
41
42typedef struct
43{
44 dtv_t *dtv;
45 uintptr_t pointer_guard;
46} tcbhead_t;
47
48/* This is the size of the initial TCB. */
49# define TLS_INIT_TCB_SIZE sizeof (tcbhead_t)
50
51/* Alignment requirements for the initial TCB. */
52# define TLS_INIT_TCB_ALIGN __alignof__ (struct pthread)
53
54/* This is the size of the TCB. */
55#ifndef TLS_TCB_SIZE
56# define TLS_TCB_SIZE sizeof (tcbhead_t)
57#endif
58
59/* Alignment requirements for the TCB. */
60# define TLS_TCB_ALIGN __alignof__ (struct pthread)
61
62/* This is the size we need before TCB. */
63# define TLS_PRE_TCB_SIZE sizeof (struct pthread)
64
65/* Install the dtv pointer. The pointer passed is to the element with
66 index -1 which contain the length. */
67# define INSTALL_DTV(tcbp, dtvp) \
68 (((tcbhead_t *) (tcbp))->dtv = (dtvp) + 1)
69
70/* Install new dtv for current thread. */
71# define INSTALL_NEW_DTV(dtv) \
72 (THREAD_DTV() = (dtv))
73
74/* Return dtv of given thread descriptor. */
75# define GET_DTV(tcbp) \
76 (((tcbhead_t *) (tcbp))->dtv)
77
78/* Code to initially initialize the thread pointer. */
79# define TLS_INIT_TP(tcbp) \
80 ({ \
81 long result_var; \
82 __builtin_set_thread_pointer (tcbp); \
83 result_var = INTERNAL_SYSCALL_CALL (arc_settls, (tcbp));\
84 INTERNAL_SYSCALL_ERROR_P (result_var) \
85 ? "settls syscall error" : NULL; \
86 })
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 *) __builtin_thread_pointer ())->dtv)
94
95/* Return the thread descriptor for the current thread. */
96# define THREAD_SELF \
97 ((struct pthread *)__builtin_thread_pointer () - 1)
98
99/* Magic for libthread_db to know how to do THREAD_SELF. */
100# define DB_THREAD_SELF \
101 CONST_THREAD_AREA (32, sizeof (struct pthread))
102
103/* Access to data in the thread descriptor is easy. */
104# define THREAD_GETMEM(descr, member) \
105 descr->member
106# define THREAD_GETMEM_NC(descr, member, idx) \
107 descr->member[idx]
108# define THREAD_SETMEM(descr, member, value) \
109 descr->member = (value)
110# define THREAD_SETMEM_NC(descr, member, idx, value) \
111 descr->member[idx] = (value)
112
113/* Get and set the global scope generation counter in struct pthread. */
114#define THREAD_GSCOPE_IN_TCB 1
115#define THREAD_GSCOPE_FLAG_UNUSED 0
116#define THREAD_GSCOPE_FLAG_USED 1
117#define THREAD_GSCOPE_FLAG_WAIT 2
118#define THREAD_GSCOPE_RESET_FLAG() \
119 do \
120 { int __res \
121 = atomic_exchange_rel (&THREAD_SELF->header.gscope_flag, \
122 THREAD_GSCOPE_FLAG_UNUSED); \
123 if (__res == THREAD_GSCOPE_FLAG_WAIT) \
124 lll_futex_wake (&THREAD_SELF->header.gscope_flag, 1, LLL_PRIVATE); \
125 } \
126 while (0)
127#define THREAD_GSCOPE_SET_FLAG() \
128 do \
129 { \
130 THREAD_SELF->header.gscope_flag = THREAD_GSCOPE_FLAG_USED; \
131 atomic_write_barrier (); \
132 } \
133 while (0)
02613152
VG
134
135#endif /* !__ASSEMBLER__ */
136
137#endif /* tls.h */