libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git] / gcc / ctfout.cc
blob157afbac4f48c6f2dbfcebb4b9c3da47d2b96501
1 /* Output CTF format from GCC.
2 Copyright (C) 2019-2024 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 #include "config.h"
21 #include "system.h"
22 #include "coretypes.h"
23 #include "target.h"
24 #include "memmodel.h"
25 #include "tm_p.h"
26 #include "output.h"
27 #include "dwarf2asm.h"
28 #include "debug.h"
29 #include "ctfc.h"
30 #include "diagnostic-core.h"
32 static int ctf_label_num;
34 /* Pointers to various CTF sections. */
36 static GTY (()) section * ctf_info_section;
38 /* Section names used to hold CTF debugging information. */
40 /* CTF debug info section. */
42 #ifndef CTF_INFO_SECTION_NAME
43 #define CTF_INFO_SECTION_NAME ".ctf"
44 #endif
46 /* Section flags for the CTF debug info section. */
48 #define CTF_INFO_SECTION_FLAGS (SECTION_DEBUG)
50 /* Maximum size (in bytes) of an artificially generated CTF label. */
52 #define MAX_CTF_LABEL_BYTES 40
54 static char ctf_info_section_label[MAX_CTF_LABEL_BYTES];
56 #ifndef CTF_INFO_SECTION_LABEL
57 #define CTF_INFO_SECTION_LABEL "Lctf"
58 #endif
60 /* CTF preprocess callback arguments. */
62 typedef struct ctf_dtd_preprocess_arg
64 uint64_t dtd_global_func_idx;
65 ctf_container_ref dtd_arg_ctfc;
66 } ctf_dtd_preprocess_arg_t;
68 typedef struct ctf_dvd_preprocess_arg
70 uint64_t dvd_global_obj_idx;
71 ctf_container_ref dvd_arg_ctfc;
72 } ctf_dvd_preprocess_arg_t;
74 /* Compare two CTF variable definition entries. Currently used for sorting
75 by name. */
77 static int
78 ctf_varent_compare (const void * entry1, const void * entry2)
80 int result;
81 const ctf_dvdef_t * e1 = *(const ctf_dvdef_t * const*) entry1;
82 const ctf_dvdef_t * e2 = *(const ctf_dvdef_t * const*) entry2;
84 result = strcmp (e1->dvd_name, e2->dvd_name);
86 return result;
89 /* A CTF type record may be followed by variable-length of bytes to encode the
90 CTF type completely. This routine calculates the number of bytes, in the
91 final binary CTF format, which are used to encode information about the type
92 completely.
94 This function must always be in sync with the CTF header. */
96 static uint64_t
97 ctf_calc_num_vbytes (ctf_dtdef_ref ctftype)
99 uint32_t size;
100 uint64_t vlen_bytes = 0;
102 uint32_t kind = CTF_V2_INFO_KIND (ctftype->dtd_data.ctti_info);
103 uint32_t vlen = CTF_V2_INFO_VLEN (ctftype->dtd_data.ctti_info);
105 ctf_dmdef_t * dmd;
106 ctf_func_arg_t * farg;
107 uint32_t size_per_member = 0;
108 unsigned int num_members = 0;
109 unsigned int num_fargs = 0;
111 switch (kind)
113 case CTF_K_FORWARD:
114 case CTF_K_UNKNOWN:
115 case CTF_K_POINTER:
116 case CTF_K_TYPEDEF:
117 case CTF_K_VOLATILE:
118 case CTF_K_CONST:
119 case CTF_K_RESTRICT:
120 /* These types have no vlen data. */
121 break;
123 case CTF_K_INTEGER:
124 case CTF_K_FLOAT:
125 /* 4 bytes to represent encoding CTF_INT_DATA, CTF_FP_DATA. */
126 vlen_bytes += sizeof (uint32_t);
127 break;
128 case CTF_K_FUNCTION:
129 /* Sanity check - number of function args must be the same as
130 vlen. */
131 for (farg = ctftype->dtd_u.dtu_argv;
132 farg != NULL; farg = (ctf_func_arg_t *) ctf_farg_list_next (farg))
133 num_fargs++;
134 gcc_assert (vlen == num_fargs);
136 /* FIXME - CTF_PADDING_FOR_ALIGNMENT. */
137 vlen_bytes += (vlen + (vlen & 1)) * sizeof (uint32_t);
138 break;
139 case CTF_K_ARRAY:
140 /* This has a single ctf_array_t. */
141 vlen_bytes += sizeof (ctf_array_t);
142 break;
143 case CTF_K_SLICE:
144 vlen_bytes += sizeof (ctf_slice_t);
145 break;
146 case CTF_K_STRUCT:
147 case CTF_K_UNION:
148 /* Count the number and type of members. */
149 size = ctftype->dtd_data.ctti_size;
150 size_per_member = size >= CTF_LSTRUCT_THRESH
151 ? sizeof (ctf_lmember_t) : sizeof (ctf_member_t);
153 /* Sanity check - number of members of struct must be the same as
154 vlen. */
155 for (dmd = ctftype->dtd_u.dtu_members;
156 dmd != NULL; dmd = (ctf_dmdef_t *) ctf_dmd_list_next (dmd))
157 num_members++;
158 gcc_assert (vlen == num_members);
160 vlen_bytes += (num_members * size_per_member);
161 break;
162 case CTF_K_ENUM:
163 vlen_bytes += vlen * sizeof (ctf_enum_t);
164 break;
165 default :
166 break;
168 return vlen_bytes;
171 /* Add a CTF variable to the end of the list. */
173 static void
174 ctf_list_add_ctf_vars (ctf_container_ref ctfc, ctf_dvdef_ref var)
176 ctfc->ctfc_vars_list[ctfc->ctfc_vars_list_count++] = var;
179 /* Initialize the various sections and labels for CTF output. */
181 void
182 init_ctf_sections (void)
184 /* Note : Even in case of LTO, the compiler continues to generate a single
185 CTF section for each compilation unit "early". Unlike other debug
186 sections, CTF sections are non-LTO sections, and do not take the
187 .gnu.debuglto_ prefix. The linker will de-duplicate the types in the CTF
188 sections, in case of LTO or otherwise. */
189 ctf_info_section = get_section (CTF_INFO_SECTION_NAME, CTF_INFO_SECTION_FLAGS,
190 NULL);
192 ASM_GENERATE_INTERNAL_LABEL (ctf_info_section_label,
193 CTF_INFO_SECTION_LABEL, ctf_label_num++);
196 /* Routines for CTF pre-processing. */
198 static void
199 ctf_preprocess_var (ctf_container_ref ctfc, ctf_dvdef_ref var)
201 /* Add it to the list of types. This array of types will be sorted before
202 assembling into output. */
203 ctf_list_add_ctf_vars (ctfc, var);
206 /* CTF preprocess callback routine for CTF variables. */
209 ctf_dvd_preprocess_cb (ctf_dvdef_ref * slot, void * arg)
211 ctf_dvd_preprocess_arg_t * dvd_arg = (ctf_dvd_preprocess_arg_t *)arg;
212 ctf_dvdef_ref var = (ctf_dvdef_ref) *slot;
213 ctf_container_ref arg_ctfc = dvd_arg->dvd_arg_ctfc;
215 /* If the CTF variable corresponds to an extern variable declaration with
216 a defining declaration later on, skip it. Only CTF variable
217 corresponding to the defining declaration for the extern variable is
218 desirable. */
219 if (ctf_dvd_ignore_lookup (arg_ctfc, var->dvd_key))
220 return 1;
222 ctf_preprocess_var (arg_ctfc, var);
224 /* Keep track of global objts. */
225 arg_ctfc->ctfc_gobjts_list[dvd_arg->dvd_global_obj_idx] = var;
226 dvd_arg->dvd_global_obj_idx++;
228 return 1;
231 /* CTF preprocess callback routine for CTF types. */
234 ctf_dtd_preprocess_cb (ctf_dtdef_ref * slot, void * arg)
236 uint32_t kind;
238 ctf_dtdef_ref ctftype = (ctf_dtdef_ref) *slot;
239 ctf_dtd_preprocess_arg_t * dtd_arg = (ctf_dtd_preprocess_arg_t *)arg;
240 ctf_container_ref arg_ctfc = dtd_arg->dtd_arg_ctfc;
242 size_t index = ctftype->dtd_type;
243 gcc_assert (index <= arg_ctfc->ctfc_types->elements ());
245 /* CTF types need to be output in the order of their type IDs. In other
246 words, if type A is used to define type B, type ID of type A must
247 appear before type ID of type B. */
248 arg_ctfc->ctfc_types_list[index] = ctftype;
250 /* Keep track of the CTF type if it's a function type and the type
251 was generated from a function object. */
252 kind = CTF_V2_INFO_KIND (ctftype->dtd_data.ctti_info);
253 if (kind == CTF_K_FUNCTION && ctftype->from_global_func)
255 arg_ctfc->ctfc_gfuncs_list[dtd_arg->dtd_global_func_idx] = ctftype;
256 dtd_arg->dtd_global_func_idx++;
259 /* Calculate the vlen bytes. */
260 arg_ctfc->ctfc_num_vlen_bytes += ctf_calc_num_vbytes (ctftype);
262 return 1;
265 /* CTF preprocessing.
266 After the CTF types for the compilation unit have been generated fully, the
267 compiler writes out the asm for the CTF types.
269 CTF writeout in the compiler requires two passes over the CTF types. In the
270 first pass, the CTF preprocess pass:
271 1. CTF types are sorted in the order of their type IDs.
272 2. The variable number of bytes after each CTF type record are calculated.
273 This is used to calculate the offsets in the ctf_header_t.
274 3. If the CTF type is of CTF_K_FUNCTION, the number of bytes in the
275 funcinfo sub-section are calculated. This is used to calculate the
276 offsets in the ctf_header_t.
277 4. Keep the list of CTF variables in ASCIIbetical order of their names.
279 In the second pass, the CTF writeout pass, asm tags are written out using
280 the compiler's afore-generated internal pre-processed CTF types. */
282 static void
283 ctf_preprocess (ctf_container_ref ctfc)
285 size_t num_ctf_types = ctfc->ctfc_types->elements ();
286 size_t num_ctf_vars = ctfc_get_num_ctf_vars (ctfc);
288 /* Initialize an array to keep track of the CTF variables at global
289 scope. At this time, size it conservatively. */
290 size_t num_global_objts = num_ctf_vars;
291 if (num_global_objts)
293 ctfc->ctfc_gobjts_list = ggc_vec_alloc<ctf_dvdef_t*>(num_global_objts);
296 if (num_ctf_vars)
298 ctf_dvd_preprocess_arg_t dvd_arg;
299 dvd_arg.dvd_global_obj_idx = 0;
300 dvd_arg.dvd_arg_ctfc = ctfc;
302 /* Allocate CTF var list. */
303 ctfc->ctfc_vars_list = ggc_vec_alloc<ctf_dvdef_ref>(num_ctf_vars);
304 /* Variables appear in the sort ASCIIbetical order of their names. This
305 permits binary searching in the CTF reader. Add the variables to a
306 list for sorting. */
307 ctfc->ctfc_vars->traverse<void *, ctf_dvd_preprocess_cb> (&dvd_arg);
308 /* Sort the list. */
309 qsort (ctfc->ctfc_vars_list, ctfc->ctfc_vars_list_count,
310 sizeof (ctf_dvdef_ref), ctf_varent_compare);
311 /* Update the actual number of the generated CTF variables at global
312 scope. */
313 ctfc->ctfc_num_global_objts = dvd_arg.dvd_global_obj_idx;
316 /* Initialize an array to keep track of the CTF functions types for global
317 functions in the CTF data section. */
318 size_t num_global_funcs = ctfc->ctfc_num_global_funcs;
319 if (num_global_funcs)
321 ctfc->ctfc_gfuncs_list = ggc_vec_alloc<ctf_dtdef_t*>(num_global_funcs);
322 gcc_assert (num_ctf_types);
325 if (num_ctf_types)
327 ctf_dtd_preprocess_arg_t dtd_arg;
328 dtd_arg.dtd_global_func_idx = 0;
329 dtd_arg.dtd_arg_ctfc = ctfc;
330 /* Allocate the CTF types list. Add 1 because type ID 0 is never a valid
331 CTF type ID. No CTF type record should appear at that offset, this
332 eases debugging and readability. */
333 ctfc->ctfc_types_list = ggc_vec_alloc<ctf_dtdef_ref>(num_ctf_types + 1);
334 /* Pre-process CTF types. */
335 ctfc->ctfc_types->traverse<void *, ctf_dtd_preprocess_cb> (&dtd_arg);
337 gcc_assert (dtd_arg.dtd_global_func_idx == num_global_funcs);
341 /* CTF asm helper routines. */
343 /* Asm'out the CTF preamble. */
345 static void
346 ctf_asm_preamble (ctf_container_ref ctfc)
348 dw2_asm_output_data (2, ctfc->ctfc_magic,
349 "CTF preamble magic number");
350 dw2_asm_output_data (1, ctfc->ctfc_version, "CTF preamble version");
351 dw2_asm_output_data (1, ctfc->ctfc_flags, "CTF preamble flags");
354 /* Asm'out a CTF type which is represented by ctf_stype_t. */
356 static void
357 ctf_asm_stype (ctf_dtdef_ref type)
359 dw2_asm_output_data (4, type->dtd_data.ctti_name, "ctt_name");
360 dw2_asm_output_data (4, type->dtd_data.ctti_info, "ctt_info");
361 /* union. */
362 dw2_asm_output_data (4, type->dtd_data.ctti_size, "ctt_size or ctt_type");
365 /* Asm'out a CTF type which is represented by ctf_type_t. */
367 static void
368 ctf_asm_type (ctf_dtdef_ref type)
370 dw2_asm_output_data (4, type->dtd_data.ctti_name, "ctt_name");
371 dw2_asm_output_data (4, type->dtd_data.ctti_info, "ctt_info");
372 /* union. */
373 dw2_asm_output_data (4, type->dtd_data.ctti_size, "ctt_size");
374 dw2_asm_output_data (4, type->dtd_data.ctti_lsizehi, "ctt_lsizehi");
375 dw2_asm_output_data (4, type->dtd_data.ctti_lsizelo, "ctt_lsizelo");
378 /* Asm'out a CTF type of kind CTF_K_SLICE. */
380 static void
381 ctf_asm_slice (ctf_dtdef_ref type)
383 dw2_asm_output_data (4, ctf_type_id (type->dtd_u.dtu_slice.cts_type),
384 "cts_type");
385 dw2_asm_output_data (2, type->dtd_u.dtu_slice.cts_offset, "cts_offset");
386 dw2_asm_output_data (2, type->dtd_u.dtu_slice.cts_bits, "cts_bits");
389 /* Asm'out a CTF type of kind CTF_K_ARRAY. */
391 static void
392 ctf_asm_array (ctf_dtdef_ref dtd)
394 dw2_asm_output_data (4, ctf_type_id (dtd->dtd_u.dtu_arr.ctr_contents),
395 "cta_contents");
396 dw2_asm_output_data (4, ctf_type_id (dtd->dtd_u.dtu_arr.ctr_index),
397 "cta_index");
398 dw2_asm_output_data (4, dtd->dtd_u.dtu_arr.ctr_nelems, "cta_nelems");
401 /* Asm'out a CTF variable. */
403 static void
404 ctf_asm_varent (ctf_dvdef_ref var)
406 /* Output the reference to the name in the string table. */
407 dw2_asm_output_data (4, var->dvd_name_offset, "ctv_name");
408 /* Output the type index. */
409 dw2_asm_output_data (4, ctf_type_id (var->dvd_type), "ctv_typeidx");
412 /* Asm'out a member of CTF struct or union, represented by ctf_lmember_t. */
414 static void
415 ctf_asm_sou_lmember (ctf_dmdef_t * dmd)
417 dw2_asm_output_data (4, dmd->dmd_name_offset, "ctlm_name");
418 dw2_asm_output_data (4, CTF_OFFSET_TO_LMEMHI (dmd->dmd_offset),
419 "ctlm_offsethi");
420 dw2_asm_output_data (4, ctf_type_id (dmd->dmd_type), "ctlm_type");
421 dw2_asm_output_data (4, CTF_OFFSET_TO_LMEMLO (dmd->dmd_offset),
422 "ctlm_offsetlo");
425 /* Asm'out a member of a CTF sruct or union, represented by ctf_member_t. */
427 static void
428 ctf_asm_sou_member (ctf_dmdef_t * dmd)
430 dw2_asm_output_data (4, dmd->dmd_name_offset, "ctm_name");
431 dw2_asm_output_data (4, dmd->dmd_offset, "ctm_offset");
432 dw2_asm_output_data (4, ctf_type_id (dmd->dmd_type), "ctm_type");
435 /* Asm'out an enumerator constant. */
437 static void
438 ctf_asm_enum_const (ctf_dmdef_t * dmd)
440 dw2_asm_output_data (4, dmd->dmd_name_offset, "cte_name");
441 dw2_asm_output_data (4, dmd->dmd_value, "cte_value");
444 /* Asm'out a function argument. */
446 static void
447 ctf_asm_func_arg (ctf_func_arg_t * farg)
449 /* farg_type may be NULL, indicating varargs. */
450 dw2_asm_output_data (4, farg->farg_type
451 ? ctf_type_id (farg->farg_type)
452 : 0, "dtu_argv");
455 /* CTF writeout to asm file. */
457 static void
458 output_ctf_header (ctf_container_ref ctfc)
460 switch_to_section (ctf_info_section);
461 ASM_OUTPUT_LABEL (asm_out_file, ctf_info_section_label);
463 ctf_asm_preamble (ctfc);
465 /* For a single compilation unit, the parent container's name and label are
466 NULL. */
467 dw2_asm_output_data (4, 0, "cth_parlabel");
468 dw2_asm_output_data (4, 0, "cth_parname");
469 dw2_asm_output_data (4, ctfc->ctfc_cuname_offset, "cth_cuname");
471 int typeslen = 0;
472 /* Initialize the offsets. The offsets are from after the CTF header. */
473 uint32_t lbloff = 0;
474 uint32_t objtoff = 0;
475 uint32_t funcoff = 0;
476 uint32_t objtidxoff = 0;
477 uint32_t funcidxoff = 0;
478 uint32_t varoff = 0;
479 uint32_t typeoff = 0;
480 uint32_t stroff = 0;
482 if (!ctfc_is_empty_container (ctfc))
484 gcc_assert (ctfc_get_num_ctf_types (ctfc)
485 == (ctfc->ctfc_num_types + ctfc->ctfc_num_stypes));
487 funcoff = objtoff + ctfc->ctfc_num_global_objts * sizeof (uint32_t);
488 /* Object index appears after function info. */
489 objtidxoff = funcoff + ctfc->ctfc_num_global_funcs * sizeof (uint32_t);
490 /* Funxtion index goes next. */
491 funcidxoff = objtidxoff + ctfc->ctfc_num_global_objts * sizeof (uint32_t);
492 /* Vars appear after function index. */
493 varoff = funcidxoff + ctfc->ctfc_num_global_funcs * sizeof (uint32_t);
494 /* CTF types appear after vars. */
495 typeoff = varoff + (ctfc->ctfc_vars_list_count) * sizeof (ctf_varent_t);
496 /* The total number of bytes for CTF types is the sum of the number of
497 times struct ctf_type_t, struct ctf_stype_t are written, plus the
498 amount of variable length data after each one of these. */
499 typeslen = ctfc->ctfc_num_types * sizeof (ctf_type_t)
500 + ctfc->ctfc_num_stypes * (sizeof (ctf_stype_t))
501 + ctfc_get_num_vlen_bytes (ctfc);
503 /* Strings appear after types. */
504 stroff = typeoff + typeslen;
507 /* Offset of label section. */
508 dw2_asm_output_data (4, lbloff, "cth_lbloff");
509 /* Offset of object section. */
510 dw2_asm_output_data (4, objtoff, "cth_objtoff");
511 /* Offset of function section. */
512 dw2_asm_output_data (4, funcoff, "cth_funcoff");
513 /* Offset of object index section. */
514 dw2_asm_output_data (4, objtidxoff, "cth_objtidxoff");
515 /* Offset of function index section. */
516 dw2_asm_output_data (4, funcidxoff, "cth_funcidxoff");
518 /* Offset of variable section. */
519 dw2_asm_output_data (4, varoff, "cth_varoff");
520 /* Offset of type section. */
521 dw2_asm_output_data (4, typeoff, "cth_typeoff");
522 /* Offset of string section. */
523 dw2_asm_output_data (4, stroff, "cth_stroff");
524 /* Length of string section in bytes. */
525 dw2_asm_output_data (4, ctfc->ctfc_strlen, "cth_strlen");
528 /* Output the CTF object info section. */
530 static void
531 output_ctf_obj_info (ctf_container_ref ctfc)
533 uint64_t i;
534 ctf_dvdef_ref var;
536 if (!ctfc->ctfc_num_global_objts) return;
538 /* Compiler spits out the objts (at global scope) in the CTF obj info section.
539 In no specific order. In an object file, the CTF object index section is
540 used to associate the objts to their corresponding names. */
541 for (i = 0; i < ctfc->ctfc_num_global_objts; i++)
543 var = ctfc->ctfc_gobjts_list[i];
545 /* CTF type ID corresponding to the type of the variable. */
546 dw2_asm_output_data (4, ctf_type_id (var->dvd_type), "objtinfo_var_type");
551 /* Output the CTF function info section. */
553 static void
554 output_ctf_func_info (ctf_container_ref ctfc)
556 uint64_t i;
557 ctf_dtdef_ref ctftype;
559 if (!ctfc->ctfc_num_global_funcs) return;
561 /* The CTF funcinfo section is simply an array of CTF_K_FUNCTION type IDs in
562 the type section. In an object file, the CTF function index section is
563 used to associate functions to their corresponding names. */
564 for (i = 0; i < ctfc->ctfc_num_global_funcs; i++)
566 ctftype = ctfc->ctfc_gfuncs_list[i];
567 dw2_asm_output_data (4, ctftype->dtd_type, "funcinfo_func_type");
571 /* Output the CTF object index section. */
573 static void
574 output_ctf_objtidx (ctf_container_ref ctfc)
576 uint64_t i;
577 ctf_dvdef_ref var;
579 if (!ctfc->ctfc_num_global_objts) return;
581 for (i = 0; i < ctfc->ctfc_num_global_objts; i++)
583 var = ctfc->ctfc_gobjts_list[i];
584 /* Offset to the name in CTF string table. */
585 dw2_asm_output_data (4, var->dvd_name_offset, "objtinfo_name");
589 /* Output the CTF function index section. */
591 static void
592 output_ctf_funcidx (ctf_container_ref ctfc)
594 uint64_t i;
595 ctf_dtdef_ref ctftype;
597 if (!ctfc->ctfc_num_global_funcs) return;
599 for (i = 0; i < ctfc->ctfc_num_global_funcs; i++)
601 ctftype = ctfc->ctfc_gfuncs_list[i];
602 /* Offset to the name in CTF string table. */
603 dw2_asm_output_data (4, ctftype->dtd_data.ctti_name, "funcinfo_name");
607 /* Output the CTF variables. Variables appear in the sorted ASCIIbetical
608 order of their names. This permits binary searching in the CTF reader. */
610 static void
611 output_ctf_vars (ctf_container_ref ctfc)
613 size_t i;
614 unsigned int num_ctf_vars = ctfc->ctfc_vars_list_count;
615 if (num_ctf_vars)
617 /* Iterate over the list of sorted vars and output the asm. */
618 for (i = 0; i < num_ctf_vars; i++)
620 ctf_asm_varent (ctfc->ctfc_vars_list[i]);
621 /* The type of variable must be a valid one. */
622 gcc_assert (ctfc->ctfc_vars_list[i]->dvd_type != CTF_NULL_TYPEID);
627 /* Output the CTF string records. */
629 static void
630 output_ctf_strs (ctf_container_ref ctfc)
632 ctf_string_t * ctf_string = ctfc->ctfc_strtable.ctstab_head;
634 while (ctf_string)
636 dw2_asm_output_nstring (ctf_string->cts_str, -1, "ctf_string");
637 ctf_string = ctf_string->cts_next;
641 /* Output the members of the CTF struct or union. */
643 static void
644 output_asm_ctf_sou_fields (ctf_container_ref ARG_UNUSED (ctfc),
645 ctf_dtdef_ref dtd)
647 ctf_dmdef_t * dmd;
649 /* Function pointer to dump struct/union members. */
650 void (*ctf_asm_sou_field_func) (ctf_dmdef_t *);
652 uint32_t size = dtd->dtd_data.ctti_size;
654 /* The variable length data struct/union CTF types is an array of
655 ctf_member or ctf_lmember, depending on size of the member. */
656 if (size >= CTF_LSTRUCT_THRESH)
657 ctf_asm_sou_field_func = ctf_asm_sou_lmember;
658 else
659 ctf_asm_sou_field_func = ctf_asm_sou_member;
661 for (dmd = dtd->dtd_u.dtu_members;
662 dmd != NULL; dmd = (ctf_dmdef_t *) ctf_dmd_list_next (dmd))
664 ctf_asm_sou_field_func (dmd);
665 /* Sanity Check - Unrepresented types appear as explicit types. */
666 gcc_assert (dmd->dmd_type != CTF_NULL_TYPEID);
670 /* Output the list of enumerator constants of the CTF enum type. */
672 static void
673 output_asm_ctf_enum_list (ctf_container_ref ARG_UNUSED (ctfc),
674 ctf_dtdef_ref dtd)
676 ctf_dmdef_t * dmd;
678 for (dmd = dtd->dtd_u.dtu_members;
679 dmd != NULL; dmd = (ctf_dmdef_t *) ctf_dmd_list_next (dmd))
680 ctf_asm_enum_const (dmd);
683 /* Output the list of function arguments of the CTF function type. */
685 static void
686 output_asm_func_args_list (ctf_container_ref ARG_UNUSED (ctfc),
687 ctf_dtdef_ref dtd)
689 ctf_func_arg_t * farg;
691 for (farg = dtd->dtd_u.dtu_argv;
692 farg != NULL; farg = (ctf_func_arg_t *) ctf_farg_list_next (farg))
693 ctf_asm_func_arg (farg);
696 /* Output the variable length portion of the CTF type record. */
698 static void
699 output_asm_ctf_vlen_bytes (ctf_container_ref ctfc, ctf_dtdef_ref ctftype)
701 uint32_t encoding;
702 uint32_t kind = CTF_V2_INFO_KIND (ctftype->dtd_data.ctti_info);
703 uint32_t vlen = CTF_V2_INFO_VLEN (ctftype->dtd_data.ctti_info);
705 switch (kind)
707 case CTF_K_INTEGER:
708 case CTF_K_FLOAT:
709 if (kind == CTF_K_INTEGER)
711 encoding = CTF_INT_DATA (ctftype->dtd_u.dtu_enc.cte_format,
712 ctftype->dtd_u.dtu_enc.cte_offset,
713 ctftype->dtd_u.dtu_enc.cte_bits);
715 else
717 encoding = CTF_FP_DATA (ctftype->dtd_u.dtu_enc.cte_format,
718 ctftype->dtd_u.dtu_enc.cte_offset,
719 ctftype->dtd_u.dtu_enc.cte_bits);
721 dw2_asm_output_data (4, encoding, "ctf_encoding_data");
722 break;
723 case CTF_K_FUNCTION:
725 output_asm_func_args_list (ctfc, ctftype);
726 /* FIXME - CTF_PADDING_FOR_ALIGNMENT.
727 libctf expects this padding for alignment reasons. Expected to
728 be redundant in CTF_VERSION_4. */
729 if (vlen & 1)
730 dw2_asm_output_data (4, 0, "dtu_argv_padding");
732 break;
734 case CTF_K_ARRAY:
735 ctf_asm_array (ctftype);
736 break;
737 case CTF_K_SLICE:
739 ctf_asm_slice (ctftype);
740 /* Type of the slice must be a valid CTF type. */
741 gcc_assert (ctftype->dtd_u.dtu_slice.cts_type != CTF_NULL_TYPEID);
742 break;
744 case CTF_K_STRUCT:
745 case CTF_K_UNION:
746 output_asm_ctf_sou_fields (ctfc, ctftype);
747 break;
748 case CTF_K_ENUM:
749 output_asm_ctf_enum_list (ctfc, ctftype);
750 break;
752 default:
753 /* CTF types of kind CTF_K_VOLATILE, CTF_K_CONST, CTF_K_RESTRICT,
754 etc have no vlen data to write. */
755 break;
759 /* Output a CTF Type. */
761 static void
762 output_asm_ctf_type (ctf_container_ref ctfc, ctf_dtdef_ref type)
764 if (type->dtd_data.ctti_size <= CTF_MAX_SIZE)
765 ctf_asm_stype (type);
766 else
767 ctf_asm_type (type);
768 /* Now comes the variable-length portion for defining types completely.
769 E.g., encoding follows CTF_INT_DATA, CTF_FP_DATA types,
770 struct ctf_array_t follows CTF_K_ARRAY types, or a bunch of
771 struct ctf_member / ctf_lmember ctf_enum sit in there for CTF_K_STRUCT or
772 CTF_K_UNION. */
773 output_asm_ctf_vlen_bytes (ctfc, type);
775 uint32_t kind = CTF_V2_INFO_KIND (type->dtd_data.ctti_info);
776 /* The underlying type must be a valid CTF type. */
777 if (kind == CTF_K_POINTER || kind == CTF_K_TYPEDEF
778 || kind == CTF_K_VOLATILE || kind == CTF_K_CONST
779 || kind == CTF_K_RESTRICT)
780 gcc_assert (type->dtd_data.ctti_type != CTF_NULL_TYPEID);
783 /* Output all CTF type records. */
785 static void
786 output_ctf_types (ctf_container_ref ctfc)
788 size_t i;
789 size_t num_ctf_types = ctfc->ctfc_types->elements ();
790 if (num_ctf_types)
792 /* Type ID = 0 is used as sentinel value; not a valid type. */
793 for (i = 1; i <= num_ctf_types; i++)
794 output_asm_ctf_type (ctfc, ctfc->ctfc_types_list[i]);
798 /* CTF routines interfacing to the compiler. */
800 /* Prepare and output the CTF section. */
802 void
803 ctf_output (const char * filename)
805 if (ctf_debug_info_level == CTFINFO_LEVEL_NONE)
806 return;
808 /* Get the CTF container for the current translation unit. */
809 ctf_container_ref tu_ctfc = ctf_get_tu_ctfc ();
811 init_ctf_sections ();
813 ctf_add_cuname (tu_ctfc, filename);
815 /* Pre-process CTF before generating assembly. */
816 ctf_preprocess (tu_ctfc);
817 output_ctf_header (tu_ctfc);
818 output_ctf_obj_info (tu_ctfc);
819 output_ctf_func_info (tu_ctfc);
820 output_ctf_objtidx (tu_ctfc);
821 output_ctf_funcidx (tu_ctfc);
822 output_ctf_vars (tu_ctfc);
823 output_ctf_types (tu_ctfc);
824 output_ctf_strs (tu_ctfc);
826 /* The total number of string bytes must be equal to those processed out to
827 the str subsection. */
828 gcc_assert (tu_ctfc->ctfc_strlen
829 == ctfc_get_strtab_len (tu_ctfc, CTF_STRTAB));
833 /* Reset all state for CTF generation so that we can rerun the compiler within
834 the same process. */
836 void
837 ctf_finalize (void)
839 ctf_info_section = NULL;
841 ctf_container_ref tu_ctfc = ctf_get_tu_ctfc ();
842 ctfc_delete_container (tu_ctfc);
843 tu_ctfc = NULL;
846 #include "gt-ctfout.h"