Default to dwarf version 4 on hppa64-hpux
[official-gcc.git] / gcc / ctfc.h
bloba0b7e4105a8704b0a07d5d6c5c6f41cceffef2bc
1 /* ctfc.h - Declarations and definitions related to the CTF container.
2 Copyright (C) 2019,2021 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 /* This file defines the data structures and functions used by the compiler
21 to generate the CTF debug info. The definitions below are compiler internal
22 representations and closely reflect the CTF format requirements in <ctf.h>.
24 The contents of the CTF container are used eventually for emission of both
25 CTF (ctfout.c) and BTF debug info (btfout.c), as the two type debug formats
26 are close cousins. */
28 #ifndef GCC_CTFC_H
29 #define GCC_CTFC_H 1
31 #include "config.h"
32 #include "system.h"
33 #include "tree.h"
34 #include "fold-const.h"
35 #include "dwarf2ctf.h"
36 #include "ctf.h"
37 #include "btf.h"
39 /* Invalid CTF type ID definition. */
41 #define CTF_NULL_TYPEID 0
43 /* Value to start generating the CTF type ID from. */
45 #define CTF_INIT_TYPEID 1
47 /* CTF type ID. */
49 typedef uint64_t ctf_id_t;
51 /* CTF string table element (list node). */
53 typedef struct GTY ((chain_next ("%h.cts_next"))) ctf_string
55 const char * cts_str; /* CTF string. */
56 struct ctf_string * cts_next; /* A list node. */
57 } ctf_string_t;
59 /* Internal representation of CTF string table. */
61 typedef struct GTY (()) ctf_strtable
63 ctf_string_t * ctstab_head; /* Head str ptr. */
64 ctf_string_t * ctstab_tail; /* Tail. new str appended to tail. */
65 int ctstab_num; /* Number of strings in the table. */
66 size_t ctstab_len; /* Size of string table in bytes. */
67 const char * ctstab_estr; /* Empty string "". */
68 } ctf_strtable_t;
70 /* Encoding information for integers, floating-point values etc. The flags
71 field will contain values appropriate for the type defined in <ctf.h>. */
73 typedef struct GTY (()) ctf_encoding
75 unsigned int cte_format; /* Data format (CTF_INT_* or CTF_FP_* flags). */
76 unsigned int cte_offset; /* Offset of value in bits. */
77 unsigned int cte_bits; /* Size of storage in bits. */
78 } ctf_encoding_t;
80 /* Array information for CTF generation. */
82 typedef struct GTY (()) ctf_arinfo
84 ctf_id_t ctr_contents; /* Type of array contents. */
85 ctf_id_t ctr_index; /* Type of array index. */
86 unsigned int ctr_nelems; /* Number of elements. */
87 } ctf_arinfo_t;
89 /* Function information for CTF generation. */
91 typedef struct GTY (()) ctf_funcinfo
93 ctf_id_t ctc_return; /* Function return type. */
94 unsigned int ctc_argc; /* Number of typed arguments to function. */
95 unsigned int ctc_flags; /* Function attributes (see below). */
96 } ctf_funcinfo_t;
98 typedef struct GTY (()) ctf_sliceinfo
100 unsigned int cts_type; /* Reference CTF type. */
101 unsigned short cts_offset; /* Offset in bits of the first bit. */
102 unsigned short cts_bits; /* Size in bits. */
103 } ctf_sliceinfo_t;
105 /* CTF type representation internal to the compiler. It closely reflects the
106 ctf_type_t type node in <ctf.h> except the GTY (()) tags. */
108 typedef struct GTY (()) ctf_itype
110 uint32_t ctti_name; /* Reference to name in string table. */
111 uint32_t ctti_info; /* Encoded kind, variant length (see below). */
112 union GTY ((desc ("0")))
114 uint32_t GTY ((tag ("0"))) _size;/* Size of entire type in bytes. */
115 uint32_t GTY ((tag ("1"))) _type;/* Reference to another type. */
116 } _u;
117 uint32_t ctti_lsizehi; /* High 32 bits of type size in bytes. */
118 uint32_t ctti_lsizelo; /* Low 32 bits of type size in bytes. */
119 } ctf_itype_t;
121 #define ctti_size _u._size
122 #define ctti_type _u._type
124 /* Function arguments end with varargs. */
126 #define CTF_FUNC_VARARG 0x1
128 /* Struct/union/enum member definition for CTF generation. */
130 typedef struct GTY ((chain_next ("%h.dmd_next"))) ctf_dmdef
132 const char * dmd_name; /* Name of this member. */
133 ctf_id_t dmd_type; /* Type of this member (for sou). */
134 uint32_t dmd_name_offset; /* Offset of the name in str table. */
135 uint64_t dmd_offset; /* Offset of this member in bits (for sou). */
136 int dmd_value; /* Value of this member (for enum). */
137 struct ctf_dmdef * dmd_next; /* A list node. */
138 } ctf_dmdef_t;
140 #define ctf_dmd_list_next(elem) ((ctf_dmdef_t *)((elem)->dmd_next))
142 /* Function Argument. */
144 typedef struct GTY (()) ctf_func_arg
146 ctf_id_t farg_type; /* Type identifier of the argument. */
147 const char * farg_name; /* Name of the the argument. */
148 uint32_t farg_name_offset; /* Offset of the name in str table. */
149 struct ctf_func_arg * farg_next;/* A list node. */
150 } ctf_func_arg_t;
152 #define ctf_farg_list_next(elem) ((ctf_func_arg_t *)((elem)->farg_next))
154 /* Type definition for CTF generation. */
156 struct GTY ((for_user)) ctf_dtdef
158 dw_die_ref dtd_key; /* Type key for hashing. */
159 const char * dtd_name; /* Name associated with definition (if any). */
160 ctf_id_t dtd_type; /* Type identifier for this definition. */
161 ctf_itype_t dtd_data; /* Type node. */
162 bool from_global_func; /* Whether this type was added from a global
163 function. */
164 union GTY ((desc ("ctf_dtu_d_union_selector (&%1)")))
166 /* struct, union, or enum. */
167 ctf_dmdef_t * GTY ((tag ("CTF_DTU_D_MEMBERS"))) dtu_members;
168 /* array. */
169 ctf_arinfo_t GTY ((tag ("CTF_DTU_D_ARRAY"))) dtu_arr;
170 /* integer or float. */
171 ctf_encoding_t GTY ((tag ("CTF_DTU_D_ENCODING"))) dtu_enc;
172 /* function. */
173 ctf_func_arg_t * GTY ((tag ("CTF_DTU_D_ARGUMENTS"))) dtu_argv;
174 /* slice. */
175 ctf_sliceinfo_t GTY ((tag ("CTF_DTU_D_SLICE"))) dtu_slice;
176 } dtd_u;
179 typedef struct ctf_dtdef ctf_dtdef_t;
181 /* Variable definition for CTF generation. */
183 struct GTY ((for_user)) ctf_dvdef
185 dw_die_ref dvd_key; /* DWARF DIE corresponding to the variable. */
186 const char * dvd_name; /* Name associated with variable. */
187 uint32_t dvd_name_offset; /* Offset of the name in str table. */
188 unsigned int dvd_visibility; /* External visibility. 0=static,1=global. */
189 ctf_id_t dvd_type; /* Type of variable. */
192 typedef struct ctf_dvdef ctf_dvdef_t;
194 typedef ctf_dvdef_t * ctf_dvdef_ref;
195 typedef ctf_dtdef_t * ctf_dtdef_ref;
197 /* Location information for CTF Types and CTF Variables. */
199 typedef struct GTY (()) ctf_srcloc
201 const char * ctsloc_file;
202 unsigned int ctsloc_line;
203 unsigned int ctsloc_col;
204 } ctf_srcloc_t;
206 typedef ctf_srcloc_t * ctf_srcloc_ref;
208 /* Helper enum and api for the GTY machinery to work on union dtu_d. */
210 enum ctf_dtu_d_union_enum {
211 CTF_DTU_D_MEMBERS,
212 CTF_DTU_D_ARRAY,
213 CTF_DTU_D_ENCODING,
214 CTF_DTU_D_ARGUMENTS,
215 CTF_DTU_D_SLICE,
218 enum ctf_dtu_d_union_enum
219 ctf_dtu_d_union_selector (ctf_dtdef_ref);
221 struct ctfc_dtd_hasher : ggc_ptr_hash <ctf_dtdef_t>
223 typedef ctf_dtdef_ref compare_type;
225 static hashval_t hash (ctf_dtdef_ref);
226 static bool equal (ctf_dtdef_ref, ctf_dtdef_ref);
229 inline hashval_t
230 ctfc_dtd_hasher::hash (ctf_dtdef_ref dtd)
232 return htab_hash_pointer (dtd->dtd_key);
235 inline bool
236 ctfc_dtd_hasher::equal (ctf_dtdef_ref dtd, ctf_dtdef_ref dtd2)
238 return (dtd->dtd_key == dtd2->dtd_key);
241 struct ctfc_dvd_hasher : ggc_ptr_hash <ctf_dvdef_t>
243 typedef ctf_dvdef_ref compare_type;
245 static hashval_t hash (ctf_dvdef_ref);
246 static bool equal (ctf_dvdef_ref, ctf_dvdef_ref);
249 inline hashval_t
250 ctfc_dvd_hasher::hash (ctf_dvdef_ref dvd)
252 return htab_hash_pointer (dvd->dvd_key);
255 inline bool
256 ctfc_dvd_hasher::equal (ctf_dvdef_ref dvd, ctf_dvdef_ref dvd2)
258 return (dvd->dvd_key == dvd2->dvd_key);
261 /* CTF container structure.
262 It is the context passed around when generating ctf debug info. There is
263 one container per translation unit. */
265 typedef struct GTY (()) ctf_container
267 /* CTF Preamble. */
268 unsigned short ctfc_magic;
269 unsigned char ctfc_version;
270 unsigned char ctfc_flags;
271 uint32_t ctfc_cuname_offset;
273 /* CTF types. */
274 hash_table <ctfc_dtd_hasher> * GTY (()) ctfc_types;
275 /* CTF variables. */
276 hash_table <ctfc_dvd_hasher> * GTY (()) ctfc_vars;
278 /* CTF string table. */
279 ctf_strtable_t ctfc_strtable;
280 /* Auxilliary string table. At this time, used for keeping func arg names
281 for BTF. */
282 ctf_strtable_t ctfc_aux_strtable;
284 uint64_t ctfc_num_types;
285 uint64_t ctfc_num_stypes;
286 uint64_t ctfc_num_global_funcs;
287 uint64_t ctfc_num_global_objts;
289 /* Number of vlen bytes - the variable length portion after ctf_type_t and
290 ctf_stype_t in the CTF section. This is used to calculate the offsets in
291 the CTF header. */
292 uint64_t ctfc_num_vlen_bytes;
294 /* Next CTF type id to assign. */
295 ctf_id_t ctfc_nextid;
297 /* Specify an explicit length of 0 so that the GC marking routines steer
298 clear of marking the CTF vars and CTF types twice. These lists below do
299 not own the pointed to objects, they simply hold references to them. */
301 /* List of pre-processed CTF Variables. CTF requires that the variables
302 appear in the sorted order of their names. */
303 ctf_dvdef_t ** GTY ((length ("0"))) ctfc_vars_list;
304 /* List of pre-processed CTF types. CTF requires that a shared type must
305 appear before the type that uses it. For the compiler, this means types
306 are emitted in sorted order of their type IDs. */
307 ctf_dtdef_t ** GTY ((length ("0"))) ctfc_types_list;
308 /* List of CTF function types for global functions. The order of global
309 function entries in the CTF funcinfo section is undefined by the
310 compiler. */
311 ctf_dtdef_t ** GTY ((length ("0"))) ctfc_gfuncs_list;
312 /* List of CTF variables at global scope. The order of global object entries
313 in the CTF objinfo section is undefined by the compiler. */
314 ctf_dvdef_t ** GTY ((length ("0"))) ctfc_gobjts_list;
316 /* Following members are for debugging only. They do not add functional
317 value to the task of CTF creation. These can be cleaned up once CTF
318 generation stabilizes. */
320 /* Keep a count of the number of bytes dumped in asm for debugging
321 purposes. */
322 uint64_t ctfc_numbytes_asm;
323 /* Total length of all strings in CTF. */
324 size_t ctfc_strlen;
325 /* Total length of all strings in aux string table. */
326 size_t ctfc_aux_strlen;
328 } ctf_container_t;
330 /* Markers for which string table from the CTF container to use. */
332 #define CTF_STRTAB 0 /* CTF string table. */
333 #define CTF_AUX_STRTAB 1 /* CTF auxilliary string table. */
335 typedef ctf_container_t * ctf_container_ref;
337 extern GTY (()) ctf_container_ref tu_ctfc;
339 extern void ctfc_delete_container (ctf_container_ref);
341 /* If the next ctf type id is still set to the init value, no ctf records to
342 report. */
343 extern bool ctfc_is_empty_container (ctf_container_ref);
345 /* Get the total number of CTF types in the container. */
347 extern unsigned int ctfc_get_num_ctf_types (ctf_container_ref);
349 /* Get the total number of CTF variables in the container. */
351 extern unsigned int ctfc_get_num_ctf_vars (ctf_container_ref);
353 /* Get reference to the CTF string table or the CTF auxilliary
354 string table. */
356 extern ctf_strtable_t * ctfc_get_strtab (ctf_container_ref, int);
358 /* Get the length of the specified string table in the CTF container. */
360 extern size_t ctfc_get_strtab_len (ctf_container_ref, int);
362 /* Get the number of bytes to represent the variable length portion of all CTF
363 types in the CTF container. */
365 extern size_t ctfc_get_num_vlen_bytes (ctf_container_ref);
367 /* The compiler demarcates whether types are visible at top-level scope or not.
368 The only example so far of a type not visible at top-level scope is slices.
369 CTF_ADD_NONROOT is used to indicate the latter. */
370 #define CTF_ADD_NONROOT 0 /* CTF type only visible in nested scope. */
371 #define CTF_ADD_ROOT 1 /* CTF type visible at top-level scope. */
373 /* These APIs allow to initialize and finalize the CTF machinery and
374 to add types to the CTF container associated to the current
375 translation unit. Used in dwarf2ctf.c. */
377 extern void ctf_init (void);
378 extern void ctf_output (const char * filename);
379 extern void ctf_finalize (void);
381 extern void btf_output (const char * filename);
382 extern void btf_init_postprocess (void);
383 extern void btf_finalize (void);
385 extern ctf_container_ref ctf_get_tu_ctfc (void);
387 extern bool ctf_type_exists (ctf_container_ref, dw_die_ref, ctf_id_t *);
389 extern void ctf_add_cuname (ctf_container_ref, const char *);
391 extern ctf_dtdef_ref ctf_dtd_lookup (const ctf_container_ref ctfc,
392 dw_die_ref die);
393 extern ctf_dvdef_ref ctf_dvd_lookup (const ctf_container_ref ctfc,
394 dw_die_ref die);
396 extern const char * ctf_add_string (ctf_container_ref, const char *,
397 uint32_t *, int);
399 extern ctf_id_t ctf_add_reftype (ctf_container_ref, uint32_t, ctf_id_t,
400 uint32_t, dw_die_ref);
401 extern ctf_id_t ctf_add_enum (ctf_container_ref, uint32_t, const char *,
402 HOST_WIDE_INT, dw_die_ref);
403 extern ctf_id_t ctf_add_slice (ctf_container_ref, uint32_t, ctf_id_t,
404 uint32_t, uint32_t, dw_die_ref);
405 extern ctf_id_t ctf_add_float (ctf_container_ref, uint32_t, const char *,
406 const ctf_encoding_t *, dw_die_ref);
407 extern ctf_id_t ctf_add_integer (ctf_container_ref, uint32_t, const char *,
408 const ctf_encoding_t *, dw_die_ref);
409 extern ctf_id_t ctf_add_unknown (ctf_container_ref, uint32_t, const char *,
410 const ctf_encoding_t *, dw_die_ref);
411 extern ctf_id_t ctf_add_pointer (ctf_container_ref, uint32_t, ctf_id_t,
412 dw_die_ref);
413 extern ctf_id_t ctf_add_array (ctf_container_ref, uint32_t,
414 const ctf_arinfo_t *, dw_die_ref);
415 extern ctf_id_t ctf_add_forward (ctf_container_ref, uint32_t, const char *,
416 uint32_t, dw_die_ref);
417 extern ctf_id_t ctf_add_typedef (ctf_container_ref, uint32_t, const char *,
418 ctf_id_t, dw_die_ref);
419 extern ctf_id_t ctf_add_function (ctf_container_ref, uint32_t, const char *,
420 const ctf_funcinfo_t *, dw_die_ref, bool);
421 extern ctf_id_t ctf_add_sou (ctf_container_ref, uint32_t, const char *,
422 uint32_t, size_t, dw_die_ref);
424 extern int ctf_add_enumerator (ctf_container_ref, ctf_id_t, const char *,
425 HOST_WIDE_INT, dw_die_ref);
426 extern int ctf_add_member_offset (ctf_container_ref, dw_die_ref, const char *,
427 ctf_id_t, uint64_t);
428 extern int ctf_add_function_arg (ctf_container_ref, dw_die_ref,
429 const char *, ctf_id_t);
430 extern int ctf_add_variable (ctf_container_ref, const char *, ctf_id_t,
431 dw_die_ref, unsigned int);
433 extern ctf_id_t ctf_lookup_tree_type (ctf_container_ref, const tree);
434 extern ctf_id_t get_btf_id (ctf_id_t);
436 /* CTF section does not emit location information; at this time, location
437 information is needed for BTF CO-RE use-cases. */
439 extern int ctfc_get_dtd_srcloc (ctf_dtdef_ref, ctf_srcloc_ref);
440 extern int ctfc_get_dvd_srcloc (ctf_dvdef_ref, ctf_srcloc_ref);
442 #endif /* GCC_CTFC_H */