]> git.ipfire.org Git - thirdparty/glibc.git/blame - nptl_db/db_info.c
Update copyright dates with scripts/update-copyrights
[thirdparty/glibc.git] / nptl_db / db_info.c
CommitLineData
7f08f55a
RM
1/* This file is included by pthread_create.c to define in libpthread
2 all the magic symbols required by libthread_db.
3
581c785b 4 Copyright (C) 2003-2022 Free Software Foundation, Inc.
7f08f55a
RM
5 This file is part of the GNU C Library.
6
7 The GNU C Library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Lesser General Public
9 License as published by the Free Software Foundation; either
10 version 2.1 of the License, or (at your option) any later version.
11
12 The GNU C Library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Lesser General Public License for more details.
16
17 You should have received a copy of the GNU Lesser General Public
59ba27a6 18 License along with the GNU C Library; if not, see
5a82c748 19 <https://www.gnu.org/licenses/>. */
7f08f55a 20
e054f494 21#include <stdint.h>
7f08f55a
RM
22#include "thread_dbP.h"
23#include <tls.h>
f8aeae34 24#include <ldsodefs.h>
7f08f55a
RM
25
26typedef struct pthread pthread;
27typedef struct pthread_key_struct pthread_key_struct;
28typedef struct pthread_key_data pthread_key_data;
29typedef struct
30{
31 struct pthread_key_data data[PTHREAD_KEY_2NDLEVEL_SIZE];
32}
33pthread_key_data_level2;
34
35typedef struct
36{
37 union dtv dtv[UINT32_MAX / 2 / sizeof (union dtv)]; /* No constant bound. */
38} dtv;
39
40typedef struct link_map link_map;
f8aeae34
AO
41typedef struct rtld_global rtld_global;
42typedef struct dtv_slotinfo_list dtv_slotinfo_list;
43typedef struct dtv_slotinfo dtv_slotinfo;
7f08f55a 44
7f08f55a
RM
45#define schedparam_sched_priority schedparam.sched_priority
46
47#define eventbuf_eventmask eventbuf.eventmask
48#define eventbuf_eventmask_event_bits eventbuf.eventmask.event_bits
49
50#define DESC(name, offset, obj) \
51 DB_DEFINE_DESC (name, 8 * sizeof (obj), 1, offset);
52#define ARRAY_DESC(name, offset, obj) \
53 DB_DEFINE_DESC (name, \
54 8 * sizeof (obj)[0], sizeof (obj) / sizeof (obj)[0], \
55 offset);
cba932a5
FW
56/* Flexible arrays do not have a length that can be determined. */
57#define FLEXIBLE_ARRAY_DESC(name, offset, obj) \
58 DB_DEFINE_DESC (name, 8 * sizeof (obj)[0], 0, offset);
7f08f55a
RM
59
60#if TLS_TCB_AT_TP
61# define dtvp header.dtv
62#elif TLS_DTV_AT_TP
6964ccb2
RM
63/* Special case hack. If TLS_TCB_SIZE == 0 (on PowerPC), there is no TCB
64 containing the DTV at the TP, but actually the TCB lies behind the TP,
65 i.e. at the very end of the area covered by TLS_PRE_TCB_SIZE. */
7f08f55a 66DESC (_thread_db_pthread_dtvp,
6964ccb2 67 TLS_PRE_TCB_SIZE + offsetof (tcbhead_t, dtv)
416b6309 68 - (TLS_TCB_SIZE == 0 ? sizeof (tcbhead_t) : 0), union dtv *)
7f08f55a
RM
69#endif
70
71
72#define DB_STRUCT(type) \
73 const uint32_t _thread_db_sizeof_##type = sizeof (type);
74#define DB_STRUCT_FIELD(type, field) \
75 DESC (_thread_db_##type##_##field, \
76 offsetof (type, field), ((type *) 0)->field)
77#define DB_STRUCT_ARRAY_FIELD(type, field) \
78 ARRAY_DESC (_thread_db_##type##_##field, \
79 offsetof (type, field), ((type *) 0)->field)
cba932a5
FW
80#define DB_STRUCT_FLEXIBLE_ARRAY(type, field) \
81 FLEXIBLE_ARRAY_DESC (_thread_db_##type##_##field, \
82 offsetof (type, field), ((type *) 0)->field)
7f08f55a
RM
83#define DB_VARIABLE(name) DESC (_thread_db_##name, 0, name)
84#define DB_ARRAY_VARIABLE(name) ARRAY_DESC (_thread_db_##name, 0, name)
85#define DB_SYMBOL(name) /* Nothing. */
d43147cd 86#define DB_FUNCTION(name) /* Nothing. */
7f08f55a
RM
87#include "structs.def"
88#undef DB_STRUCT
89#undef DB_STRUCT_FIELD
90#undef DB_SYMBOL
d43147cd 91#undef DB_FUNCTION
7f08f55a
RM
92#undef DB_VARIABLE
93#undef DESC
94
95
96
97#ifdef DB_THREAD_SELF
98# ifdef DB_THREAD_SELF_INCLUDE
99# include DB_THREAD_SELF_INCLUDE
100# endif
101
102/* This macro is defined in the machine's tls.h using the three below. */
103# define CONST_THREAD_AREA(bits, value) \
104 const uint32_t _thread_db_const_thread_area = (value);
105# define REGISTER_THREAD_AREA(bits, regofs, scale) \
106 DB_DEFINE_DESC (_thread_db_register##bits##_thread_area, \
107 bits, (scale), (regofs));
38753391
RM
108# define REGISTER(bits, size, regofs, bias) \
109 DB_DEFINE_DESC (_thread_db_register##bits, size, (uint32_t)(bias), (regofs));
7f08f55a
RM
110
111DB_THREAD_SELF
112#endif