tls.h 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. /* Definitions for thread-local data handling. linuxthreads/s390 version.
  2. Copyright (C) 2002, 2003, 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 /* __ASSEMBLER__ */
  42. /* TLS is always supported if the tools support it. There are no
  43. kernel dependencies. To avoid bothering with the TLS support code
  44. at all, use configure --without-tls.
  45. We need USE_TLS to be consistently defined, for ldsodefs.h
  46. conditionals. */
  47. #ifdef HAVE_TLS_SUPPORT
  48. /* Signal that TLS support is available. */
  49. # define USE_TLS 1
  50. # ifndef __ASSEMBLER__
  51. /* Get system call information. */
  52. # include <sysdep.h>
  53. /* Get the thread descriptor definition. */
  54. # include <linuxthreads/descr.h>
  55. /* This is the size of the initial TCB. */
  56. # define TLS_INIT_TCB_SIZE sizeof (tcbhead_t)
  57. /* Alignment requirements for the initial TCB. */
  58. # define TLS_INIT_TCB_ALIGN __alignof__ (tcbhead_t)
  59. /* This is the size of the TCB. */
  60. # define TLS_TCB_SIZE sizeof (struct _pthread_descr_struct)
  61. /* Alignment requirements for the TCB. */
  62. # define TLS_TCB_ALIGN __alignof__ (struct _pthread_descr_struct)
  63. /* The TCB can have any size and the memory following the address the
  64. thread pointer points to is unspecified. Allocate the TCB there. */
  65. # define TLS_TCB_AT_TP 1
  66. /* Install the dtv pointer. The pointer passed is to the element with
  67. index -1 which contain the length. */
  68. # define INSTALL_DTV(descr, dtvp) \
  69. ((tcbhead_t *) (descr))->dtv = (dtvp) + 1
  70. /* Install new dtv for current thread. */
  71. # define INSTALL_NEW_DTV(dtv) \
  72. (((tcbhead_t *) __builtin_thread_pointer ())->dtv = (dtv))
  73. /* Return dtv of given thread descriptor. */
  74. # define GET_DTV(descr) \
  75. (((tcbhead_t *) (descr))->dtv)
  76. /* Code to initially initialize the thread pointer. This might need
  77. special attention since 'errno' is not yet available and if the
  78. operation can cause a failure 'errno' must not be touched.
  79. The value of this macro is null if successful, or an error string. */
  80. # define TLS_INIT_TP(descr, secondcall) \
  81. ({ \
  82. void *_descr = (descr); \
  83. tcbhead_t *head = _descr; \
  84. \
  85. head->tcb = _descr; \
  86. /* For now the thread descriptor is at the same address. */ \
  87. head->self = _descr; \
  88. \
  89. __builtin_set_thread_pointer (_descr); \
  90. NULL; \
  91. })
  92. /* Return the address of the dtv for the current thread. */
  93. # define THREAD_DTV() \
  94. (((tcbhead_t *) __builtin_thread_pointer ())->dtv)
  95. # endif /* __ASSEMBLER__ */
  96. #else /* HAVE_TLS_SUPPORT && (FLOATING_STACKS || !IS_IN_libpthread) */
  97. # ifndef __ASSEMBLER__
  98. /* Get the thread descriptor definition. */
  99. # include <linuxthreads/descr.h>
  100. # define NONTLS_INIT_TP \
  101. do { \
  102. static const tcbhead_t nontls_init_tp \
  103. = { .multiple_threads = 0 }; \
  104. INIT_THREAD_SELF (&nontls_init_tp, 0); \
  105. } while (0)
  106. # endif /* __ASSEMBLER__ */
  107. #endif /* HAVE_TLS_SUPPORT && (FLOATING_STACKS || !IS_IN_libpthread) */
  108. #endif /* tls.h */