1 |
13 |
serginhofr |
/* Definition for thread-local data handling. NPTL/RISC-V version.
|
2 |
|
|
Copyright (C) 2011-2014 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, write to the Free
|
17 |
|
|
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
18 |
|
|
02111-1307 USA. */
|
19 |
|
|
|
20 |
|
|
#ifndef _RISCV_TLS_H
|
21 |
|
|
#define _RISCV_TLS_H 1
|
22 |
|
|
|
23 |
|
|
#include <dl-sysdep.h>
|
24 |
|
|
|
25 |
|
|
/* Signal that TLS support is available. */
|
26 |
|
|
#define USE_TLS 1
|
27 |
|
|
|
28 |
|
|
#ifndef __ASSEMBLER__
|
29 |
|
|
# include <stdbool.h>
|
30 |
|
|
# include <stddef.h>
|
31 |
|
|
# include <stdint.h>
|
32 |
|
|
|
33 |
|
|
/* Type for the dtv. */
|
34 |
|
|
typedef union dtv
|
35 |
|
|
{
|
36 |
|
|
size_t counter;
|
37 |
|
|
struct
|
38 |
|
|
{
|
39 |
|
|
void *val;
|
40 |
|
|
bool is_static;
|
41 |
|
|
} pointer;
|
42 |
|
|
} dtv_t;
|
43 |
|
|
|
44 |
|
|
register void* __thread_self asm("tp");
|
45 |
|
|
# define READ_THREAD_POINTER() ({ __thread_self; })
|
46 |
|
|
|
47 |
|
|
/* Get system call information. */
|
48 |
|
|
# include <sysdep.h>
|
49 |
|
|
|
50 |
|
|
/* The TP points to the start of the thread blocks. */
|
51 |
|
|
# define TLS_DTV_AT_TP 1
|
52 |
|
|
# define TLS_TCB_AT_TP 0
|
53 |
|
|
|
54 |
|
|
/* Get the thread descriptor definition. */
|
55 |
|
|
# include <nptl/descr.h>
|
56 |
|
|
|
57 |
|
|
typedef struct
|
58 |
|
|
{
|
59 |
|
|
dtv_t *dtv;
|
60 |
|
|
void *private;
|
61 |
|
|
} tcbhead_t;
|
62 |
|
|
|
63 |
|
|
/* This is the size of the initial TCB. Because our TCB is before the thread
|
64 |
|
|
pointer, we don't need this. */
|
65 |
|
|
# define TLS_INIT_TCB_SIZE 0
|
66 |
|
|
|
67 |
|
|
/* Alignment requirements for the initial TCB. */
|
68 |
|
|
# define TLS_INIT_TCB_ALIGN __alignof__ (struct pthread)
|
69 |
|
|
|
70 |
|
|
/* This is the size of the TCB. Because our TCB is before the thread
|
71 |
|
|
pointer, we don't need this. */
|
72 |
|
|
# define TLS_TCB_SIZE 0
|
73 |
|
|
|
74 |
|
|
/* Alignment requirements for the TCB. */
|
75 |
|
|
# define TLS_TCB_ALIGN __alignof__ (struct pthread)
|
76 |
|
|
|
77 |
|
|
/* This is the size we need before TCB - actually, it includes the TCB. */
|
78 |
|
|
# define TLS_PRE_TCB_SIZE \
|
79 |
|
|
(sizeof (struct pthread) \
|
80 |
|
|
+ ((sizeof (tcbhead_t) + TLS_TCB_ALIGN - 1) & ~(TLS_TCB_ALIGN - 1)))
|
81 |
|
|
|
82 |
|
|
/* The thread pointer tp points to the end of the TCB.
|
83 |
|
|
The pthread_descr structure is immediately in front of the TCB. */
|
84 |
|
|
# define TLS_TCB_OFFSET 0
|
85 |
|
|
|
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))[-1].dtv = (dtvp) + 1)
|
90 |
|
|
|
91 |
|
|
/* Install new dtv for current thread. */
|
92 |
|
|
# define INSTALL_NEW_DTV(dtv) \
|
93 |
|
|
(THREAD_DTV() = (dtv))
|
94 |
|
|
|
95 |
|
|
/* Return dtv of given thread descriptor. */
|
96 |
|
|
# define GET_DTV(tcbp) \
|
97 |
|
|
(((tcbhead_t *) (tcbp))[-1].dtv)
|
98 |
|
|
|
99 |
|
|
/* Code to initially initialize the thread pointer. */
|
100 |
|
|
# define TLS_INIT_TP(tcbp) \
|
101 |
|
|
({ __thread_self = (char*)tcbp + TLS_TCB_OFFSET; NULL; })
|
102 |
|
|
|
103 |
|
|
/* Return the address of the dtv for the current thread. */
|
104 |
|
|
# define THREAD_DTV() \
|
105 |
|
|
(((tcbhead_t *) (READ_THREAD_POINTER () - TLS_TCB_OFFSET))[-1].dtv)
|
106 |
|
|
|
107 |
|
|
/* Return the thread descriptor for the current thread. */
|
108 |
|
|
# define THREAD_SELF \
|
109 |
|
|
((struct pthread *) (READ_THREAD_POINTER () \
|
110 |
|
|
- TLS_TCB_OFFSET - TLS_PRE_TCB_SIZE))
|
111 |
|
|
|
112 |
|
|
/* Value passed to 'clone' for initialization of the thread register. */
|
113 |
|
|
# define TLS_DEFINE_INIT_TP(tp, pd) \
|
114 |
|
|
void *tp = (void *) (pd) + TLS_TCB_OFFSET + TLS_PRE_TCB_SIZE
|
115 |
|
|
|
116 |
|
|
/* Magic for libthread_db to know how to do THREAD_SELF. */
|
117 |
|
|
# define DB_THREAD_SELF \
|
118 |
|
|
CONST_THREAD_AREA (32, TLS_TCB_OFFSET + TLS_PRE_TCB_SIZE)
|
119 |
|
|
|
120 |
|
|
/* Access to data in the thread descriptor is easy. */
|
121 |
|
|
# define THREAD_GETMEM(descr, member) \
|
122 |
|
|
descr->member
|
123 |
|
|
# define THREAD_GETMEM_NC(descr, member, idx) \
|
124 |
|
|
descr->member[idx]
|
125 |
|
|
# define THREAD_SETMEM(descr, member, value) \
|
126 |
|
|
descr->member = (value)
|
127 |
|
|
# define THREAD_SETMEM_NC(descr, member, idx, value) \
|
128 |
|
|
descr->member[idx] = (value)
|
129 |
|
|
|
130 |
|
|
/* l_tls_offset == 0 is perfectly valid, so we have to use some different
|
131 |
|
|
value to mean unset l_tls_offset. */
|
132 |
|
|
# define NO_TLS_OFFSET -1
|
133 |
|
|
|
134 |
|
|
/* Get and set the global scope generation counter in struct pthread. */
|
135 |
|
|
# define THREAD_GSCOPE_FLAG_UNUSED 0
|
136 |
|
|
# define THREAD_GSCOPE_FLAG_USED 1
|
137 |
|
|
# define THREAD_GSCOPE_FLAG_WAIT 2
|
138 |
|
|
# define THREAD_GSCOPE_RESET_FLAG() \
|
139 |
|
|
do \
|
140 |
|
|
{ int __res \
|
141 |
|
|
= atomic_exchange_rel (&THREAD_SELF->header.gscope_flag, \
|
142 |
|
|
THREAD_GSCOPE_FLAG_UNUSED); \
|
143 |
|
|
if (__res == THREAD_GSCOPE_FLAG_WAIT) \
|
144 |
|
|
lll_futex_wake (&THREAD_SELF->header.gscope_flag, 1, LLL_PRIVATE); \
|
145 |
|
|
} \
|
146 |
|
|
while (0)
|
147 |
|
|
# define THREAD_GSCOPE_SET_FLAG() \
|
148 |
|
|
do \
|
149 |
|
|
{ \
|
150 |
|
|
THREAD_SELF->header.gscope_flag = THREAD_GSCOPE_FLAG_USED; \
|
151 |
|
|
atomic_write_barrier (); \
|
152 |
|
|
} \
|
153 |
|
|
while (0)
|
154 |
|
|
# define THREAD_GSCOPE_WAIT() \
|
155 |
|
|
GL(dl_wait_lookup_done) ()
|
156 |
|
|
|
157 |
|
|
#endif /* __ASSEMBLER__ */
|
158 |
|
|
|
159 |
|
|
#endif /* tls.h */
|