]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/s390/dl-tls.h
Update copyright notices with scripts/update-copyrights
[thirdparty/glibc.git] / sysdeps / s390 / dl-tls.h
CommitLineData
e6ebd2e4 1/* Thread-local storage handling in the ELF dynamic linker. s390 version.
d4697bc9 2 Copyright (C) 2003-2014 Free Software Foundation, Inc.
e6ebd2e4
UD
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
59ba27a6
PE
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
e6ebd2e4
UD
18
19
20/* Type used for the representation of TLS information in the GOT. */
21typedef struct
22{
23 unsigned long int ti_module;
24 unsigned long int ti_offset;
25} tls_index;
26
27
28#ifdef SHARED
acd98a8e 29
e6ebd2e4
UD
30extern unsigned long __tls_get_offset (unsigned long got_offset);
31
754af0b1 32# ifdef IS_IN_rtld
acd98a8e
AK
33
34# include <shlib-compat.h>
35
36extern void *__tls_get_addr (tls_index *ti) attribute_hidden;
37/* Make a temporary alias of __tls_get_addr to remove the hidden
38 attribute. Then export __tls_get_addr as __tls_get_addr_internal
39 for use from libc. We do not want to export __tls_get_addr, but we
40 do need to use it from libc when looking up the address of a TLS
41 variable. We don't use __tls_get_offset because it requires r12 to
42 be setup and that might not always be true. Either way it's more
43 optimal to use __tls_get_addr directly (that's what
44 __tls_get_offset does anyways). */
45strong_alias (__tls_get_addr, __tls_get_addr_internal_tmp);
46versioned_symbol (ld, __tls_get_addr_internal_tmp,
47 __tls_get_addr_internal, GLIBC_PRIVATE);
48
e6ebd2e4
UD
49/* The special thing about the s390 TLS ABI is that we do not have the
50 standard __tls_get_addr function but the __tls_get_offset function
51 which differs in two important aspects:
52 1) __tls_get_offset gets a got offset instead of a pointer to the
53 tls_index structure
54 2) __tls_get_offset returns the offset of the requested variable to
55 the thread descriptor instead of a pointer to the variable.
56 */
754af0b1 57# ifdef __s390x__
e6ebd2e4
UD
58asm("\n\
59 .text\n\
60 .globl __tls_get_offset\n\
61 .type __tls_get_offset, @function\n\
62 .align 4\n\
63__tls_get_offset:\n\
64 la %r2,0(%r2,%r12)\n\
65 jg __tls_get_addr\n\
66");
754af0b1 67# elif defined __s390__
e6ebd2e4
UD
68asm("\n\
69 .text\n\
70 .globl __tls_get_offset\n\
71 .type __tls_get_offset, @function\n\
72 .align 4\n\
73__tls_get_offset:\n\
74 basr %r3,0\n\
750: la %r2,0(%r2,%r12)\n\
76 l %r4,1f-0b(%r3)\n\
77 b 0(%r4,%r3)\n\
781: .long __tls_get_addr - 0b\n\
79");
754af0b1 80# endif
acd98a8e
AK
81# else /* IS_IN_rtld */
82extern void *__tls_get_addr_internal (tls_index *ti);
83# endif /* !IS_IN_rtld */
e6ebd2e4 84
754af0b1 85# define GET_ADDR_OFFSET \
e6ebd2e4
UD
86 (ti->ti_offset - (unsigned long) __builtin_thread_pointer ())
87
acd98a8e
AK
88/* Use the privately exported __tls_get_addr_internal instead of
89 __tls_get_offset in order to avoid the __tls_get_offset special
90 linkage requiring the GOT pointer to be set up in r12. The
91 compiler will take care of setting up r12 only if itself issued the
92 __tls_get_offset call. */
93# define __TLS_GET_ADDR(__ti) \
94 ({ (void *) __tls_get_addr_internal ((char *) (__ti)) \
95 + (unsigned long) __builtin_thread_pointer (); })
e6ebd2e4
UD
96
97#endif
e6c61494
UD
98
99/* Value used for dtv entries for which the allocation is delayed. */
100#define TLS_DTV_UNALLOCATED ((void *) -1l)