tls.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. /* Definitions for thread-local data handling. linuxthreads/x86-64 version.
  2. Copyright (C) 2002, 2005 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, see
  14. <http://www.gnu.org/licenses/>. */
  15. #ifndef _TLS_H
  16. #define _TLS_H
  17. #ifndef __ASSEMBLER__
  18. # include <pt-machine.h>
  19. # include <stdbool.h>
  20. # include <stddef.h>
  21. /* Type for the dtv. */
  22. typedef union dtv
  23. {
  24. size_t counter;
  25. struct
  26. {
  27. void *val;
  28. bool is_static;
  29. } pointer;
  30. } dtv_t;
  31. typedef struct
  32. {
  33. void *tcb; /* Pointer to the TCB. Not necessary the
  34. thread descriptor used by libpthread. */
  35. dtv_t *dtv;
  36. void *self; /* Pointer to the thread descriptor. */
  37. int multiple_threads;
  38. } tcbhead_t;
  39. #else /* __ASSEMBLER__ */
  40. # include <tcb-offsets.h>
  41. #endif
  42. #ifdef HAVE_TLS_SUPPORT
  43. /* Signal that TLS support is available. */
  44. # define USE_TLS 1
  45. # ifndef __ASSEMBLER__
  46. /* Get system call information. */
  47. # include <sysdep.h>
  48. /* Get the thread descriptor definition. */
  49. # include <linuxthreads/descr.h>
  50. /* This is the size of the initial TCB. */
  51. # define TLS_INIT_TCB_SIZE sizeof (tcbhead_t)
  52. /* Alignment requirements for the initial TCB. */
  53. # define TLS_INIT_TCB_ALIGN __alignof__ (tcbhead_t)
  54. /* This is the size of the TCB. */
  55. # define TLS_TCB_SIZE sizeof (struct _pthread_descr_struct)
  56. /* Alignment requirements for the TCB. */
  57. # define TLS_TCB_ALIGN __alignof__ (struct _pthread_descr_struct)
  58. /* The TCB can have any size and the memory following the address the
  59. thread pointer points to is unspecified. Allocate the TCB there. */
  60. # define TLS_TCB_AT_TP 1
  61. /* Install the dtv pointer. The pointer passed is to the element with
  62. index -1 which contain the length. */
  63. # define INSTALL_DTV(descr, dtvp) \
  64. ((tcbhead_t *) (descr))->dtv = (dtvp) + 1
  65. /* Install new dtv for current thread. */
  66. # define INSTALL_NEW_DTV(dtv) \
  67. ({ struct _pthread_descr_struct *__descr; \
  68. THREAD_SETMEM (__descr, p_header.data.dtvp, (dtv)); })
  69. /* Return dtv of given thread descriptor. */
  70. # define GET_DTV(descr) \
  71. (((tcbhead_t *) (descr))->dtv)
  72. /* Code to initially initialize the thread pointer. This might need
  73. special attention since 'errno' is not yet available and if the
  74. operation can cause a failure 'errno' must not be touched. */
  75. # define TLS_INIT_TP(descr, secondcall) \
  76. ({ \
  77. void *_descr = (descr); \
  78. tcbhead_t *head = _descr; \
  79. long int _result; \
  80. \
  81. head->tcb = _descr; \
  82. /* For now the thread descriptor is at the same address. */ \
  83. head->self = _descr; \
  84. \
  85. __asm__ __volatile__ ("syscall" \
  86. : "=a" (_result) \
  87. : "0" ((unsigned long int) __NR_arch_prctl), \
  88. "D" ((unsigned long int) ARCH_SET_FS), \
  89. "S" (_descr) \
  90. : "memory", "cc", "r11", "cx"); \
  91. \
  92. _result ? "cannot set %fs base address for thread-local storage" : 0; \
  93. })
  94. /* Indicate that dynamic linker shouldn't try to initialize TLS even
  95. when no PT_TLS segments are found in the program and libraries
  96. it is linked against. */
  97. # define TLS_INIT_TP_EXPENSIVE 1
  98. /* Return the address of the dtv for the current thread. */
  99. # define THREAD_DTV() \
  100. ({ struct _pthread_descr_struct *__descr; \
  101. THREAD_GETMEM (__descr, p_header.data.dtvp); })
  102. # endif /* HAVE_TLS_SUPPORT */
  103. #endif /* __ASSEMBLER__ */
  104. #endif /* tls.h */