|
Packit |
6c4009 |
/* Thread-local storage descriptor handling in the ELF dynamic linker.
|
|
Packit |
6c4009 |
x86_64 version.
|
|
Packit |
6c4009 |
Copyright (C) 2005-2018 Free Software Foundation, Inc.
|
|
Packit |
6c4009 |
This file is part of the GNU C Library.
|
|
Packit |
6c4009 |
|
|
Packit |
6c4009 |
The GNU C Library is free software; you can redistribute it and/or
|
|
Packit |
6c4009 |
modify it under the terms of the GNU Lesser General Public
|
|
Packit |
6c4009 |
License as published by the Free Software Foundation; either
|
|
Packit |
6c4009 |
version 2.1 of the License, or (at your option) any later version.
|
|
Packit |
6c4009 |
|
|
Packit |
6c4009 |
The GNU C Library is distributed in the hope that it will be useful,
|
|
Packit |
6c4009 |
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
Packit |
6c4009 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Packit |
6c4009 |
Lesser General Public License for more details.
|
|
Packit |
6c4009 |
|
|
Packit |
6c4009 |
You should have received a copy of the GNU Lesser General Public
|
|
Packit |
6c4009 |
License along with the GNU C Library; if not, see
|
|
Packit |
6c4009 |
<http://www.gnu.org/licenses/>. */
|
|
Packit |
6c4009 |
|
|
Packit |
6c4009 |
#include <stdint.h>
|
|
Packit |
6c4009 |
|
|
Packit |
6c4009 |
#ifndef _X86_64_DL_TLSDESC_H
|
|
Packit |
6c4009 |
# define _X86_64_DL_TLSDESC_H 1
|
|
Packit |
6c4009 |
|
|
Packit |
6c4009 |
/* Type used to represent a TLS descriptor in the GOT. */
|
|
Packit |
6c4009 |
struct tlsdesc
|
|
Packit |
6c4009 |
{
|
|
Packit |
6c4009 |
/* Anonymous union is used here to ensure that GOT entry slot is always
|
|
Packit |
6c4009 |
8 bytes for both x32 and x86-64. */
|
|
Packit |
6c4009 |
union
|
|
Packit |
6c4009 |
{
|
|
Packit |
6c4009 |
ptrdiff_t (*entry) (struct tlsdesc *on_rax);
|
|
Packit |
6c4009 |
uint64_t entry_slot;
|
|
Packit |
6c4009 |
};
|
|
Packit |
6c4009 |
union
|
|
Packit |
6c4009 |
{
|
|
Packit |
6c4009 |
void *arg;
|
|
Packit |
6c4009 |
uint64_t arg_slot;
|
|
Packit |
6c4009 |
};
|
|
Packit |
6c4009 |
};
|
|
Packit |
6c4009 |
|
|
Packit |
6c4009 |
typedef struct dl_tls_index
|
|
Packit |
6c4009 |
{
|
|
Packit |
6c4009 |
uint64_t ti_module;
|
|
Packit |
6c4009 |
uint64_t ti_offset;
|
|
Packit |
6c4009 |
} tls_index;
|
|
Packit |
6c4009 |
|
|
Packit |
6c4009 |
/* Type used as the argument in a TLS descriptor for a symbol that
|
|
Packit |
6c4009 |
needs dynamic TLS offsets. */
|
|
Packit |
6c4009 |
struct tlsdesc_dynamic_arg
|
|
Packit |
6c4009 |
{
|
|
Packit |
6c4009 |
tls_index tlsinfo;
|
|
Packit |
6c4009 |
size_t gen_count;
|
|
Packit |
6c4009 |
};
|
|
Packit |
6c4009 |
|
|
Packit |
6c4009 |
extern ptrdiff_t attribute_hidden
|
|
Packit |
6c4009 |
_dl_tlsdesc_return(struct tlsdesc *on_rax),
|
|
Packit |
6c4009 |
_dl_tlsdesc_undefweak(struct tlsdesc *on_rax),
|
|
Packit |
6c4009 |
_dl_tlsdesc_resolve_rela(struct tlsdesc *on_rax),
|
|
Packit |
6c4009 |
_dl_tlsdesc_resolve_hold(struct tlsdesc *on_rax);
|
|
Packit |
6c4009 |
|
|
Packit |
6c4009 |
# ifdef SHARED
|
|
Packit |
6c4009 |
extern void *_dl_make_tlsdesc_dynamic (struct link_map *map,
|
|
Packit |
6c4009 |
size_t ti_offset)
|
|
Packit |
6c4009 |
attribute_hidden;
|
|
Packit |
6c4009 |
|
|
Packit |
6c4009 |
extern ptrdiff_t attribute_hidden _dl_tlsdesc_dynamic(struct tlsdesc *);
|
|
Packit |
6c4009 |
# endif
|
|
Packit |
6c4009 |
|
|
Packit |
6c4009 |
#endif
|