2002-11-27 08:55:35 +00:00
|
|
|
/* Definition for thread-local data handling. nptl/x86_64 version.
|
2018-01-01 00:32:25 +00:00
|
|
|
Copyright (C) 2002-2018 Free Software Foundation, Inc.
|
2002-11-27 08:55:35 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-02-09 23:18:22 +00:00
|
|
|
License along with the GNU C Library; if not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
2002-11-27 08:55:35 +00:00
|
|
|
|
|
|
|
#ifndef _TLS_H
|
|
|
|
#define _TLS_H 1
|
|
|
|
|
|
|
|
#ifndef __ASSEMBLER__
|
2006-04-27 01:25:47 +00:00
|
|
|
# include <asm/prctl.h> /* For ARCH_SET_FS. */
|
2005-01-06 22:40:27 +00:00
|
|
|
# include <stdbool.h>
|
2002-11-27 08:55:35 +00:00
|
|
|
# include <stddef.h>
|
|
|
|
# include <stdint.h>
|
2002-12-05 00:44:01 +00:00
|
|
|
# include <stdlib.h>
|
2007-05-19 07:08:23 +00:00
|
|
|
# include <sysdep.h>
|
Narrowing the visibility of libc-internal.h even further.
posix/wordexp-test.c used libc-internal.h for PTR_ALIGN_DOWN; similar
to what was done with libc-diag.h, I have split the definitions of
cast_to_integer, ALIGN_UP, ALIGN_DOWN, PTR_ALIGN_UP, and PTR_ALIGN_DOWN
to a new header, libc-pointer-arith.h.
It then occurred to me that the remaining declarations in libc-internal.h
are mostly to do with early initialization, and probably most of the
files including it, even in the core code, don't need it anymore. Indeed,
only 19 files actually need what remains of libc-internal.h. 23 others
need libc-diag.h instead, and 12 need libc-pointer-arith.h instead.
No file needs more than one of them, and 16 don't need any of them!
So, with this patch, libc-internal.h stops including libc-diag.h as
well as losing the pointer arithmetic macros, and all including files
are adjusted.
* include/libc-pointer-arith.h: New file. Define
cast_to_integer, ALIGN_UP, ALIGN_DOWN, PTR_ALIGN_UP, and
PTR_ALIGN_DOWN here.
* include/libc-internal.h: Definitions of above macros
moved from here. Don't include libc-diag.h anymore either.
* posix/wordexp-test.c: Include stdint.h and libc-pointer-arith.h.
Don't include libc-internal.h.
* debug/pcprofile.c, elf/dl-tunables.c, elf/soinit.c, io/openat.c
* io/openat64.c, misc/ptrace.c, nptl/pthread_clock_gettime.c
* nptl/pthread_clock_settime.c, nptl/pthread_cond_common.c
* string/strcoll_l.c, sysdeps/nacl/brk.c
* sysdeps/unix/clock_settime.c
* sysdeps/unix/sysv/linux/i386/get_clockfreq.c
* sysdeps/unix/sysv/linux/ia64/get_clockfreq.c
* sysdeps/unix/sysv/linux/powerpc/get_clockfreq.c
* sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c:
Don't include libc-internal.h.
* elf/get-dynamic-info.h, iconv/loop.c
* iconvdata/iso-2022-cn-ext.c, locale/weight.h, locale/weightwc.h
* misc/reboot.c, nis/nis_table.c, nptl_db/thread_dbP.h
* nscd/connections.c, resolv/res_send.c, soft-fp/fmadf4.c
* soft-fp/fmasf4.c, soft-fp/fmatf4.c, stdio-common/vfscanf.c
* sysdeps/ieee754/dbl-64/e_lgamma_r.c
* sysdeps/ieee754/dbl-64/k_rem_pio2.c
* sysdeps/ieee754/flt-32/e_lgammaf_r.c
* sysdeps/ieee754/flt-32/k_rem_pio2f.c
* sysdeps/ieee754/ldbl-128/k_tanl.c
* sysdeps/ieee754/ldbl-128ibm/k_tanl.c
* sysdeps/ieee754/ldbl-96/e_lgammal_r.c
* sysdeps/ieee754/ldbl-96/k_tanl.c, sysdeps/nptl/futex-internal.h:
Include libc-diag.h instead of libc-internal.h.
* elf/dl-load.c, elf/dl-reloc.c, locale/programs/locarchive.c
* nptl/nptl-init.c, string/strcspn.c, string/strspn.c
* malloc/malloc.c, sysdeps/i386/nptl/tls.h
* sysdeps/nacl/dl-map-segments.h, sysdeps/x86_64/atomic-machine.h
* sysdeps/unix/sysv/linux/spawni.c
* sysdeps/x86_64/nptl/tls.h:
Include libc-pointer-arith.h instead of libc-internal.h.
* elf/get-dynamic-info.h, sysdeps/nacl/dl-map-segments.h
* sysdeps/x86_64/atomic-machine.h:
Add multiple include guard.
2017-02-27 01:17:52 +00:00
|
|
|
# include <libc-pointer-arith.h> /* For cast_to_integer. */
|
2007-05-23 20:51:45 +00:00
|
|
|
# include <kernel-features.h>
|
2016-06-20 12:31:40 +00:00
|
|
|
# include <dl-dtv.h>
|
2012-11-03 01:43:27 +00:00
|
|
|
|
|
|
|
/* Replacement type for __m128 since this file is included by ld.so,
|
|
|
|
which is compiled with -mno-sse. It must not change the alignment
|
|
|
|
of rtld_savespace_sse. */
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
int i[4];
|
|
|
|
} __128bits;
|
2002-11-27 08:55:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2007-04-26 04:44:47 +00:00
|
|
|
void *tcb; /* Pointer to the TCB. Not necessarily the
|
2002-11-27 08:55:35 +00:00
|
|
|
thread descriptor used by libpthread. */
|
|
|
|
dtv_t *dtv;
|
|
|
|
void *self; /* Pointer to the thread descriptor. */
|
2003-06-17 08:58:31 +00:00
|
|
|
int multiple_threads;
|
2007-05-19 07:08:23 +00:00
|
|
|
int gscope_flag;
|
2005-06-26 18:14:26 +00:00
|
|
|
uintptr_t sysinfo;
|
|
|
|
uintptr_t stack_guard;
|
2005-12-18 06:58:22 +00:00
|
|
|
uintptr_t pointer_guard;
|
2007-04-26 04:44:47 +00:00
|
|
|
unsigned long int vgetcpu_cache[2];
|
2018-07-14 12:53:05 +00:00
|
|
|
/* Bit 0: X86_FEATURE_1_IBT.
|
|
|
|
Bit 1: X86_FEATURE_1_SHSTK.
|
|
|
|
*/
|
|
|
|
unsigned int feature_1;
|
2018-01-25 04:35:22 +00:00
|
|
|
int __glibc_unused1;
|
2008-12-08 23:30:25 +00:00
|
|
|
/* Reservation of some values for the TM ABI. */
|
2013-05-15 18:20:54 +00:00
|
|
|
void *__private_tm[4];
|
|
|
|
/* GCC split stack support. */
|
|
|
|
void *__private_ss;
|
2018-07-25 11:39:26 +00:00
|
|
|
/* The lowest address of shadow stack, */
|
|
|
|
unsigned long long int ssp_base;
|
Save and restore vector registers in x86-64 ld.so
This patch adds SSE, AVX and AVX512 versions of _dl_runtime_resolve
and _dl_runtime_profile, which save and restore the first 8 vector
registers used for parameter passing. elf_machine_runtime_setup
selects the proper _dl_runtime_resolve or _dl_runtime_profile based
on _dl_x86_cpu_features. It avoids race condition caused by
FOREIGN_CALL macros, which are only used for x86-64.
Performance impact of saving and restoring 8 vector registers are
negligible on Nehalem, Sandy Bridge, Ivy Bridge and Haswell when
ld.so is optimized with SSE2.
[BZ #15128]
* sysdeps/x86_64/Makefile [$(subdir) == elf] (tests): Add
ifuncmain8.
(modules-names): Add ifuncmod8.
($(objpfx)ifuncmain8): New rule.
* sysdeps/x86_64/dl-machine.h: Include <dl-procinfo.h> and
<cpuid.h>.
(elf_machine_runtime_setup): Use _dl_runtime_resolve_sse,
_dl_runtime_resolve_avx, or _dl_runtime_resolve_avx512,
_dl_runtime_profile_sse, _dl_runtime_profile_avx, or
_dl_runtime_profile_avx512, based on HAS_ARCH_FEATURE.
* sysdeps/x86_64/dl-trampoline.S: Rewrite.
* sysdeps/x86_64/dl-trampoline.h: Likewise.
* sysdeps/x86_64/ifuncmain8.c: New file.
* sysdeps/x86_64/ifuncmod8.c: Likewise.
* sysdeps/x86_64/nptl/tcb-offsets.sym (RTLD_SAVESPACE_SSE):
Removed.
* sysdeps/x86_64/nptl/tls.h (__128bits): Removed.
(tcbhead_t): Change rtld_must_xmm_save to __glibc_unused1.
Change rtld_savespace_sse to __glibc_unused2.
(RTLD_CHECK_FOREIGN_CALL): Removed.
(RTLD_ENABLE_FOREIGN_CALL): Likewise.
(RTLD_PREPARE_FOREIGN_CALL): Likewise.
(RTLD_FINALIZE_FOREIGN_CALL): Likewise.
2015-08-25 11:33:54 +00:00
|
|
|
/* Must be kept even if it is no longer used by glibc since programs,
|
|
|
|
like AddressSanitizer, depend on the size of tcbhead_t. */
|
|
|
|
__128bits __glibc_unused2[8][4] __attribute__ ((aligned (32)));
|
2009-07-29 15:33:03 +00:00
|
|
|
|
|
|
|
void *__padding[8];
|
2002-11-27 08:55:35 +00:00
|
|
|
} tcbhead_t;
|
2003-06-17 08:58:31 +00:00
|
|
|
|
2018-06-12 13:23:28 +00:00
|
|
|
# ifdef __ILP32__
|
|
|
|
/* morestack.S in libgcc uses offset 0x40 to access __private_ss, */
|
|
|
|
_Static_assert (offsetof (tcbhead_t, __private_ss) == 0x40,
|
|
|
|
"offset of __private_ss != 0x40");
|
2018-07-25 11:39:26 +00:00
|
|
|
/* NB: ssp_base used to be "long int __glibc_reserved2", which was
|
|
|
|
changed from 32 bits to 64 bits. Make sure that the offset of the
|
|
|
|
next field, __glibc_unused2, is unchanged. */
|
|
|
|
_Static_assert (offsetof (tcbhead_t, __glibc_unused2) == 0x60,
|
|
|
|
"offset of __glibc_unused2 != 0x60");
|
2018-06-12 13:23:28 +00:00
|
|
|
# else
|
|
|
|
/* morestack.S in libgcc uses offset 0x70 to access __private_ss, */
|
|
|
|
_Static_assert (offsetof (tcbhead_t, __private_ss) == 0x70,
|
|
|
|
"offset of __private_ss != 0x70");
|
2018-07-25 11:39:26 +00:00
|
|
|
_Static_assert (offsetof (tcbhead_t, __glibc_unused2) == 0x80,
|
|
|
|
"offset of __glibc_unused2 != 0x80");
|
2018-06-12 13:23:28 +00:00
|
|
|
# endif
|
|
|
|
|
2003-03-12 20:03:07 +00:00
|
|
|
#else /* __ASSEMBLER__ */
|
|
|
|
# include <tcb-offsets.h>
|
2002-11-27 08:55:35 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/* Alignment requirement for the stack. */
|
|
|
|
#define STACK_ALIGN 16
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __ASSEMBLER__
|
|
|
|
/* Get system call information. */
|
|
|
|
# include <sysdep.h>
|
|
|
|
|
2003-04-14 17:30:34 +00:00
|
|
|
#ifndef LOCK_PREFIX
|
|
|
|
# ifdef UP
|
|
|
|
# define LOCK_PREFIX /* nothing */
|
|
|
|
# else
|
|
|
|
# define LOCK_PREFIX "lock;"
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2005-05-21 19:01:22 +00:00
|
|
|
/* This is the size of the initial TCB. Can't be just sizeof (tcbhead_t),
|
|
|
|
because NPTL getpid, __libc_alloca_cutoff etc. need (almost) the whole
|
|
|
|
struct pthread even when not linked with -lpthread. */
|
|
|
|
# define TLS_INIT_TCB_SIZE sizeof (struct pthread)
|
2002-11-27 08:55:35 +00:00
|
|
|
|
|
|
|
/* Alignment requirements for the initial TCB. */
|
2005-05-21 19:01:22 +00:00
|
|
|
# define TLS_INIT_TCB_ALIGN __alignof__ (struct pthread)
|
2002-11-27 08:55:35 +00:00
|
|
|
|
|
|
|
/* This is the size of the TCB. */
|
|
|
|
# define TLS_TCB_SIZE sizeof (struct pthread)
|
|
|
|
|
|
|
|
/* Alignment requirements for the TCB. */
|
2010-10-14 02:12:03 +00:00
|
|
|
# define TLS_TCB_ALIGN __alignof__ (struct pthread)
|
2002-11-27 08:55:35 +00:00
|
|
|
|
|
|
|
/* The TCB can have any size and the memory following the address the
|
|
|
|
thread pointer points to is unspecified. Allocate the TCB there. */
|
|
|
|
# define TLS_TCB_AT_TP 1
|
2014-03-14 17:44:34 +00:00
|
|
|
# define TLS_DTV_AT_TP 0
|
|
|
|
|
|
|
|
/* Get the thread descriptor definition. */
|
|
|
|
# include <nptl/descr.h>
|
2002-11-27 08:55:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* Install the dtv pointer. The pointer passed is to the element with
|
|
|
|
index -1 which contain the length. */
|
|
|
|
# define INSTALL_DTV(descr, dtvp) \
|
2003-03-10 08:50:36 +00:00
|
|
|
((tcbhead_t *) (descr))->dtv = (dtvp) + 1
|
2002-11-27 08:55:35 +00:00
|
|
|
|
|
|
|
/* Install new dtv for current thread. */
|
2003-03-10 08:50:36 +00:00
|
|
|
# define INSTALL_NEW_DTV(dtvp) \
|
2002-11-27 08:55:35 +00:00
|
|
|
({ struct pthread *__pd; \
|
2003-03-14 22:34:02 +00:00
|
|
|
THREAD_SETMEM (__pd, header.dtv, (dtvp)); })
|
2002-11-27 08:55:35 +00:00
|
|
|
|
|
|
|
/* Return dtv of given thread descriptor. */
|
|
|
|
# define GET_DTV(descr) \
|
|
|
|
(((tcbhead_t *) (descr))->dtv)
|
|
|
|
|
|
|
|
|
|
|
|
/* Code to initially initialize the thread pointer. This might need
|
|
|
|
special attention since 'errno' is not yet available and if the
|
|
|
|
operation can cause a failure 'errno' must not be touched.
|
|
|
|
|
|
|
|
We have to make the syscall for both uses of the macro since the
|
|
|
|
address might be (and probably is) different. */
|
2014-05-13 14:40:41 +00:00
|
|
|
# define TLS_INIT_TP(thrdescr) \
|
2002-11-27 08:55:35 +00:00
|
|
|
({ void *_thrdescr = (thrdescr); \
|
|
|
|
tcbhead_t *_head = _thrdescr; \
|
|
|
|
int _result; \
|
|
|
|
\
|
|
|
|
_head->tcb = _thrdescr; \
|
|
|
|
/* For now the thread descriptor is at the same address. */ \
|
|
|
|
_head->self = _thrdescr; \
|
|
|
|
\
|
|
|
|
/* It is a simple syscall to set the %fs value for the thread. */ \
|
|
|
|
asm volatile ("syscall" \
|
|
|
|
: "=a" (_result) \
|
|
|
|
: "0" ((unsigned long int) __NR_arch_prctl), \
|
|
|
|
"D" ((unsigned long int) ARCH_SET_FS), \
|
2003-03-11 22:02:29 +00:00
|
|
|
"S" (_thrdescr) \
|
2002-11-27 08:55:35 +00:00
|
|
|
: "memory", "cc", "r11", "cx"); \
|
|
|
|
\
|
2002-12-06 11:15:07 +00:00
|
|
|
_result ? "cannot set %fs base address for thread-local storage" : 0; \
|
|
|
|
})
|
2002-11-27 08:55:35 +00:00
|
|
|
|
2014-06-09 19:52:55 +00:00
|
|
|
# define TLS_DEFINE_INIT_TP(tp, pd) void *tp = (pd)
|
|
|
|
|
2002-11-27 08:55:35 +00:00
|
|
|
|
|
|
|
/* Return the address of the dtv for the current thread. */
|
|
|
|
# define THREAD_DTV() \
|
|
|
|
({ struct pthread *__pd; \
|
2003-03-14 22:34:02 +00:00
|
|
|
THREAD_GETMEM (__pd, header.dtv); })
|
2002-11-27 08:55:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* Return the thread descriptor for the current thread.
|
|
|
|
|
|
|
|
The contained asm must *not* be marked volatile since otherwise
|
|
|
|
assignments like
|
2009-08-25 17:42:30 +00:00
|
|
|
pthread_descr self = thread_self();
|
2002-11-27 08:55:35 +00:00
|
|
|
do not get optimized away. */
|
|
|
|
# define THREAD_SELF \
|
|
|
|
({ struct pthread *__self; \
|
2012-05-11 17:13:54 +00:00
|
|
|
asm ("mov %%fs:%c1,%0" : "=r" (__self) \
|
2003-03-14 22:34:02 +00:00
|
|
|
: "i" (offsetof (struct pthread, header.self))); \
|
2002-11-27 08:55:35 +00:00
|
|
|
__self;})
|
|
|
|
|
2003-09-09 07:01:01 +00:00
|
|
|
/* Magic for libthread_db to know how to do THREAD_SELF. */
|
|
|
|
# define DB_THREAD_SELF_INCLUDE <sys/reg.h> /* For the FS constant. */
|
|
|
|
# define DB_THREAD_SELF CONST_THREAD_AREA (64, FS)
|
2002-11-27 08:55:35 +00:00
|
|
|
|
|
|
|
/* Read member of the thread descriptor directly. */
|
|
|
|
# define THREAD_GETMEM(descr, member) \
|
|
|
|
({ __typeof (descr->member) __value; \
|
|
|
|
if (sizeof (__value) == 1) \
|
2003-03-14 09:45:53 +00:00
|
|
|
asm volatile ("movb %%fs:%P2,%b0" \
|
|
|
|
: "=q" (__value) \
|
|
|
|
: "0" (0), "i" (offsetof (struct pthread, member))); \
|
2002-11-27 08:55:35 +00:00
|
|
|
else if (sizeof (__value) == 4) \
|
2003-03-14 09:45:53 +00:00
|
|
|
asm volatile ("movl %%fs:%P1,%0" \
|
|
|
|
: "=r" (__value) \
|
|
|
|
: "i" (offsetof (struct pthread, member))); \
|
2002-11-27 08:55:35 +00:00
|
|
|
else \
|
|
|
|
{ \
|
|
|
|
if (sizeof (__value) != 8) \
|
|
|
|
/* There should not be any value with a size other than 1, \
|
|
|
|
4 or 8. */ \
|
|
|
|
abort (); \
|
|
|
|
\
|
2003-03-14 09:45:53 +00:00
|
|
|
asm volatile ("movq %%fs:%P1,%q0" \
|
|
|
|
: "=r" (__value) \
|
|
|
|
: "i" (offsetof (struct pthread, member))); \
|
2002-11-27 08:55:35 +00:00
|
|
|
} \
|
|
|
|
__value; })
|
|
|
|
|
|
|
|
|
|
|
|
/* Same as THREAD_GETMEM, but the member offset can be non-constant. */
|
|
|
|
# define THREAD_GETMEM_NC(descr, member, idx) \
|
|
|
|
({ __typeof (descr->member[0]) __value; \
|
|
|
|
if (sizeof (__value) == 1) \
|
2003-03-14 09:45:53 +00:00
|
|
|
asm volatile ("movb %%fs:%P2(%q3),%b0" \
|
|
|
|
: "=q" (__value) \
|
|
|
|
: "0" (0), "i" (offsetof (struct pthread, member[0])), \
|
|
|
|
"r" (idx)); \
|
2002-11-27 08:55:35 +00:00
|
|
|
else if (sizeof (__value) == 4) \
|
2003-03-14 09:45:53 +00:00
|
|
|
asm volatile ("movl %%fs:%P1(,%q2,4),%0" \
|
|
|
|
: "=r" (__value) \
|
|
|
|
: "i" (offsetof (struct pthread, member[0])), "r" (idx));\
|
2002-11-27 08:55:35 +00:00
|
|
|
else \
|
|
|
|
{ \
|
|
|
|
if (sizeof (__value) != 8) \
|
|
|
|
/* There should not be any value with a size other than 1, \
|
|
|
|
4 or 8. */ \
|
|
|
|
abort (); \
|
|
|
|
\
|
2003-03-14 09:45:53 +00:00
|
|
|
asm volatile ("movq %%fs:%P1(,%q2,8),%q0" \
|
|
|
|
: "=r" (__value) \
|
|
|
|
: "i" (offsetof (struct pthread, member[0])), \
|
|
|
|
"r" (idx)); \
|
2002-11-27 08:55:35 +00:00
|
|
|
} \
|
|
|
|
__value; })
|
|
|
|
|
|
|
|
|
2003-04-12 20:32:01 +00:00
|
|
|
/* Loading addresses of objects on x86-64 needs to be treated special
|
|
|
|
when generating PIC code. */
|
|
|
|
#ifdef __pic__
|
|
|
|
# define IMM_MODE "nr"
|
|
|
|
#else
|
|
|
|
# define IMM_MODE "ir"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2015-03-28 04:31:56 +00:00
|
|
|
/* Set member of the thread descriptor directly. */
|
2002-11-27 08:55:35 +00:00
|
|
|
# define THREAD_SETMEM(descr, member, value) \
|
|
|
|
({ if (sizeof (descr->member) == 1) \
|
2003-03-12 05:45:00 +00:00
|
|
|
asm volatile ("movb %b0,%%fs:%P1" : \
|
2002-11-27 08:55:35 +00:00
|
|
|
: "iq" (value), \
|
|
|
|
"i" (offsetof (struct pthread, member))); \
|
|
|
|
else if (sizeof (descr->member) == 4) \
|
|
|
|
asm volatile ("movl %0,%%fs:%P1" : \
|
2003-04-12 20:32:01 +00:00
|
|
|
: IMM_MODE (value), \
|
2002-11-27 08:55:35 +00:00
|
|
|
"i" (offsetof (struct pthread, member))); \
|
|
|
|
else \
|
|
|
|
{ \
|
|
|
|
if (sizeof (descr->member) != 8) \
|
|
|
|
/* There should not be any value with a size other than 1, \
|
|
|
|
4 or 8. */ \
|
|
|
|
abort (); \
|
|
|
|
\
|
2003-03-12 05:45:00 +00:00
|
|
|
asm volatile ("movq %q0,%%fs:%P1" : \
|
2012-11-27 00:42:38 +00:00
|
|
|
: IMM_MODE ((uint64_t) cast_to_integer (value)), \
|
2002-11-27 08:55:35 +00:00
|
|
|
"i" (offsetof (struct pthread, member))); \
|
|
|
|
}})
|
|
|
|
|
|
|
|
|
2015-03-28 04:31:56 +00:00
|
|
|
/* Same as THREAD_SETMEM, but the member offset can be non-constant. */
|
2002-11-27 08:55:35 +00:00
|
|
|
# define THREAD_SETMEM_NC(descr, member, idx, value) \
|
|
|
|
({ if (sizeof (descr->member[0]) == 1) \
|
2003-03-12 05:45:00 +00:00
|
|
|
asm volatile ("movb %b0,%%fs:%P1(%q2)" : \
|
2002-11-27 08:55:35 +00:00
|
|
|
: "iq" (value), \
|
|
|
|
"i" (offsetof (struct pthread, member[0])), \
|
|
|
|
"r" (idx)); \
|
|
|
|
else if (sizeof (descr->member[0]) == 4) \
|
2003-03-12 05:45:00 +00:00
|
|
|
asm volatile ("movl %0,%%fs:%P1(,%q2,4)" : \
|
2003-04-12 20:32:01 +00:00
|
|
|
: IMM_MODE (value), \
|
2002-11-27 08:55:35 +00:00
|
|
|
"i" (offsetof (struct pthread, member[0])), \
|
|
|
|
"r" (idx)); \
|
|
|
|
else \
|
|
|
|
{ \
|
|
|
|
if (sizeof (descr->member[0]) != 8) \
|
|
|
|
/* There should not be any value with a size other than 1, \
|
|
|
|
4 or 8. */ \
|
|
|
|
abort (); \
|
|
|
|
\
|
2003-03-12 05:45:00 +00:00
|
|
|
asm volatile ("movq %q0,%%fs:%P1(,%q2,8)" : \
|
2012-11-27 00:42:38 +00:00
|
|
|
: IMM_MODE ((uint64_t) cast_to_integer (value)), \
|
2002-11-27 08:55:35 +00:00
|
|
|
"i" (offsetof (struct pthread, member[0])), \
|
|
|
|
"r" (idx)); \
|
|
|
|
}})
|
|
|
|
|
|
|
|
|
2003-04-05 05:21:15 +00:00
|
|
|
/* Atomic compare and exchange on TLS, returning old value. */
|
2009-07-29 15:33:03 +00:00
|
|
|
# define THREAD_ATOMIC_CMPXCHG_VAL(descr, member, newval, oldval) \
|
2003-04-05 05:21:15 +00:00
|
|
|
({ __typeof (descr->member) __ret; \
|
|
|
|
__typeof (oldval) __old = (oldval); \
|
|
|
|
if (sizeof (descr->member) == 4) \
|
2003-04-14 17:30:34 +00:00
|
|
|
asm volatile (LOCK_PREFIX "cmpxchgl %2, %%fs:%P3" \
|
2003-04-05 05:21:15 +00:00
|
|
|
: "=a" (__ret) \
|
|
|
|
: "0" (__old), "r" (newval), \
|
|
|
|
"i" (offsetof (struct pthread, member))); \
|
|
|
|
else \
|
|
|
|
/* Not necessary for other sizes in the moment. */ \
|
|
|
|
abort (); \
|
|
|
|
__ret; })
|
|
|
|
|
|
|
|
|
2009-04-27 21:55:49 +00:00
|
|
|
/* Atomic logical and. */
|
2009-07-29 15:33:03 +00:00
|
|
|
# define THREAD_ATOMIC_AND(descr, member, val) \
|
2009-04-27 21:55:49 +00:00
|
|
|
(void) ({ if (sizeof ((descr)->member) == 4) \
|
|
|
|
asm volatile (LOCK_PREFIX "andl %1, %%fs:%P0" \
|
|
|
|
:: "i" (offsetof (struct pthread, member)), \
|
|
|
|
"ir" (val)); \
|
|
|
|
else \
|
|
|
|
/* Not necessary for other sizes in the moment. */ \
|
|
|
|
abort (); })
|
|
|
|
|
|
|
|
|
2003-04-05 05:21:15 +00:00
|
|
|
/* Atomic set bit. */
|
2009-07-29 15:33:03 +00:00
|
|
|
# define THREAD_ATOMIC_BIT_SET(descr, member, bit) \
|
2003-04-05 05:21:15 +00:00
|
|
|
(void) ({ if (sizeof ((descr)->member) == 4) \
|
2003-04-14 17:30:34 +00:00
|
|
|
asm volatile (LOCK_PREFIX "orl %1, %%fs:%P0" \
|
2003-04-05 05:21:15 +00:00
|
|
|
:: "i" (offsetof (struct pthread, member)), \
|
|
|
|
"ir" (1 << (bit))); \
|
|
|
|
else \
|
|
|
|
/* Not necessary for other sizes in the moment. */ \
|
|
|
|
abort (); })
|
|
|
|
|
|
|
|
|
2005-06-26 18:14:26 +00:00
|
|
|
/* Set the stack guard field in TCB head. */
|
|
|
|
# define THREAD_SET_STACK_GUARD(value) \
|
|
|
|
THREAD_SETMEM (THREAD_SELF, header.stack_guard, value)
|
|
|
|
# define THREAD_COPY_STACK_GUARD(descr) \
|
|
|
|
((descr)->header.stack_guard \
|
|
|
|
= THREAD_GETMEM (THREAD_SELF, header.stack_guard))
|
|
|
|
|
2005-12-18 06:58:22 +00:00
|
|
|
|
|
|
|
/* Set the pointer guard field in the TCB head. */
|
2009-07-29 15:33:03 +00:00
|
|
|
# define THREAD_SET_POINTER_GUARD(value) \
|
2005-12-18 06:58:22 +00:00
|
|
|
THREAD_SETMEM (THREAD_SELF, header.pointer_guard, value)
|
2009-07-29 15:33:03 +00:00
|
|
|
# define THREAD_COPY_POINTER_GUARD(descr) \
|
2005-12-18 06:58:22 +00:00
|
|
|
((descr)->header.pointer_guard \
|
|
|
|
= THREAD_GETMEM (THREAD_SELF, header.pointer_guard))
|
|
|
|
|
|
|
|
|
2007-05-19 07:08:23 +00:00
|
|
|
/* Get and set the global scope generation counter in the TCB head. */
|
2018-03-04 18:11:26 +00:00
|
|
|
# define THREAD_GSCOPE_IN_TCB 1
|
2009-07-29 15:33:03 +00:00
|
|
|
# define THREAD_GSCOPE_FLAG_UNUSED 0
|
|
|
|
# define THREAD_GSCOPE_FLAG_USED 1
|
|
|
|
# define THREAD_GSCOPE_FLAG_WAIT 2
|
|
|
|
# define THREAD_GSCOPE_RESET_FLAG() \
|
2007-05-19 07:08:23 +00:00
|
|
|
do \
|
|
|
|
{ int __res; \
|
|
|
|
asm volatile ("xchgl %0, %%fs:%P1" \
|
|
|
|
: "=r" (__res) \
|
|
|
|
: "i" (offsetof (struct pthread, header.gscope_flag)), \
|
|
|
|
"0" (THREAD_GSCOPE_FLAG_UNUSED)); \
|
|
|
|
if (__res == THREAD_GSCOPE_FLAG_WAIT) \
|
2007-07-28 20:16:07 +00:00
|
|
|
lll_futex_wake (&THREAD_SELF->header.gscope_flag, 1, LLL_PRIVATE); \
|
2007-05-19 07:08:23 +00:00
|
|
|
} \
|
|
|
|
while (0)
|
2009-07-29 15:33:03 +00:00
|
|
|
# define THREAD_GSCOPE_SET_FLAG() \
|
2007-05-19 07:08:23 +00:00
|
|
|
THREAD_SETMEM (THREAD_SELF, header.gscope_flag, THREAD_GSCOPE_FLAG_USED)
|
2009-07-29 15:33:03 +00:00
|
|
|
# define THREAD_GSCOPE_WAIT() \
|
2007-05-21 22:38:06 +00:00
|
|
|
GL(dl_wait_lookup_done) ()
|
2007-05-19 07:08:23 +00:00
|
|
|
|
2002-11-27 08:55:35 +00:00
|
|
|
#endif /* __ASSEMBLER__ */
|
|
|
|
|
|
|
|
#endif /* tls.h */
|