ada: Fix minor glitch in finish_record_type
[official-gcc.git] / gcc / dwarf2out.cc
blobc4a935d5101b4fe32a4a2aca0f776a6a3ec18ac9
1 /* Output Dwarf2 format symbol table information from GCC.
2 Copyright (C) 1992-2023 Free Software Foundation, Inc.
3 Contributed by Gary Funck (gary@intrepid.com).
4 Derived from DWARF 1 implementation of Ron Guilmette (rfg@monkeys.com).
5 Extensively modified by Jason Merrill (jason@cygnus.com).
7 This file is part of GCC.
9 GCC is free software; you can redistribute it and/or modify it under
10 the terms of the GNU General Public License as published by the Free
11 Software Foundation; either version 3, or (at your option) any later
12 version.
14 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
15 WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 for more details.
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING3. If not see
21 <http://www.gnu.org/licenses/>. */
23 /* TODO: Emit .debug_line header even when there are no functions, since
24 the file numbers are used by .debug_info. Alternately, leave
25 out locations for types and decls.
26 Avoid talking about ctors and op= for PODs.
27 Factor out common prologue sequences into multiple CIEs. */
29 /* The first part of this file deals with the DWARF 2 frame unwind
30 information, which is also used by the GCC efficient exception handling
31 mechanism. The second part, controlled only by an #ifdef
32 DWARF2_DEBUGGING_INFO, deals with the other DWARF 2 debugging
33 information. */
35 /* DWARF2 Abbreviation Glossary:
37 CFA = Canonical Frame Address
38 a fixed address on the stack which identifies a call frame.
39 We define it to be the value of SP just before the call insn.
40 The CFA register and offset, which may change during the course
41 of the function, are used to calculate its value at runtime.
43 CFI = Call Frame Instruction
44 an instruction for the DWARF2 abstract machine
46 CIE = Common Information Entry
47 information describing information common to one or more FDEs
49 DIE = Debugging Information Entry
51 FDE = Frame Description Entry
52 information describing the stack call frame, in particular,
53 how to restore registers
55 DW_CFA_... = DWARF2 CFA call frame instruction
56 DW_TAG_... = DWARF2 DIE tag */
58 #include "config.h"
59 #include "system.h"
60 #include "coretypes.h"
61 #include "target.h"
62 #include "function.h"
63 #include "rtl.h"
64 #include "tree.h"
65 #include "memmodel.h"
66 #include "tm_p.h"
67 #include "stringpool.h"
68 #include "insn-config.h"
69 #include "ira.h"
70 #include "cgraph.h"
71 #include "diagnostic.h"
72 #include "fold-const.h"
73 #include "stor-layout.h"
74 #include "varasm.h"
75 #include "version.h"
76 #include "flags.h"
77 #include "rtlhash.h"
78 #include "reload.h"
79 #include "output.h"
80 #include "expr.h"
81 #include "dwarf2out.h"
82 #include "dwarf2ctf.h"
83 #include "dwarf2asm.h"
84 #include "toplev.h"
85 #include "md5.h"
86 #include "tree-pretty-print.h"
87 #include "print-rtl.h"
88 #include "debug.h"
89 #include "common/common-target.h"
90 #include "langhooks.h"
91 #include "lra.h"
92 #include "dumpfile.h"
93 #include "opts.h"
94 #include "tree-dfa.h"
95 #include "gdb/gdb-index.h"
96 #include "rtl-iter.h"
97 #include "stringpool.h"
98 #include "attribs.h"
99 #include "file-prefix-map.h" /* remap_debug_filename() */
101 static void dwarf2out_source_line (unsigned int, unsigned int, const char *,
102 int, bool);
103 static rtx_insn *last_var_location_insn;
104 static rtx_insn *cached_next_real_insn;
105 static void dwarf2out_decl (tree);
106 static bool is_redundant_typedef (const_tree);
108 #ifndef XCOFF_DEBUGGING_INFO
109 #define XCOFF_DEBUGGING_INFO 0
110 #endif
112 #ifndef HAVE_XCOFF_DWARF_EXTRAS
113 #define HAVE_XCOFF_DWARF_EXTRAS 0
114 #endif
116 #ifdef VMS_DEBUGGING_INFO
117 int vms_file_stats_name (const char *, long long *, long *, char *, int *);
119 /* Define this macro to be a nonzero value if the directory specifications
120 which are output in the debug info should end with a separator. */
121 #define DWARF2_DIR_SHOULD_END_WITH_SEPARATOR 1
122 /* Define this macro to evaluate to a nonzero value if GCC should refrain
123 from generating indirect strings in DWARF2 debug information, for instance
124 if your target is stuck with an old version of GDB that is unable to
125 process them properly or uses VMS Debug. */
126 #define DWARF2_INDIRECT_STRING_SUPPORT_MISSING_ON_TARGET 1
127 #else
128 #define DWARF2_DIR_SHOULD_END_WITH_SEPARATOR 0
129 #define DWARF2_INDIRECT_STRING_SUPPORT_MISSING_ON_TARGET 0
130 #endif
132 /* ??? Poison these here until it can be done generically. They've been
133 totally replaced in this file; make sure it stays that way. */
134 #undef DWARF2_UNWIND_INFO
135 #undef DWARF2_FRAME_INFO
136 #if (GCC_VERSION >= 3000)
137 #pragma GCC poison DWARF2_UNWIND_INFO DWARF2_FRAME_INFO
138 #endif
140 /* The size of the target's pointer type. */
141 #ifndef PTR_SIZE
142 #define PTR_SIZE (POINTER_SIZE / BITS_PER_UNIT)
143 #endif
145 /* Array of RTXes referenced by the debugging information, which therefore
146 must be kept around forever. */
147 static GTY(()) vec<rtx, va_gc> *used_rtx_array;
149 /* A pointer to the base of a list of incomplete types which might be
150 completed at some later time. incomplete_types_list needs to be a
151 vec<tree, va_gc> *because we want to tell the garbage collector about
152 it. */
153 static GTY(()) vec<tree, va_gc> *incomplete_types;
155 /* Pointers to various DWARF2 sections. */
156 static GTY(()) section *debug_info_section;
157 static GTY(()) section *debug_skeleton_info_section;
158 static GTY(()) section *debug_abbrev_section;
159 static GTY(()) section *debug_skeleton_abbrev_section;
160 static GTY(()) section *debug_aranges_section;
161 static GTY(()) section *debug_addr_section;
162 static GTY(()) section *debug_macinfo_section;
163 static const char *debug_macinfo_section_name;
164 static unsigned macinfo_label_base = 1;
165 static GTY(()) section *debug_line_section;
166 static GTY(()) section *debug_skeleton_line_section;
167 static GTY(()) section *debug_loc_section;
168 static GTY(()) section *debug_pubnames_section;
169 static GTY(()) section *debug_pubtypes_section;
170 static GTY(()) section *debug_str_section;
171 static GTY(()) section *debug_line_str_section;
172 static GTY(()) section *debug_str_dwo_section;
173 static GTY(()) section *debug_str_offsets_section;
174 static GTY(()) section *debug_ranges_section;
175 static GTY(()) section *debug_ranges_dwo_section;
176 static GTY(()) section *debug_frame_section;
178 /* Maximum size (in bytes) of an artificially generated label. */
179 #define MAX_ARTIFICIAL_LABEL_BYTES 40
181 /* According to the (draft) DWARF 3 specification, the initial length
182 should either be 4 or 12 bytes. When it's 12 bytes, the first 4
183 bytes are 0xffffffff, followed by the length stored in the next 8
184 bytes.
186 However, the SGI/MIPS ABI uses an initial length which is equal to
187 dwarf_offset_size. It is defined (elsewhere) accordingly. */
189 #ifndef DWARF_INITIAL_LENGTH_SIZE
190 #define DWARF_INITIAL_LENGTH_SIZE (dwarf_offset_size == 4 ? 4 : 12)
191 #endif
193 #ifndef DWARF_INITIAL_LENGTH_SIZE_STR
194 #define DWARF_INITIAL_LENGTH_SIZE_STR (dwarf_offset_size == 4 ? "-4" : "-12")
195 #endif
197 /* Round SIZE up to the nearest BOUNDARY. */
198 #define DWARF_ROUND(SIZE,BOUNDARY) \
199 ((((SIZE) + (BOUNDARY) - 1) / (BOUNDARY)) * (BOUNDARY))
201 /* CIE identifier. */
202 #if HOST_BITS_PER_WIDE_INT >= 64
203 #define DWARF_CIE_ID \
204 (unsigned HOST_WIDE_INT) (dwarf_offset_size == 4 ? DW_CIE_ID : DW64_CIE_ID)
205 #else
206 #define DWARF_CIE_ID DW_CIE_ID
207 #endif
210 /* A vector for a table that contains frame description
211 information for each routine. */
212 #define NOT_INDEXED (-1U)
213 #define NO_INDEX_ASSIGNED (-2U)
215 static GTY(()) vec<dw_fde_ref, va_gc> *fde_vec;
217 struct GTY((for_user)) indirect_string_node {
218 const char *str;
219 unsigned int refcount;
220 enum dwarf_form form;
221 char *label;
222 unsigned int index;
225 struct indirect_string_hasher : ggc_ptr_hash<indirect_string_node>
227 typedef const char *compare_type;
229 static hashval_t hash (indirect_string_node *);
230 static bool equal (indirect_string_node *, const char *);
233 static GTY (()) hash_table<indirect_string_hasher> *debug_str_hash;
235 static GTY (()) hash_table<indirect_string_hasher> *debug_line_str_hash;
237 /* With split_debug_info, both the comp_dir and dwo_name go in the
238 main object file, rather than the dwo, similar to the force_direct
239 parameter elsewhere but with additional complications:
241 1) The string is needed in both the main object file and the dwo.
242 That is, the comp_dir and dwo_name will appear in both places.
244 2) Strings can use four forms: DW_FORM_string, DW_FORM_strp,
245 DW_FORM_line_strp or DW_FORM_strx/GNU_str_index.
247 3) GCC chooses the form to use late, depending on the size and
248 reference count.
250 Rather than forcing the all debug string handling functions and
251 callers to deal with these complications, simply use a separate,
252 special-cased string table for any attribute that should go in the
253 main object file. This limits the complexity to just the places
254 that need it. */
256 static GTY (()) hash_table<indirect_string_hasher> *skeleton_debug_str_hash;
258 static GTY(()) int dw2_string_counter;
260 /* True if the compilation unit places functions in more than one section. */
261 static GTY(()) bool have_multiple_function_sections = false;
263 /* The default cold text section. */
264 static GTY(()) section *cold_text_section;
266 /* True if currently in text section. */
267 static GTY(()) bool in_text_section_p = false;
269 /* Last debug-on location in corresponding section. */
270 static GTY(()) const char *last_text_label;
271 static GTY(()) const char *last_cold_label;
273 /* Mark debug-on/off locations per section.
274 NULL means the section is not used at all. */
275 static GTY(()) vec<const char *, va_gc> *switch_text_ranges;
276 static GTY(()) vec<const char *, va_gc> *switch_cold_ranges;
278 /* The DIE for C++14 'auto' in a function return type. */
279 static GTY(()) dw_die_ref auto_die;
281 /* The DIE for C++14 'decltype(auto)' in a function return type. */
282 static GTY(()) dw_die_ref decltype_auto_die;
284 /* Forward declarations for functions defined in this file. */
286 static void output_call_frame_info (int);
288 /* Personality decl of current unit. Used only when assembler does not support
289 personality CFI. */
290 static GTY(()) rtx current_unit_personality;
292 /* Whether an eh_frame section is required. */
293 static GTY(()) bool do_eh_frame = false;
295 /* .debug_rnglists next index. */
296 static unsigned int rnglist_idx;
298 /* Data and reference forms for relocatable data. */
299 #define DW_FORM_data (dwarf_offset_size == 8 ? DW_FORM_data8 : DW_FORM_data4)
300 #define DW_FORM_ref (dwarf_offset_size == 8 ? DW_FORM_ref8 : DW_FORM_ref4)
302 #ifndef DEBUG_FRAME_SECTION
303 #define DEBUG_FRAME_SECTION ".debug_frame"
304 #endif
306 #ifndef FUNC_BEGIN_LABEL
307 #define FUNC_BEGIN_LABEL "LFB"
308 #endif
310 #ifndef FUNC_SECOND_SECT_LABEL
311 #define FUNC_SECOND_SECT_LABEL "LFSB"
312 #endif
314 #ifndef FUNC_END_LABEL
315 #define FUNC_END_LABEL "LFE"
316 #endif
318 #ifndef PROLOGUE_END_LABEL
319 #define PROLOGUE_END_LABEL "LPE"
320 #endif
322 #ifndef EPILOGUE_BEGIN_LABEL
323 #define EPILOGUE_BEGIN_LABEL "LEB"
324 #endif
326 #ifndef FRAME_BEGIN_LABEL
327 #define FRAME_BEGIN_LABEL "Lframe"
328 #endif
329 #define CIE_AFTER_SIZE_LABEL "LSCIE"
330 #define CIE_END_LABEL "LECIE"
331 #define FDE_LABEL "LSFDE"
332 #define FDE_AFTER_SIZE_LABEL "LASFDE"
333 #define FDE_END_LABEL "LEFDE"
334 #define LINE_NUMBER_BEGIN_LABEL "LSLT"
335 #define LINE_NUMBER_END_LABEL "LELT"
336 #define LN_PROLOG_AS_LABEL "LASLTP"
337 #define LN_PROLOG_END_LABEL "LELTP"
338 #define DIE_LABEL_PREFIX "DW"
340 /* Match the base name of a file to the base name of a compilation unit. */
342 static bool
343 matches_main_base (const char *path)
345 /* Cache the last query. */
346 static const char *last_path = NULL;
347 static bool last_match = false;
348 if (path != last_path)
350 const char *base;
351 int length = base_of_path (path, &base);
352 last_path = path;
353 last_match = (length == main_input_baselength
354 && memcmp (base, main_input_basename, length) == 0);
356 return last_match;
359 #ifdef DEBUG_DEBUG_STRUCT
361 static bool
362 dump_struct_debug (tree type, enum debug_info_usage usage,
363 enum debug_struct_file criterion, int generic,
364 bool matches, bool result)
366 /* Find the type name. */
367 tree type_decl = TYPE_STUB_DECL (type);
368 tree t = type_decl;
369 const char *name = 0;
370 if (TREE_CODE (t) == TYPE_DECL)
371 t = DECL_NAME (t);
372 if (t)
373 name = IDENTIFIER_POINTER (t);
375 fprintf (stderr, " struct %d %s %s %s %s %d %p %s\n",
376 criterion,
377 DECL_IN_SYSTEM_HEADER (type_decl) ? "sys" : "usr",
378 matches ? "bas" : "hdr",
379 generic ? "gen" : "ord",
380 usage == DINFO_USAGE_DFN ? ";" :
381 usage == DINFO_USAGE_DIR_USE ? "." : "*",
382 result,
383 (void*) type_decl, name);
384 return result;
386 #define DUMP_GSTRUCT(type, usage, criterion, generic, matches, result) \
387 dump_struct_debug (type, usage, criterion, generic, matches, result)
389 #else
391 #define DUMP_GSTRUCT(type, usage, criterion, generic, matches, result) \
392 (result)
394 #endif
396 /* Get the number of HOST_WIDE_INTs needed to represent the precision
397 of the number. */
399 static unsigned int
400 get_full_len (const wide_int &op)
402 int prec = wi::get_precision (op);
403 return ((prec + HOST_BITS_PER_WIDE_INT - 1)
404 / HOST_BITS_PER_WIDE_INT);
407 static bool
408 should_emit_struct_debug (tree type, enum debug_info_usage usage)
410 if (debug_info_level <= DINFO_LEVEL_TERSE)
411 return false;
413 enum debug_struct_file criterion;
414 tree type_decl;
415 bool generic = lang_hooks.types.generic_p (type);
417 if (generic)
418 criterion = debug_struct_generic[usage];
419 else
420 criterion = debug_struct_ordinary[usage];
422 if (criterion == DINFO_STRUCT_FILE_NONE)
423 return DUMP_GSTRUCT (type, usage, criterion, generic, false, false);
424 if (criterion == DINFO_STRUCT_FILE_ANY)
425 return DUMP_GSTRUCT (type, usage, criterion, generic, false, true);
427 type_decl = TYPE_STUB_DECL (TYPE_MAIN_VARIANT (type));
429 if (type_decl != NULL)
431 if (criterion == DINFO_STRUCT_FILE_SYS && DECL_IN_SYSTEM_HEADER (type_decl))
432 return DUMP_GSTRUCT (type, usage, criterion, generic, false, true);
434 if (matches_main_base (DECL_SOURCE_FILE (type_decl)))
435 return DUMP_GSTRUCT (type, usage, criterion, generic, true, true);
438 return DUMP_GSTRUCT (type, usage, criterion, generic, false, false);
441 /* Switch [BACK] to eh_frame_section. If we don't have an eh_frame_section,
442 switch to the data section instead, and write out a synthetic start label
443 for collect2 the first time around. */
445 static void
446 switch_to_eh_frame_section (bool back ATTRIBUTE_UNUSED)
448 if (eh_frame_section == 0)
450 int flags;
452 if (EH_TABLES_CAN_BE_READ_ONLY)
454 int fde_encoding;
455 int per_encoding;
456 int lsda_encoding;
458 fde_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/1,
459 /*global=*/0);
460 per_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/2,
461 /*global=*/1);
462 lsda_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/0,
463 /*global=*/0);
464 flags = ((! flag_pic
465 || ((fde_encoding & 0x70) != DW_EH_PE_absptr
466 && (fde_encoding & 0x70) != DW_EH_PE_aligned
467 && (per_encoding & 0x70) != DW_EH_PE_absptr
468 && (per_encoding & 0x70) != DW_EH_PE_aligned
469 && (lsda_encoding & 0x70) != DW_EH_PE_absptr
470 && (lsda_encoding & 0x70) != DW_EH_PE_aligned))
471 ? 0 : SECTION_WRITE);
473 else
474 flags = SECTION_WRITE;
476 #ifdef EH_FRAME_SECTION_NAME
477 eh_frame_section = get_section (EH_FRAME_SECTION_NAME, flags, NULL);
478 #else
479 eh_frame_section = ((flags == SECTION_WRITE)
480 ? data_section : readonly_data_section);
481 #endif /* EH_FRAME_SECTION_NAME */
484 switch_to_section (eh_frame_section);
486 #ifdef EH_FRAME_THROUGH_COLLECT2
487 /* We have no special eh_frame section. Emit special labels to guide
488 collect2. */
489 if (!back)
491 tree label = get_file_function_name ("F");
492 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (PTR_SIZE));
493 targetm.asm_out.globalize_label (asm_out_file,
494 IDENTIFIER_POINTER (label));
495 ASM_OUTPUT_LABEL (asm_out_file, IDENTIFIER_POINTER (label));
497 #endif
500 /* Switch [BACK] to the eh or debug frame table section, depending on
501 FOR_EH. */
503 static void
504 switch_to_frame_table_section (int for_eh, bool back)
506 if (for_eh)
507 switch_to_eh_frame_section (back);
508 else
510 if (!debug_frame_section)
511 debug_frame_section = get_section (DEBUG_FRAME_SECTION,
512 SECTION_DEBUG, NULL);
513 switch_to_section (debug_frame_section);
517 /* Describe for the GTY machinery what parts of dw_cfi_oprnd1 are used. */
519 enum dw_cfi_oprnd_type
520 dw_cfi_oprnd1_desc (enum dwarf_call_frame_info cfi)
522 switch (cfi)
524 case DW_CFA_nop:
525 case DW_CFA_GNU_window_save:
526 case DW_CFA_remember_state:
527 case DW_CFA_restore_state:
528 return dw_cfi_oprnd_unused;
530 case DW_CFA_set_loc:
531 case DW_CFA_advance_loc1:
532 case DW_CFA_advance_loc2:
533 case DW_CFA_advance_loc4:
534 case DW_CFA_MIPS_advance_loc8:
535 return dw_cfi_oprnd_addr;
537 case DW_CFA_offset:
538 case DW_CFA_offset_extended:
539 case DW_CFA_def_cfa:
540 case DW_CFA_offset_extended_sf:
541 case DW_CFA_def_cfa_sf:
542 case DW_CFA_restore:
543 case DW_CFA_restore_extended:
544 case DW_CFA_undefined:
545 case DW_CFA_same_value:
546 case DW_CFA_def_cfa_register:
547 case DW_CFA_register:
548 case DW_CFA_expression:
549 case DW_CFA_val_expression:
550 return dw_cfi_oprnd_reg_num;
552 case DW_CFA_def_cfa_offset:
553 case DW_CFA_GNU_args_size:
554 case DW_CFA_def_cfa_offset_sf:
555 return dw_cfi_oprnd_offset;
557 case DW_CFA_def_cfa_expression:
558 return dw_cfi_oprnd_loc;
560 default:
561 gcc_unreachable ();
565 /* Describe for the GTY machinery what parts of dw_cfi_oprnd2 are used. */
567 enum dw_cfi_oprnd_type
568 dw_cfi_oprnd2_desc (enum dwarf_call_frame_info cfi)
570 switch (cfi)
572 case DW_CFA_def_cfa:
573 case DW_CFA_def_cfa_sf:
574 case DW_CFA_offset:
575 case DW_CFA_offset_extended_sf:
576 case DW_CFA_offset_extended:
577 return dw_cfi_oprnd_offset;
579 case DW_CFA_register:
580 return dw_cfi_oprnd_reg_num;
582 case DW_CFA_expression:
583 case DW_CFA_val_expression:
584 return dw_cfi_oprnd_loc;
586 case DW_CFA_def_cfa_expression:
587 return dw_cfi_oprnd_cfa_loc;
589 default:
590 return dw_cfi_oprnd_unused;
594 /* Output one FDE. */
596 static void
597 output_fde (dw_fde_ref fde, bool for_eh, bool second,
598 char *section_start_label, int fde_encoding, char *augmentation,
599 bool any_lsda_needed, int lsda_encoding)
601 const char *begin, *end;
602 static unsigned int j;
603 char l1[MAX_ARTIFICIAL_LABEL_BYTES], l2[MAX_ARTIFICIAL_LABEL_BYTES];
605 targetm.asm_out.emit_unwind_label (asm_out_file, fde->decl, for_eh,
606 /* empty */ 0);
607 targetm.asm_out.internal_label (asm_out_file, FDE_LABEL,
608 for_eh + j);
609 ASM_GENERATE_INTERNAL_LABEL (l1, FDE_AFTER_SIZE_LABEL, for_eh + j);
610 ASM_GENERATE_INTERNAL_LABEL (l2, FDE_END_LABEL, for_eh + j);
611 if (!XCOFF_DEBUGGING_INFO || for_eh)
613 if (DWARF_INITIAL_LENGTH_SIZE - dwarf_offset_size == 4 && !for_eh)
614 dw2_asm_output_data (4, 0xffffffff, "Initial length escape value"
615 " indicating 64-bit DWARF extension");
616 dw2_asm_output_delta (for_eh ? 4 : dwarf_offset_size, l2, l1,
617 "FDE Length");
619 ASM_OUTPUT_LABEL (asm_out_file, l1);
621 if (for_eh)
622 dw2_asm_output_delta (4, l1, section_start_label, "FDE CIE offset");
623 else
624 dw2_asm_output_offset (dwarf_offset_size, section_start_label,
625 debug_frame_section, "FDE CIE offset");
627 begin = second ? fde->dw_fde_second_begin : fde->dw_fde_begin;
628 end = second ? fde->dw_fde_second_end : fde->dw_fde_end;
630 if (for_eh)
632 rtx sym_ref = gen_rtx_SYMBOL_REF (Pmode, begin);
633 SYMBOL_REF_FLAGS (sym_ref) |= SYMBOL_FLAG_LOCAL;
634 dw2_asm_output_encoded_addr_rtx (fde_encoding, sym_ref, false,
635 "FDE initial location");
636 dw2_asm_output_delta (size_of_encoded_value (fde_encoding),
637 end, begin, "FDE address range");
639 else
641 dw2_asm_output_addr (DWARF2_ADDR_SIZE, begin, "FDE initial location");
642 dw2_asm_output_delta (DWARF2_ADDR_SIZE, end, begin, "FDE address range");
645 if (augmentation[0])
647 if (any_lsda_needed)
649 int size = size_of_encoded_value (lsda_encoding);
651 if (lsda_encoding == DW_EH_PE_aligned)
653 int offset = ( 4 /* Length */
654 + 4 /* CIE offset */
655 + 2 * size_of_encoded_value (fde_encoding)
656 + 1 /* Augmentation size */ );
657 int pad = -offset & (PTR_SIZE - 1);
659 size += pad;
660 gcc_assert (size_of_uleb128 (size) == 1);
663 dw2_asm_output_data_uleb128 (size, "Augmentation size");
665 if (fde->uses_eh_lsda)
667 ASM_GENERATE_INTERNAL_LABEL (l1, second ? "LLSDAC" : "LLSDA",
668 fde->funcdef_number);
669 dw2_asm_output_encoded_addr_rtx (lsda_encoding,
670 gen_rtx_SYMBOL_REF (Pmode, l1),
671 false,
672 "Language Specific Data Area");
674 else
676 if (lsda_encoding == DW_EH_PE_aligned)
677 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (PTR_SIZE));
678 dw2_asm_output_data (size_of_encoded_value (lsda_encoding), 0,
679 "Language Specific Data Area (none)");
682 else
683 dw2_asm_output_data_uleb128 (0, "Augmentation size");
686 /* Loop through the Call Frame Instructions associated with this FDE. */
687 fde->dw_fde_current_label = begin;
689 size_t from, until, i;
691 from = 0;
692 until = vec_safe_length (fde->dw_fde_cfi);
694 if (fde->dw_fde_second_begin == NULL)
696 else if (!second)
697 until = fde->dw_fde_switch_cfi_index;
698 else
699 from = fde->dw_fde_switch_cfi_index;
701 for (i = from; i < until; i++)
702 output_cfi ((*fde->dw_fde_cfi)[i], fde, for_eh);
705 /* If we are to emit a ref/link from function bodies to their frame tables,
706 do it now. This is typically performed to make sure that tables
707 associated with functions are dragged with them and not discarded in
708 garbage collecting links. We need to do this on a per function basis to
709 cope with -ffunction-sections. */
711 #ifdef ASM_OUTPUT_DWARF_TABLE_REF
712 /* Switch to the function section, emit the ref to the tables, and
713 switch *back* into the table section. */
714 switch_to_section (function_section (fde->decl));
715 ASM_OUTPUT_DWARF_TABLE_REF (section_start_label);
716 switch_to_frame_table_section (for_eh, true);
717 #endif
719 /* Pad the FDE out to an address sized boundary. */
720 ASM_OUTPUT_ALIGN (asm_out_file,
721 floor_log2 ((for_eh ? PTR_SIZE : DWARF2_ADDR_SIZE)));
722 ASM_OUTPUT_LABEL (asm_out_file, l2);
724 j += 2;
727 /* Return true if frame description entry FDE is needed for EH. */
729 static bool
730 fde_needed_for_eh_p (dw_fde_ref fde)
732 if (flag_asynchronous_unwind_tables)
733 return true;
735 if (TARGET_USES_WEAK_UNWIND_INFO && DECL_WEAK (fde->decl))
736 return true;
738 if (fde->uses_eh_lsda)
739 return true;
741 /* If exceptions are enabled, we have collected nothrow info. */
742 if (flag_exceptions && (fde->all_throwers_are_sibcalls || fde->nothrow))
743 return false;
745 return true;
748 /* Output the call frame information used to record information
749 that relates to calculating the frame pointer, and records the
750 location of saved registers. */
752 static void
753 output_call_frame_info (int for_eh)
755 unsigned int i;
756 dw_fde_ref fde;
757 dw_cfi_ref cfi;
758 char l1[MAX_ARTIFICIAL_LABEL_BYTES], l2[MAX_ARTIFICIAL_LABEL_BYTES];
759 char section_start_label[MAX_ARTIFICIAL_LABEL_BYTES];
760 bool any_lsda_needed = false;
761 char augmentation[6];
762 int augmentation_size;
763 int fde_encoding = DW_EH_PE_absptr;
764 int per_encoding = DW_EH_PE_absptr;
765 int lsda_encoding = DW_EH_PE_absptr;
766 int return_reg;
767 rtx personality = NULL;
768 int dw_cie_version;
770 /* Don't emit a CIE if there won't be any FDEs. */
771 if (!fde_vec)
772 return;
774 /* Nothing to do if the assembler's doing it all. */
775 if (dwarf2out_do_cfi_asm ())
776 return;
778 /* If we don't have any functions we'll want to unwind out of, don't emit
779 any EH unwind information. If we make FDEs linkonce, we may have to
780 emit an empty label for an FDE that wouldn't otherwise be emitted. We
781 want to avoid having an FDE kept around when the function it refers to
782 is discarded. Example where this matters: a primary function template
783 in C++ requires EH information, an explicit specialization doesn't. */
784 if (for_eh)
786 bool any_eh_needed = false;
788 FOR_EACH_VEC_ELT (*fde_vec, i, fde)
790 if (fde->uses_eh_lsda)
791 any_eh_needed = any_lsda_needed = true;
792 else if (fde_needed_for_eh_p (fde))
793 any_eh_needed = true;
794 else if (TARGET_USES_WEAK_UNWIND_INFO)
795 targetm.asm_out.emit_unwind_label (asm_out_file, fde->decl, 1, 1);
798 if (!any_eh_needed)
799 return;
802 /* We're going to be generating comments, so turn on app. */
803 if (flag_debug_asm)
804 app_enable ();
806 /* Switch to the proper frame section, first time. */
807 switch_to_frame_table_section (for_eh, false);
809 ASM_GENERATE_INTERNAL_LABEL (section_start_label, FRAME_BEGIN_LABEL, for_eh);
810 ASM_OUTPUT_LABEL (asm_out_file, section_start_label);
812 /* Output the CIE. */
813 ASM_GENERATE_INTERNAL_LABEL (l1, CIE_AFTER_SIZE_LABEL, for_eh);
814 ASM_GENERATE_INTERNAL_LABEL (l2, CIE_END_LABEL, for_eh);
815 if (!XCOFF_DEBUGGING_INFO || for_eh)
817 if (DWARF_INITIAL_LENGTH_SIZE - dwarf_offset_size == 4 && !for_eh)
818 dw2_asm_output_data (4, 0xffffffff,
819 "Initial length escape value indicating 64-bit DWARF extension");
820 dw2_asm_output_delta (for_eh ? 4 : dwarf_offset_size, l2, l1,
821 "Length of Common Information Entry");
823 ASM_OUTPUT_LABEL (asm_out_file, l1);
825 /* Now that the CIE pointer is PC-relative for EH,
826 use 0 to identify the CIE. */
827 dw2_asm_output_data ((for_eh ? 4 : dwarf_offset_size),
828 (for_eh ? 0 : DWARF_CIE_ID),
829 "CIE Identifier Tag");
831 /* Use the CIE version 3 for DWARF3; allow DWARF2 to continue to
832 use CIE version 1, unless that would produce incorrect results
833 due to overflowing the return register column. */
834 return_reg = DWARF2_FRAME_REG_OUT (DWARF_FRAME_RETURN_COLUMN, for_eh);
835 dw_cie_version = 1;
836 if (return_reg >= 256 || dwarf_version > 2)
837 dw_cie_version = 3;
838 dw2_asm_output_data (1, dw_cie_version, "CIE Version");
840 augmentation[0] = 0;
841 augmentation_size = 0;
843 personality = current_unit_personality;
844 if (for_eh)
846 char *p;
848 /* Augmentation:
849 z Indicates that a uleb128 is present to size the
850 augmentation section.
851 L Indicates the encoding (and thus presence) of
852 an LSDA pointer in the FDE augmentation.
853 R Indicates a non-default pointer encoding for
854 FDE code pointers.
855 P Indicates the presence of an encoding + language
856 personality routine in the CIE augmentation. */
858 fde_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/1, /*global=*/0);
859 per_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/2, /*global=*/1);
860 lsda_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/0, /*global=*/0);
862 p = augmentation + 1;
863 if (personality)
865 *p++ = 'P';
866 augmentation_size += 1 + size_of_encoded_value (per_encoding);
867 assemble_external_libcall (personality);
869 if (any_lsda_needed)
871 *p++ = 'L';
872 augmentation_size += 1;
874 if (fde_encoding != DW_EH_PE_absptr)
876 *p++ = 'R';
877 augmentation_size += 1;
879 if (p > augmentation + 1)
881 augmentation[0] = 'z';
882 *p = '\0';
885 /* Ug. Some platforms can't do unaligned dynamic relocations at all. */
886 if (personality && per_encoding == DW_EH_PE_aligned)
888 int offset = ( 4 /* Length */
889 + 4 /* CIE Id */
890 + 1 /* CIE version */
891 + strlen (augmentation) + 1 /* Augmentation */
892 + size_of_uleb128 (1) /* Code alignment */
893 + size_of_sleb128 (DWARF_CIE_DATA_ALIGNMENT)
894 + 1 /* RA column */
895 + 1 /* Augmentation size */
896 + 1 /* Personality encoding */ );
897 int pad = -offset & (PTR_SIZE - 1);
899 augmentation_size += pad;
901 /* Augmentations should be small, so there's scarce need to
902 iterate for a solution. Die if we exceed one uleb128 byte. */
903 gcc_assert (size_of_uleb128 (augmentation_size) == 1);
907 dw2_asm_output_nstring (augmentation, -1, "CIE Augmentation");
908 if (dw_cie_version >= 4)
910 dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "CIE Address Size");
911 dw2_asm_output_data (1, 0, "CIE Segment Size");
913 dw2_asm_output_data_uleb128 (1, "CIE Code Alignment Factor");
914 dw2_asm_output_data_sleb128 (DWARF_CIE_DATA_ALIGNMENT,
915 "CIE Data Alignment Factor");
917 if (dw_cie_version == 1)
918 dw2_asm_output_data (1, return_reg, "CIE RA Column");
919 else
920 dw2_asm_output_data_uleb128 (return_reg, "CIE RA Column");
922 if (augmentation[0])
924 dw2_asm_output_data_uleb128 (augmentation_size, "Augmentation size");
925 if (personality)
927 dw2_asm_output_data (1, per_encoding, "Personality (%s)",
928 eh_data_format_name (per_encoding));
929 dw2_asm_output_encoded_addr_rtx (per_encoding,
930 personality,
931 true, NULL);
934 if (any_lsda_needed)
935 dw2_asm_output_data (1, lsda_encoding, "LSDA Encoding (%s)",
936 eh_data_format_name (lsda_encoding));
938 if (fde_encoding != DW_EH_PE_absptr)
939 dw2_asm_output_data (1, fde_encoding, "FDE Encoding (%s)",
940 eh_data_format_name (fde_encoding));
943 FOR_EACH_VEC_ELT (*cie_cfi_vec, i, cfi)
944 output_cfi (cfi, NULL, for_eh);
946 /* Pad the CIE out to an address sized boundary. */
947 ASM_OUTPUT_ALIGN (asm_out_file,
948 floor_log2 (for_eh ? PTR_SIZE : DWARF2_ADDR_SIZE));
949 ASM_OUTPUT_LABEL (asm_out_file, l2);
951 /* Loop through all of the FDE's. */
952 FOR_EACH_VEC_ELT (*fde_vec, i, fde)
954 unsigned int k;
956 /* Don't emit EH unwind info for leaf functions that don't need it. */
957 if (for_eh && !fde_needed_for_eh_p (fde))
958 continue;
960 for (k = 0; k < (fde->dw_fde_second_begin ? 2 : 1); k++)
961 output_fde (fde, for_eh, k, section_start_label, fde_encoding,
962 augmentation, any_lsda_needed, lsda_encoding);
965 if (for_eh && targetm.terminate_dw2_eh_frame_info)
966 dw2_asm_output_data (4, 0, "End of Table");
968 /* Turn off app to make assembly quicker. */
969 if (flag_debug_asm)
970 app_disable ();
973 /* Emit .cfi_startproc and .cfi_personality/.cfi_lsda if needed. */
975 static void
976 dwarf2out_do_cfi_startproc (bool second)
978 int enc;
979 rtx ref;
981 fprintf (asm_out_file, "\t.cfi_startproc\n");
983 targetm.asm_out.post_cfi_startproc (asm_out_file, current_function_decl);
985 /* .cfi_personality and .cfi_lsda are only relevant to DWARF2
986 eh unwinders. */
987 if (targetm_common.except_unwind_info (&global_options) != UI_DWARF2)
988 return;
990 rtx personality = get_personality_function (current_function_decl);
992 if (personality)
994 enc = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/2, /*global=*/1);
995 ref = personality;
997 /* ??? The GAS support isn't entirely consistent. We have to
998 handle indirect support ourselves, but PC-relative is done
999 in the assembler. Further, the assembler can't handle any
1000 of the weirder relocation types. */
1001 if (enc & DW_EH_PE_indirect)
1003 if (targetm.asm_out.make_eh_symbol_indirect != NULL)
1004 ref = targetm.asm_out.make_eh_symbol_indirect (ref, true);
1005 else
1006 ref = dw2_force_const_mem (ref, true);
1009 fprintf (asm_out_file, "\t.cfi_personality %#x,", enc);
1010 output_addr_const (asm_out_file, ref);
1011 fputc ('\n', asm_out_file);
1014 if (crtl->uses_eh_lsda)
1016 char lab[MAX_ARTIFICIAL_LABEL_BYTES];
1018 enc = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/0, /*global=*/0);
1019 ASM_GENERATE_INTERNAL_LABEL (lab, second ? "LLSDAC" : "LLSDA",
1020 current_function_funcdef_no);
1021 ref = gen_rtx_SYMBOL_REF (Pmode, lab);
1022 SYMBOL_REF_FLAGS (ref) = SYMBOL_FLAG_LOCAL;
1024 if (enc & DW_EH_PE_indirect)
1026 if (targetm.asm_out.make_eh_symbol_indirect != NULL)
1027 ref = targetm.asm_out.make_eh_symbol_indirect (ref, true);
1028 else
1029 ref = dw2_force_const_mem (ref, true);
1032 fprintf (asm_out_file, "\t.cfi_lsda %#x,", enc);
1033 output_addr_const (asm_out_file, ref);
1034 fputc ('\n', asm_out_file);
1038 /* Allocate CURRENT_FDE. Immediately initialize all we can, noting that
1039 this allocation may be done before pass_final. */
1041 dw_fde_ref
1042 dwarf2out_alloc_current_fde (void)
1044 dw_fde_ref fde;
1046 fde = ggc_cleared_alloc<dw_fde_node> ();
1047 fde->decl = current_function_decl;
1048 fde->funcdef_number = current_function_funcdef_no;
1049 fde->fde_index = vec_safe_length (fde_vec);
1050 fde->all_throwers_are_sibcalls = crtl->all_throwers_are_sibcalls;
1051 fde->uses_eh_lsda = crtl->uses_eh_lsda;
1052 fde->nothrow = crtl->nothrow;
1053 fde->drap_reg = INVALID_REGNUM;
1054 fde->vdrap_reg = INVALID_REGNUM;
1056 /* Record the FDE associated with this function. */
1057 cfun->fde = fde;
1058 vec_safe_push (fde_vec, fde);
1060 return fde;
1063 /* Output a marker (i.e. a label) for the beginning of a function, before
1064 the prologue. */
1066 void
1067 dwarf2out_begin_prologue (unsigned int line ATTRIBUTE_UNUSED,
1068 unsigned int column ATTRIBUTE_UNUSED,
1069 const char *file ATTRIBUTE_UNUSED)
1071 char label[MAX_ARTIFICIAL_LABEL_BYTES];
1072 char * dup_label;
1073 dw_fde_ref fde;
1074 section *fnsec;
1075 bool do_frame;
1077 current_function_func_begin_label = NULL;
1079 do_frame = dwarf2out_do_frame ();
1081 /* ??? current_function_func_begin_label is also used by except.cc for
1082 call-site information. We must emit this label if it might be used. */
1083 if (!do_frame
1084 && (!flag_exceptions
1085 || targetm_common.except_unwind_info (&global_options) == UI_SJLJ))
1086 return;
1088 fnsec = function_section (current_function_decl);
1089 switch_to_section (fnsec);
1090 ASM_GENERATE_INTERNAL_LABEL (label, FUNC_BEGIN_LABEL,
1091 current_function_funcdef_no);
1092 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, FUNC_BEGIN_LABEL,
1093 current_function_funcdef_no);
1094 dup_label = xstrdup (label);
1095 current_function_func_begin_label = dup_label;
1097 /* We can elide FDE allocation if we're not emitting frame unwind info. */
1098 if (!do_frame)
1099 return;
1101 /* Unlike the debug version, the EH version of frame unwind info is a per-
1102 function setting so we need to record whether we need it for the unit. */
1103 do_eh_frame |= dwarf2out_do_eh_frame ();
1105 /* Cater to the various TARGET_ASM_OUTPUT_MI_THUNK implementations that
1106 emit insns as rtx but bypass the bulk of rest_of_compilation, which
1107 would include pass_dwarf2_frame. If we've not created the FDE yet,
1108 do so now. */
1109 fde = cfun->fde;
1110 if (fde == NULL)
1111 fde = dwarf2out_alloc_current_fde ();
1113 /* Initialize the bits of CURRENT_FDE that were not available earlier. */
1114 fde->dw_fde_begin = dup_label;
1115 fde->dw_fde_current_label = dup_label;
1116 fde->in_std_section = (fnsec == text_section
1117 || (cold_text_section && fnsec == cold_text_section));
1118 fde->ignored_debug = DECL_IGNORED_P (current_function_decl);
1119 in_text_section_p = fnsec == text_section;
1121 /* We only want to output line number information for the genuine dwarf2
1122 prologue case, not the eh frame case. */
1123 #ifdef DWARF2_DEBUGGING_INFO
1124 if (file)
1125 dwarf2out_source_line (line, column, file, 0, true);
1126 #endif
1128 if (dwarf2out_do_cfi_asm ())
1129 dwarf2out_do_cfi_startproc (false);
1130 else
1132 rtx personality = get_personality_function (current_function_decl);
1133 if (!current_unit_personality)
1134 current_unit_personality = personality;
1136 /* We cannot keep a current personality per function as without CFI
1137 asm, at the point where we emit the CFI data, there is no current
1138 function anymore. */
1139 if (personality && current_unit_personality != personality)
1140 sorry ("multiple EH personalities are supported only with assemblers "
1141 "supporting %<.cfi_personality%> directive");
1145 /* Output a marker (i.e. a label) for the end of the generated code
1146 for a function prologue. This gets called *after* the prologue code has
1147 been generated. */
1149 void
1150 dwarf2out_vms_end_prologue (unsigned int line ATTRIBUTE_UNUSED,
1151 const char *file ATTRIBUTE_UNUSED)
1153 char label[MAX_ARTIFICIAL_LABEL_BYTES];
1155 /* Output a label to mark the endpoint of the code generated for this
1156 function. */
1157 ASM_GENERATE_INTERNAL_LABEL (label, PROLOGUE_END_LABEL,
1158 current_function_funcdef_no);
1159 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, PROLOGUE_END_LABEL,
1160 current_function_funcdef_no);
1161 cfun->fde->dw_fde_vms_end_prologue = xstrdup (label);
1164 /* Output a marker (i.e. a label) for the beginning of the generated code
1165 for a function epilogue. This gets called *before* the prologue code has
1166 been generated. */
1168 void
1169 dwarf2out_vms_begin_epilogue (unsigned int line ATTRIBUTE_UNUSED,
1170 const char *file ATTRIBUTE_UNUSED)
1172 dw_fde_ref fde = cfun->fde;
1173 char label[MAX_ARTIFICIAL_LABEL_BYTES];
1175 if (fde->dw_fde_vms_begin_epilogue)
1176 return;
1178 /* Output a label to mark the endpoint of the code generated for this
1179 function. */
1180 ASM_GENERATE_INTERNAL_LABEL (label, EPILOGUE_BEGIN_LABEL,
1181 current_function_funcdef_no);
1182 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, EPILOGUE_BEGIN_LABEL,
1183 current_function_funcdef_no);
1184 fde->dw_fde_vms_begin_epilogue = xstrdup (label);
1187 /* Mark the ranges of non-debug subsections in the std text sections. */
1189 static void
1190 mark_ignored_debug_section (dw_fde_ref fde, bool second)
1192 bool std_section;
1193 const char *begin_label, *end_label;
1194 const char **last_end_label;
1195 vec<const char *, va_gc> **switch_ranges;
1197 if (second)
1199 std_section = fde->second_in_std_section;
1200 begin_label = fde->dw_fde_second_begin;
1201 end_label = fde->dw_fde_second_end;
1203 else
1205 std_section = fde->in_std_section;
1206 begin_label = fde->dw_fde_begin;
1207 end_label = fde->dw_fde_end;
1210 if (!std_section)
1211 return;
1213 if (in_text_section_p)
1215 last_end_label = &last_text_label;
1216 switch_ranges = &switch_text_ranges;
1218 else
1220 last_end_label = &last_cold_label;
1221 switch_ranges = &switch_cold_ranges;
1224 if (fde->ignored_debug)
1226 if (*switch_ranges && !(vec_safe_length (*switch_ranges) & 1))
1227 vec_safe_push (*switch_ranges, *last_end_label);
1229 else
1231 *last_end_label = end_label;
1233 if (!*switch_ranges)
1234 vec_alloc (*switch_ranges, 16);
1235 else if (vec_safe_length (*switch_ranges) & 1)
1236 vec_safe_push (*switch_ranges, begin_label);
1240 /* Output a marker (i.e. a label) for the absolute end of the generated code
1241 for a function definition. This gets called *after* the epilogue code has
1242 been generated. */
1244 void
1245 dwarf2out_end_epilogue (unsigned int line ATTRIBUTE_UNUSED,
1246 const char *file ATTRIBUTE_UNUSED)
1248 dw_fde_ref fde;
1249 char label[MAX_ARTIFICIAL_LABEL_BYTES];
1251 last_var_location_insn = NULL;
1252 cached_next_real_insn = NULL;
1254 if (dwarf2out_do_cfi_asm ())
1255 fprintf (asm_out_file, "\t.cfi_endproc\n");
1257 /* Output a label to mark the endpoint of the code generated for this
1258 function. */
1259 ASM_GENERATE_INTERNAL_LABEL (label, FUNC_END_LABEL,
1260 current_function_funcdef_no);
1261 ASM_OUTPUT_LABEL (asm_out_file, label);
1262 fde = cfun->fde;
1263 gcc_assert (fde != NULL);
1264 if (fde->dw_fde_second_begin == NULL)
1265 fde->dw_fde_end = xstrdup (label);
1267 mark_ignored_debug_section (fde, fde->dw_fde_second_begin != NULL);
1270 void
1271 dwarf2out_frame_finish (void)
1273 /* Output call frame information. */
1274 if (targetm.debug_unwind_info () == UI_DWARF2)
1275 output_call_frame_info (0);
1277 /* Output another copy for the unwinder. */
1278 if (do_eh_frame)
1279 output_call_frame_info (1);
1282 static void var_location_switch_text_section (void);
1283 static void set_cur_line_info_table (section *);
1285 void
1286 dwarf2out_switch_text_section (void)
1288 char label[MAX_ARTIFICIAL_LABEL_BYTES];
1289 section *sect;
1290 dw_fde_ref fde = cfun->fde;
1292 gcc_assert (cfun && fde && fde->dw_fde_second_begin == NULL);
1294 ASM_GENERATE_INTERNAL_LABEL (label, FUNC_SECOND_SECT_LABEL,
1295 current_function_funcdef_no);
1297 fde->dw_fde_second_begin = ggc_strdup (label);
1298 if (!in_cold_section_p)
1300 fde->dw_fde_end = crtl->subsections.cold_section_end_label;
1301 fde->dw_fde_second_end = crtl->subsections.hot_section_end_label;
1303 else
1305 fde->dw_fde_end = crtl->subsections.hot_section_end_label;
1306 fde->dw_fde_second_end = crtl->subsections.cold_section_end_label;
1308 have_multiple_function_sections = true;
1310 if (dwarf2out_do_cfi_asm ())
1311 fprintf (asm_out_file, "\t.cfi_endproc\n");
1313 mark_ignored_debug_section (fde, false);
1315 /* Now do the real section switch. */
1316 sect = current_function_section ();
1317 switch_to_section (sect);
1319 fde->second_in_std_section
1320 = (sect == text_section
1321 || (cold_text_section && sect == cold_text_section));
1322 in_text_section_p = sect == text_section;
1324 if (dwarf2out_do_cfi_asm ())
1325 dwarf2out_do_cfi_startproc (true);
1327 var_location_switch_text_section ();
1329 if (cold_text_section != NULL)
1330 set_cur_line_info_table (sect);
1333 /* And now, the subset of the debugging information support code necessary
1334 for emitting location expressions. */
1336 /* Describe an entry into the .debug_addr section. */
1338 enum ate_kind {
1339 ate_kind_rtx,
1340 ate_kind_rtx_dtprel,
1341 ate_kind_label
1344 struct GTY((for_user)) addr_table_entry {
1345 enum ate_kind kind;
1346 unsigned int refcount;
1347 unsigned int index;
1348 union addr_table_entry_struct_union
1350 rtx GTY ((tag ("0"))) rtl;
1351 char * GTY ((tag ("1"))) label;
1353 GTY ((desc ("%1.kind"))) addr;
1356 typedef unsigned int var_loc_view;
1358 /* Location lists are ranges + location descriptions for that range,
1359 so you can track variables that are in different places over
1360 their entire life. */
1361 typedef struct GTY(()) dw_loc_list_struct {
1362 dw_loc_list_ref dw_loc_next;
1363 const char *begin; /* Label and addr_entry for start of range */
1364 addr_table_entry *begin_entry;
1365 const char *end; /* Label for end of range */
1366 addr_table_entry *end_entry;
1367 char *ll_symbol; /* Label for beginning of location list.
1368 Only on head of list. */
1369 char *vl_symbol; /* Label for beginning of view list. Ditto. */
1370 const char *section; /* Section this loclist is relative to */
1371 dw_loc_descr_ref expr;
1372 var_loc_view vbegin, vend;
1373 hashval_t hash;
1374 /* True if all addresses in this and subsequent lists are known to be
1375 resolved. */
1376 bool resolved_addr;
1377 /* True if this list has been replaced by dw_loc_next. */
1378 bool replaced;
1379 /* True if it has been emitted into .debug_loc* / .debug_loclists*
1380 section. */
1381 unsigned char emitted : 1;
1382 /* True if hash field is index rather than hash value. */
1383 unsigned char num_assigned : 1;
1384 /* True if .debug_loclists.dwo offset has been emitted for it already. */
1385 unsigned char offset_emitted : 1;
1386 /* True if note_variable_value_in_expr has been called on it. */
1387 unsigned char noted_variable_value : 1;
1388 /* True if the range should be emitted even if begin and end
1389 are the same. */
1390 bool force;
1391 } dw_loc_list_node;
1393 static dw_loc_descr_ref int_loc_descriptor (poly_int64);
1394 static dw_loc_descr_ref uint_loc_descriptor (unsigned HOST_WIDE_INT);
1396 /* Convert a DWARF stack opcode into its string name. */
1398 static const char *
1399 dwarf_stack_op_name (unsigned int op)
1401 const char *name = get_DW_OP_name (op);
1403 if (name != NULL)
1404 return name;
1406 return "OP_<unknown>";
1409 /* Return TRUE iff we're to output location view lists as a separate
1410 attribute next to the location lists, as an extension compatible
1411 with DWARF 2 and above. */
1413 static inline bool
1414 dwarf2out_locviews_in_attribute ()
1416 return debug_variable_location_views == 1;
1419 /* Return TRUE iff we're to output location view lists as part of the
1420 location lists, as proposed for standardization after DWARF 5. */
1422 static inline bool
1423 dwarf2out_locviews_in_loclist ()
1425 #ifndef DW_LLE_view_pair
1426 return false;
1427 #else
1428 return debug_variable_location_views == -1;
1429 #endif
1432 /* Return a pointer to a newly allocated location description. Location
1433 descriptions are simple expression terms that can be strung
1434 together to form more complicated location (address) descriptions. */
1436 static inline dw_loc_descr_ref
1437 new_loc_descr (enum dwarf_location_atom op, unsigned HOST_WIDE_INT oprnd1,
1438 unsigned HOST_WIDE_INT oprnd2)
1440 dw_loc_descr_ref descr = ggc_cleared_alloc<dw_loc_descr_node> ();
1442 descr->dw_loc_opc = op;
1443 descr->dw_loc_oprnd1.val_class = dw_val_class_unsigned_const;
1444 descr->dw_loc_oprnd1.val_entry = NULL;
1445 descr->dw_loc_oprnd1.v.val_unsigned = oprnd1;
1446 descr->dw_loc_oprnd2.val_class = dw_val_class_unsigned_const;
1447 descr->dw_loc_oprnd2.val_entry = NULL;
1448 descr->dw_loc_oprnd2.v.val_unsigned = oprnd2;
1450 return descr;
1453 /* Add a location description term to a location description expression. */
1455 static inline void
1456 add_loc_descr (dw_loc_descr_ref *list_head, dw_loc_descr_ref descr)
1458 dw_loc_descr_ref *d;
1460 /* Find the end of the chain. */
1461 for (d = list_head; (*d) != NULL; d = &(*d)->dw_loc_next)
1464 *d = descr;
1467 /* Compare two location operands for exact equality. */
1469 static bool
1470 dw_val_equal_p (dw_val_node *a, dw_val_node *b)
1472 if (a->val_class != b->val_class)
1473 return false;
1474 switch (a->val_class)
1476 case dw_val_class_none:
1477 return true;
1478 case dw_val_class_addr:
1479 return rtx_equal_p (a->v.val_addr, b->v.val_addr);
1481 case dw_val_class_offset:
1482 case dw_val_class_unsigned_const:
1483 case dw_val_class_const:
1484 case dw_val_class_unsigned_const_implicit:
1485 case dw_val_class_const_implicit:
1486 case dw_val_class_range_list:
1487 /* These are all HOST_WIDE_INT, signed or unsigned. */
1488 return a->v.val_unsigned == b->v.val_unsigned;
1490 case dw_val_class_loc:
1491 return a->v.val_loc == b->v.val_loc;
1492 case dw_val_class_loc_list:
1493 return a->v.val_loc_list == b->v.val_loc_list;
1494 case dw_val_class_view_list:
1495 return a->v.val_view_list == b->v.val_view_list;
1496 case dw_val_class_die_ref:
1497 return a->v.val_die_ref.die == b->v.val_die_ref.die;
1498 case dw_val_class_fde_ref:
1499 return a->v.val_fde_index == b->v.val_fde_index;
1500 case dw_val_class_symview:
1501 return strcmp (a->v.val_symbolic_view, b->v.val_symbolic_view) == 0;
1502 case dw_val_class_lbl_id:
1503 case dw_val_class_lineptr:
1504 case dw_val_class_macptr:
1505 case dw_val_class_loclistsptr:
1506 case dw_val_class_high_pc:
1507 return strcmp (a->v.val_lbl_id, b->v.val_lbl_id) == 0;
1508 case dw_val_class_str:
1509 return a->v.val_str == b->v.val_str;
1510 case dw_val_class_flag:
1511 return a->v.val_flag == b->v.val_flag;
1512 case dw_val_class_file:
1513 case dw_val_class_file_implicit:
1514 return a->v.val_file == b->v.val_file;
1515 case dw_val_class_decl_ref:
1516 return a->v.val_decl_ref == b->v.val_decl_ref;
1518 case dw_val_class_const_double:
1519 return (a->v.val_double.high == b->v.val_double.high
1520 && a->v.val_double.low == b->v.val_double.low);
1522 case dw_val_class_wide_int:
1523 return *a->v.val_wide == *b->v.val_wide;
1525 case dw_val_class_vec:
1527 size_t a_len = a->v.val_vec.elt_size * a->v.val_vec.length;
1528 size_t b_len = b->v.val_vec.elt_size * b->v.val_vec.length;
1530 return (a_len == b_len
1531 && !memcmp (a->v.val_vec.array, b->v.val_vec.array, a_len));
1534 case dw_val_class_data8:
1535 return memcmp (a->v.val_data8, b->v.val_data8, 8) == 0;
1537 case dw_val_class_vms_delta:
1538 return (!strcmp (a->v.val_vms_delta.lbl1, b->v.val_vms_delta.lbl1)
1539 && !strcmp (a->v.val_vms_delta.lbl2, b->v.val_vms_delta.lbl2));
1541 case dw_val_class_discr_value:
1542 return (a->v.val_discr_value.pos == b->v.val_discr_value.pos
1543 && a->v.val_discr_value.v.uval == b->v.val_discr_value.v.uval);
1544 case dw_val_class_discr_list:
1545 /* It makes no sense comparing two discriminant value lists. */
1546 return false;
1548 gcc_unreachable ();
1551 /* Compare two location atoms for exact equality. */
1553 static bool
1554 loc_descr_equal_p_1 (dw_loc_descr_ref a, dw_loc_descr_ref b)
1556 if (a->dw_loc_opc != b->dw_loc_opc)
1557 return false;
1559 /* ??? This is only ever set for DW_OP_constNu, for N equal to the
1560 address size, but since we always allocate cleared storage it
1561 should be zero for other types of locations. */
1562 if (a->dtprel != b->dtprel)
1563 return false;
1565 return (dw_val_equal_p (&a->dw_loc_oprnd1, &b->dw_loc_oprnd1)
1566 && dw_val_equal_p (&a->dw_loc_oprnd2, &b->dw_loc_oprnd2));
1569 /* Compare two complete location expressions for exact equality. */
1571 bool
1572 loc_descr_equal_p (dw_loc_descr_ref a, dw_loc_descr_ref b)
1574 while (1)
1576 if (a == b)
1577 return true;
1578 if (a == NULL || b == NULL)
1579 return false;
1580 if (!loc_descr_equal_p_1 (a, b))
1581 return false;
1583 a = a->dw_loc_next;
1584 b = b->dw_loc_next;
1589 /* Add a constant POLY_OFFSET to a location expression. */
1591 static void
1592 loc_descr_plus_const (dw_loc_descr_ref *list_head, poly_int64 poly_offset)
1594 dw_loc_descr_ref loc;
1595 HOST_WIDE_INT *p;
1597 gcc_assert (*list_head != NULL);
1599 if (known_eq (poly_offset, 0))
1600 return;
1602 /* Find the end of the chain. */
1603 for (loc = *list_head; loc->dw_loc_next != NULL; loc = loc->dw_loc_next)
1606 HOST_WIDE_INT offset;
1607 if (!poly_offset.is_constant (&offset))
1609 loc->dw_loc_next = int_loc_descriptor (poly_offset);
1610 add_loc_descr (&loc->dw_loc_next, new_loc_descr (DW_OP_plus, 0, 0));
1611 return;
1614 p = NULL;
1615 if (loc->dw_loc_opc == DW_OP_fbreg
1616 || (loc->dw_loc_opc >= DW_OP_breg0 && loc->dw_loc_opc <= DW_OP_breg31))
1617 p = &loc->dw_loc_oprnd1.v.val_int;
1618 else if (loc->dw_loc_opc == DW_OP_bregx)
1619 p = &loc->dw_loc_oprnd2.v.val_int;
1621 /* If the last operation is fbreg, breg{0..31,x}, optimize by adjusting its
1622 offset. Don't optimize if an signed integer overflow would happen. */
1623 if (p != NULL
1624 && ((offset > 0 && *p <= INTTYPE_MAXIMUM (HOST_WIDE_INT) - offset)
1625 || (offset < 0 && *p >= INTTYPE_MINIMUM (HOST_WIDE_INT) - offset)))
1626 *p += offset;
1628 else if (offset > 0)
1629 loc->dw_loc_next = new_loc_descr (DW_OP_plus_uconst, offset, 0);
1631 else
1633 loc->dw_loc_next
1634 = uint_loc_descriptor (-(unsigned HOST_WIDE_INT) offset);
1635 add_loc_descr (&loc->dw_loc_next, new_loc_descr (DW_OP_minus, 0, 0));
1639 /* Return a pointer to a newly allocated location description for
1640 REG and OFFSET. */
1642 static inline dw_loc_descr_ref
1643 new_reg_loc_descr (unsigned int reg, poly_int64 offset)
1645 HOST_WIDE_INT const_offset;
1646 if (offset.is_constant (&const_offset))
1648 if (reg <= 31)
1649 return new_loc_descr ((enum dwarf_location_atom) (DW_OP_breg0 + reg),
1650 const_offset, 0);
1651 else
1652 return new_loc_descr (DW_OP_bregx, reg, const_offset);
1654 else
1656 dw_loc_descr_ref ret = new_reg_loc_descr (reg, 0);
1657 loc_descr_plus_const (&ret, offset);
1658 return ret;
1662 /* Add a constant OFFSET to a location list. */
1664 static void
1665 loc_list_plus_const (dw_loc_list_ref list_head, poly_int64 offset)
1667 dw_loc_list_ref d;
1668 for (d = list_head; d != NULL; d = d->dw_loc_next)
1669 loc_descr_plus_const (&d->expr, offset);
1672 #define DWARF_REF_SIZE \
1673 (dwarf_version == 2 ? DWARF2_ADDR_SIZE : dwarf_offset_size)
1675 /* The number of bits that can be encoded by largest DW_FORM_dataN.
1676 In DWARF4 and earlier it is DW_FORM_data8 with 64 bits, in DWARF5
1677 DW_FORM_data16 with 128 bits. */
1678 #define DWARF_LARGEST_DATA_FORM_BITS \
1679 (dwarf_version >= 5 ? 128 : 64)
1681 /* Utility inline function for construction of ops that were GNU extension
1682 before DWARF 5. */
1683 static inline enum dwarf_location_atom
1684 dwarf_OP (enum dwarf_location_atom op)
1686 switch (op)
1688 case DW_OP_implicit_pointer:
1689 if (dwarf_version < 5)
1690 return DW_OP_GNU_implicit_pointer;
1691 break;
1693 case DW_OP_entry_value:
1694 if (dwarf_version < 5)
1695 return DW_OP_GNU_entry_value;
1696 break;
1698 case DW_OP_const_type:
1699 if (dwarf_version < 5)
1700 return DW_OP_GNU_const_type;
1701 break;
1703 case DW_OP_regval_type:
1704 if (dwarf_version < 5)
1705 return DW_OP_GNU_regval_type;
1706 break;
1708 case DW_OP_deref_type:
1709 if (dwarf_version < 5)
1710 return DW_OP_GNU_deref_type;
1711 break;
1713 case DW_OP_convert:
1714 if (dwarf_version < 5)
1715 return DW_OP_GNU_convert;
1716 break;
1718 case DW_OP_reinterpret:
1719 if (dwarf_version < 5)
1720 return DW_OP_GNU_reinterpret;
1721 break;
1723 case DW_OP_addrx:
1724 if (dwarf_version < 5)
1725 return DW_OP_GNU_addr_index;
1726 break;
1728 case DW_OP_constx:
1729 if (dwarf_version < 5)
1730 return DW_OP_GNU_const_index;
1731 break;
1733 default:
1734 break;
1736 return op;
1739 /* Similarly for attributes. */
1740 static inline enum dwarf_attribute
1741 dwarf_AT (enum dwarf_attribute at)
1743 switch (at)
1745 case DW_AT_call_return_pc:
1746 if (dwarf_version < 5)
1747 return DW_AT_low_pc;
1748 break;
1750 case DW_AT_call_tail_call:
1751 if (dwarf_version < 5)
1752 return DW_AT_GNU_tail_call;
1753 break;
1755 case DW_AT_call_origin:
1756 if (dwarf_version < 5)
1757 return DW_AT_abstract_origin;
1758 break;
1760 case DW_AT_call_target:
1761 if (dwarf_version < 5)
1762 return DW_AT_GNU_call_site_target;
1763 break;
1765 case DW_AT_call_target_clobbered:
1766 if (dwarf_version < 5)
1767 return DW_AT_GNU_call_site_target_clobbered;
1768 break;
1770 case DW_AT_call_parameter:
1771 if (dwarf_version < 5)
1772 return DW_AT_abstract_origin;
1773 break;
1775 case DW_AT_call_value:
1776 if (dwarf_version < 5)
1777 return DW_AT_GNU_call_site_value;
1778 break;
1780 case DW_AT_call_data_value:
1781 if (dwarf_version < 5)
1782 return DW_AT_GNU_call_site_data_value;
1783 break;
1785 case DW_AT_call_all_calls:
1786 if (dwarf_version < 5)
1787 return DW_AT_GNU_all_call_sites;
1788 break;
1790 case DW_AT_call_all_tail_calls:
1791 if (dwarf_version < 5)
1792 return DW_AT_GNU_all_tail_call_sites;
1793 break;
1795 case DW_AT_dwo_name:
1796 if (dwarf_version < 5)
1797 return DW_AT_GNU_dwo_name;
1798 break;
1800 case DW_AT_addr_base:
1801 if (dwarf_version < 5)
1802 return DW_AT_GNU_addr_base;
1803 break;
1805 default:
1806 break;
1808 return at;
1811 /* And similarly for tags. */
1812 static inline enum dwarf_tag
1813 dwarf_TAG (enum dwarf_tag tag)
1815 switch (tag)
1817 case DW_TAG_call_site:
1818 if (dwarf_version < 5)
1819 return DW_TAG_GNU_call_site;
1820 break;
1822 case DW_TAG_call_site_parameter:
1823 if (dwarf_version < 5)
1824 return DW_TAG_GNU_call_site_parameter;
1825 break;
1827 default:
1828 break;
1830 return tag;
1833 /* And similarly for forms. */
1834 static inline enum dwarf_form
1835 dwarf_FORM (enum dwarf_form form)
1837 switch (form)
1839 case DW_FORM_addrx:
1840 if (dwarf_version < 5)
1841 return DW_FORM_GNU_addr_index;
1842 break;
1844 case DW_FORM_strx:
1845 if (dwarf_version < 5)
1846 return DW_FORM_GNU_str_index;
1847 break;
1849 default:
1850 break;
1852 return form;
1855 static unsigned long int get_base_type_offset (dw_die_ref);
1857 /* Return the size of a location descriptor. */
1859 static unsigned long
1860 size_of_loc_descr (dw_loc_descr_ref loc)
1862 unsigned long size = 1;
1864 switch (loc->dw_loc_opc)
1866 case DW_OP_addr:
1867 size += DWARF2_ADDR_SIZE;
1868 break;
1869 case DW_OP_GNU_addr_index:
1870 case DW_OP_addrx:
1871 case DW_OP_GNU_const_index:
1872 case DW_OP_constx:
1873 gcc_assert (loc->dw_loc_oprnd1.val_entry->index != NO_INDEX_ASSIGNED);
1874 size += size_of_uleb128 (loc->dw_loc_oprnd1.val_entry->index);
1875 break;
1876 case DW_OP_const1u:
1877 case DW_OP_const1s:
1878 size += 1;
1879 break;
1880 case DW_OP_const2u:
1881 case DW_OP_const2s:
1882 size += 2;
1883 break;
1884 case DW_OP_const4u:
1885 case DW_OP_const4s:
1886 size += 4;
1887 break;
1888 case DW_OP_const8u:
1889 case DW_OP_const8s:
1890 size += 8;
1891 break;
1892 case DW_OP_constu:
1893 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
1894 break;
1895 case DW_OP_consts:
1896 size += size_of_sleb128 (loc->dw_loc_oprnd1.v.val_int);
1897 break;
1898 case DW_OP_pick:
1899 size += 1;
1900 break;
1901 case DW_OP_plus_uconst:
1902 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
1903 break;
1904 case DW_OP_skip:
1905 case DW_OP_bra:
1906 size += 2;
1907 break;
1908 case DW_OP_breg0:
1909 case DW_OP_breg1:
1910 case DW_OP_breg2:
1911 case DW_OP_breg3:
1912 case DW_OP_breg4:
1913 case DW_OP_breg5:
1914 case DW_OP_breg6:
1915 case DW_OP_breg7:
1916 case DW_OP_breg8:
1917 case DW_OP_breg9:
1918 case DW_OP_breg10:
1919 case DW_OP_breg11:
1920 case DW_OP_breg12:
1921 case DW_OP_breg13:
1922 case DW_OP_breg14:
1923 case DW_OP_breg15:
1924 case DW_OP_breg16:
1925 case DW_OP_breg17:
1926 case DW_OP_breg18:
1927 case DW_OP_breg19:
1928 case DW_OP_breg20:
1929 case DW_OP_breg21:
1930 case DW_OP_breg22:
1931 case DW_OP_breg23:
1932 case DW_OP_breg24:
1933 case DW_OP_breg25:
1934 case DW_OP_breg26:
1935 case DW_OP_breg27:
1936 case DW_OP_breg28:
1937 case DW_OP_breg29:
1938 case DW_OP_breg30:
1939 case DW_OP_breg31:
1940 size += size_of_sleb128 (loc->dw_loc_oprnd1.v.val_int);
1941 break;
1942 case DW_OP_regx:
1943 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
1944 break;
1945 case DW_OP_fbreg:
1946 size += size_of_sleb128 (loc->dw_loc_oprnd1.v.val_int);
1947 break;
1948 case DW_OP_bregx:
1949 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
1950 size += size_of_sleb128 (loc->dw_loc_oprnd2.v.val_int);
1951 break;
1952 case DW_OP_piece:
1953 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
1954 break;
1955 case DW_OP_bit_piece:
1956 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
1957 size += size_of_uleb128 (loc->dw_loc_oprnd2.v.val_unsigned);
1958 break;
1959 case DW_OP_deref_size:
1960 case DW_OP_xderef_size:
1961 size += 1;
1962 break;
1963 case DW_OP_call2:
1964 size += 2;
1965 break;
1966 case DW_OP_call4:
1967 size += 4;
1968 break;
1969 case DW_OP_call_ref:
1970 case DW_OP_GNU_variable_value:
1971 size += DWARF_REF_SIZE;
1972 break;
1973 case DW_OP_implicit_value:
1974 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned)
1975 + loc->dw_loc_oprnd1.v.val_unsigned;
1976 break;
1977 case DW_OP_implicit_pointer:
1978 case DW_OP_GNU_implicit_pointer:
1979 size += DWARF_REF_SIZE + size_of_sleb128 (loc->dw_loc_oprnd2.v.val_int);
1980 break;
1981 case DW_OP_entry_value:
1982 case DW_OP_GNU_entry_value:
1984 unsigned long op_size = size_of_locs (loc->dw_loc_oprnd1.v.val_loc);
1985 size += size_of_uleb128 (op_size) + op_size;
1986 break;
1988 case DW_OP_const_type:
1989 case DW_OP_GNU_const_type:
1991 unsigned long o
1992 = get_base_type_offset (loc->dw_loc_oprnd1.v.val_die_ref.die);
1993 size += size_of_uleb128 (o) + 1;
1994 switch (loc->dw_loc_oprnd2.val_class)
1996 case dw_val_class_vec:
1997 size += loc->dw_loc_oprnd2.v.val_vec.length
1998 * loc->dw_loc_oprnd2.v.val_vec.elt_size;
1999 break;
2000 case dw_val_class_const:
2001 size += HOST_BITS_PER_WIDE_INT / BITS_PER_UNIT;
2002 break;
2003 case dw_val_class_const_double:
2004 size += HOST_BITS_PER_DOUBLE_INT / BITS_PER_UNIT;
2005 break;
2006 case dw_val_class_wide_int:
2007 size += (get_full_len (*loc->dw_loc_oprnd2.v.val_wide)
2008 * HOST_BITS_PER_WIDE_INT / BITS_PER_UNIT);
2009 break;
2010 default:
2011 gcc_unreachable ();
2013 break;
2015 case DW_OP_regval_type:
2016 case DW_OP_GNU_regval_type:
2018 unsigned long o
2019 = get_base_type_offset (loc->dw_loc_oprnd2.v.val_die_ref.die);
2020 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned)
2021 + size_of_uleb128 (o);
2023 break;
2024 case DW_OP_deref_type:
2025 case DW_OP_GNU_deref_type:
2027 unsigned long o
2028 = get_base_type_offset (loc->dw_loc_oprnd2.v.val_die_ref.die);
2029 size += 1 + size_of_uleb128 (o);
2031 break;
2032 case DW_OP_convert:
2033 case DW_OP_reinterpret:
2034 case DW_OP_GNU_convert:
2035 case DW_OP_GNU_reinterpret:
2036 if (loc->dw_loc_oprnd1.val_class == dw_val_class_unsigned_const)
2037 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
2038 else
2040 unsigned long o
2041 = get_base_type_offset (loc->dw_loc_oprnd1.v.val_die_ref.die);
2042 size += size_of_uleb128 (o);
2044 break;
2045 case DW_OP_GNU_parameter_ref:
2046 size += 4;
2047 break;
2048 default:
2049 break;
2052 return size;
2055 /* Return the size of a series of location descriptors. */
2057 unsigned long
2058 size_of_locs (dw_loc_descr_ref loc)
2060 dw_loc_descr_ref l;
2061 unsigned long size;
2063 /* If there are no skip or bra opcodes, don't fill in the dw_loc_addr
2064 field, to avoid writing to a PCH file. */
2065 for (size = 0, l = loc; l != NULL; l = l->dw_loc_next)
2067 if (l->dw_loc_opc == DW_OP_skip || l->dw_loc_opc == DW_OP_bra)
2068 break;
2069 size += size_of_loc_descr (l);
2071 if (! l)
2072 return size;
2074 for (size = 0, l = loc; l != NULL; l = l->dw_loc_next)
2076 l->dw_loc_addr = size;
2077 size += size_of_loc_descr (l);
2080 return size;
2083 /* Return the size of the value in a DW_AT_discr_value attribute. */
2085 static int
2086 size_of_discr_value (dw_discr_value *discr_value)
2088 if (discr_value->pos)
2089 return size_of_uleb128 (discr_value->v.uval);
2090 else
2091 return size_of_sleb128 (discr_value->v.sval);
2094 /* Return the size of the value in a DW_AT_discr_list attribute. */
2096 static int
2097 size_of_discr_list (dw_discr_list_ref discr_list)
2099 int size = 0;
2101 for (dw_discr_list_ref list = discr_list;
2102 list != NULL;
2103 list = list->dw_discr_next)
2105 /* One byte for the discriminant value descriptor, and then one or two
2106 LEB128 numbers, depending on whether it's a single case label or a
2107 range label. */
2108 size += 1;
2109 size += size_of_discr_value (&list->dw_discr_lower_bound);
2110 if (list->dw_discr_range != 0)
2111 size += size_of_discr_value (&list->dw_discr_upper_bound);
2113 return size;
2116 static HOST_WIDE_INT extract_int (const unsigned char *, unsigned);
2117 static void get_ref_die_offset_label (char *, dw_die_ref);
2118 static unsigned long int get_ref_die_offset (dw_die_ref);
2120 /* Output location description stack opcode's operands (if any).
2121 The for_eh_or_skip parameter controls whether register numbers are
2122 converted using DWARF2_FRAME_REG_OUT, which is needed in the case that
2123 hard reg numbers have been processed via DWARF_FRAME_REGNUM (i.e. for unwind
2124 info). This should be suppressed for the cases that have not been converted
2125 (i.e. symbolic debug info), by setting the parameter < 0. See PR47324. */
2127 static void
2128 output_loc_operands (dw_loc_descr_ref loc, int for_eh_or_skip)
2130 dw_val_ref val1 = &loc->dw_loc_oprnd1;
2131 dw_val_ref val2 = &loc->dw_loc_oprnd2;
2133 switch (loc->dw_loc_opc)
2135 #ifdef DWARF2_DEBUGGING_INFO
2136 case DW_OP_const2u:
2137 case DW_OP_const2s:
2138 dw2_asm_output_data (2, val1->v.val_int, NULL);
2139 break;
2140 case DW_OP_const4u:
2141 if (loc->dtprel)
2143 gcc_assert (targetm.asm_out.output_dwarf_dtprel);
2144 targetm.asm_out.output_dwarf_dtprel (asm_out_file, 4,
2145 val1->v.val_addr);
2146 fputc ('\n', asm_out_file);
2147 break;
2149 /* FALLTHRU */
2150 case DW_OP_const4s:
2151 dw2_asm_output_data (4, val1->v.val_int, NULL);
2152 break;
2153 case DW_OP_const8u:
2154 if (loc->dtprel)
2156 gcc_assert (targetm.asm_out.output_dwarf_dtprel);
2157 targetm.asm_out.output_dwarf_dtprel (asm_out_file, 8,
2158 val1->v.val_addr);
2159 fputc ('\n', asm_out_file);
2160 break;
2162 /* FALLTHRU */
2163 case DW_OP_const8s:
2164 gcc_assert (HOST_BITS_PER_WIDE_INT >= 64);
2165 dw2_asm_output_data (8, val1->v.val_int, NULL);
2166 break;
2167 case DW_OP_skip:
2168 case DW_OP_bra:
2170 int offset;
2172 gcc_assert (val1->val_class == dw_val_class_loc);
2173 offset = val1->v.val_loc->dw_loc_addr - (loc->dw_loc_addr + 3);
2175 dw2_asm_output_data (2, offset, NULL);
2177 break;
2178 case DW_OP_implicit_value:
2179 dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
2180 switch (val2->val_class)
2182 case dw_val_class_const:
2183 dw2_asm_output_data (val1->v.val_unsigned, val2->v.val_int, NULL);
2184 break;
2185 case dw_val_class_vec:
2187 unsigned int elt_size = val2->v.val_vec.elt_size;
2188 unsigned int len = val2->v.val_vec.length;
2189 unsigned int i;
2190 unsigned char *p;
2192 if (elt_size > sizeof (HOST_WIDE_INT))
2194 elt_size /= 2;
2195 len *= 2;
2197 for (i = 0, p = (unsigned char *) val2->v.val_vec.array;
2198 i < len;
2199 i++, p += elt_size)
2200 dw2_asm_output_data (elt_size, extract_int (p, elt_size),
2201 "fp or vector constant word %u", i);
2203 break;
2204 case dw_val_class_const_double:
2206 unsigned HOST_WIDE_INT first, second;
2208 if (WORDS_BIG_ENDIAN)
2210 first = val2->v.val_double.high;
2211 second = val2->v.val_double.low;
2213 else
2215 first = val2->v.val_double.low;
2216 second = val2->v.val_double.high;
2218 dw2_asm_output_data (HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR,
2219 first, NULL);
2220 dw2_asm_output_data (HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR,
2221 second, NULL);
2223 break;
2224 case dw_val_class_wide_int:
2226 int i;
2227 int len = get_full_len (*val2->v.val_wide);
2228 if (WORDS_BIG_ENDIAN)
2229 for (i = len - 1; i >= 0; --i)
2230 dw2_asm_output_data (HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR,
2231 val2->v.val_wide->elt (i), NULL);
2232 else
2233 for (i = 0; i < len; ++i)
2234 dw2_asm_output_data (HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR,
2235 val2->v.val_wide->elt (i), NULL);
2237 break;
2238 case dw_val_class_addr:
2239 gcc_assert (val1->v.val_unsigned == DWARF2_ADDR_SIZE);
2240 dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE, val2->v.val_addr, NULL);
2241 break;
2242 default:
2243 gcc_unreachable ();
2245 break;
2246 #else
2247 case DW_OP_const2u:
2248 case DW_OP_const2s:
2249 case DW_OP_const4u:
2250 case DW_OP_const4s:
2251 case DW_OP_const8u:
2252 case DW_OP_const8s:
2253 case DW_OP_skip:
2254 case DW_OP_bra:
2255 case DW_OP_implicit_value:
2256 /* We currently don't make any attempt to make sure these are
2257 aligned properly like we do for the main unwind info, so
2258 don't support emitting things larger than a byte if we're
2259 only doing unwinding. */
2260 gcc_unreachable ();
2261 #endif
2262 case DW_OP_const1u:
2263 case DW_OP_const1s:
2264 dw2_asm_output_data (1, val1->v.val_int, NULL);
2265 break;
2266 case DW_OP_constu:
2267 dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
2268 break;
2269 case DW_OP_consts:
2270 dw2_asm_output_data_sleb128 (val1->v.val_int, NULL);
2271 break;
2272 case DW_OP_pick:
2273 dw2_asm_output_data (1, val1->v.val_int, NULL);
2274 break;
2275 case DW_OP_plus_uconst:
2276 dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
2277 break;
2278 case DW_OP_breg0:
2279 case DW_OP_breg1:
2280 case DW_OP_breg2:
2281 case DW_OP_breg3:
2282 case DW_OP_breg4:
2283 case DW_OP_breg5:
2284 case DW_OP_breg6:
2285 case DW_OP_breg7:
2286 case DW_OP_breg8:
2287 case DW_OP_breg9:
2288 case DW_OP_breg10:
2289 case DW_OP_breg11:
2290 case DW_OP_breg12:
2291 case DW_OP_breg13:
2292 case DW_OP_breg14:
2293 case DW_OP_breg15:
2294 case DW_OP_breg16:
2295 case DW_OP_breg17:
2296 case DW_OP_breg18:
2297 case DW_OP_breg19:
2298 case DW_OP_breg20:
2299 case DW_OP_breg21:
2300 case DW_OP_breg22:
2301 case DW_OP_breg23:
2302 case DW_OP_breg24:
2303 case DW_OP_breg25:
2304 case DW_OP_breg26:
2305 case DW_OP_breg27:
2306 case DW_OP_breg28:
2307 case DW_OP_breg29:
2308 case DW_OP_breg30:
2309 case DW_OP_breg31:
2310 dw2_asm_output_data_sleb128 (val1->v.val_int, NULL);
2311 break;
2312 case DW_OP_regx:
2314 unsigned r = val1->v.val_unsigned;
2315 if (for_eh_or_skip >= 0)
2316 r = DWARF2_FRAME_REG_OUT (r, for_eh_or_skip);
2317 gcc_assert (size_of_uleb128 (r)
2318 == size_of_uleb128 (val1->v.val_unsigned));
2319 dw2_asm_output_data_uleb128 (r, NULL);
2321 break;
2322 case DW_OP_fbreg:
2323 dw2_asm_output_data_sleb128 (val1->v.val_int, NULL);
2324 break;
2325 case DW_OP_bregx:
2327 unsigned r = val1->v.val_unsigned;
2328 if (for_eh_or_skip >= 0)
2329 r = DWARF2_FRAME_REG_OUT (r, for_eh_or_skip);
2330 gcc_assert (size_of_uleb128 (r)
2331 == size_of_uleb128 (val1->v.val_unsigned));
2332 dw2_asm_output_data_uleb128 (r, NULL);
2333 dw2_asm_output_data_sleb128 (val2->v.val_int, NULL);
2335 break;
2336 case DW_OP_piece:
2337 dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
2338 break;
2339 case DW_OP_bit_piece:
2340 dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
2341 dw2_asm_output_data_uleb128 (val2->v.val_unsigned, NULL);
2342 break;
2343 case DW_OP_deref_size:
2344 case DW_OP_xderef_size:
2345 dw2_asm_output_data (1, val1->v.val_int, NULL);
2346 break;
2348 case DW_OP_addr:
2349 if (loc->dtprel)
2351 if (targetm.asm_out.output_dwarf_dtprel)
2353 targetm.asm_out.output_dwarf_dtprel (asm_out_file,
2354 DWARF2_ADDR_SIZE,
2355 val1->v.val_addr);
2356 fputc ('\n', asm_out_file);
2358 else
2359 gcc_unreachable ();
2361 else
2363 #ifdef DWARF2_DEBUGGING_INFO
2364 dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE, val1->v.val_addr, NULL);
2365 #else
2366 gcc_unreachable ();
2367 #endif
2369 break;
2371 case DW_OP_GNU_addr_index:
2372 case DW_OP_addrx:
2373 case DW_OP_GNU_const_index:
2374 case DW_OP_constx:
2375 gcc_assert (loc->dw_loc_oprnd1.val_entry->index != NO_INDEX_ASSIGNED);
2376 dw2_asm_output_data_uleb128 (loc->dw_loc_oprnd1.val_entry->index,
2377 "(index into .debug_addr)");
2378 break;
2380 case DW_OP_call2:
2381 case DW_OP_call4:
2383 unsigned long die_offset
2384 = get_ref_die_offset (val1->v.val_die_ref.die);
2385 /* Make sure the offset has been computed and that we can encode it as
2386 an operand. */
2387 gcc_assert (die_offset > 0
2388 && die_offset <= (loc->dw_loc_opc == DW_OP_call2
2389 ? 0xffff
2390 : 0xffffffff));
2391 dw2_asm_output_data ((loc->dw_loc_opc == DW_OP_call2) ? 2 : 4,
2392 die_offset, NULL);
2394 break;
2396 case DW_OP_call_ref:
2397 case DW_OP_GNU_variable_value:
2399 char label[MAX_ARTIFICIAL_LABEL_BYTES
2400 + HOST_BITS_PER_WIDE_INT / 2 + 2];
2401 gcc_assert (val1->val_class == dw_val_class_die_ref);
2402 get_ref_die_offset_label (label, val1->v.val_die_ref.die);
2403 dw2_asm_output_offset (DWARF_REF_SIZE, label, debug_info_section, NULL);
2405 break;
2407 case DW_OP_implicit_pointer:
2408 case DW_OP_GNU_implicit_pointer:
2410 char label[MAX_ARTIFICIAL_LABEL_BYTES
2411 + HOST_BITS_PER_WIDE_INT / 2 + 2];
2412 gcc_assert (val1->val_class == dw_val_class_die_ref);
2413 get_ref_die_offset_label (label, val1->v.val_die_ref.die);
2414 dw2_asm_output_offset (DWARF_REF_SIZE, label, debug_info_section, NULL);
2415 dw2_asm_output_data_sleb128 (val2->v.val_int, NULL);
2417 break;
2419 case DW_OP_entry_value:
2420 case DW_OP_GNU_entry_value:
2421 dw2_asm_output_data_uleb128 (size_of_locs (val1->v.val_loc), NULL);
2422 output_loc_sequence (val1->v.val_loc, for_eh_or_skip);
2423 break;
2425 case DW_OP_const_type:
2426 case DW_OP_GNU_const_type:
2428 unsigned long o = get_base_type_offset (val1->v.val_die_ref.die), l;
2429 gcc_assert (o);
2430 dw2_asm_output_data_uleb128 (o, NULL);
2431 switch (val2->val_class)
2433 case dw_val_class_const:
2434 l = HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR;
2435 dw2_asm_output_data (1, l, NULL);
2436 dw2_asm_output_data (l, val2->v.val_int, NULL);
2437 break;
2438 case dw_val_class_vec:
2440 unsigned int elt_size = val2->v.val_vec.elt_size;
2441 unsigned int len = val2->v.val_vec.length;
2442 unsigned int i;
2443 unsigned char *p;
2445 l = len * elt_size;
2446 dw2_asm_output_data (1, l, NULL);
2447 if (elt_size > sizeof (HOST_WIDE_INT))
2449 elt_size /= 2;
2450 len *= 2;
2452 for (i = 0, p = (unsigned char *) val2->v.val_vec.array;
2453 i < len;
2454 i++, p += elt_size)
2455 dw2_asm_output_data (elt_size, extract_int (p, elt_size),
2456 "fp or vector constant word %u", i);
2458 break;
2459 case dw_val_class_const_double:
2461 unsigned HOST_WIDE_INT first, second;
2462 l = HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR;
2464 dw2_asm_output_data (1, 2 * l, NULL);
2465 if (WORDS_BIG_ENDIAN)
2467 first = val2->v.val_double.high;
2468 second = val2->v.val_double.low;
2470 else
2472 first = val2->v.val_double.low;
2473 second = val2->v.val_double.high;
2475 dw2_asm_output_data (l, first, NULL);
2476 dw2_asm_output_data (l, second, NULL);
2478 break;
2479 case dw_val_class_wide_int:
2481 int i;
2482 int len = get_full_len (*val2->v.val_wide);
2483 l = HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR;
2485 dw2_asm_output_data (1, len * l, NULL);
2486 if (WORDS_BIG_ENDIAN)
2487 for (i = len - 1; i >= 0; --i)
2488 dw2_asm_output_data (l, val2->v.val_wide->elt (i), NULL);
2489 else
2490 for (i = 0; i < len; ++i)
2491 dw2_asm_output_data (l, val2->v.val_wide->elt (i), NULL);
2493 break;
2494 default:
2495 gcc_unreachable ();
2498 break;
2499 case DW_OP_regval_type:
2500 case DW_OP_GNU_regval_type:
2502 unsigned r = val1->v.val_unsigned;
2503 unsigned long o = get_base_type_offset (val2->v.val_die_ref.die);
2504 gcc_assert (o);
2505 if (for_eh_or_skip >= 0)
2507 r = DWARF2_FRAME_REG_OUT (r, for_eh_or_skip);
2508 gcc_assert (size_of_uleb128 (r)
2509 == size_of_uleb128 (val1->v.val_unsigned));
2511 dw2_asm_output_data_uleb128 (r, NULL);
2512 dw2_asm_output_data_uleb128 (o, NULL);
2514 break;
2515 case DW_OP_deref_type:
2516 case DW_OP_GNU_deref_type:
2518 unsigned long o = get_base_type_offset (val2->v.val_die_ref.die);
2519 gcc_assert (o);
2520 dw2_asm_output_data (1, val1->v.val_int, NULL);
2521 dw2_asm_output_data_uleb128 (o, NULL);
2523 break;
2524 case DW_OP_convert:
2525 case DW_OP_reinterpret:
2526 case DW_OP_GNU_convert:
2527 case DW_OP_GNU_reinterpret:
2528 if (loc->dw_loc_oprnd1.val_class == dw_val_class_unsigned_const)
2529 dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
2530 else
2532 unsigned long o = get_base_type_offset (val1->v.val_die_ref.die);
2533 gcc_assert (o);
2534 dw2_asm_output_data_uleb128 (o, NULL);
2536 break;
2538 case DW_OP_GNU_parameter_ref:
2540 unsigned long o;
2541 gcc_assert (val1->val_class == dw_val_class_die_ref);
2542 o = get_ref_die_offset (val1->v.val_die_ref.die);
2543 dw2_asm_output_data (4, o, NULL);
2545 break;
2547 default:
2548 /* Other codes have no operands. */
2549 break;
2553 /* Output a sequence of location operations.
2554 The for_eh_or_skip parameter controls whether register numbers are
2555 converted using DWARF2_FRAME_REG_OUT, which is needed in the case that
2556 hard reg numbers have been processed via DWARF_FRAME_REGNUM (i.e. for unwind
2557 info). This should be suppressed for the cases that have not been converted
2558 (i.e. symbolic debug info), by setting the parameter < 0. See PR47324. */
2560 void
2561 output_loc_sequence (dw_loc_descr_ref loc, int for_eh_or_skip)
2563 for (; loc != NULL; loc = loc->dw_loc_next)
2565 enum dwarf_location_atom opc = loc->dw_loc_opc;
2566 /* Output the opcode. */
2567 if (for_eh_or_skip >= 0
2568 && opc >= DW_OP_breg0 && opc <= DW_OP_breg31)
2570 unsigned r = (opc - DW_OP_breg0);
2571 r = DWARF2_FRAME_REG_OUT (r, for_eh_or_skip);
2572 gcc_assert (r <= 31);
2573 opc = (enum dwarf_location_atom) (DW_OP_breg0 + r);
2575 else if (for_eh_or_skip >= 0
2576 && opc >= DW_OP_reg0 && opc <= DW_OP_reg31)
2578 unsigned r = (opc - DW_OP_reg0);
2579 r = DWARF2_FRAME_REG_OUT (r, for_eh_or_skip);
2580 gcc_assert (r <= 31);
2581 opc = (enum dwarf_location_atom) (DW_OP_reg0 + r);
2584 dw2_asm_output_data (1, opc,
2585 "%s", dwarf_stack_op_name (opc));
2587 /* Output the operand(s) (if any). */
2588 output_loc_operands (loc, for_eh_or_skip);
2592 /* Output location description stack opcode's operands (if any).
2593 The output is single bytes on a line, suitable for .cfi_escape. */
2595 static void
2596 output_loc_operands_raw (dw_loc_descr_ref loc)
2598 dw_val_ref val1 = &loc->dw_loc_oprnd1;
2599 dw_val_ref val2 = &loc->dw_loc_oprnd2;
2601 switch (loc->dw_loc_opc)
2603 case DW_OP_addr:
2604 case DW_OP_GNU_addr_index:
2605 case DW_OP_addrx:
2606 case DW_OP_GNU_const_index:
2607 case DW_OP_constx:
2608 case DW_OP_implicit_value:
2609 /* We cannot output addresses in .cfi_escape, only bytes. */
2610 gcc_unreachable ();
2612 case DW_OP_const1u:
2613 case DW_OP_const1s:
2614 case DW_OP_pick:
2615 case DW_OP_deref_size:
2616 case DW_OP_xderef_size:
2617 fputc (',', asm_out_file);
2618 dw2_asm_output_data_raw (1, val1->v.val_int);
2619 break;
2621 case DW_OP_const2u:
2622 case DW_OP_const2s:
2623 fputc (',', asm_out_file);
2624 dw2_asm_output_data_raw (2, val1->v.val_int);
2625 break;
2627 case DW_OP_const4u:
2628 case DW_OP_const4s:
2629 fputc (',', asm_out_file);
2630 dw2_asm_output_data_raw (4, val1->v.val_int);
2631 break;
2633 case DW_OP_const8u:
2634 case DW_OP_const8s:
2635 gcc_assert (HOST_BITS_PER_WIDE_INT >= 64);
2636 fputc (',', asm_out_file);
2637 dw2_asm_output_data_raw (8, val1->v.val_int);
2638 break;
2640 case DW_OP_skip:
2641 case DW_OP_bra:
2643 int offset;
2645 gcc_assert (val1->val_class == dw_val_class_loc);
2646 offset = val1->v.val_loc->dw_loc_addr - (loc->dw_loc_addr + 3);
2648 fputc (',', asm_out_file);
2649 dw2_asm_output_data_raw (2, offset);
2651 break;
2653 case DW_OP_regx:
2655 unsigned r = DWARF2_FRAME_REG_OUT (val1->v.val_unsigned, 1);
2656 gcc_assert (size_of_uleb128 (r)
2657 == size_of_uleb128 (val1->v.val_unsigned));
2658 fputc (',', asm_out_file);
2659 dw2_asm_output_data_uleb128_raw (r);
2661 break;
2663 case DW_OP_constu:
2664 case DW_OP_plus_uconst:
2665 case DW_OP_piece:
2666 fputc (',', asm_out_file);
2667 dw2_asm_output_data_uleb128_raw (val1->v.val_unsigned);
2668 break;
2670 case DW_OP_bit_piece:
2671 fputc (',', asm_out_file);
2672 dw2_asm_output_data_uleb128_raw (val1->v.val_unsigned);
2673 dw2_asm_output_data_uleb128_raw (val2->v.val_unsigned);
2674 break;
2676 case DW_OP_consts:
2677 case DW_OP_breg0:
2678 case DW_OP_breg1:
2679 case DW_OP_breg2:
2680 case DW_OP_breg3:
2681 case DW_OP_breg4:
2682 case DW_OP_breg5:
2683 case DW_OP_breg6:
2684 case DW_OP_breg7:
2685 case DW_OP_breg8:
2686 case DW_OP_breg9:
2687 case DW_OP_breg10:
2688 case DW_OP_breg11:
2689 case DW_OP_breg12:
2690 case DW_OP_breg13:
2691 case DW_OP_breg14:
2692 case DW_OP_breg15:
2693 case DW_OP_breg16:
2694 case DW_OP_breg17:
2695 case DW_OP_breg18:
2696 case DW_OP_breg19:
2697 case DW_OP_breg20:
2698 case DW_OP_breg21:
2699 case DW_OP_breg22:
2700 case DW_OP_breg23:
2701 case DW_OP_breg24:
2702 case DW_OP_breg25:
2703 case DW_OP_breg26:
2704 case DW_OP_breg27:
2705 case DW_OP_breg28:
2706 case DW_OP_breg29:
2707 case DW_OP_breg30:
2708 case DW_OP_breg31:
2709 case DW_OP_fbreg:
2710 fputc (',', asm_out_file);
2711 dw2_asm_output_data_sleb128_raw (val1->v.val_int);
2712 break;
2714 case DW_OP_bregx:
2716 unsigned r = DWARF2_FRAME_REG_OUT (val1->v.val_unsigned, 1);
2717 gcc_assert (size_of_uleb128 (r)
2718 == size_of_uleb128 (val1->v.val_unsigned));
2719 fputc (',', asm_out_file);
2720 dw2_asm_output_data_uleb128_raw (r);
2721 fputc (',', asm_out_file);
2722 dw2_asm_output_data_sleb128_raw (val2->v.val_int);
2724 break;
2726 case DW_OP_implicit_pointer:
2727 case DW_OP_entry_value:
2728 case DW_OP_const_type:
2729 case DW_OP_regval_type:
2730 case DW_OP_deref_type:
2731 case DW_OP_convert:
2732 case DW_OP_reinterpret:
2733 case DW_OP_GNU_implicit_pointer:
2734 case DW_OP_GNU_entry_value:
2735 case DW_OP_GNU_const_type:
2736 case DW_OP_GNU_regval_type:
2737 case DW_OP_GNU_deref_type:
2738 case DW_OP_GNU_convert:
2739 case DW_OP_GNU_reinterpret:
2740 case DW_OP_GNU_parameter_ref:
2741 gcc_unreachable ();
2742 break;
2744 default:
2745 /* Other codes have no operands. */
2746 break;
2750 void
2751 output_loc_sequence_raw (dw_loc_descr_ref loc)
2753 while (1)
2755 enum dwarf_location_atom opc = loc->dw_loc_opc;
2756 /* Output the opcode. */
2757 if (opc >= DW_OP_breg0 && opc <= DW_OP_breg31)
2759 unsigned r = (opc - DW_OP_breg0);
2760 r = DWARF2_FRAME_REG_OUT (r, 1);
2761 gcc_assert (r <= 31);
2762 opc = (enum dwarf_location_atom) (DW_OP_breg0 + r);
2764 else if (opc >= DW_OP_reg0 && opc <= DW_OP_reg31)
2766 unsigned r = (opc - DW_OP_reg0);
2767 r = DWARF2_FRAME_REG_OUT (r, 1);
2768 gcc_assert (r <= 31);
2769 opc = (enum dwarf_location_atom) (DW_OP_reg0 + r);
2771 /* Output the opcode. */
2772 fprintf (asm_out_file, "%#x", opc);
2773 output_loc_operands_raw (loc);
2775 if (!loc->dw_loc_next)
2776 break;
2777 loc = loc->dw_loc_next;
2779 fputc (',', asm_out_file);
2783 static void
2784 build_breg_loc (struct dw_loc_descr_node **head, unsigned int regno)
2786 if (regno <= 31)
2787 add_loc_descr (head, new_loc_descr ((enum dwarf_location_atom)
2788 (DW_OP_breg0 + regno), 0, 0));
2789 else
2790 add_loc_descr (head, new_loc_descr (DW_OP_bregx, regno, 0));
2793 /* Build a dwarf location for a cfa_reg spanning multiple
2794 consecutive registers. */
2796 struct dw_loc_descr_node *
2797 build_span_loc (struct cfa_reg reg)
2799 struct dw_loc_descr_node *head = NULL;
2801 gcc_assert (reg.span_width > 0);
2802 gcc_assert (reg.span > 1);
2804 /* Start from the highest number register as it goes in the upper bits. */
2805 unsigned int regno = reg.reg + reg.span - 1;
2806 build_breg_loc (&head, regno);
2808 /* Deal with the remaining registers in the span. */
2809 for (int i = reg.span - 2; i >= 0; i--)
2811 add_loc_descr (&head, int_loc_descriptor (reg.span_width * 8));
2812 add_loc_descr (&head, new_loc_descr (DW_OP_shl, 0, 0));
2813 regno--;
2814 build_breg_loc (&head, regno);
2815 add_loc_descr (&head, new_loc_descr (DW_OP_plus, 0, 0));
2817 return head;
2820 /* This function builds a dwarf location descriptor sequence from a
2821 dw_cfa_location, adding the given OFFSET to the result of the
2822 expression. */
2824 struct dw_loc_descr_node *
2825 build_cfa_loc (dw_cfa_location *cfa, poly_int64 offset)
2827 struct dw_loc_descr_node *head, *tmp;
2829 offset += cfa->offset;
2831 if (cfa->reg.span > 1)
2833 head = build_span_loc (cfa->reg);
2835 if (maybe_ne (offset, 0))
2836 loc_descr_plus_const (&head, offset);
2838 else if (cfa->indirect)
2840 head = new_reg_loc_descr (cfa->reg.reg, cfa->base_offset);
2841 head->dw_loc_oprnd1.val_class = dw_val_class_const;
2842 head->dw_loc_oprnd1.val_entry = NULL;
2843 tmp = new_loc_descr (DW_OP_deref, 0, 0);
2844 add_loc_descr (&head, tmp);
2845 loc_descr_plus_const (&head, offset);
2847 else
2848 head = new_reg_loc_descr (cfa->reg.reg, offset);
2850 return head;
2853 /* This function builds a dwarf location descriptor sequence for
2854 the address at OFFSET from the CFA when stack is aligned to
2855 ALIGNMENT byte. */
2857 struct dw_loc_descr_node *
2858 build_cfa_aligned_loc (dw_cfa_location *cfa,
2859 poly_int64 offset, HOST_WIDE_INT alignment)
2861 struct dw_loc_descr_node *head;
2862 unsigned int dwarf_fp
2863 = DWARF_FRAME_REGNUM (HARD_FRAME_POINTER_REGNUM);
2865 /* When CFA is defined as FP+OFFSET, emulate stack alignment. */
2866 if (cfa->reg.reg == HARD_FRAME_POINTER_REGNUM && cfa->indirect == 0)
2868 head = new_reg_loc_descr (dwarf_fp, 0);
2869 add_loc_descr (&head, int_loc_descriptor (alignment));
2870 add_loc_descr (&head, new_loc_descr (DW_OP_and, 0, 0));
2871 loc_descr_plus_const (&head, offset);
2873 else
2874 head = new_reg_loc_descr (dwarf_fp, offset);
2875 return head;
2878 /* And now, the support for symbolic debugging information. */
2880 /* .debug_str support. */
2882 static void dwarf2out_init (const char *);
2883 static void dwarf2out_finish (const char *);
2884 static void dwarf2out_early_finish (const char *);
2885 static void dwarf2out_assembly_start (void);
2886 static void dwarf2out_define (unsigned int, const char *);
2887 static void dwarf2out_undef (unsigned int, const char *);
2888 static void dwarf2out_start_source_file (unsigned, const char *);
2889 static void dwarf2out_end_source_file (unsigned);
2890 static void dwarf2out_function_decl (tree);
2891 static void dwarf2out_begin_block (unsigned, unsigned);
2892 static void dwarf2out_end_block (unsigned, unsigned);
2893 static bool dwarf2out_ignore_block (const_tree);
2894 static void dwarf2out_set_ignored_loc (unsigned, unsigned, const char *);
2895 static void dwarf2out_early_global_decl (tree);
2896 static void dwarf2out_late_global_decl (tree);
2897 static void dwarf2out_type_decl (tree, int);
2898 static void dwarf2out_imported_module_or_decl (tree, tree, tree, bool, bool);
2899 static void dwarf2out_imported_module_or_decl_1 (tree, tree, tree,
2900 dw_die_ref);
2901 static void dwarf2out_abstract_function (tree);
2902 static void dwarf2out_var_location (rtx_insn *);
2903 static void dwarf2out_inline_entry (tree);
2904 static void dwarf2out_size_function (tree);
2905 static void dwarf2out_begin_function (tree);
2906 static void dwarf2out_end_function (unsigned int);
2907 static void dwarf2out_register_main_translation_unit (tree unit);
2908 static void dwarf2out_set_name (tree, tree);
2909 static void dwarf2out_register_external_die (tree decl, const char *sym,
2910 unsigned HOST_WIDE_INT off);
2911 static bool dwarf2out_die_ref_for_decl (tree decl, const char **sym,
2912 unsigned HOST_WIDE_INT *off);
2914 /* The debug hooks structure. */
2916 const struct gcc_debug_hooks dwarf2_debug_hooks =
2918 dwarf2out_init,
2919 dwarf2out_finish,
2920 dwarf2out_early_finish,
2921 dwarf2out_assembly_start,
2922 dwarf2out_define,
2923 dwarf2out_undef,
2924 dwarf2out_start_source_file,
2925 dwarf2out_end_source_file,
2926 dwarf2out_begin_block,
2927 dwarf2out_end_block,
2928 dwarf2out_ignore_block,
2929 dwarf2out_source_line,
2930 dwarf2out_set_ignored_loc,
2931 dwarf2out_begin_prologue,
2932 #if VMS_DEBUGGING_INFO
2933 dwarf2out_vms_end_prologue,
2934 dwarf2out_vms_begin_epilogue,
2935 #else
2936 debug_nothing_int_charstar,
2937 debug_nothing_int_charstar,
2938 #endif
2939 dwarf2out_end_epilogue,
2940 dwarf2out_begin_function,
2941 dwarf2out_end_function, /* end_function */
2942 dwarf2out_register_main_translation_unit,
2943 dwarf2out_function_decl, /* function_decl */
2944 dwarf2out_early_global_decl,
2945 dwarf2out_late_global_decl,
2946 dwarf2out_type_decl, /* type_decl */
2947 dwarf2out_imported_module_or_decl,
2948 dwarf2out_die_ref_for_decl,
2949 dwarf2out_register_external_die,
2950 debug_nothing_tree, /* deferred_inline_function */
2951 /* The DWARF 2 backend tries to reduce debugging bloat by not
2952 emitting the abstract description of inline functions until
2953 something tries to reference them. */
2954 dwarf2out_abstract_function, /* outlining_inline_function */
2955 debug_nothing_rtx_code_label, /* label */
2956 debug_nothing_int, /* handle_pch */
2957 dwarf2out_var_location,
2958 dwarf2out_inline_entry, /* inline_entry */
2959 dwarf2out_size_function, /* size_function */
2960 dwarf2out_switch_text_section,
2961 dwarf2out_set_name,
2962 1, /* start_end_main_source_file */
2963 TYPE_SYMTAB_IS_DIE /* tree_type_symtab_field */
2966 const struct gcc_debug_hooks dwarf2_lineno_debug_hooks =
2968 dwarf2out_init,
2969 debug_nothing_charstar,
2970 debug_nothing_charstar,
2971 dwarf2out_assembly_start,
2972 debug_nothing_int_charstar,
2973 debug_nothing_int_charstar,
2974 debug_nothing_int_charstar,
2975 debug_nothing_int,
2976 debug_nothing_int_int, /* begin_block */
2977 debug_nothing_int_int, /* end_block */
2978 debug_true_const_tree, /* ignore_block */
2979 dwarf2out_source_line, /* source_line */
2980 debug_nothing_int_int_charstar, /* set_ignored_loc */
2981 debug_nothing_int_int_charstar, /* begin_prologue */
2982 debug_nothing_int_charstar, /* end_prologue */
2983 debug_nothing_int_charstar, /* begin_epilogue */
2984 debug_nothing_int_charstar, /* end_epilogue */
2985 debug_nothing_tree, /* begin_function */
2986 debug_nothing_int, /* end_function */
2987 debug_nothing_tree, /* register_main_translation_unit */
2988 debug_nothing_tree, /* function_decl */
2989 debug_nothing_tree, /* early_global_decl */
2990 debug_nothing_tree, /* late_global_decl */
2991 debug_nothing_tree_int, /* type_decl */
2992 debug_nothing_tree_tree_tree_bool_bool,/* imported_module_or_decl */
2993 debug_false_tree_charstarstar_uhwistar,/* die_ref_for_decl */
2994 debug_nothing_tree_charstar_uhwi, /* register_external_die */
2995 debug_nothing_tree, /* deferred_inline_function */
2996 debug_nothing_tree, /* outlining_inline_function */
2997 debug_nothing_rtx_code_label, /* label */
2998 debug_nothing_int, /* handle_pch */
2999 debug_nothing_rtx_insn, /* var_location */
3000 debug_nothing_tree, /* inline_entry */
3001 debug_nothing_tree, /* size_function */
3002 debug_nothing_void, /* switch_text_section */
3003 debug_nothing_tree_tree, /* set_name */
3004 0, /* start_end_main_source_file */
3005 TYPE_SYMTAB_IS_ADDRESS /* tree_type_symtab_field */
3008 /* NOTE: In the comments in this file, many references are made to
3009 "Debugging Information Entries". This term is abbreviated as `DIE'
3010 throughout the remainder of this file. */
3012 /* An internal representation of the DWARF output is built, and then
3013 walked to generate the DWARF debugging info. The walk of the internal
3014 representation is done after the entire program has been compiled.
3015 The types below are used to describe the internal representation. */
3017 /* Whether to put type DIEs into their own section .debug_types instead
3018 of making them part of the .debug_info section. Only supported for
3019 Dwarf V4 or higher and the user didn't disable them through
3020 -fno-debug-types-section. It is more efficient to put them in a
3021 separate comdat sections since the linker will then be able to
3022 remove duplicates. But not all tools support .debug_types sections
3023 yet. For Dwarf V5 or higher .debug_types doesn't exist any more,
3024 it is DW_UT_type unit type in .debug_info section. For late LTO
3025 debug there should be almost no types emitted so avoid enabling
3026 -fdebug-types-section there. */
3028 #define use_debug_types (dwarf_version >= 4 \
3029 && flag_debug_types_section \
3030 && !in_lto_p)
3032 /* Various DIE's use offsets relative to the beginning of the
3033 .debug_info section to refer to each other. */
3035 typedef long int dw_offset;
3037 struct comdat_type_node;
3039 /* The entries in the line_info table more-or-less mirror the opcodes
3040 that are used in the real dwarf line table. Arrays of these entries
3041 are collected per section when DWARF2_ASM_LINE_DEBUG_INFO is not
3042 supported. */
3044 enum dw_line_info_opcode {
3045 /* Emit DW_LNE_set_address; the operand is the label index. */
3046 LI_set_address,
3048 /* Emit a row to the matrix with the given line. This may be done
3049 via any combination of DW_LNS_copy, DW_LNS_advance_line, and
3050 special opcodes. */
3051 LI_set_line,
3053 /* Emit a DW_LNS_set_file. */
3054 LI_set_file,
3056 /* Emit a DW_LNS_set_column. */
3057 LI_set_column,
3059 /* Emit a DW_LNS_negate_stmt; the operand is ignored. */
3060 LI_negate_stmt,
3062 /* Emit a DW_LNS_set_prologue_end/epilogue_begin; the operand is ignored. */
3063 LI_set_prologue_end,
3064 LI_set_epilogue_begin,
3066 /* Emit a DW_LNE_set_discriminator. */
3067 LI_set_discriminator,
3069 /* Output a Fixed Advance PC; the target PC is the label index; the
3070 base PC is the previous LI_adv_address or LI_set_address entry.
3071 We only use this when emitting debug views without assembler
3072 support, at explicit user request. Ideally, we should only use
3073 it when the offset might be zero but we can't tell: it's the only
3074 way to maybe change the PC without resetting the view number. */
3075 LI_adv_address
3078 typedef struct GTY(()) dw_line_info_struct {
3079 enum dw_line_info_opcode opcode;
3080 unsigned int val;
3081 } dw_line_info_entry;
3084 struct GTY(()) dw_line_info_table {
3085 /* The label that marks the end of this section. */
3086 const char *end_label;
3088 /* The values for the last row of the matrix, as collected in the table.
3089 These are used to minimize the changes to the next row. */
3090 unsigned int file_num;
3091 unsigned int line_num;
3092 unsigned int column_num;
3093 int discrim_num;
3094 bool is_stmt;
3095 bool in_use;
3097 /* This denotes the NEXT view number.
3099 If it is 0, it is known that the NEXT view will be the first view
3100 at the given PC.
3102 If it is -1, we're forcing the view number to be reset, e.g. at a
3103 function entry.
3105 The meaning of other nonzero values depends on whether we're
3106 computing views internally or leaving it for the assembler to do
3107 so. If we're emitting them internally, view denotes the view
3108 number since the last known advance of PC. If we're leaving it
3109 for the assembler, it denotes the LVU label number that we're
3110 going to ask the assembler to assign. */
3111 var_loc_view view;
3113 /* This counts the number of symbolic views emitted in this table
3114 since the latest view reset. Its max value, over all tables,
3115 sets symview_upper_bound. */
3116 var_loc_view symviews_since_reset;
3118 #define FORCE_RESET_NEXT_VIEW(x) ((x) = (var_loc_view)-1)
3119 #define RESET_NEXT_VIEW(x) ((x) = (var_loc_view)0)
3120 #define FORCE_RESETTING_VIEW_P(x) ((x) == (var_loc_view)-1)
3121 #define RESETTING_VIEW_P(x) ((x) == (var_loc_view)0 || FORCE_RESETTING_VIEW_P (x))
3123 vec<dw_line_info_entry, va_gc> *entries;
3126 /* This is an upper bound for view numbers that the assembler may
3127 assign to symbolic views output in this translation. It is used to
3128 decide how big a field to use to represent view numbers in
3129 symview-classed attributes. */
3131 static var_loc_view symview_upper_bound;
3133 /* If we're keep track of location views and their reset points, and
3134 INSN is a reset point (i.e., it necessarily advances the PC), mark
3135 the next view in TABLE as reset. */
3137 static void
3138 maybe_reset_location_view (rtx_insn *insn, dw_line_info_table *table)
3140 if (!debug_internal_reset_location_views)
3141 return;
3143 /* Maybe turn (part of?) this test into a default target hook. */
3144 int reset = 0;
3146 if (targetm.reset_location_view)
3147 reset = targetm.reset_location_view (insn);
3149 if (reset)
3151 else if (JUMP_TABLE_DATA_P (insn))
3152 reset = 1;
3153 else if (GET_CODE (insn) == USE
3154 || GET_CODE (insn) == CLOBBER
3155 || GET_CODE (insn) == ASM_INPUT
3156 || asm_noperands (insn) >= 0)
3158 else if (get_attr_min_length (insn) > 0)
3159 reset = 1;
3161 if (reset > 0 && !RESETTING_VIEW_P (table->view))
3162 RESET_NEXT_VIEW (table->view);
3165 /* The Debugging Information Entry (DIE) structure. DIEs form a tree.
3166 The children of each node form a circular list linked by
3167 die_sib. die_child points to the node *before* the "first" child node. */
3169 typedef struct GTY((chain_circular ("%h.die_sib"), for_user)) die_struct {
3170 union die_symbol_or_type_node
3172 const char * GTY ((tag ("0"))) die_symbol;
3173 comdat_type_node *GTY ((tag ("1"))) die_type_node;
3175 GTY ((desc ("%0.comdat_type_p"))) die_id;
3176 vec<dw_attr_node, va_gc> *die_attr;
3177 dw_die_ref die_parent;
3178 dw_die_ref die_child;
3179 dw_die_ref die_sib;
3180 dw_die_ref die_definition; /* ref from a specification to its definition */
3181 dw_offset die_offset;
3182 unsigned long die_abbrev;
3183 int die_mark;
3184 unsigned int decl_id;
3185 enum dwarf_tag die_tag;
3186 /* Die is used and must not be pruned as unused. */
3187 BOOL_BITFIELD die_perennial_p : 1;
3188 BOOL_BITFIELD comdat_type_p : 1; /* DIE has a type signature */
3189 /* For an external ref to die_symbol if die_offset contains an extra
3190 offset to that symbol. */
3191 BOOL_BITFIELD with_offset : 1;
3192 /* Whether this DIE was removed from the DIE tree, for example via
3193 prune_unused_types. We don't consider those present from the
3194 DIE lookup routines. */
3195 BOOL_BITFIELD removed : 1;
3196 /* Lots of spare bits. */
3198 die_node;
3200 /* Set to TRUE while dwarf2out_early_global_decl is running. */
3201 static bool early_dwarf;
3202 static bool early_dwarf_finished;
3203 class set_early_dwarf {
3204 public:
3205 bool saved;
3206 set_early_dwarf () : saved(early_dwarf)
3208 gcc_assert (! early_dwarf_finished);
3209 early_dwarf = true;
3211 ~set_early_dwarf () { early_dwarf = saved; }
3214 /* Evaluate 'expr' while 'c' is set to each child of DIE in order. */
3215 #define FOR_EACH_CHILD(die, c, expr) do { \
3216 c = die->die_child; \
3217 if (c) do { \
3218 c = c->die_sib; \
3219 expr; \
3220 } while (c != die->die_child); \
3221 } while (0)
3223 /* The pubname structure */
3225 typedef struct GTY(()) pubname_struct {
3226 dw_die_ref die;
3227 const char *name;
3229 pubname_entry;
3232 struct GTY(()) dw_ranges {
3233 const char *label;
3234 /* If this is positive, it's a block number, otherwise it's a
3235 bitwise-negated index into dw_ranges_by_label. */
3236 int num;
3237 /* If idx is equal to DW_RANGES_IDX_SKELETON, it should be emitted
3238 into .debug_rnglists section rather than .debug_rnglists.dwo
3239 for -gsplit-dwarf and DWARF >= 5. */
3240 #define DW_RANGES_IDX_SKELETON ((1U << 31) - 1)
3241 /* Index for the range list for DW_FORM_rnglistx. */
3242 unsigned int idx : 31;
3243 /* True if this range might be possibly in a different section
3244 from previous entry. */
3245 unsigned int maybe_new_sec : 1;
3246 addr_table_entry *begin_entry;
3247 addr_table_entry *end_entry;
3250 /* A structure to hold a macinfo entry. */
3252 typedef struct GTY(()) macinfo_struct {
3253 unsigned char code;
3254 unsigned HOST_WIDE_INT lineno;
3255 const char *info;
3257 macinfo_entry;
3260 struct GTY(()) dw_ranges_by_label {
3261 const char *begin;
3262 const char *end;
3265 /* The comdat type node structure. */
3266 struct GTY(()) comdat_type_node
3268 dw_die_ref root_die;
3269 dw_die_ref type_die;
3270 dw_die_ref skeleton_die;
3271 char signature[DWARF_TYPE_SIGNATURE_SIZE];
3272 comdat_type_node *next;
3275 /* A list of DIEs for which we can't determine ancestry (parent_die
3276 field) just yet. Later in dwarf2out_finish we will fill in the
3277 missing bits. */
3278 typedef struct GTY(()) limbo_die_struct {
3279 dw_die_ref die;
3280 /* The tree for which this DIE was created. We use this to
3281 determine ancestry later. */
3282 tree created_for;
3283 struct limbo_die_struct *next;
3285 limbo_die_node;
3287 typedef struct skeleton_chain_struct
3289 dw_die_ref old_die;
3290 dw_die_ref new_die;
3291 struct skeleton_chain_struct *parent;
3293 skeleton_chain_node;
3295 /* Define a macro which returns nonzero for a TYPE_DECL which was
3296 implicitly generated for a type.
3298 Note that, unlike the C front-end (which generates a NULL named
3299 TYPE_DECL node for each complete tagged type, each array type,
3300 and each function type node created) the C++ front-end generates
3301 a _named_ TYPE_DECL node for each tagged type node created.
3302 These TYPE_DECLs have DECL_ARTIFICIAL set, so we know not to
3303 generate a DW_TAG_typedef DIE for them. Likewise with the Ada
3304 front-end, but for each type, tagged or not. */
3306 #define TYPE_DECL_IS_STUB(decl) \
3307 (DECL_NAME (decl) == NULL_TREE \
3308 || (DECL_ARTIFICIAL (decl) \
3309 && ((decl == TYPE_STUB_DECL (TREE_TYPE (decl))) \
3310 /* This is necessary for stub decls that \
3311 appear in nested inline functions. */ \
3312 || (DECL_ABSTRACT_ORIGIN (decl) != NULL_TREE \
3313 && (decl_ultimate_origin (decl) \
3314 == TYPE_STUB_DECL (TREE_TYPE (decl)))))))
3316 /* Information concerning the compilation unit's programming
3317 language, and compiler version. */
3319 /* Fixed size portion of the DWARF compilation unit header. */
3320 #define DWARF_COMPILE_UNIT_HEADER_SIZE \
3321 (DWARF_INITIAL_LENGTH_SIZE + dwarf_offset_size \
3322 + (dwarf_version >= 5 ? 4 : 3))
3324 /* Fixed size portion of the DWARF comdat type unit header. */
3325 #define DWARF_COMDAT_TYPE_UNIT_HEADER_SIZE \
3326 (DWARF_COMPILE_UNIT_HEADER_SIZE \
3327 + DWARF_TYPE_SIGNATURE_SIZE + dwarf_offset_size)
3329 /* Fixed size portion of the DWARF skeleton compilation unit header. */
3330 #define DWARF_COMPILE_UNIT_SKELETON_HEADER_SIZE \
3331 (DWARF_COMPILE_UNIT_HEADER_SIZE + (dwarf_version >= 5 ? 8 : 0))
3333 /* Fixed size portion of public names info. */
3334 #define DWARF_PUBNAMES_HEADER_SIZE (2 * dwarf_offset_size + 2)
3336 /* Fixed size portion of the address range info. */
3337 #define DWARF_ARANGES_HEADER_SIZE \
3338 (DWARF_ROUND (DWARF_INITIAL_LENGTH_SIZE + dwarf_offset_size + 4, \
3339 DWARF2_ADDR_SIZE * 2) \
3340 - DWARF_INITIAL_LENGTH_SIZE)
3342 /* Size of padding portion in the address range info. It must be
3343 aligned to twice the pointer size. */
3344 #define DWARF_ARANGES_PAD_SIZE \
3345 (DWARF_ROUND (DWARF_INITIAL_LENGTH_SIZE + dwarf_offset_size + 4, \
3346 DWARF2_ADDR_SIZE * 2) \
3347 - (DWARF_INITIAL_LENGTH_SIZE + dwarf_offset_size + 4))
3349 /* Use assembler line directives if available. */
3350 #ifndef DWARF2_ASM_LINE_DEBUG_INFO
3351 #ifdef HAVE_AS_DWARF2_DEBUG_LINE
3352 #define DWARF2_ASM_LINE_DEBUG_INFO 1
3353 #else
3354 #define DWARF2_ASM_LINE_DEBUG_INFO 0
3355 #endif
3356 #endif
3358 /* Use assembler views in line directives if available. */
3359 #ifndef DWARF2_ASM_VIEW_DEBUG_INFO
3360 #ifdef HAVE_AS_DWARF2_DEBUG_VIEW
3361 #define DWARF2_ASM_VIEW_DEBUG_INFO 1
3362 #else
3363 #define DWARF2_ASM_VIEW_DEBUG_INFO 0
3364 #endif
3365 #endif
3367 /* Return true if GCC configure detected assembler support for .loc. */
3369 bool
3370 dwarf2out_default_as_loc_support (void)
3372 return DWARF2_ASM_LINE_DEBUG_INFO;
3373 #if (GCC_VERSION >= 3000)
3374 # undef DWARF2_ASM_LINE_DEBUG_INFO
3375 # pragma GCC poison DWARF2_ASM_LINE_DEBUG_INFO
3376 #endif
3379 /* Return true if GCC configure detected assembler support for views
3380 in .loc directives. */
3382 bool
3383 dwarf2out_default_as_locview_support (void)
3385 return DWARF2_ASM_VIEW_DEBUG_INFO;
3386 #if (GCC_VERSION >= 3000)
3387 # undef DWARF2_ASM_VIEW_DEBUG_INFO
3388 # pragma GCC poison DWARF2_ASM_VIEW_DEBUG_INFO
3389 #endif
3392 /* A bit is set in ZERO_VIEW_P if we are using the assembler-supported
3393 view computation, and it refers to a view identifier for which we
3394 will not emit a label because it is known to map to a view number
3395 zero. We won't allocate the bitmap if we're not using assembler
3396 support for location views, but we have to make the variable
3397 visible for GGC and for code that will be optimized out for lack of
3398 support but that's still parsed and compiled. We could abstract it
3399 out with macros, but it's not worth it. */
3400 static GTY(()) bitmap zero_view_p;
3402 /* Evaluate to TRUE iff N is known to identify the first location view
3403 at its PC. When not using assembler location view computation,
3404 that must be view number zero. Otherwise, ZERO_VIEW_P is allocated
3405 and views label numbers recorded in it are the ones known to be
3406 zero. */
3407 #define ZERO_VIEW_P(N) ((N) == (var_loc_view)0 \
3408 || (N) == (var_loc_view)-1 \
3409 || (zero_view_p \
3410 && bitmap_bit_p (zero_view_p, (N))))
3412 /* Return true iff we're to emit .loc directives for the assembler to
3413 generate line number sections.
3415 When we're not emitting views, all we need from the assembler is
3416 support for .loc directives.
3418 If we are emitting views, we can only use the assembler's .loc
3419 support if it also supports views.
3421 When the compiler is emitting the line number programs and
3422 computing view numbers itself, it resets view numbers at known PC
3423 changes and counts from that, and then it emits view numbers as
3424 literal constants in locviewlists. There are cases in which the
3425 compiler is not sure about PC changes, e.g. when extra alignment is
3426 requested for a label. In these cases, the compiler may not reset
3427 the view counter, and the potential PC advance in the line number
3428 program will use an opcode that does not reset the view counter
3429 even if the PC actually changes, so that compiler and debug info
3430 consumer can keep view numbers in sync.
3432 When the compiler defers view computation to the assembler, it
3433 emits symbolic view numbers in locviewlists, with the exception of
3434 views known to be zero (forced resets, or reset after
3435 compiler-visible PC changes): instead of emitting symbols for
3436 these, we emit literal zero and assert the assembler agrees with
3437 the compiler's assessment. We could use symbolic views everywhere,
3438 instead of special-casing zero views, but then we'd be unable to
3439 optimize out locviewlists that contain only zeros. */
3441 static bool
3442 output_asm_line_debug_info (void)
3444 return (dwarf2out_as_loc_support
3445 && (dwarf2out_as_locview_support
3446 || !debug_variable_location_views));
3449 static bool asm_outputs_debug_line_str (void);
3451 /* Minimum line offset in a special line info. opcode.
3452 This value was chosen to give a reasonable range of values. */
3453 #define DWARF_LINE_BASE -10
3455 /* First special line opcode - leave room for the standard opcodes. */
3456 #define DWARF_LINE_OPCODE_BASE ((int)DW_LNS_set_isa + 1)
3458 /* Range of line offsets in a special line info. opcode. */
3459 #define DWARF_LINE_RANGE (254-DWARF_LINE_OPCODE_BASE+1)
3461 /* Flag that indicates the initial value of the is_stmt_start flag.
3462 In the present implementation, we do not mark any lines as
3463 the beginning of a source statement, because that information
3464 is not made available by the GCC front-end. */
3465 #define DWARF_LINE_DEFAULT_IS_STMT_START 1
3467 /* Maximum number of operations per instruction bundle. */
3468 #ifndef DWARF_LINE_DEFAULT_MAX_OPS_PER_INSN
3469 #define DWARF_LINE_DEFAULT_MAX_OPS_PER_INSN 1
3470 #endif
3472 /* This location is used by calc_die_sizes() to keep track
3473 the offset of each DIE within the .debug_info section. */
3474 static unsigned long next_die_offset;
3476 /* Record the root of the DIE's built for the current compilation unit. */
3477 static GTY(()) dw_die_ref single_comp_unit_die;
3479 /* A list of type DIEs that have been separated into comdat sections. */
3480 static GTY(()) comdat_type_node *comdat_type_list;
3482 /* A list of CU DIEs that have been separated. */
3483 static GTY(()) limbo_die_node *cu_die_list;
3485 /* A list of DIEs with a NULL parent waiting to be relocated. */
3486 static GTY(()) limbo_die_node *limbo_die_list;
3488 /* A list of DIEs for which we may have to generate
3489 DW_AT_{,MIPS_}linkage_name once their DECL_ASSEMBLER_NAMEs are set. */
3490 static GTY(()) limbo_die_node *deferred_asm_name;
3492 struct dwarf_file_hasher : ggc_ptr_hash<dwarf_file_data>
3494 typedef const char *compare_type;
3496 static hashval_t hash (dwarf_file_data *);
3497 static bool equal (dwarf_file_data *, const char *);
3500 /* Filenames referenced by this compilation unit. */
3501 static GTY(()) hash_table<dwarf_file_hasher> *file_table;
3503 struct decl_die_hasher : ggc_ptr_hash<die_node>
3505 typedef tree compare_type;
3507 static hashval_t hash (die_node *);
3508 static bool equal (die_node *, tree);
3510 /* A hash table of references to DIE's that describe declarations.
3511 The key is a DECL_UID() which is a unique number identifying each decl. */
3512 static GTY (()) hash_table<decl_die_hasher> *decl_die_table;
3514 struct GTY ((for_user)) variable_value_struct {
3515 unsigned int decl_id;
3516 vec<dw_die_ref, va_gc> *dies;
3519 struct variable_value_hasher : ggc_ptr_hash<variable_value_struct>
3521 typedef tree compare_type;
3523 static hashval_t hash (variable_value_struct *);
3524 static bool equal (variable_value_struct *, tree);
3526 /* A hash table of DIEs that contain DW_OP_GNU_variable_value with
3527 dw_val_class_decl_ref class, indexed by FUNCTION_DECLs which is
3528 DECL_CONTEXT of the referenced VAR_DECLs. */
3529 static GTY (()) hash_table<variable_value_hasher> *variable_value_hash;
3531 struct block_die_hasher : ggc_ptr_hash<die_struct>
3533 static hashval_t hash (die_struct *);
3534 static bool equal (die_struct *, die_struct *);
3537 /* A hash table of references to DIE's that describe COMMON blocks.
3538 The key is DECL_UID() ^ die_parent. */
3539 static GTY (()) hash_table<block_die_hasher> *common_block_die_table;
3541 typedef struct GTY(()) die_arg_entry_struct {
3542 dw_die_ref die;
3543 tree arg;
3544 } die_arg_entry;
3547 /* Node of the variable location list. */
3548 struct GTY ((chain_next ("%h.next"))) var_loc_node {
3549 /* Either NOTE_INSN_VAR_LOCATION, or, for SRA optimized variables,
3550 EXPR_LIST chain. For small bitsizes, bitsize is encoded
3551 in mode of the EXPR_LIST node and first EXPR_LIST operand
3552 is either NOTE_INSN_VAR_LOCATION for a piece with a known
3553 location or NULL for padding. For larger bitsizes,
3554 mode is 0 and first operand is a CONCAT with bitsize
3555 as first CONCAT operand and NOTE_INSN_VAR_LOCATION resp.
3556 NULL as second operand. */
3557 rtx GTY (()) loc;
3558 const char * GTY (()) label;
3559 struct var_loc_node * GTY (()) next;
3560 var_loc_view view;
3563 /* Variable location list. */
3564 struct GTY ((for_user)) var_loc_list_def {
3565 struct var_loc_node * GTY (()) first;
3567 /* Pointer to the last but one or last element of the
3568 chained list. If the list is empty, both first and
3569 last are NULL, if the list contains just one node
3570 or the last node certainly is not redundant, it points
3571 to the last node, otherwise points to the last but one.
3572 Do not mark it for GC because it is marked through the chain. */
3573 struct var_loc_node * GTY ((skip ("%h"))) last;
3575 /* Pointer to the last element before section switch,
3576 if NULL, either sections weren't switched or first
3577 is after section switch. */
3578 struct var_loc_node * GTY ((skip ("%h"))) last_before_switch;
3580 /* DECL_UID of the variable decl. */
3581 unsigned int decl_id;
3583 typedef struct var_loc_list_def var_loc_list;
3585 /* Call argument location list. */
3586 struct GTY ((chain_next ("%h.next"))) call_arg_loc_node {
3587 rtx GTY (()) call_arg_loc_note;
3588 const char * GTY (()) label;
3589 tree GTY (()) block;
3590 bool tail_call_p;
3591 rtx GTY (()) symbol_ref;
3592 struct call_arg_loc_node * GTY (()) next;
3596 struct decl_loc_hasher : ggc_ptr_hash<var_loc_list>
3598 typedef const_tree compare_type;
3600 static hashval_t hash (var_loc_list *);
3601 static bool equal (var_loc_list *, const_tree);
3604 /* Table of decl location linked lists. */
3605 static GTY (()) hash_table<decl_loc_hasher> *decl_loc_table;
3607 /* Head and tail of call_arg_loc chain. */
3608 static GTY (()) struct call_arg_loc_node *call_arg_locations;
3609 static struct call_arg_loc_node *call_arg_loc_last;
3611 /* Number of call sites in the current function. */
3612 static int call_site_count = -1;
3613 /* Number of tail call sites in the current function. */
3614 static int tail_call_site_count = -1;
3616 /* A cached location list. */
3617 struct GTY ((for_user)) cached_dw_loc_list_def {
3618 /* The DECL_UID of the decl that this entry describes. */
3619 unsigned int decl_id;
3621 /* The cached location list. */
3622 dw_loc_list_ref loc_list;
3624 typedef struct cached_dw_loc_list_def cached_dw_loc_list;
3626 struct dw_loc_list_hasher : ggc_ptr_hash<cached_dw_loc_list>
3629 typedef const_tree compare_type;
3631 static hashval_t hash (cached_dw_loc_list *);
3632 static bool equal (cached_dw_loc_list *, const_tree);
3635 /* Table of cached location lists. */
3636 static GTY (()) hash_table<dw_loc_list_hasher> *cached_dw_loc_list_table;
3638 /* A vector of references to DIE's that are uniquely identified by their tag,
3639 presence/absence of children DIE's, and list of attribute/value pairs. */
3640 static GTY(()) vec<dw_die_ref, va_gc> *abbrev_die_table;
3642 /* A hash map to remember the stack usage for DWARF procedures. The value
3643 stored is the stack size difference between before the DWARF procedure
3644 invokation and after it returned. In other words, for a DWARF procedure
3645 that consumes N stack slots and that pushes M ones, this stores M - N. */
3646 static hash_map<dw_die_ref, int> *dwarf_proc_stack_usage_map;
3648 /* A global counter for generating labels for line number data. */
3649 static unsigned int line_info_label_num;
3651 /* The current table to which we should emit line number information
3652 for the current function. This will be set up at the beginning of
3653 assembly for the function. */
3654 static GTY(()) dw_line_info_table *cur_line_info_table;
3656 /* The two default tables of line number info. */
3657 static GTY(()) dw_line_info_table *text_section_line_info;
3658 static GTY(()) dw_line_info_table *cold_text_section_line_info;
3660 /* The set of all non-default tables of line number info. */
3661 static GTY(()) vec<dw_line_info_table *, va_gc> *separate_line_info;
3663 /* A flag to tell pubnames/types export if there is an info section to
3664 refer to. */
3665 static bool info_section_emitted;
3667 /* A pointer to the base of a table that contains a list of publicly
3668 accessible names. */
3669 static GTY (()) vec<pubname_entry, va_gc> *pubname_table;
3671 /* A pointer to the base of a table that contains a list of publicly
3672 accessible types. */
3673 static GTY (()) vec<pubname_entry, va_gc> *pubtype_table;
3675 /* A pointer to the base of a table that contains a list of macro
3676 defines/undefines (and file start/end markers). */
3677 static GTY (()) vec<macinfo_entry, va_gc> *macinfo_table;
3679 /* True if .debug_macinfo or .debug_macros section is going to be
3680 emitted. */
3681 #define have_macinfo \
3682 ((!XCOFF_DEBUGGING_INFO || HAVE_XCOFF_DWARF_EXTRAS) \
3683 && debug_info_level >= DINFO_LEVEL_VERBOSE \
3684 && !macinfo_table->is_empty ())
3686 /* Vector of dies for which we should generate .debug_ranges info. */
3687 static GTY (()) vec<dw_ranges, va_gc> *ranges_table;
3689 /* Vector of pairs of labels referenced in ranges_table. */
3690 static GTY (()) vec<dw_ranges_by_label, va_gc> *ranges_by_label;
3692 /* Whether we have location lists that need outputting */
3693 static GTY(()) bool have_location_lists;
3695 /* Unique label counter. */
3696 static GTY(()) unsigned int loclabel_num;
3698 /* Unique label counter for point-of-call tables. */
3699 static GTY(()) unsigned int poc_label_num;
3701 /* The last file entry emitted by maybe_emit_file(). */
3702 static GTY(()) struct dwarf_file_data * last_emitted_file;
3704 /* Number of internal labels generated by gen_internal_sym(). */
3705 static GTY(()) int label_num;
3707 static GTY(()) vec<die_arg_entry, va_gc> *tmpl_value_parm_die_table;
3709 /* Instances of generic types for which we need to generate debug
3710 info that describe their generic parameters and arguments. That
3711 generation needs to happen once all types are properly laid out so
3712 we do it at the end of compilation. */
3713 static GTY(()) vec<tree, va_gc> *generic_type_instances;
3715 /* Offset from the "steady-state frame pointer" to the frame base,
3716 within the current function. */
3717 static poly_int64 frame_pointer_fb_offset;
3718 static bool frame_pointer_fb_offset_valid;
3720 static vec<dw_die_ref> base_types;
3722 /* Flags to represent a set of attribute classes for attributes that represent
3723 a scalar value (bounds, pointers, ...). */
3724 enum dw_scalar_form
3726 dw_scalar_form_constant = 0x01,
3727 dw_scalar_form_exprloc = 0x02,
3728 dw_scalar_form_reference = 0x04
3731 /* Forward declarations for functions defined in this file. */
3733 static bool is_pseudo_reg (const_rtx);
3734 static tree type_main_variant (tree);
3735 static bool is_tagged_type (const_tree);
3736 static const char *dwarf_tag_name (unsigned);
3737 static const char *dwarf_attr_name (unsigned);
3738 static const char *dwarf_form_name (unsigned);
3739 static tree decl_ultimate_origin (const_tree);
3740 static tree decl_class_context (tree);
3741 static void add_dwarf_attr (dw_die_ref, dw_attr_node *);
3742 static inline unsigned int AT_index (dw_attr_node *);
3743 static void add_AT_flag (dw_die_ref, enum dwarf_attribute, unsigned);
3744 static inline unsigned AT_flag (dw_attr_node *);
3745 static void add_AT_int (dw_die_ref, enum dwarf_attribute, HOST_WIDE_INT);
3746 static void add_AT_unsigned (dw_die_ref, enum dwarf_attribute, unsigned HOST_WIDE_INT);
3747 static void add_AT_double (dw_die_ref, enum dwarf_attribute,
3748 HOST_WIDE_INT, unsigned HOST_WIDE_INT);
3749 static inline void add_AT_vec (dw_die_ref, enum dwarf_attribute, unsigned int,
3750 unsigned int, unsigned char *);
3751 static void add_AT_data8 (dw_die_ref, enum dwarf_attribute, unsigned char *);
3752 static void add_AT_string (dw_die_ref, enum dwarf_attribute, const char *);
3753 static inline const char *AT_string (dw_attr_node *);
3754 static enum dwarf_form AT_string_form (dw_attr_node *);
3755 static void add_AT_die_ref (dw_die_ref, enum dwarf_attribute, dw_die_ref);
3756 static void add_AT_specification (dw_die_ref, dw_die_ref);
3757 static inline dw_die_ref AT_ref (dw_attr_node *);
3758 static inline int AT_ref_external (dw_attr_node *);
3759 static inline void set_AT_ref_external (dw_attr_node *, int);
3760 static void add_AT_loc (dw_die_ref, enum dwarf_attribute, dw_loc_descr_ref);
3761 static void add_AT_loc_list (dw_die_ref, enum dwarf_attribute,
3762 dw_loc_list_ref);
3763 static inline dw_loc_list_ref AT_loc_list (dw_attr_node *);
3764 static void add_AT_view_list (dw_die_ref, enum dwarf_attribute);
3765 static inline dw_loc_list_ref AT_loc_list (dw_attr_node *);
3766 static addr_table_entry *add_addr_table_entry (void *, enum ate_kind);
3767 static void remove_addr_table_entry (addr_table_entry *);
3768 static void add_AT_addr (dw_die_ref, enum dwarf_attribute, rtx, bool);
3769 static inline rtx AT_addr (dw_attr_node *);
3770 static void add_AT_symview (dw_die_ref, enum dwarf_attribute, const char *);
3771 static void add_AT_lbl_id (dw_die_ref, enum dwarf_attribute, const char *);
3772 static void add_AT_lineptr (dw_die_ref, enum dwarf_attribute, const char *);
3773 static void add_AT_macptr (dw_die_ref, enum dwarf_attribute, const char *);
3774 static void add_AT_range_list (dw_die_ref, enum dwarf_attribute,
3775 unsigned long, bool);
3776 static inline const char *AT_lbl (dw_attr_node *);
3777 static const char *get_AT_low_pc (dw_die_ref);
3778 static bool is_c (void);
3779 static bool is_cxx (void);
3780 static bool is_cxx (const_tree);
3781 static bool is_fortran (void);
3782 static bool is_ada (void);
3783 static bool remove_AT (dw_die_ref, enum dwarf_attribute);
3784 static void remove_child_TAG (dw_die_ref, enum dwarf_tag);
3785 static void add_child_die (dw_die_ref, dw_die_ref);
3786 static dw_die_ref new_die (enum dwarf_tag, dw_die_ref, tree);
3787 static dw_die_ref strip_naming_typedef (tree, dw_die_ref);
3788 static dw_die_ref lookup_type_die_strip_naming_typedef (tree);
3789 static void equate_type_number_to_die (tree, dw_die_ref);
3790 static var_loc_list *lookup_decl_loc (const_tree);
3791 static void equate_decl_number_to_die (tree, dw_die_ref);
3792 static struct var_loc_node *add_var_loc_to_decl (tree, rtx, const char *, var_loc_view);
3793 static void print_spaces (FILE *);
3794 static void print_die (dw_die_ref, FILE *);
3795 static void loc_checksum (dw_loc_descr_ref, struct md5_ctx *);
3796 static void attr_checksum (dw_attr_node *, struct md5_ctx *, int *);
3797 static void die_checksum (dw_die_ref, struct md5_ctx *, int *);
3798 static void checksum_sleb128 (HOST_WIDE_INT, struct md5_ctx *);
3799 static void checksum_uleb128 (unsigned HOST_WIDE_INT, struct md5_ctx *);
3800 static void loc_checksum_ordered (dw_loc_descr_ref, struct md5_ctx *);
3801 static void attr_checksum_ordered (enum dwarf_tag, dw_attr_node *,
3802 struct md5_ctx *, int *);
3803 struct checksum_attributes;
3804 static void collect_checksum_attributes (struct checksum_attributes *, dw_die_ref);
3805 static void die_checksum_ordered (dw_die_ref, struct md5_ctx *, int *);
3806 static void checksum_die_context (dw_die_ref, struct md5_ctx *);
3807 static void generate_type_signature (dw_die_ref, comdat_type_node *);
3808 static bool same_loc_p (dw_loc_descr_ref, dw_loc_descr_ref, int *);
3809 static bool same_dw_val_p (const dw_val_node *, const dw_val_node *, int *);
3810 static bool same_attr_p (dw_attr_node *, dw_attr_node *, int *);
3811 static bool same_die_p (dw_die_ref, dw_die_ref, int *);
3812 static bool is_type_die (dw_die_ref);
3813 static inline bool is_template_instantiation (dw_die_ref);
3814 static bool is_declaration_die (dw_die_ref);
3815 static bool should_move_die_to_comdat (dw_die_ref);
3816 static dw_die_ref clone_as_declaration (dw_die_ref);
3817 static dw_die_ref clone_die (dw_die_ref);
3818 static dw_die_ref clone_tree (dw_die_ref);
3819 static dw_die_ref copy_declaration_context (dw_die_ref, dw_die_ref);
3820 static void generate_skeleton_ancestor_tree (skeleton_chain_node *);
3821 static void generate_skeleton_bottom_up (skeleton_chain_node *);
3822 static dw_die_ref generate_skeleton (dw_die_ref);
3823 static dw_die_ref remove_child_or_replace_with_skeleton (dw_die_ref,
3824 dw_die_ref,
3825 dw_die_ref);
3826 static void break_out_comdat_types (dw_die_ref);
3827 static void copy_decls_for_unworthy_types (dw_die_ref);
3829 static void add_sibling_attributes (dw_die_ref);
3830 static void output_location_lists (dw_die_ref);
3831 static int constant_size (unsigned HOST_WIDE_INT);
3832 static unsigned long size_of_die (dw_die_ref);
3833 static void calc_die_sizes (dw_die_ref);
3834 static void calc_base_type_die_sizes (void);
3835 static void mark_dies (dw_die_ref);
3836 static void unmark_dies (dw_die_ref);
3837 static void unmark_all_dies (dw_die_ref);
3838 static unsigned long size_of_pubnames (vec<pubname_entry, va_gc> *);
3839 static unsigned long size_of_aranges (void);
3840 static enum dwarf_form value_format (dw_attr_node *);
3841 static void output_value_format (dw_attr_node *);
3842 static void output_abbrev_section (void);
3843 static void output_die_abbrevs (unsigned long, dw_die_ref);
3844 static void output_die (dw_die_ref);
3845 static void output_compilation_unit_header (enum dwarf_unit_type);
3846 static void output_comp_unit (dw_die_ref, int, const unsigned char *);
3847 static void output_comdat_type_unit (comdat_type_node *, bool);
3848 static const char *dwarf2_name (tree, int);
3849 static void add_pubname (tree, dw_die_ref);
3850 static void add_enumerator_pubname (const char *, dw_die_ref);
3851 static void add_pubname_string (const char *, dw_die_ref);
3852 static void add_pubtype (tree, dw_die_ref);
3853 static void output_pubnames (vec<pubname_entry, va_gc> *);
3854 static void output_aranges (void);
3855 static unsigned int add_ranges (const_tree, bool = false);
3856 static void add_ranges_by_labels (dw_die_ref, const char *, const char *,
3857 bool *, bool);
3858 static void output_ranges (void);
3859 static dw_line_info_table *new_line_info_table (void);
3860 static void output_line_info (bool);
3861 static void output_file_names (void);
3862 static bool is_base_type (tree);
3863 static dw_die_ref subrange_type_die (tree, tree, tree, tree, dw_die_ref);
3864 static int decl_quals (const_tree);
3865 static dw_die_ref modified_type_die (tree, int, bool, dw_die_ref);
3866 static dw_die_ref generic_parameter_die (tree, tree, bool, dw_die_ref);
3867 static dw_die_ref template_parameter_pack_die (tree, tree, dw_die_ref);
3868 static unsigned int debugger_reg_number (const_rtx);
3869 static void add_loc_descr_op_piece (dw_loc_descr_ref *, int);
3870 static dw_loc_descr_ref reg_loc_descriptor (rtx, enum var_init_status);
3871 static dw_loc_descr_ref one_reg_loc_descriptor (unsigned int,
3872 enum var_init_status);
3873 static dw_loc_descr_ref multiple_reg_loc_descriptor (rtx, rtx,
3874 enum var_init_status);
3875 static dw_loc_descr_ref based_loc_descr (rtx, poly_int64,
3876 enum var_init_status);
3877 static bool is_based_loc (const_rtx);
3878 static bool resolve_one_addr (rtx *);
3879 static dw_loc_descr_ref concat_loc_descriptor (rtx, rtx,
3880 enum var_init_status);
3881 static dw_loc_descr_ref loc_descriptor (rtx, machine_mode mode,
3882 enum var_init_status);
3883 struct loc_descr_context;
3884 static void add_loc_descr_to_each (dw_loc_list_ref list, dw_loc_descr_ref ref);
3885 static void add_loc_list (dw_loc_list_ref *ret, dw_loc_list_ref list);
3886 static dw_loc_list_ref loc_list_from_tree (tree, int,
3887 struct loc_descr_context *);
3888 static dw_loc_descr_ref loc_descriptor_from_tree (tree, int,
3889 struct loc_descr_context *);
3890 static tree field_type (const_tree);
3891 static unsigned int simple_type_align_in_bits (const_tree);
3892 static unsigned int simple_decl_align_in_bits (const_tree);
3893 static unsigned HOST_WIDE_INT simple_type_size_in_bits (const_tree);
3894 struct vlr_context;
3895 static dw_loc_descr_ref field_byte_offset (const_tree, struct vlr_context *,
3896 HOST_WIDE_INT *);
3897 static void add_AT_location_description (dw_die_ref, enum dwarf_attribute,
3898 dw_loc_list_ref);
3899 static void add_data_member_location_attribute (dw_die_ref, tree,
3900 struct vlr_context *);
3901 static bool add_const_value_attribute (dw_die_ref, machine_mode, rtx);
3902 static void insert_int (HOST_WIDE_INT, unsigned, unsigned char *);
3903 static void insert_wide_int (const wide_int &, unsigned char *, int);
3904 static unsigned insert_float (const_rtx, unsigned char *);
3905 static rtx rtl_for_decl_location (tree);
3906 static bool add_location_or_const_value_attribute (dw_die_ref, tree, bool);
3907 static bool tree_add_const_value_attribute (dw_die_ref, tree);
3908 static bool tree_add_const_value_attribute_for_decl (dw_die_ref, tree);
3909 static void add_desc_attribute (dw_die_ref, tree);
3910 static void add_gnat_descriptive_type_attribute (dw_die_ref, tree, dw_die_ref);
3911 static void add_comp_dir_attribute (dw_die_ref);
3912 static void add_scalar_info (dw_die_ref, enum dwarf_attribute, tree, int,
3913 struct loc_descr_context *);
3914 static void add_bound_info (dw_die_ref, enum dwarf_attribute, tree,
3915 struct loc_descr_context *);
3916 static void add_subscript_info (dw_die_ref, tree, bool);
3917 static void add_byte_size_attribute (dw_die_ref, tree);
3918 static void add_alignment_attribute (dw_die_ref, tree);
3919 static void add_bit_offset_attribute (dw_die_ref, tree);
3920 static void add_bit_size_attribute (dw_die_ref, tree);
3921 static void add_prototyped_attribute (dw_die_ref, tree);
3922 static void add_abstract_origin_attribute (dw_die_ref, tree);
3923 static void add_pure_or_virtual_attribute (dw_die_ref, tree);
3924 static void add_src_coords_attributes (dw_die_ref, tree);
3925 static void add_name_and_src_coords_attributes (dw_die_ref, tree, bool = false);
3926 static void add_discr_value (dw_die_ref, dw_discr_value *);
3927 static void add_discr_list (dw_die_ref, dw_discr_list_ref);
3928 static inline dw_discr_list_ref AT_discr_list (dw_attr_node *);
3929 static dw_die_ref scope_die_for (tree, dw_die_ref);
3930 static inline bool local_scope_p (dw_die_ref);
3931 static inline bool class_scope_p (dw_die_ref);
3932 static inline bool class_or_namespace_scope_p (dw_die_ref);
3933 static void add_type_attribute (dw_die_ref, tree, int, bool, dw_die_ref);
3934 static void add_calling_convention_attribute (dw_die_ref, tree);
3935 static const char *type_tag (const_tree);
3936 static tree member_declared_type (const_tree);
3937 #if 0
3938 static const char *decl_start_label (tree);
3939 #endif
3940 static void gen_array_type_die (tree, dw_die_ref);
3941 static void gen_descr_array_type_die (tree, struct array_descr_info *, dw_die_ref);
3942 #if 0
3943 static void gen_entry_point_die (tree, dw_die_ref);
3944 #endif
3945 static dw_die_ref gen_enumeration_type_die (tree, dw_die_ref);
3946 static dw_die_ref gen_formal_parameter_die (tree, tree, bool, dw_die_ref);
3947 static dw_die_ref gen_formal_parameter_pack_die (tree, tree, dw_die_ref, tree*);
3948 static void gen_unspecified_parameters_die (tree, dw_die_ref);
3949 static void gen_formal_types_die (tree, dw_die_ref);
3950 static void gen_subprogram_die (tree, dw_die_ref);
3951 static void gen_variable_die (tree, tree, dw_die_ref);
3952 static void gen_const_die (tree, dw_die_ref);
3953 static void gen_label_die (tree, dw_die_ref);
3954 static void gen_lexical_block_die (tree, dw_die_ref);
3955 static void gen_inlined_subroutine_die (tree, dw_die_ref);
3956 static void gen_field_die (tree, struct vlr_context *, dw_die_ref);
3957 static void gen_ptr_to_mbr_type_die (tree, dw_die_ref);
3958 static dw_die_ref gen_compile_unit_die (const char *);
3959 static void gen_inheritance_die (tree, tree, tree, dw_die_ref);
3960 static void gen_member_die (tree, dw_die_ref);
3961 static void gen_struct_or_union_type_die (tree, dw_die_ref,
3962 enum debug_info_usage);
3963 static void gen_subroutine_type_die (tree, dw_die_ref);
3964 static void gen_typedef_die (tree, dw_die_ref);
3965 static void gen_type_die (tree, dw_die_ref);
3966 static void gen_block_die (tree, dw_die_ref);
3967 static void decls_for_scope (tree, dw_die_ref, bool = true);
3968 static bool is_naming_typedef_decl (const_tree);
3969 static inline dw_die_ref get_context_die (tree);
3970 static void gen_namespace_die (tree, dw_die_ref);
3971 static dw_die_ref gen_namelist_decl (tree, dw_die_ref, tree);
3972 static dw_die_ref gen_decl_die (tree, tree, struct vlr_context *, dw_die_ref);
3973 static dw_die_ref force_decl_die (tree);
3974 static dw_die_ref force_type_die (tree);
3975 static dw_die_ref setup_namespace_context (tree, dw_die_ref);
3976 static dw_die_ref declare_in_namespace (tree, dw_die_ref);
3977 static struct dwarf_file_data * lookup_filename (const char *);
3978 static void retry_incomplete_types (void);
3979 static void gen_type_die_for_member (tree, tree, dw_die_ref);
3980 static void gen_generic_params_dies (tree);
3981 static void gen_tagged_type_die (tree, dw_die_ref, enum debug_info_usage);
3982 static void gen_type_die_with_usage (tree, dw_die_ref, enum debug_info_usage);
3983 static void splice_child_die (dw_die_ref, dw_die_ref);
3984 static int file_info_cmp (const void *, const void *);
3985 static dw_loc_list_ref new_loc_list (dw_loc_descr_ref, const char *, var_loc_view,
3986 const char *, var_loc_view, const char *);
3987 static void output_loc_list (dw_loc_list_ref);
3988 static char *gen_internal_sym (const char *);
3989 static bool want_pubnames (void);
3991 static void prune_unmark_dies (dw_die_ref);
3992 static void prune_unused_types_mark_generic_parms_dies (dw_die_ref);
3993 static void prune_unused_types_mark (dw_die_ref, int);
3994 static void prune_unused_types_walk (dw_die_ref);
3995 static void prune_unused_types_walk_attribs (dw_die_ref);
3996 static void prune_unused_types_prune (dw_die_ref);
3997 static void prune_unused_types (void);
3998 static int maybe_emit_file (struct dwarf_file_data *fd);
3999 static inline const char *AT_vms_delta1 (dw_attr_node *);
4000 static inline const char *AT_vms_delta2 (dw_attr_node *);
4001 #if VMS_DEBUGGING_INFO
4002 static inline void add_AT_vms_delta (dw_die_ref, enum dwarf_attribute,
4003 const char *, const char *);
4004 #endif
4005 static void append_entry_to_tmpl_value_parm_die_table (dw_die_ref, tree);
4006 static void gen_remaining_tmpl_value_param_die_attribute (void);
4007 static bool generic_type_p (tree);
4008 static void schedule_generic_params_dies_gen (tree t);
4009 static void gen_scheduled_generic_parms_dies (void);
4010 static void resolve_variable_values (void);
4012 static const char *comp_dir_string (void);
4014 static void hash_loc_operands (dw_loc_descr_ref, inchash::hash &);
4016 /* enum for tracking thread-local variables whose address is really an offset
4017 relative to the TLS pointer, which will need link-time relocation, but will
4018 not need relocation by the DWARF consumer. */
4020 enum dtprel_bool
4022 dtprel_false = 0,
4023 dtprel_true = 1
4026 /* Return the operator to use for an address of a variable. For dtprel_true, we
4027 use DW_OP_const*. For regular variables, which need both link-time
4028 relocation and consumer-level relocation (e.g., to account for shared objects
4029 loaded at a random address), we use DW_OP_addr*. */
4031 static inline enum dwarf_location_atom
4032 dw_addr_op (enum dtprel_bool dtprel)
4034 if (dtprel == dtprel_true)
4035 return (dwarf_split_debug_info ? dwarf_OP (DW_OP_constx)
4036 : (DWARF2_ADDR_SIZE == 4 ? DW_OP_const4u : DW_OP_const8u));
4037 else
4038 return dwarf_split_debug_info ? dwarf_OP (DW_OP_addrx) : DW_OP_addr;
4041 /* Return a pointer to a newly allocated address location description. If
4042 dwarf_split_debug_info is true, then record the address with the appropriate
4043 relocation. */
4044 static inline dw_loc_descr_ref
4045 new_addr_loc_descr (rtx addr, enum dtprel_bool dtprel)
4047 dw_loc_descr_ref ref = new_loc_descr (dw_addr_op (dtprel), 0, 0);
4049 ref->dw_loc_oprnd1.val_class = dw_val_class_addr;
4050 ref->dw_loc_oprnd1.v.val_addr = addr;
4051 ref->dtprel = dtprel;
4052 if (dwarf_split_debug_info)
4053 ref->dw_loc_oprnd1.val_entry
4054 = add_addr_table_entry (addr,
4055 dtprel ? ate_kind_rtx_dtprel : ate_kind_rtx);
4056 else
4057 ref->dw_loc_oprnd1.val_entry = NULL;
4059 return ref;
4062 /* Section names used to hold DWARF debugging information. */
4064 #ifndef DEBUG_INFO_SECTION
4065 #define DEBUG_INFO_SECTION ".debug_info"
4066 #endif
4067 #ifndef DEBUG_DWO_INFO_SECTION
4068 #define DEBUG_DWO_INFO_SECTION ".debug_info.dwo"
4069 #endif
4070 #ifndef DEBUG_LTO_INFO_SECTION
4071 #define DEBUG_LTO_INFO_SECTION ".gnu.debuglto_.debug_info"
4072 #endif
4073 #ifndef DEBUG_LTO_DWO_INFO_SECTION
4074 #define DEBUG_LTO_DWO_INFO_SECTION ".gnu.debuglto_.debug_info.dwo"
4075 #endif
4076 #ifndef DEBUG_ABBREV_SECTION
4077 #define DEBUG_ABBREV_SECTION ".debug_abbrev"
4078 #endif
4079 #ifndef DEBUG_LTO_ABBREV_SECTION
4080 #define DEBUG_LTO_ABBREV_SECTION ".gnu.debuglto_.debug_abbrev"
4081 #endif
4082 #ifndef DEBUG_DWO_ABBREV_SECTION
4083 #define DEBUG_DWO_ABBREV_SECTION ".debug_abbrev.dwo"
4084 #endif
4085 #ifndef DEBUG_LTO_DWO_ABBREV_SECTION
4086 #define DEBUG_LTO_DWO_ABBREV_SECTION ".gnu.debuglto_.debug_abbrev.dwo"
4087 #endif
4088 #ifndef DEBUG_ARANGES_SECTION
4089 #define DEBUG_ARANGES_SECTION ".debug_aranges"
4090 #endif
4091 #ifndef DEBUG_ADDR_SECTION
4092 #define DEBUG_ADDR_SECTION ".debug_addr"
4093 #endif
4094 #ifndef DEBUG_MACINFO_SECTION
4095 #define DEBUG_MACINFO_SECTION ".debug_macinfo"
4096 #endif
4097 #ifndef DEBUG_LTO_MACINFO_SECTION
4098 #define DEBUG_LTO_MACINFO_SECTION ".gnu.debuglto_.debug_macinfo"
4099 #endif
4100 #ifndef DEBUG_DWO_MACINFO_SECTION
4101 #define DEBUG_DWO_MACINFO_SECTION ".debug_macinfo.dwo"
4102 #endif
4103 #ifndef DEBUG_LTO_DWO_MACINFO_SECTION
4104 #define DEBUG_LTO_DWO_MACINFO_SECTION ".gnu.debuglto_.debug_macinfo.dwo"
4105 #endif
4106 #ifndef DEBUG_MACRO_SECTION
4107 #define DEBUG_MACRO_SECTION ".debug_macro"
4108 #endif
4109 #ifndef DEBUG_LTO_MACRO_SECTION
4110 #define DEBUG_LTO_MACRO_SECTION ".gnu.debuglto_.debug_macro"
4111 #endif
4112 #ifndef DEBUG_DWO_MACRO_SECTION
4113 #define DEBUG_DWO_MACRO_SECTION ".debug_macro.dwo"
4114 #endif
4115 #ifndef DEBUG_LTO_DWO_MACRO_SECTION
4116 #define DEBUG_LTO_DWO_MACRO_SECTION ".gnu.debuglto_.debug_macro.dwo"
4117 #endif
4118 #ifndef DEBUG_LINE_SECTION
4119 #define DEBUG_LINE_SECTION ".debug_line"
4120 #endif
4121 #ifndef DEBUG_LTO_LINE_SECTION
4122 #define DEBUG_LTO_LINE_SECTION ".gnu.debuglto_.debug_line"
4123 #endif
4124 #ifndef DEBUG_DWO_LINE_SECTION
4125 #define DEBUG_DWO_LINE_SECTION ".debug_line.dwo"
4126 #endif
4127 #ifndef DEBUG_LTO_DWO_LINE_SECTION
4128 #define DEBUG_LTO_DWO_LINE_SECTION ".gnu.debuglto_.debug_line.dwo"
4129 #endif
4130 #ifndef DEBUG_LOC_SECTION
4131 #define DEBUG_LOC_SECTION ".debug_loc"
4132 #endif
4133 #ifndef DEBUG_DWO_LOC_SECTION
4134 #define DEBUG_DWO_LOC_SECTION ".debug_loc.dwo"
4135 #endif
4136 #ifndef DEBUG_LOCLISTS_SECTION
4137 #define DEBUG_LOCLISTS_SECTION ".debug_loclists"
4138 #endif
4139 #ifndef DEBUG_DWO_LOCLISTS_SECTION
4140 #define DEBUG_DWO_LOCLISTS_SECTION ".debug_loclists.dwo"
4141 #endif
4142 #ifndef DEBUG_PUBNAMES_SECTION
4143 #define DEBUG_PUBNAMES_SECTION \
4144 ((debug_generate_pub_sections == 2) \
4145 ? ".debug_gnu_pubnames" : ".debug_pubnames")
4146 #endif
4147 #ifndef DEBUG_PUBTYPES_SECTION
4148 #define DEBUG_PUBTYPES_SECTION \
4149 ((debug_generate_pub_sections == 2) \
4150 ? ".debug_gnu_pubtypes" : ".debug_pubtypes")
4151 #endif
4152 #ifndef DEBUG_STR_OFFSETS_SECTION
4153 #define DEBUG_STR_OFFSETS_SECTION ".debug_str_offsets"
4154 #endif
4155 #ifndef DEBUG_DWO_STR_OFFSETS_SECTION
4156 #define DEBUG_DWO_STR_OFFSETS_SECTION ".debug_str_offsets.dwo"
4157 #endif
4158 #ifndef DEBUG_LTO_DWO_STR_OFFSETS_SECTION
4159 #define DEBUG_LTO_DWO_STR_OFFSETS_SECTION ".gnu.debuglto_.debug_str_offsets.dwo"
4160 #endif
4161 #ifndef DEBUG_STR_SECTION
4162 #define DEBUG_STR_SECTION ".debug_str"
4163 #endif
4164 #ifndef DEBUG_LTO_STR_SECTION
4165 #define DEBUG_LTO_STR_SECTION ".gnu.debuglto_.debug_str"
4166 #endif
4167 #ifndef DEBUG_STR_DWO_SECTION
4168 #define DEBUG_STR_DWO_SECTION ".debug_str.dwo"
4169 #endif
4170 #ifndef DEBUG_LTO_STR_DWO_SECTION
4171 #define DEBUG_LTO_STR_DWO_SECTION ".gnu.debuglto_.debug_str.dwo"
4172 #endif
4173 #ifndef DEBUG_RANGES_SECTION
4174 #define DEBUG_RANGES_SECTION ".debug_ranges"
4175 #endif
4176 #ifndef DEBUG_RNGLISTS_SECTION
4177 #define DEBUG_RNGLISTS_SECTION ".debug_rnglists"
4178 #endif
4179 #ifndef DEBUG_DWO_RNGLISTS_SECTION
4180 #define DEBUG_DWO_RNGLISTS_SECTION ".debug_rnglists.dwo"
4181 #endif
4182 #ifndef DEBUG_LINE_STR_SECTION
4183 #define DEBUG_LINE_STR_SECTION ".debug_line_str"
4184 #endif
4185 #ifndef DEBUG_LTO_LINE_STR_SECTION
4186 #define DEBUG_LTO_LINE_STR_SECTION ".gnu.debuglto_.debug_line_str"
4187 #endif
4189 /* Section flags for .debug_str section. */
4190 #define DEBUG_STR_SECTION_FLAGS \
4191 (HAVE_GAS_SHF_MERGE && flag_merge_debug_strings \
4192 ? SECTION_DEBUG | SECTION_MERGE | SECTION_STRINGS | 1 \
4193 : SECTION_DEBUG)
4195 /* Section flags for .debug_str.dwo section. */
4196 #define DEBUG_STR_DWO_SECTION_FLAGS (SECTION_DEBUG | SECTION_EXCLUDE)
4198 /* Attribute used to refer to the macro section. */
4199 #define DEBUG_MACRO_ATTRIBUTE (dwarf_version >= 5 ? DW_AT_macros \
4200 : dwarf_strict ? DW_AT_macro_info : DW_AT_GNU_macros)
4202 /* Labels we insert at beginning sections we can reference instead of
4203 the section names themselves. */
4205 #ifndef TEXT_SECTION_LABEL
4206 #define TEXT_SECTION_LABEL "Ltext"
4207 #endif
4208 #ifndef COLD_TEXT_SECTION_LABEL
4209 #define COLD_TEXT_SECTION_LABEL "Ltext_cold"
4210 #endif
4211 #ifndef DEBUG_LINE_SECTION_LABEL
4212 #define DEBUG_LINE_SECTION_LABEL "Ldebug_line"
4213 #endif
4214 #ifndef DEBUG_SKELETON_LINE_SECTION_LABEL
4215 #define DEBUG_SKELETON_LINE_SECTION_LABEL "Lskeleton_debug_line"
4216 #endif
4217 #ifndef DEBUG_INFO_SECTION_LABEL
4218 #define DEBUG_INFO_SECTION_LABEL "Ldebug_info"
4219 #endif
4220 #ifndef DEBUG_SKELETON_INFO_SECTION_LABEL
4221 #define DEBUG_SKELETON_INFO_SECTION_LABEL "Lskeleton_debug_info"
4222 #endif
4223 #ifndef DEBUG_ABBREV_SECTION_LABEL
4224 #define DEBUG_ABBREV_SECTION_LABEL "Ldebug_abbrev"
4225 #endif
4226 #ifndef DEBUG_SKELETON_ABBREV_SECTION_LABEL
4227 #define DEBUG_SKELETON_ABBREV_SECTION_LABEL "Lskeleton_debug_abbrev"
4228 #endif
4229 #ifndef DEBUG_ADDR_SECTION_LABEL
4230 #define DEBUG_ADDR_SECTION_LABEL "Ldebug_addr"
4231 #endif
4232 #ifndef DEBUG_LOC_SECTION_LABEL
4233 #define DEBUG_LOC_SECTION_LABEL "Ldebug_loc"
4234 #endif
4235 #ifndef DEBUG_RANGES_SECTION_LABEL
4236 #define DEBUG_RANGES_SECTION_LABEL "Ldebug_ranges"
4237 #endif
4238 #ifndef DEBUG_MACINFO_SECTION_LABEL
4239 #define DEBUG_MACINFO_SECTION_LABEL "Ldebug_macinfo"
4240 #endif
4241 #ifndef DEBUG_MACRO_SECTION_LABEL
4242 #define DEBUG_MACRO_SECTION_LABEL "Ldebug_macro"
4243 #endif
4244 #define SKELETON_COMP_DIE_ABBREV 1
4245 #define SKELETON_TYPE_DIE_ABBREV 2
4247 /* Definitions of defaults for formats and names of various special
4248 (artificial) labels which may be generated within this file (when the -g
4249 options is used and DWARF2_DEBUGGING_INFO is in effect.
4250 If necessary, these may be overridden from within the tm.h file, but
4251 typically, overriding these defaults is unnecessary. */
4253 static char text_end_label[MAX_ARTIFICIAL_LABEL_BYTES];
4254 static char text_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4255 static char cold_text_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4256 static char cold_end_label[MAX_ARTIFICIAL_LABEL_BYTES];
4257 static char abbrev_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4258 static char debug_info_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4259 static char debug_skeleton_info_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4260 static char debug_skeleton_abbrev_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4261 static char debug_line_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4262 static char debug_addr_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4263 static char debug_skeleton_line_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4264 static char macinfo_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4265 static char loc_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4266 static char ranges_section_label[2 * MAX_ARTIFICIAL_LABEL_BYTES];
4267 static char ranges_base_label[2 * MAX_ARTIFICIAL_LABEL_BYTES];
4269 #ifndef TEXT_END_LABEL
4270 #define TEXT_END_LABEL "Letext"
4271 #endif
4272 #ifndef COLD_END_LABEL
4273 #define COLD_END_LABEL "Letext_cold"
4274 #endif
4275 #ifndef BLOCK_BEGIN_LABEL
4276 #define BLOCK_BEGIN_LABEL "LBB"
4277 #endif
4278 #ifndef BLOCK_INLINE_ENTRY_LABEL
4279 #define BLOCK_INLINE_ENTRY_LABEL "LBI"
4280 #endif
4281 #ifndef BLOCK_END_LABEL
4282 #define BLOCK_END_LABEL "LBE"
4283 #endif
4284 #ifndef LINE_CODE_LABEL
4285 #define LINE_CODE_LABEL "LM"
4286 #endif
4289 /* Return the root of the DIE's built for the current compilation unit. */
4290 static dw_die_ref
4291 comp_unit_die (void)
4293 if (!single_comp_unit_die)
4294 single_comp_unit_die = gen_compile_unit_die (NULL);
4295 return single_comp_unit_die;
4298 /* We allow a language front-end to designate a function that is to be
4299 called to "demangle" any name before it is put into a DIE. */
4301 static const char *(*demangle_name_func) (const char *);
4303 void
4304 dwarf2out_set_demangle_name_func (const char *(*func) (const char *))
4306 demangle_name_func = func;
4309 /* Test if rtl node points to a pseudo register. */
4311 static inline bool
4312 is_pseudo_reg (const_rtx rtl)
4314 return ((REG_P (rtl) && REGNO (rtl) >= FIRST_PSEUDO_REGISTER)
4315 || (GET_CODE (rtl) == SUBREG
4316 && REGNO (SUBREG_REG (rtl)) >= FIRST_PSEUDO_REGISTER));
4319 /* Return a reference to a type, with its const and volatile qualifiers
4320 removed. */
4322 static inline tree
4323 type_main_variant (tree type)
4325 type = TYPE_MAIN_VARIANT (type);
4327 /* ??? There really should be only one main variant among any group of
4328 variants of a given type (and all of the MAIN_VARIANT values for all
4329 members of the group should point to that one type) but sometimes the C
4330 front-end messes this up for array types, so we work around that bug
4331 here. */
4332 if (TREE_CODE (type) == ARRAY_TYPE)
4333 while (type != TYPE_MAIN_VARIANT (type))
4334 type = TYPE_MAIN_VARIANT (type);
4336 return type;
4339 /* Return true if the given type node represents a tagged type. */
4341 static inline bool
4342 is_tagged_type (const_tree type)
4344 enum tree_code code = TREE_CODE (type);
4346 return (code == RECORD_TYPE || code == UNION_TYPE
4347 || code == QUAL_UNION_TYPE || code == ENUMERAL_TYPE);
4350 /* Set label to debug_info_section_label + die_offset of a DIE reference. */
4352 static void
4353 get_ref_die_offset_label (char *label, dw_die_ref ref)
4355 sprintf (label, "%s+%ld", debug_info_section_label, ref->die_offset);
4358 /* Return die_offset of a DIE reference to a base type. */
4360 static unsigned long int
4361 get_base_type_offset (dw_die_ref ref)
4363 if (ref->die_offset)
4364 return ref->die_offset;
4365 if (comp_unit_die ()->die_abbrev)
4367 calc_base_type_die_sizes ();
4368 gcc_assert (ref->die_offset);
4370 return ref->die_offset;
4373 /* Return die_offset of a DIE reference other than base type. */
4375 static unsigned long int
4376 get_ref_die_offset (dw_die_ref ref)
4378 gcc_assert (ref->die_offset);
4379 return ref->die_offset;
4382 /* Convert a DIE tag into its string name. */
4384 static const char *
4385 dwarf_tag_name (unsigned int tag)
4387 const char *name = get_DW_TAG_name (tag);
4389 if (name != NULL)
4390 return name;
4392 return "DW_TAG_<unknown>";
4395 /* Convert a DWARF attribute code into its string name. */
4397 static const char *
4398 dwarf_attr_name (unsigned int attr)
4400 const char *name;
4402 switch (attr)
4404 #if VMS_DEBUGGING_INFO
4405 case DW_AT_HP_prologue:
4406 return "DW_AT_HP_prologue";
4407 #else
4408 case DW_AT_MIPS_loop_unroll_factor:
4409 return "DW_AT_MIPS_loop_unroll_factor";
4410 #endif
4412 #if VMS_DEBUGGING_INFO
4413 case DW_AT_HP_epilogue:
4414 return "DW_AT_HP_epilogue";
4415 #else
4416 case DW_AT_MIPS_stride:
4417 return "DW_AT_MIPS_stride";
4418 #endif
4421 name = get_DW_AT_name (attr);
4423 if (name != NULL)
4424 return name;
4426 return "DW_AT_<unknown>";
4429 /* Convert a DWARF value form code into its string name. */
4431 static const char *
4432 dwarf_form_name (unsigned int form)
4434 const char *name = get_DW_FORM_name (form);
4436 if (name != NULL)
4437 return name;
4439 return "DW_FORM_<unknown>";
4442 /* Determine the "ultimate origin" of a decl. The decl may be an inlined
4443 instance of an inlined instance of a decl which is local to an inline
4444 function, so we have to trace all of the way back through the origin chain
4445 to find out what sort of node actually served as the original seed for the
4446 given block. */
4448 static tree
4449 decl_ultimate_origin (const_tree decl)
4451 if (!CODE_CONTAINS_STRUCT (TREE_CODE (decl), TS_DECL_COMMON))
4452 return NULL_TREE;
4454 /* DECL_ABSTRACT_ORIGIN can point to itself; ignore that if
4455 we're trying to output the abstract instance of this function. */
4456 if (DECL_ABSTRACT_P (decl) && DECL_ABSTRACT_ORIGIN (decl) == decl)
4457 return NULL_TREE;
4459 /* Since the DECL_ABSTRACT_ORIGIN for a DECL is supposed to be the
4460 most distant ancestor, this should never happen. */
4461 gcc_assert (!DECL_FROM_INLINE (DECL_ORIGIN (decl)));
4463 return DECL_ABSTRACT_ORIGIN (decl);
4466 /* Get the class to which DECL belongs, if any. In g++, the DECL_CONTEXT
4467 of a virtual function may refer to a base class, so we check the 'this'
4468 parameter. */
4470 static tree
4471 decl_class_context (tree decl)
4473 tree context = NULL_TREE;
4475 if (TREE_CODE (decl) != FUNCTION_DECL || ! DECL_VINDEX (decl))
4476 context = DECL_CONTEXT (decl);
4477 else
4478 context = TYPE_MAIN_VARIANT
4479 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl)))));
4481 if (context && !TYPE_P (context))
4482 context = NULL_TREE;
4484 return context;
4487 /* Add an attribute/value pair to a DIE. */
4489 static inline void
4490 add_dwarf_attr (dw_die_ref die, dw_attr_node *attr)
4492 /* Maybe this should be an assert? */
4493 if (die == NULL)
4494 return;
4496 if (flag_checking)
4498 /* Check we do not add duplicate attrs. Can't use get_AT here
4499 because that recurses to the specification/abstract origin DIE. */
4500 dw_attr_node *a;
4501 unsigned ix;
4502 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
4503 gcc_assert (a->dw_attr != attr->dw_attr);
4506 vec_safe_reserve (die->die_attr, 1);
4507 vec_safe_push (die->die_attr, *attr);
4510 enum dw_val_class
4511 AT_class (dw_attr_node *a)
4513 return a->dw_attr_val.val_class;
4516 /* Return the index for any attribute that will be referenced with a
4517 DW_FORM_addrx/GNU_addr_index or DW_FORM_strx/GNU_str_index. String
4518 indices are stored in dw_attr_val.v.val_str for reference counting
4519 pruning. */
4521 static inline unsigned int
4522 AT_index (dw_attr_node *a)
4524 if (AT_class (a) == dw_val_class_str)
4525 return a->dw_attr_val.v.val_str->index;
4526 else if (a->dw_attr_val.val_entry != NULL)
4527 return a->dw_attr_val.val_entry->index;
4528 return NOT_INDEXED;
4531 /* Add a flag value attribute to a DIE. */
4533 static inline void
4534 add_AT_flag (dw_die_ref die, enum dwarf_attribute attr_kind, unsigned int flag)
4536 dw_attr_node attr;
4538 attr.dw_attr = attr_kind;
4539 attr.dw_attr_val.val_class = dw_val_class_flag;
4540 attr.dw_attr_val.val_entry = NULL;
4541 attr.dw_attr_val.v.val_flag = flag;
4542 add_dwarf_attr (die, &attr);
4545 static inline unsigned
4546 AT_flag (dw_attr_node *a)
4548 gcc_assert (a && AT_class (a) == dw_val_class_flag);
4549 return a->dw_attr_val.v.val_flag;
4552 /* Add a signed integer attribute value to a DIE. */
4554 static inline void
4555 add_AT_int (dw_die_ref die, enum dwarf_attribute attr_kind, HOST_WIDE_INT int_val)
4557 dw_attr_node attr;
4559 attr.dw_attr = attr_kind;
4560 attr.dw_attr_val.val_class = dw_val_class_const;
4561 attr.dw_attr_val.val_entry = NULL;
4562 attr.dw_attr_val.v.val_int = int_val;
4563 add_dwarf_attr (die, &attr);
4566 HOST_WIDE_INT
4567 AT_int (dw_attr_node *a)
4569 gcc_assert (a && (AT_class (a) == dw_val_class_const
4570 || AT_class (a) == dw_val_class_const_implicit));
4571 return a->dw_attr_val.v.val_int;
4574 /* Add an unsigned integer attribute value to a DIE. */
4576 static inline void
4577 add_AT_unsigned (dw_die_ref die, enum dwarf_attribute attr_kind,
4578 unsigned HOST_WIDE_INT unsigned_val)
4580 dw_attr_node attr;
4582 attr.dw_attr = attr_kind;
4583 attr.dw_attr_val.val_class = dw_val_class_unsigned_const;
4584 attr.dw_attr_val.val_entry = NULL;
4585 attr.dw_attr_val.v.val_unsigned = unsigned_val;
4586 add_dwarf_attr (die, &attr);
4589 unsigned HOST_WIDE_INT
4590 AT_unsigned (dw_attr_node *a)
4592 gcc_assert (a && (AT_class (a) == dw_val_class_unsigned_const
4593 || AT_class (a) == dw_val_class_unsigned_const_implicit));
4594 return a->dw_attr_val.v.val_unsigned;
4597 /* Add an unsigned wide integer attribute value to a DIE. */
4599 static inline void
4600 add_AT_wide (dw_die_ref die, enum dwarf_attribute attr_kind,
4601 const wide_int& w)
4603 dw_attr_node attr;
4605 attr.dw_attr = attr_kind;
4606 attr.dw_attr_val.val_class = dw_val_class_wide_int;
4607 attr.dw_attr_val.val_entry = NULL;
4608 attr.dw_attr_val.v.val_wide = ggc_alloc<wide_int> ();
4609 *attr.dw_attr_val.v.val_wide = w;
4610 add_dwarf_attr (die, &attr);
4613 /* Add an unsigned double integer attribute value to a DIE. */
4615 static inline void
4616 add_AT_double (dw_die_ref die, enum dwarf_attribute attr_kind,
4617 HOST_WIDE_INT high, unsigned HOST_WIDE_INT low)
4619 dw_attr_node attr;
4621 attr.dw_attr = attr_kind;
4622 attr.dw_attr_val.val_class = dw_val_class_const_double;
4623 attr.dw_attr_val.val_entry = NULL;
4624 attr.dw_attr_val.v.val_double.high = high;
4625 attr.dw_attr_val.v.val_double.low = low;
4626 add_dwarf_attr (die, &attr);
4629 /* Add a floating point attribute value to a DIE and return it. */
4631 static inline void
4632 add_AT_vec (dw_die_ref die, enum dwarf_attribute attr_kind,
4633 unsigned int length, unsigned int elt_size, unsigned char *array)
4635 dw_attr_node attr;
4637 attr.dw_attr = attr_kind;
4638 attr.dw_attr_val.val_class = dw_val_class_vec;
4639 attr.dw_attr_val.val_entry = NULL;
4640 attr.dw_attr_val.v.val_vec.length = length;
4641 attr.dw_attr_val.v.val_vec.elt_size = elt_size;
4642 attr.dw_attr_val.v.val_vec.array = array;
4643 add_dwarf_attr (die, &attr);
4646 /* Add an 8-byte data attribute value to a DIE. */
4648 static inline void
4649 add_AT_data8 (dw_die_ref die, enum dwarf_attribute attr_kind,
4650 unsigned char data8[8])
4652 dw_attr_node attr;
4654 attr.dw_attr = attr_kind;
4655 attr.dw_attr_val.val_class = dw_val_class_data8;
4656 attr.dw_attr_val.val_entry = NULL;
4657 memcpy (attr.dw_attr_val.v.val_data8, data8, 8);
4658 add_dwarf_attr (die, &attr);
4661 /* Add DW_AT_low_pc and DW_AT_high_pc to a DIE. When using
4662 dwarf_split_debug_info, address attributes in dies destined for the
4663 final executable have force_direct set to avoid using indexed
4664 references. */
4666 static inline void
4667 add_AT_low_high_pc (dw_die_ref die, const char *lbl_low, const char *lbl_high,
4668 bool force_direct)
4670 dw_attr_node attr;
4671 char * lbl_id;
4673 lbl_id = xstrdup (lbl_low);
4674 attr.dw_attr = DW_AT_low_pc;
4675 attr.dw_attr_val.val_class = dw_val_class_lbl_id;
4676 attr.dw_attr_val.v.val_lbl_id = lbl_id;
4677 if (dwarf_split_debug_info && !force_direct)
4678 attr.dw_attr_val.val_entry
4679 = add_addr_table_entry (lbl_id, ate_kind_label);
4680 else
4681 attr.dw_attr_val.val_entry = NULL;
4682 add_dwarf_attr (die, &attr);
4684 attr.dw_attr = DW_AT_high_pc;
4685 if (dwarf_version < 4)
4686 attr.dw_attr_val.val_class = dw_val_class_lbl_id;
4687 else
4688 attr.dw_attr_val.val_class = dw_val_class_high_pc;
4689 lbl_id = xstrdup (lbl_high);
4690 attr.dw_attr_val.v.val_lbl_id = lbl_id;
4691 if (attr.dw_attr_val.val_class == dw_val_class_lbl_id
4692 && dwarf_split_debug_info && !force_direct)
4693 attr.dw_attr_val.val_entry
4694 = add_addr_table_entry (lbl_id, ate_kind_label);
4695 else
4696 attr.dw_attr_val.val_entry = NULL;
4697 add_dwarf_attr (die, &attr);
4700 /* Hash and equality functions for debug_str_hash. */
4702 hashval_t
4703 indirect_string_hasher::hash (indirect_string_node *x)
4705 return htab_hash_string (x->str);
4708 bool
4709 indirect_string_hasher::equal (indirect_string_node *x1, const char *x2)
4711 return strcmp (x1->str, x2) == 0;
4714 /* Add STR to the given string hash table. */
4716 static struct indirect_string_node *
4717 find_AT_string_in_table (const char *str,
4718 hash_table<indirect_string_hasher> *table,
4719 enum insert_option insert = INSERT)
4721 struct indirect_string_node *node;
4723 indirect_string_node **slot
4724 = table->find_slot_with_hash (str, htab_hash_string (str), insert);
4725 if (*slot == NULL)
4727 node = ggc_cleared_alloc<indirect_string_node> ();
4728 node->str = ggc_strdup (str);
4729 *slot = node;
4731 else
4732 node = *slot;
4734 node->refcount++;
4735 return node;
4738 /* Add STR to the indirect string hash table. */
4740 static struct indirect_string_node *
4741 find_AT_string (const char *str, enum insert_option insert = INSERT)
4743 if (! debug_str_hash)
4744 debug_str_hash = hash_table<indirect_string_hasher>::create_ggc (10);
4746 return find_AT_string_in_table (str, debug_str_hash, insert);
4749 /* Add a string attribute value to a DIE. */
4751 static inline void
4752 add_AT_string (dw_die_ref die, enum dwarf_attribute attr_kind, const char *str)
4754 dw_attr_node attr;
4755 struct indirect_string_node *node;
4757 node = find_AT_string (str);
4759 attr.dw_attr = attr_kind;
4760 attr.dw_attr_val.val_class = dw_val_class_str;
4761 attr.dw_attr_val.val_entry = NULL;
4762 attr.dw_attr_val.v.val_str = node;
4763 add_dwarf_attr (die, &attr);
4766 static inline const char *
4767 AT_string (dw_attr_node *a)
4769 gcc_assert (a && AT_class (a) == dw_val_class_str);
4770 return a->dw_attr_val.v.val_str->str;
4773 /* Call this function directly to bypass AT_string_form's logic to put
4774 the string inline in the die. */
4776 static void
4777 set_indirect_string (struct indirect_string_node *node)
4779 char label[MAX_ARTIFICIAL_LABEL_BYTES];
4780 /* Already indirect is a no op. */
4781 if (node->form == DW_FORM_strp
4782 || node->form == DW_FORM_line_strp
4783 || node->form == dwarf_FORM (DW_FORM_strx))
4785 gcc_assert (node->label);
4786 return;
4788 ASM_GENERATE_INTERNAL_LABEL (label, "LASF", dw2_string_counter);
4789 ++dw2_string_counter;
4790 node->label = xstrdup (label);
4792 if (!dwarf_split_debug_info)
4794 node->form = DW_FORM_strp;
4795 node->index = NOT_INDEXED;
4797 else
4799 node->form = dwarf_FORM (DW_FORM_strx);
4800 node->index = NO_INDEX_ASSIGNED;
4804 /* A helper function for dwarf2out_finish, called to reset indirect
4805 string decisions done for early LTO dwarf output before fat object
4806 dwarf output. */
4809 reset_indirect_string (indirect_string_node **h, void *)
4811 struct indirect_string_node *node = *h;
4812 if (node->form == DW_FORM_strp
4813 || node->form == DW_FORM_line_strp
4814 || node->form == dwarf_FORM (DW_FORM_strx))
4816 free (node->label);
4817 node->label = NULL;
4818 node->form = (dwarf_form) 0;
4819 node->index = 0;
4821 return 1;
4824 /* Add a string representing a file or filepath attribute value to a DIE. */
4826 static inline void
4827 add_filepath_AT_string (dw_die_ref die, enum dwarf_attribute attr_kind,
4828 const char *str)
4830 if (! asm_outputs_debug_line_str ())
4831 add_AT_string (die, attr_kind, str);
4832 else
4834 dw_attr_node attr;
4835 struct indirect_string_node *node;
4837 if (!debug_line_str_hash)
4838 debug_line_str_hash
4839 = hash_table<indirect_string_hasher>::create_ggc (10);
4841 node = find_AT_string_in_table (str, debug_line_str_hash);
4842 set_indirect_string (node);
4843 node->form = DW_FORM_line_strp;
4845 attr.dw_attr = attr_kind;
4846 attr.dw_attr_val.val_class = dw_val_class_str;
4847 attr.dw_attr_val.val_entry = NULL;
4848 attr.dw_attr_val.v.val_str = node;
4849 add_dwarf_attr (die, &attr);
4853 /* Find out whether a string should be output inline in DIE
4854 or out-of-line in .debug_str section. */
4856 static enum dwarf_form
4857 find_string_form (struct indirect_string_node *node)
4859 unsigned int len;
4861 if (node->form)
4862 return node->form;
4864 len = strlen (node->str) + 1;
4866 /* If the string is shorter or equal to the size of the reference, it is
4867 always better to put it inline. */
4868 if (len <= (unsigned) dwarf_offset_size || node->refcount == 0)
4869 return node->form = DW_FORM_string;
4871 /* If we cannot expect the linker to merge strings in .debug_str
4872 section, only put it into .debug_str if it is worth even in this
4873 single module. */
4874 if (DWARF2_INDIRECT_STRING_SUPPORT_MISSING_ON_TARGET
4875 || ((debug_str_section->common.flags & SECTION_MERGE) == 0
4876 && (len - dwarf_offset_size) * node->refcount <= len))
4877 return node->form = DW_FORM_string;
4879 set_indirect_string (node);
4881 return node->form;
4884 /* Find out whether the string referenced from the attribute should be
4885 output inline in DIE or out-of-line in .debug_str section. */
4887 static enum dwarf_form
4888 AT_string_form (dw_attr_node *a)
4890 gcc_assert (a && AT_class (a) == dw_val_class_str);
4891 return find_string_form (a->dw_attr_val.v.val_str);
4894 /* Add a DIE reference attribute value to a DIE. */
4896 static inline void
4897 add_AT_die_ref (dw_die_ref die, enum dwarf_attribute attr_kind, dw_die_ref targ_die)
4899 dw_attr_node attr;
4900 gcc_checking_assert (targ_die != NULL);
4902 /* With LTO we can end up trying to reference something we didn't create
4903 a DIE for. Avoid crashing later on a NULL referenced DIE. */
4904 if (targ_die == NULL)
4905 return;
4907 attr.dw_attr = attr_kind;
4908 attr.dw_attr_val.val_class = dw_val_class_die_ref;
4909 attr.dw_attr_val.val_entry = NULL;
4910 attr.dw_attr_val.v.val_die_ref.die = targ_die;
4911 attr.dw_attr_val.v.val_die_ref.external = 0;
4912 add_dwarf_attr (die, &attr);
4915 /* Change DIE reference REF to point to NEW_DIE instead. */
4917 static inline void
4918 change_AT_die_ref (dw_attr_node *ref, dw_die_ref new_die)
4920 gcc_assert (ref->dw_attr_val.val_class == dw_val_class_die_ref);
4921 ref->dw_attr_val.v.val_die_ref.die = new_die;
4922 ref->dw_attr_val.v.val_die_ref.external = 0;
4925 /* Add an AT_specification attribute to a DIE, and also make the back
4926 pointer from the specification to the definition. */
4928 static inline void
4929 add_AT_specification (dw_die_ref die, dw_die_ref targ_die)
4931 add_AT_die_ref (die, DW_AT_specification, targ_die);
4932 gcc_assert (!targ_die->die_definition);
4933 targ_die->die_definition = die;
4936 static inline dw_die_ref
4937 AT_ref (dw_attr_node *a)
4939 gcc_assert (a && AT_class (a) == dw_val_class_die_ref);
4940 return a->dw_attr_val.v.val_die_ref.die;
4943 static inline int
4944 AT_ref_external (dw_attr_node *a)
4946 if (a && AT_class (a) == dw_val_class_die_ref)
4947 return a->dw_attr_val.v.val_die_ref.external;
4949 return 0;
4952 static inline void
4953 set_AT_ref_external (dw_attr_node *a, int i)
4955 gcc_assert (a && AT_class (a) == dw_val_class_die_ref);
4956 a->dw_attr_val.v.val_die_ref.external = i;
4959 /* Add a location description attribute value to a DIE. */
4961 static inline void
4962 add_AT_loc (dw_die_ref die, enum dwarf_attribute attr_kind, dw_loc_descr_ref loc)
4964 dw_attr_node attr;
4966 attr.dw_attr = attr_kind;
4967 attr.dw_attr_val.val_class = dw_val_class_loc;
4968 attr.dw_attr_val.val_entry = NULL;
4969 attr.dw_attr_val.v.val_loc = loc;
4970 add_dwarf_attr (die, &attr);
4973 dw_loc_descr_ref
4974 AT_loc (dw_attr_node *a)
4976 gcc_assert (a && AT_class (a) == dw_val_class_loc);
4977 return a->dw_attr_val.v.val_loc;
4980 static inline void
4981 add_AT_loc_list (dw_die_ref die, enum dwarf_attribute attr_kind, dw_loc_list_ref loc_list)
4983 dw_attr_node attr;
4985 if (XCOFF_DEBUGGING_INFO && !HAVE_XCOFF_DWARF_EXTRAS)
4986 return;
4988 attr.dw_attr = attr_kind;
4989 attr.dw_attr_val.val_class = dw_val_class_loc_list;
4990 attr.dw_attr_val.val_entry = NULL;
4991 attr.dw_attr_val.v.val_loc_list = loc_list;
4992 add_dwarf_attr (die, &attr);
4993 have_location_lists = true;
4996 static inline dw_loc_list_ref
4997 AT_loc_list (dw_attr_node *a)
4999 gcc_assert (a && AT_class (a) == dw_val_class_loc_list);
5000 return a->dw_attr_val.v.val_loc_list;
5003 /* Add a view list attribute to DIE. It must have a DW_AT_location
5004 attribute, because the view list complements the location list. */
5006 static inline void
5007 add_AT_view_list (dw_die_ref die, enum dwarf_attribute attr_kind)
5009 dw_attr_node attr;
5011 if (XCOFF_DEBUGGING_INFO && !HAVE_XCOFF_DWARF_EXTRAS)
5012 return;
5014 attr.dw_attr = attr_kind;
5015 attr.dw_attr_val.val_class = dw_val_class_view_list;
5016 attr.dw_attr_val.val_entry = NULL;
5017 attr.dw_attr_val.v.val_view_list = die;
5018 add_dwarf_attr (die, &attr);
5019 gcc_checking_assert (get_AT (die, DW_AT_location));
5020 gcc_assert (have_location_lists);
5023 /* Return a pointer to the location list referenced by the attribute.
5024 If the named attribute is a view list, look up the corresponding
5025 DW_AT_location attribute and return its location list. */
5027 static inline dw_loc_list_ref *
5028 AT_loc_list_ptr (dw_attr_node *a)
5030 gcc_assert (a);
5031 switch (AT_class (a))
5033 case dw_val_class_loc_list:
5034 return &a->dw_attr_val.v.val_loc_list;
5035 case dw_val_class_view_list:
5037 dw_attr_node *l;
5038 l = get_AT (a->dw_attr_val.v.val_view_list, DW_AT_location);
5039 if (!l)
5040 return NULL;
5041 gcc_checking_assert (l + 1 == a);
5042 return AT_loc_list_ptr (l);
5044 default:
5045 gcc_unreachable ();
5049 /* Return the location attribute value associated with a view list
5050 attribute value. */
5052 static inline dw_val_node *
5053 view_list_to_loc_list_val_node (dw_val_node *val)
5055 gcc_assert (val->val_class == dw_val_class_view_list);
5056 dw_attr_node *loc = get_AT (val->v.val_view_list, DW_AT_location);
5057 if (!loc)
5058 return NULL;
5059 gcc_checking_assert (&(loc + 1)->dw_attr_val == val);
5060 gcc_assert (AT_class (loc) == dw_val_class_loc_list);
5061 return &loc->dw_attr_val;
5064 struct addr_hasher : ggc_ptr_hash<addr_table_entry>
5066 static hashval_t hash (addr_table_entry *);
5067 static bool equal (addr_table_entry *, addr_table_entry *);
5070 /* Table of entries into the .debug_addr section. */
5072 static GTY (()) hash_table<addr_hasher> *addr_index_table;
5074 /* Hash an address_table_entry. */
5076 hashval_t
5077 addr_hasher::hash (addr_table_entry *a)
5079 inchash::hash hstate;
5080 switch (a->kind)
5082 case ate_kind_rtx:
5083 hstate.add_int (0);
5084 break;
5085 case ate_kind_rtx_dtprel:
5086 hstate.add_int (1);
5087 break;
5088 case ate_kind_label:
5089 return htab_hash_string (a->addr.label);
5090 default:
5091 gcc_unreachable ();
5093 inchash::add_rtx (a->addr.rtl, hstate);
5094 return hstate.end ();
5097 /* Determine equality for two address_table_entries. */
5099 bool
5100 addr_hasher::equal (addr_table_entry *a1, addr_table_entry *a2)
5102 if (a1->kind != a2->kind)
5103 return false;
5104 switch (a1->kind)
5106 case ate_kind_rtx:
5107 case ate_kind_rtx_dtprel:
5108 return rtx_equal_p (a1->addr.rtl, a2->addr.rtl);
5109 case ate_kind_label:
5110 return strcmp (a1->addr.label, a2->addr.label) == 0;
5111 default:
5112 gcc_unreachable ();
5116 /* Initialize an addr_table_entry. */
5118 void
5119 init_addr_table_entry (addr_table_entry *e, enum ate_kind kind, void *addr)
5121 e->kind = kind;
5122 switch (kind)
5124 case ate_kind_rtx:
5125 case ate_kind_rtx_dtprel:
5126 e->addr.rtl = (rtx) addr;
5127 break;
5128 case ate_kind_label:
5129 e->addr.label = (char *) addr;
5130 break;
5132 e->refcount = 0;
5133 e->index = NO_INDEX_ASSIGNED;
5136 /* Add attr to the address table entry to the table. Defer setting an
5137 index until output time. */
5139 static addr_table_entry *
5140 add_addr_table_entry (void *addr, enum ate_kind kind)
5142 addr_table_entry *node;
5143 addr_table_entry finder;
5145 gcc_assert (dwarf_split_debug_info);
5146 if (! addr_index_table)
5147 addr_index_table = hash_table<addr_hasher>::create_ggc (10);
5148 init_addr_table_entry (&finder, kind, addr);
5149 addr_table_entry **slot = addr_index_table->find_slot (&finder, INSERT);
5151 if (*slot == HTAB_EMPTY_ENTRY)
5153 node = ggc_cleared_alloc<addr_table_entry> ();
5154 init_addr_table_entry (node, kind, addr);
5155 *slot = node;
5157 else
5158 node = *slot;
5160 node->refcount++;
5161 return node;
5164 /* Remove an entry from the addr table by decrementing its refcount.
5165 Strictly, decrementing the refcount would be enough, but the
5166 assertion that the entry is actually in the table has found
5167 bugs. */
5169 static void
5170 remove_addr_table_entry (addr_table_entry *entry)
5172 gcc_assert (dwarf_split_debug_info && addr_index_table);
5173 /* After an index is assigned, the table is frozen. */
5174 gcc_assert (entry->refcount > 0 && entry->index == NO_INDEX_ASSIGNED);
5175 entry->refcount--;
5178 /* Given a location list, remove all addresses it refers to from the
5179 address_table. */
5181 static void
5182 remove_loc_list_addr_table_entries (dw_loc_descr_ref descr)
5184 for (; descr; descr = descr->dw_loc_next)
5185 if (descr->dw_loc_oprnd1.val_entry != NULL)
5187 gcc_assert (descr->dw_loc_oprnd1.val_entry->index == NO_INDEX_ASSIGNED);
5188 remove_addr_table_entry (descr->dw_loc_oprnd1.val_entry);
5192 /* A helper function for dwarf2out_finish called through
5193 htab_traverse. Assign an addr_table_entry its index. All entries
5194 must be collected into the table when this function is called,
5195 because the indexing code relies on htab_traverse to traverse nodes
5196 in the same order for each run. */
5199 index_addr_table_entry (addr_table_entry **h, unsigned int *index)
5201 addr_table_entry *node = *h;
5203 /* Don't index unreferenced nodes. */
5204 if (node->refcount == 0)
5205 return 1;
5207 gcc_assert (node->index == NO_INDEX_ASSIGNED);
5208 node->index = *index;
5209 *index += 1;
5211 return 1;
5214 /* Return the tag of a given DIE. */
5216 enum dwarf_tag
5217 dw_get_die_tag (dw_die_ref die)
5219 return die->die_tag;
5222 /* Return a reference to the children list of a given DIE. */
5224 dw_die_ref
5225 dw_get_die_child (dw_die_ref die)
5227 return die->die_child;
5230 /* Return a reference to the sibling of a given DIE. */
5232 dw_die_ref
5233 dw_get_die_sib (dw_die_ref die)
5235 return die->die_sib;
5238 /* Add an address constant attribute value to a DIE. When using
5239 dwarf_split_debug_info, address attributes in dies destined for the
5240 final executable should be direct references--setting the parameter
5241 force_direct ensures this behavior. */
5243 static inline void
5244 add_AT_addr (dw_die_ref die, enum dwarf_attribute attr_kind, rtx addr,
5245 bool force_direct)
5247 dw_attr_node attr;
5249 attr.dw_attr = attr_kind;
5250 attr.dw_attr_val.val_class = dw_val_class_addr;
5251 attr.dw_attr_val.v.val_addr = addr;
5252 if (dwarf_split_debug_info && !force_direct)
5253 attr.dw_attr_val.val_entry = add_addr_table_entry (addr, ate_kind_rtx);
5254 else
5255 attr.dw_attr_val.val_entry = NULL;
5256 add_dwarf_attr (die, &attr);
5259 /* Get the RTX from to an address DIE attribute. */
5261 static inline rtx
5262 AT_addr (dw_attr_node *a)
5264 gcc_assert (a && AT_class (a) == dw_val_class_addr);
5265 return a->dw_attr_val.v.val_addr;
5268 /* Add a file attribute value to a DIE. */
5270 static inline void
5271 add_AT_file (dw_die_ref die, enum dwarf_attribute attr_kind,
5272 struct dwarf_file_data *fd)
5274 dw_attr_node attr;
5276 attr.dw_attr = attr_kind;
5277 attr.dw_attr_val.val_class = dw_val_class_file;
5278 attr.dw_attr_val.val_entry = NULL;
5279 attr.dw_attr_val.v.val_file = fd;
5280 add_dwarf_attr (die, &attr);
5283 /* Get the dwarf_file_data from a file DIE attribute. */
5285 static inline struct dwarf_file_data *
5286 AT_file (dw_attr_node *a)
5288 gcc_assert (a && (AT_class (a) == dw_val_class_file
5289 || AT_class (a) == dw_val_class_file_implicit));
5290 return a->dw_attr_val.v.val_file;
5293 #if VMS_DEBUGGING_INFO
5294 /* Add a vms delta attribute value to a DIE. */
5296 static inline void
5297 add_AT_vms_delta (dw_die_ref die, enum dwarf_attribute attr_kind,
5298 const char *lbl1, const char *lbl2)
5300 dw_attr_node attr;
5302 attr.dw_attr = attr_kind;
5303 attr.dw_attr_val.val_class = dw_val_class_vms_delta;
5304 attr.dw_attr_val.val_entry = NULL;
5305 attr.dw_attr_val.v.val_vms_delta.lbl1 = xstrdup (lbl1);
5306 attr.dw_attr_val.v.val_vms_delta.lbl2 = xstrdup (lbl2);
5307 add_dwarf_attr (die, &attr);
5309 #endif
5311 /* Add a symbolic view identifier attribute value to a DIE. */
5313 static inline void
5314 add_AT_symview (dw_die_ref die, enum dwarf_attribute attr_kind,
5315 const char *view_label)
5317 dw_attr_node attr;
5319 attr.dw_attr = attr_kind;
5320 attr.dw_attr_val.val_class = dw_val_class_symview;
5321 attr.dw_attr_val.val_entry = NULL;
5322 attr.dw_attr_val.v.val_symbolic_view = xstrdup (view_label);
5323 add_dwarf_attr (die, &attr);
5326 /* Add a label identifier attribute value to a DIE. */
5328 static inline void
5329 add_AT_lbl_id (dw_die_ref die, enum dwarf_attribute attr_kind,
5330 const char *lbl_id)
5332 dw_attr_node attr;
5334 attr.dw_attr = attr_kind;
5335 attr.dw_attr_val.val_class = dw_val_class_lbl_id;
5336 attr.dw_attr_val.val_entry = NULL;
5337 attr.dw_attr_val.v.val_lbl_id = xstrdup (lbl_id);
5338 if (dwarf_split_debug_info)
5339 attr.dw_attr_val.val_entry
5340 = add_addr_table_entry (attr.dw_attr_val.v.val_lbl_id,
5341 ate_kind_label);
5342 add_dwarf_attr (die, &attr);
5345 /* Add a section offset attribute value to a DIE, an offset into the
5346 debug_line section. */
5348 static inline void
5349 add_AT_lineptr (dw_die_ref die, enum dwarf_attribute attr_kind,
5350 const char *label)
5352 dw_attr_node attr;
5354 attr.dw_attr = attr_kind;
5355 attr.dw_attr_val.val_class = dw_val_class_lineptr;
5356 attr.dw_attr_val.val_entry = NULL;
5357 attr.dw_attr_val.v.val_lbl_id = xstrdup (label);
5358 add_dwarf_attr (die, &attr);
5361 /* Add a section offset attribute value to a DIE, an offset into the
5362 debug_macinfo section. */
5364 static inline void
5365 add_AT_macptr (dw_die_ref die, enum dwarf_attribute attr_kind,
5366 const char *label)
5368 dw_attr_node attr;
5370 attr.dw_attr = attr_kind;
5371 attr.dw_attr_val.val_class = dw_val_class_macptr;
5372 attr.dw_attr_val.val_entry = NULL;
5373 attr.dw_attr_val.v.val_lbl_id = xstrdup (label);
5374 add_dwarf_attr (die, &attr);
5377 /* Add a range_list attribute value to a DIE. When using
5378 dwarf_split_debug_info, address attributes in dies destined for the
5379 final executable should be direct references--setting the parameter
5380 force_direct ensures this behavior. */
5382 #define UNRELOCATED_OFFSET ((addr_table_entry *) 1)
5383 #define RELOCATED_OFFSET (NULL)
5385 static void
5386 add_AT_range_list (dw_die_ref die, enum dwarf_attribute attr_kind,
5387 long unsigned int offset, bool force_direct)
5389 dw_attr_node attr;
5391 attr.dw_attr = attr_kind;
5392 attr.dw_attr_val.val_class = dw_val_class_range_list;
5393 /* For the range_list attribute, use val_entry to store whether the
5394 offset should follow split-debug-info or normal semantics. This
5395 value is read in output_range_list_offset. */
5396 if (dwarf_split_debug_info && !force_direct)
5397 attr.dw_attr_val.val_entry = UNRELOCATED_OFFSET;
5398 else
5399 attr.dw_attr_val.val_entry = RELOCATED_OFFSET;
5400 attr.dw_attr_val.v.val_offset = offset;
5401 add_dwarf_attr (die, &attr);
5404 /* Return the start label of a delta attribute. */
5406 static inline const char *
5407 AT_vms_delta1 (dw_attr_node *a)
5409 gcc_assert (a && (AT_class (a) == dw_val_class_vms_delta));
5410 return a->dw_attr_val.v.val_vms_delta.lbl1;
5413 /* Return the end label of a delta attribute. */
5415 static inline const char *
5416 AT_vms_delta2 (dw_attr_node *a)
5418 gcc_assert (a && (AT_class (a) == dw_val_class_vms_delta));
5419 return a->dw_attr_val.v.val_vms_delta.lbl2;
5422 static inline const char *
5423 AT_lbl (dw_attr_node *a)
5425 gcc_assert (a && (AT_class (a) == dw_val_class_lbl_id
5426 || AT_class (a) == dw_val_class_lineptr
5427 || AT_class (a) == dw_val_class_macptr
5428 || AT_class (a) == dw_val_class_loclistsptr
5429 || AT_class (a) == dw_val_class_high_pc));
5430 return a->dw_attr_val.v.val_lbl_id;
5433 /* Get the attribute of type attr_kind. */
5435 dw_attr_node *
5436 get_AT (dw_die_ref die, enum dwarf_attribute attr_kind)
5438 dw_attr_node *a;
5439 unsigned ix;
5440 dw_die_ref spec = NULL;
5442 if (! die)
5443 return NULL;
5445 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
5446 if (a->dw_attr == attr_kind)
5447 return a;
5448 else if (a->dw_attr == DW_AT_specification
5449 || a->dw_attr == DW_AT_abstract_origin)
5450 spec = AT_ref (a);
5452 if (spec)
5453 return get_AT (spec, attr_kind);
5455 return NULL;
5458 /* Returns the parent of the declaration of DIE. */
5460 static dw_die_ref
5461 get_die_parent (dw_die_ref die)
5463 dw_die_ref t;
5465 if (!die)
5466 return NULL;
5468 if ((t = get_AT_ref (die, DW_AT_abstract_origin))
5469 || (t = get_AT_ref (die, DW_AT_specification)))
5470 die = t;
5472 return die->die_parent;
5475 /* Return the "low pc" attribute value, typically associated with a subprogram
5476 DIE. Return null if the "low pc" attribute is either not present, or if it
5477 cannot be represented as an assembler label identifier. */
5479 static inline const char *
5480 get_AT_low_pc (dw_die_ref die)
5482 dw_attr_node *a = get_AT (die, DW_AT_low_pc);
5484 return a ? AT_lbl (a) : NULL;
5487 /* Return the value of the string attribute designated by ATTR_KIND, or
5488 NULL if it is not present. */
5490 const char *
5491 get_AT_string (dw_die_ref die, enum dwarf_attribute attr_kind)
5493 dw_attr_node *a = get_AT (die, attr_kind);
5495 return a ? AT_string (a) : NULL;
5498 /* Return the value of the flag attribute designated by ATTR_KIND, or -1
5499 if it is not present. */
5502 get_AT_flag (dw_die_ref die, enum dwarf_attribute attr_kind)
5504 dw_attr_node *a = get_AT (die, attr_kind);
5506 return a ? AT_flag (a) : 0;
5509 /* Return the value of the unsigned attribute designated by ATTR_KIND, or 0
5510 if it is not present. */
5512 unsigned
5513 get_AT_unsigned (dw_die_ref die, enum dwarf_attribute attr_kind)
5515 dw_attr_node *a = get_AT (die, attr_kind);
5517 return a ? AT_unsigned (a) : 0;
5520 dw_die_ref
5521 get_AT_ref (dw_die_ref die, enum dwarf_attribute attr_kind)
5523 dw_attr_node *a = get_AT (die, attr_kind);
5525 return a ? AT_ref (a) : NULL;
5528 struct dwarf_file_data *
5529 get_AT_file (dw_die_ref die, enum dwarf_attribute attr_kind)
5531 dw_attr_node *a = get_AT (die, attr_kind);
5533 return a ? AT_file (a) : NULL;
5536 /* Return TRUE if the language is C. */
5538 static inline bool
5539 is_c (void)
5541 unsigned int lang = get_AT_unsigned (comp_unit_die (), DW_AT_language);
5543 return (lang == DW_LANG_C || lang == DW_LANG_C89 || lang == DW_LANG_C99
5544 || lang == DW_LANG_C11 || lang == DW_LANG_ObjC);
5549 /* Return TRUE if the language is C++. */
5551 static inline bool
5552 is_cxx (void)
5554 unsigned int lang = get_AT_unsigned (comp_unit_die (), DW_AT_language);
5556 return (lang == DW_LANG_C_plus_plus || lang == DW_LANG_ObjC_plus_plus
5557 || lang == DW_LANG_C_plus_plus_11 || lang == DW_LANG_C_plus_plus_14);
5560 /* Return TRUE if DECL was created by the C++ frontend. */
5562 static bool
5563 is_cxx (const_tree decl)
5565 if (in_lto_p)
5567 const_tree context = get_ultimate_context (decl);
5568 if (context && TRANSLATION_UNIT_LANGUAGE (context))
5569 return startswith (TRANSLATION_UNIT_LANGUAGE (context), "GNU C++");
5571 return is_cxx ();
5574 /* Return TRUE if the language is Fortran. */
5576 static inline bool
5577 is_fortran (void)
5579 unsigned int lang = get_AT_unsigned (comp_unit_die (), DW_AT_language);
5581 return (lang == DW_LANG_Fortran77
5582 || lang == DW_LANG_Fortran90
5583 || lang == DW_LANG_Fortran95
5584 || lang == DW_LANG_Fortran03
5585 || lang == DW_LANG_Fortran08);
5588 static inline bool
5589 is_fortran (const_tree decl)
5591 if (in_lto_p)
5593 const_tree context = get_ultimate_context (decl);
5594 if (context && TRANSLATION_UNIT_LANGUAGE (context))
5595 return (strncmp (TRANSLATION_UNIT_LANGUAGE (context),
5596 "GNU Fortran", 11) == 0
5597 || strcmp (TRANSLATION_UNIT_LANGUAGE (context),
5598 "GNU F77") == 0);
5600 return is_fortran ();
5603 /* Return TRUE if the language is Rust.
5604 Note, returns FALSE for dwarf_version < 5 && dwarf_strict. */
5606 static inline bool
5607 is_rust (void)
5609 unsigned int lang = get_AT_unsigned (comp_unit_die (), DW_AT_language);
5611 return lang == DW_LANG_Rust;
5614 /* Return TRUE if the language is Ada. */
5616 static inline bool
5617 is_ada (void)
5619 unsigned int lang = get_AT_unsigned (comp_unit_die (), DW_AT_language);
5621 return lang == DW_LANG_Ada95 || lang == DW_LANG_Ada83;
5624 /* Return TRUE if the language is D. */
5626 static inline bool
5627 is_dlang (void)
5629 unsigned int lang = get_AT_unsigned (comp_unit_die (), DW_AT_language);
5631 return lang == DW_LANG_D;
5634 /* Remove the specified attribute if present. Return TRUE if removal
5635 was successful. */
5637 static bool
5638 remove_AT (dw_die_ref die, enum dwarf_attribute attr_kind)
5640 dw_attr_node *a;
5641 unsigned ix;
5643 if (! die)
5644 return false;
5646 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
5647 if (a->dw_attr == attr_kind)
5649 if (AT_class (a) == dw_val_class_str)
5650 if (a->dw_attr_val.v.val_str->refcount)
5651 a->dw_attr_val.v.val_str->refcount--;
5653 /* vec::ordered_remove should help reduce the number of abbrevs
5654 that are needed. */
5655 die->die_attr->ordered_remove (ix);
5656 return true;
5658 return false;
5661 /* Remove CHILD from its parent. PREV must have the property that
5662 PREV->DIE_SIB == CHILD. Does not alter CHILD. */
5664 static void
5665 remove_child_with_prev (dw_die_ref child, dw_die_ref prev)
5667 gcc_assert (child->die_parent == prev->die_parent);
5668 gcc_assert (prev->die_sib == child);
5669 if (prev == child)
5671 gcc_assert (child->die_parent->die_child == child);
5672 prev = NULL;
5674 else
5675 prev->die_sib = child->die_sib;
5676 if (child->die_parent->die_child == child)
5677 child->die_parent->die_child = prev;
5678 child->die_sib = NULL;
5681 /* Replace OLD_CHILD with NEW_CHILD. PREV must have the property that
5682 PREV->DIE_SIB == OLD_CHILD. Does not alter OLD_CHILD. */
5684 static void
5685 replace_child (dw_die_ref old_child, dw_die_ref new_child, dw_die_ref prev)
5687 dw_die_ref parent = old_child->die_parent;
5689 gcc_assert (parent == prev->die_parent);
5690 gcc_assert (prev->die_sib == old_child);
5692 new_child->die_parent = parent;
5693 if (prev == old_child)
5695 gcc_assert (parent->die_child == old_child);
5696 new_child->die_sib = new_child;
5698 else
5700 prev->die_sib = new_child;
5701 new_child->die_sib = old_child->die_sib;
5703 if (old_child->die_parent->die_child == old_child)
5704 old_child->die_parent->die_child = new_child;
5705 old_child->die_sib = NULL;
5708 /* Move all children from OLD_PARENT to NEW_PARENT. */
5710 static void
5711 move_all_children (dw_die_ref old_parent, dw_die_ref new_parent)
5713 dw_die_ref c;
5714 new_parent->die_child = old_parent->die_child;
5715 old_parent->die_child = NULL;
5716 FOR_EACH_CHILD (new_parent, c, c->die_parent = new_parent);
5719 /* Remove child DIE whose die_tag is TAG. Do nothing if no child
5720 matches TAG. */
5722 static void
5723 remove_child_TAG (dw_die_ref die, enum dwarf_tag tag)
5725 dw_die_ref c;
5727 c = die->die_child;
5728 if (c) do {
5729 dw_die_ref prev = c;
5730 c = c->die_sib;
5731 while (c->die_tag == tag)
5733 remove_child_with_prev (c, prev);
5734 c->die_parent = NULL;
5735 /* Might have removed every child. */
5736 if (die->die_child == NULL)
5737 return;
5738 c = prev->die_sib;
5740 } while (c != die->die_child);
5743 /* Add a CHILD_DIE as the last child of DIE. */
5745 static void
5746 add_child_die (dw_die_ref die, dw_die_ref child_die)
5748 /* FIXME this should probably be an assert. */
5749 if (! die || ! child_die)
5750 return;
5751 gcc_assert (die != child_die);
5753 child_die->die_parent = die;
5754 if (die->die_child)
5756 child_die->die_sib = die->die_child->die_sib;
5757 die->die_child->die_sib = child_die;
5759 else
5760 child_die->die_sib = child_die;
5761 die->die_child = child_die;
5764 /* Like add_child_die, but put CHILD_DIE after AFTER_DIE. */
5766 static void
5767 add_child_die_after (dw_die_ref die, dw_die_ref child_die,
5768 dw_die_ref after_die)
5770 gcc_assert (die
5771 && child_die
5772 && after_die
5773 && die->die_child
5774 && die != child_die);
5776 child_die->die_parent = die;
5777 child_die->die_sib = after_die->die_sib;
5778 after_die->die_sib = child_die;
5779 if (die->die_child == after_die)
5780 die->die_child = child_die;
5783 /* Unassociate CHILD from its parent, and make its parent be
5784 NEW_PARENT. */
5786 static void
5787 reparent_child (dw_die_ref child, dw_die_ref new_parent)
5789 for (dw_die_ref p = child->die_parent->die_child; ; p = p->die_sib)
5790 if (p->die_sib == child)
5792 remove_child_with_prev (child, p);
5793 break;
5795 add_child_die (new_parent, child);
5798 /* Move CHILD, which must be a child of PARENT or the DIE for which PARENT
5799 is the specification, to the end of PARENT's list of children.
5800 This is done by removing and re-adding it. */
5802 static void
5803 splice_child_die (dw_die_ref parent, dw_die_ref child)
5805 /* We want the declaration DIE from inside the class, not the
5806 specification DIE at toplevel. */
5807 if (child->die_parent != parent)
5809 dw_die_ref tmp = get_AT_ref (child, DW_AT_specification);
5811 if (tmp)
5812 child = tmp;
5815 gcc_assert (child->die_parent == parent
5816 || (child->die_parent
5817 == get_AT_ref (parent, DW_AT_specification)));
5819 reparent_child (child, parent);
5822 /* Create and return a new die with TAG_VALUE as tag. */
5824 dw_die_ref
5825 new_die_raw (enum dwarf_tag tag_value)
5827 dw_die_ref die = ggc_cleared_alloc<die_node> ();
5828 die->die_tag = tag_value;
5829 return die;
5832 /* Create and return a new die with a parent of PARENT_DIE. If
5833 PARENT_DIE is NULL, the new DIE is placed in limbo and an
5834 associated tree T must be supplied to determine parenthood
5835 later. */
5837 static inline dw_die_ref
5838 new_die (enum dwarf_tag tag_value, dw_die_ref parent_die, tree t)
5840 dw_die_ref die = new_die_raw (tag_value);
5842 if (parent_die != NULL)
5843 add_child_die (parent_die, die);
5844 else
5846 limbo_die_node *limbo_node;
5848 /* No DIEs created after early dwarf should end up in limbo,
5849 because the limbo list should not persist past LTO
5850 streaming. */
5851 if (tag_value != DW_TAG_compile_unit
5852 /* These are allowed because they're generated while
5853 breaking out COMDAT units late. */
5854 && tag_value != DW_TAG_type_unit
5855 && tag_value != DW_TAG_skeleton_unit
5856 && !early_dwarf
5857 /* Allow nested functions to live in limbo because they will
5858 only temporarily live there, as decls_for_scope will fix
5859 them up. */
5860 && (TREE_CODE (t) != FUNCTION_DECL
5861 || !decl_function_context (t))
5862 /* Same as nested functions above but for types. Types that
5863 are local to a function will be fixed in
5864 decls_for_scope. */
5865 && (!RECORD_OR_UNION_TYPE_P (t)
5866 || !TYPE_CONTEXT (t)
5867 || TREE_CODE (TYPE_CONTEXT (t)) != FUNCTION_DECL)
5868 /* FIXME debug-early: Allow late limbo DIE creation for LTO,
5869 especially in the ltrans stage, but once we implement LTO
5870 dwarf streaming, we should remove this exception. */
5871 && !in_lto_p)
5873 fprintf (stderr, "symbol ended up in limbo too late:");
5874 debug_generic_stmt (t);
5875 gcc_unreachable ();
5878 limbo_node = ggc_cleared_alloc<limbo_die_node> ();
5879 limbo_node->die = die;
5880 limbo_node->created_for = t;
5881 limbo_node->next = limbo_die_list;
5882 limbo_die_list = limbo_node;
5885 return die;
5888 /* Return the DIE associated with the given type specifier. */
5890 dw_die_ref
5891 lookup_type_die (tree type)
5893 dw_die_ref die = TYPE_SYMTAB_DIE (type);
5894 if (die && die->removed)
5896 TYPE_SYMTAB_DIE (type) = NULL;
5897 TREE_ASM_WRITTEN (type) = 0;
5898 return NULL;
5900 return die;
5903 /* Given a TYPE_DIE representing the type TYPE, if TYPE is an
5904 anonymous type named by the typedef TYPE_DIE, return the DIE of the
5905 anonymous type instead the one of the naming typedef. */
5907 static inline dw_die_ref
5908 strip_naming_typedef (tree type, dw_die_ref type_die)
5910 if (type
5911 && TREE_CODE (type) == RECORD_TYPE
5912 && type_die
5913 && type_die->die_tag == DW_TAG_typedef
5914 && is_naming_typedef_decl (TYPE_NAME (type)))
5915 type_die = get_AT_ref (type_die, DW_AT_type);
5916 return type_die;
5919 /* Like lookup_type_die, but if type is an anonymous type named by a
5920 typedef[1], return the DIE of the anonymous type instead the one of
5921 the naming typedef. This is because in gen_typedef_die, we did
5922 equate the anonymous struct named by the typedef with the DIE of
5923 the naming typedef. So by default, lookup_type_die on an anonymous
5924 struct yields the DIE of the naming typedef.
5926 [1]: Read the comment of is_naming_typedef_decl to learn about what
5927 a naming typedef is. */
5929 static inline dw_die_ref
5930 lookup_type_die_strip_naming_typedef (tree type)
5932 dw_die_ref die = lookup_type_die (type);
5933 return strip_naming_typedef (type, die);
5936 /* Equate a DIE to a given type specifier. */
5938 static inline void
5939 equate_type_number_to_die (tree type, dw_die_ref type_die)
5941 TYPE_SYMTAB_DIE (type) = type_die;
5944 static dw_die_ref maybe_create_die_with_external_ref (tree);
5945 struct GTY(()) sym_off_pair
5947 const char * GTY((skip)) sym;
5948 unsigned HOST_WIDE_INT off;
5950 static GTY(()) hash_map<tree, sym_off_pair> *external_die_map;
5952 /* Returns a hash value for X (which really is a die_struct). */
5954 inline hashval_t
5955 decl_die_hasher::hash (die_node *x)
5957 return (hashval_t) x->decl_id;
5960 /* Return true if decl_id of die_struct X is the same as UID of decl *Y. */
5962 inline bool
5963 decl_die_hasher::equal (die_node *x, tree y)
5965 return (x->decl_id == DECL_UID (y));
5968 /* Return the DIE associated with a given declaration. */
5970 dw_die_ref
5971 lookup_decl_die (tree decl)
5973 dw_die_ref *die = decl_die_table->find_slot_with_hash (decl, DECL_UID (decl),
5974 NO_INSERT);
5975 if (!die)
5977 if (in_lto_p)
5978 return maybe_create_die_with_external_ref (decl);
5979 return NULL;
5981 if ((*die)->removed)
5983 decl_die_table->clear_slot (die);
5984 return NULL;
5986 return *die;
5990 /* Return the DIE associated with BLOCK. */
5992 static inline dw_die_ref
5993 lookup_block_die (tree block)
5995 dw_die_ref die = BLOCK_DIE (block);
5996 if (!die && in_lto_p)
5997 return maybe_create_die_with_external_ref (block);
5998 return die;
6001 /* Associate DIE with BLOCK. */
6003 static inline void
6004 equate_block_to_die (tree block, dw_die_ref die)
6006 BLOCK_DIE (block) = die;
6008 #undef BLOCK_DIE
6011 /* For DECL which might have early dwarf output query a SYMBOL + OFFSET
6012 style reference. Return true if we found one refering to a DIE for
6013 DECL, otherwise return false. */
6015 static bool
6016 dwarf2out_die_ref_for_decl (tree decl, const char **sym,
6017 unsigned HOST_WIDE_INT *off)
6019 dw_die_ref die;
6021 if (in_lto_p)
6023 /* During WPA stage and incremental linking we use a hash-map
6024 to store the decl <-> label + offset map. */
6025 if (!external_die_map)
6026 return false;
6027 sym_off_pair *desc = external_die_map->get (decl);
6028 if (!desc)
6029 return false;
6030 *sym = desc->sym;
6031 *off = desc->off;
6032 return true;
6035 if (TREE_CODE (decl) == BLOCK)
6036 die = lookup_block_die (decl);
6037 else
6038 die = lookup_decl_die (decl);
6039 if (!die)
6040 return false;
6042 /* Similar to get_ref_die_offset_label, but using the "correct"
6043 label. */
6044 *off = die->die_offset;
6045 while (die->die_parent)
6046 die = die->die_parent;
6047 /* For the containing CU DIE we compute a die_symbol in
6048 compute_comp_unit_symbol. */
6049 gcc_assert (die->die_tag == DW_TAG_compile_unit
6050 && die->die_id.die_symbol != NULL);
6051 *sym = die->die_id.die_symbol;
6052 return true;
6055 /* Add a reference of kind ATTR_KIND to a DIE at SYMBOL + OFFSET to DIE. */
6057 static void
6058 add_AT_external_die_ref (dw_die_ref die, enum dwarf_attribute attr_kind,
6059 const char *symbol, HOST_WIDE_INT offset)
6061 /* Create a fake DIE that contains the reference. Don't use
6062 new_die because we don't want to end up in the limbo list. */
6063 /* ??? We probably want to share these, thus put a ref to the DIE
6064 we create here to the external_die_map entry. */
6065 dw_die_ref ref = new_die_raw (die->die_tag);
6066 ref->die_id.die_symbol = symbol;
6067 ref->die_offset = offset;
6068 ref->with_offset = 1;
6069 add_AT_die_ref (die, attr_kind, ref);
6072 /* Create a DIE for DECL if required and add a reference to a DIE
6073 at SYMBOL + OFFSET which contains attributes dumped early. */
6075 static void
6076 dwarf2out_register_external_die (tree decl, const char *sym,
6077 unsigned HOST_WIDE_INT off)
6079 if (debug_info_level == DINFO_LEVEL_NONE)
6080 return;
6082 if (!external_die_map)
6083 external_die_map = hash_map<tree, sym_off_pair>::create_ggc (1000);
6084 gcc_checking_assert (!external_die_map->get (decl));
6085 sym_off_pair p = { IDENTIFIER_POINTER (get_identifier (sym)), off };
6086 external_die_map->put (decl, p);
6089 /* If we have a registered external DIE for DECL return a new DIE for
6090 the concrete instance with an appropriate abstract origin. */
6092 static dw_die_ref
6093 maybe_create_die_with_external_ref (tree decl)
6095 if (!external_die_map)
6096 return NULL;
6097 sym_off_pair *desc = external_die_map->get (decl);
6098 if (!desc)
6099 return NULL;
6101 const char *sym = desc->sym;
6102 unsigned HOST_WIDE_INT off = desc->off;
6103 external_die_map->remove (decl);
6105 in_lto_p = false;
6106 dw_die_ref die = (TREE_CODE (decl) == BLOCK
6107 ? lookup_block_die (decl) : lookup_decl_die (decl));
6108 gcc_assert (!die);
6109 in_lto_p = true;
6111 tree ctx;
6112 dw_die_ref parent = NULL;
6113 /* Need to lookup a DIE for the decls context - the containing
6114 function or translation unit. */
6115 if (TREE_CODE (decl) == BLOCK)
6117 ctx = BLOCK_SUPERCONTEXT (decl);
6118 /* ??? We do not output DIEs for all scopes thus skip as
6119 many DIEs as needed. */
6120 while (TREE_CODE (ctx) == BLOCK
6121 && !lookup_block_die (ctx))
6122 ctx = BLOCK_SUPERCONTEXT (ctx);
6124 else
6125 ctx = DECL_CONTEXT (decl);
6126 /* Peel types in the context stack. */
6127 while (ctx && TYPE_P (ctx))
6128 ctx = TYPE_CONTEXT (ctx);
6129 /* Likewise namespaces in case we do not want to emit DIEs for them. */
6130 if (debug_info_level <= DINFO_LEVEL_TERSE)
6131 while (ctx && TREE_CODE (ctx) == NAMESPACE_DECL)
6132 ctx = DECL_CONTEXT (ctx);
6133 if (ctx)
6135 if (TREE_CODE (ctx) == BLOCK)
6136 parent = lookup_block_die (ctx);
6137 else if (TREE_CODE (ctx) == TRANSLATION_UNIT_DECL
6138 /* Keep the 1:1 association during WPA. */
6139 && !flag_wpa
6140 && flag_incremental_link != INCREMENTAL_LINK_LTO)
6141 /* Otherwise all late annotations go to the main CU which
6142 imports the original CUs. */
6143 parent = comp_unit_die ();
6144 else if (TREE_CODE (ctx) == FUNCTION_DECL
6145 && TREE_CODE (decl) != FUNCTION_DECL
6146 && TREE_CODE (decl) != PARM_DECL
6147 && TREE_CODE (decl) != RESULT_DECL
6148 && TREE_CODE (decl) != BLOCK)
6149 /* Leave function local entities parent determination to when
6150 we process scope vars. */
6152 else
6153 parent = lookup_decl_die (ctx);
6155 else
6156 /* In some cases the FEs fail to set DECL_CONTEXT properly.
6157 Handle this case gracefully by globalizing stuff. */
6158 parent = comp_unit_die ();
6159 /* Create a DIE "stub". */
6160 switch (TREE_CODE (decl))
6162 case TRANSLATION_UNIT_DECL:
6164 die = comp_unit_die ();
6165 /* We re-target all CU decls to the LTRANS CU DIE, so no need
6166 to create a DIE for the original CUs. */
6167 return die;
6169 case NAMESPACE_DECL:
6170 if (is_fortran (decl))
6171 die = new_die (DW_TAG_module, parent, decl);
6172 else
6173 die = new_die (DW_TAG_namespace, parent, decl);
6174 break;
6175 case FUNCTION_DECL:
6176 die = new_die (DW_TAG_subprogram, parent, decl);
6177 break;
6178 case VAR_DECL:
6179 die = new_die (DW_TAG_variable, parent, decl);
6180 break;
6181 case RESULT_DECL:
6182 die = new_die (DW_TAG_variable, parent, decl);
6183 break;
6184 case PARM_DECL:
6185 die = new_die (DW_TAG_formal_parameter, parent, decl);
6186 break;
6187 case CONST_DECL:
6188 die = new_die (DW_TAG_constant, parent, decl);
6189 break;
6190 case LABEL_DECL:
6191 die = new_die (DW_TAG_label, parent, decl);
6192 break;
6193 case BLOCK:
6194 die = new_die (DW_TAG_lexical_block, parent, decl);
6195 break;
6196 default:
6197 gcc_unreachable ();
6199 if (TREE_CODE (decl) == BLOCK)
6200 equate_block_to_die (decl, die);
6201 else
6202 equate_decl_number_to_die (decl, die);
6204 add_desc_attribute (die, decl);
6206 /* Add a reference to the DIE providing early debug at $sym + off. */
6207 add_AT_external_die_ref (die, DW_AT_abstract_origin, sym, off);
6209 return die;
6212 /* Returns a hash value for X (which really is a var_loc_list). */
6214 inline hashval_t
6215 decl_loc_hasher::hash (var_loc_list *x)
6217 return (hashval_t) x->decl_id;
6220 /* Return true if decl_id of var_loc_list X is the same as
6221 UID of decl *Y. */
6223 inline bool
6224 decl_loc_hasher::equal (var_loc_list *x, const_tree y)
6226 return (x->decl_id == DECL_UID (y));
6229 /* Return the var_loc list associated with a given declaration. */
6231 static inline var_loc_list *
6232 lookup_decl_loc (const_tree decl)
6234 if (!decl_loc_table)
6235 return NULL;
6236 return decl_loc_table->find_with_hash (decl, DECL_UID (decl));
6239 /* Returns a hash value for X (which really is a cached_dw_loc_list_list). */
6241 inline hashval_t
6242 dw_loc_list_hasher::hash (cached_dw_loc_list *x)
6244 return (hashval_t) x->decl_id;
6247 /* Return true if decl_id of cached_dw_loc_list X is the same as
6248 UID of decl *Y. */
6250 inline bool
6251 dw_loc_list_hasher::equal (cached_dw_loc_list *x, const_tree y)
6253 return (x->decl_id == DECL_UID (y));
6256 /* Equate a DIE to a particular declaration. */
6258 static void
6259 equate_decl_number_to_die (tree decl, dw_die_ref decl_die)
6261 unsigned int decl_id = DECL_UID (decl);
6263 *decl_die_table->find_slot_with_hash (decl, decl_id, INSERT) = decl_die;
6264 decl_die->decl_id = decl_id;
6267 /* Return how many bits covers PIECE EXPR_LIST. */
6269 static HOST_WIDE_INT
6270 decl_piece_bitsize (rtx piece)
6272 int ret = (int) GET_MODE (piece);
6273 if (ret)
6274 return ret;
6275 gcc_assert (GET_CODE (XEXP (piece, 0)) == CONCAT
6276 && CONST_INT_P (XEXP (XEXP (piece, 0), 0)));
6277 return INTVAL (XEXP (XEXP (piece, 0), 0));
6280 /* Return pointer to the location of location note in PIECE EXPR_LIST. */
6282 static rtx *
6283 decl_piece_varloc_ptr (rtx piece)
6285 if ((int) GET_MODE (piece))
6286 return &XEXP (piece, 0);
6287 else
6288 return &XEXP (XEXP (piece, 0), 1);
6291 /* Create an EXPR_LIST for location note LOC_NOTE covering BITSIZE bits.
6292 Next is the chain of following piece nodes. */
6294 static rtx_expr_list *
6295 decl_piece_node (rtx loc_note, HOST_WIDE_INT bitsize, rtx next)
6297 if (bitsize > 0 && bitsize <= (int) MAX_MACHINE_MODE)
6298 return alloc_EXPR_LIST (bitsize, loc_note, next);
6299 else
6300 return alloc_EXPR_LIST (0, gen_rtx_CONCAT (VOIDmode,
6301 GEN_INT (bitsize),
6302 loc_note), next);
6305 /* Return rtx that should be stored into loc field for
6306 LOC_NOTE and BITPOS/BITSIZE. */
6308 static rtx
6309 construct_piece_list (rtx loc_note, HOST_WIDE_INT bitpos,
6310 HOST_WIDE_INT bitsize)
6312 if (bitsize != -1)
6314 loc_note = decl_piece_node (loc_note, bitsize, NULL_RTX);
6315 if (bitpos != 0)
6316 loc_note = decl_piece_node (NULL_RTX, bitpos, loc_note);
6318 return loc_note;
6321 /* This function either modifies location piece list *DEST in
6322 place (if SRC and INNER is NULL), or copies location piece list
6323 *SRC to *DEST while modifying it. Location BITPOS is modified
6324 to contain LOC_NOTE, any pieces overlapping it are removed resp.
6325 not copied and if needed some padding around it is added.
6326 When modifying in place, DEST should point to EXPR_LIST where
6327 earlier pieces cover PIECE_BITPOS bits, when copying SRC points
6328 to the start of the whole list and INNER points to the EXPR_LIST
6329 where earlier pieces cover PIECE_BITPOS bits. */
6331 static void
6332 adjust_piece_list (rtx *dest, rtx *src, rtx *inner,
6333 HOST_WIDE_INT bitpos, HOST_WIDE_INT piece_bitpos,
6334 HOST_WIDE_INT bitsize, rtx loc_note)
6336 HOST_WIDE_INT diff;
6337 bool copy = inner != NULL;
6339 if (copy)
6341 /* First copy all nodes preceding the current bitpos. */
6342 while (src != inner)
6344 *dest = decl_piece_node (*decl_piece_varloc_ptr (*src),
6345 decl_piece_bitsize (*src), NULL_RTX);
6346 dest = &XEXP (*dest, 1);
6347 src = &XEXP (*src, 1);
6350 /* Add padding if needed. */
6351 if (bitpos != piece_bitpos)
6353 *dest = decl_piece_node (NULL_RTX, bitpos - piece_bitpos,
6354 copy ? NULL_RTX : *dest);
6355 dest = &XEXP (*dest, 1);
6357 else if (*dest && decl_piece_bitsize (*dest) == bitsize)
6359 gcc_assert (!copy);
6360 /* A piece with correct bitpos and bitsize already exist,
6361 just update the location for it and return. */
6362 *decl_piece_varloc_ptr (*dest) = loc_note;
6363 return;
6365 /* Add the piece that changed. */
6366 *dest = decl_piece_node (loc_note, bitsize, copy ? NULL_RTX : *dest);
6367 dest = &XEXP (*dest, 1);
6368 /* Skip over pieces that overlap it. */
6369 diff = bitpos - piece_bitpos + bitsize;
6370 if (!copy)
6371 src = dest;
6372 while (diff > 0 && *src)
6374 rtx piece = *src;
6375 diff -= decl_piece_bitsize (piece);
6376 if (copy)
6377 src = &XEXP (piece, 1);
6378 else
6380 *src = XEXP (piece, 1);
6381 free_EXPR_LIST_node (piece);
6384 /* Add padding if needed. */
6385 if (diff < 0 && *src)
6387 if (!copy)
6388 dest = src;
6389 *dest = decl_piece_node (NULL_RTX, -diff, copy ? NULL_RTX : *dest);
6390 dest = &XEXP (*dest, 1);
6392 if (!copy)
6393 return;
6394 /* Finally copy all nodes following it. */
6395 while (*src)
6397 *dest = decl_piece_node (*decl_piece_varloc_ptr (*src),
6398 decl_piece_bitsize (*src), NULL_RTX);
6399 dest = &XEXP (*dest, 1);
6400 src = &XEXP (*src, 1);
6404 /* Add a variable location node to the linked list for DECL. */
6406 static struct var_loc_node *
6407 add_var_loc_to_decl (tree decl, rtx loc_note, const char *label, var_loc_view view)
6409 unsigned int decl_id;
6410 var_loc_list *temp;
6411 struct var_loc_node *loc = NULL;
6412 HOST_WIDE_INT bitsize = -1, bitpos = -1;
6414 if (VAR_P (decl) && DECL_HAS_DEBUG_EXPR_P (decl))
6416 tree realdecl = DECL_DEBUG_EXPR (decl);
6417 if (handled_component_p (realdecl)
6418 || (TREE_CODE (realdecl) == MEM_REF
6419 && TREE_CODE (TREE_OPERAND (realdecl, 0)) == ADDR_EXPR))
6421 bool reverse;
6422 tree innerdecl = get_ref_base_and_extent_hwi (realdecl, &bitpos,
6423 &bitsize, &reverse);
6424 if (!innerdecl
6425 || !DECL_P (innerdecl)
6426 || DECL_IGNORED_P (innerdecl)
6427 || TREE_STATIC (innerdecl)
6428 || bitsize == 0
6429 || bitpos + bitsize > 256)
6430 return NULL;
6431 decl = innerdecl;
6435 decl_id = DECL_UID (decl);
6436 var_loc_list **slot
6437 = decl_loc_table->find_slot_with_hash (decl, decl_id, INSERT);
6438 if (*slot == NULL)
6440 temp = ggc_cleared_alloc<var_loc_list> ();
6441 temp->decl_id = decl_id;
6442 *slot = temp;
6444 else
6445 temp = *slot;
6447 /* For PARM_DECLs try to keep around the original incoming value,
6448 even if that means we'll emit a zero-range .debug_loc entry. */
6449 if (temp->last
6450 && temp->first == temp->last
6451 && TREE_CODE (decl) == PARM_DECL
6452 && NOTE_P (temp->first->loc)
6453 && NOTE_VAR_LOCATION_DECL (temp->first->loc) == decl
6454 && DECL_INCOMING_RTL (decl)
6455 && NOTE_VAR_LOCATION_LOC (temp->first->loc)
6456 && GET_CODE (NOTE_VAR_LOCATION_LOC (temp->first->loc))
6457 == GET_CODE (DECL_INCOMING_RTL (decl))
6458 && prev_real_insn (as_a<rtx_insn *> (temp->first->loc)) == NULL_RTX
6459 && (bitsize != -1
6460 || !rtx_equal_p (NOTE_VAR_LOCATION_LOC (temp->first->loc),
6461 NOTE_VAR_LOCATION_LOC (loc_note))
6462 || (NOTE_VAR_LOCATION_STATUS (temp->first->loc)
6463 != NOTE_VAR_LOCATION_STATUS (loc_note))))
6465 loc = ggc_cleared_alloc<var_loc_node> ();
6466 temp->first->next = loc;
6467 temp->last = loc;
6468 loc->loc = construct_piece_list (loc_note, bitpos, bitsize);
6470 else if (temp->last)
6472 struct var_loc_node *last = temp->last, *unused = NULL;
6473 rtx *piece_loc = NULL, last_loc_note;
6474 HOST_WIDE_INT piece_bitpos = 0;
6475 if (last->next)
6477 last = last->next;
6478 gcc_assert (last->next == NULL);
6480 if (bitsize != -1 && GET_CODE (last->loc) == EXPR_LIST)
6482 piece_loc = &last->loc;
6485 HOST_WIDE_INT cur_bitsize = decl_piece_bitsize (*piece_loc);
6486 if (piece_bitpos + cur_bitsize > bitpos)
6487 break;
6488 piece_bitpos += cur_bitsize;
6489 piece_loc = &XEXP (*piece_loc, 1);
6491 while (*piece_loc);
6493 /* TEMP->LAST here is either pointer to the last but one or
6494 last element in the chained list, LAST is pointer to the
6495 last element. */
6496 if (label && strcmp (last->label, label) == 0 && last->view == view)
6498 /* For SRA optimized variables if there weren't any real
6499 insns since last note, just modify the last node. */
6500 if (piece_loc != NULL)
6502 adjust_piece_list (piece_loc, NULL, NULL,
6503 bitpos, piece_bitpos, bitsize, loc_note);
6504 return NULL;
6506 /* If the last note doesn't cover any instructions, remove it. */
6507 if (temp->last != last)
6509 temp->last->next = NULL;
6510 unused = last;
6511 last = temp->last;
6512 gcc_assert (strcmp (last->label, label) != 0 || last->view != view);
6514 else
6516 gcc_assert (temp->first == temp->last
6517 || (temp->first->next == temp->last
6518 && TREE_CODE (decl) == PARM_DECL));
6519 memset (temp->last, '\0', sizeof (*temp->last));
6520 temp->last->loc = construct_piece_list (loc_note, bitpos, bitsize);
6521 return temp->last;
6524 if (bitsize == -1 && NOTE_P (last->loc))
6525 last_loc_note = last->loc;
6526 else if (piece_loc != NULL
6527 && *piece_loc != NULL_RTX
6528 && piece_bitpos == bitpos
6529 && decl_piece_bitsize (*piece_loc) == bitsize)
6530 last_loc_note = *decl_piece_varloc_ptr (*piece_loc);
6531 else
6532 last_loc_note = NULL_RTX;
6533 /* If the current location is the same as the end of the list,
6534 and either both or neither of the locations is uninitialized,
6535 we have nothing to do. */
6536 if (last_loc_note == NULL_RTX
6537 || (!rtx_equal_p (NOTE_VAR_LOCATION_LOC (last_loc_note),
6538 NOTE_VAR_LOCATION_LOC (loc_note)))
6539 || ((NOTE_VAR_LOCATION_STATUS (last_loc_note)
6540 != NOTE_VAR_LOCATION_STATUS (loc_note))
6541 && ((NOTE_VAR_LOCATION_STATUS (last_loc_note)
6542 == VAR_INIT_STATUS_UNINITIALIZED)
6543 || (NOTE_VAR_LOCATION_STATUS (loc_note)
6544 == VAR_INIT_STATUS_UNINITIALIZED))))
6546 /* Add LOC to the end of list and update LAST. If the last
6547 element of the list has been removed above, reuse its
6548 memory for the new node, otherwise allocate a new one. */
6549 if (unused)
6551 loc = unused;
6552 memset (loc, '\0', sizeof (*loc));
6554 else
6555 loc = ggc_cleared_alloc<var_loc_node> ();
6556 if (bitsize == -1 || piece_loc == NULL)
6557 loc->loc = construct_piece_list (loc_note, bitpos, bitsize);
6558 else
6559 adjust_piece_list (&loc->loc, &last->loc, piece_loc,
6560 bitpos, piece_bitpos, bitsize, loc_note);
6561 last->next = loc;
6562 /* Ensure TEMP->LAST will point either to the new last but one
6563 element of the chain, or to the last element in it. */
6564 if (last != temp->last)
6565 temp->last = last;
6567 else if (unused)
6568 ggc_free (unused);
6570 else
6572 loc = ggc_cleared_alloc<var_loc_node> ();
6573 temp->first = loc;
6574 temp->last = loc;
6575 loc->loc = construct_piece_list (loc_note, bitpos, bitsize);
6577 return loc;
6580 /* Keep track of the number of spaces used to indent the
6581 output of the debugging routines that print the structure of
6582 the DIE internal representation. */
6583 static int print_indent;
6585 /* Indent the line the number of spaces given by print_indent. */
6587 static inline void
6588 print_spaces (FILE *outfile)
6590 fprintf (outfile, "%*s", print_indent, "");
6593 /* Print a type signature in hex. */
6595 static inline void
6596 print_signature (FILE *outfile, char *sig)
6598 int i;
6600 for (i = 0; i < DWARF_TYPE_SIGNATURE_SIZE; i++)
6601 fprintf (outfile, "%02x", sig[i] & 0xff);
6604 static inline void
6605 print_discr_value (FILE *outfile, dw_discr_value *discr_value)
6607 if (discr_value->pos)
6608 fprintf (outfile, HOST_WIDE_INT_PRINT_UNSIGNED, discr_value->v.sval);
6609 else
6610 fprintf (outfile, HOST_WIDE_INT_PRINT_DEC, discr_value->v.uval);
6613 static void print_loc_descr (dw_loc_descr_ref, FILE *);
6615 /* Print the value associated to the VAL DWARF value node to OUTFILE. If
6616 RECURSE, output location descriptor operations. */
6618 static void
6619 print_dw_val (dw_val_node *val, bool recurse, FILE *outfile)
6621 switch (val->val_class)
6623 case dw_val_class_addr:
6624 fprintf (outfile, "address");
6625 break;
6626 case dw_val_class_offset:
6627 fprintf (outfile, "offset");
6628 break;
6629 case dw_val_class_loc:
6630 fprintf (outfile, "location descriptor");
6631 if (val->v.val_loc == NULL)
6632 fprintf (outfile, " -> <null>\n");
6633 else if (recurse)
6635 fprintf (outfile, ":\n");
6636 print_indent += 4;
6637 print_loc_descr (val->v.val_loc, outfile);
6638 print_indent -= 4;
6640 else
6642 if (flag_dump_noaddr || flag_dump_unnumbered)
6643 fprintf (outfile, " #\n");
6644 else
6645 fprintf (outfile, " (%p)\n", (void *) val->v.val_loc);
6647 break;
6648 case dw_val_class_loc_list:
6649 fprintf (outfile, "location list -> label:%s",
6650 val->v.val_loc_list->ll_symbol);
6651 break;
6652 case dw_val_class_view_list:
6653 val = view_list_to_loc_list_val_node (val);
6654 fprintf (outfile, "location list with views -> labels:%s and %s",
6655 val->v.val_loc_list->ll_symbol,
6656 val->v.val_loc_list->vl_symbol);
6657 break;
6658 case dw_val_class_range_list:
6659 fprintf (outfile, "range list");
6660 break;
6661 case dw_val_class_const:
6662 case dw_val_class_const_implicit:
6663 fprintf (outfile, HOST_WIDE_INT_PRINT_DEC, val->v.val_int);
6664 break;
6665 case dw_val_class_unsigned_const:
6666 case dw_val_class_unsigned_const_implicit:
6667 fprintf (outfile, HOST_WIDE_INT_PRINT_UNSIGNED, val->v.val_unsigned);
6668 break;
6669 case dw_val_class_const_double:
6670 fprintf (outfile, "constant (" HOST_WIDE_INT_PRINT_DEC","\
6671 HOST_WIDE_INT_PRINT_UNSIGNED")",
6672 val->v.val_double.high,
6673 val->v.val_double.low);
6674 break;
6675 case dw_val_class_wide_int:
6677 int i = val->v.val_wide->get_len ();
6678 fprintf (outfile, "constant (");
6679 gcc_assert (i > 0);
6680 if (val->v.val_wide->elt (i - 1) == 0)
6681 fprintf (outfile, "0x");
6682 fprintf (outfile, HOST_WIDE_INT_PRINT_HEX,
6683 val->v.val_wide->elt (--i));
6684 while (--i >= 0)
6685 fprintf (outfile, HOST_WIDE_INT_PRINT_PADDED_HEX,
6686 val->v.val_wide->elt (i));
6687 fprintf (outfile, ")");
6688 break;
6690 case dw_val_class_vec:
6691 fprintf (outfile, "floating-point or vector constant");
6692 break;
6693 case dw_val_class_flag:
6694 fprintf (outfile, "%u", val->v.val_flag);
6695 break;
6696 case dw_val_class_die_ref:
6697 if (val->v.val_die_ref.die != NULL)
6699 dw_die_ref die = val->v.val_die_ref.die;
6701 if (die->comdat_type_p)
6703 fprintf (outfile, "die -> signature: ");
6704 print_signature (outfile,
6705 die->die_id.die_type_node->signature);
6707 else if (die->die_id.die_symbol)
6709 fprintf (outfile, "die -> label: %s", die->die_id.die_symbol);
6710 if (die->with_offset)
6711 fprintf (outfile, " + %ld", die->die_offset);
6713 else
6714 fprintf (outfile, "die -> %ld", die->die_offset);
6715 if (flag_dump_noaddr || flag_dump_unnumbered)
6716 fprintf (outfile, " #");
6717 else
6718 fprintf (outfile, " (%p)", (void *) die);
6720 else
6721 fprintf (outfile, "die -> <null>");
6722 break;
6723 case dw_val_class_vms_delta:
6724 fprintf (outfile, "delta: @slotcount(%s-%s)",
6725 val->v.val_vms_delta.lbl2, val->v.val_vms_delta.lbl1);
6726 break;
6727 case dw_val_class_symview:
6728 fprintf (outfile, "view: %s", val->v.val_symbolic_view);
6729 break;
6730 case dw_val_class_lbl_id:
6731 case dw_val_class_lineptr:
6732 case dw_val_class_macptr:
6733 case dw_val_class_loclistsptr:
6734 case dw_val_class_high_pc:
6735 fprintf (outfile, "label: %s", val->v.val_lbl_id);
6736 break;
6737 case dw_val_class_str:
6738 if (val->v.val_str->str != NULL)
6739 fprintf (outfile, "\"%s\"", val->v.val_str->str);
6740 else
6741 fprintf (outfile, "<null>");
6742 break;
6743 case dw_val_class_file:
6744 case dw_val_class_file_implicit:
6745 fprintf (outfile, "\"%s\" (%d)", val->v.val_file->filename,
6746 val->v.val_file->emitted_number);
6747 break;
6748 case dw_val_class_data8:
6750 int i;
6752 for (i = 0; i < 8; i++)
6753 fprintf (outfile, "%02x", val->v.val_data8[i]);
6754 break;
6756 case dw_val_class_discr_value:
6757 print_discr_value (outfile, &val->v.val_discr_value);
6758 break;
6759 case dw_val_class_discr_list:
6760 for (dw_discr_list_ref node = val->v.val_discr_list;
6761 node != NULL;
6762 node = node->dw_discr_next)
6764 if (node->dw_discr_range)
6766 fprintf (outfile, " .. ");
6767 print_discr_value (outfile, &node->dw_discr_lower_bound);
6768 print_discr_value (outfile, &node->dw_discr_upper_bound);
6770 else
6771 print_discr_value (outfile, &node->dw_discr_lower_bound);
6773 if (node->dw_discr_next != NULL)
6774 fprintf (outfile, " | ");
6776 default:
6777 break;
6781 /* Likewise, for a DIE attribute. */
6783 static void
6784 print_attribute (dw_attr_node *a, bool recurse, FILE *outfile)
6786 print_dw_val (&a->dw_attr_val, recurse, outfile);
6790 /* Print the list of operands in the LOC location description to OUTFILE. This
6791 routine is a debugging aid only. */
6793 static void
6794 print_loc_descr (dw_loc_descr_ref loc, FILE *outfile)
6796 dw_loc_descr_ref l = loc;
6798 if (loc == NULL)
6800 print_spaces (outfile);
6801 fprintf (outfile, "<null>\n");
6802 return;
6805 for (l = loc; l != NULL; l = l->dw_loc_next)
6807 print_spaces (outfile);
6808 if (flag_dump_noaddr || flag_dump_unnumbered)
6809 fprintf (outfile, "#");
6810 else
6811 fprintf (outfile, "(%p)", (void *) l);
6812 fprintf (outfile, " %s",
6813 dwarf_stack_op_name (l->dw_loc_opc));
6814 if (l->dw_loc_oprnd1.val_class != dw_val_class_none)
6816 fprintf (outfile, " ");
6817 print_dw_val (&l->dw_loc_oprnd1, false, outfile);
6819 if (l->dw_loc_oprnd2.val_class != dw_val_class_none)
6821 fprintf (outfile, ", ");
6822 print_dw_val (&l->dw_loc_oprnd2, false, outfile);
6824 fprintf (outfile, "\n");
6828 /* Print the information associated with a given DIE, and its children.
6829 This routine is a debugging aid only. */
6831 static void
6832 print_die (dw_die_ref die, FILE *outfile)
6834 dw_attr_node *a;
6835 dw_die_ref c;
6836 unsigned ix;
6838 print_spaces (outfile);
6839 fprintf (outfile, "DIE %4ld: %s ",
6840 die->die_offset, dwarf_tag_name (die->die_tag));
6841 if (flag_dump_noaddr || flag_dump_unnumbered)
6842 fprintf (outfile, "#\n");
6843 else
6844 fprintf (outfile, "(%p)\n", (void*) die);
6845 print_spaces (outfile);
6846 fprintf (outfile, " abbrev id: %lu", die->die_abbrev);
6847 fprintf (outfile, " offset: %ld", die->die_offset);
6848 fprintf (outfile, " mark: %d\n", die->die_mark);
6850 if (die->comdat_type_p)
6852 print_spaces (outfile);
6853 fprintf (outfile, " signature: ");
6854 print_signature (outfile, die->die_id.die_type_node->signature);
6855 fprintf (outfile, "\n");
6858 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
6860 print_spaces (outfile);
6861 fprintf (outfile, " %s: ", dwarf_attr_name (a->dw_attr));
6863 print_attribute (a, true, outfile);
6864 fprintf (outfile, "\n");
6867 if (die->die_child != NULL)
6869 print_indent += 4;
6870 FOR_EACH_CHILD (die, c, print_die (c, outfile));
6871 print_indent -= 4;
6873 if (print_indent == 0)
6874 fprintf (outfile, "\n");
6877 /* Print the list of operations in the LOC location description. */
6879 DEBUG_FUNCTION void
6880 debug_dwarf_loc_descr (dw_loc_descr_ref loc)
6882 print_loc_descr (loc, stderr);
6885 /* Print the information collected for a given DIE. */
6887 DEBUG_FUNCTION void
6888 debug_dwarf_die (dw_die_ref die)
6890 print_die (die, stderr);
6893 DEBUG_FUNCTION void
6894 debug (die_struct &ref)
6896 print_die (&ref, stderr);
6899 DEBUG_FUNCTION void
6900 debug (die_struct *ptr)
6902 if (ptr)
6903 debug (*ptr);
6904 else
6905 fprintf (stderr, "<nil>\n");
6909 /* Print all DWARF information collected for the compilation unit.
6910 This routine is a debugging aid only. */
6912 DEBUG_FUNCTION void
6913 debug_dwarf (void)
6915 print_indent = 0;
6916 print_die (comp_unit_die (), stderr);
6919 /* Verify the DIE tree structure. */
6921 DEBUG_FUNCTION void
6922 verify_die (dw_die_ref die)
6924 gcc_assert (!die->die_mark);
6925 if (die->die_parent == NULL
6926 && die->die_sib == NULL)
6927 return;
6928 /* Verify the die_sib list is cyclic. */
6929 dw_die_ref x = die;
6932 x->die_mark = 1;
6933 x = x->die_sib;
6935 while (x && !x->die_mark);
6936 gcc_assert (x == die);
6937 x = die;
6940 /* Verify all dies have the same parent. */
6941 gcc_assert (x->die_parent == die->die_parent);
6942 if (x->die_child)
6944 /* Verify the child has the proper parent and recurse. */
6945 gcc_assert (x->die_child->die_parent == x);
6946 verify_die (x->die_child);
6948 x->die_mark = 0;
6949 x = x->die_sib;
6951 while (x && x->die_mark);
6954 /* Sanity checks on DIEs. */
6956 static void
6957 check_die (dw_die_ref die)
6959 unsigned ix;
6960 dw_attr_node *a;
6961 bool inline_found = false;
6962 int n_location = 0, n_low_pc = 0, n_high_pc = 0, n_artificial = 0;
6963 int n_decl_line = 0, n_decl_column = 0, n_decl_file = 0;
6964 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
6966 switch (a->dw_attr)
6968 case DW_AT_inline:
6969 if (a->dw_attr_val.v.val_unsigned)
6970 inline_found = true;
6971 break;
6972 case DW_AT_location:
6973 ++n_location;
6974 break;
6975 case DW_AT_low_pc:
6976 ++n_low_pc;
6977 break;
6978 case DW_AT_high_pc:
6979 ++n_high_pc;
6980 break;
6981 case DW_AT_artificial:
6982 ++n_artificial;
6983 break;
6984 case DW_AT_decl_column:
6985 ++n_decl_column;
6986 break;
6987 case DW_AT_decl_line:
6988 ++n_decl_line;
6989 break;
6990 case DW_AT_decl_file:
6991 ++n_decl_file;
6992 break;
6993 default:
6994 break;
6997 if (n_location > 1 || n_low_pc > 1 || n_high_pc > 1 || n_artificial > 1
6998 || n_decl_column > 1 || n_decl_line > 1 || n_decl_file > 1)
7000 fprintf (stderr, "Duplicate attributes in DIE:\n");
7001 debug_dwarf_die (die);
7002 gcc_unreachable ();
7004 if (inline_found)
7006 /* A debugging information entry that is a member of an abstract
7007 instance tree [that has DW_AT_inline] should not contain any
7008 attributes which describe aspects of the subroutine which vary
7009 between distinct inlined expansions or distinct out-of-line
7010 expansions. */
7011 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
7012 gcc_assert (a->dw_attr != DW_AT_low_pc
7013 && a->dw_attr != DW_AT_high_pc
7014 && a->dw_attr != DW_AT_location
7015 && a->dw_attr != DW_AT_frame_base
7016 && a->dw_attr != DW_AT_call_all_calls
7017 && a->dw_attr != DW_AT_GNU_all_call_sites);
7021 #define CHECKSUM(FOO) md5_process_bytes (&(FOO), sizeof (FOO), ctx)
7022 #define CHECKSUM_BLOCK(FOO, SIZE) md5_process_bytes ((FOO), (SIZE), ctx)
7023 #define CHECKSUM_STRING(FOO) md5_process_bytes ((FOO), strlen (FOO), ctx)
7025 /* Calculate the checksum of a location expression. */
7027 static inline void
7028 loc_checksum (dw_loc_descr_ref loc, struct md5_ctx *ctx)
7030 int tem;
7031 inchash::hash hstate;
7032 hashval_t hash;
7034 tem = (loc->dtprel << 8) | ((unsigned int) loc->dw_loc_opc);
7035 CHECKSUM (tem);
7036 hash_loc_operands (loc, hstate);
7037 hash = hstate.end();
7038 CHECKSUM (hash);
7041 /* Calculate the checksum of an attribute. */
7043 static void
7044 attr_checksum (dw_attr_node *at, struct md5_ctx *ctx, int *mark)
7046 dw_loc_descr_ref loc;
7047 rtx r;
7049 CHECKSUM (at->dw_attr);
7051 /* We don't care that this was compiled with a different compiler
7052 snapshot; if the output is the same, that's what matters. */
7053 if (at->dw_attr == DW_AT_producer)
7054 return;
7056 switch (AT_class (at))
7058 case dw_val_class_const:
7059 case dw_val_class_const_implicit:
7060 CHECKSUM (at->dw_attr_val.v.val_int);
7061 break;
7062 case dw_val_class_unsigned_const:
7063 case dw_val_class_unsigned_const_implicit:
7064 CHECKSUM (at->dw_attr_val.v.val_unsigned);
7065 break;
7066 case dw_val_class_const_double:
7067 CHECKSUM (at->dw_attr_val.v.val_double);
7068 break;
7069 case dw_val_class_wide_int:
7070 CHECKSUM_BLOCK (at->dw_attr_val.v.val_wide->get_val (),
7071 get_full_len (*at->dw_attr_val.v.val_wide)
7072 * HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR);
7073 break;
7074 case dw_val_class_vec:
7075 CHECKSUM_BLOCK (at->dw_attr_val.v.val_vec.array,
7076 (at->dw_attr_val.v.val_vec.length
7077 * at->dw_attr_val.v.val_vec.elt_size));
7078 break;
7079 case dw_val_class_flag:
7080 CHECKSUM (at->dw_attr_val.v.val_flag);
7081 break;
7082 case dw_val_class_str:
7083 CHECKSUM_STRING (AT_string (at));
7084 break;
7086 case dw_val_class_addr:
7087 r = AT_addr (at);
7088 gcc_assert (GET_CODE (r) == SYMBOL_REF);
7089 CHECKSUM_STRING (XSTR (r, 0));
7090 break;
7092 case dw_val_class_offset:
7093 CHECKSUM (at->dw_attr_val.v.val_offset);
7094 break;
7096 case dw_val_class_loc:
7097 for (loc = AT_loc (at); loc; loc = loc->dw_loc_next)
7098 loc_checksum (loc, ctx);
7099 break;
7101 case dw_val_class_die_ref:
7102 die_checksum (AT_ref (at), ctx, mark);
7103 break;
7105 case dw_val_class_fde_ref:
7106 case dw_val_class_vms_delta:
7107 case dw_val_class_symview:
7108 case dw_val_class_lbl_id:
7109 case dw_val_class_lineptr:
7110 case dw_val_class_macptr:
7111 case dw_val_class_loclistsptr:
7112 case dw_val_class_high_pc:
7113 break;
7115 case dw_val_class_file:
7116 case dw_val_class_file_implicit:
7117 CHECKSUM_STRING (AT_file (at)->filename);
7118 break;
7120 case dw_val_class_data8:
7121 CHECKSUM (at->dw_attr_val.v.val_data8);
7122 break;
7124 default:
7125 break;
7129 /* Calculate the checksum of a DIE. */
7131 static void
7132 die_checksum (dw_die_ref die, struct md5_ctx *ctx, int *mark)
7134 dw_die_ref c;
7135 dw_attr_node *a;
7136 unsigned ix;
7138 /* To avoid infinite recursion. */
7139 if (die->die_mark)
7141 CHECKSUM (die->die_mark);
7142 return;
7144 die->die_mark = ++(*mark);
7146 CHECKSUM (die->die_tag);
7148 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
7149 attr_checksum (a, ctx, mark);
7151 FOR_EACH_CHILD (die, c, die_checksum (c, ctx, mark));
7154 #undef CHECKSUM
7155 #undef CHECKSUM_BLOCK
7156 #undef CHECKSUM_STRING
7158 /* For DWARF-4 types, include the trailing NULL when checksumming strings. */
7159 #define CHECKSUM(FOO) md5_process_bytes (&(FOO), sizeof (FOO), ctx)
7160 #define CHECKSUM_BLOCK(FOO, SIZE) md5_process_bytes ((FOO), (SIZE), ctx)
7161 #define CHECKSUM_STRING(FOO) md5_process_bytes ((FOO), strlen (FOO) + 1, ctx)
7162 #define CHECKSUM_SLEB128(FOO) checksum_sleb128 ((FOO), ctx)
7163 #define CHECKSUM_ULEB128(FOO) checksum_uleb128 ((FOO), ctx)
7164 #define CHECKSUM_ATTR(FOO) \
7165 if (FOO) attr_checksum_ordered (die->die_tag, (FOO), ctx, mark)
7167 /* Calculate the checksum of a number in signed LEB128 format. */
7169 static void
7170 checksum_sleb128 (HOST_WIDE_INT value, struct md5_ctx *ctx)
7172 unsigned char byte;
7173 bool more;
7175 while (1)
7177 byte = (value & 0x7f);
7178 value >>= 7;
7179 more = !((value == 0 && (byte & 0x40) == 0)
7180 || (value == -1 && (byte & 0x40) != 0));
7181 if (more)
7182 byte |= 0x80;
7183 CHECKSUM (byte);
7184 if (!more)
7185 break;
7189 /* Calculate the checksum of a number in unsigned LEB128 format. */
7191 static void
7192 checksum_uleb128 (unsigned HOST_WIDE_INT value, struct md5_ctx *ctx)
7194 while (1)
7196 unsigned char byte = (value & 0x7f);
7197 value >>= 7;
7198 if (value != 0)
7199 /* More bytes to follow. */
7200 byte |= 0x80;
7201 CHECKSUM (byte);
7202 if (value == 0)
7203 break;
7207 /* Checksum the context of the DIE. This adds the names of any
7208 surrounding namespaces or structures to the checksum. */
7210 static void
7211 checksum_die_context (dw_die_ref die, struct md5_ctx *ctx)
7213 const char *name;
7214 dw_die_ref spec;
7215 int tag = die->die_tag;
7217 if (tag != DW_TAG_namespace
7218 && tag != DW_TAG_structure_type
7219 && tag != DW_TAG_class_type)
7220 return;
7222 name = get_AT_string (die, DW_AT_name);
7224 spec = get_AT_ref (die, DW_AT_specification);
7225 if (spec != NULL)
7226 die = spec;
7228 if (die->die_parent != NULL)
7229 checksum_die_context (die->die_parent, ctx);
7231 CHECKSUM_ULEB128 ('C');
7232 CHECKSUM_ULEB128 (tag);
7233 if (name != NULL)
7234 CHECKSUM_STRING (name);
7237 /* Calculate the checksum of a location expression. */
7239 static inline void
7240 loc_checksum_ordered (dw_loc_descr_ref loc, struct md5_ctx *ctx)
7242 /* Special case for lone DW_OP_plus_uconst: checksum as if the location
7243 were emitted as a DW_FORM_sdata instead of a location expression. */
7244 if (loc->dw_loc_opc == DW_OP_plus_uconst && loc->dw_loc_next == NULL)
7246 CHECKSUM_ULEB128 (DW_FORM_sdata);
7247 CHECKSUM_SLEB128 ((HOST_WIDE_INT) loc->dw_loc_oprnd1.v.val_unsigned);
7248 return;
7251 /* Otherwise, just checksum the raw location expression. */
7252 while (loc != NULL)
7254 inchash::hash hstate;
7255 hashval_t hash;
7257 CHECKSUM_ULEB128 (loc->dtprel);
7258 CHECKSUM_ULEB128 (loc->dw_loc_opc);
7259 hash_loc_operands (loc, hstate);
7260 hash = hstate.end ();
7261 CHECKSUM (hash);
7262 loc = loc->dw_loc_next;
7266 /* Calculate the checksum of an attribute. */
7268 static void
7269 attr_checksum_ordered (enum dwarf_tag tag, dw_attr_node *at,
7270 struct md5_ctx *ctx, int *mark)
7272 dw_loc_descr_ref loc;
7273 rtx r;
7275 if (AT_class (at) == dw_val_class_die_ref)
7277 dw_die_ref target_die = AT_ref (at);
7279 /* For pointer and reference types, we checksum only the (qualified)
7280 name of the target type (if there is a name). For friend entries,
7281 we checksum only the (qualified) name of the target type or function.
7282 This allows the checksum to remain the same whether the target type
7283 is complete or not. */
7284 if ((at->dw_attr == DW_AT_type
7285 && (tag == DW_TAG_pointer_type
7286 || tag == DW_TAG_reference_type
7287 || tag == DW_TAG_rvalue_reference_type
7288 || tag == DW_TAG_ptr_to_member_type))
7289 || (at->dw_attr == DW_AT_friend
7290 && tag == DW_TAG_friend))
7292 dw_attr_node *name_attr = get_AT (target_die, DW_AT_name);
7294 if (name_attr != NULL)
7296 dw_die_ref decl = get_AT_ref (target_die, DW_AT_specification);
7298 if (decl == NULL)
7299 decl = target_die;
7300 CHECKSUM_ULEB128 ('N');
7301 CHECKSUM_ULEB128 (at->dw_attr);
7302 if (decl->die_parent != NULL)
7303 checksum_die_context (decl->die_parent, ctx);
7304 CHECKSUM_ULEB128 ('E');
7305 CHECKSUM_STRING (AT_string (name_attr));
7306 return;
7310 /* For all other references to another DIE, we check to see if the
7311 target DIE has already been visited. If it has, we emit a
7312 backward reference; if not, we descend recursively. */
7313 if (target_die->die_mark > 0)
7315 CHECKSUM_ULEB128 ('R');
7316 CHECKSUM_ULEB128 (at->dw_attr);
7317 CHECKSUM_ULEB128 (target_die->die_mark);
7319 else
7321 dw_die_ref decl = get_AT_ref (target_die, DW_AT_specification);
7323 if (decl == NULL)
7324 decl = target_die;
7325 target_die->die_mark = ++(*mark);
7326 CHECKSUM_ULEB128 ('T');
7327 CHECKSUM_ULEB128 (at->dw_attr);
7328 if (decl->die_parent != NULL)
7329 checksum_die_context (decl->die_parent, ctx);
7330 die_checksum_ordered (target_die, ctx, mark);
7332 return;
7335 CHECKSUM_ULEB128 ('A');
7336 CHECKSUM_ULEB128 (at->dw_attr);
7338 switch (AT_class (at))
7340 case dw_val_class_const:
7341 case dw_val_class_const_implicit:
7342 CHECKSUM_ULEB128 (DW_FORM_sdata);
7343 CHECKSUM_SLEB128 (at->dw_attr_val.v.val_int);
7344 break;
7346 case dw_val_class_unsigned_const:
7347 case dw_val_class_unsigned_const_implicit:
7348 CHECKSUM_ULEB128 (DW_FORM_sdata);
7349 CHECKSUM_SLEB128 ((int) at->dw_attr_val.v.val_unsigned);
7350 break;
7352 case dw_val_class_const_double:
7353 CHECKSUM_ULEB128 (DW_FORM_block);
7354 CHECKSUM_ULEB128 (sizeof (at->dw_attr_val.v.val_double));
7355 CHECKSUM (at->dw_attr_val.v.val_double);
7356 break;
7358 case dw_val_class_wide_int:
7359 CHECKSUM_ULEB128 (DW_FORM_block);
7360 CHECKSUM_ULEB128 (get_full_len (*at->dw_attr_val.v.val_wide)
7361 * HOST_BITS_PER_WIDE_INT / BITS_PER_UNIT);
7362 CHECKSUM_BLOCK (at->dw_attr_val.v.val_wide->get_val (),
7363 get_full_len (*at->dw_attr_val.v.val_wide)
7364 * HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR);
7365 break;
7367 case dw_val_class_vec:
7368 CHECKSUM_ULEB128 (DW_FORM_block);
7369 CHECKSUM_ULEB128 (at->dw_attr_val.v.val_vec.length
7370 * at->dw_attr_val.v.val_vec.elt_size);
7371 CHECKSUM_BLOCK (at->dw_attr_val.v.val_vec.array,
7372 (at->dw_attr_val.v.val_vec.length
7373 * at->dw_attr_val.v.val_vec.elt_size));
7374 break;
7376 case dw_val_class_flag:
7377 CHECKSUM_ULEB128 (DW_FORM_flag);
7378 CHECKSUM_ULEB128 (at->dw_attr_val.v.val_flag ? 1 : 0);
7379 break;
7381 case dw_val_class_str:
7382 CHECKSUM_ULEB128 (DW_FORM_string);
7383 CHECKSUM_STRING (AT_string (at));
7384 break;
7386 case dw_val_class_addr:
7387 r = AT_addr (at);
7388 gcc_assert (GET_CODE (r) == SYMBOL_REF);
7389 CHECKSUM_ULEB128 (DW_FORM_string);
7390 CHECKSUM_STRING (XSTR (r, 0));
7391 break;
7393 case dw_val_class_offset:
7394 CHECKSUM_ULEB128 (DW_FORM_sdata);
7395 CHECKSUM_ULEB128 (at->dw_attr_val.v.val_offset);
7396 break;
7398 case dw_val_class_loc:
7399 for (loc = AT_loc (at); loc; loc = loc->dw_loc_next)
7400 loc_checksum_ordered (loc, ctx);
7401 break;
7403 case dw_val_class_fde_ref:
7404 case dw_val_class_symview:
7405 case dw_val_class_lbl_id:
7406 case dw_val_class_lineptr:
7407 case dw_val_class_macptr:
7408 case dw_val_class_loclistsptr:
7409 case dw_val_class_high_pc:
7410 break;
7412 case dw_val_class_file:
7413 case dw_val_class_file_implicit:
7414 CHECKSUM_ULEB128 (DW_FORM_string);
7415 CHECKSUM_STRING (AT_file (at)->filename);
7416 break;
7418 case dw_val_class_data8:
7419 CHECKSUM (at->dw_attr_val.v.val_data8);
7420 break;
7422 default:
7423 break;
7427 struct checksum_attributes
7429 dw_attr_node *at_name;
7430 dw_attr_node *at_type;
7431 dw_attr_node *at_friend;
7432 dw_attr_node *at_accessibility;
7433 dw_attr_node *at_address_class;
7434 dw_attr_node *at_alignment;
7435 dw_attr_node *at_allocated;
7436 dw_attr_node *at_artificial;
7437 dw_attr_node *at_associated;
7438 dw_attr_node *at_binary_scale;
7439 dw_attr_node *at_bit_offset;
7440 dw_attr_node *at_bit_size;
7441 dw_attr_node *at_bit_stride;
7442 dw_attr_node *at_byte_size;
7443 dw_attr_node *at_byte_stride;
7444 dw_attr_node *at_const_value;
7445 dw_attr_node *at_containing_type;
7446 dw_attr_node *at_count;
7447 dw_attr_node *at_data_location;
7448 dw_attr_node *at_data_member_location;
7449 dw_attr_node *at_decimal_scale;
7450 dw_attr_node *at_decimal_sign;
7451 dw_attr_node *at_default_value;
7452 dw_attr_node *at_digit_count;
7453 dw_attr_node *at_discr;
7454 dw_attr_node *at_discr_list;
7455 dw_attr_node *at_discr_value;
7456 dw_attr_node *at_encoding;
7457 dw_attr_node *at_endianity;
7458 dw_attr_node *at_explicit;
7459 dw_attr_node *at_is_optional;
7460 dw_attr_node *at_location;
7461 dw_attr_node *at_lower_bound;
7462 dw_attr_node *at_mutable;
7463 dw_attr_node *at_ordering;
7464 dw_attr_node *at_picture_string;
7465 dw_attr_node *at_prototyped;
7466 dw_attr_node *at_small;
7467 dw_attr_node *at_segment;
7468 dw_attr_node *at_string_length;
7469 dw_attr_node *at_string_length_bit_size;
7470 dw_attr_node *at_string_length_byte_size;
7471 dw_attr_node *at_threads_scaled;
7472 dw_attr_node *at_upper_bound;
7473 dw_attr_node *at_use_location;
7474 dw_attr_node *at_use_UTF8;
7475 dw_attr_node *at_variable_parameter;
7476 dw_attr_node *at_virtuality;
7477 dw_attr_node *at_visibility;
7478 dw_attr_node *at_vtable_elem_location;
7481 /* Collect the attributes that we will want to use for the checksum. */
7483 static void
7484 collect_checksum_attributes (struct checksum_attributes *attrs, dw_die_ref die)
7486 dw_attr_node *a;
7487 unsigned ix;
7489 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
7491 switch (a->dw_attr)
7493 case DW_AT_name:
7494 attrs->at_name = a;
7495 break;
7496 case DW_AT_type:
7497 attrs->at_type = a;
7498 break;
7499 case DW_AT_friend:
7500 attrs->at_friend = a;
7501 break;
7502 case DW_AT_accessibility:
7503 attrs->at_accessibility = a;
7504 break;
7505 case DW_AT_address_class:
7506 attrs->at_address_class = a;
7507 break;
7508 case DW_AT_alignment:
7509 attrs->at_alignment = a;
7510 break;
7511 case DW_AT_allocated:
7512 attrs->at_allocated = a;
7513 break;
7514 case DW_AT_artificial:
7515 attrs->at_artificial = a;
7516 break;
7517 case DW_AT_associated:
7518 attrs->at_associated = a;
7519 break;
7520 case DW_AT_binary_scale:
7521 attrs->at_binary_scale = a;
7522 break;
7523 case DW_AT_bit_offset:
7524 attrs->at_bit_offset = a;
7525 break;
7526 case DW_AT_bit_size:
7527 attrs->at_bit_size = a;
7528 break;
7529 case DW_AT_bit_stride:
7530 attrs->at_bit_stride = a;
7531 break;
7532 case DW_AT_byte_size:
7533 attrs->at_byte_size = a;
7534 break;
7535 case DW_AT_byte_stride:
7536 attrs->at_byte_stride = a;
7537 break;
7538 case DW_AT_const_value:
7539 attrs->at_const_value = a;
7540 break;
7541 case DW_AT_containing_type:
7542 attrs->at_containing_type = a;
7543 break;
7544 case DW_AT_count:
7545 attrs->at_count = a;
7546 break;
7547 case DW_AT_data_location:
7548 attrs->at_data_location = a;
7549 break;
7550 case DW_AT_data_member_location:
7551 attrs->at_data_member_location = a;
7552 break;
7553 case DW_AT_decimal_scale:
7554 attrs->at_decimal_scale = a;
7555 break;
7556 case DW_AT_decimal_sign:
7557 attrs->at_decimal_sign = a;
7558 break;
7559 case DW_AT_default_value:
7560 attrs->at_default_value = a;
7561 break;
7562 case DW_AT_digit_count:
7563 attrs->at_digit_count = a;
7564 break;
7565 case DW_AT_discr:
7566 attrs->at_discr = a;
7567 break;
7568 case DW_AT_discr_list:
7569 attrs->at_discr_list = a;
7570 break;
7571 case DW_AT_discr_value:
7572 attrs->at_discr_value = a;
7573 break;
7574 case DW_AT_encoding:
7575 attrs->at_encoding = a;
7576 break;
7577 case DW_AT_endianity:
7578 attrs->at_endianity = a;
7579 break;
7580 case DW_AT_explicit:
7581 attrs->at_explicit = a;
7582 break;
7583 case DW_AT_is_optional:
7584 attrs->at_is_optional = a;
7585 break;
7586 case DW_AT_location:
7587 attrs->at_location = a;
7588 break;
7589 case DW_AT_lower_bound:
7590 attrs->at_lower_bound = a;
7591 break;
7592 case DW_AT_mutable:
7593 attrs->at_mutable = a;
7594 break;
7595 case DW_AT_ordering:
7596 attrs->at_ordering = a;
7597 break;
7598 case DW_AT_picture_string:
7599 attrs->at_picture_string = a;
7600 break;
7601 case DW_AT_prototyped:
7602 attrs->at_prototyped = a;
7603 break;
7604 case DW_AT_small:
7605 attrs->at_small = a;
7606 break;
7607 case DW_AT_segment:
7608 attrs->at_segment = a;
7609 break;
7610 case DW_AT_string_length:
7611 attrs->at_string_length = a;
7612 break;
7613 case DW_AT_string_length_bit_size:
7614 attrs->at_string_length_bit_size = a;
7615 break;
7616 case DW_AT_string_length_byte_size:
7617 attrs->at_string_length_byte_size = a;
7618 break;
7619 case DW_AT_threads_scaled:
7620 attrs->at_threads_scaled = a;
7621 break;
7622 case DW_AT_upper_bound:
7623 attrs->at_upper_bound = a;
7624 break;
7625 case DW_AT_use_location:
7626 attrs->at_use_location = a;
7627 break;
7628 case DW_AT_use_UTF8:
7629 attrs->at_use_UTF8 = a;
7630 break;
7631 case DW_AT_variable_parameter:
7632 attrs->at_variable_parameter = a;
7633 break;
7634 case DW_AT_virtuality:
7635 attrs->at_virtuality = a;
7636 break;
7637 case DW_AT_visibility:
7638 attrs->at_visibility = a;
7639 break;
7640 case DW_AT_vtable_elem_location:
7641 attrs->at_vtable_elem_location = a;
7642 break;
7643 default:
7644 break;
7649 /* Calculate the checksum of a DIE, using an ordered subset of attributes. */
7651 static void
7652 die_checksum_ordered (dw_die_ref die, struct md5_ctx *ctx, int *mark)
7654 dw_die_ref c;
7655 dw_die_ref decl;
7656 struct checksum_attributes attrs;
7658 CHECKSUM_ULEB128 ('D');
7659 CHECKSUM_ULEB128 (die->die_tag);
7661 memset (&attrs, 0, sizeof (attrs));
7663 decl = get_AT_ref (die, DW_AT_specification);
7664 if (decl != NULL)
7665 collect_checksum_attributes (&attrs, decl);
7666 collect_checksum_attributes (&attrs, die);
7668 CHECKSUM_ATTR (attrs.at_name);
7669 CHECKSUM_ATTR (attrs.at_accessibility);
7670 CHECKSUM_ATTR (attrs.at_address_class);
7671 CHECKSUM_ATTR (attrs.at_allocated);
7672 CHECKSUM_ATTR (attrs.at_artificial);
7673 CHECKSUM_ATTR (attrs.at_associated);
7674 CHECKSUM_ATTR (attrs.at_binary_scale);
7675 CHECKSUM_ATTR (attrs.at_bit_offset);
7676 CHECKSUM_ATTR (attrs.at_bit_size);
7677 CHECKSUM_ATTR (attrs.at_bit_stride);
7678 CHECKSUM_ATTR (attrs.at_byte_size);
7679 CHECKSUM_ATTR (attrs.at_byte_stride);
7680 CHECKSUM_ATTR (attrs.at_const_value);
7681 CHECKSUM_ATTR (attrs.at_containing_type);
7682 CHECKSUM_ATTR (attrs.at_count);
7683 CHECKSUM_ATTR (attrs.at_data_location);
7684 CHECKSUM_ATTR (attrs.at_data_member_location);
7685 CHECKSUM_ATTR (attrs.at_decimal_scale);
7686 CHECKSUM_ATTR (attrs.at_decimal_sign);
7687 CHECKSUM_ATTR (attrs.at_default_value);
7688 CHECKSUM_ATTR (attrs.at_digit_count);
7689 CHECKSUM_ATTR (attrs.at_discr);
7690 CHECKSUM_ATTR (attrs.at_discr_list);
7691 CHECKSUM_ATTR (attrs.at_discr_value);
7692 CHECKSUM_ATTR (attrs.at_encoding);
7693 CHECKSUM_ATTR (attrs.at_endianity);
7694 CHECKSUM_ATTR (attrs.at_explicit);
7695 CHECKSUM_ATTR (attrs.at_is_optional);
7696 CHECKSUM_ATTR (attrs.at_location);
7697 CHECKSUM_ATTR (attrs.at_lower_bound);
7698 CHECKSUM_ATTR (attrs.at_mutable);
7699 CHECKSUM_ATTR (attrs.at_ordering);
7700 CHECKSUM_ATTR (attrs.at_picture_string);
7701 CHECKSUM_ATTR (attrs.at_prototyped);
7702 CHECKSUM_ATTR (attrs.at_small);
7703 CHECKSUM_ATTR (attrs.at_segment);
7704 CHECKSUM_ATTR (attrs.at_string_length);
7705 CHECKSUM_ATTR (attrs.at_string_length_bit_size);
7706 CHECKSUM_ATTR (attrs.at_string_length_byte_size);
7707 CHECKSUM_ATTR (attrs.at_threads_scaled);
7708 CHECKSUM_ATTR (attrs.at_upper_bound);
7709 CHECKSUM_ATTR (attrs.at_use_location);
7710 CHECKSUM_ATTR (attrs.at_use_UTF8);
7711 CHECKSUM_ATTR (attrs.at_variable_parameter);
7712 CHECKSUM_ATTR (attrs.at_virtuality);
7713 CHECKSUM_ATTR (attrs.at_visibility);
7714 CHECKSUM_ATTR (attrs.at_vtable_elem_location);
7715 CHECKSUM_ATTR (attrs.at_type);
7716 CHECKSUM_ATTR (attrs.at_friend);
7717 CHECKSUM_ATTR (attrs.at_alignment);
7719 /* Checksum the child DIEs. */
7720 c = die->die_child;
7721 if (c) do {
7722 dw_attr_node *name_attr;
7724 c = c->die_sib;
7725 name_attr = get_AT (c, DW_AT_name);
7726 if (is_template_instantiation (c))
7728 /* Ignore instantiations of member type and function templates. */
7730 else if (name_attr != NULL
7731 && (is_type_die (c) || c->die_tag == DW_TAG_subprogram))
7733 /* Use a shallow checksum for named nested types and member
7734 functions. */
7735 CHECKSUM_ULEB128 ('S');
7736 CHECKSUM_ULEB128 (c->die_tag);
7737 CHECKSUM_STRING (AT_string (name_attr));
7739 else
7741 /* Use a deep checksum for other children. */
7742 /* Mark this DIE so it gets processed when unmarking. */
7743 if (c->die_mark == 0)
7744 c->die_mark = -1;
7745 die_checksum_ordered (c, ctx, mark);
7747 } while (c != die->die_child);
7749 CHECKSUM_ULEB128 (0);
7752 /* Add a type name and tag to a hash. */
7753 static void
7754 die_odr_checksum (int tag, const char *name, md5_ctx *ctx)
7756 CHECKSUM_ULEB128 (tag);
7757 CHECKSUM_STRING (name);
7760 #undef CHECKSUM
7761 #undef CHECKSUM_STRING
7762 #undef CHECKSUM_ATTR
7763 #undef CHECKSUM_LEB128
7764 #undef CHECKSUM_ULEB128
7766 /* Generate the type signature for DIE. This is computed by generating an
7767 MD5 checksum over the DIE's tag, its relevant attributes, and its
7768 children. Attributes that are references to other DIEs are processed
7769 by recursion, using the MARK field to prevent infinite recursion.
7770 If the DIE is nested inside a namespace or another type, we also
7771 need to include that context in the signature. The lower 64 bits
7772 of the resulting MD5 checksum comprise the signature. */
7774 static void
7775 generate_type_signature (dw_die_ref die, comdat_type_node *type_node)
7777 int mark;
7778 const char *name;
7779 unsigned char checksum[16];
7780 struct md5_ctx ctx;
7781 dw_die_ref decl;
7782 dw_die_ref parent;
7784 name = get_AT_string (die, DW_AT_name);
7785 decl = get_AT_ref (die, DW_AT_specification);
7786 parent = get_die_parent (die);
7788 /* First, compute a signature for just the type name (and its surrounding
7789 context, if any. This is stored in the type unit DIE for link-time
7790 ODR (one-definition rule) checking. */
7792 if (is_cxx () && name != NULL)
7794 md5_init_ctx (&ctx);
7796 /* Checksum the names of surrounding namespaces and structures. */
7797 if (parent != NULL)
7798 checksum_die_context (parent, &ctx);
7800 /* Checksum the current DIE. */
7801 die_odr_checksum (die->die_tag, name, &ctx);
7802 md5_finish_ctx (&ctx, checksum);
7804 add_AT_data8 (type_node->root_die, DW_AT_GNU_odr_signature, &checksum[8]);
7807 /* Next, compute the complete type signature. */
7809 md5_init_ctx (&ctx);
7810 mark = 1;
7811 die->die_mark = mark;
7813 /* Checksum the names of surrounding namespaces and structures. */
7814 if (parent != NULL)
7815 checksum_die_context (parent, &ctx);
7817 /* Checksum the DIE and its children. */
7818 die_checksum_ordered (die, &ctx, &mark);
7819 unmark_all_dies (die);
7820 md5_finish_ctx (&ctx, checksum);
7822 /* Store the signature in the type node and link the type DIE and the
7823 type node together. */
7824 memcpy (type_node->signature, &checksum[16 - DWARF_TYPE_SIGNATURE_SIZE],
7825 DWARF_TYPE_SIGNATURE_SIZE);
7826 die->comdat_type_p = true;
7827 die->die_id.die_type_node = type_node;
7828 type_node->type_die = die;
7830 /* If the DIE is a specification, link its declaration to the type node
7831 as well. */
7832 if (decl != NULL)
7834 decl->comdat_type_p = true;
7835 decl->die_id.die_type_node = type_node;
7839 /* Do the location expressions look same? */
7840 static inline bool
7841 same_loc_p (dw_loc_descr_ref loc1, dw_loc_descr_ref loc2, int *mark)
7843 return loc1->dw_loc_opc == loc2->dw_loc_opc
7844 && same_dw_val_p (&loc1->dw_loc_oprnd1, &loc2->dw_loc_oprnd1, mark)
7845 && same_dw_val_p (&loc1->dw_loc_oprnd2, &loc2->dw_loc_oprnd2, mark);
7848 /* Do the values look the same? */
7849 static bool
7850 same_dw_val_p (const dw_val_node *v1, const dw_val_node *v2, int *mark)
7852 dw_loc_descr_ref loc1, loc2;
7853 rtx r1, r2;
7855 if (v1->val_class != v2->val_class)
7856 return false;
7858 switch (v1->val_class)
7860 case dw_val_class_const:
7861 case dw_val_class_const_implicit:
7862 return v1->v.val_int == v2->v.val_int;
7863 case dw_val_class_unsigned_const:
7864 case dw_val_class_unsigned_const_implicit:
7865 return v1->v.val_unsigned == v2->v.val_unsigned;
7866 case dw_val_class_const_double:
7867 return v1->v.val_double.high == v2->v.val_double.high
7868 && v1->v.val_double.low == v2->v.val_double.low;
7869 case dw_val_class_wide_int:
7870 return *v1->v.val_wide == *v2->v.val_wide;
7871 case dw_val_class_vec:
7872 if (v1->v.val_vec.length != v2->v.val_vec.length
7873 || v1->v.val_vec.elt_size != v2->v.val_vec.elt_size)
7874 return false;
7875 if (memcmp (v1->v.val_vec.array, v2->v.val_vec.array,
7876 v1->v.val_vec.length * v1->v.val_vec.elt_size))
7877 return false;
7878 return true;
7879 case dw_val_class_flag:
7880 return v1->v.val_flag == v2->v.val_flag;
7881 case dw_val_class_str:
7882 return !strcmp (v1->v.val_str->str, v2->v.val_str->str);
7884 case dw_val_class_addr:
7885 r1 = v1->v.val_addr;
7886 r2 = v2->v.val_addr;
7887 if (GET_CODE (r1) != GET_CODE (r2))
7888 return false;
7889 return !rtx_equal_p (r1, r2);
7891 case dw_val_class_offset:
7892 return v1->v.val_offset == v2->v.val_offset;
7894 case dw_val_class_loc:
7895 for (loc1 = v1->v.val_loc, loc2 = v2->v.val_loc;
7896 loc1 && loc2;
7897 loc1 = loc1->dw_loc_next, loc2 = loc2->dw_loc_next)
7898 if (!same_loc_p (loc1, loc2, mark))
7899 return false;
7900 return !loc1 && !loc2;
7902 case dw_val_class_die_ref:
7903 return same_die_p (v1->v.val_die_ref.die, v2->v.val_die_ref.die, mark);
7905 case dw_val_class_symview:
7906 return strcmp (v1->v.val_symbolic_view, v2->v.val_symbolic_view) == 0;
7908 case dw_val_class_fde_ref:
7909 case dw_val_class_vms_delta:
7910 case dw_val_class_lbl_id:
7911 case dw_val_class_lineptr:
7912 case dw_val_class_macptr:
7913 case dw_val_class_loclistsptr:
7914 case dw_val_class_high_pc:
7915 return true;
7917 case dw_val_class_file:
7918 case dw_val_class_file_implicit:
7919 return v1->v.val_file == v2->v.val_file;
7921 case dw_val_class_data8:
7922 return !memcmp (v1->v.val_data8, v2->v.val_data8, 8);
7924 default:
7925 return true;
7929 /* Do the attributes look the same? */
7931 static bool
7932 same_attr_p (dw_attr_node *at1, dw_attr_node *at2, int *mark)
7934 if (at1->dw_attr != at2->dw_attr)
7935 return false;
7937 /* We don't care that this was compiled with a different compiler
7938 snapshot; if the output is the same, that's what matters. */
7939 if (at1->dw_attr == DW_AT_producer)
7940 return true;
7942 return same_dw_val_p (&at1->dw_attr_val, &at2->dw_attr_val, mark);
7945 /* Do the dies look the same? */
7947 static bool
7948 same_die_p (dw_die_ref die1, dw_die_ref die2, int *mark)
7950 dw_die_ref c1, c2;
7951 dw_attr_node *a1;
7952 unsigned ix;
7954 /* To avoid infinite recursion. */
7955 if (die1->die_mark)
7956 return die1->die_mark == die2->die_mark;
7957 die1->die_mark = die2->die_mark = ++(*mark);
7959 if (die1->die_tag != die2->die_tag)
7960 return false;
7962 if (vec_safe_length (die1->die_attr) != vec_safe_length (die2->die_attr))
7963 return false;
7965 FOR_EACH_VEC_SAFE_ELT (die1->die_attr, ix, a1)
7966 if (!same_attr_p (a1, &(*die2->die_attr)[ix], mark))
7967 return false;
7969 c1 = die1->die_child;
7970 c2 = die2->die_child;
7971 if (! c1)
7973 if (c2)
7974 return false;
7976 else
7977 for (;;)
7979 if (!same_die_p (c1, c2, mark))
7980 return false;
7981 c1 = c1->die_sib;
7982 c2 = c2->die_sib;
7983 if (c1 == die1->die_child)
7985 if (c2 == die2->die_child)
7986 break;
7987 else
7988 return false;
7992 return true;
7995 /* Calculate the MD5 checksum of the compilation unit DIE UNIT_DIE and its
7996 children, and set die_symbol. */
7998 static void
7999 compute_comp_unit_symbol (dw_die_ref unit_die)
8001 const char *die_name = get_AT_string (unit_die, DW_AT_name);
8002 const char *base = die_name ? lbasename (die_name) : "anonymous";
8003 char *name = XALLOCAVEC (char, strlen (base) + 64);
8004 char *p;
8005 int i, mark;
8006 unsigned char checksum[16];
8007 struct md5_ctx ctx;
8009 /* Compute the checksum of the DIE, then append part of it as hex digits to
8010 the name filename of the unit. */
8012 md5_init_ctx (&ctx);
8013 mark = 0;
8014 die_checksum (unit_die, &ctx, &mark);
8015 unmark_all_dies (unit_die);
8016 md5_finish_ctx (&ctx, checksum);
8018 /* When we this for comp_unit_die () we have a DW_AT_name that might
8019 not start with a letter but with anything valid for filenames and
8020 clean_symbol_name doesn't fix that up. Prepend 'g' if the first
8021 character is not a letter. */
8022 sprintf (name, "%s%s.", ISALPHA (*base) ? "" : "g", base);
8023 clean_symbol_name (name);
8025 p = name + strlen (name);
8026 for (i = 0; i < 4; i++)
8028 sprintf (p, "%.2x", checksum[i]);
8029 p += 2;
8032 unit_die->die_id.die_symbol = xstrdup (name);
8035 /* Returns true if DIE represents a type, in the sense of TYPE_P. */
8037 static bool
8038 is_type_die (dw_die_ref die)
8040 switch (die->die_tag)
8042 case DW_TAG_array_type:
8043 case DW_TAG_class_type:
8044 case DW_TAG_interface_type:
8045 case DW_TAG_enumeration_type:
8046 case DW_TAG_pointer_type:
8047 case DW_TAG_reference_type:
8048 case DW_TAG_rvalue_reference_type:
8049 case DW_TAG_string_type:
8050 case DW_TAG_structure_type:
8051 case DW_TAG_subroutine_type:
8052 case DW_TAG_union_type:
8053 case DW_TAG_ptr_to_member_type:
8054 case DW_TAG_set_type:
8055 case DW_TAG_subrange_type:
8056 case DW_TAG_base_type:
8057 case DW_TAG_const_type:
8058 case DW_TAG_file_type:
8059 case DW_TAG_packed_type:
8060 case DW_TAG_volatile_type:
8061 case DW_TAG_typedef:
8062 return true;
8063 default:
8064 return false;
8068 /* Returns true iff C is a compile-unit DIE. */
8070 static inline bool
8071 is_cu_die (dw_die_ref c)
8073 return c && (c->die_tag == DW_TAG_compile_unit
8074 || c->die_tag == DW_TAG_skeleton_unit);
8077 /* Returns true iff C is a unit DIE of some sort. */
8079 static inline bool
8080 is_unit_die (dw_die_ref c)
8082 return c && (c->die_tag == DW_TAG_compile_unit
8083 || c->die_tag == DW_TAG_partial_unit
8084 || c->die_tag == DW_TAG_type_unit
8085 || c->die_tag == DW_TAG_skeleton_unit);
8088 /* Returns true iff C is a namespace DIE. */
8090 static inline bool
8091 is_namespace_die (dw_die_ref c)
8093 return c && c->die_tag == DW_TAG_namespace;
8096 /* Return true if this DIE is a template parameter. */
8098 static inline bool
8099 is_template_parameter (dw_die_ref die)
8101 switch (die->die_tag)
8103 case DW_TAG_template_type_param:
8104 case DW_TAG_template_value_param:
8105 case DW_TAG_GNU_template_template_param:
8106 case DW_TAG_GNU_template_parameter_pack:
8107 return true;
8108 default:
8109 return false;
8113 /* Return true if this DIE represents a template instantiation. */
8115 static inline bool
8116 is_template_instantiation (dw_die_ref die)
8118 dw_die_ref c;
8120 if (!is_type_die (die) && die->die_tag != DW_TAG_subprogram)
8121 return false;
8122 FOR_EACH_CHILD (die, c, if (is_template_parameter (c)) return true);
8123 return false;
8126 static char *
8127 gen_internal_sym (const char *prefix)
8129 char buf[MAX_ARTIFICIAL_LABEL_BYTES];
8131 ASM_GENERATE_INTERNAL_LABEL (buf, prefix, label_num++);
8132 return xstrdup (buf);
8135 /* Return true if this DIE is a declaration. */
8137 static bool
8138 is_declaration_die (dw_die_ref die)
8140 dw_attr_node *a;
8141 unsigned ix;
8143 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
8144 if (a->dw_attr == DW_AT_declaration)
8145 return true;
8147 return false;
8150 /* Return true if this DIE is nested inside a subprogram. */
8152 static bool
8153 is_nested_in_subprogram (dw_die_ref die)
8155 dw_die_ref decl = get_AT_ref (die, DW_AT_specification);
8157 if (decl == NULL)
8158 decl = die;
8159 return local_scope_p (decl);
8162 /* Return true if this DIE contains a defining declaration of a
8163 subprogram. */
8165 static bool
8166 contains_subprogram_definition (dw_die_ref die)
8168 dw_die_ref c;
8170 if (die->die_tag == DW_TAG_subprogram && ! is_declaration_die (die))
8171 return true;
8172 FOR_EACH_CHILD (die, c, if (contains_subprogram_definition (c)) return 1);
8173 return false;
8176 /* Return true if this is a type DIE that should be moved to a
8177 COMDAT .debug_types section or .debug_info section with DW_UT_*type
8178 unit type. */
8180 static bool
8181 should_move_die_to_comdat (dw_die_ref die)
8183 switch (die->die_tag)
8185 case DW_TAG_class_type:
8186 case DW_TAG_structure_type:
8187 case DW_TAG_enumeration_type:
8188 case DW_TAG_union_type:
8189 /* Don't move declarations, inlined instances, types nested in a
8190 subprogram, or types that contain subprogram definitions. */
8191 if (is_declaration_die (die)
8192 || get_AT (die, DW_AT_abstract_origin)
8193 || is_nested_in_subprogram (die)
8194 || contains_subprogram_definition (die))
8195 return false;
8196 return true;
8197 case DW_TAG_array_type:
8198 case DW_TAG_interface_type:
8199 case DW_TAG_pointer_type:
8200 case DW_TAG_reference_type:
8201 case DW_TAG_rvalue_reference_type:
8202 case DW_TAG_string_type:
8203 case DW_TAG_subroutine_type:
8204 case DW_TAG_ptr_to_member_type:
8205 case DW_TAG_set_type:
8206 case DW_TAG_subrange_type:
8207 case DW_TAG_base_type:
8208 case DW_TAG_const_type:
8209 case DW_TAG_file_type:
8210 case DW_TAG_packed_type:
8211 case DW_TAG_volatile_type:
8212 case DW_TAG_typedef:
8213 default:
8214 return false;
8218 /* Make a clone of DIE. */
8220 static dw_die_ref
8221 clone_die (dw_die_ref die)
8223 dw_die_ref clone = new_die_raw (die->die_tag);
8224 dw_attr_node *a;
8225 unsigned ix;
8227 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
8228 add_dwarf_attr (clone, a);
8230 return clone;
8233 /* Make a clone of the tree rooted at DIE. */
8235 static dw_die_ref
8236 clone_tree (dw_die_ref die)
8238 dw_die_ref c;
8239 dw_die_ref clone = clone_die (die);
8241 FOR_EACH_CHILD (die, c, add_child_die (clone, clone_tree (c)));
8243 return clone;
8246 /* Make a clone of DIE as a declaration. */
8248 static dw_die_ref
8249 clone_as_declaration (dw_die_ref die)
8251 dw_die_ref clone;
8252 dw_die_ref decl;
8253 dw_attr_node *a;
8254 unsigned ix;
8256 /* If the DIE is already a declaration, just clone it. */
8257 if (is_declaration_die (die))
8258 return clone_die (die);
8260 /* If the DIE is a specification, just clone its declaration DIE. */
8261 decl = get_AT_ref (die, DW_AT_specification);
8262 if (decl != NULL)
8264 clone = clone_die (decl);
8265 if (die->comdat_type_p)
8266 add_AT_die_ref (clone, DW_AT_signature, die);
8267 return clone;
8270 clone = new_die_raw (die->die_tag);
8272 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
8274 /* We don't want to copy over all attributes.
8275 For example we don't want DW_AT_byte_size because otherwise we will no
8276 longer have a declaration and GDB will treat it as a definition. */
8278 switch (a->dw_attr)
8280 case DW_AT_abstract_origin:
8281 case DW_AT_artificial:
8282 case DW_AT_containing_type:
8283 case DW_AT_external:
8284 case DW_AT_name:
8285 case DW_AT_type:
8286 case DW_AT_virtuality:
8287 case DW_AT_linkage_name:
8288 case DW_AT_MIPS_linkage_name:
8289 add_dwarf_attr (clone, a);
8290 break;
8291 case DW_AT_byte_size:
8292 case DW_AT_alignment:
8293 default:
8294 break;
8298 if (die->comdat_type_p)
8299 add_AT_die_ref (clone, DW_AT_signature, die);
8301 add_AT_flag (clone, DW_AT_declaration, 1);
8302 return clone;
8306 /* Structure to map a DIE in one CU to its copy in a comdat type unit. */
8308 struct decl_table_entry
8310 dw_die_ref orig;
8311 dw_die_ref copy;
8314 /* Helpers to manipulate hash table of copied declarations. */
8316 /* Hashtable helpers. */
8318 struct decl_table_entry_hasher : free_ptr_hash <decl_table_entry>
8320 typedef die_struct *compare_type;
8321 static inline hashval_t hash (const decl_table_entry *);
8322 static inline bool equal (const decl_table_entry *, const die_struct *);
8325 inline hashval_t
8326 decl_table_entry_hasher::hash (const decl_table_entry *entry)
8328 return htab_hash_pointer (entry->orig);
8331 inline bool
8332 decl_table_entry_hasher::equal (const decl_table_entry *entry1,
8333 const die_struct *entry2)
8335 return entry1->orig == entry2;
8338 typedef hash_table<decl_table_entry_hasher> decl_hash_type;
8340 /* Copy DIE and its ancestors, up to, but not including, the compile unit
8341 or type unit entry, to a new tree. Adds the new tree to UNIT and returns
8342 a pointer to the copy of DIE. If DECL_TABLE is provided, it is used
8343 to check if the ancestor has already been copied into UNIT. */
8345 static dw_die_ref
8346 copy_ancestor_tree (dw_die_ref unit, dw_die_ref die,
8347 decl_hash_type *decl_table)
8349 dw_die_ref parent = die->die_parent;
8350 dw_die_ref new_parent = unit;
8351 dw_die_ref copy;
8352 decl_table_entry **slot = NULL;
8353 struct decl_table_entry *entry = NULL;
8355 /* If DIE refers to a stub unfold that so we get the appropriate
8356 DIE registered as orig in decl_table. */
8357 if (dw_die_ref c = get_AT_ref (die, DW_AT_signature))
8358 die = c;
8360 if (decl_table)
8362 /* Check if the entry has already been copied to UNIT. */
8363 slot = decl_table->find_slot_with_hash (die, htab_hash_pointer (die),
8364 INSERT);
8365 if (*slot != HTAB_EMPTY_ENTRY)
8367 entry = *slot;
8368 return entry->copy;
8371 /* Record in DECL_TABLE that DIE has been copied to UNIT. */
8372 entry = XCNEW (struct decl_table_entry);
8373 entry->orig = die;
8374 entry->copy = NULL;
8375 *slot = entry;
8378 if (parent != NULL)
8380 dw_die_ref spec = get_AT_ref (parent, DW_AT_specification);
8381 if (spec != NULL)
8382 parent = spec;
8383 if (!is_unit_die (parent))
8384 new_parent = copy_ancestor_tree (unit, parent, decl_table);
8387 copy = clone_as_declaration (die);
8388 add_child_die (new_parent, copy);
8390 if (decl_table)
8392 /* Record the pointer to the copy. */
8393 entry->copy = copy;
8396 return copy;
8398 /* Copy the declaration context to the new type unit DIE. This includes
8399 any surrounding namespace or type declarations. If the DIE has an
8400 AT_specification attribute, it also includes attributes and children
8401 attached to the specification, and returns a pointer to the original
8402 parent of the declaration DIE. Returns NULL otherwise. */
8404 static dw_die_ref
8405 copy_declaration_context (dw_die_ref unit, dw_die_ref die)
8407 dw_die_ref decl;
8408 dw_die_ref new_decl;
8409 dw_die_ref orig_parent = NULL;
8411 decl = get_AT_ref (die, DW_AT_specification);
8412 if (decl == NULL)
8413 decl = die;
8414 else
8416 unsigned ix;
8417 dw_die_ref c;
8418 dw_attr_node *a;
8420 /* The original DIE will be changed to a declaration, and must
8421 be moved to be a child of the original declaration DIE. */
8422 orig_parent = decl->die_parent;
8424 /* Copy the type node pointer from the new DIE to the original
8425 declaration DIE so we can forward references later. */
8426 decl->comdat_type_p = true;
8427 decl->die_id.die_type_node = die->die_id.die_type_node;
8429 remove_AT (die, DW_AT_specification);
8431 FOR_EACH_VEC_SAFE_ELT (decl->die_attr, ix, a)
8433 if (a->dw_attr != DW_AT_name
8434 && a->dw_attr != DW_AT_declaration
8435 && a->dw_attr != DW_AT_external)
8436 add_dwarf_attr (die, a);
8439 FOR_EACH_CHILD (decl, c, add_child_die (die, clone_tree (c)));
8442 if (decl->die_parent != NULL
8443 && !is_unit_die (decl->die_parent))
8445 new_decl = copy_ancestor_tree (unit, decl, NULL);
8446 if (new_decl != NULL)
8448 remove_AT (new_decl, DW_AT_signature);
8449 add_AT_specification (die, new_decl);
8453 return orig_parent;
8456 /* Generate the skeleton ancestor tree for the given NODE, then clone
8457 the DIE and add the clone into the tree. */
8459 static void
8460 generate_skeleton_ancestor_tree (skeleton_chain_node *node)
8462 if (node->new_die != NULL)
8463 return;
8465 node->new_die = clone_as_declaration (node->old_die);
8467 if (node->parent != NULL)
8469 generate_skeleton_ancestor_tree (node->parent);
8470 add_child_die (node->parent->new_die, node->new_die);
8474 /* Generate a skeleton tree of DIEs containing any declarations that are
8475 found in the original tree. We traverse the tree looking for declaration
8476 DIEs, and construct the skeleton from the bottom up whenever we find one. */
8478 static void
8479 generate_skeleton_bottom_up (skeleton_chain_node *parent)
8481 skeleton_chain_node node;
8482 dw_die_ref c;
8483 dw_die_ref first;
8484 dw_die_ref prev = NULL;
8485 dw_die_ref next = NULL;
8487 node.parent = parent;
8489 first = c = parent->old_die->die_child;
8490 if (c)
8491 next = c->die_sib;
8492 if (c) do {
8493 if (prev == NULL || prev->die_sib == c)
8494 prev = c;
8495 c = next;
8496 next = (c == first ? NULL : c->die_sib);
8497 node.old_die = c;
8498 node.new_die = NULL;
8499 if (is_declaration_die (c))
8501 if (is_template_instantiation (c))
8503 /* Instantiated templates do not need to be cloned into the
8504 type unit. Just move the DIE and its children back to
8505 the skeleton tree (in the main CU). */
8506 remove_child_with_prev (c, prev);
8507 add_child_die (parent->new_die, c);
8508 c = prev;
8510 else if (c->comdat_type_p)
8512 /* This is the skeleton of earlier break_out_comdat_types
8513 type. Clone the existing DIE, but keep the children
8514 under the original (which is in the main CU). */
8515 dw_die_ref clone = clone_die (c);
8517 replace_child (c, clone, prev);
8518 generate_skeleton_ancestor_tree (parent);
8519 add_child_die (parent->new_die, c);
8520 c = clone;
8521 continue;
8523 else
8525 /* Clone the existing DIE, move the original to the skeleton
8526 tree (which is in the main CU), and put the clone, with
8527 all the original's children, where the original came from
8528 (which is about to be moved to the type unit). */
8529 dw_die_ref clone = clone_die (c);
8530 move_all_children (c, clone);
8532 /* If the original has a DW_AT_object_pointer attribute,
8533 it would now point to a child DIE just moved to the
8534 cloned tree, so we need to remove that attribute from
8535 the original. */
8536 remove_AT (c, DW_AT_object_pointer);
8538 replace_child (c, clone, prev);
8539 generate_skeleton_ancestor_tree (parent);
8540 add_child_die (parent->new_die, c);
8541 node.old_die = clone;
8542 node.new_die = c;
8543 c = clone;
8546 generate_skeleton_bottom_up (&node);
8547 } while (next != NULL);
8550 /* Wrapper function for generate_skeleton_bottom_up. */
8552 static dw_die_ref
8553 generate_skeleton (dw_die_ref die)
8555 skeleton_chain_node node;
8557 node.old_die = die;
8558 node.new_die = NULL;
8559 node.parent = NULL;
8561 /* If this type definition is nested inside another type,
8562 and is not an instantiation of a template, always leave
8563 at least a declaration in its place. */
8564 if (die->die_parent != NULL
8565 && is_type_die (die->die_parent)
8566 && !is_template_instantiation (die))
8567 node.new_die = clone_as_declaration (die);
8569 generate_skeleton_bottom_up (&node);
8570 return node.new_die;
8573 /* Remove the CHILD DIE from its parent, possibly replacing it with a cloned
8574 declaration. The original DIE is moved to a new compile unit so that
8575 existing references to it follow it to the new location. If any of the
8576 original DIE's descendants is a declaration, we need to replace the
8577 original DIE with a skeleton tree and move the declarations back into the
8578 skeleton tree. */
8580 static dw_die_ref
8581 remove_child_or_replace_with_skeleton (dw_die_ref unit, dw_die_ref child,
8582 dw_die_ref prev)
8584 dw_die_ref skeleton, orig_parent;
8586 /* Copy the declaration context to the type unit DIE. If the returned
8587 ORIG_PARENT is not NULL, the skeleton needs to be added as a child of
8588 that DIE. */
8589 orig_parent = copy_declaration_context (unit, child);
8591 skeleton = generate_skeleton (child);
8592 if (skeleton == NULL)
8593 remove_child_with_prev (child, prev);
8594 else
8596 skeleton->comdat_type_p = true;
8597 skeleton->die_id.die_type_node = child->die_id.die_type_node;
8599 /* If the original DIE was a specification, we need to put
8600 the skeleton under the parent DIE of the declaration.
8601 This leaves the original declaration in the tree, but
8602 it will be pruned later since there are no longer any
8603 references to it. */
8604 if (orig_parent != NULL)
8606 remove_child_with_prev (child, prev);
8607 add_child_die (orig_parent, skeleton);
8609 else
8610 replace_child (child, skeleton, prev);
8613 return skeleton;
8616 static void
8617 copy_dwarf_procs_ref_in_attrs (dw_die_ref die,
8618 comdat_type_node *type_node,
8619 hash_map<dw_die_ref, dw_die_ref> &copied_dwarf_procs);
8621 /* Helper for copy_dwarf_procs_ref_in_dies. Make a copy of the DIE DWARF
8622 procedure, put it under TYPE_NODE and return the copy. Continue looking for
8623 DWARF procedure references in the DW_AT_location attribute. */
8625 static dw_die_ref
8626 copy_dwarf_procedure (dw_die_ref die,
8627 comdat_type_node *type_node,
8628 hash_map<dw_die_ref, dw_die_ref> &copied_dwarf_procs)
8630 gcc_assert (die->die_tag == DW_TAG_dwarf_procedure);
8632 /* DWARF procedures are not supposed to have children... */
8633 gcc_assert (die->die_child == NULL);
8635 /* ... and they are supposed to have only one attribute: DW_AT_location. */
8636 gcc_assert (vec_safe_length (die->die_attr) == 1
8637 && ((*die->die_attr)[0].dw_attr == DW_AT_location));
8639 /* Do not copy more than once DWARF procedures. */
8640 bool existed;
8641 dw_die_ref &die_copy = copied_dwarf_procs.get_or_insert (die, &existed);
8642 if (existed)
8643 return die_copy;
8645 die_copy = clone_die (die);
8646 add_child_die (type_node->root_die, die_copy);
8647 copy_dwarf_procs_ref_in_attrs (die_copy, type_node, copied_dwarf_procs);
8648 return die_copy;
8651 /* Helper for copy_dwarf_procs_ref_in_dies. Look for references to DWARF
8652 procedures in DIE's attributes. */
8654 static void
8655 copy_dwarf_procs_ref_in_attrs (dw_die_ref die,
8656 comdat_type_node *type_node,
8657 hash_map<dw_die_ref, dw_die_ref> &copied_dwarf_procs)
8659 dw_attr_node *a;
8660 unsigned i;
8662 FOR_EACH_VEC_SAFE_ELT (die->die_attr, i, a)
8664 dw_loc_descr_ref loc;
8666 if (a->dw_attr_val.val_class != dw_val_class_loc)
8667 continue;
8669 for (loc = a->dw_attr_val.v.val_loc; loc != NULL; loc = loc->dw_loc_next)
8671 switch (loc->dw_loc_opc)
8673 case DW_OP_call2:
8674 case DW_OP_call4:
8675 case DW_OP_call_ref:
8676 gcc_assert (loc->dw_loc_oprnd1.val_class
8677 == dw_val_class_die_ref);
8678 loc->dw_loc_oprnd1.v.val_die_ref.die
8679 = copy_dwarf_procedure (loc->dw_loc_oprnd1.v.val_die_ref.die,
8680 type_node,
8681 copied_dwarf_procs);
8683 default:
8684 break;
8690 /* Copy DWARF procedures that are referenced by the DIE tree to TREE_NODE and
8691 rewrite references to point to the copies.
8693 References are looked for in DIE's attributes and recursively in all its
8694 children attributes that are location descriptions. COPIED_DWARF_PROCS is a
8695 mapping from old DWARF procedures to their copy. It is used not to copy
8696 twice the same DWARF procedure under TYPE_NODE. */
8698 static void
8699 copy_dwarf_procs_ref_in_dies (dw_die_ref die,
8700 comdat_type_node *type_node,
8701 hash_map<dw_die_ref, dw_die_ref> &copied_dwarf_procs)
8703 dw_die_ref c;
8705 copy_dwarf_procs_ref_in_attrs (die, type_node, copied_dwarf_procs);
8706 FOR_EACH_CHILD (die, c, copy_dwarf_procs_ref_in_dies (c,
8707 type_node,
8708 copied_dwarf_procs));
8711 /* Traverse the DIE and set up additional .debug_types or .debug_info
8712 DW_UT_*type sections for each type worthy of being placed in a COMDAT
8713 section. */
8715 static void
8716 break_out_comdat_types (dw_die_ref die)
8718 dw_die_ref c;
8719 dw_die_ref first;
8720 dw_die_ref prev = NULL;
8721 dw_die_ref next = NULL;
8722 dw_die_ref unit = NULL;
8724 first = c = die->die_child;
8725 if (c)
8726 next = c->die_sib;
8727 if (c) do {
8728 if (prev == NULL || prev->die_sib == c)
8729 prev = c;
8730 c = next;
8731 next = (c == first ? NULL : c->die_sib);
8732 if (should_move_die_to_comdat (c))
8734 dw_die_ref replacement;
8735 comdat_type_node *type_node;
8737 /* Break out nested types into their own type units. */
8738 break_out_comdat_types (c);
8740 /* Create a new type unit DIE as the root for the new tree. */
8741 unit = new_die (DW_TAG_type_unit, NULL, NULL);
8742 add_AT_unsigned (unit, DW_AT_language,
8743 get_AT_unsigned (comp_unit_die (), DW_AT_language));
8745 /* Add the new unit's type DIE into the comdat type list. */
8746 type_node = ggc_cleared_alloc<comdat_type_node> ();
8747 type_node->root_die = unit;
8748 type_node->next = comdat_type_list;
8749 comdat_type_list = type_node;
8751 /* Generate the type signature. */
8752 generate_type_signature (c, type_node);
8754 /* Copy the declaration context, attributes, and children of the
8755 declaration into the new type unit DIE, then remove this DIE
8756 from the main CU (or replace it with a skeleton if necessary). */
8757 replacement = remove_child_or_replace_with_skeleton (unit, c, prev);
8758 type_node->skeleton_die = replacement;
8760 /* Add the DIE to the new compunit. */
8761 add_child_die (unit, c);
8763 /* Types can reference DWARF procedures for type size or data location
8764 expressions. Calls in DWARF expressions cannot target procedures
8765 that are not in the same section. So we must copy DWARF procedures
8766 along with this type and then rewrite references to them. */
8767 hash_map<dw_die_ref, dw_die_ref> copied_dwarf_procs;
8768 copy_dwarf_procs_ref_in_dies (c, type_node, copied_dwarf_procs);
8770 if (replacement != NULL)
8771 c = replacement;
8773 else if (c->die_tag == DW_TAG_namespace
8774 || c->die_tag == DW_TAG_class_type
8775 || c->die_tag == DW_TAG_structure_type
8776 || c->die_tag == DW_TAG_union_type)
8778 /* Look for nested types that can be broken out. */
8779 break_out_comdat_types (c);
8781 } while (next != NULL);
8784 /* Like clone_tree, but copy DW_TAG_subprogram DIEs as declarations.
8785 Enter all the cloned children into the hash table decl_table. */
8787 static dw_die_ref
8788 clone_tree_partial (dw_die_ref die, decl_hash_type *decl_table)
8790 dw_die_ref c;
8791 dw_die_ref clone;
8792 struct decl_table_entry *entry;
8793 decl_table_entry **slot;
8795 if (die->die_tag == DW_TAG_subprogram)
8796 clone = clone_as_declaration (die);
8797 else
8798 clone = clone_die (die);
8800 slot = decl_table->find_slot_with_hash (die,
8801 htab_hash_pointer (die), INSERT);
8803 /* Assert that DIE isn't in the hash table yet. If it would be there
8804 before, the ancestors would be necessarily there as well, therefore
8805 clone_tree_partial wouldn't be called. */
8806 gcc_assert (*slot == HTAB_EMPTY_ENTRY);
8808 entry = XCNEW (struct decl_table_entry);
8809 entry->orig = die;
8810 entry->copy = clone;
8811 *slot = entry;
8813 if (die->die_tag != DW_TAG_subprogram)
8814 FOR_EACH_CHILD (die, c,
8815 add_child_die (clone, clone_tree_partial (c, decl_table)));
8817 return clone;
8820 /* Walk the DIE and its children, looking for references to incomplete
8821 or trivial types that are unmarked (i.e., that are not in the current
8822 type_unit). */
8824 static void
8825 copy_decls_walk (dw_die_ref unit, dw_die_ref die, decl_hash_type *decl_table)
8827 dw_die_ref c;
8828 dw_attr_node *a;
8829 unsigned ix;
8831 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
8833 if (AT_class (a) == dw_val_class_die_ref)
8835 dw_die_ref targ = AT_ref (a);
8836 decl_table_entry **slot;
8837 struct decl_table_entry *entry;
8839 if (targ->die_mark != 0 || targ->comdat_type_p)
8840 continue;
8842 slot = decl_table->find_slot_with_hash (targ,
8843 htab_hash_pointer (targ),
8844 INSERT);
8846 if (*slot != HTAB_EMPTY_ENTRY)
8848 /* TARG has already been copied, so we just need to
8849 modify the reference to point to the copy. */
8850 entry = *slot;
8851 a->dw_attr_val.v.val_die_ref.die = entry->copy;
8853 else
8855 dw_die_ref parent = unit;
8856 dw_die_ref copy = clone_die (targ);
8858 /* Record in DECL_TABLE that TARG has been copied.
8859 Need to do this now, before the recursive call,
8860 because DECL_TABLE may be expanded and SLOT
8861 would no longer be a valid pointer. */
8862 entry = XCNEW (struct decl_table_entry);
8863 entry->orig = targ;
8864 entry->copy = copy;
8865 *slot = entry;
8867 /* If TARG is not a declaration DIE, we need to copy its
8868 children. */
8869 if (!is_declaration_die (targ))
8871 FOR_EACH_CHILD (
8872 targ, c,
8873 add_child_die (copy,
8874 clone_tree_partial (c, decl_table)));
8877 /* Make sure the cloned tree is marked as part of the
8878 type unit. */
8879 mark_dies (copy);
8881 /* If TARG has surrounding context, copy its ancestor tree
8882 into the new type unit. */
8883 if (targ->die_parent != NULL
8884 && !is_unit_die (targ->die_parent))
8885 parent = copy_ancestor_tree (unit, targ->die_parent,
8886 decl_table);
8888 add_child_die (parent, copy);
8889 a->dw_attr_val.v.val_die_ref.die = copy;
8891 /* Make sure the newly-copied DIE is walked. If it was
8892 installed in a previously-added context, it won't
8893 get visited otherwise. */
8894 if (parent != unit)
8896 /* Find the highest point of the newly-added tree,
8897 mark each node along the way, and walk from there. */
8898 parent->die_mark = 1;
8899 while (parent->die_parent
8900 && parent->die_parent->die_mark == 0)
8902 parent = parent->die_parent;
8903 parent->die_mark = 1;
8905 copy_decls_walk (unit, parent, decl_table);
8911 FOR_EACH_CHILD (die, c, copy_decls_walk (unit, c, decl_table));
8914 /* Collect skeleton dies in DIE created by break_out_comdat_types already
8915 and record them in DECL_TABLE. */
8917 static void
8918 collect_skeleton_dies (dw_die_ref die, decl_hash_type *decl_table)
8920 dw_die_ref c;
8922 if (dw_attr_node *a = get_AT (die, DW_AT_signature))
8924 dw_die_ref targ = AT_ref (a);
8925 gcc_assert (targ->die_mark == 0 && targ->comdat_type_p);
8926 decl_table_entry **slot
8927 = decl_table->find_slot_with_hash (targ,
8928 htab_hash_pointer (targ),
8929 INSERT);
8930 gcc_assert (*slot == HTAB_EMPTY_ENTRY);
8931 /* Record in DECL_TABLE that TARG has been already copied
8932 by remove_child_or_replace_with_skeleton. */
8933 decl_table_entry *entry = XCNEW (struct decl_table_entry);
8934 entry->orig = targ;
8935 entry->copy = die;
8936 *slot = entry;
8938 FOR_EACH_CHILD (die, c, collect_skeleton_dies (c, decl_table));
8941 /* Copy declarations for "unworthy" types into the new comdat section.
8942 Incomplete types, modified types, and certain other types aren't broken
8943 out into comdat sections of their own, so they don't have a signature,
8944 and we need to copy the declaration into the same section so that we
8945 don't have an external reference. */
8947 static void
8948 copy_decls_for_unworthy_types (dw_die_ref unit)
8950 mark_dies (unit);
8951 decl_hash_type decl_table (10);
8952 collect_skeleton_dies (unit, &decl_table);
8953 copy_decls_walk (unit, unit, &decl_table);
8954 unmark_dies (unit);
8957 /* Traverse the DIE and add a sibling attribute if it may have the
8958 effect of speeding up access to siblings. To save some space,
8959 avoid generating sibling attributes for DIE's without children. */
8961 static void
8962 add_sibling_attributes (dw_die_ref die)
8964 dw_die_ref c;
8966 if (! die->die_child)
8967 return;
8969 if (die->die_parent && die != die->die_parent->die_child)
8970 add_AT_die_ref (die, DW_AT_sibling, die->die_sib);
8972 FOR_EACH_CHILD (die, c, add_sibling_attributes (c));
8975 /* Output all location lists for the DIE and its children. */
8977 static void
8978 output_location_lists (dw_die_ref die)
8980 dw_die_ref c;
8981 dw_attr_node *a;
8982 unsigned ix;
8984 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
8985 if (AT_class (a) == dw_val_class_loc_list)
8986 output_loc_list (AT_loc_list (a));
8988 FOR_EACH_CHILD (die, c, output_location_lists (c));
8991 /* During assign_location_list_indexes and output_loclists_offset the
8992 current index, after it the number of assigned indexes (i.e. how
8993 large the .debug_loclists* offset table should be). */
8994 static unsigned int loc_list_idx;
8996 /* Output all location list offsets for the DIE and its children. */
8998 static void
8999 output_loclists_offsets (dw_die_ref die)
9001 dw_die_ref c;
9002 dw_attr_node *a;
9003 unsigned ix;
9005 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
9006 if (AT_class (a) == dw_val_class_loc_list)
9008 dw_loc_list_ref l = AT_loc_list (a);
9009 if (l->offset_emitted)
9010 continue;
9011 dw2_asm_output_delta (dwarf_offset_size, l->ll_symbol,
9012 loc_section_label, NULL);
9013 gcc_assert (l->hash == loc_list_idx);
9014 loc_list_idx++;
9015 l->offset_emitted = true;
9018 FOR_EACH_CHILD (die, c, output_loclists_offsets (c));
9021 /* Recursively set indexes of location lists. */
9023 static void
9024 assign_location_list_indexes (dw_die_ref die)
9026 dw_die_ref c;
9027 dw_attr_node *a;
9028 unsigned ix;
9030 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
9031 if (AT_class (a) == dw_val_class_loc_list)
9033 dw_loc_list_ref list = AT_loc_list (a);
9034 if (!list->num_assigned)
9036 list->num_assigned = true;
9037 list->hash = loc_list_idx++;
9041 FOR_EACH_CHILD (die, c, assign_location_list_indexes (c));
9044 /* We want to limit the number of external references, because they are
9045 larger than local references: a relocation takes multiple words, and
9046 even a sig8 reference is always eight bytes, whereas a local reference
9047 can be as small as one byte (though DW_FORM_ref is usually 4 in GCC).
9048 So if we encounter multiple external references to the same type DIE, we
9049 make a local typedef stub for it and redirect all references there.
9051 This is the element of the hash table for keeping track of these
9052 references. */
9054 struct external_ref
9056 dw_die_ref type;
9057 dw_die_ref stub;
9058 unsigned n_refs;
9061 /* Hashtable helpers. */
9063 struct external_ref_hasher : free_ptr_hash <external_ref>
9065 static inline hashval_t hash (const external_ref *);
9066 static inline bool equal (const external_ref *, const external_ref *);
9069 inline hashval_t
9070 external_ref_hasher::hash (const external_ref *r)
9072 dw_die_ref die = r->type;
9073 hashval_t h = 0;
9075 /* We can't use the address of the DIE for hashing, because
9076 that will make the order of the stub DIEs non-deterministic. */
9077 if (! die->comdat_type_p)
9078 /* We have a symbol; use it to compute a hash. */
9079 h = htab_hash_string (die->die_id.die_symbol);
9080 else
9082 /* We have a type signature; use a subset of the bits as the hash.
9083 The 8-byte signature is at least as large as hashval_t. */
9084 comdat_type_node *type_node = die->die_id.die_type_node;
9085 memcpy (&h, type_node->signature, sizeof (h));
9087 return h;
9090 inline bool
9091 external_ref_hasher::equal (const external_ref *r1, const external_ref *r2)
9093 return r1->type == r2->type;
9096 typedef hash_table<external_ref_hasher> external_ref_hash_type;
9098 /* Return a pointer to the external_ref for references to DIE. */
9100 static struct external_ref *
9101 lookup_external_ref (external_ref_hash_type *map, dw_die_ref die)
9103 struct external_ref ref, *ref_p;
9104 external_ref **slot;
9106 ref.type = die;
9107 slot = map->find_slot (&ref, INSERT);
9108 if (*slot != HTAB_EMPTY_ENTRY)
9109 return *slot;
9111 ref_p = XCNEW (struct external_ref);
9112 ref_p->type = die;
9113 *slot = ref_p;
9114 return ref_p;
9117 /* Subroutine of optimize_external_refs, below.
9119 If we see a type skeleton, record it as our stub. If we see external
9120 references, remember how many we've seen. */
9122 static void
9123 optimize_external_refs_1 (dw_die_ref die, external_ref_hash_type *map)
9125 dw_die_ref c;
9126 dw_attr_node *a;
9127 unsigned ix;
9128 struct external_ref *ref_p;
9130 if (is_type_die (die)
9131 && (c = get_AT_ref (die, DW_AT_signature)))
9133 /* This is a local skeleton; use it for local references. */
9134 ref_p = lookup_external_ref (map, c);
9135 ref_p->stub = die;
9138 /* Scan the DIE references, and remember any that refer to DIEs from
9139 other CUs (i.e. those which are not marked). */
9140 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
9141 if (AT_class (a) == dw_val_class_die_ref
9142 && (c = AT_ref (a))->die_mark == 0
9143 && is_type_die (c))
9145 ref_p = lookup_external_ref (map, c);
9146 ref_p->n_refs++;
9149 FOR_EACH_CHILD (die, c, optimize_external_refs_1 (c, map));
9152 /* htab_traverse callback function for optimize_external_refs, below. SLOT
9153 points to an external_ref, DATA is the CU we're processing. If we don't
9154 already have a local stub, and we have multiple refs, build a stub. */
9157 dwarf2_build_local_stub (external_ref **slot, dw_die_ref data)
9159 struct external_ref *ref_p = *slot;
9161 if (ref_p->stub == NULL && ref_p->n_refs > 1 && !dwarf_strict)
9163 /* We have multiple references to this type, so build a small stub.
9164 Both of these forms are a bit dodgy from the perspective of the
9165 DWARF standard, since technically they should have names. */
9166 dw_die_ref cu = data;
9167 dw_die_ref type = ref_p->type;
9168 dw_die_ref stub = NULL;
9170 if (type->comdat_type_p)
9172 /* If we refer to this type via sig8, use AT_signature. */
9173 stub = new_die (type->die_tag, cu, NULL_TREE);
9174 add_AT_die_ref (stub, DW_AT_signature, type);
9176 else
9178 /* Otherwise, use a typedef with no name. */
9179 stub = new_die (DW_TAG_typedef, cu, NULL_TREE);
9180 add_AT_die_ref (stub, DW_AT_type, type);
9183 stub->die_mark++;
9184 ref_p->stub = stub;
9186 return 1;
9189 /* DIE is a unit; look through all the DIE references to see if there are
9190 any external references to types, and if so, create local stubs for
9191 them which will be applied in build_abbrev_table. This is useful because
9192 references to local DIEs are smaller. */
9194 static external_ref_hash_type *
9195 optimize_external_refs (dw_die_ref die)
9197 external_ref_hash_type *map = new external_ref_hash_type (10);
9198 optimize_external_refs_1 (die, map);
9199 map->traverse <dw_die_ref, dwarf2_build_local_stub> (die);
9200 return map;
9203 /* The following 3 variables are temporaries that are computed only during the
9204 build_abbrev_table call and used and released during the following
9205 optimize_abbrev_table call. */
9207 /* First abbrev_id that can be optimized based on usage. */
9208 static unsigned int abbrev_opt_start;
9210 /* Maximum abbrev_id of a base type plus one (we can't optimize DIEs with
9211 abbrev_id smaller than this, because they must be already sized
9212 during build_abbrev_table). */
9213 static unsigned int abbrev_opt_base_type_end;
9215 /* Vector of usage counts during build_abbrev_table. Indexed by
9216 abbrev_id - abbrev_opt_start. */
9217 static vec<unsigned int> abbrev_usage_count;
9219 /* Vector of all DIEs added with die_abbrev >= abbrev_opt_start. */
9220 static vec<dw_die_ref> sorted_abbrev_dies;
9222 /* The format of each DIE (and its attribute value pairs) is encoded in an
9223 abbreviation table. This routine builds the abbreviation table and assigns
9224 a unique abbreviation id for each abbreviation entry. The children of each
9225 die are visited recursively. */
9227 static void
9228 build_abbrev_table (dw_die_ref die, external_ref_hash_type *extern_map)
9230 unsigned int abbrev_id = 0;
9231 dw_die_ref c;
9232 dw_attr_node *a;
9233 unsigned ix;
9234 dw_die_ref abbrev;
9236 /* Scan the DIE references, and replace any that refer to
9237 DIEs from other CUs (i.e. those which are not marked) with
9238 the local stubs we built in optimize_external_refs. */
9239 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
9240 if (AT_class (a) == dw_val_class_die_ref
9241 && (c = AT_ref (a))->die_mark == 0)
9243 struct external_ref *ref_p;
9244 gcc_assert (AT_ref (a)->comdat_type_p || AT_ref (a)->die_id.die_symbol);
9246 if (is_type_die (c)
9247 && (ref_p = lookup_external_ref (extern_map, c))
9248 && ref_p->stub && ref_p->stub != die)
9250 gcc_assert (a->dw_attr != DW_AT_signature);
9251 change_AT_die_ref (a, ref_p->stub);
9253 else
9254 /* We aren't changing this reference, so mark it external. */
9255 set_AT_ref_external (a, 1);
9258 FOR_EACH_VEC_SAFE_ELT (abbrev_die_table, abbrev_id, abbrev)
9260 dw_attr_node *die_a, *abbrev_a;
9261 unsigned ix;
9262 bool ok = true;
9264 if (abbrev_id == 0)
9265 continue;
9266 if (abbrev->die_tag != die->die_tag)
9267 continue;
9268 if ((abbrev->die_child != NULL) != (die->die_child != NULL))
9269 continue;
9271 if (vec_safe_length (abbrev->die_attr) != vec_safe_length (die->die_attr))
9272 continue;
9274 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, die_a)
9276 abbrev_a = &(*abbrev->die_attr)[ix];
9277 if ((abbrev_a->dw_attr != die_a->dw_attr)
9278 || (value_format (abbrev_a) != value_format (die_a)))
9280 ok = false;
9281 break;
9284 if (ok)
9285 break;
9288 if (abbrev_id >= vec_safe_length (abbrev_die_table))
9290 vec_safe_push (abbrev_die_table, die);
9291 if (abbrev_opt_start)
9292 abbrev_usage_count.safe_push (0);
9294 if (abbrev_opt_start && abbrev_id >= abbrev_opt_start)
9296 abbrev_usage_count[abbrev_id - abbrev_opt_start]++;
9297 sorted_abbrev_dies.safe_push (die);
9300 die->die_abbrev = abbrev_id;
9301 FOR_EACH_CHILD (die, c, build_abbrev_table (c, extern_map));
9304 /* Callback function for sorted_abbrev_dies vector sorting. We sort
9305 by die_abbrev's usage count, from the most commonly used
9306 abbreviation to the least. */
9308 static int
9309 die_abbrev_cmp (const void *p1, const void *p2)
9311 dw_die_ref die1 = *(const dw_die_ref *) p1;
9312 dw_die_ref die2 = *(const dw_die_ref *) p2;
9314 gcc_checking_assert (die1->die_abbrev >= abbrev_opt_start);
9315 gcc_checking_assert (die2->die_abbrev >= abbrev_opt_start);
9317 if (die1->die_abbrev >= abbrev_opt_base_type_end
9318 && die2->die_abbrev >= abbrev_opt_base_type_end)
9320 if (abbrev_usage_count[die1->die_abbrev - abbrev_opt_start]
9321 > abbrev_usage_count[die2->die_abbrev - abbrev_opt_start])
9322 return -1;
9323 if (abbrev_usage_count[die1->die_abbrev - abbrev_opt_start]
9324 < abbrev_usage_count[die2->die_abbrev - abbrev_opt_start])
9325 return 1;
9328 /* Stabilize the sort. */
9329 if (die1->die_abbrev < die2->die_abbrev)
9330 return -1;
9331 if (die1->die_abbrev > die2->die_abbrev)
9332 return 1;
9334 return 0;
9337 /* Convert dw_val_class_const and dw_val_class_unsigned_const class attributes
9338 of DIEs in between sorted_abbrev_dies[first_id] and abbrev_dies[end_id - 1]
9339 into dw_val_class_const_implicit or
9340 dw_val_class_unsigned_const_implicit. */
9342 static void
9343 optimize_implicit_const (unsigned int first_id, unsigned int end,
9344 vec<bool> &implicit_consts)
9346 /* It never makes sense if there is just one DIE using the abbreviation. */
9347 if (end < first_id + 2)
9348 return;
9350 dw_attr_node *a;
9351 unsigned ix, i;
9352 dw_die_ref die = sorted_abbrev_dies[first_id];
9353 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
9354 if (implicit_consts[ix])
9356 enum dw_val_class new_class = dw_val_class_none;
9357 switch (AT_class (a))
9359 case dw_val_class_unsigned_const:
9360 if ((HOST_WIDE_INT) AT_unsigned (a) < 0)
9361 continue;
9363 /* The .debug_abbrev section will grow by
9364 size_of_sleb128 (AT_unsigned (a)) and we avoid the constants
9365 in all the DIEs using that abbreviation. */
9366 if (constant_size (AT_unsigned (a)) * (end - first_id)
9367 <= (unsigned) size_of_sleb128 (AT_unsigned (a)))
9368 continue;
9370 new_class = dw_val_class_unsigned_const_implicit;
9371 break;
9373 case dw_val_class_const:
9374 new_class = dw_val_class_const_implicit;
9375 break;
9377 case dw_val_class_file:
9378 new_class = dw_val_class_file_implicit;
9379 break;
9381 default:
9382 continue;
9384 for (i = first_id; i < end; i++)
9385 (*sorted_abbrev_dies[i]->die_attr)[ix].dw_attr_val.val_class
9386 = new_class;
9390 /* Attempt to optimize abbreviation table from abbrev_opt_start
9391 abbreviation above. */
9393 static void
9394 optimize_abbrev_table (void)
9396 if (abbrev_opt_start
9397 && vec_safe_length (abbrev_die_table) > abbrev_opt_start
9398 && (dwarf_version >= 5 || vec_safe_length (abbrev_die_table) > 127))
9400 auto_vec<bool, 32> implicit_consts;
9401 sorted_abbrev_dies.qsort (die_abbrev_cmp);
9403 unsigned int abbrev_id = abbrev_opt_start - 1;
9404 unsigned int first_id = ~0U;
9405 unsigned int last_abbrev_id = 0;
9406 unsigned int i;
9407 dw_die_ref die;
9408 if (abbrev_opt_base_type_end > abbrev_opt_start)
9409 abbrev_id = abbrev_opt_base_type_end - 1;
9410 /* Reassign abbreviation ids from abbrev_opt_start above, so that
9411 most commonly used abbreviations come first. */
9412 FOR_EACH_VEC_ELT (sorted_abbrev_dies, i, die)
9414 dw_attr_node *a;
9415 unsigned ix;
9417 /* If calc_base_type_die_sizes has been called, the CU and
9418 base types after it can't be optimized, because we've already
9419 calculated their DIE offsets. We've sorted them first. */
9420 if (die->die_abbrev < abbrev_opt_base_type_end)
9421 continue;
9422 if (die->die_abbrev != last_abbrev_id)
9424 last_abbrev_id = die->die_abbrev;
9425 if (dwarf_version >= 5 && first_id != ~0U)
9426 optimize_implicit_const (first_id, i, implicit_consts);
9427 abbrev_id++;
9428 (*abbrev_die_table)[abbrev_id] = die;
9429 if (dwarf_version >= 5)
9431 first_id = i;
9432 implicit_consts.truncate (0);
9434 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
9435 switch (AT_class (a))
9437 case dw_val_class_const:
9438 case dw_val_class_unsigned_const:
9439 case dw_val_class_file:
9440 implicit_consts.safe_push (true);
9441 break;
9442 default:
9443 implicit_consts.safe_push (false);
9444 break;
9448 else if (dwarf_version >= 5)
9450 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
9451 if (!implicit_consts[ix])
9452 continue;
9453 else
9455 dw_attr_node *other_a
9456 = &(*(*abbrev_die_table)[abbrev_id]->die_attr)[ix];
9457 if (!dw_val_equal_p (&a->dw_attr_val,
9458 &other_a->dw_attr_val))
9459 implicit_consts[ix] = false;
9462 die->die_abbrev = abbrev_id;
9464 gcc_assert (abbrev_id == vec_safe_length (abbrev_die_table) - 1);
9465 if (dwarf_version >= 5 && first_id != ~0U)
9466 optimize_implicit_const (first_id, i, implicit_consts);
9469 abbrev_opt_start = 0;
9470 abbrev_opt_base_type_end = 0;
9471 abbrev_usage_count.release ();
9472 sorted_abbrev_dies.release ();
9475 /* Return the power-of-two number of bytes necessary to represent VALUE. */
9477 static int
9478 constant_size (unsigned HOST_WIDE_INT value)
9480 int log;
9482 if (value == 0)
9483 log = 0;
9484 else
9485 log = floor_log2 (value);
9487 log = log / 8;
9488 log = 1 << (floor_log2 (log) + 1);
9490 return log;
9493 /* Return the size of a DIE as it is represented in the
9494 .debug_info section. */
9496 static unsigned long
9497 size_of_die (dw_die_ref die)
9499 unsigned long size = 0;
9500 dw_attr_node *a;
9501 unsigned ix;
9502 enum dwarf_form form;
9504 size += size_of_uleb128 (die->die_abbrev);
9505 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
9507 switch (AT_class (a))
9509 case dw_val_class_addr:
9510 if (dwarf_split_debug_info && AT_index (a) != NOT_INDEXED)
9512 gcc_assert (AT_index (a) != NO_INDEX_ASSIGNED);
9513 size += size_of_uleb128 (AT_index (a));
9515 else
9516 size += DWARF2_ADDR_SIZE;
9517 break;
9518 case dw_val_class_offset:
9519 size += dwarf_offset_size;
9520 break;
9521 case dw_val_class_loc:
9523 unsigned long lsize = size_of_locs (AT_loc (a));
9525 /* Block length. */
9526 if (dwarf_version >= 4)
9527 size += size_of_uleb128 (lsize);
9528 else
9529 size += constant_size (lsize);
9530 size += lsize;
9532 break;
9533 case dw_val_class_loc_list:
9534 if (dwarf_split_debug_info && dwarf_version >= 5)
9536 gcc_assert (AT_loc_list (a)->num_assigned);
9537 size += size_of_uleb128 (AT_loc_list (a)->hash);
9539 else
9540 size += dwarf_offset_size;
9541 break;
9542 case dw_val_class_view_list:
9543 size += dwarf_offset_size;
9544 break;
9545 case dw_val_class_range_list:
9546 if (value_format (a) == DW_FORM_rnglistx)
9548 gcc_assert (rnglist_idx);
9549 dw_ranges *r = &(*ranges_table)[a->dw_attr_val.v.val_offset];
9550 size += size_of_uleb128 (r->idx);
9552 else
9553 size += dwarf_offset_size;
9554 break;
9555 case dw_val_class_const:
9556 size += size_of_sleb128 (AT_int (a));
9557 break;
9558 case dw_val_class_unsigned_const:
9560 int csize = constant_size (AT_unsigned (a));
9561 if (dwarf_version == 3
9562 && a->dw_attr == DW_AT_data_member_location
9563 && csize >= 4)
9564 size += size_of_uleb128 (AT_unsigned (a));
9565 else
9566 size += csize;
9568 break;
9569 case dw_val_class_symview:
9570 if (symview_upper_bound <= 0xff)
9571 size += 1;
9572 else if (symview_upper_bound <= 0xffff)
9573 size += 2;
9574 else if (symview_upper_bound <= 0xffffffff)
9575 size += 4;
9576 else
9577 size += 8;
9578 break;
9579 case dw_val_class_const_implicit:
9580 case dw_val_class_unsigned_const_implicit:
9581 case dw_val_class_file_implicit:
9582 /* These occupy no size in the DIE, just an extra sleb128 in
9583 .debug_abbrev. */
9584 break;
9585 case dw_val_class_const_double:
9586 size += HOST_BITS_PER_DOUBLE_INT / HOST_BITS_PER_CHAR;
9587 if (HOST_BITS_PER_WIDE_INT >= DWARF_LARGEST_DATA_FORM_BITS)
9588 size++; /* block */
9589 break;
9590 case dw_val_class_wide_int:
9591 size += (get_full_len (*a->dw_attr_val.v.val_wide)
9592 * HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR);
9593 if (get_full_len (*a->dw_attr_val.v.val_wide)
9594 * HOST_BITS_PER_WIDE_INT > DWARF_LARGEST_DATA_FORM_BITS)
9595 size++; /* block */
9596 break;
9597 case dw_val_class_vec:
9598 size += constant_size (a->dw_attr_val.v.val_vec.length
9599 * a->dw_attr_val.v.val_vec.elt_size)
9600 + a->dw_attr_val.v.val_vec.length
9601 * a->dw_attr_val.v.val_vec.elt_size; /* block */
9602 break;
9603 case dw_val_class_flag:
9604 if (dwarf_version >= 4)
9605 /* Currently all add_AT_flag calls pass in 1 as last argument,
9606 so DW_FORM_flag_present can be used. If that ever changes,
9607 we'll need to use DW_FORM_flag and have some optimization
9608 in build_abbrev_table that will change those to
9609 DW_FORM_flag_present if it is set to 1 in all DIEs using
9610 the same abbrev entry. */
9611 gcc_assert (a->dw_attr_val.v.val_flag == 1);
9612 else
9613 size += 1;
9614 break;
9615 case dw_val_class_die_ref:
9616 if (AT_ref_external (a))
9618 /* In DWARF4, we use DW_FORM_ref_sig8; for earlier versions
9619 we use DW_FORM_ref_addr. In DWARF2, DW_FORM_ref_addr
9620 is sized by target address length, whereas in DWARF3
9621 it's always sized as an offset. */
9622 if (AT_ref (a)->comdat_type_p)
9623 size += DWARF_TYPE_SIGNATURE_SIZE;
9624 else if (dwarf_version == 2)
9625 size += DWARF2_ADDR_SIZE;
9626 else
9627 size += dwarf_offset_size;
9629 else
9630 size += dwarf_offset_size;
9631 break;
9632 case dw_val_class_fde_ref:
9633 size += dwarf_offset_size;
9634 break;
9635 case dw_val_class_lbl_id:
9636 if (dwarf_split_debug_info && AT_index (a) != NOT_INDEXED)
9638 gcc_assert (AT_index (a) != NO_INDEX_ASSIGNED);
9639 size += size_of_uleb128 (AT_index (a));
9641 else
9642 size += DWARF2_ADDR_SIZE;
9643 break;
9644 case dw_val_class_lineptr:
9645 case dw_val_class_macptr:
9646 case dw_val_class_loclistsptr:
9647 size += dwarf_offset_size;
9648 break;
9649 case dw_val_class_str:
9650 form = AT_string_form (a);
9651 if (form == DW_FORM_strp || form == DW_FORM_line_strp)
9652 size += dwarf_offset_size;
9653 else if (form == dwarf_FORM (DW_FORM_strx))
9654 size += size_of_uleb128 (AT_index (a));
9655 else
9656 size += strlen (a->dw_attr_val.v.val_str->str) + 1;
9657 break;
9658 case dw_val_class_file:
9659 size += constant_size (maybe_emit_file (a->dw_attr_val.v.val_file));
9660 break;
9661 case dw_val_class_data8:
9662 size += 8;
9663 break;
9664 case dw_val_class_vms_delta:
9665 size += dwarf_offset_size;
9666 break;
9667 case dw_val_class_high_pc:
9668 size += DWARF2_ADDR_SIZE;
9669 break;
9670 case dw_val_class_discr_value:
9671 size += size_of_discr_value (&a->dw_attr_val.v.val_discr_value);
9672 break;
9673 case dw_val_class_discr_list:
9675 unsigned block_size = size_of_discr_list (AT_discr_list (a));
9677 /* This is a block, so we have the block length and then its
9678 data. */
9679 size += constant_size (block_size) + block_size;
9681 break;
9682 default:
9683 gcc_unreachable ();
9687 return size;
9690 /* Size the debugging information associated with a given DIE. Visits the
9691 DIE's children recursively. Updates the global variable next_die_offset, on
9692 each time through. Uses the current value of next_die_offset to update the
9693 die_offset field in each DIE. */
9695 static void
9696 calc_die_sizes (dw_die_ref die)
9698 dw_die_ref c;
9700 gcc_assert (die->die_offset == 0
9701 || (unsigned long int) die->die_offset == next_die_offset);
9702 die->die_offset = next_die_offset;
9703 next_die_offset += size_of_die (die);
9705 FOR_EACH_CHILD (die, c, calc_die_sizes (c));
9707 if (die->die_child != NULL)
9708 /* Count the null byte used to terminate sibling lists. */
9709 next_die_offset += 1;
9712 /* Size just the base type children at the start of the CU.
9713 This is needed because build_abbrev needs to size locs
9714 and sizing of type based stack ops needs to know die_offset
9715 values for the base types. */
9717 static void
9718 calc_base_type_die_sizes (void)
9720 unsigned long die_offset = (dwarf_split_debug_info
9721 ? DWARF_COMPILE_UNIT_SKELETON_HEADER_SIZE
9722 : DWARF_COMPILE_UNIT_HEADER_SIZE);
9723 unsigned int i;
9724 dw_die_ref base_type;
9725 #if ENABLE_ASSERT_CHECKING
9726 dw_die_ref prev = comp_unit_die ()->die_child;
9727 #endif
9729 die_offset += size_of_die (comp_unit_die ());
9730 for (i = 0; base_types.iterate (i, &base_type); i++)
9732 #if ENABLE_ASSERT_CHECKING
9733 gcc_assert (base_type->die_offset == 0
9734 && prev->die_sib == base_type
9735 && base_type->die_child == NULL
9736 && base_type->die_abbrev);
9737 prev = base_type;
9738 #endif
9739 if (abbrev_opt_start
9740 && base_type->die_abbrev >= abbrev_opt_base_type_end)
9741 abbrev_opt_base_type_end = base_type->die_abbrev + 1;
9742 base_type->die_offset = die_offset;
9743 die_offset += size_of_die (base_type);
9747 /* Set the marks for a die and its children. We do this so
9748 that we know whether or not a reference needs to use FORM_ref_addr; only
9749 DIEs in the same CU will be marked. We used to clear out the offset
9750 and use that as the flag, but ran into ordering problems. */
9752 static void
9753 mark_dies (dw_die_ref die)
9755 dw_die_ref c;
9757 gcc_assert (!die->die_mark);
9759 die->die_mark = 1;
9760 FOR_EACH_CHILD (die, c, mark_dies (c));
9763 /* Clear the marks for a die and its children. */
9765 static void
9766 unmark_dies (dw_die_ref die)
9768 dw_die_ref c;
9770 if (! use_debug_types)
9771 gcc_assert (die->die_mark);
9773 die->die_mark = 0;
9774 FOR_EACH_CHILD (die, c, unmark_dies (c));
9777 /* Clear the marks for a die, its children and referred dies. */
9779 static void
9780 unmark_all_dies (dw_die_ref die)
9782 dw_die_ref c;
9783 dw_attr_node *a;
9784 unsigned ix;
9786 if (!die->die_mark)
9787 return;
9788 die->die_mark = 0;
9790 FOR_EACH_CHILD (die, c, unmark_all_dies (c));
9792 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
9793 if (AT_class (a) == dw_val_class_die_ref)
9794 unmark_all_dies (AT_ref (a));
9797 /* Calculate if the entry should appear in the final output file. It may be
9798 from a pruned a type. */
9800 static bool
9801 include_pubname_in_output (vec<pubname_entry, va_gc> *table, pubname_entry *p)
9803 /* By limiting gnu pubnames to definitions only, gold can generate a
9804 gdb index without entries for declarations, which don't include
9805 enough information to be useful. */
9806 if (debug_generate_pub_sections == 2 && is_declaration_die (p->die))
9807 return false;
9809 if (table == pubname_table)
9811 /* Enumerator names are part of the pubname table, but the
9812 parent DW_TAG_enumeration_type die may have been pruned.
9813 Don't output them if that is the case. */
9814 if (p->die->die_tag == DW_TAG_enumerator &&
9815 (p->die->die_parent == NULL
9816 || !p->die->die_parent->die_perennial_p))
9817 return false;
9819 /* Everything else in the pubname table is included. */
9820 return true;
9823 /* The pubtypes table shouldn't include types that have been
9824 pruned. */
9825 return (p->die->die_offset != 0
9826 || !flag_eliminate_unused_debug_types);
9829 /* Return the size of the .debug_pubnames or .debug_pubtypes table
9830 generated for the compilation unit. */
9832 static unsigned long
9833 size_of_pubnames (vec<pubname_entry, va_gc> *names)
9835 unsigned long size;
9836 unsigned i;
9837 pubname_entry *p;
9838 int space_for_flags = (debug_generate_pub_sections == 2) ? 1 : 0;
9840 size = DWARF_PUBNAMES_HEADER_SIZE;
9841 FOR_EACH_VEC_ELT (*names, i, p)
9842 if (include_pubname_in_output (names, p))
9843 size += strlen (p->name) + dwarf_offset_size + 1 + space_for_flags;
9845 size += dwarf_offset_size;
9846 return size;
9849 /* Return the size of the information in the .debug_aranges section. */
9851 static unsigned long
9852 size_of_aranges (void)
9854 unsigned long size;
9856 size = DWARF_ARANGES_HEADER_SIZE;
9858 /* Count the address/length pair for this compilation unit. */
9859 if (switch_text_ranges)
9860 size += 2 * DWARF2_ADDR_SIZE
9861 * (vec_safe_length (switch_text_ranges) / 2 + 1);
9862 if (switch_cold_ranges)
9863 size += 2 * DWARF2_ADDR_SIZE
9864 * (vec_safe_length (switch_cold_ranges) / 2 + 1);
9865 if (have_multiple_function_sections)
9867 unsigned fde_idx;
9868 dw_fde_ref fde;
9870 FOR_EACH_VEC_ELT (*fde_vec, fde_idx, fde)
9872 if (fde->ignored_debug)
9873 continue;
9874 if (!fde->in_std_section)
9875 size += 2 * DWARF2_ADDR_SIZE;
9876 if (fde->dw_fde_second_begin && !fde->second_in_std_section)
9877 size += 2 * DWARF2_ADDR_SIZE;
9881 /* Count the two zero words used to terminated the address range table. */
9882 size += 2 * DWARF2_ADDR_SIZE;
9883 return size;
9886 /* Select the encoding of an attribute value. */
9888 static enum dwarf_form
9889 value_format (dw_attr_node *a)
9891 switch (AT_class (a))
9893 case dw_val_class_addr:
9894 /* Only very few attributes allow DW_FORM_addr. */
9895 switch (a->dw_attr)
9897 case DW_AT_low_pc:
9898 case DW_AT_high_pc:
9899 case DW_AT_entry_pc:
9900 case DW_AT_trampoline:
9901 return (AT_index (a) == NOT_INDEXED
9902 ? DW_FORM_addr : dwarf_FORM (DW_FORM_addrx));
9903 default:
9904 break;
9906 switch (DWARF2_ADDR_SIZE)
9908 case 1:
9909 return DW_FORM_data1;
9910 case 2:
9911 return DW_FORM_data2;
9912 case 4:
9913 return DW_FORM_data4;
9914 case 8:
9915 return DW_FORM_data8;
9916 default:
9917 gcc_unreachable ();
9919 case dw_val_class_loc_list:
9920 if (dwarf_split_debug_info
9921 && dwarf_version >= 5
9922 && AT_loc_list (a)->num_assigned)
9923 return DW_FORM_loclistx;
9924 /* FALLTHRU */
9925 case dw_val_class_view_list:
9926 case dw_val_class_range_list:
9927 /* For range lists in DWARF 5, use DW_FORM_rnglistx from .debug_info.dwo
9928 but in .debug_info use DW_FORM_sec_offset, which is shorter if we
9929 care about sizes of .debug* sections in shared libraries and
9930 executables and don't take into account relocations that affect just
9931 relocatable objects - for DW_FORM_rnglistx we'd have to emit offset
9932 table in the .debug_rnglists section. */
9933 if (dwarf_split_debug_info
9934 && dwarf_version >= 5
9935 && AT_class (a) == dw_val_class_range_list
9936 && rnglist_idx
9937 && a->dw_attr_val.val_entry != RELOCATED_OFFSET)
9938 return DW_FORM_rnglistx;
9939 if (dwarf_version >= 4)
9940 return DW_FORM_sec_offset;
9941 /* FALLTHRU */
9942 case dw_val_class_vms_delta:
9943 case dw_val_class_offset:
9944 switch (dwarf_offset_size)
9946 case 4:
9947 return DW_FORM_data4;
9948 case 8:
9949 return DW_FORM_data8;
9950 default:
9951 gcc_unreachable ();
9953 case dw_val_class_loc:
9954 if (dwarf_version >= 4)
9955 return DW_FORM_exprloc;
9956 switch (constant_size (size_of_locs (AT_loc (a))))
9958 case 1:
9959 return DW_FORM_block1;
9960 case 2:
9961 return DW_FORM_block2;
9962 case 4:
9963 return DW_FORM_block4;
9964 default:
9965 gcc_unreachable ();
9967 case dw_val_class_const:
9968 return DW_FORM_sdata;
9969 case dw_val_class_unsigned_const:
9970 switch (constant_size (AT_unsigned (a)))
9972 case 1:
9973 return DW_FORM_data1;
9974 case 2:
9975 return DW_FORM_data2;
9976 case 4:
9977 /* In DWARF3 DW_AT_data_member_location with
9978 DW_FORM_data4 or DW_FORM_data8 is a loclistptr, not
9979 constant, so we need to use DW_FORM_udata if we need
9980 a large constant. */
9981 if (dwarf_version == 3 && a->dw_attr == DW_AT_data_member_location)
9982 return DW_FORM_udata;
9983 return DW_FORM_data4;
9984 case 8:
9985 if (dwarf_version == 3 && a->dw_attr == DW_AT_data_member_location)
9986 return DW_FORM_udata;
9987 return DW_FORM_data8;
9988 default:
9989 gcc_unreachable ();
9991 case dw_val_class_const_implicit:
9992 case dw_val_class_unsigned_const_implicit:
9993 case dw_val_class_file_implicit:
9994 return DW_FORM_implicit_const;
9995 case dw_val_class_const_double:
9996 switch (HOST_BITS_PER_WIDE_INT)
9998 case 8:
9999 return DW_FORM_data2;
10000 case 16:
10001 return DW_FORM_data4;
10002 case 32:
10003 return DW_FORM_data8;
10004 case 64:
10005 if (dwarf_version >= 5)
10006 return DW_FORM_data16;
10007 /* FALLTHRU */
10008 default:
10009 return DW_FORM_block1;
10011 case dw_val_class_wide_int:
10012 switch (get_full_len (*a->dw_attr_val.v.val_wide) * HOST_BITS_PER_WIDE_INT)
10014 case 8:
10015 return DW_FORM_data1;
10016 case 16:
10017 return DW_FORM_data2;
10018 case 32:
10019 return DW_FORM_data4;
10020 case 64:
10021 return DW_FORM_data8;
10022 case 128:
10023 if (dwarf_version >= 5)
10024 return DW_FORM_data16;
10025 /* FALLTHRU */
10026 default:
10027 return DW_FORM_block1;
10029 case dw_val_class_symview:
10030 /* ??? We might use uleb128, but then we'd have to compute
10031 .debug_info offsets in the assembler. */
10032 if (symview_upper_bound <= 0xff)
10033 return DW_FORM_data1;
10034 else if (symview_upper_bound <= 0xffff)
10035 return DW_FORM_data2;
10036 else if (symview_upper_bound <= 0xffffffff)
10037 return DW_FORM_data4;
10038 else
10039 return DW_FORM_data8;
10040 case dw_val_class_vec:
10041 switch (constant_size (a->dw_attr_val.v.val_vec.length
10042 * a->dw_attr_val.v.val_vec.elt_size))
10044 case 1:
10045 return DW_FORM_block1;
10046 case 2:
10047 return DW_FORM_block2;
10048 case 4:
10049 return DW_FORM_block4;
10050 default:
10051 gcc_unreachable ();
10053 case dw_val_class_flag:
10054 if (dwarf_version >= 4)
10056 /* Currently all add_AT_flag calls pass in 1 as last argument,
10057 so DW_FORM_flag_present can be used. If that ever changes,
10058 we'll need to use DW_FORM_flag and have some optimization
10059 in build_abbrev_table that will change those to
10060 DW_FORM_flag_present if it is set to 1 in all DIEs using
10061 the same abbrev entry. */
10062 gcc_assert (a->dw_attr_val.v.val_flag == 1);
10063 return DW_FORM_flag_present;
10065 return DW_FORM_flag;
10066 case dw_val_class_die_ref:
10067 if (AT_ref_external (a))
10069 if (AT_ref (a)->comdat_type_p)
10070 return DW_FORM_ref_sig8;
10071 else
10072 return DW_FORM_ref_addr;
10074 else
10075 return DW_FORM_ref;
10076 case dw_val_class_fde_ref:
10077 return DW_FORM_data;
10078 case dw_val_class_lbl_id:
10079 return (AT_index (a) == NOT_INDEXED
10080 ? DW_FORM_addr : dwarf_FORM (DW_FORM_addrx));
10081 case dw_val_class_lineptr:
10082 case dw_val_class_macptr:
10083 case dw_val_class_loclistsptr:
10084 return dwarf_version >= 4 ? DW_FORM_sec_offset : DW_FORM_data;
10085 case dw_val_class_str:
10086 return AT_string_form (a);
10087 case dw_val_class_file:
10088 switch (constant_size (maybe_emit_file (a->dw_attr_val.v.val_file)))
10090 case 1:
10091 return DW_FORM_data1;
10092 case 2:
10093 return DW_FORM_data2;
10094 case 4:
10095 return DW_FORM_data4;
10096 default:
10097 gcc_unreachable ();
10100 case dw_val_class_data8:
10101 return DW_FORM_data8;
10103 case dw_val_class_high_pc:
10104 switch (DWARF2_ADDR_SIZE)
10106 case 1:
10107 return DW_FORM_data1;
10108 case 2:
10109 return DW_FORM_data2;
10110 case 4:
10111 return DW_FORM_data4;
10112 case 8:
10113 return DW_FORM_data8;
10114 default:
10115 gcc_unreachable ();
10118 case dw_val_class_discr_value:
10119 return (a->dw_attr_val.v.val_discr_value.pos
10120 ? DW_FORM_udata
10121 : DW_FORM_sdata);
10122 case dw_val_class_discr_list:
10123 switch (constant_size (size_of_discr_list (AT_discr_list (a))))
10125 case 1:
10126 return DW_FORM_block1;
10127 case 2:
10128 return DW_FORM_block2;
10129 case 4:
10130 return DW_FORM_block4;
10131 default:
10132 gcc_unreachable ();
10135 default:
10136 gcc_unreachable ();
10140 /* Output the encoding of an attribute value. */
10142 static void
10143 output_value_format (dw_attr_node *a)
10145 enum dwarf_form form = value_format (a);
10147 dw2_asm_output_data_uleb128 (form, "(%s)", dwarf_form_name (form));
10150 /* Given a die and id, produce the appropriate abbreviations. */
10152 static void
10153 output_die_abbrevs (unsigned long abbrev_id, dw_die_ref abbrev)
10155 unsigned ix;
10156 dw_attr_node *a_attr;
10158 dw2_asm_output_data_uleb128 (abbrev_id, "(abbrev code)");
10159 dw2_asm_output_data_uleb128 (abbrev->die_tag, "(TAG: %s)",
10160 dwarf_tag_name (abbrev->die_tag));
10162 if (abbrev->die_child != NULL)
10163 dw2_asm_output_data (1, DW_children_yes, "DW_children_yes");
10164 else
10165 dw2_asm_output_data (1, DW_children_no, "DW_children_no");
10167 for (ix = 0; vec_safe_iterate (abbrev->die_attr, ix, &a_attr); ix++)
10169 dw2_asm_output_data_uleb128 (a_attr->dw_attr, "(%s)",
10170 dwarf_attr_name (a_attr->dw_attr));
10171 output_value_format (a_attr);
10172 if (value_format (a_attr) == DW_FORM_implicit_const)
10174 if (AT_class (a_attr) == dw_val_class_file_implicit)
10176 int f = maybe_emit_file (a_attr->dw_attr_val.v.val_file);
10177 const char *filename = a_attr->dw_attr_val.v.val_file->filename;
10178 dw2_asm_output_data_sleb128 (f, "(%s)", filename);
10180 else
10181 dw2_asm_output_data_sleb128 (a_attr->dw_attr_val.v.val_int, NULL);
10185 dw2_asm_output_data (1, 0, NULL);
10186 dw2_asm_output_data (1, 0, NULL);
10190 /* Output the .debug_abbrev section which defines the DIE abbreviation
10191 table. */
10193 static void
10194 output_abbrev_section (void)
10196 unsigned int abbrev_id;
10197 dw_die_ref abbrev;
10199 FOR_EACH_VEC_SAFE_ELT (abbrev_die_table, abbrev_id, abbrev)
10200 if (abbrev_id != 0)
10201 output_die_abbrevs (abbrev_id, abbrev);
10203 /* Terminate the table. */
10204 dw2_asm_output_data (1, 0, NULL);
10207 /* Return a new location list, given the begin and end range, and the
10208 expression. */
10210 static inline dw_loc_list_ref
10211 new_loc_list (dw_loc_descr_ref expr, const char *begin, var_loc_view vbegin,
10212 const char *end, var_loc_view vend,
10213 const char *section)
10215 dw_loc_list_ref retlist = ggc_cleared_alloc<dw_loc_list_node> ();
10217 retlist->begin = begin;
10218 retlist->begin_entry = NULL;
10219 retlist->end = end;
10220 retlist->end_entry = NULL;
10221 retlist->expr = expr;
10222 retlist->section = section;
10223 retlist->vbegin = vbegin;
10224 retlist->vend = vend;
10226 return retlist;
10229 /* Return true iff there's any nonzero view number in the loc list.
10231 ??? When views are not enabled, we'll often extend a single range
10232 to the entire function, so that we emit a single location
10233 expression rather than a location list. With views, even with a
10234 single range, we'll output a list if start or end have a nonzero
10235 view. If we change this, we may want to stop splitting a single
10236 range in dw_loc_list just because of a nonzero view, even if it
10237 straddles across hot/cold partitions. */
10239 static bool
10240 loc_list_has_views (dw_loc_list_ref list)
10242 if (!debug_variable_location_views)
10243 return false;
10245 for (dw_loc_list_ref loc = list;
10246 loc != NULL; loc = loc->dw_loc_next)
10247 if (!ZERO_VIEW_P (loc->vbegin) || !ZERO_VIEW_P (loc->vend))
10248 return true;
10250 return false;
10253 /* Generate a new internal symbol for this location list node, if it
10254 hasn't got one yet. */
10256 static inline void
10257 gen_llsym (dw_loc_list_ref list)
10259 gcc_assert (!list->ll_symbol);
10260 list->ll_symbol = gen_internal_sym ("LLST");
10262 if (!loc_list_has_views (list))
10263 return;
10265 if (dwarf2out_locviews_in_attribute ())
10267 /* Use the same label_num for the view list. */
10268 label_num--;
10269 list->vl_symbol = gen_internal_sym ("LVUS");
10271 else
10272 list->vl_symbol = list->ll_symbol;
10275 /* Generate a symbol for the list, but only if we really want to emit
10276 it as a list. */
10278 static inline void
10279 maybe_gen_llsym (dw_loc_list_ref list)
10281 if (!list || (!list->dw_loc_next && !loc_list_has_views (list)))
10282 return;
10284 gen_llsym (list);
10287 /* Determine whether or not to skip loc_list entry CURR. If SIZEP is
10288 NULL, don't consider size of the location expression. If we're not
10289 to skip it, and SIZEP is non-null, store the size of CURR->expr's
10290 representation in *SIZEP. */
10292 static bool
10293 skip_loc_list_entry (dw_loc_list_ref curr, unsigned long *sizep = NULL)
10295 /* Don't output an entry that starts and ends at the same address. */
10296 if (strcmp (curr->begin, curr->end) == 0
10297 && curr->vbegin == curr->vend && !curr->force)
10298 return true;
10300 if (!sizep)
10301 return false;
10303 unsigned long size = size_of_locs (curr->expr);
10305 /* If the expression is too large, drop it on the floor. We could
10306 perhaps put it into DW_TAG_dwarf_procedure and refer to that
10307 in the expression, but >= 64KB expressions for a single value
10308 in a single range are unlikely very useful. */
10309 if (dwarf_version < 5 && size > 0xffff)
10310 return true;
10312 *sizep = size;
10314 return false;
10317 /* Output a view pair loclist entry for CURR, if it requires one. */
10319 static void
10320 dwarf2out_maybe_output_loclist_view_pair (dw_loc_list_ref curr)
10322 if (!dwarf2out_locviews_in_loclist ())
10323 return;
10325 if (ZERO_VIEW_P (curr->vbegin) && ZERO_VIEW_P (curr->vend))
10326 return;
10328 #ifdef DW_LLE_view_pair
10329 dw2_asm_output_data (1, DW_LLE_view_pair, "DW_LLE_view_pair");
10331 if (dwarf2out_as_locview_support)
10333 if (ZERO_VIEW_P (curr->vbegin))
10334 dw2_asm_output_data_uleb128 (0, "Location view begin");
10335 else
10337 char label[MAX_ARTIFICIAL_LABEL_BYTES];
10338 ASM_GENERATE_INTERNAL_LABEL (label, "LVU", curr->vbegin);
10339 dw2_asm_output_symname_uleb128 (label, "Location view begin");
10342 if (ZERO_VIEW_P (curr->vend))
10343 dw2_asm_output_data_uleb128 (0, "Location view end");
10344 else
10346 char label[MAX_ARTIFICIAL_LABEL_BYTES];
10347 ASM_GENERATE_INTERNAL_LABEL (label, "LVU", curr->vend);
10348 dw2_asm_output_symname_uleb128 (label, "Location view end");
10351 else
10353 dw2_asm_output_data_uleb128 (curr->vbegin, "Location view begin");
10354 dw2_asm_output_data_uleb128 (curr->vend, "Location view end");
10356 #endif /* DW_LLE_view_pair */
10358 return;
10361 /* Output the location list given to us. */
10363 static void
10364 output_loc_list (dw_loc_list_ref list_head)
10366 int vcount = 0, lcount = 0;
10368 if (list_head->emitted)
10369 return;
10370 list_head->emitted = true;
10372 if (list_head->vl_symbol && dwarf2out_locviews_in_attribute ())
10374 ASM_OUTPUT_LABEL (asm_out_file, list_head->vl_symbol);
10376 for (dw_loc_list_ref curr = list_head; curr != NULL;
10377 curr = curr->dw_loc_next)
10379 unsigned long size;
10381 if (skip_loc_list_entry (curr, &size))
10382 continue;
10384 vcount++;
10386 /* ?? dwarf_split_debug_info? */
10387 if (dwarf2out_as_locview_support)
10389 char label[MAX_ARTIFICIAL_LABEL_BYTES];
10391 if (!ZERO_VIEW_P (curr->vbegin))
10393 ASM_GENERATE_INTERNAL_LABEL (label, "LVU", curr->vbegin);
10394 dw2_asm_output_symname_uleb128 (label,
10395 "View list begin (%s)",
10396 list_head->vl_symbol);
10398 else
10399 dw2_asm_output_data_uleb128 (0,
10400 "View list begin (%s)",
10401 list_head->vl_symbol);
10403 if (!ZERO_VIEW_P (curr->vend))
10405 ASM_GENERATE_INTERNAL_LABEL (label, "LVU", curr->vend);
10406 dw2_asm_output_symname_uleb128 (label,
10407 "View list end (%s)",
10408 list_head->vl_symbol);
10410 else
10411 dw2_asm_output_data_uleb128 (0,
10412 "View list end (%s)",
10413 list_head->vl_symbol);
10415 else
10417 dw2_asm_output_data_uleb128 (curr->vbegin,
10418 "View list begin (%s)",
10419 list_head->vl_symbol);
10420 dw2_asm_output_data_uleb128 (curr->vend,
10421 "View list end (%s)",
10422 list_head->vl_symbol);
10427 ASM_OUTPUT_LABEL (asm_out_file, list_head->ll_symbol);
10429 const char *last_section = NULL;
10430 const char *base_label = NULL;
10432 /* Walk the location list, and output each range + expression. */
10433 for (dw_loc_list_ref curr = list_head; curr != NULL;
10434 curr = curr->dw_loc_next)
10436 unsigned long size;
10438 /* Skip this entry? If we skip it here, we must skip it in the
10439 view list above as well. */
10440 if (skip_loc_list_entry (curr, &size))
10441 continue;
10443 lcount++;
10445 if (dwarf_version >= 5)
10447 if (dwarf_split_debug_info && HAVE_AS_LEB128)
10449 dwarf2out_maybe_output_loclist_view_pair (curr);
10450 /* For -gsplit-dwarf, emit DW_LLE_startx_length, which has
10451 uleb128 index into .debug_addr and uleb128 length. */
10452 dw2_asm_output_data (1, DW_LLE_startx_length,
10453 "DW_LLE_startx_length (%s)",
10454 list_head->ll_symbol);
10455 dw2_asm_output_data_uleb128 (curr->begin_entry->index,
10456 "Location list range start index "
10457 "(%s)", curr->begin);
10458 dw2_asm_output_delta_uleb128 (curr->end, curr->begin,
10459 "Location list length (%s)",
10460 list_head->ll_symbol);
10462 else if (dwarf_split_debug_info)
10464 dwarf2out_maybe_output_loclist_view_pair (curr);
10465 /* For -gsplit-dwarf without usable .uleb128 support, emit
10466 DW_LLE_startx_endx, which has two uleb128 indexes into
10467 .debug_addr. */
10468 dw2_asm_output_data (1, DW_LLE_startx_endx,
10469 "DW_LLE_startx_endx (%s)",
10470 list_head->ll_symbol);
10471 dw2_asm_output_data_uleb128 (curr->begin_entry->index,
10472 "Location list range start index "
10473 "(%s)", curr->begin);
10474 dw2_asm_output_data_uleb128 (curr->end_entry->index,
10475 "Location list range end index "
10476 "(%s)", curr->end);
10478 else if (!have_multiple_function_sections && HAVE_AS_LEB128)
10480 dwarf2out_maybe_output_loclist_view_pair (curr);
10481 /* If all code is in .text section, the base address is
10482 already provided by the CU attributes. Use
10483 DW_LLE_offset_pair where both addresses are uleb128 encoded
10484 offsets against that base. */
10485 dw2_asm_output_data (1, DW_LLE_offset_pair,
10486 "DW_LLE_offset_pair (%s)",
10487 list_head->ll_symbol);
10488 dw2_asm_output_delta_uleb128 (curr->begin, curr->section,
10489 "Location list begin address (%s)",
10490 list_head->ll_symbol);
10491 dw2_asm_output_delta_uleb128 (curr->end, curr->section,
10492 "Location list end address (%s)",
10493 list_head->ll_symbol);
10495 else if (HAVE_AS_LEB128)
10497 /* Otherwise, find out how many consecutive entries could share
10498 the same base entry. If just one, emit DW_LLE_start_length,
10499 otherwise emit DW_LLE_base_address for the base address
10500 followed by a series of DW_LLE_offset_pair. */
10501 if (last_section == NULL || curr->section != last_section)
10503 dw_loc_list_ref curr2;
10504 for (curr2 = curr->dw_loc_next; curr2 != NULL;
10505 curr2 = curr2->dw_loc_next)
10507 if (strcmp (curr2->begin, curr2->end) == 0
10508 && !curr2->force)
10509 continue;
10510 break;
10512 if (curr2 == NULL || curr->section != curr2->section)
10513 last_section = NULL;
10514 else
10516 last_section = curr->section;
10517 base_label = curr->begin;
10518 dw2_asm_output_data (1, DW_LLE_base_address,
10519 "DW_LLE_base_address (%s)",
10520 list_head->ll_symbol);
10521 dw2_asm_output_addr (DWARF2_ADDR_SIZE, base_label,
10522 "Base address (%s)",
10523 list_head->ll_symbol);
10526 /* Only one entry with the same base address. Use
10527 DW_LLE_start_length with absolute address and uleb128
10528 length. */
10529 if (last_section == NULL)
10531 dwarf2out_maybe_output_loclist_view_pair (curr);
10532 dw2_asm_output_data (1, DW_LLE_start_length,
10533 "DW_LLE_start_length (%s)",
10534 list_head->ll_symbol);
10535 dw2_asm_output_addr (DWARF2_ADDR_SIZE, curr->begin,
10536 "Location list begin address (%s)",
10537 list_head->ll_symbol);
10538 dw2_asm_output_delta_uleb128 (curr->end, curr->begin,
10539 "Location list length "
10540 "(%s)", list_head->ll_symbol);
10542 /* Otherwise emit DW_LLE_offset_pair, relative to above emitted
10543 DW_LLE_base_address. */
10544 else
10546 dwarf2out_maybe_output_loclist_view_pair (curr);
10547 dw2_asm_output_data (1, DW_LLE_offset_pair,
10548 "DW_LLE_offset_pair (%s)",
10549 list_head->ll_symbol);
10550 dw2_asm_output_delta_uleb128 (curr->begin, base_label,
10551 "Location list begin address "
10552 "(%s)", list_head->ll_symbol);
10553 dw2_asm_output_delta_uleb128 (curr->end, base_label,
10554 "Location list end address "
10555 "(%s)", list_head->ll_symbol);
10558 /* The assembler does not support .uleb128 directive. Emit
10559 DW_LLE_start_end with a pair of absolute addresses. */
10560 else
10562 dwarf2out_maybe_output_loclist_view_pair (curr);
10563 dw2_asm_output_data (1, DW_LLE_start_end,
10564 "DW_LLE_start_end (%s)",
10565 list_head->ll_symbol);
10566 dw2_asm_output_addr (DWARF2_ADDR_SIZE, curr->begin,
10567 "Location list begin address (%s)",
10568 list_head->ll_symbol);
10569 dw2_asm_output_addr (DWARF2_ADDR_SIZE, curr->end,
10570 "Location list end address (%s)",
10571 list_head->ll_symbol);
10574 else if (dwarf_split_debug_info)
10576 /* For -gsplit-dwarf -gdwarf-{2,3,4} emit index into .debug_addr
10577 and 4 byte length. */
10578 dw2_asm_output_data (1, DW_LLE_GNU_start_length_entry,
10579 "Location list start/length entry (%s)",
10580 list_head->ll_symbol);
10581 dw2_asm_output_data_uleb128 (curr->begin_entry->index,
10582 "Location list range start index (%s)",
10583 curr->begin);
10584 /* The length field is 4 bytes. If we ever need to support
10585 an 8-byte length, we can add a new DW_LLE code or fall back
10586 to DW_LLE_GNU_start_end_entry. */
10587 dw2_asm_output_delta (4, curr->end, curr->begin,
10588 "Location list range length (%s)",
10589 list_head->ll_symbol);
10591 else if (!have_multiple_function_sections)
10593 /* Pair of relative addresses against start of text section. */
10594 dw2_asm_output_delta (DWARF2_ADDR_SIZE, curr->begin, curr->section,
10595 "Location list begin address (%s)",
10596 list_head->ll_symbol);
10597 dw2_asm_output_delta (DWARF2_ADDR_SIZE, curr->end, curr->section,
10598 "Location list end address (%s)",
10599 list_head->ll_symbol);
10601 else
10603 /* Pair of absolute addresses. */
10604 dw2_asm_output_addr (DWARF2_ADDR_SIZE, curr->begin,
10605 "Location list begin address (%s)",
10606 list_head->ll_symbol);
10607 dw2_asm_output_addr (DWARF2_ADDR_SIZE, curr->end,
10608 "Location list end address (%s)",
10609 list_head->ll_symbol);
10612 /* Output the block length for this list of location operations. */
10613 if (dwarf_version >= 5)
10614 dw2_asm_output_data_uleb128 (size, "Location expression size");
10615 else
10617 gcc_assert (size <= 0xffff);
10618 dw2_asm_output_data (2, size, "Location expression size");
10621 output_loc_sequence (curr->expr, -1);
10624 /* And finally list termination. */
10625 if (dwarf_version >= 5)
10626 dw2_asm_output_data (1, DW_LLE_end_of_list,
10627 "DW_LLE_end_of_list (%s)", list_head->ll_symbol);
10628 else if (dwarf_split_debug_info)
10629 dw2_asm_output_data (1, DW_LLE_GNU_end_of_list_entry,
10630 "Location list terminator (%s)",
10631 list_head->ll_symbol);
10632 else
10634 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0,
10635 "Location list terminator begin (%s)",
10636 list_head->ll_symbol);
10637 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0,
10638 "Location list terminator end (%s)",
10639 list_head->ll_symbol);
10642 gcc_assert (!list_head->vl_symbol
10643 || vcount == lcount * (dwarf2out_locviews_in_attribute () ? 1 : 0));
10646 /* Output a range_list offset into the .debug_ranges or .debug_rnglists
10647 section. Emit a relocated reference if val_entry is NULL, otherwise,
10648 emit an indirect reference. */
10650 static void
10651 output_range_list_offset (dw_attr_node *a)
10653 const char *name = dwarf_attr_name (a->dw_attr);
10655 if (a->dw_attr_val.val_entry == RELOCATED_OFFSET)
10657 if (dwarf_version >= 5)
10659 dw_ranges *r = &(*ranges_table)[a->dw_attr_val.v.val_offset];
10660 dw2_asm_output_offset (dwarf_offset_size, r->label,
10661 debug_ranges_section, "%s", name);
10663 else
10665 char *p = strchr (ranges_section_label, '\0');
10666 sprintf (p, "+" HOST_WIDE_INT_PRINT_HEX,
10667 a->dw_attr_val.v.val_offset * 2 * DWARF2_ADDR_SIZE);
10668 dw2_asm_output_offset (dwarf_offset_size, ranges_section_label,
10669 debug_ranges_section, "%s", name);
10670 *p = '\0';
10673 else if (dwarf_version >= 5)
10675 dw_ranges *r = &(*ranges_table)[a->dw_attr_val.v.val_offset];
10676 gcc_assert (rnglist_idx);
10677 dw2_asm_output_data_uleb128 (r->idx, "%s", name);
10679 else
10680 dw2_asm_output_data (dwarf_offset_size,
10681 a->dw_attr_val.v.val_offset * 2 * DWARF2_ADDR_SIZE,
10682 "%s (offset from %s)", name, ranges_section_label);
10685 /* Output the offset into the debug_loc section. */
10687 static void
10688 output_loc_list_offset (dw_attr_node *a)
10690 char *sym = AT_loc_list (a)->ll_symbol;
10692 gcc_assert (sym);
10693 if (!dwarf_split_debug_info)
10694 dw2_asm_output_offset (dwarf_offset_size, sym, debug_loc_section,
10695 "%s", dwarf_attr_name (a->dw_attr));
10696 else if (dwarf_version >= 5)
10698 gcc_assert (AT_loc_list (a)->num_assigned);
10699 dw2_asm_output_data_uleb128 (AT_loc_list (a)->hash, "%s (%s)",
10700 dwarf_attr_name (a->dw_attr),
10701 sym);
10703 else
10704 dw2_asm_output_delta (dwarf_offset_size, sym, loc_section_label,
10705 "%s", dwarf_attr_name (a->dw_attr));
10708 /* Output the offset into the debug_loc section. */
10710 static void
10711 output_view_list_offset (dw_attr_node *a)
10713 char *sym = (*AT_loc_list_ptr (a))->vl_symbol;
10715 gcc_assert (sym);
10716 if (dwarf_split_debug_info)
10717 dw2_asm_output_delta (dwarf_offset_size, sym, loc_section_label,
10718 "%s", dwarf_attr_name (a->dw_attr));
10719 else
10720 dw2_asm_output_offset (dwarf_offset_size, sym, debug_loc_section,
10721 "%s", dwarf_attr_name (a->dw_attr));
10724 /* Output an attribute's index or value appropriately. */
10726 static void
10727 output_attr_index_or_value (dw_attr_node *a)
10729 const char *name = dwarf_attr_name (a->dw_attr);
10731 if (dwarf_split_debug_info && AT_index (a) != NOT_INDEXED)
10733 dw2_asm_output_data_uleb128 (AT_index (a), "%s", name);
10734 return;
10736 switch (AT_class (a))
10738 case dw_val_class_addr:
10739 dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE, AT_addr (a), "%s", name);
10740 break;
10741 case dw_val_class_high_pc:
10742 case dw_val_class_lbl_id:
10743 dw2_asm_output_addr (DWARF2_ADDR_SIZE, AT_lbl (a), "%s", name);
10744 break;
10745 default:
10746 gcc_unreachable ();
10750 /* Output a type signature. */
10752 static inline void
10753 output_signature (const char *sig, const char *name)
10755 int i;
10757 for (i = 0; i < DWARF_TYPE_SIGNATURE_SIZE; i++)
10758 dw2_asm_output_data (1, sig[i], i == 0 ? "%s" : NULL, name);
10761 /* Output a discriminant value. */
10763 static inline void
10764 output_discr_value (dw_discr_value *discr_value, const char *name)
10766 if (discr_value->pos)
10767 dw2_asm_output_data_uleb128 (discr_value->v.uval, "%s", name);
10768 else
10769 dw2_asm_output_data_sleb128 (discr_value->v.sval, "%s", name);
10772 /* Output the DIE and its attributes. Called recursively to generate
10773 the definitions of each child DIE. */
10775 static void
10776 output_die (dw_die_ref die)
10778 dw_attr_node *a;
10779 dw_die_ref c;
10780 unsigned long size;
10781 unsigned ix;
10783 dw2_asm_output_data_uleb128 (die->die_abbrev, "(DIE (%#lx) %s)",
10784 (unsigned long)die->die_offset,
10785 dwarf_tag_name (die->die_tag));
10787 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
10789 const char *name = dwarf_attr_name (a->dw_attr);
10791 switch (AT_class (a))
10793 case dw_val_class_addr:
10794 output_attr_index_or_value (a);
10795 break;
10797 case dw_val_class_offset:
10798 dw2_asm_output_data (dwarf_offset_size, a->dw_attr_val.v.val_offset,
10799 "%s", name);
10800 break;
10802 case dw_val_class_range_list:
10803 output_range_list_offset (a);
10804 break;
10806 case dw_val_class_loc:
10807 size = size_of_locs (AT_loc (a));
10809 /* Output the block length for this list of location operations. */
10810 if (dwarf_version >= 4)
10811 dw2_asm_output_data_uleb128 (size, "%s", name);
10812 else
10813 dw2_asm_output_data (constant_size (size), size, "%s", name);
10815 output_loc_sequence (AT_loc (a), -1);
10816 break;
10818 case dw_val_class_const:
10819 /* ??? It would be slightly more efficient to use a scheme like is
10820 used for unsigned constants below, but gdb 4.x does not sign
10821 extend. Gdb 5.x does sign extend. */
10822 dw2_asm_output_data_sleb128 (AT_int (a), "%s", name);
10823 break;
10825 case dw_val_class_unsigned_const:
10827 int csize = constant_size (AT_unsigned (a));
10828 if (dwarf_version == 3
10829 && a->dw_attr == DW_AT_data_member_location
10830 && csize >= 4)
10831 dw2_asm_output_data_uleb128 (AT_unsigned (a), "%s", name);
10832 else
10833 dw2_asm_output_data (csize, AT_unsigned (a), "%s", name);
10835 break;
10837 case dw_val_class_symview:
10839 int vsize;
10840 if (symview_upper_bound <= 0xff)
10841 vsize = 1;
10842 else if (symview_upper_bound <= 0xffff)
10843 vsize = 2;
10844 else if (symview_upper_bound <= 0xffffffff)
10845 vsize = 4;
10846 else
10847 vsize = 8;
10848 dw2_asm_output_addr (vsize, a->dw_attr_val.v.val_symbolic_view,
10849 "%s", name);
10851 break;
10853 case dw_val_class_const_implicit:
10854 if (flag_debug_asm)
10855 fprintf (asm_out_file, "\t\t\t%s %s ("
10856 HOST_WIDE_INT_PRINT_DEC ")\n",
10857 ASM_COMMENT_START, name, AT_int (a));
10858 break;
10860 case dw_val_class_unsigned_const_implicit:
10861 if (flag_debug_asm)
10862 fprintf (asm_out_file, "\t\t\t%s %s ("
10863 HOST_WIDE_INT_PRINT_HEX ")\n",
10864 ASM_COMMENT_START, name, AT_unsigned (a));
10865 break;
10867 case dw_val_class_const_double:
10869 unsigned HOST_WIDE_INT first, second;
10871 if (HOST_BITS_PER_WIDE_INT >= DWARF_LARGEST_DATA_FORM_BITS)
10872 dw2_asm_output_data (1,
10873 HOST_BITS_PER_DOUBLE_INT
10874 / HOST_BITS_PER_CHAR,
10875 NULL);
10877 if (WORDS_BIG_ENDIAN)
10879 first = a->dw_attr_val.v.val_double.high;
10880 second = a->dw_attr_val.v.val_double.low;
10882 else
10884 first = a->dw_attr_val.v.val_double.low;
10885 second = a->dw_attr_val.v.val_double.high;
10888 dw2_asm_output_data (HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR,
10889 first, "%s", name);
10890 dw2_asm_output_data (HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR,
10891 second, NULL);
10893 break;
10895 case dw_val_class_wide_int:
10897 int i;
10898 int len = get_full_len (*a->dw_attr_val.v.val_wide);
10899 int l = HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR;
10900 if (len * HOST_BITS_PER_WIDE_INT > DWARF_LARGEST_DATA_FORM_BITS)
10901 dw2_asm_output_data (1, get_full_len (*a->dw_attr_val.v.val_wide)
10902 * l, NULL);
10904 if (WORDS_BIG_ENDIAN)
10905 for (i = len - 1; i >= 0; --i)
10907 dw2_asm_output_data (l, a->dw_attr_val.v.val_wide->elt (i),
10908 "%s", name);
10909 name = "";
10911 else
10912 for (i = 0; i < len; ++i)
10914 dw2_asm_output_data (l, a->dw_attr_val.v.val_wide->elt (i),
10915 "%s", name);
10916 name = "";
10919 break;
10921 case dw_val_class_vec:
10923 unsigned int elt_size = a->dw_attr_val.v.val_vec.elt_size;
10924 unsigned int len = a->dw_attr_val.v.val_vec.length;
10925 unsigned int i;
10926 unsigned char *p;
10928 dw2_asm_output_data (constant_size (len * elt_size),
10929 len * elt_size, "%s", name);
10930 if (elt_size > sizeof (HOST_WIDE_INT))
10932 elt_size /= 2;
10933 len *= 2;
10935 for (i = 0, p = (unsigned char *) a->dw_attr_val.v.val_vec.array;
10936 i < len;
10937 i++, p += elt_size)
10938 dw2_asm_output_data (elt_size, extract_int (p, elt_size),
10939 "fp or vector constant word %u", i);
10940 break;
10943 case dw_val_class_flag:
10944 if (dwarf_version >= 4)
10946 /* Currently all add_AT_flag calls pass in 1 as last argument,
10947 so DW_FORM_flag_present can be used. If that ever changes,
10948 we'll need to use DW_FORM_flag and have some optimization
10949 in build_abbrev_table that will change those to
10950 DW_FORM_flag_present if it is set to 1 in all DIEs using
10951 the same abbrev entry. */
10952 gcc_assert (AT_flag (a) == 1);
10953 if (flag_debug_asm)
10954 fprintf (asm_out_file, "\t\t\t%s %s\n",
10955 ASM_COMMENT_START, name);
10956 break;
10958 dw2_asm_output_data (1, AT_flag (a), "%s", name);
10959 break;
10961 case dw_val_class_loc_list:
10962 output_loc_list_offset (a);
10963 break;
10965 case dw_val_class_view_list:
10966 output_view_list_offset (a);
10967 break;
10969 case dw_val_class_die_ref:
10970 if (AT_ref_external (a))
10972 if (AT_ref (a)->comdat_type_p)
10974 comdat_type_node *type_node
10975 = AT_ref (a)->die_id.die_type_node;
10977 gcc_assert (type_node);
10978 output_signature (type_node->signature, name);
10980 else
10982 const char *sym = AT_ref (a)->die_id.die_symbol;
10983 int size;
10985 gcc_assert (sym);
10986 /* In DWARF2, DW_FORM_ref_addr is sized by target address
10987 length, whereas in DWARF3 it's always sized as an
10988 offset. */
10989 if (dwarf_version == 2)
10990 size = DWARF2_ADDR_SIZE;
10991 else
10992 size = dwarf_offset_size;
10993 /* ??? We cannot unconditionally output die_offset if
10994 non-zero - others might create references to those
10995 DIEs via symbols.
10996 And we do not clear its DIE offset after outputting it
10997 (and the label refers to the actual DIEs, not the
10998 DWARF CU unit header which is when using label + offset
10999 would be the correct thing to do).
11000 ??? This is the reason for the with_offset flag. */
11001 if (AT_ref (a)->with_offset)
11002 dw2_asm_output_offset (size, sym, AT_ref (a)->die_offset,
11003 debug_info_section, "%s", name);
11004 else
11005 dw2_asm_output_offset (size, sym, debug_info_section, "%s",
11006 name);
11009 else
11011 gcc_assert (AT_ref (a)->die_offset);
11012 dw2_asm_output_data (dwarf_offset_size, AT_ref (a)->die_offset,
11013 "%s", name);
11015 break;
11017 case dw_val_class_fde_ref:
11019 char l1[MAX_ARTIFICIAL_LABEL_BYTES];
11021 ASM_GENERATE_INTERNAL_LABEL (l1, FDE_LABEL,
11022 a->dw_attr_val.v.val_fde_index * 2);
11023 dw2_asm_output_offset (dwarf_offset_size, l1, debug_frame_section,
11024 "%s", name);
11026 break;
11028 case dw_val_class_vms_delta:
11029 #ifdef ASM_OUTPUT_DWARF_VMS_DELTA
11030 dw2_asm_output_vms_delta (dwarf_offset_size,
11031 AT_vms_delta2 (a), AT_vms_delta1 (a),
11032 "%s", name);
11033 #else
11034 dw2_asm_output_delta (dwarf_offset_size,
11035 AT_vms_delta2 (a), AT_vms_delta1 (a),
11036 "%s", name);
11037 #endif
11038 break;
11040 case dw_val_class_lbl_id:
11041 output_attr_index_or_value (a);
11042 break;
11044 case dw_val_class_lineptr:
11045 dw2_asm_output_offset (dwarf_offset_size, AT_lbl (a),
11046 debug_line_section, "%s", name);
11047 break;
11049 case dw_val_class_macptr:
11050 dw2_asm_output_offset (dwarf_offset_size, AT_lbl (a),
11051 debug_macinfo_section, "%s", name);
11052 break;
11054 case dw_val_class_loclistsptr:
11055 dw2_asm_output_offset (dwarf_offset_size, AT_lbl (a),
11056 debug_loc_section, "%s", name);
11057 break;
11059 case dw_val_class_str:
11060 if (a->dw_attr_val.v.val_str->form == DW_FORM_strp)
11061 dw2_asm_output_offset (dwarf_offset_size,
11062 a->dw_attr_val.v.val_str->label,
11063 debug_str_section,
11064 "%s: \"%s\"", name, AT_string (a));
11065 else if (a->dw_attr_val.v.val_str->form == DW_FORM_line_strp)
11066 dw2_asm_output_offset (dwarf_offset_size,
11067 a->dw_attr_val.v.val_str->label,
11068 debug_line_str_section,
11069 "%s: \"%s\"", name, AT_string (a));
11070 else if (a->dw_attr_val.v.val_str->form == dwarf_FORM (DW_FORM_strx))
11071 dw2_asm_output_data_uleb128 (AT_index (a),
11072 "%s: \"%s\"", name, AT_string (a));
11073 else
11074 dw2_asm_output_nstring (AT_string (a), -1, "%s", name);
11075 break;
11077 case dw_val_class_file:
11079 int f = maybe_emit_file (a->dw_attr_val.v.val_file);
11081 dw2_asm_output_data (constant_size (f), f, "%s (%s)", name,
11082 a->dw_attr_val.v.val_file->filename);
11083 break;
11086 case dw_val_class_file_implicit:
11087 if (flag_debug_asm)
11088 fprintf (asm_out_file, "\t\t\t%s %s (%d, %s)\n",
11089 ASM_COMMENT_START, name,
11090 maybe_emit_file (a->dw_attr_val.v.val_file),
11091 a->dw_attr_val.v.val_file->filename);
11092 break;
11094 case dw_val_class_data8:
11096 int i;
11098 for (i = 0; i < 8; i++)
11099 dw2_asm_output_data (1, a->dw_attr_val.v.val_data8[i],
11100 i == 0 ? "%s" : NULL, name);
11101 break;
11104 case dw_val_class_high_pc:
11105 dw2_asm_output_delta (DWARF2_ADDR_SIZE, AT_lbl (a),
11106 get_AT_low_pc (die), "DW_AT_high_pc");
11107 break;
11109 case dw_val_class_discr_value:
11110 output_discr_value (&a->dw_attr_val.v.val_discr_value, name);
11111 break;
11113 case dw_val_class_discr_list:
11115 dw_discr_list_ref list = AT_discr_list (a);
11116 const int size = size_of_discr_list (list);
11118 /* This is a block, so output its length first. */
11119 dw2_asm_output_data (constant_size (size), size,
11120 "%s: block size", name);
11122 for (; list != NULL; list = list->dw_discr_next)
11124 /* One byte for the discriminant value descriptor, and then as
11125 many LEB128 numbers as required. */
11126 if (list->dw_discr_range)
11127 dw2_asm_output_data (1, DW_DSC_range,
11128 "%s: DW_DSC_range", name);
11129 else
11130 dw2_asm_output_data (1, DW_DSC_label,
11131 "%s: DW_DSC_label", name);
11133 output_discr_value (&list->dw_discr_lower_bound, name);
11134 if (list->dw_discr_range)
11135 output_discr_value (&list->dw_discr_upper_bound, name);
11137 break;
11140 default:
11141 gcc_unreachable ();
11145 FOR_EACH_CHILD (die, c, output_die (c));
11147 /* Add null byte to terminate sibling list. */
11148 if (die->die_child != NULL)
11149 dw2_asm_output_data (1, 0, "end of children of DIE %#lx",
11150 (unsigned long) die->die_offset);
11153 /* Output the dwarf version number. */
11155 static void
11156 output_dwarf_version ()
11158 /* ??? For now, if -gdwarf-6 is specified, we output version 5 with
11159 views in loclist. That will change eventually. */
11160 if (dwarf_version == 6)
11162 static bool once;
11163 if (!once)
11165 warning (0, "%<-gdwarf-6%> is output as version 5 with "
11166 "incompatibilities");
11167 once = true;
11169 dw2_asm_output_data (2, 5, "DWARF version number");
11171 else
11172 dw2_asm_output_data (2, dwarf_version, "DWARF version number");
11175 /* Output the compilation unit that appears at the beginning of the
11176 .debug_info section, and precedes the DIE descriptions. */
11178 static void
11179 output_compilation_unit_header (enum dwarf_unit_type ut)
11181 if (!XCOFF_DEBUGGING_INFO)
11183 if (DWARF_INITIAL_LENGTH_SIZE - dwarf_offset_size == 4)
11184 dw2_asm_output_data (4, 0xffffffff,
11185 "Initial length escape value indicating 64-bit DWARF extension");
11186 dw2_asm_output_data (dwarf_offset_size,
11187 next_die_offset - DWARF_INITIAL_LENGTH_SIZE,
11188 "Length of Compilation Unit Info");
11191 output_dwarf_version ();
11192 if (dwarf_version >= 5)
11194 const char *name;
11195 switch (ut)
11197 case DW_UT_compile: name = "DW_UT_compile"; break;
11198 case DW_UT_type: name = "DW_UT_type"; break;
11199 case DW_UT_split_compile: name = "DW_UT_split_compile"; break;
11200 case DW_UT_split_type: name = "DW_UT_split_type"; break;
11201 default: gcc_unreachable ();
11203 dw2_asm_output_data (1, ut, "%s", name);
11204 dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Pointer Size (in bytes)");
11206 dw2_asm_output_offset (dwarf_offset_size, abbrev_section_label,
11207 debug_abbrev_section,
11208 "Offset Into Abbrev. Section");
11209 if (dwarf_version < 5)
11210 dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Pointer Size (in bytes)");
11213 /* Output the compilation unit DIE and its children. */
11215 static void
11216 output_comp_unit (dw_die_ref die, int output_if_empty,
11217 const unsigned char *dwo_id)
11219 const char *secname, *oldsym;
11220 char *tmp;
11222 /* Unless we are outputting main CU, we may throw away empty ones. */
11223 if (!output_if_empty && die->die_child == NULL)
11224 return;
11226 /* Even if there are no children of this DIE, we must output the information
11227 about the compilation unit. Otherwise, on an empty translation unit, we
11228 will generate a present, but empty, .debug_info section. IRIX 6.5 `nm'
11229 will then complain when examining the file. First mark all the DIEs in
11230 this CU so we know which get local refs. */
11231 mark_dies (die);
11233 external_ref_hash_type *extern_map = optimize_external_refs (die);
11235 /* For now, optimize only the main CU, in order to optimize the rest
11236 we'd need to see all of them earlier. Leave the rest for post-linking
11237 tools like DWZ. */
11238 if (die == comp_unit_die ())
11239 abbrev_opt_start = vec_safe_length (abbrev_die_table);
11241 build_abbrev_table (die, extern_map);
11243 optimize_abbrev_table ();
11245 delete extern_map;
11247 /* Initialize the beginning DIE offset - and calculate sizes/offsets. */
11248 next_die_offset = (dwo_id
11249 ? DWARF_COMPILE_UNIT_SKELETON_HEADER_SIZE
11250 : DWARF_COMPILE_UNIT_HEADER_SIZE);
11251 calc_die_sizes (die);
11253 oldsym = die->die_id.die_symbol;
11254 if (oldsym && die->comdat_type_p)
11256 tmp = XALLOCAVEC (char, strlen (oldsym) + 24);
11258 sprintf (tmp, ".gnu.linkonce.wi.%s", oldsym);
11259 secname = tmp;
11260 die->die_id.die_symbol = NULL;
11261 switch_to_section (get_section (secname, SECTION_DEBUG, NULL));
11263 else
11265 switch_to_section (debug_info_section);
11266 ASM_OUTPUT_LABEL (asm_out_file, debug_info_section_label);
11267 info_section_emitted = true;
11270 /* For LTO cross unit DIE refs we want a symbol on the start of the
11271 debuginfo section, not on the CU DIE. */
11272 if ((flag_generate_lto || flag_generate_offload) && oldsym)
11274 /* ??? No way to get visibility assembled without a decl. */
11275 tree decl = build_decl (UNKNOWN_LOCATION, VAR_DECL,
11276 get_identifier (oldsym), char_type_node);
11277 TREE_PUBLIC (decl) = true;
11278 TREE_STATIC (decl) = true;
11279 DECL_ARTIFICIAL (decl) = true;
11280 DECL_VISIBILITY (decl) = VISIBILITY_HIDDEN;
11281 DECL_VISIBILITY_SPECIFIED (decl) = true;
11282 targetm.asm_out.assemble_visibility (decl, VISIBILITY_HIDDEN);
11283 #ifdef ASM_WEAKEN_LABEL
11284 /* We prefer a .weak because that handles duplicates from duplicate
11285 archive members in a graceful way. */
11286 ASM_WEAKEN_LABEL (asm_out_file, oldsym);
11287 #else
11288 targetm.asm_out.globalize_label (asm_out_file, oldsym);
11289 #endif
11290 ASM_OUTPUT_LABEL (asm_out_file, oldsym);
11293 /* Output debugging information. */
11294 output_compilation_unit_header (dwo_id
11295 ? DW_UT_split_compile : DW_UT_compile);
11296 if (dwarf_version >= 5)
11298 if (dwo_id != NULL)
11299 for (int i = 0; i < 8; i++)
11300 dw2_asm_output_data (1, dwo_id[i], i == 0 ? "DWO id" : NULL);
11302 output_die (die);
11304 /* Leave the marks on the main CU, so we can check them in
11305 output_pubnames. */
11306 if (oldsym)
11308 unmark_dies (die);
11309 die->die_id.die_symbol = oldsym;
11313 /* Whether to generate the DWARF accelerator tables in .debug_pubnames
11314 and .debug_pubtypes. This is configured per-target, but can be
11315 overridden by the -gpubnames or -gno-pubnames options. */
11317 static inline bool
11318 want_pubnames (void)
11320 if (debug_info_level <= DINFO_LEVEL_TERSE
11321 /* Names and types go to the early debug part only. */
11322 || in_lto_p)
11323 return false;
11324 if (debug_generate_pub_sections != -1)
11325 return debug_generate_pub_sections;
11326 return targetm.want_debug_pub_sections;
11329 /* Add the DW_AT_GNU_pubnames and DW_AT_GNU_pubtypes attributes. */
11331 static void
11332 add_AT_pubnames (dw_die_ref die)
11334 if (want_pubnames ())
11335 add_AT_flag (die, DW_AT_GNU_pubnames, 1);
11338 /* Add a string attribute value to a skeleton DIE. */
11340 static inline void
11341 add_skeleton_AT_string (dw_die_ref die, enum dwarf_attribute attr_kind,
11342 const char *str)
11344 dw_attr_node attr;
11345 struct indirect_string_node *node;
11347 if (! skeleton_debug_str_hash)
11348 skeleton_debug_str_hash
11349 = hash_table<indirect_string_hasher>::create_ggc (10);
11351 node = find_AT_string_in_table (str, skeleton_debug_str_hash);
11352 find_string_form (node);
11353 if (node->form == dwarf_FORM (DW_FORM_strx))
11354 node->form = DW_FORM_strp;
11356 attr.dw_attr = attr_kind;
11357 attr.dw_attr_val.val_class = dw_val_class_str;
11358 attr.dw_attr_val.val_entry = NULL;
11359 attr.dw_attr_val.v.val_str = node;
11360 add_dwarf_attr (die, &attr);
11363 /* Helper function to generate top-level dies for skeleton debug_info and
11364 debug_types. */
11366 static void
11367 add_top_level_skeleton_die_attrs (dw_die_ref die)
11369 const char *dwo_file_name = concat (aux_base_name, ".dwo", NULL);
11370 const char *comp_dir = comp_dir_string ();
11372 add_skeleton_AT_string (die, dwarf_AT (DW_AT_dwo_name), dwo_file_name);
11373 if (comp_dir != NULL)
11374 add_skeleton_AT_string (die, DW_AT_comp_dir, comp_dir);
11375 add_AT_pubnames (die);
11376 if (addr_index_table != NULL && addr_index_table->size () > 0)
11377 add_AT_lineptr (die, dwarf_AT (DW_AT_addr_base), debug_addr_section_label);
11380 /* Output skeleton debug sections that point to the dwo file. */
11382 static void
11383 output_skeleton_debug_sections (dw_die_ref comp_unit,
11384 const unsigned char *dwo_id)
11386 /* These attributes will be found in the full debug_info section. */
11387 remove_AT (comp_unit, DW_AT_producer);
11388 remove_AT (comp_unit, DW_AT_language);
11390 switch_to_section (debug_skeleton_info_section);
11391 ASM_OUTPUT_LABEL (asm_out_file, debug_skeleton_info_section_label);
11393 /* Produce the skeleton compilation-unit header. This one differs enough from
11394 a normal CU header that it's better not to call output_compilation_unit
11395 header. */
11396 if (DWARF_INITIAL_LENGTH_SIZE - dwarf_offset_size == 4)
11397 dw2_asm_output_data (4, 0xffffffff,
11398 "Initial length escape value indicating 64-bit "
11399 "DWARF extension");
11401 dw2_asm_output_data (dwarf_offset_size,
11402 DWARF_COMPILE_UNIT_SKELETON_HEADER_SIZE
11403 - DWARF_INITIAL_LENGTH_SIZE
11404 + size_of_die (comp_unit),
11405 "Length of Compilation Unit Info");
11406 output_dwarf_version ();
11407 if (dwarf_version >= 5)
11409 dw2_asm_output_data (1, DW_UT_skeleton, "DW_UT_skeleton");
11410 dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Pointer Size (in bytes)");
11412 dw2_asm_output_offset (dwarf_offset_size, debug_skeleton_abbrev_section_label,
11413 debug_skeleton_abbrev_section,
11414 "Offset Into Abbrev. Section");
11415 if (dwarf_version < 5)
11416 dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Pointer Size (in bytes)");
11417 else
11418 for (int i = 0; i < 8; i++)
11419 dw2_asm_output_data (1, dwo_id[i], i == 0 ? "DWO id" : NULL);
11421 comp_unit->die_abbrev = SKELETON_COMP_DIE_ABBREV;
11422 output_die (comp_unit);
11424 /* Build the skeleton debug_abbrev section. */
11425 switch_to_section (debug_skeleton_abbrev_section);
11426 ASM_OUTPUT_LABEL (asm_out_file, debug_skeleton_abbrev_section_label);
11428 output_die_abbrevs (SKELETON_COMP_DIE_ABBREV, comp_unit);
11430 dw2_asm_output_data (1, 0, "end of skeleton .debug_abbrev");
11433 /* Output a comdat type unit DIE and its children. */
11435 static void
11436 output_comdat_type_unit (comdat_type_node *node,
11437 bool early_lto_debug ATTRIBUTE_UNUSED)
11439 const char *secname;
11440 char *tmp;
11441 int i;
11442 #if defined (OBJECT_FORMAT_ELF)
11443 tree comdat_key;
11444 #endif
11446 /* First mark all the DIEs in this CU so we know which get local refs. */
11447 mark_dies (node->root_die);
11449 external_ref_hash_type *extern_map = optimize_external_refs (node->root_die);
11451 build_abbrev_table (node->root_die, extern_map);
11453 delete extern_map;
11454 extern_map = NULL;
11456 /* Initialize the beginning DIE offset - and calculate sizes/offsets. */
11457 next_die_offset = DWARF_COMDAT_TYPE_UNIT_HEADER_SIZE;
11458 calc_die_sizes (node->root_die);
11460 #if defined (OBJECT_FORMAT_ELF)
11461 if (dwarf_version >= 5)
11463 if (!dwarf_split_debug_info)
11464 secname = early_lto_debug ? DEBUG_LTO_INFO_SECTION : DEBUG_INFO_SECTION;
11465 else
11466 secname = (early_lto_debug
11467 ? DEBUG_LTO_DWO_INFO_SECTION : DEBUG_DWO_INFO_SECTION);
11469 else if (!dwarf_split_debug_info)
11470 secname = early_lto_debug ? ".gnu.debuglto_.debug_types" : ".debug_types";
11471 else
11472 secname = (early_lto_debug
11473 ? ".gnu.debuglto_.debug_types.dwo" : ".debug_types.dwo");
11475 tmp = XALLOCAVEC (char, 4 + DWARF_TYPE_SIGNATURE_SIZE * 2);
11476 sprintf (tmp, dwarf_version >= 5 ? "wi." : "wt.");
11477 for (i = 0; i < DWARF_TYPE_SIGNATURE_SIZE; i++)
11478 sprintf (tmp + 3 + i * 2, "%02x", node->signature[i] & 0xff);
11479 comdat_key = get_identifier (tmp);
11480 targetm.asm_out.named_section (secname,
11481 SECTION_DEBUG | SECTION_LINKONCE,
11482 comdat_key);
11483 #else
11484 tmp = XALLOCAVEC (char, 18 + DWARF_TYPE_SIGNATURE_SIZE * 2);
11485 sprintf (tmp, (dwarf_version >= 5
11486 ? ".gnu.linkonce.wi." : ".gnu.linkonce.wt."));
11487 for (i = 0; i < DWARF_TYPE_SIGNATURE_SIZE; i++)
11488 sprintf (tmp + 17 + i * 2, "%02x", node->signature[i] & 0xff);
11489 secname = tmp;
11490 switch_to_section (get_section (secname, SECTION_DEBUG, NULL));
11491 #endif
11493 /* Output debugging information. */
11494 output_compilation_unit_header (dwarf_split_debug_info
11495 ? DW_UT_split_type : DW_UT_type);
11496 output_signature (node->signature, "Type Signature");
11497 dw2_asm_output_data (dwarf_offset_size, node->type_die->die_offset,
11498 "Offset to Type DIE");
11499 output_die (node->root_die);
11501 unmark_dies (node->root_die);
11504 /* Return the DWARF2/3 pubname associated with a decl. */
11506 static const char *
11507 dwarf2_name (tree decl, int scope)
11509 if (DECL_NAMELESS (decl))
11510 return NULL;
11511 return lang_hooks.dwarf_name (decl, scope ? 1 : 0);
11514 /* Add a new entry to .debug_pubnames if appropriate. */
11516 static void
11517 add_pubname_string (const char *str, dw_die_ref die)
11519 pubname_entry e;
11521 e.die = die;
11522 e.name = xstrdup (str);
11523 vec_safe_push (pubname_table, e);
11526 static void
11527 add_pubname (tree decl, dw_die_ref die)
11529 if (!want_pubnames ())
11530 return;
11532 /* Don't add items to the table when we expect that the consumer will have
11533 just read the enclosing die. For example, if the consumer is looking at a
11534 class_member, it will either be inside the class already, or will have just
11535 looked up the class to find the member. Either way, searching the class is
11536 faster than searching the index. */
11537 if ((TREE_PUBLIC (decl) && !class_scope_p (die->die_parent))
11538 || is_cu_die (die->die_parent) || is_namespace_die (die->die_parent))
11540 const char *name = dwarf2_name (decl, 1);
11542 if (name)
11543 add_pubname_string (name, die);
11547 /* Add an enumerator to the pubnames section. */
11549 static void
11550 add_enumerator_pubname (const char *scope_name, dw_die_ref die)
11552 pubname_entry e;
11554 gcc_assert (scope_name);
11555 e.name = concat (scope_name, get_AT_string (die, DW_AT_name), NULL);
11556 e.die = die;
11557 vec_safe_push (pubname_table, e);
11560 /* Add a new entry to .debug_pubtypes if appropriate. */
11562 static void
11563 add_pubtype (tree decl, dw_die_ref die)
11565 pubname_entry e;
11567 if (!want_pubnames ())
11568 return;
11570 if ((TREE_PUBLIC (decl)
11571 || is_cu_die (die->die_parent) || is_namespace_die (die->die_parent))
11572 && (die->die_tag == DW_TAG_typedef || COMPLETE_TYPE_P (decl)))
11574 tree scope = NULL;
11575 const char *scope_name = "";
11576 const char *sep = is_cxx () ? "::" : ".";
11577 const char *name;
11579 scope = TYPE_P (decl) ? TYPE_CONTEXT (decl) : NULL;
11580 if (scope && TREE_CODE (scope) == NAMESPACE_DECL)
11582 scope_name = lang_hooks.dwarf_name (scope, 1);
11583 if (scope_name != NULL && scope_name[0] != '\0')
11584 scope_name = concat (scope_name, sep, NULL);
11585 else
11586 scope_name = "";
11589 if (TYPE_P (decl))
11590 name = type_tag (decl);
11591 else
11592 name = lang_hooks.dwarf_name (decl, 1);
11594 /* If we don't have a name for the type, there's no point in adding
11595 it to the table. */
11596 if (name != NULL && name[0] != '\0')
11598 e.die = die;
11599 e.name = concat (scope_name, name, NULL);
11600 vec_safe_push (pubtype_table, e);
11603 /* Although it might be more consistent to add the pubinfo for the
11604 enumerators as their dies are created, they should only be added if the
11605 enum type meets the criteria above. So rather than re-check the parent
11606 enum type whenever an enumerator die is created, just output them all
11607 here. This isn't protected by the name conditional because anonymous
11608 enums don't have names. */
11609 if (die->die_tag == DW_TAG_enumeration_type)
11611 dw_die_ref c;
11613 FOR_EACH_CHILD (die, c, add_enumerator_pubname (scope_name, c));
11618 /* Output a single entry in the pubnames table. */
11620 static void
11621 output_pubname (dw_offset die_offset, pubname_entry *entry)
11623 dw_die_ref die = entry->die;
11624 int is_static = get_AT_flag (die, DW_AT_external) ? 0 : 1;
11626 dw2_asm_output_data (dwarf_offset_size, die_offset, "DIE offset");
11628 if (debug_generate_pub_sections == 2)
11630 /* This logic follows gdb's method for determining the value of the flag
11631 byte. */
11632 uint32_t flags = GDB_INDEX_SYMBOL_KIND_NONE;
11633 switch (die->die_tag)
11635 case DW_TAG_typedef:
11636 case DW_TAG_base_type:
11637 case DW_TAG_subrange_type:
11638 GDB_INDEX_SYMBOL_KIND_SET_VALUE(flags, GDB_INDEX_SYMBOL_KIND_TYPE);
11639 GDB_INDEX_SYMBOL_STATIC_SET_VALUE(flags, 1);
11640 break;
11641 case DW_TAG_enumerator:
11642 GDB_INDEX_SYMBOL_KIND_SET_VALUE(flags,
11643 GDB_INDEX_SYMBOL_KIND_VARIABLE);
11644 if (!is_cxx ())
11645 GDB_INDEX_SYMBOL_STATIC_SET_VALUE(flags, 1);
11646 break;
11647 case DW_TAG_subprogram:
11648 GDB_INDEX_SYMBOL_KIND_SET_VALUE(flags,
11649 GDB_INDEX_SYMBOL_KIND_FUNCTION);
11650 if (!is_ada ())
11651 GDB_INDEX_SYMBOL_STATIC_SET_VALUE(flags, is_static);
11652 break;
11653 case DW_TAG_constant:
11654 GDB_INDEX_SYMBOL_KIND_SET_VALUE(flags,
11655 GDB_INDEX_SYMBOL_KIND_VARIABLE);
11656 GDB_INDEX_SYMBOL_STATIC_SET_VALUE(flags, is_static);
11657 break;
11658 case DW_TAG_variable:
11659 GDB_INDEX_SYMBOL_KIND_SET_VALUE(flags,
11660 GDB_INDEX_SYMBOL_KIND_VARIABLE);
11661 GDB_INDEX_SYMBOL_STATIC_SET_VALUE(flags, is_static);
11662 break;
11663 case DW_TAG_namespace:
11664 case DW_TAG_imported_declaration:
11665 GDB_INDEX_SYMBOL_KIND_SET_VALUE(flags, GDB_INDEX_SYMBOL_KIND_TYPE);
11666 break;
11667 case DW_TAG_class_type:
11668 case DW_TAG_interface_type:
11669 case DW_TAG_structure_type:
11670 case DW_TAG_union_type:
11671 case DW_TAG_enumeration_type:
11672 GDB_INDEX_SYMBOL_KIND_SET_VALUE(flags, GDB_INDEX_SYMBOL_KIND_TYPE);
11673 if (!is_cxx ())
11674 GDB_INDEX_SYMBOL_STATIC_SET_VALUE(flags, 1);
11675 break;
11676 default:
11677 /* An unusual tag. Leave the flag-byte empty. */
11678 break;
11680 dw2_asm_output_data (1, flags >> GDB_INDEX_CU_BITSIZE,
11681 "GDB-index flags");
11684 dw2_asm_output_nstring (entry->name, -1, "external name");
11688 /* Output the public names table used to speed up access to externally
11689 visible names; or the public types table used to find type definitions. */
11691 static void
11692 output_pubnames (vec<pubname_entry, va_gc> *names)
11694 unsigned i;
11695 unsigned long pubnames_length = size_of_pubnames (names);
11696 pubname_entry *pub;
11698 if (!XCOFF_DEBUGGING_INFO)
11700 if (DWARF_INITIAL_LENGTH_SIZE - dwarf_offset_size == 4)
11701 dw2_asm_output_data (4, 0xffffffff,
11702 "Initial length escape value indicating 64-bit DWARF extension");
11703 dw2_asm_output_data (dwarf_offset_size, pubnames_length,
11704 "Pub Info Length");
11707 /* Version number for pubnames/pubtypes is independent of dwarf version. */
11708 dw2_asm_output_data (2, 2, "DWARF pubnames/pubtypes version");
11710 if (dwarf_split_debug_info)
11711 dw2_asm_output_offset (dwarf_offset_size, debug_skeleton_info_section_label,
11712 debug_skeleton_info_section,
11713 "Offset of Compilation Unit Info");
11714 else
11715 dw2_asm_output_offset (dwarf_offset_size, debug_info_section_label,
11716 debug_info_section,
11717 "Offset of Compilation Unit Info");
11718 dw2_asm_output_data (dwarf_offset_size, next_die_offset,
11719 "Compilation Unit Length");
11721 FOR_EACH_VEC_ELT (*names, i, pub)
11723 if (include_pubname_in_output (names, pub))
11725 dw_offset die_offset = pub->die->die_offset;
11727 /* We shouldn't see pubnames for DIEs outside of the main CU. */
11728 if (names == pubname_table && pub->die->die_tag != DW_TAG_enumerator)
11729 gcc_assert (pub->die->die_mark);
11731 /* If we're putting types in their own .debug_types sections,
11732 the .debug_pubtypes table will still point to the compile
11733 unit (not the type unit), so we want to use the offset of
11734 the skeleton DIE (if there is one). */
11735 if (pub->die->comdat_type_p && names == pubtype_table)
11737 comdat_type_node *type_node = pub->die->die_id.die_type_node;
11739 if (type_node != NULL)
11740 die_offset = (type_node->skeleton_die != NULL
11741 ? type_node->skeleton_die->die_offset
11742 : comp_unit_die ()->die_offset);
11745 output_pubname (die_offset, pub);
11749 dw2_asm_output_data (dwarf_offset_size, 0, NULL);
11752 /* Output public names and types tables if necessary. */
11754 static void
11755 output_pubtables (void)
11757 if (!want_pubnames () || !info_section_emitted)
11758 return;
11760 switch_to_section (debug_pubnames_section);
11761 output_pubnames (pubname_table);
11762 /* ??? Only defined by DWARF3, but emitted by Darwin for DWARF2.
11763 It shouldn't hurt to emit it always, since pure DWARF2 consumers
11764 simply won't look for the section. */
11765 switch_to_section (debug_pubtypes_section);
11766 output_pubnames (pubtype_table);
11770 /* Output the information that goes into the .debug_aranges table.
11771 Namely, define the beginning and ending address range of the
11772 text section generated for this compilation unit. */
11774 static void
11775 output_aranges (void)
11777 unsigned i;
11778 unsigned long aranges_length = size_of_aranges ();
11780 if (!XCOFF_DEBUGGING_INFO)
11782 if (DWARF_INITIAL_LENGTH_SIZE - dwarf_offset_size == 4)
11783 dw2_asm_output_data (4, 0xffffffff,
11784 "Initial length escape value indicating 64-bit DWARF extension");
11785 dw2_asm_output_data (dwarf_offset_size, aranges_length,
11786 "Length of Address Ranges Info");
11789 /* Version number for aranges is still 2, even up to DWARF5. */
11790 dw2_asm_output_data (2, 2, "DWARF aranges version");
11791 if (dwarf_split_debug_info)
11792 dw2_asm_output_offset (dwarf_offset_size, debug_skeleton_info_section_label,
11793 debug_skeleton_info_section,
11794 "Offset of Compilation Unit Info");
11795 else
11796 dw2_asm_output_offset (dwarf_offset_size, debug_info_section_label,
11797 debug_info_section,
11798 "Offset of Compilation Unit Info");
11799 dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Size of Address");
11800 dw2_asm_output_data (1, 0, "Size of Segment Descriptor");
11802 /* We need to align to twice the pointer size here. */
11803 if (DWARF_ARANGES_PAD_SIZE)
11805 /* Pad using a 2 byte words so that padding is correct for any
11806 pointer size. */
11807 dw2_asm_output_data (2, 0, "Pad to %d byte boundary",
11808 2 * DWARF2_ADDR_SIZE);
11809 for (i = 2; i < (unsigned) DWARF_ARANGES_PAD_SIZE; i += 2)
11810 dw2_asm_output_data (2, 0, NULL);
11813 /* It is necessary not to output these entries if the sections were
11814 not used; if the sections were not used, the length will be 0 and
11815 the address may end up as 0 if the section is discarded by ld
11816 --gc-sections, leaving an invalid (0, 0) entry that can be
11817 confused with the terminator. */
11818 if (switch_text_ranges)
11820 const char *prev_loc = text_section_label;
11821 const char *loc;
11822 unsigned idx;
11824 FOR_EACH_VEC_ELT (*switch_text_ranges, idx, loc)
11825 if (prev_loc)
11827 dw2_asm_output_addr (DWARF2_ADDR_SIZE, prev_loc, "Address");
11828 dw2_asm_output_delta (DWARF2_ADDR_SIZE, loc, prev_loc, "Length");
11829 prev_loc = NULL;
11831 else
11832 prev_loc = loc;
11834 if (prev_loc)
11836 dw2_asm_output_addr (DWARF2_ADDR_SIZE, prev_loc, "Address");
11837 dw2_asm_output_delta (DWARF2_ADDR_SIZE, text_end_label,
11838 prev_loc, "Length");
11842 if (switch_cold_ranges)
11844 const char *prev_loc = cold_text_section_label;
11845 const char *loc;
11846 unsigned idx;
11848 FOR_EACH_VEC_ELT (*switch_cold_ranges, idx, loc)
11849 if (prev_loc)
11851 dw2_asm_output_addr (DWARF2_ADDR_SIZE, prev_loc, "Address");
11852 dw2_asm_output_delta (DWARF2_ADDR_SIZE, loc, prev_loc, "Length");
11853 prev_loc = NULL;
11855 else
11856 prev_loc = loc;
11858 if (prev_loc)
11860 dw2_asm_output_addr (DWARF2_ADDR_SIZE, prev_loc, "Address");
11861 dw2_asm_output_delta (DWARF2_ADDR_SIZE, cold_end_label,
11862 prev_loc, "Length");
11866 if (have_multiple_function_sections)
11868 unsigned fde_idx;
11869 dw_fde_ref fde;
11871 FOR_EACH_VEC_ELT (*fde_vec, fde_idx, fde)
11873 if (fde->ignored_debug)
11874 continue;
11875 if (!fde->in_std_section)
11877 dw2_asm_output_addr (DWARF2_ADDR_SIZE, fde->dw_fde_begin,
11878 "Address");
11879 dw2_asm_output_delta (DWARF2_ADDR_SIZE, fde->dw_fde_end,
11880 fde->dw_fde_begin, "Length");
11882 if (fde->dw_fde_second_begin && !fde->second_in_std_section)
11884 dw2_asm_output_addr (DWARF2_ADDR_SIZE, fde->dw_fde_second_begin,
11885 "Address");
11886 dw2_asm_output_delta (DWARF2_ADDR_SIZE, fde->dw_fde_second_end,
11887 fde->dw_fde_second_begin, "Length");
11892 /* Output the terminator words. */
11893 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
11894 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
11897 /* Add a new entry to .debug_ranges. Return its index into
11898 ranges_table vector. */
11900 static unsigned int
11901 add_ranges_num (int num, bool maybe_new_sec)
11903 dw_ranges r = { NULL, num, 0, maybe_new_sec, NULL, NULL };
11904 vec_safe_push (ranges_table, r);
11905 return vec_safe_length (ranges_table) - 1;
11908 /* Add a new entry to .debug_ranges corresponding to a block, or a
11909 range terminator if BLOCK is NULL. MAYBE_NEW_SEC is true if
11910 this entry might be in a different section from previous range. */
11912 static unsigned int
11913 add_ranges (const_tree block, bool maybe_new_sec)
11915 return add_ranges_num (block ? BLOCK_NUMBER (block) : 0, maybe_new_sec);
11918 /* Note that (*rnglist_table)[offset] is either a head of a rnglist
11919 chain, or middle entry of a chain that will be directly referred to. */
11921 static void
11922 note_rnglist_head (unsigned int offset)
11924 if (dwarf_version < 5 || (*ranges_table)[offset].label)
11925 return;
11926 (*ranges_table)[offset].label = gen_internal_sym ("LLRL");
11929 /* Add a new entry to .debug_ranges corresponding to a pair of labels.
11930 When using dwarf_split_debug_info, address attributes in dies destined
11931 for the final executable should be direct references--setting the
11932 parameter force_direct ensures this behavior. */
11934 static void
11935 add_ranges_by_labels (dw_die_ref die, const char *begin, const char *end,
11936 bool *added, bool force_direct)
11938 unsigned int in_use = vec_safe_length (ranges_by_label);
11939 unsigned int offset;
11940 dw_ranges_by_label rbl = { begin, end };
11941 vec_safe_push (ranges_by_label, rbl);
11942 offset = add_ranges_num (-(int)in_use - 1, true);
11943 if (!*added)
11945 add_AT_range_list (die, DW_AT_ranges, offset, force_direct);
11946 *added = true;
11947 note_rnglist_head (offset);
11948 if (dwarf_split_debug_info && force_direct)
11949 (*ranges_table)[offset].idx = DW_RANGES_IDX_SKELETON;
11953 /* Emit .debug_ranges section. */
11955 static void
11956 output_ranges (void)
11958 unsigned i;
11959 static const char *const start_fmt = "Offset %#x";
11960 const char *fmt = start_fmt;
11961 dw_ranges *r;
11963 switch_to_section (debug_ranges_section);
11964 ASM_OUTPUT_LABEL (asm_out_file, ranges_section_label);
11965 FOR_EACH_VEC_SAFE_ELT (ranges_table, i, r)
11967 int block_num = r->num;
11969 if (block_num > 0)
11971 char blabel[MAX_ARTIFICIAL_LABEL_BYTES];
11972 char elabel[MAX_ARTIFICIAL_LABEL_BYTES];
11974 ASM_GENERATE_INTERNAL_LABEL (blabel, BLOCK_BEGIN_LABEL, block_num);
11975 ASM_GENERATE_INTERNAL_LABEL (elabel, BLOCK_END_LABEL, block_num);
11977 /* If all code is in the text section, then the compilation
11978 unit base address defaults to DW_AT_low_pc, which is the
11979 base of the text section. */
11980 if (!have_multiple_function_sections)
11982 dw2_asm_output_delta (DWARF2_ADDR_SIZE, blabel,
11983 text_section_label,
11984 fmt, i * 2 * DWARF2_ADDR_SIZE);
11985 dw2_asm_output_delta (DWARF2_ADDR_SIZE, elabel,
11986 text_section_label, NULL);
11989 /* Otherwise, the compilation unit base address is zero,
11990 which allows us to use absolute addresses, and not worry
11991 about whether the target supports cross-section
11992 arithmetic. */
11993 else
11995 dw2_asm_output_addr (DWARF2_ADDR_SIZE, blabel,
11996 fmt, i * 2 * DWARF2_ADDR_SIZE);
11997 dw2_asm_output_addr (DWARF2_ADDR_SIZE, elabel, NULL);
12000 fmt = NULL;
12003 /* Negative block_num stands for an index into ranges_by_label. */
12004 else if (block_num < 0)
12006 int lab_idx = - block_num - 1;
12008 if (!have_multiple_function_sections)
12010 gcc_unreachable ();
12011 #if 0
12012 /* If we ever use add_ranges_by_labels () for a single
12013 function section, all we have to do is to take out
12014 the #if 0 above. */
12015 dw2_asm_output_delta (DWARF2_ADDR_SIZE,
12016 (*ranges_by_label)[lab_idx].begin,
12017 text_section_label,
12018 fmt, i * 2 * DWARF2_ADDR_SIZE);
12019 dw2_asm_output_delta (DWARF2_ADDR_SIZE,
12020 (*ranges_by_label)[lab_idx].end,
12021 text_section_label, NULL);
12022 #endif
12024 else
12026 dw2_asm_output_addr (DWARF2_ADDR_SIZE,
12027 (*ranges_by_label)[lab_idx].begin,
12028 fmt, i * 2 * DWARF2_ADDR_SIZE);
12029 dw2_asm_output_addr (DWARF2_ADDR_SIZE,
12030 (*ranges_by_label)[lab_idx].end,
12031 NULL);
12034 else
12036 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
12037 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
12038 fmt = start_fmt;
12043 /* Non-zero if .debug_line_str should be used for .debug_line section
12044 strings or strings that are likely shareable with those. */
12045 #define DWARF5_USE_DEBUG_LINE_STR \
12046 (!DWARF2_INDIRECT_STRING_SUPPORT_MISSING_ON_TARGET \
12047 && (DEBUG_STR_SECTION_FLAGS & SECTION_MERGE) != 0 \
12048 /* FIXME: there is no .debug_line_str.dwo section, \
12049 for -gsplit-dwarf we should use DW_FORM_strx instead. */ \
12050 && !dwarf_split_debug_info)
12053 /* Returns TRUE if we are outputting DWARF5 and the assembler supports
12054 DWARF5 .debug_line tables using .debug_line_str or we generate
12055 it ourselves, except for split-dwarf which doesn't have a
12056 .debug_line_str. */
12057 static bool
12058 asm_outputs_debug_line_str (void)
12060 if (dwarf_version >= 5
12061 && ! output_asm_line_debug_info ()
12062 && DWARF5_USE_DEBUG_LINE_STR)
12063 return true;
12064 else
12066 #if defined(HAVE_AS_GDWARF_5_DEBUG_FLAG) && defined(HAVE_AS_WORKING_DWARF_N_FLAG)
12067 return !dwarf_split_debug_info && dwarf_version >= 5;
12068 #else
12069 return false;
12070 #endif
12074 /* Return true if it is beneficial to use DW_RLE_base_address{,x}.
12075 I is index of the following range. */
12077 static bool
12078 use_distinct_base_address_for_range (unsigned int i)
12080 if (i >= vec_safe_length (ranges_table))
12081 return false;
12083 dw_ranges *r2 = &(*ranges_table)[i];
12084 /* Use DW_RLE_base_address{,x} if there is a next range in the
12085 range list and is guaranteed to be in the same section. */
12086 return r2->num != 0 && r2->label == NULL && !r2->maybe_new_sec;
12089 /* Assign .debug_rnglists indexes and unique indexes into the debug_addr
12090 section when needed. */
12092 static void
12093 index_rnglists (void)
12095 unsigned i;
12096 dw_ranges *r;
12097 bool base = false;
12099 FOR_EACH_VEC_SAFE_ELT (ranges_table, i, r)
12101 if (r->label && r->idx != DW_RANGES_IDX_SKELETON)
12102 r->idx = rnglist_idx++;
12104 int block_num = r->num;
12105 if ((HAVE_AS_LEB128 || block_num < 0)
12106 && !have_multiple_function_sections)
12107 continue;
12108 if (HAVE_AS_LEB128 && (r->label || r->maybe_new_sec))
12109 base = false;
12110 if (block_num > 0)
12112 char blabel[MAX_ARTIFICIAL_LABEL_BYTES];
12113 char elabel[MAX_ARTIFICIAL_LABEL_BYTES];
12115 ASM_GENERATE_INTERNAL_LABEL (blabel, BLOCK_BEGIN_LABEL, block_num);
12116 ASM_GENERATE_INTERNAL_LABEL (elabel, BLOCK_END_LABEL, block_num);
12118 if (HAVE_AS_LEB128)
12120 if (!base && use_distinct_base_address_for_range (i + 1))
12122 r->begin_entry = add_addr_table_entry (xstrdup (blabel),
12123 ate_kind_label);
12124 base = true;
12126 if (base)
12127 /* If we have a base, no need for further
12128 begin_entry/end_entry, as DW_RLE_offset_pair will be
12129 used. */
12130 continue;
12131 r->begin_entry
12132 = add_addr_table_entry (xstrdup (blabel), ate_kind_label);
12133 /* No need for end_entry, DW_RLE_start{,x}_length will use
12134 length as opposed to a pair of addresses. */
12136 else
12138 r->begin_entry
12139 = add_addr_table_entry (xstrdup (blabel), ate_kind_label);
12140 r->end_entry
12141 = add_addr_table_entry (xstrdup (elabel), ate_kind_label);
12145 /* Negative block_num stands for an index into ranges_by_label. */
12146 else if (block_num < 0)
12148 int lab_idx = - block_num - 1;
12149 const char *blabel = (*ranges_by_label)[lab_idx].begin;
12150 const char *elabel = (*ranges_by_label)[lab_idx].end;
12152 r->begin_entry
12153 = add_addr_table_entry (xstrdup (blabel), ate_kind_label);
12154 if (!HAVE_AS_LEB128)
12155 r->end_entry
12156 = add_addr_table_entry (xstrdup (elabel), ate_kind_label);
12161 /* Emit .debug_rnglists or (when DWO is true) .debug_rnglists.dwo section. */
12163 static bool
12164 output_rnglists (unsigned generation, bool dwo)
12166 unsigned i;
12167 dw_ranges *r;
12168 char l1[MAX_ARTIFICIAL_LABEL_BYTES];
12169 char l2[MAX_ARTIFICIAL_LABEL_BYTES];
12170 char basebuf[MAX_ARTIFICIAL_LABEL_BYTES];
12172 if (dwo)
12173 switch_to_section (debug_ranges_dwo_section);
12174 else
12176 switch_to_section (debug_ranges_section);
12177 ASM_OUTPUT_LABEL (asm_out_file, ranges_section_label);
12179 /* There are up to 4 unique ranges labels per generation.
12180 See also init_sections_and_labels. */
12181 ASM_GENERATE_INTERNAL_LABEL (l1, DEBUG_RANGES_SECTION_LABEL,
12182 2 + 2 * dwo + generation * 6);
12183 ASM_GENERATE_INTERNAL_LABEL (l2, DEBUG_RANGES_SECTION_LABEL,
12184 3 + 2 * dwo + generation * 6);
12185 if (DWARF_INITIAL_LENGTH_SIZE - dwarf_offset_size == 4)
12186 dw2_asm_output_data (4, 0xffffffff,
12187 "Initial length escape value indicating "
12188 "64-bit DWARF extension");
12189 dw2_asm_output_delta (dwarf_offset_size, l2, l1,
12190 "Length of Range Lists");
12191 ASM_OUTPUT_LABEL (asm_out_file, l1);
12192 output_dwarf_version ();
12193 dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Address Size");
12194 dw2_asm_output_data (1, 0, "Segment Size");
12195 /* Emit the offset table only for -gsplit-dwarf. If we don't care
12196 about relocation sizes and primarily care about the size of .debug*
12197 sections in linked shared libraries and executables, then
12198 the offset table plus corresponding DW_FORM_rnglistx uleb128 indexes
12199 into it are usually larger than just DW_FORM_sec_offset offsets
12200 into the .debug_rnglists section. */
12201 dw2_asm_output_data (4, dwo ? rnglist_idx : 0,
12202 "Offset Entry Count");
12203 if (dwo)
12205 ASM_OUTPUT_LABEL (asm_out_file, ranges_base_label);
12206 FOR_EACH_VEC_SAFE_ELT (ranges_table, i, r)
12207 if (r->label && r->idx != DW_RANGES_IDX_SKELETON)
12208 dw2_asm_output_delta (dwarf_offset_size, r->label,
12209 ranges_base_label, NULL);
12212 const char *lab = "";
12213 const char *base = NULL;
12214 bool skipping = false;
12215 bool ret = false;
12216 FOR_EACH_VEC_SAFE_ELT (ranges_table, i, r)
12218 int block_num = r->num;
12220 if (r->label)
12222 if (dwarf_split_debug_info
12223 && (r->idx == DW_RANGES_IDX_SKELETON) == dwo)
12225 ret = true;
12226 skipping = true;
12227 continue;
12229 ASM_OUTPUT_LABEL (asm_out_file, r->label);
12230 lab = r->label;
12232 if (skipping)
12234 if (block_num == 0)
12235 skipping = false;
12236 continue;
12238 if (HAVE_AS_LEB128 && (r->label || r->maybe_new_sec))
12239 base = NULL;
12240 if (block_num > 0)
12242 char blabel[MAX_ARTIFICIAL_LABEL_BYTES];
12243 char elabel[MAX_ARTIFICIAL_LABEL_BYTES];
12245 ASM_GENERATE_INTERNAL_LABEL (blabel, BLOCK_BEGIN_LABEL, block_num);
12246 ASM_GENERATE_INTERNAL_LABEL (elabel, BLOCK_END_LABEL, block_num);
12248 if (HAVE_AS_LEB128)
12250 /* If all code is in the text section, then the compilation
12251 unit base address defaults to DW_AT_low_pc, which is the
12252 base of the text section. */
12253 if (!have_multiple_function_sections)
12255 dw2_asm_output_data (1, DW_RLE_offset_pair,
12256 "DW_RLE_offset_pair (%s)", lab);
12257 dw2_asm_output_delta_uleb128 (blabel, text_section_label,
12258 "Range begin address (%s)", lab);
12259 dw2_asm_output_delta_uleb128 (elabel, text_section_label,
12260 "Range end address (%s)", lab);
12261 continue;
12263 if (base == NULL && use_distinct_base_address_for_range (i + 1))
12265 if (dwarf_split_debug_info)
12267 dw2_asm_output_data (1, DW_RLE_base_addressx,
12268 "DW_RLE_base_addressx (%s)", lab);
12269 dw2_asm_output_data_uleb128 (r->begin_entry->index,
12270 "Base address index (%s)",
12271 blabel);
12273 else
12275 dw2_asm_output_data (1, DW_RLE_base_address,
12276 "DW_RLE_base_address (%s)", lab);
12277 dw2_asm_output_addr (DWARF2_ADDR_SIZE, blabel,
12278 "Base address (%s)", lab);
12280 strcpy (basebuf, blabel);
12281 base = basebuf;
12283 if (base)
12285 dw2_asm_output_data (1, DW_RLE_offset_pair,
12286 "DW_RLE_offset_pair (%s)", lab);
12287 dw2_asm_output_delta_uleb128 (blabel, base,
12288 "Range begin address (%s)", lab);
12289 dw2_asm_output_delta_uleb128 (elabel, base,
12290 "Range end address (%s)", lab);
12291 continue;
12293 if (dwarf_split_debug_info)
12295 dw2_asm_output_data (1, DW_RLE_startx_length,
12296 "DW_RLE_startx_length (%s)", lab);
12297 dw2_asm_output_data_uleb128 (r->begin_entry->index,
12298 "Range begin address index "
12299 "(%s)", blabel);
12301 else
12303 dw2_asm_output_data (1, DW_RLE_start_length,
12304 "DW_RLE_start_length (%s)", lab);
12305 dw2_asm_output_addr (DWARF2_ADDR_SIZE, blabel,
12306 "Range begin address (%s)", lab);
12308 dw2_asm_output_delta_uleb128 (elabel, blabel,
12309 "Range length (%s)", lab);
12311 else if (dwarf_split_debug_info)
12313 dw2_asm_output_data (1, DW_RLE_startx_endx,
12314 "DW_RLE_startx_endx (%s)", lab);
12315 dw2_asm_output_data_uleb128 (r->begin_entry->index,
12316 "Range begin address index "
12317 "(%s)", blabel);
12318 dw2_asm_output_data_uleb128 (r->end_entry->index,
12319 "Range end address index "
12320 "(%s)", elabel);
12322 else
12324 dw2_asm_output_data (1, DW_RLE_start_end,
12325 "DW_RLE_start_end (%s)", lab);
12326 dw2_asm_output_addr (DWARF2_ADDR_SIZE, blabel,
12327 "Range begin address (%s)", lab);
12328 dw2_asm_output_addr (DWARF2_ADDR_SIZE, elabel,
12329 "Range end address (%s)", lab);
12333 /* Negative block_num stands for an index into ranges_by_label. */
12334 else if (block_num < 0)
12336 int lab_idx = - block_num - 1;
12337 const char *blabel = (*ranges_by_label)[lab_idx].begin;
12338 const char *elabel = (*ranges_by_label)[lab_idx].end;
12340 if (!have_multiple_function_sections)
12341 gcc_unreachable ();
12342 if (HAVE_AS_LEB128)
12344 if (dwarf_split_debug_info)
12346 dw2_asm_output_data (1, DW_RLE_startx_length,
12347 "DW_RLE_startx_length (%s)", lab);
12348 dw2_asm_output_data_uleb128 (r->begin_entry->index,
12349 "Range begin address index "
12350 "(%s)", blabel);
12352 else
12354 dw2_asm_output_data (1, DW_RLE_start_length,
12355 "DW_RLE_start_length (%s)", lab);
12356 dw2_asm_output_addr (DWARF2_ADDR_SIZE, blabel,
12357 "Range begin address (%s)", lab);
12359 dw2_asm_output_delta_uleb128 (elabel, blabel,
12360 "Range length (%s)", lab);
12362 else if (dwarf_split_debug_info)
12364 dw2_asm_output_data (1, DW_RLE_startx_endx,
12365 "DW_RLE_startx_endx (%s)", lab);
12366 dw2_asm_output_data_uleb128 (r->begin_entry->index,
12367 "Range begin address index "
12368 "(%s)", blabel);
12369 dw2_asm_output_data_uleb128 (r->end_entry->index,
12370 "Range end address index "
12371 "(%s)", elabel);
12373 else
12375 dw2_asm_output_data (1, DW_RLE_start_end,
12376 "DW_RLE_start_end (%s)", lab);
12377 dw2_asm_output_addr (DWARF2_ADDR_SIZE, blabel,
12378 "Range begin address (%s)", lab);
12379 dw2_asm_output_addr (DWARF2_ADDR_SIZE, elabel,
12380 "Range end address (%s)", lab);
12383 else
12384 dw2_asm_output_data (1, DW_RLE_end_of_list,
12385 "DW_RLE_end_of_list (%s)", lab);
12387 ASM_OUTPUT_LABEL (asm_out_file, l2);
12388 return ret;
12391 /* Data structure containing information about input files. */
12392 struct file_info
12394 const char *path; /* Complete file name. */
12395 const char *fname; /* File name part. */
12396 int length; /* Length of entire string. */
12397 struct dwarf_file_data * file_idx; /* Index in input file table. */
12398 int dir_idx; /* Index in directory table. */
12401 /* Data structure containing information about directories with source
12402 files. */
12403 struct dir_info
12405 const char *path; /* Path including directory name. */
12406 int length; /* Path length. */
12407 int prefix; /* Index of directory entry which is a prefix. */
12408 int count; /* Number of files in this directory. */
12409 int dir_idx; /* Index of directory used as base. */
12412 /* Callback function for file_info comparison. We sort by looking at
12413 the directories in the path. */
12415 static int
12416 file_info_cmp (const void *p1, const void *p2)
12418 const struct file_info *const s1 = (const struct file_info *) p1;
12419 const struct file_info *const s2 = (const struct file_info *) p2;
12420 const unsigned char *cp1;
12421 const unsigned char *cp2;
12423 /* Take care of file names without directories. We need to make sure that
12424 we return consistent values to qsort since some will get confused if
12425 we return the same value when identical operands are passed in opposite
12426 orders. So if neither has a directory, return 0 and otherwise return
12427 1 or -1 depending on which one has the directory. We want the one with
12428 the directory to sort after the one without, so all no directory files
12429 are at the start (normally only the compilation unit file). */
12430 if ((s1->path == s1->fname || s2->path == s2->fname))
12431 return (s2->path == s2->fname) - (s1->path == s1->fname);
12433 cp1 = (const unsigned char *) s1->path;
12434 cp2 = (const unsigned char *) s2->path;
12436 while (1)
12438 ++cp1;
12439 ++cp2;
12440 /* Reached the end of the first path? If so, handle like above,
12441 but now we want longer directory prefixes before shorter ones. */
12442 if ((cp1 == (const unsigned char *) s1->fname)
12443 || (cp2 == (const unsigned char *) s2->fname))
12444 return ((cp1 == (const unsigned char *) s1->fname)
12445 - (cp2 == (const unsigned char *) s2->fname));
12447 /* Character of current path component the same? */
12448 else if (*cp1 != *cp2)
12449 return *cp1 - *cp2;
12453 struct file_name_acquire_data
12455 struct file_info *files;
12456 int used_files;
12457 int max_files;
12460 /* Traversal function for the hash table. */
12463 file_name_acquire (dwarf_file_data **slot, file_name_acquire_data *fnad)
12465 struct dwarf_file_data *d = *slot;
12466 struct file_info *fi;
12467 const char *f;
12469 gcc_assert (fnad->max_files >= d->emitted_number);
12471 if (! d->emitted_number)
12472 return 1;
12474 gcc_assert (fnad->max_files != fnad->used_files);
12476 fi = fnad->files + fnad->used_files++;
12478 f = d->filename;
12480 /* Skip all leading "./". */
12481 while (f[0] == '.' && IS_DIR_SEPARATOR (f[1]))
12482 f += 2;
12484 /* Create a new array entry. */
12485 fi->path = f;
12486 fi->length = strlen (f);
12487 fi->file_idx = d;
12489 /* Search for the file name part. */
12490 f = strrchr (f, DIR_SEPARATOR);
12491 #if defined (DIR_SEPARATOR_2)
12493 const char *g = strrchr (fi->path, DIR_SEPARATOR_2);
12495 if (g != NULL)
12497 if (f == NULL || f < g)
12498 f = g;
12501 #endif
12503 fi->fname = f == NULL ? fi->path : f + 1;
12504 return 1;
12507 /* Helper function for output_file_names. Emit a FORM encoded
12508 string STR, with assembly comment start ENTRY_KIND and
12509 index IDX */
12511 static void
12512 output_line_string (enum dwarf_form form, const char *str,
12513 const char *entry_kind, unsigned int idx)
12515 switch (form)
12517 case DW_FORM_string:
12518 dw2_asm_output_nstring (str, -1, "%s: %#x", entry_kind, idx);
12519 break;
12520 case DW_FORM_line_strp:
12521 if (!debug_line_str_hash)
12522 debug_line_str_hash
12523 = hash_table<indirect_string_hasher>::create_ggc (10);
12525 struct indirect_string_node *node;
12526 node = find_AT_string_in_table (str, debug_line_str_hash);
12527 set_indirect_string (node);
12528 node->form = form;
12529 dw2_asm_output_offset (dwarf_offset_size, node->label,
12530 debug_line_str_section, "%s: %#x: \"%s\"",
12531 entry_kind, 0, node->str);
12532 break;
12533 default:
12534 gcc_unreachable ();
12538 /* Output the directory table and the file name table. We try to minimize
12539 the total amount of memory needed. A heuristic is used to avoid large
12540 slowdowns with many input files. */
12542 static void
12543 output_file_names (void)
12545 struct file_name_acquire_data fnad;
12546 int numfiles;
12547 struct file_info *files;
12548 struct dir_info *dirs;
12549 int *saved;
12550 int *savehere;
12551 int *backmap;
12552 int ndirs;
12553 int idx_offset;
12554 int i;
12556 if (!last_emitted_file)
12558 if (dwarf_version >= 5)
12560 const char *comp_dir = comp_dir_string ();
12561 if (comp_dir == NULL)
12562 comp_dir = "";
12563 dw2_asm_output_data (1, 1, "Directory entry format count");
12564 enum dwarf_form str_form = DW_FORM_string;
12565 if (DWARF5_USE_DEBUG_LINE_STR)
12566 str_form = DW_FORM_line_strp;
12567 dw2_asm_output_data_uleb128 (DW_LNCT_path, "DW_LNCT_path");
12568 dw2_asm_output_data_uleb128 (str_form, "%s",
12569 get_DW_FORM_name (str_form));
12570 dw2_asm_output_data_uleb128 (1, "Directories count");
12571 if (str_form == DW_FORM_string)
12572 dw2_asm_output_nstring (comp_dir, -1, "Directory Entry: %#x", 0);
12573 else
12574 output_line_string (str_form, comp_dir, "Directory Entry", 0);
12575 const char *filename0 = get_AT_string (comp_unit_die (), DW_AT_name);
12576 if (filename0 == NULL)
12577 filename0 = "";
12578 #ifdef VMS_DEBUGGING_INFO
12579 dw2_asm_output_data (1, 4, "File name entry format count");
12580 #else
12581 dw2_asm_output_data (1, 2, "File name entry format count");
12582 #endif
12583 dw2_asm_output_data_uleb128 (DW_LNCT_path, "DW_LNCT_path");
12584 dw2_asm_output_data_uleb128 (str_form, "%s",
12585 get_DW_FORM_name (str_form));
12586 dw2_asm_output_data_uleb128 (DW_LNCT_directory_index,
12587 "DW_LNCT_directory_index");
12588 dw2_asm_output_data_uleb128 (DW_FORM_data1, "%s",
12589 get_DW_FORM_name (DW_FORM_data1));
12590 #ifdef VMS_DEBUGGING_INFO
12591 dw2_asm_output_data_uleb128 (DW_LNCT_timestamp, "DW_LNCT_timestamp");
12592 dw2_asm_output_data_uleb128 (DW_FORM_udata, "DW_FORM_udata");
12593 dw2_asm_output_data_uleb128 (DW_LNCT_size, "DW_LNCT_size");
12594 dw2_asm_output_data_uleb128 (DW_FORM_udata, "DW_FORM_udata");
12595 #endif
12596 dw2_asm_output_data_uleb128 (1, "File names count");
12598 output_line_string (str_form, filename0, "File Entry", 0);
12599 dw2_asm_output_data (1, 0, NULL);
12600 #ifdef VMS_DEBUGGING_INFO
12601 dw2_asm_output_data_uleb128 (0, NULL);
12602 dw2_asm_output_data_uleb128 (0, NULL);
12603 #endif
12605 else
12607 dw2_asm_output_data (1, 0, "End directory table");
12608 dw2_asm_output_data (1, 0, "End file name table");
12610 return;
12613 numfiles = last_emitted_file->emitted_number;
12615 /* Allocate the various arrays we need. */
12616 files = XALLOCAVEC (struct file_info, numfiles);
12617 dirs = XALLOCAVEC (struct dir_info, numfiles);
12619 fnad.files = files;
12620 fnad.used_files = 0;
12621 fnad.max_files = numfiles;
12622 file_table->traverse<file_name_acquire_data *, file_name_acquire> (&fnad);
12623 gcc_assert (fnad.used_files == fnad.max_files);
12625 qsort (files, numfiles, sizeof (files[0]), file_info_cmp);
12627 /* Find all the different directories used. */
12628 dirs[0].path = files[0].path;
12629 dirs[0].length = files[0].fname - files[0].path;
12630 dirs[0].prefix = -1;
12631 dirs[0].count = 1;
12632 dirs[0].dir_idx = 0;
12633 files[0].dir_idx = 0;
12634 ndirs = 1;
12636 for (i = 1; i < numfiles; i++)
12637 if (files[i].fname - files[i].path == dirs[ndirs - 1].length
12638 && memcmp (dirs[ndirs - 1].path, files[i].path,
12639 dirs[ndirs - 1].length) == 0)
12641 /* Same directory as last entry. */
12642 files[i].dir_idx = ndirs - 1;
12643 ++dirs[ndirs - 1].count;
12645 else
12647 int j;
12649 /* This is a new directory. */
12650 dirs[ndirs].path = files[i].path;
12651 dirs[ndirs].length = files[i].fname - files[i].path;
12652 dirs[ndirs].count = 1;
12653 dirs[ndirs].dir_idx = ndirs;
12654 files[i].dir_idx = ndirs;
12656 /* Search for a prefix. */
12657 dirs[ndirs].prefix = -1;
12658 for (j = 0; j < ndirs; j++)
12659 if (dirs[j].length < dirs[ndirs].length
12660 && dirs[j].length > 1
12661 && (dirs[ndirs].prefix == -1
12662 || dirs[j].length > dirs[dirs[ndirs].prefix].length)
12663 && memcmp (dirs[j].path, dirs[ndirs].path, dirs[j].length) == 0)
12664 dirs[ndirs].prefix = j;
12666 ++ndirs;
12669 /* Now to the actual work. We have to find a subset of the directories which
12670 allow expressing the file name using references to the directory table
12671 with the least amount of characters. We do not do an exhaustive search
12672 where we would have to check out every combination of every single
12673 possible prefix. Instead we use a heuristic which provides nearly optimal
12674 results in most cases and never is much off. */
12675 saved = XALLOCAVEC (int, ndirs);
12676 savehere = XALLOCAVEC (int, ndirs);
12678 memset (saved, '\0', ndirs * sizeof (saved[0]));
12679 for (i = 0; i < ndirs; i++)
12681 int j;
12682 int total;
12684 /* We can always save some space for the current directory. But this
12685 does not mean it will be enough to justify adding the directory. */
12686 savehere[i] = dirs[i].length;
12687 total = (savehere[i] - saved[i]) * dirs[i].count;
12689 for (j = i + 1; j < ndirs; j++)
12691 savehere[j] = 0;
12692 if (saved[j] < dirs[i].length)
12694 /* Determine whether the dirs[i] path is a prefix of the
12695 dirs[j] path. */
12696 int k;
12698 k = dirs[j].prefix;
12699 while (k != -1 && k != (int) i)
12700 k = dirs[k].prefix;
12702 if (k == (int) i)
12704 /* Yes it is. We can possibly save some memory by
12705 writing the filenames in dirs[j] relative to
12706 dirs[i]. */
12707 savehere[j] = dirs[i].length;
12708 total += (savehere[j] - saved[j]) * dirs[j].count;
12713 /* Check whether we can save enough to justify adding the dirs[i]
12714 directory. */
12715 if (total > dirs[i].length + 1)
12717 /* It's worthwhile adding. */
12718 for (j = i; j < ndirs; j++)
12719 if (savehere[j] > 0)
12721 /* Remember how much we saved for this directory so far. */
12722 saved[j] = savehere[j];
12724 /* Remember the prefix directory. */
12725 dirs[j].dir_idx = i;
12730 /* Emit the directory name table. */
12731 idx_offset = dirs[0].length > 0 ? 1 : 0;
12732 enum dwarf_form str_form = DW_FORM_string;
12733 enum dwarf_form idx_form = DW_FORM_udata;
12734 if (dwarf_version >= 5)
12736 const char *comp_dir = comp_dir_string ();
12737 if (comp_dir == NULL)
12738 comp_dir = "";
12739 dw2_asm_output_data (1, 1, "Directory entry format count");
12740 if (DWARF5_USE_DEBUG_LINE_STR)
12741 str_form = DW_FORM_line_strp;
12742 dw2_asm_output_data_uleb128 (DW_LNCT_path, "DW_LNCT_path");
12743 dw2_asm_output_data_uleb128 (str_form, "%s",
12744 get_DW_FORM_name (str_form));
12745 dw2_asm_output_data_uleb128 (ndirs + idx_offset, "Directories count");
12746 if (str_form == DW_FORM_string)
12748 dw2_asm_output_nstring (comp_dir, -1, "Directory Entry: %#x", 0);
12749 for (i = 1 - idx_offset; i < ndirs; i++)
12750 dw2_asm_output_nstring (dirs[i].path,
12751 dirs[i].length
12752 - !DWARF2_DIR_SHOULD_END_WITH_SEPARATOR,
12753 "Directory Entry: %#x", i + idx_offset);
12755 else
12757 output_line_string (str_form, comp_dir, "Directory Entry", 0);
12758 for (i = 1 - idx_offset; i < ndirs; i++)
12760 const char *str
12761 = ggc_alloc_string (dirs[i].path,
12762 dirs[i].length
12763 - !DWARF2_DIR_SHOULD_END_WITH_SEPARATOR);
12764 output_line_string (str_form, str, "Directory Entry",
12765 (unsigned) i + idx_offset);
12769 else
12771 for (i = 1 - idx_offset; i < ndirs; i++)
12772 dw2_asm_output_nstring (dirs[i].path,
12773 dirs[i].length
12774 - !DWARF2_DIR_SHOULD_END_WITH_SEPARATOR,
12775 "Directory Entry: %#x", i + idx_offset);
12777 dw2_asm_output_data (1, 0, "End directory table");
12780 /* We have to emit them in the order of emitted_number since that's
12781 used in the debug info generation. To do this efficiently we
12782 generate a back-mapping of the indices first. */
12783 backmap = XALLOCAVEC (int, numfiles);
12784 for (i = 0; i < numfiles; i++)
12785 backmap[files[i].file_idx->emitted_number - 1] = i;
12787 if (dwarf_version >= 5)
12789 const char *filename0 = get_AT_string (comp_unit_die (), DW_AT_name);
12790 if (filename0 == NULL)
12791 filename0 = "";
12792 /* DW_LNCT_directory_index can use DW_FORM_udata, DW_FORM_data1 and
12793 DW_FORM_data2. Choose one based on the number of directories
12794 and how much space would they occupy in each encoding.
12795 If we have at most 256 directories, all indexes fit into
12796 a single byte, so DW_FORM_data1 is most compact (if there
12797 are at most 128 directories, DW_FORM_udata would be as
12798 compact as that, but not shorter and slower to decode). */
12799 if (ndirs + idx_offset <= 256)
12800 idx_form = DW_FORM_data1;
12801 /* If there are more than 65536 directories, we have to use
12802 DW_FORM_udata, DW_FORM_data2 can't refer to them.
12803 Otherwise, compute what space would occupy if all the indexes
12804 used DW_FORM_udata - sum - and compare that to how large would
12805 be DW_FORM_data2 encoding, and pick the more efficient one. */
12806 else if (ndirs + idx_offset <= 65536)
12808 unsigned HOST_WIDE_INT sum = 1;
12809 for (i = 0; i < numfiles; i++)
12811 int file_idx = backmap[i];
12812 int dir_idx = dirs[files[file_idx].dir_idx].dir_idx;
12813 sum += size_of_uleb128 (dir_idx);
12815 if (sum >= HOST_WIDE_INT_UC (2) * (numfiles + 1))
12816 idx_form = DW_FORM_data2;
12818 #ifdef VMS_DEBUGGING_INFO
12819 dw2_asm_output_data (1, 4, "File name entry format count");
12820 #else
12821 dw2_asm_output_data (1, 2, "File name entry format count");
12822 #endif
12823 dw2_asm_output_data_uleb128 (DW_LNCT_path, "DW_LNCT_path");
12824 dw2_asm_output_data_uleb128 (str_form, "%s",
12825 get_DW_FORM_name (str_form));
12826 dw2_asm_output_data_uleb128 (DW_LNCT_directory_index,
12827 "DW_LNCT_directory_index");
12828 dw2_asm_output_data_uleb128 (idx_form, "%s",
12829 get_DW_FORM_name (idx_form));
12830 #ifdef VMS_DEBUGGING_INFO
12831 dw2_asm_output_data_uleb128 (DW_LNCT_timestamp, "DW_LNCT_timestamp");
12832 dw2_asm_output_data_uleb128 (DW_FORM_udata, "DW_FORM_udata");
12833 dw2_asm_output_data_uleb128 (DW_LNCT_size, "DW_LNCT_size");
12834 dw2_asm_output_data_uleb128 (DW_FORM_udata, "DW_FORM_udata");
12835 #endif
12836 dw2_asm_output_data_uleb128 (numfiles + 1, "File names count");
12838 output_line_string (str_form, filename0, "File Entry", 0);
12840 /* Include directory index. */
12841 if (idx_form != DW_FORM_udata)
12842 dw2_asm_output_data (idx_form == DW_FORM_data1 ? 1 : 2,
12843 0, NULL);
12844 else
12845 dw2_asm_output_data_uleb128 (0, NULL);
12847 #ifdef VMS_DEBUGGING_INFO
12848 dw2_asm_output_data_uleb128 (0, NULL);
12849 dw2_asm_output_data_uleb128 (0, NULL);
12850 #endif
12853 /* Now write all the file names. */
12854 for (i = 0; i < numfiles; i++)
12856 int file_idx = backmap[i];
12857 int dir_idx = dirs[files[file_idx].dir_idx].dir_idx;
12859 #ifdef VMS_DEBUGGING_INFO
12860 #define MAX_VMS_VERSION_LEN 6 /* ";32768" */
12862 /* Setting these fields can lead to debugger miscomparisons,
12863 but VMS Debug requires them to be set correctly. */
12865 int ver;
12866 long long cdt;
12867 long siz;
12868 int maxfilelen = (strlen (files[file_idx].path)
12869 + dirs[dir_idx].length
12870 + MAX_VMS_VERSION_LEN + 1);
12871 char *filebuf = XALLOCAVEC (char, maxfilelen);
12873 vms_file_stats_name (files[file_idx].path, 0, 0, 0, &ver);
12874 snprintf (filebuf, maxfilelen, "%s;%d",
12875 files[file_idx].path + dirs[dir_idx].length, ver);
12877 output_line_string (str_form, filebuf, "File Entry", (unsigned) i + 1);
12879 /* Include directory index. */
12880 if (dwarf_version >= 5 && idx_form != DW_FORM_udata)
12881 dw2_asm_output_data (idx_form == DW_FORM_data1 ? 1 : 2,
12882 dir_idx + idx_offset, NULL);
12883 else
12884 dw2_asm_output_data_uleb128 (dir_idx + idx_offset, NULL);
12886 /* Modification time. */
12887 dw2_asm_output_data_uleb128 ((vms_file_stats_name (files[file_idx].path,
12888 &cdt, 0, 0, 0) == 0)
12889 ? cdt : 0, NULL);
12891 /* File length in bytes. */
12892 dw2_asm_output_data_uleb128 ((vms_file_stats_name (files[file_idx].path,
12893 0, &siz, 0, 0) == 0)
12894 ? siz : 0, NULL);
12895 #else
12896 output_line_string (str_form,
12897 files[file_idx].path + dirs[dir_idx].length,
12898 "File Entry", (unsigned) i + 1);
12900 /* Include directory index. */
12901 if (dwarf_version >= 5 && idx_form != DW_FORM_udata)
12902 dw2_asm_output_data (idx_form == DW_FORM_data1 ? 1 : 2,
12903 dir_idx + idx_offset, NULL);
12904 else
12905 dw2_asm_output_data_uleb128 (dir_idx + idx_offset, NULL);
12907 if (dwarf_version >= 5)
12908 continue;
12910 /* Modification time. */
12911 dw2_asm_output_data_uleb128 (0, NULL);
12913 /* File length in bytes. */
12914 dw2_asm_output_data_uleb128 (0, NULL);
12915 #endif /* VMS_DEBUGGING_INFO */
12918 if (dwarf_version < 5)
12919 dw2_asm_output_data (1, 0, "End file name table");
12923 /* Output one line number table into the .debug_line section. */
12925 static void
12926 output_one_line_info_table (dw_line_info_table *table)
12928 char line_label[MAX_ARTIFICIAL_LABEL_BYTES];
12929 unsigned int current_line = 1;
12930 bool current_is_stmt = DWARF_LINE_DEFAULT_IS_STMT_START;
12931 dw_line_info_entry *ent, *prev_addr = NULL;
12932 size_t i;
12933 unsigned int view;
12935 view = 0;
12937 FOR_EACH_VEC_SAFE_ELT (table->entries, i, ent)
12939 switch (ent->opcode)
12941 case LI_set_address:
12942 /* ??? Unfortunately, we have little choice here currently, and
12943 must always use the most general form. GCC does not know the
12944 address delta itself, so we can't use DW_LNS_advance_pc. Many
12945 ports do have length attributes which will give an upper bound
12946 on the address range. We could perhaps use length attributes
12947 to determine when it is safe to use DW_LNS_fixed_advance_pc. */
12948 ASM_GENERATE_INTERNAL_LABEL (line_label, LINE_CODE_LABEL, ent->val);
12950 view = 0;
12952 /* This can handle any delta. This takes
12953 4+DWARF2_ADDR_SIZE bytes. */
12954 dw2_asm_output_data (1, 0, "set address %s%s", line_label,
12955 debug_variable_location_views
12956 ? ", reset view to 0" : "");
12957 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
12958 dw2_asm_output_data (1, DW_LNE_set_address, NULL);
12959 dw2_asm_output_addr (DWARF2_ADDR_SIZE, line_label, NULL);
12961 prev_addr = ent;
12962 break;
12964 case LI_adv_address:
12966 ASM_GENERATE_INTERNAL_LABEL (line_label, LINE_CODE_LABEL, ent->val);
12967 char prev_label[MAX_ARTIFICIAL_LABEL_BYTES];
12968 ASM_GENERATE_INTERNAL_LABEL (prev_label, LINE_CODE_LABEL, prev_addr->val);
12970 view++;
12972 dw2_asm_output_data (1, DW_LNS_fixed_advance_pc, "fixed advance PC, increment view to %i", view);
12973 dw2_asm_output_delta (2, line_label, prev_label,
12974 "from %s to %s", prev_label, line_label);
12976 prev_addr = ent;
12977 break;
12980 case LI_set_line:
12981 if (ent->val == current_line)
12983 /* We still need to start a new row, so output a copy insn. */
12984 dw2_asm_output_data (1, DW_LNS_copy,
12985 "copy line %u", current_line);
12987 else
12989 int line_offset = ent->val - current_line;
12990 int line_delta = line_offset - DWARF_LINE_BASE;
12992 current_line = ent->val;
12993 if (line_delta >= 0 && line_delta < (DWARF_LINE_RANGE - 1))
12995 /* This can handle deltas from -10 to 234, using the current
12996 definitions of DWARF_LINE_BASE and DWARF_LINE_RANGE.
12997 This takes 1 byte. */
12998 dw2_asm_output_data (1, DWARF_LINE_OPCODE_BASE + line_delta,
12999 "line %u", current_line);
13001 else
13003 /* This can handle any delta. This takes at least 4 bytes,
13004 depending on the value being encoded. */
13005 dw2_asm_output_data (1, DW_LNS_advance_line,
13006 "advance to line %u", current_line);
13007 dw2_asm_output_data_sleb128 (line_offset, NULL);
13008 dw2_asm_output_data (1, DW_LNS_copy, NULL);
13011 break;
13013 case LI_set_file:
13014 dw2_asm_output_data (1, DW_LNS_set_file, "set file %u", ent->val);
13015 dw2_asm_output_data_uleb128 (ent->val, "%u", ent->val);
13016 break;
13018 case LI_set_column:
13019 dw2_asm_output_data (1, DW_LNS_set_column, "column %u", ent->val);
13020 dw2_asm_output_data_uleb128 (ent->val, "%u", ent->val);
13021 break;
13023 case LI_negate_stmt:
13024 current_is_stmt = !current_is_stmt;
13025 dw2_asm_output_data (1, DW_LNS_negate_stmt,
13026 "is_stmt %d", current_is_stmt);
13027 break;
13029 case LI_set_prologue_end:
13030 dw2_asm_output_data (1, DW_LNS_set_prologue_end,
13031 "set prologue end");
13032 break;
13034 case LI_set_epilogue_begin:
13035 dw2_asm_output_data (1, DW_LNS_set_epilogue_begin,
13036 "set epilogue begin");
13037 break;
13039 case LI_set_discriminator:
13040 dw2_asm_output_data (1, 0, "discriminator %u", ent->val);
13041 dw2_asm_output_data_uleb128 (1 + size_of_uleb128 (ent->val), NULL);
13042 dw2_asm_output_data (1, DW_LNE_set_discriminator, NULL);
13043 dw2_asm_output_data_uleb128 (ent->val, NULL);
13044 break;
13048 /* Emit debug info for the address of the end of the table. */
13049 dw2_asm_output_data (1, 0, "set address %s", table->end_label);
13050 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
13051 dw2_asm_output_data (1, DW_LNE_set_address, NULL);
13052 dw2_asm_output_addr (DWARF2_ADDR_SIZE, table->end_label, NULL);
13054 dw2_asm_output_data (1, 0, "end sequence");
13055 dw2_asm_output_data_uleb128 (1, NULL);
13056 dw2_asm_output_data (1, DW_LNE_end_sequence, NULL);
13059 static unsigned int output_line_info_generation;
13061 /* Output the source line number correspondence information. This
13062 information goes into the .debug_line section. */
13064 static void
13065 output_line_info (bool prologue_only)
13067 char l1[MAX_ARTIFICIAL_LABEL_BYTES], l2[MAX_ARTIFICIAL_LABEL_BYTES];
13068 char p1[MAX_ARTIFICIAL_LABEL_BYTES], p2[MAX_ARTIFICIAL_LABEL_BYTES];
13069 bool saw_one = false;
13070 int opc;
13072 ASM_GENERATE_INTERNAL_LABEL (l1, LINE_NUMBER_BEGIN_LABEL,
13073 output_line_info_generation);
13074 ASM_GENERATE_INTERNAL_LABEL (l2, LINE_NUMBER_END_LABEL,
13075 output_line_info_generation);
13076 ASM_GENERATE_INTERNAL_LABEL (p1, LN_PROLOG_AS_LABEL,
13077 output_line_info_generation);
13078 ASM_GENERATE_INTERNAL_LABEL (p2, LN_PROLOG_END_LABEL,
13079 output_line_info_generation++);
13081 if (!XCOFF_DEBUGGING_INFO)
13083 if (DWARF_INITIAL_LENGTH_SIZE - dwarf_offset_size == 4)
13084 dw2_asm_output_data (4, 0xffffffff,
13085 "Initial length escape value indicating 64-bit DWARF extension");
13086 dw2_asm_output_delta (dwarf_offset_size, l2, l1,
13087 "Length of Source Line Info");
13090 ASM_OUTPUT_LABEL (asm_out_file, l1);
13092 output_dwarf_version ();
13093 if (dwarf_version >= 5)
13095 dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Address Size");
13096 dw2_asm_output_data (1, 0, "Segment Size");
13098 dw2_asm_output_delta (dwarf_offset_size, p2, p1, "Prolog Length");
13099 ASM_OUTPUT_LABEL (asm_out_file, p1);
13101 /* Define the architecture-dependent minimum instruction length (in bytes).
13102 In this implementation of DWARF, this field is used for information
13103 purposes only. Since GCC generates assembly language, we have no
13104 a priori knowledge of how many instruction bytes are generated for each
13105 source line, and therefore can use only the DW_LNE_set_address and
13106 DW_LNS_fixed_advance_pc line information commands. Accordingly, we fix
13107 this as '1', which is "correct enough" for all architectures,
13108 and don't let the target override. */
13109 dw2_asm_output_data (1, 1, "Minimum Instruction Length");
13111 if (dwarf_version >= 4)
13112 dw2_asm_output_data (1, DWARF_LINE_DEFAULT_MAX_OPS_PER_INSN,
13113 "Maximum Operations Per Instruction");
13114 dw2_asm_output_data (1, DWARF_LINE_DEFAULT_IS_STMT_START,
13115 "Default is_stmt_start flag");
13116 dw2_asm_output_data (1, DWARF_LINE_BASE,
13117 "Line Base Value (Special Opcodes)");
13118 dw2_asm_output_data (1, DWARF_LINE_RANGE,
13119 "Line Range Value (Special Opcodes)");
13120 dw2_asm_output_data (1, DWARF_LINE_OPCODE_BASE,
13121 "Special Opcode Base");
13123 for (opc = 1; opc < DWARF_LINE_OPCODE_BASE; opc++)
13125 int n_op_args;
13126 switch (opc)
13128 case DW_LNS_advance_pc:
13129 case DW_LNS_advance_line:
13130 case DW_LNS_set_file:
13131 case DW_LNS_set_column:
13132 case DW_LNS_fixed_advance_pc:
13133 case DW_LNS_set_isa:
13134 n_op_args = 1;
13135 break;
13136 default:
13137 n_op_args = 0;
13138 break;
13141 dw2_asm_output_data (1, n_op_args, "opcode: %#x has %d args",
13142 opc, n_op_args);
13145 /* Write out the information about the files we use. */
13146 output_file_names ();
13147 ASM_OUTPUT_LABEL (asm_out_file, p2);
13148 if (prologue_only)
13150 /* Output the marker for the end of the line number info. */
13151 ASM_OUTPUT_LABEL (asm_out_file, l2);
13152 return;
13155 if (separate_line_info)
13157 dw_line_info_table *table;
13158 size_t i;
13160 FOR_EACH_VEC_ELT (*separate_line_info, i, table)
13161 if (table->in_use)
13163 output_one_line_info_table (table);
13164 saw_one = true;
13167 if (cold_text_section_line_info && cold_text_section_line_info->in_use)
13169 output_one_line_info_table (cold_text_section_line_info);
13170 saw_one = true;
13173 /* ??? Some Darwin linkers crash on a .debug_line section with no
13174 sequences. Further, merely a DW_LNE_end_sequence entry is not
13175 sufficient -- the address column must also be initialized.
13176 Make sure to output at least one set_address/end_sequence pair,
13177 choosing .text since that section is always present. */
13178 if (text_section_line_info->in_use || !saw_one)
13179 output_one_line_info_table (text_section_line_info);
13181 /* Output the marker for the end of the line number info. */
13182 ASM_OUTPUT_LABEL (asm_out_file, l2);
13185 /* Return true if DW_AT_endianity should be emitted according to REVERSE. */
13187 static inline bool
13188 need_endianity_attribute_p (bool reverse)
13190 return reverse && (dwarf_version >= 3 || !dwarf_strict);
13193 /* Given a pointer to a tree node for some base type, return a pointer to
13194 a DIE that describes the given type. REVERSE is true if the type is
13195 to be interpreted in the reverse storage order wrt the target order.
13197 This routine must only be called for GCC type nodes that correspond to
13198 Dwarf base (fundamental) types. */
13200 dw_die_ref
13201 base_type_die (tree type, bool reverse)
13203 dw_die_ref base_type_result;
13204 enum dwarf_type encoding;
13205 bool fpt_used = false;
13206 struct fixed_point_type_info fpt_info;
13207 tree type_bias = NULL_TREE;
13209 /* If this is a subtype that should not be emitted as a subrange type,
13210 use the base type. See subrange_type_for_debug_p. */
13211 if (TREE_CODE (type) == INTEGER_TYPE && TREE_TYPE (type) != NULL_TREE)
13212 type = TREE_TYPE (type);
13214 switch (TREE_CODE (type))
13216 case INTEGER_TYPE:
13217 if ((dwarf_version >= 4 || !dwarf_strict)
13218 && TYPE_NAME (type)
13219 && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
13220 && DECL_IS_UNDECLARED_BUILTIN (TYPE_NAME (type))
13221 && DECL_NAME (TYPE_NAME (type)))
13223 const char *name = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type)));
13224 if (strcmp (name, "char16_t") == 0
13225 || strcmp (name, "char8_t") == 0
13226 || strcmp (name, "char32_t") == 0)
13228 encoding = DW_ATE_UTF;
13229 break;
13232 if ((dwarf_version >= 3 || !dwarf_strict)
13233 && lang_hooks.types.get_fixed_point_type_info)
13235 memset (&fpt_info, 0, sizeof (fpt_info));
13236 if (lang_hooks.types.get_fixed_point_type_info (type, &fpt_info))
13238 fpt_used = true;
13239 encoding = ((TYPE_UNSIGNED (type))
13240 ? DW_ATE_unsigned_fixed
13241 : DW_ATE_signed_fixed);
13242 break;
13245 if (TYPE_STRING_FLAG (type))
13247 if ((dwarf_version >= 4 || !dwarf_strict)
13248 && is_rust ()
13249 && int_size_in_bytes (type) == 4)
13250 encoding = DW_ATE_UTF;
13251 else if (TYPE_UNSIGNED (type))
13252 encoding = DW_ATE_unsigned_char;
13253 else
13254 encoding = DW_ATE_signed_char;
13256 else if (TYPE_UNSIGNED (type))
13257 encoding = DW_ATE_unsigned;
13258 else
13259 encoding = DW_ATE_signed;
13261 if (!dwarf_strict
13262 && lang_hooks.types.get_type_bias)
13263 type_bias = lang_hooks.types.get_type_bias (type);
13264 break;
13266 case REAL_TYPE:
13267 if (DECIMAL_FLOAT_MODE_P (TYPE_MODE (type)))
13269 if (dwarf_version >= 3 || !dwarf_strict)
13270 encoding = DW_ATE_decimal_float;
13271 else
13272 encoding = DW_ATE_lo_user;
13274 else
13275 encoding = DW_ATE_float;
13276 break;
13278 case FIXED_POINT_TYPE:
13279 if (!(dwarf_version >= 3 || !dwarf_strict))
13280 encoding = DW_ATE_lo_user;
13281 else if (TYPE_UNSIGNED (type))
13282 encoding = DW_ATE_unsigned_fixed;
13283 else
13284 encoding = DW_ATE_signed_fixed;
13285 break;
13287 /* Dwarf2 doesn't know anything about complex ints, so use
13288 a user defined type for it. */
13289 case COMPLEX_TYPE:
13290 if (SCALAR_FLOAT_TYPE_P (TREE_TYPE (type)))
13291 encoding = DW_ATE_complex_float;
13292 else
13293 encoding = DW_ATE_lo_user;
13294 break;
13296 case BOOLEAN_TYPE:
13297 /* GNU FORTRAN/Ada/C++ BOOLEAN type. */
13298 encoding = DW_ATE_boolean;
13299 break;
13301 case BITINT_TYPE:
13302 /* C23 _BitInt(N). */
13303 if (TYPE_UNSIGNED (type))
13304 encoding = DW_ATE_unsigned;
13305 else
13306 encoding = DW_ATE_signed;
13307 break;
13309 default:
13310 /* No other TREE_CODEs are Dwarf fundamental types. */
13311 gcc_unreachable ();
13314 base_type_result = new_die_raw (DW_TAG_base_type);
13316 add_AT_unsigned (base_type_result, DW_AT_byte_size,
13317 int_size_in_bytes (type));
13318 add_AT_unsigned (base_type_result, DW_AT_encoding, encoding);
13319 if (TREE_CODE (type) == BITINT_TYPE)
13320 add_AT_unsigned (base_type_result, DW_AT_bit_size, TYPE_PRECISION (type));
13322 if (need_endianity_attribute_p (reverse))
13323 add_AT_unsigned (base_type_result, DW_AT_endianity,
13324 BYTES_BIG_ENDIAN ? DW_END_little : DW_END_big);
13326 add_alignment_attribute (base_type_result, type);
13328 if (fpt_used)
13330 switch (fpt_info.scale_factor_kind)
13332 case fixed_point_scale_factor_binary:
13333 add_AT_int (base_type_result, DW_AT_binary_scale,
13334 fpt_info.scale_factor.binary);
13335 break;
13337 case fixed_point_scale_factor_decimal:
13338 add_AT_int (base_type_result, DW_AT_decimal_scale,
13339 fpt_info.scale_factor.decimal);
13340 break;
13342 case fixed_point_scale_factor_arbitrary:
13343 /* Arbitrary scale factors cannot be described in standard DWARF. */
13344 if (!dwarf_strict)
13346 /* Describe the scale factor as a rational constant. */
13347 const dw_die_ref scale_factor
13348 = new_die (DW_TAG_constant, comp_unit_die (), type);
13350 add_scalar_info (scale_factor, DW_AT_GNU_numerator,
13351 fpt_info.scale_factor.arbitrary.numerator,
13352 dw_scalar_form_constant, NULL);
13353 add_scalar_info (scale_factor, DW_AT_GNU_denominator,
13354 fpt_info.scale_factor.arbitrary.denominator,
13355 dw_scalar_form_constant, NULL);
13357 add_AT_die_ref (base_type_result, DW_AT_small, scale_factor);
13359 break;
13361 default:
13362 gcc_unreachable ();
13366 if (type_bias)
13367 add_scalar_info (base_type_result, DW_AT_GNU_bias, type_bias,
13368 dw_scalar_form_constant
13369 | dw_scalar_form_exprloc
13370 | dw_scalar_form_reference,
13371 NULL);
13373 return base_type_result;
13376 /* A C++ function with deduced return type can have a TEMPLATE_TYPE_PARM
13377 named 'auto' in its type: return true for it, false otherwise. */
13379 static inline bool
13380 is_cxx_auto (tree type)
13382 if (is_cxx ())
13384 tree name = TYPE_IDENTIFIER (type);
13385 if (name == get_identifier ("auto")
13386 || name == get_identifier ("decltype(auto)"))
13387 return true;
13389 return false;
13392 /* Given a pointer to an arbitrary ..._TYPE tree node, return true if the
13393 given input type is a Dwarf "fundamental" type. Otherwise return null. */
13395 static inline bool
13396 is_base_type (tree type)
13398 switch (TREE_CODE (type))
13400 case INTEGER_TYPE:
13401 case REAL_TYPE:
13402 case FIXED_POINT_TYPE:
13403 case COMPLEX_TYPE:
13404 case BOOLEAN_TYPE:
13405 case BITINT_TYPE:
13406 return true;
13408 case VOID_TYPE:
13409 case OPAQUE_TYPE:
13410 case ARRAY_TYPE:
13411 case RECORD_TYPE:
13412 case UNION_TYPE:
13413 case QUAL_UNION_TYPE:
13414 case ENUMERAL_TYPE:
13415 case FUNCTION_TYPE:
13416 case METHOD_TYPE:
13417 case POINTER_TYPE:
13418 case REFERENCE_TYPE:
13419 case NULLPTR_TYPE:
13420 case OFFSET_TYPE:
13421 case LANG_TYPE:
13422 case VECTOR_TYPE:
13423 return false;
13425 default:
13426 if (is_cxx_auto (type))
13427 return false;
13428 gcc_unreachable ();
13432 /* Given a pointer to a tree node, assumed to be some kind of a ..._TYPE
13433 node, return the size in bits for the type if it is a constant, or else
13434 return the alignment for the type if the type's size is not constant, or
13435 else return BITS_PER_WORD if the type actually turns out to be an
13436 ERROR_MARK node. */
13438 static inline unsigned HOST_WIDE_INT
13439 simple_type_size_in_bits (const_tree type)
13441 if (TREE_CODE (type) == ERROR_MARK)
13442 return BITS_PER_WORD;
13443 else if (TYPE_SIZE (type) == NULL_TREE)
13444 return 0;
13445 else if (tree_fits_uhwi_p (TYPE_SIZE (type)))
13446 return tree_to_uhwi (TYPE_SIZE (type));
13447 else
13448 return TYPE_ALIGN (type);
13451 /* Similarly, but return an offset_int instead of UHWI. */
13453 static inline offset_int
13454 offset_int_type_size_in_bits (const_tree type)
13456 if (TREE_CODE (type) == ERROR_MARK)
13457 return BITS_PER_WORD;
13458 else if (TYPE_SIZE (type) == NULL_TREE)
13459 return 0;
13460 else if (TREE_CODE (TYPE_SIZE (type)) == INTEGER_CST)
13461 return wi::to_offset (TYPE_SIZE (type));
13462 else
13463 return TYPE_ALIGN (type);
13466 /* Given a pointer to a tree node for a subrange type, return a pointer
13467 to a DIE that describes the given type. */
13469 static dw_die_ref
13470 subrange_type_die (tree type, tree low, tree high, tree bias,
13471 dw_die_ref context_die)
13473 dw_die_ref subrange_die;
13474 const HOST_WIDE_INT size_in_bytes = int_size_in_bytes (type);
13476 if (context_die == NULL)
13477 context_die = comp_unit_die ();
13479 subrange_die = new_die (DW_TAG_subrange_type, context_die, type);
13481 if (int_size_in_bytes (TREE_TYPE (type)) != size_in_bytes)
13483 /* The size of the subrange type and its base type do not match,
13484 so we need to generate a size attribute for the subrange type. */
13485 add_AT_unsigned (subrange_die, DW_AT_byte_size, size_in_bytes);
13488 add_alignment_attribute (subrange_die, type);
13490 if (low)
13491 add_bound_info (subrange_die, DW_AT_lower_bound, low, NULL);
13492 if (high)
13493 add_bound_info (subrange_die, DW_AT_upper_bound, high, NULL);
13494 if (bias && !dwarf_strict)
13495 add_scalar_info (subrange_die, DW_AT_GNU_bias, bias,
13496 dw_scalar_form_constant
13497 | dw_scalar_form_exprloc
13498 | dw_scalar_form_reference,
13499 NULL);
13501 return subrange_die;
13504 /* Returns the (const and/or volatile) cv_qualifiers associated with
13505 the decl node. This will normally be augmented with the
13506 cv_qualifiers of the underlying type in add_type_attribute. */
13508 static int
13509 decl_quals (const_tree decl)
13511 return ((TREE_READONLY (decl)
13512 /* The C++ front-end correctly marks reference-typed
13513 variables as readonly, but from a language (and debug
13514 info) standpoint they are not const-qualified. */
13515 && TREE_CODE (TREE_TYPE (decl)) != REFERENCE_TYPE
13516 ? TYPE_QUAL_CONST : TYPE_UNQUALIFIED)
13517 | (TREE_THIS_VOLATILE (decl)
13518 ? TYPE_QUAL_VOLATILE : TYPE_UNQUALIFIED));
13521 /* Determine the TYPE whose qualifiers match the largest strict subset
13522 of the given TYPE_QUALS, and return its qualifiers. Ignore all
13523 qualifiers outside QUAL_MASK. */
13525 static int
13526 get_nearest_type_subqualifiers (tree type, int type_quals, int qual_mask)
13528 tree t;
13529 int best_rank = 0, best_qual = 0, max_rank;
13531 type_quals &= qual_mask;
13532 max_rank = popcount_hwi (type_quals) - 1;
13534 for (t = TYPE_MAIN_VARIANT (type); t && best_rank < max_rank;
13535 t = TYPE_NEXT_VARIANT (t))
13537 int q = TYPE_QUALS (t) & qual_mask;
13539 if ((q & type_quals) == q && q != type_quals
13540 && check_base_type (t, type))
13542 int rank = popcount_hwi (q);
13544 if (rank > best_rank)
13546 best_rank = rank;
13547 best_qual = q;
13552 return best_qual;
13555 struct dwarf_qual_info_t { int q; enum dwarf_tag t; };
13556 static const dwarf_qual_info_t dwarf_qual_info[] =
13558 { TYPE_QUAL_CONST, DW_TAG_const_type },
13559 { TYPE_QUAL_VOLATILE, DW_TAG_volatile_type },
13560 { TYPE_QUAL_RESTRICT, DW_TAG_restrict_type },
13561 { TYPE_QUAL_ATOMIC, DW_TAG_atomic_type }
13563 static const unsigned int dwarf_qual_info_size = ARRAY_SIZE (dwarf_qual_info);
13565 /* If DIE is a qualified DIE of some base DIE with the same parent,
13566 return the base DIE, otherwise return NULL. Set MASK to the
13567 qualifiers added compared to the returned DIE. */
13569 static dw_die_ref
13570 qualified_die_p (dw_die_ref die, int *mask, unsigned int depth)
13572 unsigned int i;
13573 for (i = 0; i < dwarf_qual_info_size; i++)
13574 if (die->die_tag == dwarf_qual_info[i].t)
13575 break;
13576 if (i == dwarf_qual_info_size)
13577 return NULL;
13578 if (vec_safe_length (die->die_attr) != 1)
13579 return NULL;
13580 dw_die_ref type = get_AT_ref (die, DW_AT_type);
13581 if (type == NULL || type->die_parent != die->die_parent)
13582 return NULL;
13583 *mask |= dwarf_qual_info[i].q;
13584 if (depth)
13586 dw_die_ref ret = qualified_die_p (type, mask, depth - 1);
13587 if (ret)
13588 return ret;
13590 return type;
13593 /* If TYPE is long double or complex long double that
13594 should be emitted as artificial typedef to _Float128 or
13595 complex _Float128, return the type it should be emitted as.
13596 This is done in case the target already supports 16-byte
13597 composite floating point type (ibm_extended_format). */
13599 static tree
13600 long_double_as_float128 (tree type)
13602 if (type != long_double_type_node
13603 && type != complex_long_double_type_node)
13604 return NULL_TREE;
13606 machine_mode mode, fmode;
13607 if (TREE_CODE (type) == COMPLEX_TYPE)
13608 mode = TYPE_MODE (TREE_TYPE (type));
13609 else
13610 mode = TYPE_MODE (type);
13611 if (known_eq (GET_MODE_SIZE (mode), 16) && !MODE_COMPOSITE_P (mode))
13612 FOR_EACH_MODE_IN_CLASS (fmode, MODE_FLOAT)
13613 if (known_eq (GET_MODE_SIZE (fmode), 16)
13614 && MODE_COMPOSITE_P (fmode))
13616 if (type == long_double_type_node)
13618 if (float128_type_node
13619 && (TYPE_MODE (float128_type_node)
13620 == TYPE_MODE (type)))
13621 return float128_type_node;
13622 return NULL_TREE;
13624 for (int i = 0; i < NUM_FLOATN_NX_TYPES; i++)
13625 if (COMPLEX_FLOATN_NX_TYPE_NODE (i) != NULL_TREE
13626 && (TYPE_MODE (COMPLEX_FLOATN_NX_TYPE_NODE (i))
13627 == TYPE_MODE (type)))
13628 return COMPLEX_FLOATN_NX_TYPE_NODE (i);
13631 return NULL_TREE;
13634 /* Given a pointer to an arbitrary ..._TYPE tree node, return a debugging
13635 entry that chains the modifiers specified by CV_QUALS in front of the
13636 given type. REVERSE is true if the type is to be interpreted in the
13637 reverse storage order wrt the target order. */
13639 static dw_die_ref
13640 modified_type_die (tree type, int cv_quals, bool reverse,
13641 dw_die_ref context_die)
13643 enum tree_code code = TREE_CODE (type);
13644 dw_die_ref mod_type_die;
13645 dw_die_ref sub_die = NULL;
13646 tree item_type = NULL;
13647 tree qualified_type;
13648 tree name, low, high;
13649 dw_die_ref mod_scope;
13650 struct array_descr_info info;
13651 /* Only these cv-qualifiers are currently handled. */
13652 const int cv_qual_mask = (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE
13653 | TYPE_QUAL_RESTRICT | TYPE_QUAL_ATOMIC |
13654 ENCODE_QUAL_ADDR_SPACE(~0U));
13655 const bool reverse_base_type
13656 = need_endianity_attribute_p (reverse) && is_base_type (type);
13658 if (code == ERROR_MARK)
13659 return NULL;
13661 if (lang_hooks.types.get_debug_type)
13663 tree debug_type = lang_hooks.types.get_debug_type (type);
13665 if (debug_type != NULL_TREE && debug_type != type)
13666 return modified_type_die (debug_type, cv_quals, reverse, context_die);
13669 cv_quals &= cv_qual_mask;
13671 /* Don't emit DW_TAG_restrict_type for DWARFv2, since it is a type
13672 tag modifier (and not an attribute) old consumers won't be able
13673 to handle it. */
13674 if (dwarf_version < 3)
13675 cv_quals &= ~TYPE_QUAL_RESTRICT;
13677 /* Likewise for DW_TAG_atomic_type for DWARFv5. */
13678 if (dwarf_version < 5)
13679 cv_quals &= ~TYPE_QUAL_ATOMIC;
13681 /* See if we already have the appropriately qualified variant of
13682 this type. */
13683 qualified_type = get_qualified_type (type, cv_quals);
13685 if (qualified_type == sizetype)
13687 /* Try not to expose the internal sizetype type's name. */
13688 if (TYPE_NAME (qualified_type)
13689 && TREE_CODE (TYPE_NAME (qualified_type)) == TYPE_DECL)
13691 tree t = TREE_TYPE (TYPE_NAME (qualified_type));
13693 gcc_checking_assert (TREE_CODE (t) == INTEGER_TYPE
13694 && (TYPE_PRECISION (t)
13695 == TYPE_PRECISION (qualified_type))
13696 && (TYPE_UNSIGNED (t)
13697 == TYPE_UNSIGNED (qualified_type)));
13698 qualified_type = t;
13700 else if (qualified_type == sizetype
13701 && TREE_CODE (sizetype) == TREE_CODE (size_type_node)
13702 && TYPE_PRECISION (sizetype) == TYPE_PRECISION (size_type_node)
13703 && TYPE_UNSIGNED (sizetype) == TYPE_UNSIGNED (size_type_node))
13704 qualified_type = size_type_node;
13705 if (type == sizetype)
13706 type = qualified_type;
13709 /* If we do, then we can just use its DIE, if it exists. */
13710 if (qualified_type)
13712 mod_type_die = lookup_type_die (qualified_type);
13714 /* DW_AT_endianity doesn't come from a qualifier on the type, so it is
13715 dealt with specially: the DIE with the attribute, if it exists, is
13716 placed immediately after the regular DIE for the same base type. */
13717 if (mod_type_die
13718 && (!reverse_base_type
13719 || ((mod_type_die = mod_type_die->die_sib) != NULL
13720 && get_AT_unsigned (mod_type_die, DW_AT_endianity))))
13721 return mod_type_die;
13724 name = qualified_type ? TYPE_NAME (qualified_type) : NULL;
13726 /* Handle C typedef types. */
13727 if (name
13728 && TREE_CODE (name) == TYPE_DECL
13729 && DECL_ORIGINAL_TYPE (name)
13730 && !DECL_ARTIFICIAL (name))
13732 tree dtype = TREE_TYPE (name);
13734 /* Skip the typedef for base types with DW_AT_endianity, no big deal. */
13735 if (qualified_type == dtype && !reverse_base_type)
13737 tree origin = decl_ultimate_origin (name);
13739 /* Typedef variants that have an abstract origin don't get their own
13740 type DIE (see gen_typedef_die), so fall back on the ultimate
13741 abstract origin instead. */
13742 if (origin != NULL && origin != name)
13743 return modified_type_die (TREE_TYPE (origin), cv_quals, reverse,
13744 context_die);
13746 /* For a named type, use the typedef. */
13747 gen_type_die (qualified_type, context_die);
13748 return lookup_type_die (qualified_type);
13750 else
13752 int dquals = TYPE_QUALS_NO_ADDR_SPACE (dtype);
13753 dquals &= cv_qual_mask;
13754 if ((dquals & ~cv_quals) != TYPE_UNQUALIFIED
13755 || (cv_quals == dquals && DECL_ORIGINAL_TYPE (name) != type))
13756 /* cv-unqualified version of named type. Just use
13757 the unnamed type to which it refers. */
13758 return modified_type_die (DECL_ORIGINAL_TYPE (name), cv_quals,
13759 reverse, context_die);
13760 /* Else cv-qualified version of named type; fall through. */
13764 mod_scope = scope_die_for (type, context_die);
13766 if (cv_quals)
13768 int sub_quals = 0, first_quals = 0;
13769 unsigned i;
13770 dw_die_ref first = NULL, last = NULL;
13772 /* Determine a lesser qualified type that most closely matches
13773 this one. Then generate DW_TAG_* entries for the remaining
13774 qualifiers. */
13775 sub_quals = get_nearest_type_subqualifiers (type, cv_quals,
13776 cv_qual_mask);
13777 if (sub_quals && use_debug_types)
13779 bool needed = false;
13780 /* If emitting type units, make sure the order of qualifiers
13781 is canonical. Thus, start from unqualified type if
13782 an earlier qualifier is missing in sub_quals, but some later
13783 one is present there. */
13784 for (i = 0; i < dwarf_qual_info_size; i++)
13785 if (dwarf_qual_info[i].q & cv_quals & ~sub_quals)
13786 needed = true;
13787 else if (needed && (dwarf_qual_info[i].q & cv_quals))
13789 sub_quals = 0;
13790 break;
13793 mod_type_die = modified_type_die (type, sub_quals, reverse, context_die);
13794 if (mod_scope && mod_type_die && mod_type_die->die_parent == mod_scope)
13796 /* As not all intermediate qualified DIEs have corresponding
13797 tree types, ensure that qualified DIEs in the same scope
13798 as their DW_AT_type are emitted after their DW_AT_type,
13799 only with other qualified DIEs for the same type possibly
13800 in between them. Determine the range of such qualified
13801 DIEs now (first being the base type, last being corresponding
13802 last qualified DIE for it). */
13803 unsigned int count = 0;
13804 first = qualified_die_p (mod_type_die, &first_quals,
13805 dwarf_qual_info_size);
13806 if (first == NULL)
13807 first = mod_type_die;
13808 gcc_assert ((first_quals & ~sub_quals) == 0);
13809 for (count = 0, last = first;
13810 count < (1U << dwarf_qual_info_size);
13811 count++, last = last->die_sib)
13813 int quals = 0;
13814 if (last == mod_scope->die_child)
13815 break;
13816 if (qualified_die_p (last->die_sib, &quals, dwarf_qual_info_size)
13817 != first)
13818 break;
13822 for (i = 0; i < dwarf_qual_info_size; i++)
13823 if (dwarf_qual_info[i].q & cv_quals & ~sub_quals)
13825 dw_die_ref d;
13826 if (first && first != last)
13828 for (d = first->die_sib; ; d = d->die_sib)
13830 int quals = 0;
13831 qualified_die_p (d, &quals, dwarf_qual_info_size);
13832 if (quals == (first_quals | dwarf_qual_info[i].q))
13833 break;
13834 if (d == last)
13836 d = NULL;
13837 break;
13840 if (d)
13842 mod_type_die = d;
13843 continue;
13846 if (first)
13848 d = new_die_raw (dwarf_qual_info[i].t);
13849 add_child_die_after (mod_scope, d, last);
13850 last = d;
13852 else
13853 d = new_die (dwarf_qual_info[i].t, mod_scope, type);
13854 if (mod_type_die)
13855 add_AT_die_ref (d, DW_AT_type, mod_type_die);
13856 mod_type_die = d;
13857 first_quals |= dwarf_qual_info[i].q;
13860 else if (code == POINTER_TYPE || code == REFERENCE_TYPE)
13862 dwarf_tag tag = DW_TAG_pointer_type;
13863 if (code == REFERENCE_TYPE)
13865 if (TYPE_REF_IS_RVALUE (type) && dwarf_version >= 4)
13866 tag = DW_TAG_rvalue_reference_type;
13867 else
13868 tag = DW_TAG_reference_type;
13870 mod_type_die = new_die (tag, mod_scope, type);
13872 add_AT_unsigned (mod_type_die, DW_AT_byte_size,
13873 simple_type_size_in_bits (type) / BITS_PER_UNIT);
13874 add_alignment_attribute (mod_type_die, type);
13875 item_type = TREE_TYPE (type);
13877 addr_space_t as = TYPE_ADDR_SPACE (item_type);
13878 if (!ADDR_SPACE_GENERIC_P (as))
13880 int action = targetm.addr_space.debug (as);
13881 if (action >= 0)
13883 /* Positive values indicate an address_class. */
13884 add_AT_unsigned (mod_type_die, DW_AT_address_class, action);
13886 else
13888 /* Negative values indicate an (inverted) segment base reg. */
13889 dw_loc_descr_ref d
13890 = one_reg_loc_descriptor (~action, VAR_INIT_STATUS_INITIALIZED);
13891 add_AT_loc (mod_type_die, DW_AT_segment, d);
13895 else if (code == ARRAY_TYPE
13896 || (lang_hooks.types.get_array_descr_info
13897 && lang_hooks.types.get_array_descr_info (type, &info)))
13899 gen_type_die (type, context_die);
13900 return lookup_type_die (type);
13902 else if (code == INTEGER_TYPE
13903 && TREE_TYPE (type) != NULL_TREE
13904 && subrange_type_for_debug_p (type, &low, &high))
13906 tree bias = NULL_TREE;
13907 if (lang_hooks.types.get_type_bias)
13908 bias = lang_hooks.types.get_type_bias (type);
13909 mod_type_die = subrange_type_die (type, low, high, bias, context_die);
13910 item_type = TREE_TYPE (type);
13912 else if (is_base_type (type))
13914 /* If a target supports long double as different floating point
13915 modes with the same 16-byte size, use normal DW_TAG_base_type
13916 only for the composite (ibm_extended_real_format) type and
13917 for the other for the time being emit instead a "_Float128"
13918 or "complex _Float128" DW_TAG_base_type and a "long double"
13919 or "complex long double" typedef to it. */
13920 if (tree other_type = long_double_as_float128 (type))
13922 dw_die_ref other_die;
13923 if (TYPE_NAME (other_type))
13924 other_die
13925 = modified_type_die (other_type, TYPE_UNQUALIFIED, reverse,
13926 context_die);
13927 else
13929 other_die = base_type_die (type, reverse);
13930 add_child_die (comp_unit_die (), other_die);
13931 add_name_attribute (other_die,
13932 TREE_CODE (type) == COMPLEX_TYPE
13933 ? "complex _Float128" : "_Float128");
13935 mod_type_die = new_die_raw (DW_TAG_typedef);
13936 add_AT_die_ref (mod_type_die, DW_AT_type, other_die);
13938 else
13939 mod_type_die = base_type_die (type, reverse);
13941 /* The DIE with DW_AT_endianity is placed right after the naked DIE. */
13942 if (reverse_base_type)
13944 dw_die_ref after_die
13945 = modified_type_die (type, cv_quals, false, context_die);
13946 add_child_die_after (comp_unit_die (), mod_type_die, after_die);
13948 else
13949 add_child_die (comp_unit_die (), mod_type_die);
13951 add_pubtype (type, mod_type_die);
13953 else
13955 gen_type_die (type, context_die);
13957 /* We have to get the type_main_variant here (and pass that to the
13958 `lookup_type_die' routine) because the ..._TYPE node we have
13959 might simply be a *copy* of some original type node (where the
13960 copy was created to help us keep track of typedef names) and
13961 that copy might have a different TYPE_UID from the original
13962 ..._TYPE node. */
13963 if (code == FUNCTION_TYPE || code == METHOD_TYPE)
13965 /* For function/method types, can't just use type_main_variant here,
13966 because that can have different ref-qualifiers for C++,
13967 but try to canonicalize. */
13968 tree main = TYPE_MAIN_VARIANT (type);
13969 for (tree t = main; t; t = TYPE_NEXT_VARIANT (t))
13970 if (TYPE_QUALS_NO_ADDR_SPACE (t) == 0
13971 && check_base_type (t, main)
13972 && check_lang_type (t, type))
13973 return lookup_type_die (t);
13974 return lookup_type_die (type);
13976 /* Vectors have the debugging information in the type,
13977 not the main variant. */
13978 else if (code == VECTOR_TYPE)
13979 return lookup_type_die (type);
13980 else
13981 return lookup_type_die (type_main_variant (type));
13984 /* Builtin types don't have a DECL_ORIGINAL_TYPE. For those,
13985 don't output a DW_TAG_typedef, since there isn't one in the
13986 user's program; just attach a DW_AT_name to the type.
13987 Don't attach a DW_AT_name to DW_TAG_const_type or DW_TAG_volatile_type
13988 if the base type already has the same name. */
13989 if (name
13990 && ((TREE_CODE (name) != TYPE_DECL
13991 && (qualified_type == TYPE_MAIN_VARIANT (type)
13992 || (cv_quals == TYPE_UNQUALIFIED)))
13993 || (TREE_CODE (name) == TYPE_DECL
13994 && TREE_TYPE (name) == qualified_type
13995 && DECL_NAME (name))))
13997 if (TREE_CODE (name) == TYPE_DECL)
13998 /* Could just call add_name_and_src_coords_attributes here,
13999 but since this is a builtin type it doesn't have any
14000 useful source coordinates anyway. */
14001 name = DECL_NAME (name);
14002 add_name_attribute (mod_type_die, IDENTIFIER_POINTER (name));
14004 else if (mod_type_die && mod_type_die->die_tag == DW_TAG_base_type)
14006 if (TREE_CODE (type) == BITINT_TYPE)
14008 char name_buf[sizeof ("unsigned _BitInt(2147483647)")];
14009 snprintf (name_buf, sizeof (name_buf),
14010 "%s_BitInt(%d)", TYPE_UNSIGNED (type) ? "unsigned " : "",
14011 TYPE_PRECISION (type));
14012 add_name_attribute (mod_type_die, name_buf);
14014 else
14016 /* This probably indicates a bug. */
14017 name = TYPE_IDENTIFIER (type);
14018 add_name_attribute (mod_type_die,
14019 name
14020 ? IDENTIFIER_POINTER (name) : "__unknown__");
14024 if (qualified_type && !reverse_base_type)
14025 equate_type_number_to_die (qualified_type, mod_type_die);
14027 if (item_type)
14028 /* We must do this after the equate_type_number_to_die call, in case
14029 this is a recursive type. This ensures that the modified_type_die
14030 recursion will terminate even if the type is recursive. Recursive
14031 types are possible in Ada. */
14032 sub_die = modified_type_die (item_type,
14033 TYPE_QUALS_NO_ADDR_SPACE (item_type),
14034 reverse,
14035 context_die);
14037 if (sub_die != NULL)
14038 add_AT_die_ref (mod_type_die, DW_AT_type, sub_die);
14040 add_gnat_descriptive_type_attribute (mod_type_die, type, context_die);
14041 if (TYPE_ARTIFICIAL (type))
14042 add_AT_flag (mod_type_die, DW_AT_artificial, 1);
14044 return mod_type_die;
14047 /* Generate DIEs for the generic parameters of T.
14048 T must be either a generic type or a generic function.
14049 See http://gcc.gnu.org/wiki/TemplateParmsDwarf for more. */
14051 static void
14052 gen_generic_params_dies (tree t)
14054 tree parms, args;
14055 int parms_num, i;
14056 dw_die_ref die = NULL;
14057 int non_default;
14059 if (!t || (TYPE_P (t) && !COMPLETE_TYPE_P (t)))
14060 return;
14062 if (TYPE_P (t))
14063 die = lookup_type_die (t);
14064 else if (DECL_P (t))
14065 die = lookup_decl_die (t);
14067 gcc_assert (die);
14069 parms = lang_hooks.get_innermost_generic_parms (t);
14070 if (!parms)
14071 /* T has no generic parameter. It means T is neither a generic type
14072 or function. End of story. */
14073 return;
14075 parms_num = TREE_VEC_LENGTH (parms);
14076 args = lang_hooks.get_innermost_generic_args (t);
14077 if (TREE_CHAIN (args) && TREE_CODE (TREE_CHAIN (args)) == INTEGER_CST)
14078 non_default = int_cst_value (TREE_CHAIN (args));
14079 else
14080 non_default = TREE_VEC_LENGTH (args);
14081 for (i = 0; i < parms_num; i++)
14083 tree parm, arg, arg_pack_elems;
14084 dw_die_ref parm_die;
14086 parm = TREE_VEC_ELT (parms, i);
14087 arg = TREE_VEC_ELT (args, i);
14088 arg_pack_elems = lang_hooks.types.get_argument_pack_elems (arg);
14089 gcc_assert (parm && TREE_VALUE (parm) && arg);
14091 if (parm && TREE_VALUE (parm) && arg)
14093 /* If PARM represents a template parameter pack,
14094 emit a DW_TAG_GNU_template_parameter_pack DIE, followed
14095 by DW_TAG_template_*_parameter DIEs for the argument
14096 pack elements of ARG. Note that ARG would then be
14097 an argument pack. */
14098 if (arg_pack_elems)
14099 parm_die = template_parameter_pack_die (TREE_VALUE (parm),
14100 arg_pack_elems,
14101 die);
14102 else
14103 parm_die = generic_parameter_die (TREE_VALUE (parm), arg,
14104 true /* emit name */, die);
14105 if (i >= non_default)
14106 add_AT_flag (parm_die, DW_AT_default_value, 1);
14111 /* Create and return a DIE for PARM which should be
14112 the representation of a generic type parameter.
14113 For instance, in the C++ front end, PARM would be a template parameter.
14114 ARG is the argument to PARM.
14115 EMIT_NAME_P if tree, the DIE will have DW_AT_name attribute set to the
14116 name of the PARM.
14117 PARENT_DIE is the parent DIE which the new created DIE should be added to,
14118 as a child node. */
14120 static dw_die_ref
14121 generic_parameter_die (tree parm, tree arg,
14122 bool emit_name_p,
14123 dw_die_ref parent_die)
14125 dw_die_ref tmpl_die = NULL;
14126 const char *name = NULL;
14128 /* C++20 accepts class literals as template parameters, and var
14129 decls with initializers represent them. The VAR_DECLs would be
14130 rejected, but we can take the DECL_INITIAL constructor and
14131 attempt to expand it. */
14132 if (arg && VAR_P (arg))
14133 arg = DECL_INITIAL (arg);
14135 if (!parm || !DECL_NAME (parm) || !arg)
14136 return NULL;
14138 /* We support non-type generic parameters and arguments,
14139 type generic parameters and arguments, as well as
14140 generic generic parameters (a.k.a. template template parameters in C++)
14141 and arguments. */
14142 if (TREE_CODE (parm) == PARM_DECL)
14143 /* PARM is a nontype generic parameter */
14144 tmpl_die = new_die (DW_TAG_template_value_param, parent_die, parm);
14145 else if (TREE_CODE (parm) == TYPE_DECL)
14146 /* PARM is a type generic parameter. */
14147 tmpl_die = new_die (DW_TAG_template_type_param, parent_die, parm);
14148 else if (lang_hooks.decls.generic_generic_parameter_decl_p (parm))
14149 /* PARM is a generic generic parameter.
14150 Its DIE is a GNU extension. It shall have a
14151 DW_AT_name attribute to represent the name of the template template
14152 parameter, and a DW_AT_GNU_template_name attribute to represent the
14153 name of the template template argument. */
14154 tmpl_die = new_die (DW_TAG_GNU_template_template_param,
14155 parent_die, parm);
14156 else
14157 gcc_unreachable ();
14159 if (tmpl_die)
14161 tree tmpl_type;
14163 /* If PARM is a generic parameter pack, it means we are
14164 emitting debug info for a template argument pack element.
14165 In other terms, ARG is a template argument pack element.
14166 In that case, we don't emit any DW_AT_name attribute for
14167 the die. */
14168 if (emit_name_p)
14170 name = IDENTIFIER_POINTER (DECL_NAME (parm));
14171 gcc_assert (name);
14172 add_AT_string (tmpl_die, DW_AT_name, name);
14175 if (!lang_hooks.decls.generic_generic_parameter_decl_p (parm))
14177 /* DWARF3, 5.6.8 says if PARM is a non-type generic parameter
14178 TMPL_DIE should have a child DW_AT_type attribute that is set
14179 to the type of the argument to PARM, which is ARG.
14180 If PARM is a type generic parameter, TMPL_DIE should have a
14181 child DW_AT_type that is set to ARG. */
14182 tmpl_type = TYPE_P (arg) ? arg : TREE_TYPE (arg);
14183 add_type_attribute (tmpl_die, tmpl_type,
14184 (TREE_THIS_VOLATILE (tmpl_type)
14185 ? TYPE_QUAL_VOLATILE : TYPE_UNQUALIFIED),
14186 false, parent_die);
14188 else
14190 /* So TMPL_DIE is a DIE representing a
14191 a generic generic template parameter, a.k.a template template
14192 parameter in C++ and arg is a template. */
14194 /* The DW_AT_GNU_template_name attribute of the DIE must be set
14195 to the name of the argument. */
14196 name = dwarf2_name (TYPE_P (arg) ? TYPE_NAME (arg) : arg, 1);
14197 if (name)
14198 add_AT_string (tmpl_die, DW_AT_GNU_template_name, name);
14201 if (TREE_CODE (parm) == PARM_DECL)
14202 /* So PARM is a non-type generic parameter.
14203 DWARF3 5.6.8 says we must set a DW_AT_const_value child
14204 attribute of TMPL_DIE which value represents the value
14205 of ARG.
14206 We must be careful here:
14207 The value of ARG might reference some function decls.
14208 We might currently be emitting debug info for a generic
14209 type and types are emitted before function decls, we don't
14210 know if the function decls referenced by ARG will actually be
14211 emitted after cgraph computations.
14212 So must defer the generation of the DW_AT_const_value to
14213 after cgraph is ready. */
14214 append_entry_to_tmpl_value_parm_die_table (tmpl_die, arg);
14217 return tmpl_die;
14220 /* Generate and return a DW_TAG_GNU_template_parameter_pack DIE representing.
14221 PARM_PACK must be a template parameter pack. The returned DIE
14222 will be child DIE of PARENT_DIE. */
14224 static dw_die_ref
14225 template_parameter_pack_die (tree parm_pack,
14226 tree parm_pack_args,
14227 dw_die_ref parent_die)
14229 dw_die_ref die;
14230 int j;
14232 gcc_assert (parent_die && parm_pack);
14234 die = new_die (DW_TAG_GNU_template_parameter_pack, parent_die, parm_pack);
14235 add_name_and_src_coords_attributes (die, parm_pack);
14236 for (j = 0; j < TREE_VEC_LENGTH (parm_pack_args); j++)
14237 generic_parameter_die (parm_pack,
14238 TREE_VEC_ELT (parm_pack_args, j),
14239 false /* Don't emit DW_AT_name */,
14240 die);
14241 return die;
14244 /* Return the debugger register number described by a given RTL node. */
14246 static unsigned int
14247 debugger_reg_number (const_rtx rtl)
14249 unsigned regno = REGNO (rtl);
14251 gcc_assert (regno < FIRST_PSEUDO_REGISTER);
14253 #ifdef LEAF_REG_REMAP
14254 if (crtl->uses_only_leaf_regs)
14256 int leaf_reg = LEAF_REG_REMAP (regno);
14257 if (leaf_reg != -1)
14258 regno = (unsigned) leaf_reg;
14260 #endif
14262 regno = DEBUGGER_REGNO (regno);
14263 gcc_assert (regno != INVALID_REGNUM);
14264 return regno;
14267 /* Optionally add a DW_OP_piece term to a location description expression.
14268 DW_OP_piece is only added if the location description expression already
14269 doesn't end with DW_OP_piece. */
14271 static void
14272 add_loc_descr_op_piece (dw_loc_descr_ref *list_head, int size)
14274 dw_loc_descr_ref loc;
14276 if (*list_head != NULL)
14278 /* Find the end of the chain. */
14279 for (loc = *list_head; loc->dw_loc_next != NULL; loc = loc->dw_loc_next)
14282 if (loc->dw_loc_opc != DW_OP_piece)
14283 loc->dw_loc_next = new_loc_descr (DW_OP_piece, size, 0);
14287 /* Return a location descriptor that designates a machine register or
14288 zero if there is none. */
14290 static dw_loc_descr_ref
14291 reg_loc_descriptor (rtx rtl, enum var_init_status initialized)
14293 rtx regs;
14295 if (REGNO (rtl) >= FIRST_PSEUDO_REGISTER)
14296 return 0;
14298 /* We only use "frame base" when we're sure we're talking about the
14299 post-prologue local stack frame. We do this by *not* running
14300 register elimination until this point, and recognizing the special
14301 argument pointer and soft frame pointer rtx's.
14302 Use DW_OP_fbreg offset DW_OP_stack_value in this case. */
14303 if ((rtl == arg_pointer_rtx || rtl == frame_pointer_rtx)
14304 && eliminate_regs (rtl, VOIDmode, NULL_RTX) != rtl)
14306 dw_loc_descr_ref result = NULL;
14308 if (dwarf_version >= 4 || !dwarf_strict)
14310 result = mem_loc_descriptor (rtl, GET_MODE (rtl), VOIDmode,
14311 initialized);
14312 if (result)
14313 add_loc_descr (&result,
14314 new_loc_descr (DW_OP_stack_value, 0, 0));
14316 return result;
14319 regs = targetm.dwarf_register_span (rtl);
14321 if (REG_NREGS (rtl) > 1 || regs)
14322 return multiple_reg_loc_descriptor (rtl, regs, initialized);
14323 else
14325 unsigned int debugger_regnum = debugger_reg_number (rtl);
14326 if (debugger_regnum == IGNORED_DWARF_REGNUM)
14327 return 0;
14328 return one_reg_loc_descriptor (debugger_regnum, initialized);
14332 /* Return a location descriptor that designates a machine register for
14333 a given hard register number. */
14335 static dw_loc_descr_ref
14336 one_reg_loc_descriptor (unsigned int regno, enum var_init_status initialized)
14338 dw_loc_descr_ref reg_loc_descr;
14340 if (regno <= 31)
14341 reg_loc_descr
14342 = new_loc_descr ((enum dwarf_location_atom) (DW_OP_reg0 + regno), 0, 0);
14343 else
14344 reg_loc_descr = new_loc_descr (DW_OP_regx, regno, 0);
14346 if (initialized == VAR_INIT_STATUS_UNINITIALIZED)
14347 add_loc_descr (&reg_loc_descr, new_loc_descr (DW_OP_GNU_uninit, 0, 0));
14349 return reg_loc_descr;
14352 /* Given an RTL of a register, return a location descriptor that
14353 designates a value that spans more than one register. */
14355 static dw_loc_descr_ref
14356 multiple_reg_loc_descriptor (rtx rtl, rtx regs,
14357 enum var_init_status initialized)
14359 int size, i;
14360 dw_loc_descr_ref loc_result = NULL;
14362 /* Simple, contiguous registers. */
14363 if (regs == NULL_RTX)
14365 unsigned reg = REGNO (rtl);
14366 int nregs;
14368 #ifdef LEAF_REG_REMAP
14369 if (crtl->uses_only_leaf_regs)
14371 int leaf_reg = LEAF_REG_REMAP (reg);
14372 if (leaf_reg != -1)
14373 reg = (unsigned) leaf_reg;
14375 #endif
14377 gcc_assert ((unsigned) DEBUGGER_REGNO (reg) == debugger_reg_number (rtl));
14378 nregs = REG_NREGS (rtl);
14380 /* At present we only track constant-sized pieces. */
14381 if (!GET_MODE_SIZE (GET_MODE (rtl)).is_constant (&size))
14382 return NULL;
14383 size /= nregs;
14385 loc_result = NULL;
14386 while (nregs--)
14388 dw_loc_descr_ref t;
14390 t = one_reg_loc_descriptor (DEBUGGER_REGNO (reg),
14391 VAR_INIT_STATUS_INITIALIZED);
14392 add_loc_descr (&loc_result, t);
14393 add_loc_descr_op_piece (&loc_result, size);
14394 ++reg;
14396 return loc_result;
14399 /* Now onto stupid register sets in non contiguous locations. */
14401 gcc_assert (GET_CODE (regs) == PARALLEL);
14403 /* At present we only track constant-sized pieces. */
14404 if (!GET_MODE_SIZE (GET_MODE (XVECEXP (regs, 0, 0))).is_constant (&size))
14405 return NULL;
14406 loc_result = NULL;
14408 for (i = 0; i < XVECLEN (regs, 0); ++i)
14410 dw_loc_descr_ref t;
14412 t = one_reg_loc_descriptor (debugger_reg_number (XVECEXP (regs, 0, i)),
14413 VAR_INIT_STATUS_INITIALIZED);
14414 add_loc_descr (&loc_result, t);
14415 add_loc_descr_op_piece (&loc_result, size);
14418 if (loc_result && initialized == VAR_INIT_STATUS_UNINITIALIZED)
14419 add_loc_descr (&loc_result, new_loc_descr (DW_OP_GNU_uninit, 0, 0));
14420 return loc_result;
14423 static unsigned long size_of_int_loc_descriptor (HOST_WIDE_INT);
14425 /* Return a location descriptor that designates a constant i,
14426 as a compound operation from constant (i >> shift), constant shift
14427 and DW_OP_shl. */
14429 static dw_loc_descr_ref
14430 int_shift_loc_descriptor (HOST_WIDE_INT i, int shift)
14432 dw_loc_descr_ref ret = int_loc_descriptor (i >> shift);
14433 add_loc_descr (&ret, int_loc_descriptor (shift));
14434 add_loc_descr (&ret, new_loc_descr (DW_OP_shl, 0, 0));
14435 return ret;
14438 /* Return a location descriptor that designates constant POLY_I. */
14440 static dw_loc_descr_ref
14441 int_loc_descriptor (poly_int64 poly_i)
14443 enum dwarf_location_atom op;
14445 HOST_WIDE_INT i;
14446 if (!poly_i.is_constant (&i))
14448 /* Create location descriptions for the non-constant part and
14449 add any constant offset at the end. */
14450 dw_loc_descr_ref ret = NULL;
14451 HOST_WIDE_INT constant = poly_i.coeffs[0];
14452 for (unsigned int j = 1; j < NUM_POLY_INT_COEFFS; ++j)
14454 HOST_WIDE_INT coeff = poly_i.coeffs[j];
14455 if (coeff != 0)
14457 dw_loc_descr_ref start = ret;
14458 unsigned int factor;
14459 int bias;
14460 unsigned int regno = targetm.dwarf_poly_indeterminate_value
14461 (j, &factor, &bias);
14463 /* Add COEFF * ((REGNO / FACTOR) - BIAS) to the value:
14464 add COEFF * (REGNO / FACTOR) now and subtract
14465 COEFF * BIAS from the final constant part. */
14466 constant -= coeff * bias;
14467 add_loc_descr (&ret, new_reg_loc_descr (regno, 0));
14468 if (coeff % factor == 0)
14469 coeff /= factor;
14470 else
14472 int amount = exact_log2 (factor);
14473 gcc_assert (amount >= 0);
14474 add_loc_descr (&ret, int_loc_descriptor (amount));
14475 add_loc_descr (&ret, new_loc_descr (DW_OP_shr, 0, 0));
14477 if (coeff != 1)
14479 add_loc_descr (&ret, int_loc_descriptor (coeff));
14480 add_loc_descr (&ret, new_loc_descr (DW_OP_mul, 0, 0));
14482 if (start)
14483 add_loc_descr (&ret, new_loc_descr (DW_OP_plus, 0, 0));
14486 loc_descr_plus_const (&ret, constant);
14487 return ret;
14490 /* Pick the smallest representation of a constant, rather than just
14491 defaulting to the LEB encoding. */
14492 if (i >= 0)
14494 int clz = clz_hwi (i);
14495 int ctz = ctz_hwi (i);
14496 if (i <= 31)
14497 op = (enum dwarf_location_atom) (DW_OP_lit0 + i);
14498 else if (i <= 0xff)
14499 op = DW_OP_const1u;
14500 else if (i <= 0xffff)
14501 op = DW_OP_const2u;
14502 else if (clz + ctz >= HOST_BITS_PER_WIDE_INT - 5
14503 && clz + 5 + 255 >= HOST_BITS_PER_WIDE_INT)
14504 /* DW_OP_litX DW_OP_litY DW_OP_shl takes just 3 bytes and
14505 DW_OP_litX DW_OP_const1u Y DW_OP_shl takes just 4 bytes,
14506 while DW_OP_const4u is 5 bytes. */
14507 return int_shift_loc_descriptor (i, HOST_BITS_PER_WIDE_INT - clz - 5);
14508 else if (clz + ctz >= HOST_BITS_PER_WIDE_INT - 8
14509 && clz + 8 + 31 >= HOST_BITS_PER_WIDE_INT)
14510 /* DW_OP_const1u X DW_OP_litY DW_OP_shl takes just 4 bytes,
14511 while DW_OP_const4u is 5 bytes. */
14512 return int_shift_loc_descriptor (i, HOST_BITS_PER_WIDE_INT - clz - 8);
14514 else if (DWARF2_ADDR_SIZE == 4 && i > 0x7fffffff
14515 && size_of_int_loc_descriptor ((HOST_WIDE_INT) (int32_t) i)
14516 <= 4)
14518 /* As i >= 2**31, the double cast above will yield a negative number.
14519 Since wrapping is defined in DWARF expressions we can output big
14520 positive integers as small negative ones, regardless of the size
14521 of host wide ints.
14523 Here, since the evaluator will handle 32-bit values and since i >=
14524 2**31, we know it's going to be interpreted as a negative literal:
14525 store it this way if we can do better than 5 bytes this way. */
14526 return int_loc_descriptor ((HOST_WIDE_INT) (int32_t) i);
14528 else if (HOST_BITS_PER_WIDE_INT == 32 || i <= 0xffffffff)
14529 op = DW_OP_const4u;
14531 /* Past this point, i >= 0x100000000 and thus DW_OP_constu will take at
14532 least 6 bytes: see if we can do better before falling back to it. */
14533 else if (clz + ctz >= HOST_BITS_PER_WIDE_INT - 8
14534 && clz + 8 + 255 >= HOST_BITS_PER_WIDE_INT)
14535 /* DW_OP_const1u X DW_OP_const1u Y DW_OP_shl takes just 5 bytes. */
14536 return int_shift_loc_descriptor (i, HOST_BITS_PER_WIDE_INT - clz - 8);
14537 else if (clz + ctz >= HOST_BITS_PER_WIDE_INT - 16
14538 && clz + 16 + (size_of_uleb128 (i) > 5 ? 255 : 31)
14539 >= HOST_BITS_PER_WIDE_INT)
14540 /* DW_OP_const2u X DW_OP_litY DW_OP_shl takes just 5 bytes,
14541 DW_OP_const2u X DW_OP_const1u Y DW_OP_shl takes 6 bytes. */
14542 return int_shift_loc_descriptor (i, HOST_BITS_PER_WIDE_INT - clz - 16);
14543 else if (clz + ctz >= HOST_BITS_PER_WIDE_INT - 32
14544 && clz + 32 + 31 >= HOST_BITS_PER_WIDE_INT
14545 && size_of_uleb128 (i) > 6)
14546 /* DW_OP_const4u X DW_OP_litY DW_OP_shl takes just 7 bytes. */
14547 return int_shift_loc_descriptor (i, HOST_BITS_PER_WIDE_INT - clz - 32);
14548 else
14549 op = DW_OP_constu;
14551 else
14553 if (i >= -0x80)
14554 op = DW_OP_const1s;
14555 else if (i >= -0x8000)
14556 op = DW_OP_const2s;
14557 else if (HOST_BITS_PER_WIDE_INT == 32 || i >= -0x80000000)
14559 if (size_of_int_loc_descriptor (i) < 5)
14561 dw_loc_descr_ref ret = int_loc_descriptor (-i);
14562 add_loc_descr (&ret, new_loc_descr (DW_OP_neg, 0, 0));
14563 return ret;
14565 op = DW_OP_const4s;
14567 else
14569 if (size_of_int_loc_descriptor (i)
14570 < (unsigned long) 1 + size_of_sleb128 (i))
14572 dw_loc_descr_ref ret = int_loc_descriptor (-i);
14573 add_loc_descr (&ret, new_loc_descr (DW_OP_neg, 0, 0));
14574 return ret;
14576 op = DW_OP_consts;
14580 return new_loc_descr (op, i, 0);
14583 /* Likewise, for unsigned constants. */
14585 static dw_loc_descr_ref
14586 uint_loc_descriptor (unsigned HOST_WIDE_INT i)
14588 const unsigned HOST_WIDE_INT max_int = INTTYPE_MAXIMUM (HOST_WIDE_INT);
14589 const unsigned HOST_WIDE_INT max_uint
14590 = INTTYPE_MAXIMUM (unsigned HOST_WIDE_INT);
14592 /* If possible, use the clever signed constants handling. */
14593 if (i <= max_int)
14594 return int_loc_descriptor ((HOST_WIDE_INT) i);
14596 /* Here, we are left with positive numbers that cannot be represented as
14597 HOST_WIDE_INT, i.e.:
14598 max (HOST_WIDE_INT) < i <= max (unsigned HOST_WIDE_INT)
14600 Using DW_OP_const4/8/./u operation to encode them consumes a lot of bytes
14601 whereas may be better to output a negative integer: thanks to integer
14602 wrapping, we know that:
14603 x = x - 2 ** DWARF2_ADDR_SIZE
14604 = x - 2 * (max (HOST_WIDE_INT) + 1)
14605 So numbers close to max (unsigned HOST_WIDE_INT) could be represented as
14606 small negative integers. Let's try that in cases it will clearly improve
14607 the encoding: there is no gain turning DW_OP_const4u into
14608 DW_OP_const4s. */
14609 if (DWARF2_ADDR_SIZE * 8 == HOST_BITS_PER_WIDE_INT
14610 && ((DWARF2_ADDR_SIZE == 4 && i > max_uint - 0x8000)
14611 || (DWARF2_ADDR_SIZE == 8 && i > max_uint - 0x80000000)))
14613 const unsigned HOST_WIDE_INT first_shift = i - max_int - 1;
14615 /* Now, -1 < first_shift <= max (HOST_WIDE_INT)
14616 i.e. 0 <= first_shift <= max (HOST_WIDE_INT). */
14617 const HOST_WIDE_INT second_shift
14618 = (HOST_WIDE_INT) first_shift - (HOST_WIDE_INT) max_int - 1;
14620 /* So we finally have:
14621 -max (HOST_WIDE_INT) - 1 <= second_shift <= -1.
14622 i.e. min (HOST_WIDE_INT) <= second_shift < 0. */
14623 return int_loc_descriptor (second_shift);
14626 /* Last chance: fallback to a simple constant operation. */
14627 return new_loc_descr
14628 ((HOST_BITS_PER_WIDE_INT == 32 || i <= 0xffffffff)
14629 ? DW_OP_const4u
14630 : DW_OP_const8u,
14631 i, 0);
14634 /* Generate and return a location description that computes the unsigned
14635 comparison of the two stack top entries (a OP b where b is the top-most
14636 entry and a is the second one). The KIND of comparison can be LT_EXPR,
14637 LE_EXPR, GT_EXPR or GE_EXPR. */
14639 static dw_loc_descr_ref
14640 uint_comparison_loc_list (enum tree_code kind)
14642 enum dwarf_location_atom op, flip_op;
14643 dw_loc_descr_ref ret, bra_node, jmp_node, tmp;
14645 switch (kind)
14647 case LT_EXPR:
14648 op = DW_OP_lt;
14649 break;
14650 case LE_EXPR:
14651 op = DW_OP_le;
14652 break;
14653 case GT_EXPR:
14654 op = DW_OP_gt;
14655 break;
14656 case GE_EXPR:
14657 op = DW_OP_ge;
14658 break;
14659 default:
14660 gcc_unreachable ();
14663 bra_node = new_loc_descr (DW_OP_bra, 0, 0);
14664 jmp_node = new_loc_descr (DW_OP_skip, 0, 0);
14666 /* Until DWARFv4, operations all work on signed integers. It is nevertheless
14667 possible to perform unsigned comparisons: we just have to distinguish
14668 three cases:
14670 1. when a and b have the same sign (as signed integers); then we should
14671 return: a OP(signed) b;
14673 2. when a is a negative signed integer while b is a positive one, then a
14674 is a greater unsigned integer than b; likewise when a and b's roles
14675 are flipped.
14677 So first, compare the sign of the two operands. */
14678 ret = new_loc_descr (DW_OP_over, 0, 0);
14679 add_loc_descr (&ret, new_loc_descr (DW_OP_over, 0, 0));
14680 add_loc_descr (&ret, new_loc_descr (DW_OP_xor, 0, 0));
14681 /* If they have different signs (i.e. they have different sign bits), then
14682 the stack top value has now the sign bit set and thus it's smaller than
14683 zero. */
14684 add_loc_descr (&ret, new_loc_descr (DW_OP_lit0, 0, 0));
14685 add_loc_descr (&ret, new_loc_descr (DW_OP_lt, 0, 0));
14686 add_loc_descr (&ret, bra_node);
14688 /* We are in case 1. At this point, we know both operands have the same
14689 sign, to it's safe to use the built-in signed comparison. */
14690 add_loc_descr (&ret, new_loc_descr (op, 0, 0));
14691 add_loc_descr (&ret, jmp_node);
14693 /* We are in case 2. Here, we know both operands do not have the same sign,
14694 so we have to flip the signed comparison. */
14695 flip_op = (kind == LT_EXPR || kind == LE_EXPR) ? DW_OP_gt : DW_OP_lt;
14696 tmp = new_loc_descr (flip_op, 0, 0);
14697 bra_node->dw_loc_oprnd1.val_class = dw_val_class_loc;
14698 bra_node->dw_loc_oprnd1.v.val_loc = tmp;
14699 add_loc_descr (&ret, tmp);
14701 /* This dummy operation is necessary to make the two branches join. */
14702 tmp = new_loc_descr (DW_OP_nop, 0, 0);
14703 jmp_node->dw_loc_oprnd1.val_class = dw_val_class_loc;
14704 jmp_node->dw_loc_oprnd1.v.val_loc = tmp;
14705 add_loc_descr (&ret, tmp);
14707 return ret;
14710 /* Likewise, but takes the location description lists (might be destructive on
14711 them). Return NULL if either is NULL or if concatenation fails. */
14713 static dw_loc_list_ref
14714 loc_list_from_uint_comparison (dw_loc_list_ref left, dw_loc_list_ref right,
14715 enum tree_code kind)
14717 if (left == NULL || right == NULL)
14718 return NULL;
14720 add_loc_list (&left, right);
14721 if (left == NULL)
14722 return NULL;
14724 add_loc_descr_to_each (left, uint_comparison_loc_list (kind));
14725 return left;
14728 /* Return size_of_locs (int_shift_loc_descriptor (i, shift))
14729 without actually allocating it. */
14731 static unsigned long
14732 size_of_int_shift_loc_descriptor (HOST_WIDE_INT i, int shift)
14734 return size_of_int_loc_descriptor (i >> shift)
14735 + size_of_int_loc_descriptor (shift)
14736 + 1;
14739 /* Return size_of_locs (int_loc_descriptor (i)) without
14740 actually allocating it. */
14742 static unsigned long
14743 size_of_int_loc_descriptor (HOST_WIDE_INT i)
14745 unsigned long s;
14747 if (i >= 0)
14749 int clz, ctz;
14750 if (i <= 31)
14751 return 1;
14752 else if (i <= 0xff)
14753 return 2;
14754 else if (i <= 0xffff)
14755 return 3;
14756 clz = clz_hwi (i);
14757 ctz = ctz_hwi (i);
14758 if (clz + ctz >= HOST_BITS_PER_WIDE_INT - 5
14759 && clz + 5 + 255 >= HOST_BITS_PER_WIDE_INT)
14760 return size_of_int_shift_loc_descriptor (i, HOST_BITS_PER_WIDE_INT
14761 - clz - 5);
14762 else if (clz + ctz >= HOST_BITS_PER_WIDE_INT - 8
14763 && clz + 8 + 31 >= HOST_BITS_PER_WIDE_INT)
14764 return size_of_int_shift_loc_descriptor (i, HOST_BITS_PER_WIDE_INT
14765 - clz - 8);
14766 else if (DWARF2_ADDR_SIZE == 4 && i > 0x7fffffff
14767 && size_of_int_loc_descriptor ((HOST_WIDE_INT) (int32_t) i)
14768 <= 4)
14769 return size_of_int_loc_descriptor ((HOST_WIDE_INT) (int32_t) i);
14770 else if (HOST_BITS_PER_WIDE_INT == 32 || i <= 0xffffffff)
14771 return 5;
14772 s = size_of_uleb128 ((unsigned HOST_WIDE_INT) i);
14773 if (clz + ctz >= HOST_BITS_PER_WIDE_INT - 8
14774 && clz + 8 + 255 >= HOST_BITS_PER_WIDE_INT)
14775 return size_of_int_shift_loc_descriptor (i, HOST_BITS_PER_WIDE_INT
14776 - clz - 8);
14777 else if (clz + ctz >= HOST_BITS_PER_WIDE_INT - 16
14778 && clz + 16 + (s > 5 ? 255 : 31) >= HOST_BITS_PER_WIDE_INT)
14779 return size_of_int_shift_loc_descriptor (i, HOST_BITS_PER_WIDE_INT
14780 - clz - 16);
14781 else if (clz + ctz >= HOST_BITS_PER_WIDE_INT - 32
14782 && clz + 32 + 31 >= HOST_BITS_PER_WIDE_INT
14783 && s > 6)
14784 return size_of_int_shift_loc_descriptor (i, HOST_BITS_PER_WIDE_INT
14785 - clz - 32);
14786 else
14787 return 1 + s;
14789 else
14791 if (i >= -0x80)
14792 return 2;
14793 else if (i >= -0x8000)
14794 return 3;
14795 else if (HOST_BITS_PER_WIDE_INT == 32 || i >= -0x80000000)
14797 if (-(unsigned HOST_WIDE_INT) i != (unsigned HOST_WIDE_INT) i)
14799 s = size_of_int_loc_descriptor (-i) + 1;
14800 if (s < 5)
14801 return s;
14803 return 5;
14805 else
14807 unsigned long r = 1 + size_of_sleb128 (i);
14808 if (-(unsigned HOST_WIDE_INT) i != (unsigned HOST_WIDE_INT) i)
14810 s = size_of_int_loc_descriptor (-i) + 1;
14811 if (s < r)
14812 return s;
14814 return r;
14819 /* Return loc description representing "address" of integer value.
14820 This can appear only as toplevel expression. */
14822 static dw_loc_descr_ref
14823 address_of_int_loc_descriptor (int size, HOST_WIDE_INT i)
14825 int litsize;
14826 dw_loc_descr_ref loc_result = NULL;
14828 if (!(dwarf_version >= 4 || !dwarf_strict))
14829 return NULL;
14831 litsize = size_of_int_loc_descriptor (i);
14832 /* Determine if DW_OP_stack_value or DW_OP_implicit_value
14833 is more compact. For DW_OP_stack_value we need:
14834 litsize + 1 (DW_OP_stack_value)
14835 and for DW_OP_implicit_value:
14836 1 (DW_OP_implicit_value) + 1 (length) + size. */
14837 if ((int) DWARF2_ADDR_SIZE >= size && litsize + 1 <= 1 + 1 + size)
14839 loc_result = int_loc_descriptor (i);
14840 add_loc_descr (&loc_result,
14841 new_loc_descr (DW_OP_stack_value, 0, 0));
14842 return loc_result;
14845 loc_result = new_loc_descr (DW_OP_implicit_value,
14846 size, 0);
14847 loc_result->dw_loc_oprnd2.val_class = dw_val_class_const;
14848 loc_result->dw_loc_oprnd2.v.val_int = i;
14849 return loc_result;
14852 /* Return a location descriptor that designates a base+offset location. */
14854 static dw_loc_descr_ref
14855 based_loc_descr (rtx reg, poly_int64 offset,
14856 enum var_init_status initialized)
14858 unsigned int regno;
14859 dw_loc_descr_ref result;
14860 dw_fde_ref fde = cfun->fde;
14862 /* We only use "frame base" when we're sure we're talking about the
14863 post-prologue local stack frame. We do this by *not* running
14864 register elimination until this point, and recognizing the special
14865 argument pointer and soft frame pointer rtx's. */
14866 if (reg == arg_pointer_rtx || reg == frame_pointer_rtx)
14868 rtx elim = (ira_use_lra_p
14869 ? lra_eliminate_regs (reg, VOIDmode, NULL_RTX)
14870 : eliminate_regs (reg, VOIDmode, NULL_RTX));
14872 if (elim != reg)
14874 /* Allow hard frame pointer here even if frame pointer
14875 isn't used since hard frame pointer is encoded with
14876 DW_OP_fbreg which uses the DW_AT_frame_base attribute,
14877 not hard frame pointer directly. */
14878 elim = strip_offset_and_add (elim, &offset);
14879 gcc_assert (elim == hard_frame_pointer_rtx
14880 || elim == stack_pointer_rtx);
14882 /* If drap register is used to align stack, use frame
14883 pointer + offset to access stack variables. If stack
14884 is aligned without drap, use stack pointer + offset to
14885 access stack variables. */
14886 if (crtl->stack_realign_tried
14887 && reg == frame_pointer_rtx)
14889 int base_reg
14890 = DWARF_FRAME_REGNUM ((fde && fde->drap_reg != INVALID_REGNUM)
14891 ? HARD_FRAME_POINTER_REGNUM
14892 : REGNO (elim));
14893 return new_reg_loc_descr (base_reg, offset);
14896 gcc_assert (frame_pointer_fb_offset_valid);
14897 offset += frame_pointer_fb_offset;
14898 HOST_WIDE_INT const_offset;
14899 if (offset.is_constant (&const_offset))
14900 return new_loc_descr (DW_OP_fbreg, const_offset, 0);
14901 else
14903 dw_loc_descr_ref ret = new_loc_descr (DW_OP_fbreg, 0, 0);
14904 loc_descr_plus_const (&ret, offset);
14905 return ret;
14910 regno = REGNO (reg);
14911 #ifdef LEAF_REG_REMAP
14912 if (crtl->uses_only_leaf_regs)
14914 int leaf_reg = LEAF_REG_REMAP (regno);
14915 if (leaf_reg != -1)
14916 regno = (unsigned) leaf_reg;
14918 #endif
14919 regno = DWARF_FRAME_REGNUM (regno);
14921 HOST_WIDE_INT const_offset;
14922 if (!optimize && fde
14923 && (fde->drap_reg == regno || fde->vdrap_reg == regno)
14924 && offset.is_constant (&const_offset))
14926 /* Use cfa+offset to represent the location of arguments passed
14927 on the stack when drap is used to align stack.
14928 Only do this when not optimizing, for optimized code var-tracking
14929 is supposed to track where the arguments live and the register
14930 used as vdrap or drap in some spot might be used for something
14931 else in other part of the routine. */
14932 return new_loc_descr (DW_OP_fbreg, const_offset, 0);
14935 result = new_reg_loc_descr (regno, offset);
14937 if (initialized == VAR_INIT_STATUS_UNINITIALIZED)
14938 add_loc_descr (&result, new_loc_descr (DW_OP_GNU_uninit, 0, 0));
14940 return result;
14943 /* Return true if this RTL expression describes a base+offset calculation. */
14945 static inline bool
14946 is_based_loc (const_rtx rtl)
14948 return (GET_CODE (rtl) == PLUS
14949 && ((REG_P (XEXP (rtl, 0))
14950 && REGNO (XEXP (rtl, 0)) < FIRST_PSEUDO_REGISTER
14951 && CONST_INT_P (XEXP (rtl, 1)))));
14954 /* Try to handle TLS MEMs, for which mem_loc_descriptor on XEXP (mem, 0)
14955 failed. */
14957 static dw_loc_descr_ref
14958 tls_mem_loc_descriptor (rtx mem)
14960 tree base;
14961 dw_loc_descr_ref loc_result;
14963 if (MEM_EXPR (mem) == NULL_TREE || !MEM_OFFSET_KNOWN_P (mem))
14964 return NULL;
14966 base = get_base_address (MEM_EXPR (mem));
14967 if (base == NULL
14968 || !VAR_P (base)
14969 || !DECL_THREAD_LOCAL_P (base))
14970 return NULL;
14972 loc_result = loc_descriptor_from_tree (MEM_EXPR (mem), 1, NULL);
14973 if (loc_result == NULL)
14974 return NULL;
14976 if (maybe_ne (MEM_OFFSET (mem), 0))
14977 loc_descr_plus_const (&loc_result, MEM_OFFSET (mem));
14979 return loc_result;
14982 /* Output debug info about reason why we failed to expand expression as dwarf
14983 expression. */
14985 static void
14986 expansion_failed (tree expr, rtx rtl, char const *reason)
14988 if (dump_file && (dump_flags & TDF_DETAILS))
14990 fprintf (dump_file, "Failed to expand as dwarf: ");
14991 if (expr)
14992 print_generic_expr (dump_file, expr, dump_flags);
14993 if (rtl)
14995 fprintf (dump_file, "\n");
14996 print_rtl (dump_file, rtl);
14998 fprintf (dump_file, "\nReason: %s\n", reason);
15002 /* Helper function for const_ok_for_output. */
15004 static bool
15005 const_ok_for_output_1 (rtx rtl)
15007 if (targetm.const_not_ok_for_debug_p (rtl))
15009 if (GET_CODE (rtl) != UNSPEC)
15011 expansion_failed (NULL_TREE, rtl,
15012 "Expression rejected for debug by the backend.\n");
15013 return false;
15016 /* If delegitimize_address couldn't do anything with the UNSPEC, and
15017 the target hook doesn't explicitly allow it in debug info, assume
15018 we can't express it in the debug info. */
15019 /* Don't complain about TLS UNSPECs, those are just too hard to
15020 delegitimize. Note this could be a non-decl SYMBOL_REF such as
15021 one in a constant pool entry, so testing SYMBOL_REF_TLS_MODEL
15022 rather than DECL_THREAD_LOCAL_P is not just an optimization. */
15023 if (flag_checking
15024 && (XVECLEN (rtl, 0) == 0
15025 || GET_CODE (XVECEXP (rtl, 0, 0)) != SYMBOL_REF
15026 || SYMBOL_REF_TLS_MODEL (XVECEXP (rtl, 0, 0)) == TLS_MODEL_NONE))
15027 inform (current_function_decl
15028 ? DECL_SOURCE_LOCATION (current_function_decl)
15029 : UNKNOWN_LOCATION,
15030 #if NUM_UNSPEC_VALUES > 0
15031 "non-delegitimized UNSPEC %s (%d) found in variable location",
15032 ((XINT (rtl, 1) >= 0 && XINT (rtl, 1) < NUM_UNSPEC_VALUES)
15033 ? unspec_strings[XINT (rtl, 1)] : "unknown"),
15034 #else
15035 "non-delegitimized UNSPEC %d found in variable location",
15036 #endif
15037 XINT (rtl, 1));
15038 expansion_failed (NULL_TREE, rtl,
15039 "UNSPEC hasn't been delegitimized.\n");
15040 return false;
15043 if (CONST_POLY_INT_P (rtl))
15044 return false;
15046 /* FIXME: Refer to PR60655. It is possible for simplification
15047 of rtl expressions in var tracking to produce such expressions.
15048 We should really identify / validate expressions
15049 enclosed in CONST that can be handled by assemblers on various
15050 targets and only handle legitimate cases here. */
15051 switch (GET_CODE (rtl))
15053 case SYMBOL_REF:
15054 break;
15055 case NOT:
15056 case NEG:
15057 return false;
15058 case PLUS:
15060 /* Make sure SYMBOL_REFs/UNSPECs are at most in one of the
15061 operands. */
15062 subrtx_var_iterator::array_type array;
15063 bool first = false;
15064 FOR_EACH_SUBRTX_VAR (iter, array, XEXP (rtl, 0), ALL)
15065 if (SYMBOL_REF_P (*iter)
15066 || LABEL_P (*iter)
15067 || GET_CODE (*iter) == UNSPEC)
15069 first = true;
15070 break;
15072 if (!first)
15073 return true;
15074 FOR_EACH_SUBRTX_VAR (iter, array, XEXP (rtl, 1), ALL)
15075 if (SYMBOL_REF_P (*iter)
15076 || LABEL_P (*iter)
15077 || GET_CODE (*iter) == UNSPEC)
15078 return false;
15079 return true;
15081 case MINUS:
15083 /* Disallow negation of SYMBOL_REFs or UNSPECs when they
15084 appear in the second operand of MINUS. */
15085 subrtx_var_iterator::array_type array;
15086 FOR_EACH_SUBRTX_VAR (iter, array, XEXP (rtl, 1), ALL)
15087 if (SYMBOL_REF_P (*iter)
15088 || LABEL_P (*iter)
15089 || GET_CODE (*iter) == UNSPEC)
15090 return false;
15091 return true;
15093 default:
15094 return true;
15097 if (CONSTANT_POOL_ADDRESS_P (rtl))
15099 bool marked;
15100 get_pool_constant_mark (rtl, &marked);
15101 /* If all references to this pool constant were optimized away,
15102 it was not output and thus we can't represent it. */
15103 if (!marked)
15105 expansion_failed (NULL_TREE, rtl,
15106 "Constant was removed from constant pool.\n");
15107 return false;
15111 if (SYMBOL_REF_TLS_MODEL (rtl) != TLS_MODEL_NONE)
15112 return false;
15114 /* Avoid references to external symbols in debug info, on several targets
15115 the linker might even refuse to link when linking a shared library,
15116 and in many other cases the relocations for .debug_info/.debug_loc are
15117 dropped, so the address becomes zero anyway. Hidden symbols, guaranteed
15118 to be defined within the same shared library or executable are fine. */
15119 if (SYMBOL_REF_EXTERNAL_P (rtl))
15121 tree decl = SYMBOL_REF_DECL (rtl);
15123 if (decl == NULL || !targetm.binds_local_p (decl))
15125 expansion_failed (NULL_TREE, rtl,
15126 "Symbol not defined in current TU.\n");
15127 return false;
15131 return true;
15134 /* Return true if constant RTL can be emitted in DW_OP_addr or
15135 DW_AT_const_value. TLS SYMBOL_REFs, external SYMBOL_REFs or
15136 non-marked constant pool SYMBOL_REFs can't be referenced in it. */
15138 static bool
15139 const_ok_for_output (rtx rtl)
15141 if (GET_CODE (rtl) == SYMBOL_REF)
15142 return const_ok_for_output_1 (rtl);
15144 if (GET_CODE (rtl) == CONST)
15146 subrtx_var_iterator::array_type array;
15147 FOR_EACH_SUBRTX_VAR (iter, array, XEXP (rtl, 0), ALL)
15148 if (!const_ok_for_output_1 (*iter))
15149 return false;
15150 return true;
15153 return true;
15156 /* Return a reference to DW_TAG_base_type corresponding to MODE and UNSIGNEDP
15157 if possible, NULL otherwise. */
15159 static dw_die_ref
15160 base_type_for_mode (machine_mode mode, bool unsignedp)
15162 dw_die_ref type_die;
15163 tree type = lang_hooks.types.type_for_mode (mode, unsignedp);
15165 if (type == NULL)
15166 return NULL;
15167 switch (TREE_CODE (type))
15169 case INTEGER_TYPE:
15170 case REAL_TYPE:
15171 break;
15172 default:
15173 return NULL;
15175 type_die = lookup_type_die (type);
15176 if (!type_die)
15177 type_die = modified_type_die (type, TYPE_UNQUALIFIED, false,
15178 comp_unit_die ());
15179 if (type_die == NULL || type_die->die_tag != DW_TAG_base_type)
15180 return NULL;
15181 return type_die;
15184 /* For OP descriptor assumed to be in unsigned MODE, convert it to a unsigned
15185 type matching MODE, or, if MODE is narrower than or as wide as
15186 DWARF2_ADDR_SIZE, untyped. Return NULL if the conversion is not
15187 possible. */
15189 static dw_loc_descr_ref
15190 convert_descriptor_to_mode (scalar_int_mode mode, dw_loc_descr_ref op)
15192 machine_mode outer_mode = mode;
15193 dw_die_ref type_die;
15194 dw_loc_descr_ref cvt;
15196 if (GET_MODE_SIZE (mode) <= DWARF2_ADDR_SIZE)
15198 add_loc_descr (&op, new_loc_descr (dwarf_OP (DW_OP_convert), 0, 0));
15199 return op;
15201 type_die = base_type_for_mode (outer_mode, 1);
15202 if (type_die == NULL)
15203 return NULL;
15204 cvt = new_loc_descr (dwarf_OP (DW_OP_convert), 0, 0);
15205 cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
15206 cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die;
15207 cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
15208 add_loc_descr (&op, cvt);
15209 return op;
15212 /* Return location descriptor for comparison OP with operands OP0 and OP1. */
15214 static dw_loc_descr_ref
15215 compare_loc_descriptor (enum dwarf_location_atom op, dw_loc_descr_ref op0,
15216 dw_loc_descr_ref op1)
15218 dw_loc_descr_ref ret = op0;
15219 add_loc_descr (&ret, op1);
15220 add_loc_descr (&ret, new_loc_descr (op, 0, 0));
15221 if (STORE_FLAG_VALUE != 1)
15223 add_loc_descr (&ret, int_loc_descriptor (STORE_FLAG_VALUE));
15224 add_loc_descr (&ret, new_loc_descr (DW_OP_mul, 0, 0));
15226 return ret;
15229 /* Subroutine of scompare_loc_descriptor for the case in which we're
15230 comparing two scalar integer operands OP0 and OP1 that have mode OP_MODE,
15231 and in which OP_MODE is bigger than DWARF2_ADDR_SIZE. */
15233 static dw_loc_descr_ref
15234 scompare_loc_descriptor_wide (enum dwarf_location_atom op,
15235 scalar_int_mode op_mode,
15236 dw_loc_descr_ref op0, dw_loc_descr_ref op1)
15238 dw_die_ref type_die = base_type_for_mode (op_mode, 0);
15239 dw_loc_descr_ref cvt;
15241 if (type_die == NULL)
15242 return NULL;
15243 cvt = new_loc_descr (dwarf_OP (DW_OP_convert), 0, 0);
15244 cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
15245 cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die;
15246 cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
15247 add_loc_descr (&op0, cvt);
15248 cvt = new_loc_descr (dwarf_OP (DW_OP_convert), 0, 0);
15249 cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
15250 cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die;
15251 cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
15252 add_loc_descr (&op1, cvt);
15253 return compare_loc_descriptor (op, op0, op1);
15256 /* Subroutine of scompare_loc_descriptor for the case in which we're
15257 comparing two scalar integer operands OP0 and OP1 that have mode OP_MODE,
15258 and in which OP_MODE is smaller than DWARF2_ADDR_SIZE. */
15260 static dw_loc_descr_ref
15261 scompare_loc_descriptor_narrow (enum dwarf_location_atom op, rtx rtl,
15262 scalar_int_mode op_mode,
15263 dw_loc_descr_ref op0, dw_loc_descr_ref op1)
15265 int shift = (DWARF2_ADDR_SIZE - GET_MODE_SIZE (op_mode)) * BITS_PER_UNIT;
15266 /* For eq/ne, if the operands are known to be zero-extended,
15267 there is no need to do the fancy shifting up. */
15268 if (op == DW_OP_eq || op == DW_OP_ne)
15270 dw_loc_descr_ref last0, last1;
15271 for (last0 = op0; last0->dw_loc_next != NULL; last0 = last0->dw_loc_next)
15273 for (last1 = op1; last1->dw_loc_next != NULL; last1 = last1->dw_loc_next)
15275 /* deref_size zero extends, and for constants we can check
15276 whether they are zero extended or not. */
15277 if (((last0->dw_loc_opc == DW_OP_deref_size
15278 && last0->dw_loc_oprnd1.v.val_int <= GET_MODE_SIZE (op_mode))
15279 || (CONST_INT_P (XEXP (rtl, 0))
15280 && (unsigned HOST_WIDE_INT) INTVAL (XEXP (rtl, 0))
15281 == (INTVAL (XEXP (rtl, 0)) & GET_MODE_MASK (op_mode))))
15282 && ((last1->dw_loc_opc == DW_OP_deref_size
15283 && last1->dw_loc_oprnd1.v.val_int <= GET_MODE_SIZE (op_mode))
15284 || (CONST_INT_P (XEXP (rtl, 1))
15285 && (unsigned HOST_WIDE_INT) INTVAL (XEXP (rtl, 1))
15286 == (INTVAL (XEXP (rtl, 1)) & GET_MODE_MASK (op_mode)))))
15287 return compare_loc_descriptor (op, op0, op1);
15289 /* EQ/NE comparison against constant in narrower type than
15290 DWARF2_ADDR_SIZE can be performed either as
15291 DW_OP_const1u <shift> DW_OP_shl DW_OP_const* <cst << shift>
15292 DW_OP_{eq,ne}
15294 DW_OP_const*u <mode_mask> DW_OP_and DW_OP_const* <cst & mode_mask>
15295 DW_OP_{eq,ne}. Pick whatever is shorter. */
15296 if (CONST_INT_P (XEXP (rtl, 1))
15297 && GET_MODE_BITSIZE (op_mode) < HOST_BITS_PER_WIDE_INT
15298 && (size_of_int_loc_descriptor (shift) + 1
15299 + size_of_int_loc_descriptor (UINTVAL (XEXP (rtl, 1)) << shift)
15300 >= size_of_int_loc_descriptor (GET_MODE_MASK (op_mode)) + 1
15301 + size_of_int_loc_descriptor (INTVAL (XEXP (rtl, 1))
15302 & GET_MODE_MASK (op_mode))))
15304 add_loc_descr (&op0, int_loc_descriptor (GET_MODE_MASK (op_mode)));
15305 add_loc_descr (&op0, new_loc_descr (DW_OP_and, 0, 0));
15306 op1 = int_loc_descriptor (INTVAL (XEXP (rtl, 1))
15307 & GET_MODE_MASK (op_mode));
15308 return compare_loc_descriptor (op, op0, op1);
15311 add_loc_descr (&op0, int_loc_descriptor (shift));
15312 add_loc_descr (&op0, new_loc_descr (DW_OP_shl, 0, 0));
15313 if (CONST_INT_P (XEXP (rtl, 1)))
15314 op1 = int_loc_descriptor (UINTVAL (XEXP (rtl, 1)) << shift);
15315 else
15317 add_loc_descr (&op1, int_loc_descriptor (shift));
15318 add_loc_descr (&op1, new_loc_descr (DW_OP_shl, 0, 0));
15320 return compare_loc_descriptor (op, op0, op1);
15323 /* Return location descriptor for signed comparison OP RTL. */
15325 static dw_loc_descr_ref
15326 scompare_loc_descriptor (enum dwarf_location_atom op, rtx rtl,
15327 machine_mode mem_mode)
15329 machine_mode op_mode = GET_MODE (XEXP (rtl, 0));
15330 dw_loc_descr_ref op0, op1;
15332 if (op_mode == VOIDmode)
15333 op_mode = GET_MODE (XEXP (rtl, 1));
15334 if (op_mode == VOIDmode)
15335 return NULL;
15337 scalar_int_mode int_op_mode;
15338 if (dwarf_strict
15339 && dwarf_version < 5
15340 && (!is_a <scalar_int_mode> (op_mode, &int_op_mode)
15341 || GET_MODE_SIZE (int_op_mode) > DWARF2_ADDR_SIZE))
15342 return NULL;
15344 op0 = mem_loc_descriptor (XEXP (rtl, 0), op_mode, mem_mode,
15345 VAR_INIT_STATUS_INITIALIZED);
15346 op1 = mem_loc_descriptor (XEXP (rtl, 1), op_mode, mem_mode,
15347 VAR_INIT_STATUS_INITIALIZED);
15349 if (op0 == NULL || op1 == NULL)
15350 return NULL;
15352 if (is_a <scalar_int_mode> (op_mode, &int_op_mode))
15354 if (GET_MODE_SIZE (int_op_mode) < DWARF2_ADDR_SIZE)
15355 return scompare_loc_descriptor_narrow (op, rtl, int_op_mode, op0, op1);
15357 if (GET_MODE_SIZE (int_op_mode) > DWARF2_ADDR_SIZE)
15358 return scompare_loc_descriptor_wide (op, int_op_mode, op0, op1);
15360 return compare_loc_descriptor (op, op0, op1);
15363 /* Return location descriptor for unsigned comparison OP RTL. */
15365 static dw_loc_descr_ref
15366 ucompare_loc_descriptor (enum dwarf_location_atom op, rtx rtl,
15367 machine_mode mem_mode)
15369 dw_loc_descr_ref op0, op1;
15371 machine_mode test_op_mode = GET_MODE (XEXP (rtl, 0));
15372 if (test_op_mode == VOIDmode)
15373 test_op_mode = GET_MODE (XEXP (rtl, 1));
15375 scalar_int_mode op_mode;
15376 if (!is_a <scalar_int_mode> (test_op_mode, &op_mode))
15377 return NULL;
15379 if (dwarf_strict
15380 && dwarf_version < 5
15381 && GET_MODE_SIZE (op_mode) > DWARF2_ADDR_SIZE)
15382 return NULL;
15384 op0 = mem_loc_descriptor (XEXP (rtl, 0), op_mode, mem_mode,
15385 VAR_INIT_STATUS_INITIALIZED);
15386 op1 = mem_loc_descriptor (XEXP (rtl, 1), op_mode, mem_mode,
15387 VAR_INIT_STATUS_INITIALIZED);
15389 if (op0 == NULL || op1 == NULL)
15390 return NULL;
15392 if (GET_MODE_SIZE (op_mode) < DWARF2_ADDR_SIZE)
15394 HOST_WIDE_INT mask = GET_MODE_MASK (op_mode);
15395 dw_loc_descr_ref last0, last1;
15396 for (last0 = op0; last0->dw_loc_next != NULL; last0 = last0->dw_loc_next)
15398 for (last1 = op1; last1->dw_loc_next != NULL; last1 = last1->dw_loc_next)
15400 if (CONST_INT_P (XEXP (rtl, 0)))
15401 op0 = int_loc_descriptor (INTVAL (XEXP (rtl, 0)) & mask);
15402 /* deref_size zero extends, so no need to mask it again. */
15403 else if (last0->dw_loc_opc != DW_OP_deref_size
15404 || last0->dw_loc_oprnd1.v.val_int > GET_MODE_SIZE (op_mode))
15406 add_loc_descr (&op0, int_loc_descriptor (mask));
15407 add_loc_descr (&op0, new_loc_descr (DW_OP_and, 0, 0));
15409 if (CONST_INT_P (XEXP (rtl, 1)))
15410 op1 = int_loc_descriptor (INTVAL (XEXP (rtl, 1)) & mask);
15411 /* deref_size zero extends, so no need to mask it again. */
15412 else if (last1->dw_loc_opc != DW_OP_deref_size
15413 || last1->dw_loc_oprnd1.v.val_int > GET_MODE_SIZE (op_mode))
15415 add_loc_descr (&op1, int_loc_descriptor (mask));
15416 add_loc_descr (&op1, new_loc_descr (DW_OP_and, 0, 0));
15419 else if (GET_MODE_SIZE (op_mode) == DWARF2_ADDR_SIZE)
15421 HOST_WIDE_INT bias = 1;
15422 bias <<= (DWARF2_ADDR_SIZE * BITS_PER_UNIT - 1);
15423 add_loc_descr (&op0, new_loc_descr (DW_OP_plus_uconst, bias, 0));
15424 if (CONST_INT_P (XEXP (rtl, 1)))
15425 op1 = int_loc_descriptor ((unsigned HOST_WIDE_INT) bias
15426 + INTVAL (XEXP (rtl, 1)));
15427 else
15428 add_loc_descr (&op1, new_loc_descr (DW_OP_plus_uconst,
15429 bias, 0));
15431 return compare_loc_descriptor (op, op0, op1);
15434 /* Return location descriptor for {U,S}{MIN,MAX}. */
15436 static dw_loc_descr_ref
15437 minmax_loc_descriptor (rtx rtl, machine_mode mode,
15438 machine_mode mem_mode)
15440 enum dwarf_location_atom op;
15441 dw_loc_descr_ref op0, op1, ret;
15442 dw_loc_descr_ref bra_node, drop_node;
15444 scalar_int_mode int_mode;
15445 if (dwarf_strict
15446 && dwarf_version < 5
15447 && (!is_a <scalar_int_mode> (mode, &int_mode)
15448 || GET_MODE_SIZE (int_mode) > DWARF2_ADDR_SIZE))
15449 return NULL;
15451 op0 = mem_loc_descriptor (XEXP (rtl, 0), mode, mem_mode,
15452 VAR_INIT_STATUS_INITIALIZED);
15453 op1 = mem_loc_descriptor (XEXP (rtl, 1), mode, mem_mode,
15454 VAR_INIT_STATUS_INITIALIZED);
15456 if (op0 == NULL || op1 == NULL)
15457 return NULL;
15459 add_loc_descr (&op0, new_loc_descr (DW_OP_dup, 0, 0));
15460 add_loc_descr (&op1, new_loc_descr (DW_OP_swap, 0, 0));
15461 add_loc_descr (&op1, new_loc_descr (DW_OP_over, 0, 0));
15462 if (GET_CODE (rtl) == UMIN || GET_CODE (rtl) == UMAX)
15464 /* Checked by the caller. */
15465 int_mode = as_a <scalar_int_mode> (mode);
15466 if (GET_MODE_SIZE (int_mode) < DWARF2_ADDR_SIZE)
15468 HOST_WIDE_INT mask = GET_MODE_MASK (int_mode);
15469 add_loc_descr (&op0, int_loc_descriptor (mask));
15470 add_loc_descr (&op0, new_loc_descr (DW_OP_and, 0, 0));
15471 add_loc_descr (&op1, int_loc_descriptor (mask));
15472 add_loc_descr (&op1, new_loc_descr (DW_OP_and, 0, 0));
15474 else if (GET_MODE_SIZE (int_mode) == DWARF2_ADDR_SIZE)
15476 HOST_WIDE_INT bias = 1;
15477 bias <<= (DWARF2_ADDR_SIZE * BITS_PER_UNIT - 1);
15478 add_loc_descr (&op0, new_loc_descr (DW_OP_plus_uconst, bias, 0));
15479 add_loc_descr (&op1, new_loc_descr (DW_OP_plus_uconst, bias, 0));
15482 else if (is_a <scalar_int_mode> (mode, &int_mode)
15483 && GET_MODE_SIZE (int_mode) < DWARF2_ADDR_SIZE)
15485 int shift = (DWARF2_ADDR_SIZE - GET_MODE_SIZE (int_mode)) * BITS_PER_UNIT;
15486 add_loc_descr (&op0, int_loc_descriptor (shift));
15487 add_loc_descr (&op0, new_loc_descr (DW_OP_shl, 0, 0));
15488 add_loc_descr (&op1, int_loc_descriptor (shift));
15489 add_loc_descr (&op1, new_loc_descr (DW_OP_shl, 0, 0));
15491 else if (is_a <scalar_int_mode> (mode, &int_mode)
15492 && GET_MODE_SIZE (int_mode) > DWARF2_ADDR_SIZE)
15494 dw_die_ref type_die = base_type_for_mode (int_mode, 0);
15495 dw_loc_descr_ref cvt;
15496 if (type_die == NULL)
15497 return NULL;
15498 cvt = new_loc_descr (dwarf_OP (DW_OP_convert), 0, 0);
15499 cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
15500 cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die;
15501 cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
15502 add_loc_descr (&op0, cvt);
15503 cvt = new_loc_descr (dwarf_OP (DW_OP_convert), 0, 0);
15504 cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
15505 cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die;
15506 cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
15507 add_loc_descr (&op1, cvt);
15510 if (GET_CODE (rtl) == SMIN || GET_CODE (rtl) == UMIN)
15511 op = DW_OP_lt;
15512 else
15513 op = DW_OP_gt;
15514 ret = op0;
15515 add_loc_descr (&ret, op1);
15516 add_loc_descr (&ret, new_loc_descr (op, 0, 0));
15517 bra_node = new_loc_descr (DW_OP_bra, 0, 0);
15518 add_loc_descr (&ret, bra_node);
15519 add_loc_descr (&ret, new_loc_descr (DW_OP_swap, 0, 0));
15520 drop_node = new_loc_descr (DW_OP_drop, 0, 0);
15521 add_loc_descr (&ret, drop_node);
15522 bra_node->dw_loc_oprnd1.val_class = dw_val_class_loc;
15523 bra_node->dw_loc_oprnd1.v.val_loc = drop_node;
15524 if ((GET_CODE (rtl) == SMIN || GET_CODE (rtl) == SMAX)
15525 && is_a <scalar_int_mode> (mode, &int_mode)
15526 && GET_MODE_SIZE (int_mode) > DWARF2_ADDR_SIZE)
15527 ret = convert_descriptor_to_mode (int_mode, ret);
15528 return ret;
15531 /* Helper function for mem_loc_descriptor. Perform OP binary op,
15532 but after converting arguments to type_die, afterwards
15533 convert back to unsigned. */
15535 static dw_loc_descr_ref
15536 typed_binop (enum dwarf_location_atom op, rtx rtl, dw_die_ref type_die,
15537 scalar_int_mode mode, machine_mode mem_mode)
15539 dw_loc_descr_ref cvt, op0, op1;
15541 if (type_die == NULL)
15542 return NULL;
15543 op0 = mem_loc_descriptor (XEXP (rtl, 0), mode, mem_mode,
15544 VAR_INIT_STATUS_INITIALIZED);
15545 op1 = mem_loc_descriptor (XEXP (rtl, 1), mode, mem_mode,
15546 VAR_INIT_STATUS_INITIALIZED);
15547 if (op0 == NULL || op1 == NULL)
15548 return NULL;
15549 cvt = new_loc_descr (dwarf_OP (DW_OP_convert), 0, 0);
15550 cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
15551 cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die;
15552 cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
15553 add_loc_descr (&op0, cvt);
15554 cvt = new_loc_descr (dwarf_OP (DW_OP_convert), 0, 0);
15555 cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
15556 cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die;
15557 cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
15558 add_loc_descr (&op1, cvt);
15559 add_loc_descr (&op0, op1);
15560 add_loc_descr (&op0, new_loc_descr (op, 0, 0));
15561 return convert_descriptor_to_mode (mode, op0);
15564 /* CLZ (where constV is CLZ_DEFINED_VALUE_AT_ZERO computed value,
15565 const0 is DW_OP_lit0 or corresponding typed constant,
15566 const1 is DW_OP_lit1 or corresponding typed constant
15567 and constMSB is constant with just the MSB bit set
15568 for the mode):
15569 DW_OP_dup DW_OP_bra <L1> DW_OP_drop constV DW_OP_skip <L4>
15570 L1: const0 DW_OP_swap
15571 L2: DW_OP_dup constMSB DW_OP_and DW_OP_bra <L3> const1 DW_OP_shl
15572 DW_OP_swap DW_OP_plus_uconst <1> DW_OP_swap DW_OP_skip <L2>
15573 L3: DW_OP_drop
15574 L4: DW_OP_nop
15576 CTZ is similar:
15577 DW_OP_dup DW_OP_bra <L1> DW_OP_drop constV DW_OP_skip <L4>
15578 L1: const0 DW_OP_swap
15579 L2: DW_OP_dup const1 DW_OP_and DW_OP_bra <L3> const1 DW_OP_shr
15580 DW_OP_swap DW_OP_plus_uconst <1> DW_OP_swap DW_OP_skip <L2>
15581 L3: DW_OP_drop
15582 L4: DW_OP_nop
15584 FFS is similar:
15585 DW_OP_dup DW_OP_bra <L1> DW_OP_drop const0 DW_OP_skip <L4>
15586 L1: const1 DW_OP_swap
15587 L2: DW_OP_dup const1 DW_OP_and DW_OP_bra <L3> const1 DW_OP_shr
15588 DW_OP_swap DW_OP_plus_uconst <1> DW_OP_swap DW_OP_skip <L2>
15589 L3: DW_OP_drop
15590 L4: DW_OP_nop */
15592 static dw_loc_descr_ref
15593 clz_loc_descriptor (rtx rtl, scalar_int_mode mode,
15594 machine_mode mem_mode)
15596 dw_loc_descr_ref op0, ret, tmp;
15597 HOST_WIDE_INT valv;
15598 dw_loc_descr_ref l1jump, l1label;
15599 dw_loc_descr_ref l2jump, l2label;
15600 dw_loc_descr_ref l3jump, l3label;
15601 dw_loc_descr_ref l4jump, l4label;
15602 rtx msb;
15604 if (GET_MODE (XEXP (rtl, 0)) != mode)
15605 return NULL;
15607 op0 = mem_loc_descriptor (XEXP (rtl, 0), mode, mem_mode,
15608 VAR_INIT_STATUS_INITIALIZED);
15609 if (op0 == NULL)
15610 return NULL;
15611 ret = op0;
15612 if (GET_CODE (rtl) == CLZ)
15614 if (!CLZ_DEFINED_VALUE_AT_ZERO (mode, valv))
15615 valv = GET_MODE_BITSIZE (mode);
15617 else if (GET_CODE (rtl) == FFS)
15618 valv = 0;
15619 else if (!CTZ_DEFINED_VALUE_AT_ZERO (mode, valv))
15620 valv = GET_MODE_BITSIZE (mode);
15621 add_loc_descr (&ret, new_loc_descr (DW_OP_dup, 0, 0));
15622 l1jump = new_loc_descr (DW_OP_bra, 0, 0);
15623 add_loc_descr (&ret, l1jump);
15624 add_loc_descr (&ret, new_loc_descr (DW_OP_drop, 0, 0));
15625 tmp = mem_loc_descriptor (GEN_INT (valv), mode, mem_mode,
15626 VAR_INIT_STATUS_INITIALIZED);
15627 if (tmp == NULL)
15628 return NULL;
15629 add_loc_descr (&ret, tmp);
15630 l4jump = new_loc_descr (DW_OP_skip, 0, 0);
15631 add_loc_descr (&ret, l4jump);
15632 l1label = mem_loc_descriptor (GET_CODE (rtl) == FFS
15633 ? const1_rtx : const0_rtx,
15634 mode, mem_mode,
15635 VAR_INIT_STATUS_INITIALIZED);
15636 if (l1label == NULL)
15637 return NULL;
15638 add_loc_descr (&ret, l1label);
15639 add_loc_descr (&ret, new_loc_descr (DW_OP_swap, 0, 0));
15640 l2label = new_loc_descr (DW_OP_dup, 0, 0);
15641 add_loc_descr (&ret, l2label);
15642 if (GET_CODE (rtl) != CLZ)
15643 msb = const1_rtx;
15644 else if (GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT)
15645 msb = GEN_INT (HOST_WIDE_INT_1U
15646 << (GET_MODE_BITSIZE (mode) - 1));
15647 else
15648 msb = immed_wide_int_const
15649 (wi::set_bit_in_zero (GET_MODE_PRECISION (mode) - 1,
15650 GET_MODE_PRECISION (mode)), mode);
15651 if (GET_CODE (msb) == CONST_INT && INTVAL (msb) < 0)
15652 tmp = new_loc_descr (HOST_BITS_PER_WIDE_INT == 32
15653 ? DW_OP_const4u : HOST_BITS_PER_WIDE_INT == 64
15654 ? DW_OP_const8u : DW_OP_constu, INTVAL (msb), 0);
15655 else
15656 tmp = mem_loc_descriptor (msb, mode, mem_mode,
15657 VAR_INIT_STATUS_INITIALIZED);
15658 if (tmp == NULL)
15659 return NULL;
15660 add_loc_descr (&ret, tmp);
15661 add_loc_descr (&ret, new_loc_descr (DW_OP_and, 0, 0));
15662 l3jump = new_loc_descr (DW_OP_bra, 0, 0);
15663 add_loc_descr (&ret, l3jump);
15664 tmp = mem_loc_descriptor (const1_rtx, mode, mem_mode,
15665 VAR_INIT_STATUS_INITIALIZED);
15666 if (tmp == NULL)
15667 return NULL;
15668 add_loc_descr (&ret, tmp);
15669 add_loc_descr (&ret, new_loc_descr (GET_CODE (rtl) == CLZ
15670 ? DW_OP_shl : DW_OP_shr, 0, 0));
15671 add_loc_descr (&ret, new_loc_descr (DW_OP_swap, 0, 0));
15672 add_loc_descr (&ret, new_loc_descr (DW_OP_plus_uconst, 1, 0));
15673 add_loc_descr (&ret, new_loc_descr (DW_OP_swap, 0, 0));
15674 l2jump = new_loc_descr (DW_OP_skip, 0, 0);
15675 add_loc_descr (&ret, l2jump);
15676 l3label = new_loc_descr (DW_OP_drop, 0, 0);
15677 add_loc_descr (&ret, l3label);
15678 l4label = new_loc_descr (DW_OP_nop, 0, 0);
15679 add_loc_descr (&ret, l4label);
15680 l1jump->dw_loc_oprnd1.val_class = dw_val_class_loc;
15681 l1jump->dw_loc_oprnd1.v.val_loc = l1label;
15682 l2jump->dw_loc_oprnd1.val_class = dw_val_class_loc;
15683 l2jump->dw_loc_oprnd1.v.val_loc = l2label;
15684 l3jump->dw_loc_oprnd1.val_class = dw_val_class_loc;
15685 l3jump->dw_loc_oprnd1.v.val_loc = l3label;
15686 l4jump->dw_loc_oprnd1.val_class = dw_val_class_loc;
15687 l4jump->dw_loc_oprnd1.v.val_loc = l4label;
15688 return ret;
15691 /* POPCOUNT (const0 is DW_OP_lit0 or corresponding typed constant,
15692 const1 is DW_OP_lit1 or corresponding typed constant):
15693 const0 DW_OP_swap
15694 L1: DW_OP_dup DW_OP_bra <L2> DW_OP_dup DW_OP_rot const1 DW_OP_and
15695 DW_OP_plus DW_OP_swap const1 DW_OP_shr DW_OP_skip <L1>
15696 L2: DW_OP_drop
15698 PARITY is similar:
15699 L1: DW_OP_dup DW_OP_bra <L2> DW_OP_dup DW_OP_rot const1 DW_OP_and
15700 DW_OP_xor DW_OP_swap const1 DW_OP_shr DW_OP_skip <L1>
15701 L2: DW_OP_drop */
15703 static dw_loc_descr_ref
15704 popcount_loc_descriptor (rtx rtl, scalar_int_mode mode,
15705 machine_mode mem_mode)
15707 dw_loc_descr_ref op0, ret, tmp;
15708 dw_loc_descr_ref l1jump, l1label;
15709 dw_loc_descr_ref l2jump, l2label;
15711 if (GET_MODE (XEXP (rtl, 0)) != mode)
15712 return NULL;
15714 op0 = mem_loc_descriptor (XEXP (rtl, 0), mode, mem_mode,
15715 VAR_INIT_STATUS_INITIALIZED);
15716 if (op0 == NULL)
15717 return NULL;
15718 ret = op0;
15719 tmp = mem_loc_descriptor (const0_rtx, mode, mem_mode,
15720 VAR_INIT_STATUS_INITIALIZED);
15721 if (tmp == NULL)
15722 return NULL;
15723 add_loc_descr (&ret, tmp);
15724 add_loc_descr (&ret, new_loc_descr (DW_OP_swap, 0, 0));
15725 l1label = new_loc_descr (DW_OP_dup, 0, 0);
15726 add_loc_descr (&ret, l1label);
15727 l2jump = new_loc_descr (DW_OP_bra, 0, 0);
15728 add_loc_descr (&ret, l2jump);
15729 add_loc_descr (&ret, new_loc_descr (DW_OP_dup, 0, 0));
15730 add_loc_descr (&ret, new_loc_descr (DW_OP_rot, 0, 0));
15731 tmp = mem_loc_descriptor (const1_rtx, mode, mem_mode,
15732 VAR_INIT_STATUS_INITIALIZED);
15733 if (tmp == NULL)
15734 return NULL;
15735 add_loc_descr (&ret, tmp);
15736 add_loc_descr (&ret, new_loc_descr (DW_OP_and, 0, 0));
15737 add_loc_descr (&ret, new_loc_descr (GET_CODE (rtl) == POPCOUNT
15738 ? DW_OP_plus : DW_OP_xor, 0, 0));
15739 add_loc_descr (&ret, new_loc_descr (DW_OP_swap, 0, 0));
15740 tmp = mem_loc_descriptor (const1_rtx, mode, mem_mode,
15741 VAR_INIT_STATUS_INITIALIZED);
15742 add_loc_descr (&ret, tmp);
15743 add_loc_descr (&ret, new_loc_descr (DW_OP_shr, 0, 0));
15744 l1jump = new_loc_descr (DW_OP_skip, 0, 0);
15745 add_loc_descr (&ret, l1jump);
15746 l2label = new_loc_descr (DW_OP_drop, 0, 0);
15747 add_loc_descr (&ret, l2label);
15748 l1jump->dw_loc_oprnd1.val_class = dw_val_class_loc;
15749 l1jump->dw_loc_oprnd1.v.val_loc = l1label;
15750 l2jump->dw_loc_oprnd1.val_class = dw_val_class_loc;
15751 l2jump->dw_loc_oprnd1.v.val_loc = l2label;
15752 return ret;
15755 /* BSWAP (constS is initial shift count, either 56 or 24):
15756 constS const0
15757 L1: DW_OP_pick <2> constS DW_OP_pick <3> DW_OP_minus DW_OP_shr
15758 const255 DW_OP_and DW_OP_pick <2> DW_OP_shl DW_OP_or
15759 DW_OP_swap DW_OP_dup const0 DW_OP_eq DW_OP_bra <L2> const8
15760 DW_OP_minus DW_OP_swap DW_OP_skip <L1>
15761 L2: DW_OP_drop DW_OP_swap DW_OP_drop */
15763 static dw_loc_descr_ref
15764 bswap_loc_descriptor (rtx rtl, scalar_int_mode mode,
15765 machine_mode mem_mode)
15767 dw_loc_descr_ref op0, ret, tmp;
15768 dw_loc_descr_ref l1jump, l1label;
15769 dw_loc_descr_ref l2jump, l2label;
15771 if (BITS_PER_UNIT != 8
15772 || (GET_MODE_BITSIZE (mode) != 32
15773 && GET_MODE_BITSIZE (mode) != 64))
15774 return NULL;
15776 op0 = mem_loc_descriptor (XEXP (rtl, 0), mode, mem_mode,
15777 VAR_INIT_STATUS_INITIALIZED);
15778 if (op0 == NULL)
15779 return NULL;
15781 ret = op0;
15782 tmp = mem_loc_descriptor (GEN_INT (GET_MODE_BITSIZE (mode) - 8),
15783 mode, mem_mode,
15784 VAR_INIT_STATUS_INITIALIZED);
15785 if (tmp == NULL)
15786 return NULL;
15787 add_loc_descr (&ret, tmp);
15788 tmp = mem_loc_descriptor (const0_rtx, mode, mem_mode,
15789 VAR_INIT_STATUS_INITIALIZED);
15790 if (tmp == NULL)
15791 return NULL;
15792 add_loc_descr (&ret, tmp);
15793 l1label = new_loc_descr (DW_OP_pick, 2, 0);
15794 add_loc_descr (&ret, l1label);
15795 tmp = mem_loc_descriptor (GEN_INT (GET_MODE_BITSIZE (mode) - 8),
15796 mode, mem_mode,
15797 VAR_INIT_STATUS_INITIALIZED);
15798 add_loc_descr (&ret, tmp);
15799 add_loc_descr (&ret, new_loc_descr (DW_OP_pick, 3, 0));
15800 add_loc_descr (&ret, new_loc_descr (DW_OP_minus, 0, 0));
15801 add_loc_descr (&ret, new_loc_descr (DW_OP_shr, 0, 0));
15802 tmp = mem_loc_descriptor (GEN_INT (255), mode, mem_mode,
15803 VAR_INIT_STATUS_INITIALIZED);
15804 if (tmp == NULL)
15805 return NULL;
15806 add_loc_descr (&ret, tmp);
15807 add_loc_descr (&ret, new_loc_descr (DW_OP_and, 0, 0));
15808 add_loc_descr (&ret, new_loc_descr (DW_OP_pick, 2, 0));
15809 add_loc_descr (&ret, new_loc_descr (DW_OP_shl, 0, 0));
15810 add_loc_descr (&ret, new_loc_descr (DW_OP_or, 0, 0));
15811 add_loc_descr (&ret, new_loc_descr (DW_OP_swap, 0, 0));
15812 add_loc_descr (&ret, new_loc_descr (DW_OP_dup, 0, 0));
15813 tmp = mem_loc_descriptor (const0_rtx, mode, mem_mode,
15814 VAR_INIT_STATUS_INITIALIZED);
15815 add_loc_descr (&ret, tmp);
15816 add_loc_descr (&ret, new_loc_descr (DW_OP_eq, 0, 0));
15817 l2jump = new_loc_descr (DW_OP_bra, 0, 0);
15818 add_loc_descr (&ret, l2jump);
15819 tmp = mem_loc_descriptor (GEN_INT (8), mode, mem_mode,
15820 VAR_INIT_STATUS_INITIALIZED);
15821 add_loc_descr (&ret, tmp);
15822 add_loc_descr (&ret, new_loc_descr (DW_OP_minus, 0, 0));
15823 add_loc_descr (&ret, new_loc_descr (DW_OP_swap, 0, 0));
15824 l1jump = new_loc_descr (DW_OP_skip, 0, 0);
15825 add_loc_descr (&ret, l1jump);
15826 l2label = new_loc_descr (DW_OP_drop, 0, 0);
15827 add_loc_descr (&ret, l2label);
15828 add_loc_descr (&ret, new_loc_descr (DW_OP_swap, 0, 0));
15829 add_loc_descr (&ret, new_loc_descr (DW_OP_drop, 0, 0));
15830 l1jump->dw_loc_oprnd1.val_class = dw_val_class_loc;
15831 l1jump->dw_loc_oprnd1.v.val_loc = l1label;
15832 l2jump->dw_loc_oprnd1.val_class = dw_val_class_loc;
15833 l2jump->dw_loc_oprnd1.v.val_loc = l2label;
15834 return ret;
15837 /* ROTATE (constMASK is mode mask, BITSIZE is bitsize of mode):
15838 DW_OP_over DW_OP_over DW_OP_shl [ constMASK DW_OP_and ] DW_OP_rot
15839 [ DW_OP_swap constMASK DW_OP_and DW_OP_swap ] DW_OP_neg
15840 DW_OP_plus_uconst <BITSIZE> DW_OP_shr DW_OP_or
15842 ROTATERT is similar:
15843 DW_OP_over DW_OP_over DW_OP_neg DW_OP_plus_uconst <BITSIZE>
15844 DW_OP_shl [ constMASK DW_OP_and ] DW_OP_rot
15845 [ DW_OP_swap constMASK DW_OP_and DW_OP_swap ] DW_OP_shr DW_OP_or */
15847 static dw_loc_descr_ref
15848 rotate_loc_descriptor (rtx rtl, scalar_int_mode mode,
15849 machine_mode mem_mode)
15851 rtx rtlop1 = XEXP (rtl, 1);
15852 dw_loc_descr_ref op0, op1, ret, mask[2] = { NULL, NULL };
15853 int i;
15855 if (is_narrower_int_mode (GET_MODE (rtlop1), mode))
15856 rtlop1 = gen_rtx_ZERO_EXTEND (mode, rtlop1);
15857 op0 = mem_loc_descriptor (XEXP (rtl, 0), mode, mem_mode,
15858 VAR_INIT_STATUS_INITIALIZED);
15859 op1 = mem_loc_descriptor (rtlop1, mode, mem_mode,
15860 VAR_INIT_STATUS_INITIALIZED);
15861 if (op0 == NULL || op1 == NULL)
15862 return NULL;
15863 if (GET_MODE_SIZE (mode) < DWARF2_ADDR_SIZE)
15864 for (i = 0; i < 2; i++)
15866 if (GET_MODE_BITSIZE (mode) < HOST_BITS_PER_WIDE_INT)
15867 mask[i] = mem_loc_descriptor (GEN_INT (GET_MODE_MASK (mode)),
15868 mode, mem_mode,
15869 VAR_INIT_STATUS_INITIALIZED);
15870 else if (GET_MODE_BITSIZE (mode) == HOST_BITS_PER_WIDE_INT)
15871 mask[i] = new_loc_descr (HOST_BITS_PER_WIDE_INT == 32
15872 ? DW_OP_const4u
15873 : HOST_BITS_PER_WIDE_INT == 64
15874 ? DW_OP_const8u : DW_OP_constu,
15875 GET_MODE_MASK (mode), 0);
15876 else
15877 mask[i] = NULL;
15878 if (mask[i] == NULL)
15879 return NULL;
15880 add_loc_descr (&mask[i], new_loc_descr (DW_OP_and, 0, 0));
15882 ret = op0;
15883 add_loc_descr (&ret, op1);
15884 add_loc_descr (&ret, new_loc_descr (DW_OP_over, 0, 0));
15885 add_loc_descr (&ret, new_loc_descr (DW_OP_over, 0, 0));
15886 if (GET_CODE (rtl) == ROTATERT)
15888 add_loc_descr (&ret, new_loc_descr (DW_OP_neg, 0, 0));
15889 add_loc_descr (&ret, new_loc_descr (DW_OP_plus_uconst,
15890 GET_MODE_BITSIZE (mode), 0));
15892 add_loc_descr (&ret, new_loc_descr (DW_OP_shl, 0, 0));
15893 if (mask[0] != NULL)
15894 add_loc_descr (&ret, mask[0]);
15895 add_loc_descr (&ret, new_loc_descr (DW_OP_rot, 0, 0));
15896 if (mask[1] != NULL)
15898 add_loc_descr (&ret, new_loc_descr (DW_OP_swap, 0, 0));
15899 add_loc_descr (&ret, mask[1]);
15900 add_loc_descr (&ret, new_loc_descr (DW_OP_swap, 0, 0));
15902 if (GET_CODE (rtl) == ROTATE)
15904 add_loc_descr (&ret, new_loc_descr (DW_OP_neg, 0, 0));
15905 add_loc_descr (&ret, new_loc_descr (DW_OP_plus_uconst,
15906 GET_MODE_BITSIZE (mode), 0));
15908 add_loc_descr (&ret, new_loc_descr (DW_OP_shr, 0, 0));
15909 add_loc_descr (&ret, new_loc_descr (DW_OP_or, 0, 0));
15910 return ret;
15913 /* Helper function for mem_loc_descriptor. Return DW_OP_GNU_parameter_ref
15914 for DEBUG_PARAMETER_REF RTL. */
15916 static dw_loc_descr_ref
15917 parameter_ref_descriptor (rtx rtl)
15919 dw_loc_descr_ref ret;
15920 dw_die_ref ref;
15922 if (dwarf_strict)
15923 return NULL;
15924 gcc_assert (TREE_CODE (DEBUG_PARAMETER_REF_DECL (rtl)) == PARM_DECL);
15925 /* With LTO during LTRANS we get the late DIE that refers to the early
15926 DIE, thus we add another indirection here. This seems to confuse
15927 gdb enough to make gcc.dg/guality/pr68860-1.c FAIL with LTO. */
15928 ref = lookup_decl_die (DEBUG_PARAMETER_REF_DECL (rtl));
15929 ret = new_loc_descr (DW_OP_GNU_parameter_ref, 0, 0);
15930 if (ref)
15932 ret->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
15933 ret->dw_loc_oprnd1.v.val_die_ref.die = ref;
15934 ret->dw_loc_oprnd1.v.val_die_ref.external = 0;
15936 else
15938 ret->dw_loc_oprnd1.val_class = dw_val_class_decl_ref;
15939 ret->dw_loc_oprnd1.v.val_decl_ref = DEBUG_PARAMETER_REF_DECL (rtl);
15941 return ret;
15944 /* The following routine converts the RTL for a variable or parameter
15945 (resident in memory) into an equivalent Dwarf representation of a
15946 mechanism for getting the address of that same variable onto the top of a
15947 hypothetical "address evaluation" stack.
15949 When creating memory location descriptors, we are effectively transforming
15950 the RTL for a memory-resident object into its Dwarf postfix expression
15951 equivalent. This routine recursively descends an RTL tree, turning
15952 it into Dwarf postfix code as it goes.
15954 MODE is the mode that should be assumed for the rtl if it is VOIDmode.
15956 MEM_MODE is the mode of the memory reference, needed to handle some
15957 autoincrement addressing modes.
15959 Return 0 if we can't represent the location. */
15961 dw_loc_descr_ref
15962 mem_loc_descriptor (rtx rtl, machine_mode mode,
15963 machine_mode mem_mode,
15964 enum var_init_status initialized)
15966 dw_loc_descr_ref mem_loc_result = NULL;
15967 enum dwarf_location_atom op;
15968 dw_loc_descr_ref op0, op1;
15969 rtx inner = NULL_RTX;
15970 poly_int64 offset;
15972 if (mode == VOIDmode)
15973 mode = GET_MODE (rtl);
15975 /* Note that for a dynamically sized array, the location we will generate a
15976 description of here will be the lowest numbered location which is
15977 actually within the array. That's *not* necessarily the same as the
15978 zeroth element of the array. */
15980 rtl = targetm.delegitimize_address (rtl);
15982 if (mode != GET_MODE (rtl) && GET_MODE (rtl) != VOIDmode)
15983 return NULL;
15985 scalar_int_mode int_mode = BImode, inner_mode, op1_mode;
15986 switch (GET_CODE (rtl))
15988 case POST_INC:
15989 case POST_DEC:
15990 case POST_MODIFY:
15991 return mem_loc_descriptor (XEXP (rtl, 0), mode, mem_mode, initialized);
15993 case SUBREG:
15994 /* The case of a subreg may arise when we have a local (register)
15995 variable or a formal (register) parameter which doesn't quite fill
15996 up an entire register. For now, just assume that it is
15997 legitimate to make the Dwarf info refer to the whole register which
15998 contains the given subreg. */
15999 if (!subreg_lowpart_p (rtl))
16000 break;
16001 inner = SUBREG_REG (rtl);
16002 /* FALLTHRU */
16003 case TRUNCATE:
16004 if (inner == NULL_RTX)
16005 inner = XEXP (rtl, 0);
16006 if (is_a <scalar_int_mode> (mode, &int_mode)
16007 && is_a <scalar_int_mode> (GET_MODE (inner), &inner_mode)
16008 && (GET_MODE_SIZE (int_mode) <= DWARF2_ADDR_SIZE
16009 #ifdef POINTERS_EXTEND_UNSIGNED
16010 || (int_mode == Pmode && mem_mode != VOIDmode)
16011 #endif
16013 && GET_MODE_SIZE (inner_mode) <= DWARF2_ADDR_SIZE)
16015 mem_loc_result = mem_loc_descriptor (inner,
16016 inner_mode,
16017 mem_mode, initialized);
16018 break;
16020 if (dwarf_strict && dwarf_version < 5)
16021 break;
16022 if (is_a <scalar_int_mode> (mode, &int_mode)
16023 && is_a <scalar_int_mode> (GET_MODE (inner), &inner_mode)
16024 ? GET_MODE_SIZE (int_mode) <= GET_MODE_SIZE (inner_mode)
16025 : known_eq (GET_MODE_SIZE (mode), GET_MODE_SIZE (GET_MODE (inner))))
16027 dw_die_ref type_die;
16028 dw_loc_descr_ref cvt;
16030 mem_loc_result = mem_loc_descriptor (inner,
16031 GET_MODE (inner),
16032 mem_mode, initialized);
16033 if (mem_loc_result == NULL)
16034 break;
16035 type_die = base_type_for_mode (mode, SCALAR_INT_MODE_P (mode));
16036 if (type_die == NULL)
16038 mem_loc_result = NULL;
16039 break;
16041 if (maybe_ne (GET_MODE_SIZE (mode), GET_MODE_SIZE (GET_MODE (inner))))
16042 cvt = new_loc_descr (dwarf_OP (DW_OP_convert), 0, 0);
16043 else
16044 cvt = new_loc_descr (dwarf_OP (DW_OP_reinterpret), 0, 0);
16045 cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
16046 cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die;
16047 cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
16048 add_loc_descr (&mem_loc_result, cvt);
16049 if (is_a <scalar_int_mode> (mode, &int_mode)
16050 && GET_MODE_SIZE (int_mode) <= DWARF2_ADDR_SIZE)
16052 /* Convert it to untyped afterwards. */
16053 cvt = new_loc_descr (dwarf_OP (DW_OP_convert), 0, 0);
16054 add_loc_descr (&mem_loc_result, cvt);
16057 break;
16059 case REG:
16060 if (!is_a <scalar_int_mode> (mode, &int_mode)
16061 || (GET_MODE_SIZE (int_mode) > DWARF2_ADDR_SIZE
16062 && rtl != arg_pointer_rtx
16063 && rtl != frame_pointer_rtx
16064 #ifdef POINTERS_EXTEND_UNSIGNED
16065 && (int_mode != Pmode || mem_mode == VOIDmode)
16066 #endif
16069 dw_die_ref type_die;
16070 unsigned int debugger_regnum;
16072 if (dwarf_strict && dwarf_version < 5)
16073 break;
16074 if (REGNO (rtl) >= FIRST_PSEUDO_REGISTER)
16075 break;
16076 type_die = base_type_for_mode (mode, SCALAR_INT_MODE_P (mode));
16077 if (type_die == NULL)
16078 break;
16080 debugger_regnum = debugger_reg_number (rtl);
16081 if (debugger_regnum == IGNORED_DWARF_REGNUM)
16082 break;
16083 mem_loc_result = new_loc_descr (dwarf_OP (DW_OP_regval_type),
16084 debugger_regnum, 0);
16085 mem_loc_result->dw_loc_oprnd2.val_class = dw_val_class_die_ref;
16086 mem_loc_result->dw_loc_oprnd2.v.val_die_ref.die = type_die;
16087 mem_loc_result->dw_loc_oprnd2.v.val_die_ref.external = 0;
16088 break;
16090 /* Whenever a register number forms a part of the description of the
16091 method for calculating the (dynamic) address of a memory resident
16092 object, DWARF rules require the register number be referred to as
16093 a "base register". This distinction is not based in any way upon
16094 what category of register the hardware believes the given register
16095 belongs to. This is strictly DWARF terminology we're dealing with
16096 here. Note that in cases where the location of a memory-resident
16097 data object could be expressed as: OP_ADD (OP_BASEREG (basereg),
16098 OP_CONST (0)) the actual DWARF location descriptor that we generate
16099 may just be OP_BASEREG (basereg). This may look deceptively like
16100 the object in question was allocated to a register (rather than in
16101 memory) so DWARF consumers need to be aware of the subtle
16102 distinction between OP_REG and OP_BASEREG. */
16103 if (REGNO (rtl) < FIRST_PSEUDO_REGISTER)
16104 mem_loc_result = based_loc_descr (rtl, 0, VAR_INIT_STATUS_INITIALIZED);
16105 else if (stack_realign_drap
16106 && crtl->drap_reg
16107 && crtl->args.internal_arg_pointer == rtl
16108 && REGNO (crtl->drap_reg) < FIRST_PSEUDO_REGISTER)
16110 /* If RTL is internal_arg_pointer, which has been optimized
16111 out, use DRAP instead. */
16112 mem_loc_result = based_loc_descr (crtl->drap_reg, 0,
16113 VAR_INIT_STATUS_INITIALIZED);
16115 break;
16117 case SIGN_EXTEND:
16118 case ZERO_EXTEND:
16119 if (!is_a <scalar_int_mode> (mode, &int_mode)
16120 || !is_a <scalar_int_mode> (GET_MODE (XEXP (rtl, 0)), &inner_mode))
16121 break;
16122 op0 = mem_loc_descriptor (XEXP (rtl, 0), inner_mode,
16123 mem_mode, VAR_INIT_STATUS_INITIALIZED);
16124 if (op0 == 0)
16125 break;
16126 else if (GET_CODE (rtl) == ZERO_EXTEND
16127 && GET_MODE_SIZE (int_mode) <= DWARF2_ADDR_SIZE
16128 && GET_MODE_BITSIZE (inner_mode) < HOST_BITS_PER_WIDE_INT
16129 /* If DW_OP_const{1,2,4}u won't be used, it is shorter
16130 to expand zero extend as two shifts instead of
16131 masking. */
16132 && GET_MODE_SIZE (inner_mode) <= 4)
16134 mem_loc_result = op0;
16135 add_loc_descr (&mem_loc_result,
16136 int_loc_descriptor (GET_MODE_MASK (inner_mode)));
16137 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_and, 0, 0));
16139 else if (GET_MODE_SIZE (int_mode) <= DWARF2_ADDR_SIZE)
16141 int shift = DWARF2_ADDR_SIZE - GET_MODE_SIZE (inner_mode);
16142 shift *= BITS_PER_UNIT;
16143 if (GET_CODE (rtl) == SIGN_EXTEND)
16144 op = DW_OP_shra;
16145 else
16146 op = DW_OP_shr;
16147 mem_loc_result = op0;
16148 add_loc_descr (&mem_loc_result, int_loc_descriptor (shift));
16149 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_shl, 0, 0));
16150 add_loc_descr (&mem_loc_result, int_loc_descriptor (shift));
16151 add_loc_descr (&mem_loc_result, new_loc_descr (op, 0, 0));
16153 else if (!dwarf_strict || dwarf_version >= 5)
16155 dw_die_ref type_die1, type_die2;
16156 dw_loc_descr_ref cvt;
16158 type_die1 = base_type_for_mode (inner_mode,
16159 GET_CODE (rtl) == ZERO_EXTEND);
16160 if (type_die1 == NULL)
16161 break;
16162 type_die2 = base_type_for_mode (int_mode, 1);
16163 if (type_die2 == NULL)
16164 break;
16165 mem_loc_result = op0;
16166 cvt = new_loc_descr (dwarf_OP (DW_OP_convert), 0, 0);
16167 cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
16168 cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die1;
16169 cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
16170 add_loc_descr (&mem_loc_result, cvt);
16171 cvt = new_loc_descr (dwarf_OP (DW_OP_convert), 0, 0);
16172 cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
16173 cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die2;
16174 cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
16175 add_loc_descr (&mem_loc_result, cvt);
16177 break;
16179 case MEM:
16181 rtx new_rtl = avoid_constant_pool_reference (rtl);
16182 if (new_rtl != rtl)
16184 mem_loc_result = mem_loc_descriptor (new_rtl, mode, mem_mode,
16185 initialized);
16186 if (mem_loc_result != NULL)
16187 return mem_loc_result;
16190 mem_loc_result = mem_loc_descriptor (XEXP (rtl, 0),
16191 get_address_mode (rtl), mode,
16192 VAR_INIT_STATUS_INITIALIZED);
16193 if (mem_loc_result == NULL)
16194 mem_loc_result = tls_mem_loc_descriptor (rtl);
16195 if (mem_loc_result != NULL)
16197 if (!is_a <scalar_int_mode> (mode, &int_mode)
16198 || GET_MODE_SIZE (int_mode) > DWARF2_ADDR_SIZE)
16200 dw_die_ref type_die;
16201 dw_loc_descr_ref deref;
16202 HOST_WIDE_INT size;
16204 if (dwarf_strict && dwarf_version < 5)
16205 return NULL;
16206 if (!GET_MODE_SIZE (mode).is_constant (&size))
16207 return NULL;
16208 type_die
16209 = base_type_for_mode (mode, SCALAR_INT_MODE_P (mode));
16210 if (type_die == NULL)
16211 return NULL;
16212 deref = new_loc_descr (dwarf_OP (DW_OP_deref_type), size, 0);
16213 deref->dw_loc_oprnd2.val_class = dw_val_class_die_ref;
16214 deref->dw_loc_oprnd2.v.val_die_ref.die = type_die;
16215 deref->dw_loc_oprnd2.v.val_die_ref.external = 0;
16216 add_loc_descr (&mem_loc_result, deref);
16218 else if (GET_MODE_SIZE (int_mode) == DWARF2_ADDR_SIZE)
16219 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_deref, 0, 0));
16220 else
16221 add_loc_descr (&mem_loc_result,
16222 new_loc_descr (DW_OP_deref_size,
16223 GET_MODE_SIZE (int_mode), 0));
16225 break;
16227 case LO_SUM:
16228 return mem_loc_descriptor (XEXP (rtl, 1), mode, mem_mode, initialized);
16230 case LABEL_REF:
16231 /* Some ports can transform a symbol ref into a label ref, because
16232 the symbol ref is too far away and has to be dumped into a constant
16233 pool. */
16234 case CONST:
16235 case SYMBOL_REF:
16236 case UNSPEC:
16237 if (!is_a <scalar_int_mode> (mode, &int_mode)
16238 || (GET_MODE_SIZE (int_mode) > DWARF2_ADDR_SIZE
16239 #ifdef POINTERS_EXTEND_UNSIGNED
16240 && (int_mode != Pmode || mem_mode == VOIDmode)
16241 #endif
16243 break;
16245 if (GET_CODE (rtl) == UNSPEC)
16247 /* If delegitimize_address couldn't do anything with the UNSPEC, we
16248 can't express it in the debug info. This can happen e.g. with some
16249 TLS UNSPECs. Allow UNSPECs formerly from CONST that the backend
16250 approves. */
16251 bool not_ok = false;
16252 subrtx_var_iterator::array_type array;
16253 FOR_EACH_SUBRTX_VAR (iter, array, rtl, ALL)
16254 if (*iter != rtl && !CONSTANT_P (*iter))
16256 not_ok = true;
16257 break;
16260 if (not_ok)
16261 break;
16263 FOR_EACH_SUBRTX_VAR (iter, array, rtl, ALL)
16264 if (!const_ok_for_output_1 (*iter))
16266 not_ok = true;
16267 break;
16270 if (not_ok)
16271 break;
16273 rtl = gen_rtx_CONST (GET_MODE (rtl), rtl);
16274 goto symref;
16277 if (GET_CODE (rtl) == SYMBOL_REF
16278 && SYMBOL_REF_TLS_MODEL (rtl) != TLS_MODEL_NONE)
16280 dw_loc_descr_ref temp;
16282 /* If this is not defined, we have no way to emit the data. */
16283 if (!targetm.have_tls || !targetm.asm_out.output_dwarf_dtprel)
16284 break;
16286 temp = new_addr_loc_descr (rtl, dtprel_true);
16288 /* We check for DWARF 5 here because gdb did not implement
16289 DW_OP_form_tls_address until after 7.12. */
16290 mem_loc_result = new_loc_descr ((dwarf_version >= 5
16291 ? DW_OP_form_tls_address
16292 : DW_OP_GNU_push_tls_address),
16293 0, 0);
16294 add_loc_descr (&mem_loc_result, temp);
16296 break;
16299 if (!const_ok_for_output (rtl))
16301 if (GET_CODE (rtl) == CONST)
16302 switch (GET_CODE (XEXP (rtl, 0)))
16304 case NOT:
16305 op = DW_OP_not;
16306 goto try_const_unop;
16307 case NEG:
16308 op = DW_OP_neg;
16309 goto try_const_unop;
16310 try_const_unop:
16311 rtx arg;
16312 arg = XEXP (XEXP (rtl, 0), 0);
16313 if (!CONSTANT_P (arg))
16314 arg = gen_rtx_CONST (int_mode, arg);
16315 op0 = mem_loc_descriptor (arg, int_mode, mem_mode,
16316 initialized);
16317 if (op0)
16319 mem_loc_result = op0;
16320 add_loc_descr (&mem_loc_result, new_loc_descr (op, 0, 0));
16322 break;
16323 default:
16324 mem_loc_result = mem_loc_descriptor (XEXP (rtl, 0), int_mode,
16325 mem_mode, initialized);
16326 break;
16328 break;
16331 symref:
16332 mem_loc_result = new_addr_loc_descr (rtl, dtprel_false);
16333 vec_safe_push (used_rtx_array, rtl);
16334 break;
16336 case CONCAT:
16337 case CONCATN:
16338 case VAR_LOCATION:
16339 case DEBUG_IMPLICIT_PTR:
16340 expansion_failed (NULL_TREE, rtl,
16341 "CONCAT/CONCATN/VAR_LOCATION is handled only by loc_descriptor");
16342 return 0;
16344 case ENTRY_VALUE:
16345 if (dwarf_strict && dwarf_version < 5)
16346 return NULL;
16347 if (REG_P (ENTRY_VALUE_EXP (rtl)))
16349 if (!is_a <scalar_int_mode> (mode, &int_mode)
16350 || GET_MODE_SIZE (int_mode) > DWARF2_ADDR_SIZE)
16351 op0 = mem_loc_descriptor (ENTRY_VALUE_EXP (rtl), mode,
16352 VOIDmode, VAR_INIT_STATUS_INITIALIZED);
16353 else
16355 unsigned int debugger_regnum = debugger_reg_number (ENTRY_VALUE_EXP (rtl));
16356 if (debugger_regnum == IGNORED_DWARF_REGNUM)
16357 return NULL;
16358 op0 = one_reg_loc_descriptor (debugger_regnum,
16359 VAR_INIT_STATUS_INITIALIZED);
16362 else if (MEM_P (ENTRY_VALUE_EXP (rtl))
16363 && REG_P (XEXP (ENTRY_VALUE_EXP (rtl), 0)))
16365 op0 = mem_loc_descriptor (ENTRY_VALUE_EXP (rtl), mode,
16366 VOIDmode, VAR_INIT_STATUS_INITIALIZED);
16367 if (op0 && op0->dw_loc_opc == DW_OP_fbreg)
16368 return NULL;
16370 else
16371 gcc_unreachable ();
16372 if (op0 == NULL)
16373 return NULL;
16374 mem_loc_result = new_loc_descr (dwarf_OP (DW_OP_entry_value), 0, 0);
16375 mem_loc_result->dw_loc_oprnd1.val_class = dw_val_class_loc;
16376 mem_loc_result->dw_loc_oprnd1.v.val_loc = op0;
16377 break;
16379 case DEBUG_PARAMETER_REF:
16380 mem_loc_result = parameter_ref_descriptor (rtl);
16381 break;
16383 case PRE_MODIFY:
16384 /* Extract the PLUS expression nested inside and fall into
16385 PLUS code below. */
16386 rtl = XEXP (rtl, 1);
16387 goto plus;
16389 case PRE_INC:
16390 case PRE_DEC:
16391 /* Turn these into a PLUS expression and fall into the PLUS code
16392 below. */
16393 rtl = gen_rtx_PLUS (mode, XEXP (rtl, 0),
16394 gen_int_mode (GET_CODE (rtl) == PRE_INC
16395 ? GET_MODE_UNIT_SIZE (mem_mode)
16396 : -GET_MODE_UNIT_SIZE (mem_mode),
16397 mode));
16399 /* fall through */
16401 case PLUS:
16402 plus:
16403 if (is_based_loc (rtl)
16404 && is_a <scalar_int_mode> (mode, &int_mode)
16405 && (GET_MODE_SIZE (int_mode) <= DWARF2_ADDR_SIZE
16406 || XEXP (rtl, 0) == arg_pointer_rtx
16407 || XEXP (rtl, 0) == frame_pointer_rtx))
16408 mem_loc_result = based_loc_descr (XEXP (rtl, 0),
16409 INTVAL (XEXP (rtl, 1)),
16410 VAR_INIT_STATUS_INITIALIZED);
16411 else
16413 mem_loc_result = mem_loc_descriptor (XEXP (rtl, 0), mode, mem_mode,
16414 VAR_INIT_STATUS_INITIALIZED);
16415 if (mem_loc_result == 0)
16416 break;
16418 if (CONST_INT_P (XEXP (rtl, 1))
16419 && (GET_MODE_SIZE (as_a <scalar_int_mode> (mode))
16420 <= DWARF2_ADDR_SIZE))
16421 loc_descr_plus_const (&mem_loc_result, INTVAL (XEXP (rtl, 1)));
16422 else
16424 op1 = mem_loc_descriptor (XEXP (rtl, 1), mode, mem_mode,
16425 VAR_INIT_STATUS_INITIALIZED);
16426 if (op1 == 0)
16427 return NULL;
16428 add_loc_descr (&mem_loc_result, op1);
16429 add_loc_descr (&mem_loc_result,
16430 new_loc_descr (DW_OP_plus, 0, 0));
16433 break;
16435 /* If a pseudo-reg is optimized away, it is possible for it to
16436 be replaced with a MEM containing a multiply or shift. */
16437 case MINUS:
16438 op = DW_OP_minus;
16439 goto do_binop;
16441 case MULT:
16442 op = DW_OP_mul;
16443 goto do_binop;
16445 case DIV:
16446 if ((!dwarf_strict || dwarf_version >= 5)
16447 && is_a <scalar_int_mode> (mode, &int_mode)
16448 && GET_MODE_SIZE (int_mode) > DWARF2_ADDR_SIZE)
16450 mem_loc_result = typed_binop (DW_OP_div, rtl,
16451 base_type_for_mode (mode, 0),
16452 int_mode, mem_mode);
16453 break;
16455 op = DW_OP_div;
16456 goto do_binop;
16458 case UMOD:
16459 op = DW_OP_mod;
16460 goto do_binop;
16462 case ASHIFT:
16463 op = DW_OP_shl;
16464 goto do_shift;
16466 case ASHIFTRT:
16467 op = DW_OP_shra;
16468 goto do_shift;
16470 case LSHIFTRT:
16471 op = DW_OP_shr;
16472 goto do_shift;
16474 do_shift:
16475 if (!is_a <scalar_int_mode> (mode, &int_mode))
16476 break;
16477 op0 = mem_loc_descriptor (XEXP (rtl, 0), int_mode, mem_mode,
16478 VAR_INIT_STATUS_INITIALIZED);
16480 rtx rtlop1 = XEXP (rtl, 1);
16481 if (is_a <scalar_int_mode> (GET_MODE (rtlop1), &op1_mode)
16482 && GET_MODE_BITSIZE (op1_mode) < GET_MODE_BITSIZE (int_mode))
16483 rtlop1 = gen_rtx_ZERO_EXTEND (int_mode, rtlop1);
16484 op1 = mem_loc_descriptor (rtlop1, int_mode, mem_mode,
16485 VAR_INIT_STATUS_INITIALIZED);
16488 if (op0 == 0 || op1 == 0)
16489 break;
16491 mem_loc_result = op0;
16492 add_loc_descr (&mem_loc_result, op1);
16493 add_loc_descr (&mem_loc_result, new_loc_descr (op, 0, 0));
16494 break;
16496 case AND:
16497 op = DW_OP_and;
16498 goto do_binop;
16500 case IOR:
16501 op = DW_OP_or;
16502 goto do_binop;
16504 case XOR:
16505 op = DW_OP_xor;
16506 goto do_binop;
16508 do_binop:
16509 op0 = mem_loc_descriptor (XEXP (rtl, 0), mode, mem_mode,
16510 VAR_INIT_STATUS_INITIALIZED);
16511 if (XEXP (rtl, 0) == XEXP (rtl, 1))
16513 if (op0 == 0)
16514 break;
16515 mem_loc_result = op0;
16516 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_dup, 0, 0));
16517 add_loc_descr (&mem_loc_result, new_loc_descr (op, 0, 0));
16518 break;
16520 op1 = mem_loc_descriptor (XEXP (rtl, 1), mode, mem_mode,
16521 VAR_INIT_STATUS_INITIALIZED);
16523 if (op0 == 0 || op1 == 0)
16524 break;
16526 mem_loc_result = op0;
16527 add_loc_descr (&mem_loc_result, op1);
16528 add_loc_descr (&mem_loc_result, new_loc_descr (op, 0, 0));
16529 break;
16531 case MOD:
16532 if ((!dwarf_strict || dwarf_version >= 5)
16533 && is_a <scalar_int_mode> (mode, &int_mode)
16534 && GET_MODE_SIZE (int_mode) > DWARF2_ADDR_SIZE)
16536 mem_loc_result = typed_binop (DW_OP_mod, rtl,
16537 base_type_for_mode (mode, 0),
16538 int_mode, mem_mode);
16539 break;
16542 op0 = mem_loc_descriptor (XEXP (rtl, 0), mode, mem_mode,
16543 VAR_INIT_STATUS_INITIALIZED);
16544 op1 = mem_loc_descriptor (XEXP (rtl, 1), mode, mem_mode,
16545 VAR_INIT_STATUS_INITIALIZED);
16547 if (op0 == 0 || op1 == 0)
16548 break;
16550 mem_loc_result = op0;
16551 add_loc_descr (&mem_loc_result, op1);
16552 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_over, 0, 0));
16553 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_over, 0, 0));
16554 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_div, 0, 0));
16555 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_mul, 0, 0));
16556 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_minus, 0, 0));
16557 break;
16559 case UDIV:
16560 if ((!dwarf_strict || dwarf_version >= 5)
16561 && is_a <scalar_int_mode> (mode, &int_mode))
16563 /* We can use a signed divide if the sign bit is not set. */
16564 if (GET_MODE_SIZE (int_mode) < DWARF2_ADDR_SIZE)
16566 op = DW_OP_div;
16567 goto do_binop;
16570 mem_loc_result = typed_binop (DW_OP_div, rtl,
16571 base_type_for_mode (int_mode, 1),
16572 int_mode, mem_mode);
16574 break;
16576 case NOT:
16577 op = DW_OP_not;
16578 goto do_unop;
16580 case ABS:
16581 op = DW_OP_abs;
16582 goto do_unop;
16584 case NEG:
16585 op = DW_OP_neg;
16586 goto do_unop;
16588 do_unop:
16589 op0 = mem_loc_descriptor (XEXP (rtl, 0), mode, mem_mode,
16590 VAR_INIT_STATUS_INITIALIZED);
16592 if (op0 == 0)
16593 break;
16595 mem_loc_result = op0;
16596 add_loc_descr (&mem_loc_result, new_loc_descr (op, 0, 0));
16597 break;
16599 case CONST_INT:
16600 if (!is_a <scalar_int_mode> (mode, &int_mode)
16601 || GET_MODE_SIZE (int_mode) <= DWARF2_ADDR_SIZE
16602 #ifdef POINTERS_EXTEND_UNSIGNED
16603 || (int_mode == Pmode
16604 && mem_mode != VOIDmode
16605 && trunc_int_for_mode (INTVAL (rtl), ptr_mode) == INTVAL (rtl))
16606 #endif
16609 mem_loc_result = int_loc_descriptor (INTVAL (rtl));
16610 break;
16612 if ((!dwarf_strict || dwarf_version >= 5)
16613 && (GET_MODE_BITSIZE (int_mode) == HOST_BITS_PER_WIDE_INT
16614 || GET_MODE_BITSIZE (int_mode) == HOST_BITS_PER_DOUBLE_INT))
16616 dw_die_ref type_die = base_type_for_mode (int_mode, 1);
16617 scalar_int_mode amode;
16618 if (type_die == NULL)
16619 return NULL;
16620 if (INTVAL (rtl) >= 0
16621 && (int_mode_for_size (DWARF2_ADDR_SIZE * BITS_PER_UNIT, 0)
16622 .exists (&amode))
16623 && trunc_int_for_mode (INTVAL (rtl), amode) == INTVAL (rtl)
16624 /* const DW_OP_convert <XXX> vs.
16625 DW_OP_const_type <XXX, 1, const>. */
16626 && size_of_int_loc_descriptor (INTVAL (rtl)) + 1 + 1
16627 < (unsigned long) 1 + 1 + 1 + GET_MODE_SIZE (int_mode))
16629 mem_loc_result = int_loc_descriptor (INTVAL (rtl));
16630 op0 = new_loc_descr (dwarf_OP (DW_OP_convert), 0, 0);
16631 op0->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
16632 op0->dw_loc_oprnd1.v.val_die_ref.die = type_die;
16633 op0->dw_loc_oprnd1.v.val_die_ref.external = 0;
16634 add_loc_descr (&mem_loc_result, op0);
16635 return mem_loc_result;
16637 mem_loc_result = new_loc_descr (dwarf_OP (DW_OP_const_type), 0,
16638 INTVAL (rtl));
16639 mem_loc_result->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
16640 mem_loc_result->dw_loc_oprnd1.v.val_die_ref.die = type_die;
16641 mem_loc_result->dw_loc_oprnd1.v.val_die_ref.external = 0;
16642 if (GET_MODE_BITSIZE (int_mode) == HOST_BITS_PER_WIDE_INT)
16643 mem_loc_result->dw_loc_oprnd2.val_class = dw_val_class_const;
16644 else
16646 mem_loc_result->dw_loc_oprnd2.val_class
16647 = dw_val_class_const_double;
16648 mem_loc_result->dw_loc_oprnd2.v.val_double
16649 = double_int::from_shwi (INTVAL (rtl));
16652 break;
16654 case CONST_DOUBLE:
16655 if (!dwarf_strict || dwarf_version >= 5)
16657 dw_die_ref type_die;
16659 /* Note that if TARGET_SUPPORTS_WIDE_INT == 0, a
16660 CONST_DOUBLE rtx could represent either a large integer
16661 or a floating-point constant. If TARGET_SUPPORTS_WIDE_INT != 0,
16662 the value is always a floating point constant.
16664 When it is an integer, a CONST_DOUBLE is used whenever
16665 the constant requires 2 HWIs to be adequately represented.
16666 We output CONST_DOUBLEs as blocks. */
16667 if (mode == VOIDmode
16668 || (GET_MODE (rtl) == VOIDmode
16669 && maybe_ne (GET_MODE_BITSIZE (mode),
16670 HOST_BITS_PER_DOUBLE_INT)))
16671 break;
16672 type_die = base_type_for_mode (mode, SCALAR_INT_MODE_P (mode));
16673 if (type_die == NULL)
16674 return NULL;
16675 mem_loc_result = new_loc_descr (dwarf_OP (DW_OP_const_type), 0, 0);
16676 mem_loc_result->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
16677 mem_loc_result->dw_loc_oprnd1.v.val_die_ref.die = type_die;
16678 mem_loc_result->dw_loc_oprnd1.v.val_die_ref.external = 0;
16679 #if TARGET_SUPPORTS_WIDE_INT == 0
16680 if (!SCALAR_FLOAT_MODE_P (mode))
16682 mem_loc_result->dw_loc_oprnd2.val_class
16683 = dw_val_class_const_double;
16684 mem_loc_result->dw_loc_oprnd2.v.val_double
16685 = rtx_to_double_int (rtl);
16687 else
16688 #endif
16690 scalar_float_mode float_mode = as_a <scalar_float_mode> (mode);
16691 unsigned int length = GET_MODE_SIZE (float_mode);
16692 unsigned char *array = ggc_vec_alloc<unsigned char> (length);
16693 unsigned int elt_size = insert_float (rtl, array);
16695 mem_loc_result->dw_loc_oprnd2.val_class = dw_val_class_vec;
16696 mem_loc_result->dw_loc_oprnd2.v.val_vec.length
16697 = length / elt_size;
16698 mem_loc_result->dw_loc_oprnd2.v.val_vec.elt_size = elt_size;
16699 mem_loc_result->dw_loc_oprnd2.v.val_vec.array = array;
16702 break;
16704 case CONST_WIDE_INT:
16705 if (!dwarf_strict || dwarf_version >= 5)
16707 dw_die_ref type_die;
16709 type_die = base_type_for_mode (mode, SCALAR_INT_MODE_P (mode));
16710 if (type_die == NULL)
16711 return NULL;
16712 mem_loc_result = new_loc_descr (dwarf_OP (DW_OP_const_type), 0, 0);
16713 mem_loc_result->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
16714 mem_loc_result->dw_loc_oprnd1.v.val_die_ref.die = type_die;
16715 mem_loc_result->dw_loc_oprnd1.v.val_die_ref.external = 0;
16716 mem_loc_result->dw_loc_oprnd2.val_class
16717 = dw_val_class_wide_int;
16718 mem_loc_result->dw_loc_oprnd2.v.val_wide = ggc_alloc<wide_int> ();
16719 *mem_loc_result->dw_loc_oprnd2.v.val_wide = rtx_mode_t (rtl, mode);
16721 break;
16723 case CONST_POLY_INT:
16724 mem_loc_result = int_loc_descriptor (rtx_to_poly_int64 (rtl));
16725 break;
16727 case EQ:
16728 mem_loc_result = scompare_loc_descriptor (DW_OP_eq, rtl, mem_mode);
16729 break;
16731 case GE:
16732 mem_loc_result = scompare_loc_descriptor (DW_OP_ge, rtl, mem_mode);
16733 break;
16735 case GT:
16736 mem_loc_result = scompare_loc_descriptor (DW_OP_gt, rtl, mem_mode);
16737 break;
16739 case LE:
16740 mem_loc_result = scompare_loc_descriptor (DW_OP_le, rtl, mem_mode);
16741 break;
16743 case LT:
16744 mem_loc_result = scompare_loc_descriptor (DW_OP_lt, rtl, mem_mode);
16745 break;
16747 case NE:
16748 mem_loc_result = scompare_loc_descriptor (DW_OP_ne, rtl, mem_mode);
16749 break;
16751 case GEU:
16752 mem_loc_result = ucompare_loc_descriptor (DW_OP_ge, rtl, mem_mode);
16753 break;
16755 case GTU:
16756 mem_loc_result = ucompare_loc_descriptor (DW_OP_gt, rtl, mem_mode);
16757 break;
16759 case LEU:
16760 mem_loc_result = ucompare_loc_descriptor (DW_OP_le, rtl, mem_mode);
16761 break;
16763 case LTU:
16764 mem_loc_result = ucompare_loc_descriptor (DW_OP_lt, rtl, mem_mode);
16765 break;
16767 case UMIN:
16768 case UMAX:
16769 if (!SCALAR_INT_MODE_P (mode))
16770 break;
16771 /* FALLTHRU */
16772 case SMIN:
16773 case SMAX:
16774 mem_loc_result = minmax_loc_descriptor (rtl, mode, mem_mode);
16775 break;
16777 case ZERO_EXTRACT:
16778 case SIGN_EXTRACT:
16779 if (CONST_INT_P (XEXP (rtl, 1))
16780 && CONST_INT_P (XEXP (rtl, 2))
16781 && is_a <scalar_int_mode> (mode, &int_mode)
16782 && is_a <scalar_int_mode> (GET_MODE (XEXP (rtl, 0)), &inner_mode)
16783 && GET_MODE_SIZE (int_mode) <= DWARF2_ADDR_SIZE
16784 && GET_MODE_SIZE (inner_mode) <= DWARF2_ADDR_SIZE
16785 && ((unsigned) INTVAL (XEXP (rtl, 1))
16786 + (unsigned) INTVAL (XEXP (rtl, 2))
16787 <= GET_MODE_BITSIZE (int_mode)))
16789 int shift, size;
16790 op0 = mem_loc_descriptor (XEXP (rtl, 0), inner_mode,
16791 mem_mode, VAR_INIT_STATUS_INITIALIZED);
16792 if (op0 == 0)
16793 break;
16794 if (GET_CODE (rtl) == SIGN_EXTRACT)
16795 op = DW_OP_shra;
16796 else
16797 op = DW_OP_shr;
16798 mem_loc_result = op0;
16799 size = INTVAL (XEXP (rtl, 1));
16800 shift = INTVAL (XEXP (rtl, 2));
16801 if (BITS_BIG_ENDIAN)
16802 shift = GET_MODE_BITSIZE (inner_mode) - shift - size;
16803 if (shift + size != (int) DWARF2_ADDR_SIZE)
16805 add_loc_descr (&mem_loc_result,
16806 int_loc_descriptor (DWARF2_ADDR_SIZE
16807 - shift - size));
16808 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_shl, 0, 0));
16810 if (size != (int) DWARF2_ADDR_SIZE)
16812 add_loc_descr (&mem_loc_result,
16813 int_loc_descriptor (DWARF2_ADDR_SIZE - size));
16814 add_loc_descr (&mem_loc_result, new_loc_descr (op, 0, 0));
16817 break;
16819 case IF_THEN_ELSE:
16821 dw_loc_descr_ref op2, bra_node, drop_node;
16822 op0 = mem_loc_descriptor (XEXP (rtl, 0),
16823 GET_MODE (XEXP (rtl, 0)) == VOIDmode
16824 ? word_mode : GET_MODE (XEXP (rtl, 0)),
16825 mem_mode, VAR_INIT_STATUS_INITIALIZED);
16826 op1 = mem_loc_descriptor (XEXP (rtl, 1), mode, mem_mode,
16827 VAR_INIT_STATUS_INITIALIZED);
16828 op2 = mem_loc_descriptor (XEXP (rtl, 2), mode, mem_mode,
16829 VAR_INIT_STATUS_INITIALIZED);
16830 if (op0 == NULL || op1 == NULL || op2 == NULL)
16831 break;
16833 mem_loc_result = op1;
16834 add_loc_descr (&mem_loc_result, op2);
16835 add_loc_descr (&mem_loc_result, op0);
16836 bra_node = new_loc_descr (DW_OP_bra, 0, 0);
16837 add_loc_descr (&mem_loc_result, bra_node);
16838 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_swap, 0, 0));
16839 drop_node = new_loc_descr (DW_OP_drop, 0, 0);
16840 add_loc_descr (&mem_loc_result, drop_node);
16841 bra_node->dw_loc_oprnd1.val_class = dw_val_class_loc;
16842 bra_node->dw_loc_oprnd1.v.val_loc = drop_node;
16844 break;
16846 case FLOAT_EXTEND:
16847 case FLOAT_TRUNCATE:
16848 case FLOAT:
16849 case UNSIGNED_FLOAT:
16850 case FIX:
16851 case UNSIGNED_FIX:
16852 if (!dwarf_strict || dwarf_version >= 5)
16854 dw_die_ref type_die;
16855 dw_loc_descr_ref cvt;
16857 op0 = mem_loc_descriptor (XEXP (rtl, 0), GET_MODE (XEXP (rtl, 0)),
16858 mem_mode, VAR_INIT_STATUS_INITIALIZED);
16859 if (op0 == NULL)
16860 break;
16861 if (is_a <scalar_int_mode> (GET_MODE (XEXP (rtl, 0)), &int_mode)
16862 && (GET_CODE (rtl) == FLOAT
16863 || GET_MODE_SIZE (int_mode) <= DWARF2_ADDR_SIZE))
16865 type_die = base_type_for_mode (int_mode,
16866 GET_CODE (rtl) == UNSIGNED_FLOAT);
16867 if (type_die == NULL)
16868 break;
16869 cvt = new_loc_descr (dwarf_OP (DW_OP_convert), 0, 0);
16870 cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
16871 cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die;
16872 cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
16873 add_loc_descr (&op0, cvt);
16875 type_die = base_type_for_mode (mode, GET_CODE (rtl) == UNSIGNED_FIX);
16876 if (type_die == NULL)
16877 break;
16878 cvt = new_loc_descr (dwarf_OP (DW_OP_convert), 0, 0);
16879 cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
16880 cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die;
16881 cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
16882 add_loc_descr (&op0, cvt);
16883 if (is_a <scalar_int_mode> (mode, &int_mode)
16884 && (GET_CODE (rtl) == FIX
16885 || GET_MODE_SIZE (int_mode) < DWARF2_ADDR_SIZE))
16887 op0 = convert_descriptor_to_mode (int_mode, op0);
16888 if (op0 == NULL)
16889 break;
16891 mem_loc_result = op0;
16893 break;
16895 case CLZ:
16896 case CTZ:
16897 case FFS:
16898 if (is_a <scalar_int_mode> (mode, &int_mode))
16899 mem_loc_result = clz_loc_descriptor (rtl, int_mode, mem_mode);
16900 break;
16902 case POPCOUNT:
16903 case PARITY:
16904 if (is_a <scalar_int_mode> (mode, &int_mode))
16905 mem_loc_result = popcount_loc_descriptor (rtl, int_mode, mem_mode);
16906 break;
16908 case BSWAP:
16909 if (is_a <scalar_int_mode> (mode, &int_mode))
16910 mem_loc_result = bswap_loc_descriptor (rtl, int_mode, mem_mode);
16911 break;
16913 case ROTATE:
16914 case ROTATERT:
16915 if (is_a <scalar_int_mode> (mode, &int_mode))
16916 mem_loc_result = rotate_loc_descriptor (rtl, int_mode, mem_mode);
16917 break;
16919 case COMPARE:
16920 /* In theory, we could implement the above. */
16921 /* DWARF cannot represent the unsigned compare operations
16922 natively. */
16923 case SS_MULT:
16924 case US_MULT:
16925 case SS_DIV:
16926 case US_DIV:
16927 case SS_PLUS:
16928 case US_PLUS:
16929 case SS_MINUS:
16930 case US_MINUS:
16931 case SS_NEG:
16932 case US_NEG:
16933 case SS_ABS:
16934 case SS_ASHIFT:
16935 case US_ASHIFT:
16936 case SS_TRUNCATE:
16937 case US_TRUNCATE:
16938 case UNORDERED:
16939 case ORDERED:
16940 case UNEQ:
16941 case UNGE:
16942 case UNGT:
16943 case UNLE:
16944 case UNLT:
16945 case LTGT:
16946 case FRACT_CONVERT:
16947 case UNSIGNED_FRACT_CONVERT:
16948 case SAT_FRACT:
16949 case UNSIGNED_SAT_FRACT:
16950 case SQRT:
16951 case ASM_OPERANDS:
16952 case VEC_MERGE:
16953 case VEC_SELECT:
16954 case VEC_CONCAT:
16955 case VEC_DUPLICATE:
16956 case VEC_SERIES:
16957 case HIGH:
16958 case FMA:
16959 case STRICT_LOW_PART:
16960 case CONST_VECTOR:
16961 case CONST_FIXED:
16962 case CLRSB:
16963 case CLOBBER:
16964 case SMUL_HIGHPART:
16965 case UMUL_HIGHPART:
16966 case BITREVERSE:
16967 case COPYSIGN:
16968 break;
16970 case CONST_STRING:
16971 resolve_one_addr (&rtl);
16972 goto symref;
16974 /* RTL sequences inside PARALLEL record a series of DWARF operations for
16975 the expression. An UNSPEC rtx represents a raw DWARF operation,
16976 new_loc_descr is called for it to build the operation directly.
16977 Otherwise mem_loc_descriptor is called recursively. */
16978 case PARALLEL:
16980 int index = 0;
16981 dw_loc_descr_ref exp_result = NULL;
16983 for (; index < XVECLEN (rtl, 0); index++)
16985 rtx elem = XVECEXP (rtl, 0, index);
16986 if (GET_CODE (elem) == UNSPEC)
16988 /* Each DWARF operation UNSPEC contain two operands, if
16989 one operand is not used for the operation, const0_rtx is
16990 passed. */
16991 gcc_assert (XVECLEN (elem, 0) == 2);
16993 HOST_WIDE_INT dw_op = XINT (elem, 1);
16994 HOST_WIDE_INT oprnd1 = INTVAL (XVECEXP (elem, 0, 0));
16995 HOST_WIDE_INT oprnd2 = INTVAL (XVECEXP (elem, 0, 1));
16996 exp_result
16997 = new_loc_descr ((enum dwarf_location_atom) dw_op, oprnd1,
16998 oprnd2);
17000 else
17001 exp_result
17002 = mem_loc_descriptor (elem, mode, mem_mode,
17003 VAR_INIT_STATUS_INITIALIZED);
17005 if (!mem_loc_result)
17006 mem_loc_result = exp_result;
17007 else
17008 add_loc_descr (&mem_loc_result, exp_result);
17011 break;
17014 default:
17015 if (flag_checking)
17017 print_rtl (stderr, rtl);
17018 gcc_unreachable ();
17020 break;
17023 if (mem_loc_result && initialized == VAR_INIT_STATUS_UNINITIALIZED)
17024 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_GNU_uninit, 0, 0));
17026 return mem_loc_result;
17029 /* Return a descriptor that describes the concatenation of two locations.
17030 This is typically a complex variable. */
17032 static dw_loc_descr_ref
17033 concat_loc_descriptor (rtx x0, rtx x1, enum var_init_status initialized)
17035 /* At present we only track constant-sized pieces. */
17036 unsigned int size0, size1;
17037 if (!GET_MODE_SIZE (GET_MODE (x0)).is_constant (&size0)
17038 || !GET_MODE_SIZE (GET_MODE (x1)).is_constant (&size1))
17039 return 0;
17041 dw_loc_descr_ref cc_loc_result = NULL;
17042 dw_loc_descr_ref x0_ref
17043 = loc_descriptor (x0, VOIDmode, VAR_INIT_STATUS_INITIALIZED);
17044 dw_loc_descr_ref x1_ref
17045 = loc_descriptor (x1, VOIDmode, VAR_INIT_STATUS_INITIALIZED);
17047 if (x0_ref == 0 || x1_ref == 0)
17048 return 0;
17050 cc_loc_result = x0_ref;
17051 add_loc_descr_op_piece (&cc_loc_result, size0);
17053 add_loc_descr (&cc_loc_result, x1_ref);
17054 add_loc_descr_op_piece (&cc_loc_result, size1);
17056 if (initialized == VAR_INIT_STATUS_UNINITIALIZED)
17057 add_loc_descr (&cc_loc_result, new_loc_descr (DW_OP_GNU_uninit, 0, 0));
17059 return cc_loc_result;
17062 /* Return a descriptor that describes the concatenation of N
17063 locations. */
17065 static dw_loc_descr_ref
17066 concatn_loc_descriptor (rtx concatn, enum var_init_status initialized)
17068 unsigned int i;
17069 dw_loc_descr_ref cc_loc_result = NULL;
17070 unsigned int n = XVECLEN (concatn, 0);
17071 unsigned int size;
17073 for (i = 0; i < n; ++i)
17075 dw_loc_descr_ref ref;
17076 rtx x = XVECEXP (concatn, 0, i);
17078 /* At present we only track constant-sized pieces. */
17079 if (!GET_MODE_SIZE (GET_MODE (x)).is_constant (&size))
17080 return NULL;
17082 ref = loc_descriptor (x, VOIDmode, VAR_INIT_STATUS_INITIALIZED);
17083 if (ref == NULL)
17084 return NULL;
17086 add_loc_descr (&cc_loc_result, ref);
17087 add_loc_descr_op_piece (&cc_loc_result, size);
17090 if (cc_loc_result && initialized == VAR_INIT_STATUS_UNINITIALIZED)
17091 add_loc_descr (&cc_loc_result, new_loc_descr (DW_OP_GNU_uninit, 0, 0));
17093 return cc_loc_result;
17096 /* Helper function for loc_descriptor. Return DW_OP_implicit_pointer
17097 for DEBUG_IMPLICIT_PTR RTL. */
17099 static dw_loc_descr_ref
17100 implicit_ptr_descriptor (rtx rtl, HOST_WIDE_INT offset)
17102 dw_loc_descr_ref ret;
17103 dw_die_ref ref;
17105 if (dwarf_strict && dwarf_version < 5)
17106 return NULL;
17107 gcc_assert (VAR_P (DEBUG_IMPLICIT_PTR_DECL (rtl))
17108 || TREE_CODE (DEBUG_IMPLICIT_PTR_DECL (rtl)) == PARM_DECL
17109 || TREE_CODE (DEBUG_IMPLICIT_PTR_DECL (rtl)) == RESULT_DECL);
17110 ref = lookup_decl_die (DEBUG_IMPLICIT_PTR_DECL (rtl));
17111 ret = new_loc_descr (dwarf_OP (DW_OP_implicit_pointer), 0, offset);
17112 ret->dw_loc_oprnd2.val_class = dw_val_class_const;
17113 if (ref)
17115 ret->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
17116 ret->dw_loc_oprnd1.v.val_die_ref.die = ref;
17117 ret->dw_loc_oprnd1.v.val_die_ref.external = 0;
17119 else
17121 ret->dw_loc_oprnd1.val_class = dw_val_class_decl_ref;
17122 ret->dw_loc_oprnd1.v.val_decl_ref = DEBUG_IMPLICIT_PTR_DECL (rtl);
17124 return ret;
17127 /* Output a proper Dwarf location descriptor for a variable or parameter
17128 which is either allocated in a register or in a memory location. For a
17129 register, we just generate an OP_REG and the register number. For a
17130 memory location we provide a Dwarf postfix expression describing how to
17131 generate the (dynamic) address of the object onto the address stack.
17133 MODE is mode of the decl if this loc_descriptor is going to be used in
17134 .debug_loc section where DW_OP_stack_value and DW_OP_implicit_value are
17135 allowed, VOIDmode otherwise.
17137 If we don't know how to describe it, return 0. */
17139 static dw_loc_descr_ref
17140 loc_descriptor (rtx rtl, machine_mode mode,
17141 enum var_init_status initialized)
17143 dw_loc_descr_ref loc_result = NULL;
17144 scalar_int_mode int_mode;
17146 switch (GET_CODE (rtl))
17148 case SUBREG:
17149 /* The case of a subreg may arise when we have a local (register)
17150 variable or a formal (register) parameter which doesn't quite fill
17151 up an entire register. For now, just assume that it is
17152 legitimate to make the Dwarf info refer to the whole register which
17153 contains the given subreg. */
17154 if (REG_P (SUBREG_REG (rtl)) && subreg_lowpart_p (rtl))
17155 loc_result = loc_descriptor (SUBREG_REG (rtl),
17156 GET_MODE (SUBREG_REG (rtl)), initialized);
17157 else
17158 goto do_default;
17159 break;
17161 case REG:
17162 loc_result = reg_loc_descriptor (rtl, initialized);
17163 break;
17165 case MEM:
17166 loc_result = mem_loc_descriptor (XEXP (rtl, 0), get_address_mode (rtl),
17167 GET_MODE (rtl), initialized);
17168 if (loc_result == NULL)
17169 loc_result = tls_mem_loc_descriptor (rtl);
17170 if (loc_result == NULL)
17172 rtx new_rtl = avoid_constant_pool_reference (rtl);
17173 if (new_rtl != rtl)
17174 loc_result = loc_descriptor (new_rtl, mode, initialized);
17176 break;
17178 case CONCAT:
17179 loc_result = concat_loc_descriptor (XEXP (rtl, 0), XEXP (rtl, 1),
17180 initialized);
17181 break;
17183 case CONCATN:
17184 loc_result = concatn_loc_descriptor (rtl, initialized);
17185 break;
17187 case VAR_LOCATION:
17188 /* Single part. */
17189 if (GET_CODE (PAT_VAR_LOCATION_LOC (rtl)) != PARALLEL)
17191 rtx loc = PAT_VAR_LOCATION_LOC (rtl);
17192 if (GET_CODE (loc) == EXPR_LIST)
17193 loc = XEXP (loc, 0);
17194 loc_result = loc_descriptor (loc, mode, initialized);
17195 break;
17198 rtl = XEXP (rtl, 1);
17199 /* FALLTHRU */
17201 case PARALLEL:
17203 rtvec par_elems = XVEC (rtl, 0);
17204 int num_elem = GET_NUM_ELEM (par_elems);
17205 machine_mode mode;
17206 int i, size;
17208 /* Create the first one, so we have something to add to. */
17209 loc_result = loc_descriptor (XEXP (RTVEC_ELT (par_elems, 0), 0),
17210 VOIDmode, initialized);
17211 if (loc_result == NULL)
17212 return NULL;
17213 mode = GET_MODE (XEXP (RTVEC_ELT (par_elems, 0), 0));
17214 /* At present we only track constant-sized pieces. */
17215 if (!GET_MODE_SIZE (mode).is_constant (&size))
17216 return NULL;
17217 add_loc_descr_op_piece (&loc_result, size);
17218 for (i = 1; i < num_elem; i++)
17220 dw_loc_descr_ref temp;
17222 temp = loc_descriptor (XEXP (RTVEC_ELT (par_elems, i), 0),
17223 VOIDmode, initialized);
17224 if (temp == NULL)
17225 return NULL;
17226 add_loc_descr (&loc_result, temp);
17227 mode = GET_MODE (XEXP (RTVEC_ELT (par_elems, i), 0));
17228 /* At present we only track constant-sized pieces. */
17229 if (!GET_MODE_SIZE (mode).is_constant (&size))
17230 return NULL;
17231 add_loc_descr_op_piece (&loc_result, size);
17234 break;
17236 case CONST_INT:
17237 if (mode != VOIDmode && mode != BLKmode)
17239 int_mode = as_a <scalar_int_mode> (mode);
17240 loc_result = address_of_int_loc_descriptor (GET_MODE_SIZE (int_mode),
17241 INTVAL (rtl));
17243 break;
17245 case CONST_DOUBLE:
17246 if (mode == VOIDmode)
17247 mode = GET_MODE (rtl);
17249 if (mode != VOIDmode && (dwarf_version >= 4 || !dwarf_strict))
17251 gcc_assert (mode == GET_MODE (rtl) || VOIDmode == GET_MODE (rtl));
17253 /* Note that a CONST_DOUBLE rtx could represent either an integer
17254 or a floating-point constant. A CONST_DOUBLE is used whenever
17255 the constant requires more than one word in order to be
17256 adequately represented. We output CONST_DOUBLEs as blocks. */
17257 scalar_mode smode = as_a <scalar_mode> (mode);
17258 loc_result = new_loc_descr (DW_OP_implicit_value,
17259 GET_MODE_SIZE (smode), 0);
17260 #if TARGET_SUPPORTS_WIDE_INT == 0
17261 if (!SCALAR_FLOAT_MODE_P (smode))
17263 loc_result->dw_loc_oprnd2.val_class = dw_val_class_const_double;
17264 loc_result->dw_loc_oprnd2.v.val_double
17265 = rtx_to_double_int (rtl);
17267 else
17268 #endif
17270 unsigned int length = GET_MODE_SIZE (smode);
17271 unsigned char *array = ggc_vec_alloc<unsigned char> (length);
17272 unsigned int elt_size = insert_float (rtl, array);
17274 loc_result->dw_loc_oprnd2.val_class = dw_val_class_vec;
17275 loc_result->dw_loc_oprnd2.v.val_vec.length = length / elt_size;
17276 loc_result->dw_loc_oprnd2.v.val_vec.elt_size = elt_size;
17277 loc_result->dw_loc_oprnd2.v.val_vec.array = array;
17280 break;
17282 case CONST_WIDE_INT:
17283 if (mode == VOIDmode)
17284 mode = GET_MODE (rtl);
17286 if (mode != VOIDmode && (dwarf_version >= 4 || !dwarf_strict))
17288 int_mode = as_a <scalar_int_mode> (mode);
17289 loc_result = new_loc_descr (DW_OP_implicit_value,
17290 GET_MODE_SIZE (int_mode), 0);
17291 loc_result->dw_loc_oprnd2.val_class = dw_val_class_wide_int;
17292 loc_result->dw_loc_oprnd2.v.val_wide = ggc_alloc<wide_int> ();
17293 *loc_result->dw_loc_oprnd2.v.val_wide = rtx_mode_t (rtl, int_mode);
17295 break;
17297 case CONST_VECTOR:
17298 if (mode == VOIDmode)
17299 mode = GET_MODE (rtl);
17301 if (mode != VOIDmode
17302 /* The combination of a length and byte elt_size doesn't extend
17303 naturally to boolean vectors, where several elements are packed
17304 into the same byte. */
17305 && GET_MODE_CLASS (mode) != MODE_VECTOR_BOOL
17306 && (dwarf_version >= 4 || !dwarf_strict))
17308 unsigned int length;
17309 if (!CONST_VECTOR_NUNITS (rtl).is_constant (&length))
17310 return NULL;
17312 unsigned int elt_size = GET_MODE_UNIT_SIZE (GET_MODE (rtl));
17313 unsigned char *array
17314 = ggc_vec_alloc<unsigned char> (length * elt_size);
17315 unsigned int i;
17316 unsigned char *p;
17317 machine_mode imode = GET_MODE_INNER (mode);
17319 gcc_assert (mode == GET_MODE (rtl) || VOIDmode == GET_MODE (rtl));
17320 switch (GET_MODE_CLASS (mode))
17322 case MODE_VECTOR_INT:
17323 for (i = 0, p = array; i < length; i++, p += elt_size)
17325 rtx elt = CONST_VECTOR_ELT (rtl, i);
17326 insert_wide_int (rtx_mode_t (elt, imode), p, elt_size);
17328 break;
17330 case MODE_VECTOR_FLOAT:
17331 for (i = 0, p = array; i < length; i++, p += elt_size)
17333 rtx elt = CONST_VECTOR_ELT (rtl, i);
17334 insert_float (elt, p);
17336 break;
17338 default:
17339 gcc_unreachable ();
17342 loc_result = new_loc_descr (DW_OP_implicit_value,
17343 length * elt_size, 0);
17344 loc_result->dw_loc_oprnd2.val_class = dw_val_class_vec;
17345 loc_result->dw_loc_oprnd2.v.val_vec.length = length;
17346 loc_result->dw_loc_oprnd2.v.val_vec.elt_size = elt_size;
17347 loc_result->dw_loc_oprnd2.v.val_vec.array = array;
17349 break;
17351 case CONST:
17352 if (mode == VOIDmode
17353 || CONST_SCALAR_INT_P (XEXP (rtl, 0))
17354 || CONST_DOUBLE_AS_FLOAT_P (XEXP (rtl, 0))
17355 || GET_CODE (XEXP (rtl, 0)) == CONST_VECTOR)
17357 loc_result = loc_descriptor (XEXP (rtl, 0), mode, initialized);
17358 break;
17360 /* FALLTHROUGH */
17361 case SYMBOL_REF:
17362 if (!const_ok_for_output (rtl))
17363 break;
17364 /* FALLTHROUGH */
17365 case LABEL_REF:
17366 if (is_a <scalar_int_mode> (mode, &int_mode)
17367 && GET_MODE_SIZE (int_mode) == DWARF2_ADDR_SIZE
17368 && (dwarf_version >= 4 || !dwarf_strict))
17370 loc_result = new_addr_loc_descr (rtl, dtprel_false);
17371 add_loc_descr (&loc_result, new_loc_descr (DW_OP_stack_value, 0, 0));
17372 vec_safe_push (used_rtx_array, rtl);
17374 break;
17376 case DEBUG_IMPLICIT_PTR:
17377 loc_result = implicit_ptr_descriptor (rtl, 0);
17378 break;
17380 case PLUS:
17381 if (GET_CODE (XEXP (rtl, 0)) == DEBUG_IMPLICIT_PTR
17382 && CONST_INT_P (XEXP (rtl, 1)))
17384 loc_result
17385 = implicit_ptr_descriptor (XEXP (rtl, 0), INTVAL (XEXP (rtl, 1)));
17386 break;
17388 /* FALLTHRU */
17389 do_default:
17390 default:
17391 if ((is_a <scalar_int_mode> (mode, &int_mode)
17392 && GET_MODE (rtl) == int_mode
17393 && GET_MODE_SIZE (int_mode) <= DWARF2_ADDR_SIZE
17394 && dwarf_version >= 4)
17395 || (!dwarf_strict && mode != VOIDmode && mode != BLKmode))
17397 /* Value expression. */
17398 loc_result = mem_loc_descriptor (rtl, mode, VOIDmode, initialized);
17399 if (loc_result)
17400 add_loc_descr (&loc_result,
17401 new_loc_descr (DW_OP_stack_value, 0, 0));
17403 break;
17406 return loc_result;
17409 /* We need to figure out what section we should use as the base for the
17410 address ranges where a given location is valid.
17411 1. If this particular DECL has a section associated with it, use that.
17412 2. If this function has a section associated with it, use that.
17413 3. Otherwise, use the text section.
17414 XXX: If you split a variable across multiple sections, we won't notice. */
17416 static const char *
17417 secname_for_decl (const_tree decl)
17419 const char *secname;
17421 if (VAR_OR_FUNCTION_DECL_P (decl)
17422 && (DECL_EXTERNAL (decl) || TREE_PUBLIC (decl) || TREE_STATIC (decl))
17423 && DECL_SECTION_NAME (decl))
17424 secname = DECL_SECTION_NAME (decl);
17425 else if (current_function_decl && DECL_SECTION_NAME (current_function_decl))
17427 if (in_cold_section_p)
17429 section *sec = current_function_section ();
17430 if (sec->common.flags & SECTION_NAMED)
17431 return sec->named.name;
17433 secname = DECL_SECTION_NAME (current_function_decl);
17435 else if (cfun && in_cold_section_p)
17436 secname = crtl->subsections.cold_section_label;
17437 else
17438 secname = text_section_label;
17440 return secname;
17443 /* Return true when DECL_BY_REFERENCE is defined and set for DECL. */
17445 static bool
17446 decl_by_reference_p (tree decl)
17448 return ((TREE_CODE (decl) == PARM_DECL || TREE_CODE (decl) == RESULT_DECL
17449 || VAR_P (decl))
17450 && DECL_BY_REFERENCE (decl));
17453 /* Helper function for dw_loc_list. Compute proper Dwarf location descriptor
17454 for VARLOC. */
17456 static dw_loc_descr_ref
17457 dw_loc_list_1 (tree loc, rtx varloc, int want_address,
17458 enum var_init_status initialized)
17460 int have_address = 0;
17461 dw_loc_descr_ref descr;
17462 machine_mode mode;
17464 if (want_address != 2)
17466 gcc_assert (GET_CODE (varloc) == VAR_LOCATION);
17467 /* Single part. */
17468 if (GET_CODE (PAT_VAR_LOCATION_LOC (varloc)) != PARALLEL)
17470 varloc = PAT_VAR_LOCATION_LOC (varloc);
17471 if (GET_CODE (varloc) == EXPR_LIST)
17472 varloc = XEXP (varloc, 0);
17473 mode = GET_MODE (varloc);
17474 if (MEM_P (varloc))
17476 rtx addr = XEXP (varloc, 0);
17477 descr = mem_loc_descriptor (addr, get_address_mode (varloc),
17478 mode, initialized);
17479 if (descr)
17480 have_address = 1;
17481 else
17483 rtx x = avoid_constant_pool_reference (varloc);
17484 if (x != varloc)
17485 descr = mem_loc_descriptor (x, mode, VOIDmode,
17486 initialized);
17489 else
17490 descr = mem_loc_descriptor (varloc, mode, VOIDmode, initialized);
17492 else
17493 return 0;
17495 else
17497 if (GET_CODE (varloc) == VAR_LOCATION)
17498 mode = DECL_MODE (PAT_VAR_LOCATION_DECL (varloc));
17499 else
17500 mode = DECL_MODE (loc);
17501 descr = loc_descriptor (varloc, mode, initialized);
17502 have_address = 1;
17505 if (!descr)
17506 return 0;
17508 if (want_address == 2 && !have_address
17509 && (dwarf_version >= 4 || !dwarf_strict))
17511 if (int_size_in_bytes (TREE_TYPE (loc)) > DWARF2_ADDR_SIZE)
17513 expansion_failed (loc, NULL_RTX,
17514 "DWARF address size mismatch");
17515 return 0;
17517 add_loc_descr (&descr, new_loc_descr (DW_OP_stack_value, 0, 0));
17518 have_address = 1;
17520 /* Show if we can't fill the request for an address. */
17521 if (want_address && !have_address)
17523 expansion_failed (loc, NULL_RTX,
17524 "Want address and only have value");
17525 return 0;
17528 /* If we've got an address and don't want one, dereference. */
17529 if (!want_address && have_address)
17531 HOST_WIDE_INT size = int_size_in_bytes (TREE_TYPE (loc));
17532 enum dwarf_location_atom op;
17534 if (size > DWARF2_ADDR_SIZE || size == -1)
17536 expansion_failed (loc, NULL_RTX,
17537 "DWARF address size mismatch");
17538 return 0;
17540 else if (size == DWARF2_ADDR_SIZE)
17541 op = DW_OP_deref;
17542 else
17543 op = DW_OP_deref_size;
17545 add_loc_descr (&descr, new_loc_descr (op, size, 0));
17548 return descr;
17551 /* Create a DW_OP_piece or DW_OP_bit_piece for bitsize, or return NULL
17552 if it is not possible. */
17554 static dw_loc_descr_ref
17555 new_loc_descr_op_bit_piece (HOST_WIDE_INT bitsize, HOST_WIDE_INT offset)
17557 if ((bitsize % BITS_PER_UNIT) == 0 && offset == 0)
17558 return new_loc_descr (DW_OP_piece, bitsize / BITS_PER_UNIT, 0);
17559 else if (dwarf_version >= 3 || !dwarf_strict)
17560 return new_loc_descr (DW_OP_bit_piece, bitsize, offset);
17561 else
17562 return NULL;
17565 /* Helper function for dw_loc_list. Compute proper Dwarf location descriptor
17566 for VAR_LOC_NOTE for variable DECL that has been optimized by SRA. */
17568 static dw_loc_descr_ref
17569 dw_sra_loc_expr (tree decl, rtx loc)
17571 rtx p;
17572 unsigned HOST_WIDE_INT padsize = 0;
17573 dw_loc_descr_ref descr, *descr_tail;
17574 unsigned HOST_WIDE_INT decl_size;
17575 rtx varloc;
17576 enum var_init_status initialized;
17578 if (DECL_SIZE (decl) == NULL
17579 || !tree_fits_uhwi_p (DECL_SIZE (decl)))
17580 return NULL;
17582 decl_size = tree_to_uhwi (DECL_SIZE (decl));
17583 descr = NULL;
17584 descr_tail = &descr;
17586 for (p = loc; p; p = XEXP (p, 1))
17588 unsigned HOST_WIDE_INT bitsize = decl_piece_bitsize (p);
17589 rtx loc_note = *decl_piece_varloc_ptr (p);
17590 dw_loc_descr_ref cur_descr;
17591 dw_loc_descr_ref *tail, last = NULL;
17592 unsigned HOST_WIDE_INT opsize = 0;
17594 if (loc_note == NULL_RTX
17595 || NOTE_VAR_LOCATION_LOC (loc_note) == NULL_RTX)
17597 padsize += bitsize;
17598 continue;
17600 initialized = NOTE_VAR_LOCATION_STATUS (loc_note);
17601 varloc = NOTE_VAR_LOCATION (loc_note);
17602 cur_descr = dw_loc_list_1 (decl, varloc, 2, initialized);
17603 if (cur_descr == NULL)
17605 padsize += bitsize;
17606 continue;
17609 /* Check that cur_descr either doesn't use
17610 DW_OP_*piece operations, or their sum is equal
17611 to bitsize. Otherwise we can't embed it. */
17612 for (tail = &cur_descr; *tail != NULL;
17613 tail = &(*tail)->dw_loc_next)
17614 if ((*tail)->dw_loc_opc == DW_OP_piece)
17616 opsize += (*tail)->dw_loc_oprnd1.v.val_unsigned
17617 * BITS_PER_UNIT;
17618 last = *tail;
17620 else if ((*tail)->dw_loc_opc == DW_OP_bit_piece)
17622 opsize += (*tail)->dw_loc_oprnd1.v.val_unsigned;
17623 last = *tail;
17626 if (last != NULL && opsize != bitsize)
17628 padsize += bitsize;
17629 /* Discard the current piece of the descriptor and release any
17630 addr_table entries it uses. */
17631 remove_loc_list_addr_table_entries (cur_descr);
17632 continue;
17635 /* If there is a hole, add DW_OP_*piece after empty DWARF
17636 expression, which means that those bits are optimized out. */
17637 if (padsize)
17639 if (padsize > decl_size)
17641 remove_loc_list_addr_table_entries (cur_descr);
17642 goto discard_descr;
17644 decl_size -= padsize;
17645 *descr_tail = new_loc_descr_op_bit_piece (padsize, 0);
17646 if (*descr_tail == NULL)
17648 remove_loc_list_addr_table_entries (cur_descr);
17649 goto discard_descr;
17651 descr_tail = &(*descr_tail)->dw_loc_next;
17652 padsize = 0;
17654 *descr_tail = cur_descr;
17655 descr_tail = tail;
17656 if (bitsize > decl_size)
17657 goto discard_descr;
17658 decl_size -= bitsize;
17659 if (last == NULL)
17661 HOST_WIDE_INT offset = 0;
17662 if (GET_CODE (varloc) == VAR_LOCATION
17663 && GET_CODE (PAT_VAR_LOCATION_LOC (varloc)) != PARALLEL)
17665 varloc = PAT_VAR_LOCATION_LOC (varloc);
17666 if (GET_CODE (varloc) == EXPR_LIST)
17667 varloc = XEXP (varloc, 0);
17671 if (GET_CODE (varloc) == CONST
17672 || GET_CODE (varloc) == SIGN_EXTEND
17673 || GET_CODE (varloc) == ZERO_EXTEND)
17674 varloc = XEXP (varloc, 0);
17675 else if (GET_CODE (varloc) == SUBREG)
17676 varloc = SUBREG_REG (varloc);
17677 else
17678 break;
17680 while (1);
17681 /* DW_OP_bit_size offset should be zero for register
17682 or implicit location descriptions and empty location
17683 descriptions, but for memory addresses needs big endian
17684 adjustment. */
17685 if (MEM_P (varloc))
17687 unsigned HOST_WIDE_INT memsize;
17688 if (!poly_uint64 (MEM_SIZE (varloc)).is_constant (&memsize))
17689 goto discard_descr;
17690 memsize *= BITS_PER_UNIT;
17691 if (memsize != bitsize)
17693 if (BYTES_BIG_ENDIAN != WORDS_BIG_ENDIAN
17694 && (memsize > BITS_PER_WORD || bitsize > BITS_PER_WORD))
17695 goto discard_descr;
17696 if (memsize < bitsize)
17697 goto discard_descr;
17698 if (BITS_BIG_ENDIAN)
17699 offset = memsize - bitsize;
17703 *descr_tail = new_loc_descr_op_bit_piece (bitsize, offset);
17704 if (*descr_tail == NULL)
17705 goto discard_descr;
17706 descr_tail = &(*descr_tail)->dw_loc_next;
17710 /* If there were any non-empty expressions, add padding till the end of
17711 the decl. */
17712 if (descr != NULL && decl_size != 0)
17714 *descr_tail = new_loc_descr_op_bit_piece (decl_size, 0);
17715 if (*descr_tail == NULL)
17716 goto discard_descr;
17718 return descr;
17720 discard_descr:
17721 /* Discard the descriptor and release any addr_table entries it uses. */
17722 remove_loc_list_addr_table_entries (descr);
17723 return NULL;
17726 /* Return the dwarf representation of the location list LOC_LIST of
17727 DECL. WANT_ADDRESS has the same meaning as in loc_list_from_tree
17728 function. */
17730 static dw_loc_list_ref
17731 dw_loc_list (var_loc_list *loc_list, tree decl, int want_address)
17733 const char *endname, *secname;
17734 var_loc_view endview;
17735 rtx varloc;
17736 enum var_init_status initialized;
17737 struct var_loc_node *node;
17738 dw_loc_descr_ref descr;
17739 char label_id[MAX_ARTIFICIAL_LABEL_BYTES];
17740 dw_loc_list_ref list = NULL;
17741 dw_loc_list_ref *listp = &list;
17743 /* Now that we know what section we are using for a base,
17744 actually construct the list of locations.
17745 The first location information is what is passed to the
17746 function that creates the location list, and the remaining
17747 locations just get added on to that list.
17748 Note that we only know the start address for a location
17749 (IE location changes), so to build the range, we use
17750 the range [current location start, next location start].
17751 This means we have to special case the last node, and generate
17752 a range of [last location start, end of function label]. */
17754 if (cfun && crtl->has_bb_partition)
17756 bool save_in_cold_section_p = in_cold_section_p;
17757 in_cold_section_p = first_function_block_is_cold;
17758 if (loc_list->last_before_switch == NULL)
17759 in_cold_section_p = !in_cold_section_p;
17760 secname = secname_for_decl (decl);
17761 in_cold_section_p = save_in_cold_section_p;
17763 else
17764 secname = secname_for_decl (decl);
17766 for (node = loc_list->first; node; node = node->next)
17768 bool range_across_switch = false;
17769 if (GET_CODE (node->loc) == EXPR_LIST
17770 || NOTE_VAR_LOCATION_LOC (node->loc) != NULL_RTX)
17772 if (GET_CODE (node->loc) == EXPR_LIST)
17774 descr = NULL;
17775 /* This requires DW_OP_{,bit_}piece, which is not usable
17776 inside DWARF expressions. */
17777 if (want_address == 2)
17778 descr = dw_sra_loc_expr (decl, node->loc);
17780 else
17782 initialized = NOTE_VAR_LOCATION_STATUS (node->loc);
17783 varloc = NOTE_VAR_LOCATION (node->loc);
17784 descr = dw_loc_list_1 (decl, varloc, want_address, initialized);
17786 if (descr)
17788 /* If section switch happens in between node->label
17789 and node->next->label (or end of function) and
17790 we can't emit it as a single entry list,
17791 emit two ranges, first one ending at the end
17792 of first partition and second one starting at the
17793 beginning of second partition. */
17794 if (node == loc_list->last_before_switch
17795 && (node != loc_list->first || loc_list->first->next
17796 /* If we are to emit a view number, we will emit
17797 a loclist rather than a single location
17798 expression for the entire function (see
17799 loc_list_has_views), so we have to split the
17800 range that straddles across partitions. */
17801 || !ZERO_VIEW_P (node->view))
17802 && current_function_decl)
17804 endname = cfun->fde->dw_fde_end;
17805 endview = 0;
17806 range_across_switch = true;
17808 /* The variable has a location between NODE->LABEL and
17809 NODE->NEXT->LABEL. */
17810 else if (node->next)
17811 endname = node->next->label, endview = node->next->view;
17812 /* If the variable has a location at the last label
17813 it keeps its location until the end of function. */
17814 else if (!current_function_decl)
17815 endname = text_end_label, endview = 0;
17816 else
17818 ASM_GENERATE_INTERNAL_LABEL (label_id, FUNC_END_LABEL,
17819 current_function_funcdef_no);
17820 endname = ggc_strdup (label_id);
17821 endview = 0;
17824 *listp = new_loc_list (descr, node->label, node->view,
17825 endname, endview, secname);
17826 if (TREE_CODE (decl) == PARM_DECL
17827 && node == loc_list->first
17828 && NOTE_P (node->loc)
17829 && strcmp (node->label, endname) == 0)
17830 (*listp)->force = true;
17831 listp = &(*listp)->dw_loc_next;
17835 if (cfun
17836 && crtl->has_bb_partition
17837 && node == loc_list->last_before_switch)
17839 bool save_in_cold_section_p = in_cold_section_p;
17840 in_cold_section_p = !first_function_block_is_cold;
17841 secname = secname_for_decl (decl);
17842 in_cold_section_p = save_in_cold_section_p;
17845 if (range_across_switch)
17847 if (GET_CODE (node->loc) == EXPR_LIST)
17848 descr = dw_sra_loc_expr (decl, node->loc);
17849 else
17851 initialized = NOTE_VAR_LOCATION_STATUS (node->loc);
17852 varloc = NOTE_VAR_LOCATION (node->loc);
17853 descr = dw_loc_list_1 (decl, varloc, want_address,
17854 initialized);
17856 gcc_assert (descr);
17857 /* The variable has a location between NODE->LABEL and
17858 NODE->NEXT->LABEL. */
17859 if (node->next)
17860 endname = node->next->label, endview = node->next->view;
17861 else
17862 endname = cfun->fde->dw_fde_second_end, endview = 0;
17863 *listp = new_loc_list (descr, cfun->fde->dw_fde_second_begin, 0,
17864 endname, endview, secname);
17865 listp = &(*listp)->dw_loc_next;
17869 /* Try to avoid the overhead of a location list emitting a location
17870 expression instead, but only if we didn't have more than one
17871 location entry in the first place. If some entries were not
17872 representable, we don't want to pretend a single entry that was
17873 applies to the entire scope in which the variable is
17874 available. */
17875 if (list && loc_list->first->next)
17876 gen_llsym (list);
17877 else
17878 maybe_gen_llsym (list);
17880 return list;
17883 /* Return true if the loc_list has only single element and thus
17884 can be represented as location description. */
17886 static bool
17887 single_element_loc_list_p (dw_loc_list_ref list)
17889 gcc_assert (!list->dw_loc_next || list->ll_symbol);
17890 return !list->ll_symbol;
17893 /* Duplicate a single element of location list. */
17895 static inline dw_loc_descr_ref
17896 copy_loc_descr (dw_loc_descr_ref ref)
17898 dw_loc_descr_ref copy = ggc_alloc<dw_loc_descr_node> ();
17899 memcpy (copy, ref, sizeof (dw_loc_descr_node));
17900 return copy;
17903 /* To each location in list LIST append loc descr REF. */
17905 static void
17906 add_loc_descr_to_each (dw_loc_list_ref list, dw_loc_descr_ref ref)
17908 dw_loc_descr_ref copy;
17909 add_loc_descr (&list->expr, ref);
17910 list = list->dw_loc_next;
17911 while (list)
17913 copy = copy_loc_descr (ref);
17914 add_loc_descr (&list->expr, copy);
17915 while (copy->dw_loc_next)
17916 copy = copy->dw_loc_next = copy_loc_descr (copy->dw_loc_next);
17917 list = list->dw_loc_next;
17921 /* To each location in list LIST prepend loc descr REF. */
17923 static void
17924 prepend_loc_descr_to_each (dw_loc_list_ref list, dw_loc_descr_ref ref)
17926 dw_loc_descr_ref copy;
17927 dw_loc_descr_ref ref_end = list->expr;
17928 add_loc_descr (&ref, list->expr);
17929 list->expr = ref;
17930 list = list->dw_loc_next;
17931 while (list)
17933 dw_loc_descr_ref end = list->expr;
17934 list->expr = copy = copy_loc_descr (ref);
17935 while (copy->dw_loc_next != ref_end)
17936 copy = copy->dw_loc_next = copy_loc_descr (copy->dw_loc_next);
17937 copy->dw_loc_next = end;
17938 list = list->dw_loc_next;
17942 /* Given two lists RET and LIST
17943 produce location list that is result of adding expression in LIST
17944 to expression in RET on each position in program.
17945 Might be destructive on both RET and LIST.
17947 TODO: We handle only simple cases of RET or LIST having at most one
17948 element. General case would involve sorting the lists in program order
17949 and merging them that will need some additional work.
17950 Adding that will improve quality of debug info especially for SRA-ed
17951 structures. */
17953 static void
17954 add_loc_list (dw_loc_list_ref *ret, dw_loc_list_ref list)
17956 if (!list)
17957 return;
17958 if (!*ret)
17960 *ret = list;
17961 return;
17963 if (!list->dw_loc_next)
17965 add_loc_descr_to_each (*ret, list->expr);
17966 return;
17968 if (!(*ret)->dw_loc_next)
17970 prepend_loc_descr_to_each (list, (*ret)->expr);
17971 *ret = list;
17972 return;
17974 expansion_failed (NULL_TREE, NULL_RTX,
17975 "Don't know how to merge two non-trivial"
17976 " location lists.\n");
17977 *ret = NULL;
17978 return;
17981 /* LOC is constant expression. Try a luck, look it up in constant
17982 pool and return its loc_descr of its address. */
17984 static dw_loc_descr_ref
17985 cst_pool_loc_descr (tree loc)
17987 /* Get an RTL for this, if something has been emitted. */
17988 rtx rtl = lookup_constant_def (loc);
17990 if (!rtl || !MEM_P (rtl))
17992 gcc_assert (!rtl);
17993 return 0;
17995 gcc_assert (GET_CODE (XEXP (rtl, 0)) == SYMBOL_REF);
17997 /* TODO: We might get more coverage if we was actually delaying expansion
17998 of all expressions till end of compilation when constant pools are fully
17999 populated. */
18000 if (!TREE_ASM_WRITTEN (SYMBOL_REF_DECL (XEXP (rtl, 0))))
18002 expansion_failed (loc, NULL_RTX,
18003 "CST value in contant pool but not marked.");
18004 return 0;
18006 return mem_loc_descriptor (XEXP (rtl, 0), get_address_mode (rtl),
18007 GET_MODE (rtl), VAR_INIT_STATUS_INITIALIZED);
18010 /* Return dw_loc_list representing address of addr_expr LOC
18011 by looking for inner INDIRECT_REF expression and turning
18012 it into simple arithmetics.
18014 See loc_list_from_tree for the meaning of CONTEXT. */
18016 static dw_loc_list_ref
18017 loc_list_for_address_of_addr_expr_of_indirect_ref (tree loc, bool toplev,
18018 loc_descr_context *context)
18020 tree obj, offset;
18021 poly_int64 bitsize, bitpos, bytepos;
18022 machine_mode mode;
18023 int unsignedp, reversep, volatilep = 0;
18024 dw_loc_list_ref list_ret = NULL, list_ret1 = NULL;
18026 obj = get_inner_reference (TREE_OPERAND (loc, 0),
18027 &bitsize, &bitpos, &offset, &mode,
18028 &unsignedp, &reversep, &volatilep);
18029 STRIP_NOPS (obj);
18030 if (!multiple_p (bitpos, BITS_PER_UNIT, &bytepos))
18032 expansion_failed (loc, NULL_RTX, "bitfield access");
18033 return 0;
18035 if (!INDIRECT_REF_P (obj))
18037 expansion_failed (obj,
18038 NULL_RTX, "no indirect ref in inner refrence");
18039 return 0;
18041 if (!offset && known_eq (bitpos, 0))
18042 list_ret = loc_list_from_tree (TREE_OPERAND (obj, 0), toplev ? 2 : 1,
18043 context);
18044 else if (toplev
18045 && int_size_in_bytes (TREE_TYPE (loc)) <= DWARF2_ADDR_SIZE
18046 && (dwarf_version >= 4 || !dwarf_strict))
18048 list_ret = loc_list_from_tree (TREE_OPERAND (obj, 0), 0, context);
18049 if (!list_ret)
18050 return 0;
18051 if (offset)
18053 /* Variable offset. */
18054 list_ret1 = loc_list_from_tree (offset, 0, context);
18055 if (list_ret1 == 0)
18056 return 0;
18057 add_loc_list (&list_ret, list_ret1);
18058 if (!list_ret)
18059 return 0;
18060 add_loc_descr_to_each (list_ret,
18061 new_loc_descr (DW_OP_plus, 0, 0));
18063 HOST_WIDE_INT value;
18064 if (bytepos.is_constant (&value) && value > 0)
18065 add_loc_descr_to_each (list_ret,
18066 new_loc_descr (DW_OP_plus_uconst, value, 0));
18067 else if (maybe_ne (bytepos, 0))
18068 loc_list_plus_const (list_ret, bytepos);
18069 add_loc_descr_to_each (list_ret,
18070 new_loc_descr (DW_OP_stack_value, 0, 0));
18072 return list_ret;
18075 /* Set LOC to the next operation that is not a DW_OP_nop operation. In the case
18076 all operations from LOC are nops, move to the last one. Insert in NOPS all
18077 operations that are skipped. */
18079 static void
18080 loc_descr_to_next_no_nop (dw_loc_descr_ref &loc,
18081 hash_set<dw_loc_descr_ref> &nops)
18083 while (loc->dw_loc_next != NULL && loc->dw_loc_opc == DW_OP_nop)
18085 nops.add (loc);
18086 loc = loc->dw_loc_next;
18090 /* Helper for loc_descr_without_nops: free the location description operation
18091 P. */
18093 bool
18094 free_loc_descr (const dw_loc_descr_ref &loc, void *data ATTRIBUTE_UNUSED)
18096 ggc_free (loc);
18097 return true;
18100 /* Remove all DW_OP_nop operations from LOC except, if it exists, the one that
18101 finishes LOC. */
18103 static void
18104 loc_descr_without_nops (dw_loc_descr_ref &loc)
18106 if (loc->dw_loc_opc == DW_OP_nop && loc->dw_loc_next == NULL)
18107 return;
18109 /* Set of all DW_OP_nop operations we remove. */
18110 hash_set<dw_loc_descr_ref> nops;
18112 /* First, strip all prefix NOP operations in order to keep the head of the
18113 operations list. */
18114 loc_descr_to_next_no_nop (loc, nops);
18116 for (dw_loc_descr_ref cur = loc; cur != NULL;)
18118 /* For control flow operations: strip "prefix" nops in destination
18119 labels. */
18120 if (cur->dw_loc_oprnd1.val_class == dw_val_class_loc)
18121 loc_descr_to_next_no_nop (cur->dw_loc_oprnd1.v.val_loc, nops);
18122 if (cur->dw_loc_oprnd2.val_class == dw_val_class_loc)
18123 loc_descr_to_next_no_nop (cur->dw_loc_oprnd2.v.val_loc, nops);
18125 /* Do the same for the operations that follow, then move to the next
18126 iteration. */
18127 if (cur->dw_loc_next != NULL)
18128 loc_descr_to_next_no_nop (cur->dw_loc_next, nops);
18129 cur = cur->dw_loc_next;
18132 nops.traverse<void *, free_loc_descr> (NULL);
18136 struct dwarf_procedure_info;
18138 /* Helper structure for location descriptions generation. */
18139 struct loc_descr_context
18141 /* The type that is implicitly referenced by DW_OP_push_object_address, or
18142 NULL_TREE if DW_OP_push_object_address in invalid for this location
18143 description. This is used when processing PLACEHOLDER_EXPR nodes. */
18144 tree context_type;
18145 /* The ..._DECL node that should be translated as a
18146 DW_OP_push_object_address operation. */
18147 tree base_decl;
18148 /* Information about the DWARF procedure we are currently generating. NULL if
18149 we are not generating a DWARF procedure. */
18150 struct dwarf_procedure_info *dpi;
18151 /* True if integral PLACEHOLDER_EXPR stands for the first argument passed
18152 by consumer. Used for DW_TAG_generic_subrange attributes. */
18153 bool placeholder_arg;
18154 /* True if PLACEHOLDER_EXPR has been seen. */
18155 bool placeholder_seen;
18156 /* True if strict preservation of signedness has been requested. */
18157 bool strict_signedness;
18160 /* DWARF procedures generation
18162 DWARF expressions (aka. location descriptions) are used to encode variable
18163 things such as sizes or offsets. Such computations can have redundant parts
18164 that can be factorized in order to reduce the size of the output debug
18165 information. This is the whole point of DWARF procedures.
18167 Thanks to stor-layout.cc, size and offset expressions in GENERIC trees are
18168 already factorized into functions ("size functions") in order to handle very
18169 big and complex types. Such functions are quite simple: they have integral
18170 arguments, they return an integral result and their body contains only a
18171 return statement with arithmetic expressions. This is the only kind of
18172 function we are interested in translating into DWARF procedures, here.
18174 DWARF expressions and DWARF procedure are executed using a stack, so we have
18175 to define some calling convention for them to interact. Let's say that:
18177 - Before calling a DWARF procedure, DWARF expressions must push on the stack
18178 all arguments in reverse order (right-to-left) so that when the DWARF
18179 procedure execution starts, the first argument is the top of the stack.
18181 - Then, when returning, the DWARF procedure must have consumed all arguments
18182 on the stack, must have pushed the result and touched nothing else.
18184 - Each integral argument and the result are integral types can be hold in a
18185 single stack slot.
18187 - We call "frame offset" the number of stack slots that are "under DWARF
18188 procedure control": it includes the arguments slots, the temporaries and
18189 the result slot. Thus, it is equal to the number of arguments when the
18190 procedure execution starts and must be equal to one (the result) when it
18191 returns. */
18193 /* Helper structure used when generating operations for a DWARF procedure. */
18194 struct dwarf_procedure_info
18196 /* The FUNCTION_DECL node corresponding to the DWARF procedure that is
18197 currently translated. */
18198 tree fndecl;
18199 /* The number of arguments FNDECL takes. */
18200 unsigned args_count;
18203 /* Return a pointer to a newly created DIE node for a DWARF procedure. Add
18204 LOCATION as its DW_AT_location attribute. If FNDECL is not NULL_TREE,
18205 equate it to this DIE. */
18207 static dw_die_ref
18208 new_dwarf_proc_die (dw_loc_descr_ref location, tree fndecl,
18209 dw_die_ref parent_die)
18211 dw_die_ref dwarf_proc_die;
18213 if ((dwarf_version < 3 && dwarf_strict)
18214 || location == NULL)
18215 return NULL;
18217 dwarf_proc_die = new_die (DW_TAG_dwarf_procedure, parent_die, fndecl);
18218 if (fndecl)
18219 equate_decl_number_to_die (fndecl, dwarf_proc_die);
18220 add_AT_loc (dwarf_proc_die, DW_AT_location, location);
18221 return dwarf_proc_die;
18224 /* Return whether TYPE is a supported type as a DWARF procedure argument
18225 type or return type (we handle only scalar types and pointer types that
18226 aren't wider than the DWARF expression evaluation stack). */
18228 static bool
18229 is_handled_procedure_type (tree type)
18231 return ((INTEGRAL_TYPE_P (type)
18232 || TREE_CODE (type) == OFFSET_TYPE
18233 || TREE_CODE (type) == POINTER_TYPE)
18234 && int_size_in_bytes (type) <= DWARF2_ADDR_SIZE);
18237 /* Helper for resolve_args_picking: do the same but stop when coming across
18238 visited nodes. For each node we visit, register in FRAME_OFFSETS the frame
18239 offset *before* evaluating the corresponding operation. */
18241 static bool
18242 resolve_args_picking_1 (dw_loc_descr_ref loc, unsigned initial_frame_offset,
18243 struct dwarf_procedure_info *dpi,
18244 hash_map<dw_loc_descr_ref, unsigned> &frame_offsets)
18246 /* The "frame_offset" identifier is already used to name a macro... */
18247 unsigned frame_offset_ = initial_frame_offset;
18248 dw_loc_descr_ref l;
18250 for (l = loc; l != NULL;)
18252 bool existed;
18253 unsigned &l_frame_offset = frame_offsets.get_or_insert (l, &existed);
18255 /* If we already met this node, there is nothing to compute anymore. */
18256 if (existed)
18258 /* Make sure that the stack size is consistent wherever the execution
18259 flow comes from. */
18260 gcc_assert ((unsigned) l_frame_offset == frame_offset_);
18261 break;
18263 l_frame_offset = frame_offset_;
18265 /* If needed, relocate the picking offset with respect to the frame
18266 offset. */
18267 if (l->frame_offset_rel)
18269 unsigned HOST_WIDE_INT off;
18270 switch (l->dw_loc_opc)
18272 case DW_OP_pick:
18273 off = l->dw_loc_oprnd1.v.val_unsigned;
18274 break;
18275 case DW_OP_dup:
18276 off = 0;
18277 break;
18278 case DW_OP_over:
18279 off = 1;
18280 break;
18281 default:
18282 gcc_unreachable ();
18284 /* frame_offset_ is the size of the current stack frame, including
18285 incoming arguments. Besides, the arguments are pushed
18286 right-to-left. Thus, in order to access the Nth argument from
18287 this operation node, the picking has to skip temporaries *plus*
18288 one stack slot per argument (0 for the first one, 1 for the second
18289 one, etc.).
18291 The targetted argument number (N) is already set as the operand,
18292 and the number of temporaries can be computed with:
18293 frame_offsets_ - dpi->args_count */
18294 off += frame_offset_ - dpi->args_count;
18296 /* DW_OP_pick handles only offsets from 0 to 255 (inclusive)... */
18297 if (off > 255)
18298 return false;
18300 if (off == 0)
18302 l->dw_loc_opc = DW_OP_dup;
18303 l->dw_loc_oprnd1.v.val_unsigned = 0;
18305 else if (off == 1)
18307 l->dw_loc_opc = DW_OP_over;
18308 l->dw_loc_oprnd1.v.val_unsigned = 0;
18310 else
18312 l->dw_loc_opc = DW_OP_pick;
18313 l->dw_loc_oprnd1.v.val_unsigned = off;
18317 /* Update frame_offset according to the effect the current operation has
18318 on the stack. */
18319 switch (l->dw_loc_opc)
18321 case DW_OP_deref:
18322 case DW_OP_swap:
18323 case DW_OP_rot:
18324 case DW_OP_abs:
18325 case DW_OP_neg:
18326 case DW_OP_not:
18327 case DW_OP_plus_uconst:
18328 case DW_OP_skip:
18329 case DW_OP_reg0:
18330 case DW_OP_reg1:
18331 case DW_OP_reg2:
18332 case DW_OP_reg3:
18333 case DW_OP_reg4:
18334 case DW_OP_reg5:
18335 case DW_OP_reg6:
18336 case DW_OP_reg7:
18337 case DW_OP_reg8:
18338 case DW_OP_reg9:
18339 case DW_OP_reg10:
18340 case DW_OP_reg11:
18341 case DW_OP_reg12:
18342 case DW_OP_reg13:
18343 case DW_OP_reg14:
18344 case DW_OP_reg15:
18345 case DW_OP_reg16:
18346 case DW_OP_reg17:
18347 case DW_OP_reg18:
18348 case DW_OP_reg19:
18349 case DW_OP_reg20:
18350 case DW_OP_reg21:
18351 case DW_OP_reg22:
18352 case DW_OP_reg23:
18353 case DW_OP_reg24:
18354 case DW_OP_reg25:
18355 case DW_OP_reg26:
18356 case DW_OP_reg27:
18357 case DW_OP_reg28:
18358 case DW_OP_reg29:
18359 case DW_OP_reg30:
18360 case DW_OP_reg31:
18361 case DW_OP_bregx:
18362 case DW_OP_piece:
18363 case DW_OP_deref_size:
18364 case DW_OP_nop:
18365 case DW_OP_bit_piece:
18366 case DW_OP_implicit_value:
18367 case DW_OP_stack_value:
18368 case DW_OP_deref_type:
18369 case DW_OP_convert:
18370 case DW_OP_reinterpret:
18371 case DW_OP_GNU_deref_type:
18372 case DW_OP_GNU_convert:
18373 case DW_OP_GNU_reinterpret:
18374 break;
18376 case DW_OP_addr:
18377 case DW_OP_const1u:
18378 case DW_OP_const1s:
18379 case DW_OP_const2u:
18380 case DW_OP_const2s:
18381 case DW_OP_const4u:
18382 case DW_OP_const4s:
18383 case DW_OP_const8u:
18384 case DW_OP_const8s:
18385 case DW_OP_constu:
18386 case DW_OP_consts:
18387 case DW_OP_dup:
18388 case DW_OP_over:
18389 case DW_OP_pick:
18390 case DW_OP_lit0:
18391 case DW_OP_lit1:
18392 case DW_OP_lit2:
18393 case DW_OP_lit3:
18394 case DW_OP_lit4:
18395 case DW_OP_lit5:
18396 case DW_OP_lit6:
18397 case DW_OP_lit7:
18398 case DW_OP_lit8:
18399 case DW_OP_lit9:
18400 case DW_OP_lit10:
18401 case DW_OP_lit11:
18402 case DW_OP_lit12:
18403 case DW_OP_lit13:
18404 case DW_OP_lit14:
18405 case DW_OP_lit15:
18406 case DW_OP_lit16:
18407 case DW_OP_lit17:
18408 case DW_OP_lit18:
18409 case DW_OP_lit19:
18410 case DW_OP_lit20:
18411 case DW_OP_lit21:
18412 case DW_OP_lit22:
18413 case DW_OP_lit23:
18414 case DW_OP_lit24:
18415 case DW_OP_lit25:
18416 case DW_OP_lit26:
18417 case DW_OP_lit27:
18418 case DW_OP_lit28:
18419 case DW_OP_lit29:
18420 case DW_OP_lit30:
18421 case DW_OP_lit31:
18422 case DW_OP_breg0:
18423 case DW_OP_breg1:
18424 case DW_OP_breg2:
18425 case DW_OP_breg3:
18426 case DW_OP_breg4:
18427 case DW_OP_breg5:
18428 case DW_OP_breg6:
18429 case DW_OP_breg7:
18430 case DW_OP_breg8:
18431 case DW_OP_breg9:
18432 case DW_OP_breg10:
18433 case DW_OP_breg11:
18434 case DW_OP_breg12:
18435 case DW_OP_breg13:
18436 case DW_OP_breg14:
18437 case DW_OP_breg15:
18438 case DW_OP_breg16:
18439 case DW_OP_breg17:
18440 case DW_OP_breg18:
18441 case DW_OP_breg19:
18442 case DW_OP_breg20:
18443 case DW_OP_breg21:
18444 case DW_OP_breg22:
18445 case DW_OP_breg23:
18446 case DW_OP_breg24:
18447 case DW_OP_breg25:
18448 case DW_OP_breg26:
18449 case DW_OP_breg27:
18450 case DW_OP_breg28:
18451 case DW_OP_breg29:
18452 case DW_OP_breg30:
18453 case DW_OP_breg31:
18454 case DW_OP_fbreg:
18455 case DW_OP_push_object_address:
18456 case DW_OP_call_frame_cfa:
18457 case DW_OP_GNU_variable_value:
18458 case DW_OP_GNU_addr_index:
18459 case DW_OP_GNU_const_index:
18460 ++frame_offset_;
18461 break;
18463 case DW_OP_drop:
18464 case DW_OP_xderef:
18465 case DW_OP_and:
18466 case DW_OP_div:
18467 case DW_OP_minus:
18468 case DW_OP_mod:
18469 case DW_OP_mul:
18470 case DW_OP_or:
18471 case DW_OP_plus:
18472 case DW_OP_shl:
18473 case DW_OP_shr:
18474 case DW_OP_shra:
18475 case DW_OP_xor:
18476 case DW_OP_bra:
18477 case DW_OP_eq:
18478 case DW_OP_ge:
18479 case DW_OP_gt:
18480 case DW_OP_le:
18481 case DW_OP_lt:
18482 case DW_OP_ne:
18483 case DW_OP_regx:
18484 case DW_OP_xderef_size:
18485 --frame_offset_;
18486 break;
18488 case DW_OP_call2:
18489 case DW_OP_call4:
18490 case DW_OP_call_ref:
18492 dw_die_ref dwarf_proc = l->dw_loc_oprnd1.v.val_die_ref.die;
18493 int *stack_usage = dwarf_proc_stack_usage_map->get (dwarf_proc);
18495 if (stack_usage == NULL)
18496 return false;
18497 frame_offset_ += *stack_usage;
18498 break;
18501 case DW_OP_implicit_pointer:
18502 case DW_OP_entry_value:
18503 case DW_OP_const_type:
18504 case DW_OP_regval_type:
18505 case DW_OP_form_tls_address:
18506 case DW_OP_GNU_push_tls_address:
18507 case DW_OP_GNU_uninit:
18508 case DW_OP_GNU_encoded_addr:
18509 case DW_OP_GNU_implicit_pointer:
18510 case DW_OP_GNU_entry_value:
18511 case DW_OP_GNU_const_type:
18512 case DW_OP_GNU_regval_type:
18513 case DW_OP_GNU_parameter_ref:
18514 /* loc_list_from_tree will probably not output these operations for
18515 size functions, so assume they will not appear here. */
18516 /* Fall through... */
18518 default:
18519 gcc_unreachable ();
18522 /* Now, follow the control flow (except subroutine calls). */
18523 switch (l->dw_loc_opc)
18525 case DW_OP_bra:
18526 if (!resolve_args_picking_1 (l->dw_loc_next, frame_offset_, dpi,
18527 frame_offsets))
18528 return false;
18529 /* Fall through. */
18531 case DW_OP_skip:
18532 l = l->dw_loc_oprnd1.v.val_loc;
18533 break;
18535 case DW_OP_stack_value:
18536 return true;
18538 default:
18539 l = l->dw_loc_next;
18540 break;
18544 return true;
18547 /* Make a DFS over operations reachable through LOC (i.e. follow branch
18548 operations) in order to resolve the operand of DW_OP_pick operations that
18549 target DWARF procedure arguments (DPI). INITIAL_FRAME_OFFSET is the frame
18550 offset *before* LOC is executed. Return if all relocations were
18551 successful. */
18553 static bool
18554 resolve_args_picking (dw_loc_descr_ref loc, unsigned initial_frame_offset,
18555 struct dwarf_procedure_info *dpi)
18557 /* Associate to all visited operations the frame offset *before* evaluating
18558 this operation. */
18559 hash_map<dw_loc_descr_ref, unsigned> frame_offsets;
18561 return
18562 resolve_args_picking_1 (loc, initial_frame_offset, dpi, frame_offsets);
18565 /* Try to generate a DWARF procedure that computes the same result as FNDECL.
18566 Return NULL if it is not possible. */
18568 static dw_die_ref
18569 function_to_dwarf_procedure (tree fndecl)
18571 struct dwarf_procedure_info dpi;
18572 struct loc_descr_context ctx = {
18573 NULL_TREE, /* context_type */
18574 NULL_TREE, /* base_decl */
18575 &dpi, /* dpi */
18576 false, /* placeholder_arg */
18577 false, /* placeholder_seen */
18578 true /* strict_signedness */
18580 dw_die_ref dwarf_proc_die;
18581 tree tree_body = DECL_SAVED_TREE (fndecl);
18582 dw_loc_descr_ref loc_body, epilogue;
18584 tree cursor;
18585 unsigned i;
18587 /* Do not generate multiple DWARF procedures for the same function
18588 declaration. */
18589 dwarf_proc_die = lookup_decl_die (fndecl);
18590 if (dwarf_proc_die != NULL)
18591 return dwarf_proc_die;
18593 /* DWARF procedures are available starting with the DWARFv3 standard. */
18594 if (dwarf_version < 3 && dwarf_strict)
18595 return NULL;
18597 /* We handle only functions for which we still have a body, that return a
18598 supported type and that takes arguments with supported types. Note that
18599 there is no point translating functions that return nothing. */
18600 if (tree_body == NULL_TREE
18601 || DECL_RESULT (fndecl) == NULL_TREE
18602 || !is_handled_procedure_type (TREE_TYPE (DECL_RESULT (fndecl))))
18603 return NULL;
18605 for (cursor = DECL_ARGUMENTS (fndecl);
18606 cursor != NULL_TREE;
18607 cursor = TREE_CHAIN (cursor))
18608 if (!is_handled_procedure_type (TREE_TYPE (cursor)))
18609 return NULL;
18611 /* Match only "expr" in: RETURN_EXPR (MODIFY_EXPR (RESULT_DECL, expr)). */
18612 if (TREE_CODE (tree_body) != RETURN_EXPR)
18613 return NULL;
18614 tree_body = TREE_OPERAND (tree_body, 0);
18615 if (TREE_CODE (tree_body) != MODIFY_EXPR
18616 || TREE_OPERAND (tree_body, 0) != DECL_RESULT (fndecl))
18617 return NULL;
18618 tree_body = TREE_OPERAND (tree_body, 1);
18620 /* Try to translate the body expression itself. Note that this will probably
18621 cause an infinite recursion if its call graph has a cycle. This is very
18622 unlikely for size functions, however, so don't bother with such things at
18623 the moment. */
18624 dpi.fndecl = fndecl;
18625 dpi.args_count = list_length (DECL_ARGUMENTS (fndecl));
18626 loc_body = loc_descriptor_from_tree (tree_body, 0, &ctx);
18627 if (!loc_body)
18628 return NULL;
18630 /* After evaluating all operands in "loc_body", we should still have on the
18631 stack all arguments plus the desired function result (top of the stack).
18632 Generate code in order to keep only the result in our stack frame. */
18633 epilogue = NULL;
18634 for (i = 0; i < dpi.args_count; ++i)
18636 dw_loc_descr_ref op_couple = new_loc_descr (DW_OP_swap, 0, 0);
18637 op_couple->dw_loc_next = new_loc_descr (DW_OP_drop, 0, 0);
18638 op_couple->dw_loc_next->dw_loc_next = epilogue;
18639 epilogue = op_couple;
18641 add_loc_descr (&loc_body, epilogue);
18642 if (!resolve_args_picking (loc_body, dpi.args_count, &dpi))
18643 return NULL;
18645 /* Trailing nops from loc_descriptor_from_tree (if any) cannot be removed
18646 because they are considered useful. Now there is an epilogue, they are
18647 not anymore, so give it another try. */
18648 loc_descr_without_nops (loc_body);
18650 /* fndecl may be used both as a regular DW_TAG_subprogram DIE and as
18651 a DW_TAG_dwarf_procedure, so we may have a conflict, here. It's unlikely,
18652 though, given that size functions do not come from source, so they should
18653 not have a dedicated DW_TAG_subprogram DIE. */
18654 dwarf_proc_die
18655 = new_dwarf_proc_die (loc_body, fndecl,
18656 get_context_die (DECL_CONTEXT (fndecl)));
18658 /* The called DWARF procedure consumes one stack slot per argument and
18659 returns one stack slot. */
18660 dwarf_proc_stack_usage_map->put (dwarf_proc_die, 1 - dpi.args_count);
18662 return dwarf_proc_die;
18665 /* Helper function for loc_list_from_tree. Perform OP binary op,
18666 but after converting arguments to type_die, afterwards convert
18667 back to unsigned. */
18669 static dw_loc_list_ref
18670 typed_binop_from_tree (enum dwarf_location_atom op, tree loc,
18671 dw_die_ref type_die, scalar_int_mode mode,
18672 struct loc_descr_context *context)
18674 dw_loc_list_ref op0, op1;
18675 dw_loc_descr_ref cvt, binop;
18677 if (type_die == NULL)
18678 return NULL;
18680 op0 = loc_list_from_tree (TREE_OPERAND (loc, 0), 0, context);
18681 op1 = loc_list_from_tree (TREE_OPERAND (loc, 1), 0, context);
18682 if (op0 == NULL || op1 == NULL)
18683 return NULL;
18685 cvt = new_loc_descr (dwarf_OP (DW_OP_convert), 0, 0);
18686 cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
18687 cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die;
18688 cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
18689 add_loc_descr_to_each (op0, cvt);
18691 cvt = new_loc_descr (dwarf_OP (DW_OP_convert), 0, 0);
18692 cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
18693 cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die;
18694 cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
18695 add_loc_descr_to_each (op1, cvt);
18697 add_loc_list (&op0, op1);
18698 if (op0 == NULL)
18699 return NULL;
18701 binop = new_loc_descr (op, 0, 0);
18702 convert_descriptor_to_mode (mode, binop);
18703 add_loc_descr_to_each (op0, binop);
18705 return op0;
18708 /* Generate Dwarf location list representing LOC.
18709 If WANT_ADDRESS is false, expression computing LOC will be computed
18710 If WANT_ADDRESS is 1, expression computing address of LOC will be returned
18711 if WANT_ADDRESS is 2, expression computing address useable in location
18712 will be returned (i.e. DW_OP_reg can be used
18713 to refer to register values).
18715 CONTEXT provides information to customize the location descriptions
18716 generation. Its context_type field specifies what type is implicitly
18717 referenced by DW_OP_push_object_address. If it is NULL_TREE, this operation
18718 will not be generated.
18720 Its DPI field determines whether we are generating a DWARF expression for a
18721 DWARF procedure, so PARM_DECL references are processed specifically.
18723 If CONTEXT is NULL, the behavior is the same as if context_type, base_decl
18724 and dpi fields were null. */
18726 static dw_loc_list_ref
18727 loc_list_from_tree_1 (tree loc, int want_address,
18728 struct loc_descr_context *context)
18730 dw_loc_descr_ref ret = NULL, ret1 = NULL;
18731 dw_loc_list_ref list_ret = NULL, list_ret1 = NULL;
18732 int have_address = 0;
18733 enum dwarf_location_atom op;
18735 /* ??? Most of the time we do not take proper care for sign/zero
18736 extending the values properly. Hopefully this won't be a real
18737 problem... */
18739 if (context != NULL
18740 && context->base_decl == loc
18741 && want_address == 0)
18743 if (dwarf_version >= 3 || !dwarf_strict)
18744 return new_loc_list (new_loc_descr (DW_OP_push_object_address, 0, 0),
18745 NULL, 0, NULL, 0, NULL);
18746 else
18747 return NULL;
18750 switch (TREE_CODE (loc))
18752 case ERROR_MARK:
18753 expansion_failed (loc, NULL_RTX, "ERROR_MARK");
18754 return 0;
18756 case PLACEHOLDER_EXPR:
18757 /* This case involves extracting fields from an object to determine the
18758 position of other fields. It is supposed to appear only as the first
18759 operand of COMPONENT_REF nodes and to reference precisely the type
18760 that the context allows or its enclosing type. */
18761 if (context != NULL
18762 && (TREE_TYPE (loc) == context->context_type
18763 || TREE_TYPE (loc) == TYPE_CONTEXT (context->context_type))
18764 && want_address >= 1)
18766 if (dwarf_version >= 3 || !dwarf_strict)
18768 ret = new_loc_descr (DW_OP_push_object_address, 0, 0);
18769 have_address = 1;
18770 break;
18772 else
18773 return NULL;
18775 /* For DW_TAG_generic_subrange attributes, PLACEHOLDER_EXPR stands for
18776 the single argument passed by consumer. */
18777 else if (context != NULL
18778 && context->placeholder_arg
18779 && INTEGRAL_TYPE_P (TREE_TYPE (loc))
18780 && want_address == 0)
18782 ret = new_loc_descr (DW_OP_pick, 0, 0);
18783 ret->frame_offset_rel = 1;
18784 context->placeholder_seen = true;
18785 break;
18787 else
18788 expansion_failed (loc, NULL_RTX,
18789 "PLACEHOLDER_EXPR for an unexpected type");
18790 break;
18792 case CALL_EXPR:
18794 tree callee = get_callee_fndecl (loc);
18795 dw_die_ref dwarf_proc;
18797 if (callee
18798 && is_handled_procedure_type (TREE_TYPE (TREE_TYPE (callee)))
18799 && (dwarf_proc = function_to_dwarf_procedure (callee)))
18801 /* DWARF procedures are used for size functions, which are built
18802 when size expressions contain conditional constructs, so we
18803 request strict preservation of signedness for comparisons. */
18804 bool old_strict_signedness;
18805 if (context)
18807 old_strict_signedness = context->strict_signedness;
18808 context->strict_signedness = true;
18811 /* Evaluate arguments right-to-left so that the first argument
18812 will be the top-most one on the stack. */
18813 for (int i = call_expr_nargs (loc) - 1; i >= 0; --i)
18815 tree arg = CALL_EXPR_ARG (loc, i);
18816 ret1 = loc_descriptor_from_tree (arg, 0, context);
18817 if (!ret1)
18819 expansion_failed (arg, NULL_RTX, "CALL_EXPR argument");
18820 return NULL;
18822 add_loc_descr (&ret, ret1);
18825 ret1 = new_loc_descr (DW_OP_call4, 0, 0);
18826 ret1->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
18827 ret1->dw_loc_oprnd1.v.val_die_ref.die = dwarf_proc;
18828 ret1->dw_loc_oprnd1.v.val_die_ref.external = 0;
18829 add_loc_descr (&ret, ret1);
18830 if (context)
18831 context->strict_signedness = old_strict_signedness;
18833 else
18834 expansion_failed (loc, NULL_RTX, "CALL_EXPR target");
18835 break;
18838 case PREINCREMENT_EXPR:
18839 case PREDECREMENT_EXPR:
18840 case POSTINCREMENT_EXPR:
18841 case POSTDECREMENT_EXPR:
18842 expansion_failed (loc, NULL_RTX, "PRE/POST INDCREMENT/DECREMENT");
18843 /* There are no opcodes for these operations. */
18844 return 0;
18846 case ADDR_EXPR:
18847 /* If we already want an address, see if there is INDIRECT_REF inside
18848 e.g. for &this->field. */
18849 if (want_address)
18851 list_ret = loc_list_for_address_of_addr_expr_of_indirect_ref
18852 (loc, want_address == 2, context);
18853 if (list_ret)
18854 have_address = 1;
18855 else if (decl_address_ip_invariant_p (TREE_OPERAND (loc, 0))
18856 && (ret = cst_pool_loc_descr (loc)))
18857 have_address = 1;
18859 /* Otherwise, process the argument and look for the address. */
18860 if (!list_ret && !ret)
18861 list_ret = loc_list_from_tree_1 (TREE_OPERAND (loc, 0), 1, context);
18862 else
18864 if (want_address)
18865 expansion_failed (loc, NULL_RTX, "need address of ADDR_EXPR");
18866 return NULL;
18868 break;
18870 case VAR_DECL:
18871 if (DECL_THREAD_LOCAL_P (loc))
18873 rtx rtl;
18874 enum dwarf_location_atom tls_op;
18875 enum dtprel_bool dtprel = dtprel_false;
18877 if (targetm.have_tls)
18879 /* If this is not defined, we have no way to emit the
18880 data. */
18881 if (!targetm.asm_out.output_dwarf_dtprel)
18882 return 0;
18884 /* The way DW_OP_GNU_push_tls_address is specified, we
18885 can only look up addresses of objects in the current
18886 module. We used DW_OP_addr as first op, but that's
18887 wrong, because DW_OP_addr is relocated by the debug
18888 info consumer, while DW_OP_GNU_push_tls_address
18889 operand shouldn't be. */
18890 if (DECL_EXTERNAL (loc) && !targetm.binds_local_p (loc))
18891 return 0;
18892 dtprel = dtprel_true;
18893 /* We check for DWARF 5 here because gdb did not implement
18894 DW_OP_form_tls_address until after 7.12. */
18895 tls_op = (dwarf_version >= 5 ? DW_OP_form_tls_address
18896 : DW_OP_GNU_push_tls_address);
18898 else
18900 if (!targetm.emutls.debug_form_tls_address
18901 || !(dwarf_version >= 3 || !dwarf_strict))
18902 return 0;
18903 /* We stuffed the control variable into the DECL_VALUE_EXPR
18904 to signal (via DECL_HAS_VALUE_EXPR_P) that the decl should
18905 no longer appear in gimple code. We used the control
18906 variable in specific so that we could pick it up here. */
18907 loc = DECL_VALUE_EXPR (loc);
18908 tls_op = DW_OP_form_tls_address;
18911 rtl = rtl_for_decl_location (loc);
18912 if (rtl == NULL_RTX)
18913 return 0;
18915 if (!MEM_P (rtl))
18916 return 0;
18917 rtl = XEXP (rtl, 0);
18918 if (! CONSTANT_P (rtl))
18919 return 0;
18921 ret = new_addr_loc_descr (rtl, dtprel);
18922 ret1 = new_loc_descr (tls_op, 0, 0);
18923 add_loc_descr (&ret, ret1);
18925 have_address = 1;
18926 break;
18928 /* FALLTHRU */
18930 case PARM_DECL:
18931 if (context != NULL && context->dpi != NULL
18932 && DECL_CONTEXT (loc) == context->dpi->fndecl)
18934 /* We are generating code for a DWARF procedure and we want to access
18935 one of its arguments: find the appropriate argument offset and let
18936 the resolve_args_picking pass compute the offset that complies
18937 with the stack frame size. */
18938 unsigned i = 0;
18939 tree cursor;
18941 for (cursor = DECL_ARGUMENTS (context->dpi->fndecl);
18942 cursor != NULL_TREE && cursor != loc;
18943 cursor = TREE_CHAIN (cursor), ++i)
18945 /* If we are translating a DWARF procedure, all referenced parameters
18946 must belong to the current function. */
18947 gcc_assert (cursor != NULL_TREE);
18949 ret = new_loc_descr (DW_OP_pick, i, 0);
18950 ret->frame_offset_rel = 1;
18951 break;
18953 /* FALLTHRU */
18955 case RESULT_DECL:
18956 if (DECL_HAS_VALUE_EXPR_P (loc))
18958 tree value_expr = DECL_VALUE_EXPR (loc);
18960 /* Non-local frame structures are DECL_IGNORED_P variables so we need
18961 to wait until they get an RTX in order to reference them. */
18962 if (early_dwarf
18963 && TREE_CODE (value_expr) == COMPONENT_REF
18964 && VAR_P (TREE_OPERAND (value_expr, 0))
18965 && DECL_NONLOCAL_FRAME (TREE_OPERAND (value_expr, 0)))
18967 else
18968 return loc_list_from_tree_1 (value_expr, want_address, context);
18971 /* FALLTHRU */
18973 case FUNCTION_DECL:
18975 rtx rtl;
18976 var_loc_list *loc_list = lookup_decl_loc (loc);
18978 if (loc_list && loc_list->first)
18980 list_ret = dw_loc_list (loc_list, loc, want_address);
18981 have_address = want_address != 0;
18982 break;
18984 rtl = rtl_for_decl_location (loc);
18985 if (rtl == NULL_RTX)
18987 if (TREE_CODE (loc) != FUNCTION_DECL
18988 && early_dwarf
18989 && want_address != 1
18990 && ! DECL_IGNORED_P (loc)
18991 && (INTEGRAL_TYPE_P (TREE_TYPE (loc))
18992 || POINTER_TYPE_P (TREE_TYPE (loc)))
18993 && (GET_MODE_SIZE (SCALAR_INT_TYPE_MODE (TREE_TYPE (loc)))
18994 <= DWARF2_ADDR_SIZE))
18996 dw_die_ref ref = lookup_decl_die (loc);
18997 if (ref)
18999 ret = new_loc_descr (DW_OP_GNU_variable_value, 0, 0);
19000 ret->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
19001 ret->dw_loc_oprnd1.v.val_die_ref.die = ref;
19002 ret->dw_loc_oprnd1.v.val_die_ref.external = 0;
19004 else if (current_function_decl
19005 && DECL_CONTEXT (loc) == current_function_decl)
19007 ret = new_loc_descr (DW_OP_GNU_variable_value, 0, 0);
19008 ret->dw_loc_oprnd1.val_class = dw_val_class_decl_ref;
19009 ret->dw_loc_oprnd1.v.val_decl_ref = loc;
19011 break;
19013 expansion_failed (loc, NULL_RTX, "DECL has no RTL");
19014 return 0;
19016 else if (CONST_INT_P (rtl))
19018 HOST_WIDE_INT val = INTVAL (rtl);
19019 if (TYPE_UNSIGNED (TREE_TYPE (loc)))
19020 val &= GET_MODE_MASK (DECL_MODE (loc));
19021 ret = int_loc_descriptor (val);
19023 else if (GET_CODE (rtl) == CONST_STRING)
19025 expansion_failed (loc, NULL_RTX, "CONST_STRING");
19026 return 0;
19028 else if (CONSTANT_P (rtl) && const_ok_for_output (rtl))
19029 ret = new_addr_loc_descr (rtl, dtprel_false);
19030 else
19032 machine_mode mode, mem_mode;
19034 /* Certain constructs can only be represented at top-level. */
19035 if (want_address == 2)
19037 ret = loc_descriptor (rtl, VOIDmode,
19038 VAR_INIT_STATUS_INITIALIZED);
19039 have_address = 1;
19041 else
19043 mode = GET_MODE (rtl);
19044 mem_mode = VOIDmode;
19045 if (MEM_P (rtl))
19047 mem_mode = mode;
19048 mode = get_address_mode (rtl);
19049 rtl = XEXP (rtl, 0);
19050 have_address = 1;
19052 ret = mem_loc_descriptor (rtl, mode, mem_mode,
19053 VAR_INIT_STATUS_INITIALIZED);
19055 if (!ret)
19056 expansion_failed (loc, rtl,
19057 "failed to produce loc descriptor for rtl");
19060 break;
19062 case MEM_REF:
19063 if (!integer_zerop (TREE_OPERAND (loc, 1)))
19065 have_address = 1;
19066 goto do_plus;
19068 /* Fallthru. */
19069 case INDIRECT_REF:
19070 list_ret = loc_list_from_tree_1 (TREE_OPERAND (loc, 0), 0, context);
19071 have_address = 1;
19072 break;
19074 case TARGET_MEM_REF:
19075 case SSA_NAME:
19076 case DEBUG_EXPR_DECL:
19077 return NULL;
19079 case COMPOUND_EXPR:
19080 return loc_list_from_tree_1 (TREE_OPERAND (loc, 1), want_address,
19081 context);
19083 CASE_CONVERT:
19084 case VIEW_CONVERT_EXPR:
19085 case SAVE_EXPR:
19086 case MODIFY_EXPR:
19087 case NON_LVALUE_EXPR:
19088 return loc_list_from_tree_1 (TREE_OPERAND (loc, 0), want_address,
19089 context);
19091 case COMPONENT_REF:
19092 case BIT_FIELD_REF:
19093 case ARRAY_REF:
19094 case ARRAY_RANGE_REF:
19095 case REALPART_EXPR:
19096 case IMAGPART_EXPR:
19098 tree obj, offset;
19099 poly_int64 bitsize, bitpos, bytepos;
19100 machine_mode mode;
19101 int unsignedp, reversep, volatilep = 0;
19103 obj = get_inner_reference (loc, &bitsize, &bitpos, &offset, &mode,
19104 &unsignedp, &reversep, &volatilep);
19106 gcc_assert (obj != loc);
19108 list_ret = loc_list_from_tree_1 (obj,
19109 want_address == 2
19110 && known_eq (bitpos, 0)
19111 && !offset ? 2 : 1,
19112 context);
19113 /* TODO: We can extract value of the small expression via shifting even
19114 for nonzero bitpos. */
19115 if (list_ret == 0)
19116 return 0;
19117 if (!multiple_p (bitpos, BITS_PER_UNIT, &bytepos)
19118 || !multiple_p (bitsize, BITS_PER_UNIT))
19120 expansion_failed (loc, NULL_RTX,
19121 "bitfield access");
19122 return 0;
19125 if (offset != NULL_TREE)
19127 /* Variable offset. */
19128 list_ret1 = loc_list_from_tree_1 (offset, 0, context);
19129 if (list_ret1 == 0)
19130 return 0;
19131 add_loc_list (&list_ret, list_ret1);
19132 if (!list_ret)
19133 return 0;
19134 add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_plus, 0, 0));
19137 HOST_WIDE_INT value;
19138 if (bytepos.is_constant (&value) && value > 0)
19139 add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_plus_uconst,
19140 value, 0));
19141 else if (maybe_ne (bytepos, 0))
19142 loc_list_plus_const (list_ret, bytepos);
19144 have_address = 1;
19145 break;
19148 case INTEGER_CST:
19149 if ((want_address || !tree_fits_shwi_p (loc))
19150 && (ret = cst_pool_loc_descr (loc)))
19151 have_address = 1;
19152 else if (want_address == 2
19153 && tree_fits_shwi_p (loc)
19154 && (ret = address_of_int_loc_descriptor
19155 (int_size_in_bytes (TREE_TYPE (loc)),
19156 tree_to_shwi (loc))))
19157 have_address = 1;
19158 else if (tree_fits_shwi_p (loc))
19159 ret = int_loc_descriptor (tree_to_shwi (loc));
19160 else if (tree_fits_uhwi_p (loc))
19161 ret = uint_loc_descriptor (tree_to_uhwi (loc));
19162 else
19164 expansion_failed (loc, NULL_RTX,
19165 "Integer operand is not host integer");
19166 return 0;
19168 break;
19170 case POLY_INT_CST:
19172 if (want_address)
19174 expansion_failed (loc, NULL_RTX,
19175 "constant address with a runtime component");
19176 return 0;
19178 poly_int64 value;
19179 if (!poly_int_tree_p (loc, &value))
19181 expansion_failed (loc, NULL_RTX, "constant too big");
19182 return 0;
19184 ret = int_loc_descriptor (value);
19186 break;
19188 case CONSTRUCTOR:
19189 case REAL_CST:
19190 case STRING_CST:
19191 case COMPLEX_CST:
19192 if ((ret = cst_pool_loc_descr (loc)))
19193 have_address = 1;
19194 else if (TREE_CODE (loc) == CONSTRUCTOR)
19196 tree type = TREE_TYPE (loc);
19197 unsigned HOST_WIDE_INT size = int_size_in_bytes (type);
19198 unsigned HOST_WIDE_INT offset = 0;
19199 unsigned HOST_WIDE_INT cnt;
19200 constructor_elt *ce;
19202 if (TREE_CODE (type) == RECORD_TYPE)
19204 /* This is very limited, but it's enough to output
19205 pointers to member functions, as long as the
19206 referenced function is defined in the current
19207 translation unit. */
19208 FOR_EACH_VEC_SAFE_ELT (CONSTRUCTOR_ELTS (loc), cnt, ce)
19210 tree val = ce->value;
19212 tree field = ce->index;
19214 if (val)
19215 STRIP_NOPS (val);
19217 if (!field || DECL_BIT_FIELD (field))
19219 expansion_failed (loc, NULL_RTX,
19220 "bitfield in record type constructor");
19221 size = offset = (unsigned HOST_WIDE_INT)-1;
19222 ret = NULL;
19223 break;
19226 HOST_WIDE_INT fieldsize = tree_to_shwi (DECL_SIZE_UNIT (field));
19227 unsigned HOST_WIDE_INT pos = int_byte_position (field);
19228 gcc_assert (pos + fieldsize <= size);
19229 if (pos < offset)
19231 expansion_failed (loc, NULL_RTX,
19232 "out-of-order fields in record constructor");
19233 size = offset = (unsigned HOST_WIDE_INT)-1;
19234 ret = NULL;
19235 break;
19237 if (pos > offset)
19239 ret1 = new_loc_descr (DW_OP_piece, pos - offset, 0);
19240 add_loc_descr (&ret, ret1);
19241 offset = pos;
19243 if (val && fieldsize != 0)
19245 ret1 = loc_descriptor_from_tree (val, want_address, context);
19246 if (!ret1)
19248 expansion_failed (loc, NULL_RTX,
19249 "unsupported expression in field");
19250 size = offset = (unsigned HOST_WIDE_INT)-1;
19251 ret = NULL;
19252 break;
19254 add_loc_descr (&ret, ret1);
19256 if (fieldsize)
19258 ret1 = new_loc_descr (DW_OP_piece, fieldsize, 0);
19259 add_loc_descr (&ret, ret1);
19260 offset = pos + fieldsize;
19264 if (offset != size)
19266 ret1 = new_loc_descr (DW_OP_piece, size - offset, 0);
19267 add_loc_descr (&ret, ret1);
19268 offset = size;
19271 have_address = !!want_address;
19273 else
19274 expansion_failed (loc, NULL_RTX,
19275 "constructor of non-record type");
19277 else
19278 /* We can construct small constants here using int_loc_descriptor. */
19279 expansion_failed (loc, NULL_RTX,
19280 "constructor or constant not in constant pool");
19281 break;
19283 case TRUTH_AND_EXPR:
19284 case TRUTH_ANDIF_EXPR:
19285 case BIT_AND_EXPR:
19286 op = DW_OP_and;
19287 goto do_binop;
19289 case TRUTH_XOR_EXPR:
19290 case BIT_XOR_EXPR:
19291 op = DW_OP_xor;
19292 goto do_binop;
19294 case TRUTH_OR_EXPR:
19295 case TRUTH_ORIF_EXPR:
19296 case BIT_IOR_EXPR:
19297 op = DW_OP_or;
19298 goto do_binop;
19300 case EXACT_DIV_EXPR:
19301 case FLOOR_DIV_EXPR:
19302 case TRUNC_DIV_EXPR:
19303 /* Turn a divide by a power of 2 into a shift when possible. */
19304 if (TYPE_UNSIGNED (TREE_TYPE (loc))
19305 && tree_fits_uhwi_p (TREE_OPERAND (loc, 1)))
19307 const int log2 = exact_log2 (tree_to_uhwi (TREE_OPERAND (loc, 1)));
19308 if (log2 > 0)
19310 list_ret
19311 = loc_list_from_tree_1 (TREE_OPERAND (loc, 0), 0, context);
19312 if (list_ret == 0)
19313 return 0;
19315 add_loc_descr_to_each (list_ret, uint_loc_descriptor (log2));
19316 add_loc_descr_to_each (list_ret,
19317 new_loc_descr (DW_OP_shr, 0, 0));
19318 break;
19322 /* fall through */
19324 case CEIL_DIV_EXPR:
19325 case ROUND_DIV_EXPR:
19326 if (TYPE_UNSIGNED (TREE_TYPE (loc)))
19328 enum machine_mode mode = TYPE_MODE (TREE_TYPE (loc));
19329 scalar_int_mode int_mode;
19331 if ((dwarf_strict && dwarf_version < 5)
19332 || !is_a <scalar_int_mode> (mode, &int_mode))
19333 return 0;
19335 /* We can use a signed divide if the sign bit is not set. */
19336 if (GET_MODE_SIZE (int_mode) < DWARF2_ADDR_SIZE)
19338 op = DW_OP_div;
19339 goto do_binop;
19342 list_ret = typed_binop_from_tree (DW_OP_div, loc,
19343 base_type_for_mode (int_mode, 1),
19344 int_mode, context);
19345 break;
19347 op = DW_OP_div;
19348 goto do_binop;
19350 case MINUS_EXPR:
19351 op = DW_OP_minus;
19352 goto do_binop;
19354 case FLOOR_MOD_EXPR:
19355 case CEIL_MOD_EXPR:
19356 case ROUND_MOD_EXPR:
19357 case TRUNC_MOD_EXPR:
19358 if (TYPE_UNSIGNED (TREE_TYPE (loc)))
19360 op = DW_OP_mod;
19361 goto do_binop;
19363 list_ret = loc_list_from_tree_1 (TREE_OPERAND (loc, 0), 0, context);
19364 list_ret1 = loc_list_from_tree_1 (TREE_OPERAND (loc, 1), 0, context);
19365 if (list_ret == 0 || list_ret1 == 0)
19366 return 0;
19368 add_loc_list (&list_ret, list_ret1);
19369 if (list_ret == 0)
19370 return 0;
19371 add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_over, 0, 0));
19372 add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_over, 0, 0));
19373 add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_div, 0, 0));
19374 add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_mul, 0, 0));
19375 add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_minus, 0, 0));
19376 break;
19378 case MULT_EXPR:
19379 op = DW_OP_mul;
19380 goto do_binop;
19382 case LSHIFT_EXPR:
19383 op = DW_OP_shl;
19384 goto do_binop;
19386 case RSHIFT_EXPR:
19387 op = (TYPE_UNSIGNED (TREE_TYPE (loc)) ? DW_OP_shr : DW_OP_shra);
19388 goto do_binop;
19390 case POINTER_PLUS_EXPR:
19391 case PLUS_EXPR:
19392 do_plus:
19393 if (tree_fits_shwi_p (TREE_OPERAND (loc, 1)))
19395 /* Big unsigned numbers can fit in HOST_WIDE_INT but it may be
19396 smarter to encode their opposite. The DW_OP_plus_uconst operation
19397 takes 1 + X bytes, X being the size of the ULEB128 addend. On the
19398 other hand, a "<push literal>; DW_OP_minus" pattern takes 1 + Y
19399 bytes, Y being the size of the operation that pushes the opposite
19400 of the addend. So let's choose the smallest representation. */
19401 const tree tree_addend = TREE_OPERAND (loc, 1);
19402 offset_int wi_addend;
19403 HOST_WIDE_INT shwi_addend;
19404 dw_loc_descr_ref loc_naddend;
19406 list_ret = loc_list_from_tree_1 (TREE_OPERAND (loc, 0), 0, context);
19407 if (list_ret == 0)
19408 return 0;
19410 /* Try to get the literal to push. It is the opposite of the addend,
19411 so as we rely on wrapping during DWARF evaluation, first decode
19412 the literal as a "DWARF-sized" signed number. */
19413 wi_addend = wi::to_offset (tree_addend);
19414 wi_addend = wi::sext (wi_addend, DWARF2_ADDR_SIZE * 8);
19415 shwi_addend = wi_addend.to_shwi ();
19416 loc_naddend = (shwi_addend != INTTYPE_MINIMUM (HOST_WIDE_INT))
19417 ? int_loc_descriptor (-shwi_addend)
19418 : NULL;
19420 if (loc_naddend != NULL
19421 && ((unsigned) size_of_uleb128 (shwi_addend)
19422 > size_of_loc_descr (loc_naddend)))
19424 add_loc_descr_to_each (list_ret, loc_naddend);
19425 add_loc_descr_to_each (list_ret,
19426 new_loc_descr (DW_OP_minus, 0, 0));
19428 else
19430 for (dw_loc_descr_ref loc_cur = loc_naddend; loc_cur != NULL; )
19432 loc_naddend = loc_cur;
19433 loc_cur = loc_cur->dw_loc_next;
19434 ggc_free (loc_naddend);
19436 loc_list_plus_const (list_ret, wi_addend.to_shwi ());
19438 break;
19441 op = DW_OP_plus;
19442 goto do_binop;
19444 case LE_EXPR:
19445 op = DW_OP_le;
19446 goto do_comp_binop;
19448 case GE_EXPR:
19449 op = DW_OP_ge;
19450 goto do_comp_binop;
19452 case LT_EXPR:
19453 op = DW_OP_lt;
19454 goto do_comp_binop;
19456 case GT_EXPR:
19457 op = DW_OP_gt;
19458 goto do_comp_binop;
19460 do_comp_binop:
19461 if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc, 0))))
19463 list_ret = loc_list_from_tree (TREE_OPERAND (loc, 0), 0, context);
19464 list_ret1 = loc_list_from_tree (TREE_OPERAND (loc, 1), 0, context);
19465 list_ret = loc_list_from_uint_comparison (list_ret, list_ret1,
19466 TREE_CODE (loc));
19467 break;
19469 else
19470 goto do_binop;
19472 case EQ_EXPR:
19473 op = DW_OP_eq;
19474 goto do_binop;
19476 case NE_EXPR:
19477 op = DW_OP_ne;
19478 goto do_binop;
19480 do_binop:
19481 list_ret = loc_list_from_tree_1 (TREE_OPERAND (loc, 0), 0, context);
19482 list_ret1 = loc_list_from_tree_1 (TREE_OPERAND (loc, 1), 0, context);
19483 if (list_ret == 0 || list_ret1 == 0)
19484 return 0;
19486 add_loc_list (&list_ret, list_ret1);
19487 if (list_ret == 0)
19488 return 0;
19489 add_loc_descr_to_each (list_ret, new_loc_descr (op, 0, 0));
19490 break;
19492 case TRUTH_NOT_EXPR:
19493 list_ret = loc_list_from_tree_1 (TREE_OPERAND (loc, 0), 0, context);
19494 if (list_ret == 0)
19495 return 0;
19497 add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_lit0, 0, 0));
19498 add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_eq, 0, 0));
19499 break;
19501 case BIT_NOT_EXPR:
19502 op = DW_OP_not;
19503 goto do_unop;
19505 case ABS_EXPR:
19506 op = DW_OP_abs;
19507 goto do_unop;
19509 case NEGATE_EXPR:
19510 op = DW_OP_neg;
19511 goto do_unop;
19513 do_unop:
19514 list_ret = loc_list_from_tree_1 (TREE_OPERAND (loc, 0), 0, context);
19515 if (list_ret == 0)
19516 return 0;
19518 add_loc_descr_to_each (list_ret, new_loc_descr (op, 0, 0));
19519 break;
19521 case MIN_EXPR:
19522 case MAX_EXPR:
19524 const enum tree_code code =
19525 TREE_CODE (loc) == MIN_EXPR ? GT_EXPR : LT_EXPR;
19527 loc = build3 (COND_EXPR, TREE_TYPE (loc),
19528 build2 (code, integer_type_node,
19529 TREE_OPERAND (loc, 0), TREE_OPERAND (loc, 1)),
19530 TREE_OPERAND (loc, 1), TREE_OPERAND (loc, 0));
19533 /* fall through */
19535 case COND_EXPR:
19537 dw_loc_descr_ref lhs
19538 = loc_descriptor_from_tree (TREE_OPERAND (loc, 1), 0, context);
19539 dw_loc_list_ref rhs
19540 = loc_list_from_tree_1 (TREE_OPERAND (loc, 2), 0, context);
19541 dw_loc_descr_ref bra_node, jump_node, tmp;
19543 /* DW_OP_bra is branch-on-nonzero so avoid doing useless work. */
19544 if (TREE_CODE (TREE_OPERAND (loc, 0)) == NE_EXPR
19545 && integer_zerop (TREE_OPERAND (TREE_OPERAND (loc, 0), 1)))
19546 list_ret
19547 = loc_list_from_tree_1 (TREE_OPERAND (TREE_OPERAND (loc, 0), 0),
19548 0, context);
19549 /* Likewise, swap the operands for a logically negated condition. */
19550 else if (TREE_CODE (TREE_OPERAND (loc, 0)) == TRUTH_NOT_EXPR)
19552 lhs = loc_descriptor_from_tree (TREE_OPERAND (loc, 2), 0, context);
19553 rhs = loc_list_from_tree_1 (TREE_OPERAND (loc, 1), 0, context);
19554 list_ret
19555 = loc_list_from_tree_1 (TREE_OPERAND (TREE_OPERAND (loc, 0), 0),
19556 0, context);
19558 else
19559 list_ret = loc_list_from_tree_1 (TREE_OPERAND (loc, 0), 0, context);
19560 if (list_ret == 0 || lhs == 0 || rhs == 0)
19561 return 0;
19563 bra_node = new_loc_descr (DW_OP_bra, 0, 0);
19564 add_loc_descr_to_each (list_ret, bra_node);
19566 add_loc_list (&list_ret, rhs);
19567 jump_node = new_loc_descr (DW_OP_skip, 0, 0);
19568 add_loc_descr_to_each (list_ret, jump_node);
19570 add_loc_descr_to_each (list_ret, lhs);
19571 bra_node->dw_loc_oprnd1.val_class = dw_val_class_loc;
19572 bra_node->dw_loc_oprnd1.v.val_loc = lhs;
19574 /* ??? Need a node to point the skip at. Use a nop. */
19575 tmp = new_loc_descr (DW_OP_nop, 0, 0);
19576 add_loc_descr_to_each (list_ret, tmp);
19577 jump_node->dw_loc_oprnd1.val_class = dw_val_class_loc;
19578 jump_node->dw_loc_oprnd1.v.val_loc = tmp;
19580 break;
19582 case FIX_TRUNC_EXPR:
19583 return 0;
19585 case COMPOUND_LITERAL_EXPR:
19586 return loc_list_from_tree_1 (COMPOUND_LITERAL_EXPR_DECL (loc),
19587 0, context);
19589 default:
19590 /* Leave front-end specific codes as simply unknown. This comes
19591 up, for instance, with the C STMT_EXPR. */
19592 if ((unsigned int) TREE_CODE (loc)
19593 >= (unsigned int) LAST_AND_UNUSED_TREE_CODE)
19595 expansion_failed (loc, NULL_RTX,
19596 "language specific tree node");
19597 return 0;
19600 /* Otherwise this is a generic code; we should just lists all of
19601 these explicitly. We forgot one. */
19602 if (flag_checking)
19603 gcc_unreachable ();
19605 /* In a release build, we want to degrade gracefully: better to
19606 generate incomplete debugging information than to crash. */
19607 return NULL;
19610 if (!ret && !list_ret)
19611 return 0;
19613 if (want_address == 2 && !have_address
19614 && (dwarf_version >= 4 || !dwarf_strict))
19616 if (int_size_in_bytes (TREE_TYPE (loc)) > DWARF2_ADDR_SIZE)
19618 expansion_failed (loc, NULL_RTX,
19619 "DWARF address size mismatch");
19620 return 0;
19622 if (ret)
19623 add_loc_descr (&ret, new_loc_descr (DW_OP_stack_value, 0, 0));
19624 else
19625 add_loc_descr_to_each (list_ret,
19626 new_loc_descr (DW_OP_stack_value, 0, 0));
19627 have_address = 1;
19629 /* Show if we can't fill the request for an address. */
19630 if (want_address && !have_address)
19632 expansion_failed (loc, NULL_RTX,
19633 "Want address and only have value");
19634 return 0;
19637 gcc_assert (!ret || !list_ret);
19639 /* If we've got an address and don't want one, dereference. */
19640 if (!want_address && have_address)
19642 HOST_WIDE_INT size = int_size_in_bytes (TREE_TYPE (loc));
19643 enum machine_mode mode = TYPE_MODE (TREE_TYPE (loc));
19644 scalar_int_mode int_mode;
19645 dw_die_ref type_die;
19646 dw_loc_descr_ref deref;
19648 /* If the size is greater than DWARF2_ADDR_SIZE, bail out. */
19649 if (size > DWARF2_ADDR_SIZE || size == -1)
19651 expansion_failed (loc, NULL_RTX,
19652 "DWARF address size mismatch");
19653 return 0;
19656 /* If it is equal to DWARF2_ADDR_SIZE, extension does not matter. */
19657 else if (size == DWARF2_ADDR_SIZE)
19658 deref = new_loc_descr (DW_OP_deref, size, 0);
19660 /* If it is lower than DWARF2_ADDR_SIZE, DW_OP_deref_size will zero-
19661 extend the value, which is really OK for unsigned types only. */
19662 else if (!(context && context->strict_signedness)
19663 || TYPE_UNSIGNED (TREE_TYPE (loc))
19664 || (dwarf_strict && dwarf_version < 5)
19665 || !is_a <scalar_int_mode> (mode, &int_mode)
19666 || !(type_die = base_type_for_mode (mode, false)))
19667 deref = new_loc_descr (DW_OP_deref_size, size, 0);
19669 /* Use DW_OP_deref_type for signed integral types if possible, but
19670 convert back to the generic type to avoid type mismatches later. */
19671 else
19673 deref = new_loc_descr (dwarf_OP (DW_OP_deref_type), size, 0);
19674 deref->dw_loc_oprnd2.val_class = dw_val_class_die_ref;
19675 deref->dw_loc_oprnd2.v.val_die_ref.die = type_die;
19676 deref->dw_loc_oprnd2.v.val_die_ref.external = 0;
19677 add_loc_descr (&deref,
19678 new_loc_descr (dwarf_OP (DW_OP_convert), 0, 0));
19681 if (ret)
19682 add_loc_descr (&ret, deref);
19683 else
19684 add_loc_descr_to_each (list_ret, deref);
19687 if (ret)
19688 list_ret = new_loc_list (ret, NULL, 0, NULL, 0, NULL);
19690 return list_ret;
19693 /* Likewise, but strip useless DW_OP_nop operations in the resulting
19694 expressions. */
19696 static dw_loc_list_ref
19697 loc_list_from_tree (tree loc, int want_address,
19698 struct loc_descr_context *context)
19700 dw_loc_list_ref result = loc_list_from_tree_1 (loc, want_address, context);
19702 for (dw_loc_list_ref loc_cur = result;
19703 loc_cur != NULL; loc_cur = loc_cur->dw_loc_next)
19704 loc_descr_without_nops (loc_cur->expr);
19705 return result;
19708 /* Same as above but return only single location expression. */
19709 static dw_loc_descr_ref
19710 loc_descriptor_from_tree (tree loc, int want_address,
19711 struct loc_descr_context *context)
19713 dw_loc_list_ref ret = loc_list_from_tree (loc, want_address, context);
19714 if (!ret)
19715 return NULL;
19716 if (ret->dw_loc_next)
19718 expansion_failed (loc, NULL_RTX,
19719 "Location list where only loc descriptor needed");
19720 return NULL;
19722 return ret->expr;
19725 /* Given a pointer to what is assumed to be a FIELD_DECL node, return a
19726 pointer to the declared type for the relevant field variable, or return
19727 `integer_type_node' if the given node turns out to be an
19728 ERROR_MARK node. */
19730 static inline tree
19731 field_type (const_tree decl)
19733 tree type;
19735 if (TREE_CODE (decl) == ERROR_MARK)
19736 return integer_type_node;
19738 type = DECL_BIT_FIELD_TYPE (decl);
19739 if (type == NULL_TREE)
19740 type = TREE_TYPE (decl);
19742 return type;
19745 /* Given a pointer to a tree node, return the alignment in bits for
19746 it, or else return BITS_PER_WORD if the node actually turns out to
19747 be an ERROR_MARK node. */
19749 static inline unsigned
19750 simple_type_align_in_bits (const_tree type)
19752 return (TREE_CODE (type) != ERROR_MARK) ? TYPE_ALIGN (type) : BITS_PER_WORD;
19755 static inline unsigned
19756 simple_decl_align_in_bits (const_tree decl)
19758 return (TREE_CODE (decl) != ERROR_MARK) ? DECL_ALIGN (decl) : BITS_PER_WORD;
19761 /* Return the result of rounding T up to ALIGN. */
19763 static inline offset_int
19764 round_up_to_align (const offset_int &t, unsigned int align)
19766 return wi::udiv_trunc (t + align - 1, align) * align;
19769 /* Helper structure for RECORD_TYPE processing. */
19770 struct vlr_context
19772 /* Root RECORD_TYPE. It is needed to generate data member location
19773 descriptions in variable-length records (VLR), but also to cope with
19774 variants, which are composed of nested structures multiplexed with
19775 QUAL_UNION_TYPE nodes. Each time such a structure is passed to a
19776 function processing a FIELD_DECL, it is required to be non null. */
19777 tree struct_type;
19779 /* When generating a variant part in a RECORD_TYPE (i.e. a nested
19780 QUAL_UNION_TYPE), this holds an expression that computes the offset for
19781 this variant part as part of the root record (in storage units). For
19782 regular records, it must be NULL_TREE. */
19783 tree variant_part_offset;
19786 /* Given a pointer to a FIELD_DECL, compute the byte offset of the lowest
19787 addressed byte of the "containing object" for the given FIELD_DECL. If
19788 possible, return a native constant through CST_OFFSET (in which case NULL is
19789 returned); otherwise return a DWARF expression that computes the offset.
19791 Set *CST_OFFSET to 0 and return NULL if we are unable to determine what
19792 that offset is, either because the argument turns out to be a pointer to an
19793 ERROR_MARK node, or because the offset expression is too complex for us.
19795 CTX is required: see the comment for VLR_CONTEXT. */
19797 static dw_loc_descr_ref
19798 field_byte_offset (const_tree decl, struct vlr_context *ctx,
19799 HOST_WIDE_INT *cst_offset)
19801 tree tree_result;
19802 dw_loc_list_ref loc_result;
19804 *cst_offset = 0;
19806 if (TREE_CODE (decl) == ERROR_MARK)
19807 return NULL;
19808 else
19809 gcc_assert (TREE_CODE (decl) == FIELD_DECL);
19811 /* We cannot handle variable bit offsets at the moment, so abort if it's the
19812 case. */
19813 if (TREE_CODE (DECL_FIELD_BIT_OFFSET (decl)) != INTEGER_CST)
19814 return NULL;
19816 /* We used to handle only constant offsets in all cases. Now, we handle
19817 properly dynamic byte offsets only when PCC bitfield type doesn't
19818 matter. */
19819 if (PCC_BITFIELD_TYPE_MATTERS
19820 && DECL_BIT_FIELD_TYPE (decl)
19821 && TREE_CODE (DECL_FIELD_OFFSET (decl)) == INTEGER_CST)
19823 offset_int object_offset_in_bits;
19824 offset_int object_offset_in_bytes;
19825 offset_int bitpos_int;
19826 tree type;
19827 tree field_size_tree;
19828 offset_int deepest_bitpos;
19829 offset_int field_size_in_bits;
19830 unsigned int type_align_in_bits;
19831 unsigned int decl_align_in_bits;
19832 offset_int type_size_in_bits;
19834 bitpos_int = wi::to_offset (bit_position (decl));
19835 type = field_type (decl);
19836 type_size_in_bits = offset_int_type_size_in_bits (type);
19837 type_align_in_bits = simple_type_align_in_bits (type);
19839 field_size_tree = DECL_SIZE (decl);
19841 /* The size could be unspecified if there was an error, or for
19842 a flexible array member. */
19843 if (!field_size_tree)
19844 field_size_tree = bitsize_zero_node;
19846 /* If the size of the field is not constant, use the type size. */
19847 if (TREE_CODE (field_size_tree) == INTEGER_CST)
19848 field_size_in_bits = wi::to_offset (field_size_tree);
19849 else
19850 field_size_in_bits = type_size_in_bits;
19852 decl_align_in_bits = simple_decl_align_in_bits (decl);
19854 /* The GCC front-end doesn't make any attempt to keep track of the
19855 starting bit offset (relative to the start of the containing
19856 structure type) of the hypothetical "containing object" for a
19857 bit-field. Thus, when computing the byte offset value for the
19858 start of the "containing object" of a bit-field, we must deduce
19859 this information on our own. This can be rather tricky to do in
19860 some cases. For example, handling the following structure type
19861 definition when compiling for an i386/i486 target (which only
19862 aligns long long's to 32-bit boundaries) can be very tricky:
19864 struct S { int field1; long long field2:31; };
19866 Fortunately, there is a simple rule-of-thumb which can be used
19867 in such cases. When compiling for an i386/i486, GCC will
19868 allocate 8 bytes for the structure shown above. It decides to
19869 do this based upon one simple rule for bit-field allocation.
19870 GCC allocates each "containing object" for each bit-field at
19871 the first (i.e. lowest addressed) legitimate alignment boundary
19872 (based upon the required minimum alignment for the declared
19873 type of the field) which it can possibly use, subject to the
19874 condition that there is still enough available space remaining
19875 in the containing object (when allocated at the selected point)
19876 to fully accommodate all of the bits of the bit-field itself.
19878 This simple rule makes it obvious why GCC allocates 8 bytes for
19879 each object of the structure type shown above. When looking
19880 for a place to allocate the "containing object" for `field2',
19881 the compiler simply tries to allocate a 64-bit "containing
19882 object" at each successive 32-bit boundary (starting at zero)
19883 until it finds a place to allocate that 64- bit field such that
19884 at least 31 contiguous (and previously unallocated) bits remain
19885 within that selected 64 bit field. (As it turns out, for the
19886 example above, the compiler finds it is OK to allocate the
19887 "containing object" 64-bit field at bit-offset zero within the
19888 structure type.)
19890 Here we attempt to work backwards from the limited set of facts
19891 we're given, and we try to deduce from those facts, where GCC
19892 must have believed that the containing object started (within
19893 the structure type). The value we deduce is then used (by the
19894 callers of this routine) to generate DW_AT_location and
19895 DW_AT_bit_offset attributes for fields (both bit-fields and, in
19896 the case of DW_AT_location, regular fields as well). */
19898 /* Figure out the bit-distance from the start of the structure to
19899 the "deepest" bit of the bit-field. */
19900 deepest_bitpos = bitpos_int + field_size_in_bits;
19902 /* This is the tricky part. Use some fancy footwork to deduce
19903 where the lowest addressed bit of the containing object must
19904 be. */
19905 object_offset_in_bits = deepest_bitpos - type_size_in_bits;
19907 /* Round up to type_align by default. This works best for
19908 bitfields. */
19909 object_offset_in_bits
19910 = round_up_to_align (object_offset_in_bits, type_align_in_bits);
19912 if (wi::gtu_p (object_offset_in_bits, bitpos_int))
19914 object_offset_in_bits = deepest_bitpos - type_size_in_bits;
19916 /* Round up to decl_align instead. */
19917 object_offset_in_bits
19918 = round_up_to_align (object_offset_in_bits, decl_align_in_bits);
19921 object_offset_in_bytes
19922 = wi::lrshift (object_offset_in_bits, LOG2_BITS_PER_UNIT);
19923 if (ctx->variant_part_offset == NULL_TREE)
19925 *cst_offset = object_offset_in_bytes.to_shwi ();
19926 return NULL;
19928 tree_result = wide_int_to_tree (sizetype, object_offset_in_bytes);
19930 else
19931 tree_result = byte_position (decl);
19933 if (ctx->variant_part_offset != NULL_TREE)
19934 tree_result = fold_build2 (PLUS_EXPR, TREE_TYPE (tree_result),
19935 ctx->variant_part_offset, tree_result);
19937 /* If the byte offset is a constant, it's simplier to handle a native
19938 constant rather than a DWARF expression. */
19939 if (TREE_CODE (tree_result) == INTEGER_CST)
19941 *cst_offset = wi::to_offset (tree_result).to_shwi ();
19942 return NULL;
19945 struct loc_descr_context loc_ctx = {
19946 ctx->struct_type, /* context_type */
19947 NULL_TREE, /* base_decl */
19948 NULL, /* dpi */
19949 false, /* placeholder_arg */
19950 false, /* placeholder_seen */
19951 false /* strict_signedness */
19953 loc_result = loc_list_from_tree (tree_result, 0, &loc_ctx);
19955 /* We want a DWARF expression: abort if we only have a location list with
19956 multiple elements. */
19957 if (!loc_result || !single_element_loc_list_p (loc_result))
19958 return NULL;
19959 else
19960 return loc_result->expr;
19963 /* The following routines define various Dwarf attributes and any data
19964 associated with them. */
19966 /* Add a location description attribute value to a DIE.
19968 This emits location attributes suitable for whole variables and
19969 whole parameters. Note that the location attributes for struct fields are
19970 generated by the routine `data_member_location_attribute' below. */
19972 static inline void
19973 add_AT_location_description (dw_die_ref die, enum dwarf_attribute attr_kind,
19974 dw_loc_list_ref descr)
19976 bool check_no_locviews = true;
19977 if (descr == 0)
19978 return;
19979 if (single_element_loc_list_p (descr))
19980 add_AT_loc (die, attr_kind, descr->expr);
19981 else
19983 add_AT_loc_list (die, attr_kind, descr);
19984 gcc_assert (descr->ll_symbol);
19985 if (attr_kind == DW_AT_location && descr->vl_symbol
19986 && dwarf2out_locviews_in_attribute ())
19988 add_AT_view_list (die, DW_AT_GNU_locviews);
19989 check_no_locviews = false;
19993 if (check_no_locviews)
19994 gcc_assert (!get_AT (die, DW_AT_GNU_locviews));
19997 /* Add DW_AT_accessibility attribute to DIE if needed. */
19999 static void
20000 add_accessibility_attribute (dw_die_ref die, tree decl)
20002 /* In DWARF3+ the default is DW_ACCESS_private only in DW_TAG_class_type
20003 children, otherwise the default is DW_ACCESS_public. In DWARF2
20004 the default has always been DW_ACCESS_public. */
20005 if (TREE_PROTECTED (decl))
20006 add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_protected);
20007 else if (TREE_PRIVATE (decl))
20009 if (dwarf_version == 2
20010 || die->die_parent == NULL
20011 || die->die_parent->die_tag != DW_TAG_class_type)
20012 add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_private);
20014 else if (dwarf_version > 2
20015 && die->die_parent
20016 && die->die_parent->die_tag == DW_TAG_class_type)
20017 add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_public);
20020 /* Attach the specialized form of location attribute used for data members of
20021 struct and union types. In the special case of a FIELD_DECL node which
20022 represents a bit-field, the "offset" part of this special location
20023 descriptor must indicate the distance in bytes from the lowest-addressed
20024 byte of the containing struct or union type to the lowest-addressed byte of
20025 the "containing object" for the bit-field. (See the `field_byte_offset'
20026 function above).
20028 For any given bit-field, the "containing object" is a hypothetical object
20029 (of some integral or enum type) within which the given bit-field lives. The
20030 type of this hypothetical "containing object" is always the same as the
20031 declared type of the individual bit-field itself (for GCC anyway... the
20032 DWARF spec doesn't actually mandate this). Note that it is the size (in
20033 bytes) of the hypothetical "containing object" which will be given in the
20034 DW_AT_byte_size attribute for this bit-field. (See the
20035 `byte_size_attribute' function below.) It is also used when calculating the
20036 value of the DW_AT_bit_offset attribute. (See the `bit_offset_attribute'
20037 function below.)
20039 CTX is required: see the comment for VLR_CONTEXT. */
20041 static void
20042 add_data_member_location_attribute (dw_die_ref die,
20043 tree decl,
20044 struct vlr_context *ctx)
20046 HOST_WIDE_INT offset;
20047 dw_loc_descr_ref loc_descr = 0;
20049 if (TREE_CODE (decl) == TREE_BINFO)
20051 /* We're working on the TAG_inheritance for a base class. */
20052 if (BINFO_VIRTUAL_P (decl) && is_cxx ())
20054 /* For C++ virtual bases we can't just use BINFO_OFFSET, as they
20055 aren't at a fixed offset from all (sub)objects of the same
20056 type. We need to extract the appropriate offset from our
20057 vtable. The following dwarf expression means
20059 BaseAddr = ObAddr + *((*ObAddr) - Offset)
20061 This is specific to the V3 ABI, of course. */
20063 dw_loc_descr_ref tmp;
20065 /* Make a copy of the object address. */
20066 tmp = new_loc_descr (DW_OP_dup, 0, 0);
20067 add_loc_descr (&loc_descr, tmp);
20069 /* Extract the vtable address. */
20070 tmp = new_loc_descr (DW_OP_deref, 0, 0);
20071 add_loc_descr (&loc_descr, tmp);
20073 /* Calculate the address of the offset. */
20074 offset = tree_to_shwi (BINFO_VPTR_FIELD (decl));
20075 gcc_assert (offset < 0);
20077 tmp = int_loc_descriptor (-offset);
20078 add_loc_descr (&loc_descr, tmp);
20079 tmp = new_loc_descr (DW_OP_minus, 0, 0);
20080 add_loc_descr (&loc_descr, tmp);
20082 /* Extract the offset. */
20083 tmp = new_loc_descr (DW_OP_deref, 0, 0);
20084 add_loc_descr (&loc_descr, tmp);
20086 /* Add it to the object address. */
20087 tmp = new_loc_descr (DW_OP_plus, 0, 0);
20088 add_loc_descr (&loc_descr, tmp);
20090 else
20091 offset = tree_to_shwi (BINFO_OFFSET (decl));
20093 else
20095 loc_descr = field_byte_offset (decl, ctx, &offset);
20097 if (!loc_descr)
20100 /* If loc_descr is available, then we know the offset is dynamic. */
20101 else if (gnat_encodings == DWARF_GNAT_ENCODINGS_ALL)
20103 loc_descr = NULL;
20104 offset = 0;
20107 /* Data member location evaluation starts with the base address on the
20108 stack. Compute the field offset and add it to this base address. */
20109 else
20110 add_loc_descr (&loc_descr, new_loc_descr (DW_OP_plus, 0, 0));
20113 if (!loc_descr)
20115 /* While DW_AT_data_bit_offset has been added already in DWARF4,
20116 e.g. GDB only added support to it in November 2016. For DWARF5
20117 we need newer debug info consumers anyway. We might change this
20118 to dwarf_version >= 4 once most consumers catched up. */
20119 if (dwarf_version >= 5
20120 && TREE_CODE (decl) == FIELD_DECL
20121 && DECL_BIT_FIELD_TYPE (decl)
20122 && (ctx->variant_part_offset == NULL_TREE
20123 || TREE_CODE (ctx->variant_part_offset) == INTEGER_CST))
20125 tree off = bit_position (decl);
20126 if (ctx->variant_part_offset)
20127 off = bit_from_pos (ctx->variant_part_offset, off);
20128 if (tree_fits_uhwi_p (off) && get_AT (die, DW_AT_bit_size))
20130 remove_AT (die, DW_AT_byte_size);
20131 remove_AT (die, DW_AT_bit_offset);
20132 add_AT_unsigned (die, DW_AT_data_bit_offset, tree_to_uhwi (off));
20133 return;
20136 if (dwarf_version > 2)
20138 /* Don't need to output a location expression, just the constant. */
20139 if (offset < 0)
20140 add_AT_int (die, DW_AT_data_member_location, offset);
20141 else
20142 add_AT_unsigned (die, DW_AT_data_member_location, offset);
20143 return;
20145 else
20147 enum dwarf_location_atom op;
20149 /* The DWARF2 standard says that we should assume that the structure
20150 address is already on the stack, so we can specify a structure
20151 field address by using DW_OP_plus_uconst. */
20152 op = DW_OP_plus_uconst;
20153 loc_descr = new_loc_descr (op, offset, 0);
20157 add_AT_loc (die, DW_AT_data_member_location, loc_descr);
20160 /* Writes integer values to dw_vec_const array. */
20162 static void
20163 insert_int (HOST_WIDE_INT val, unsigned int size, unsigned char *dest)
20165 while (size != 0)
20167 *dest++ = val & 0xff;
20168 val >>= 8;
20169 --size;
20173 /* Reads integers from dw_vec_const array. Inverse of insert_int. */
20175 static HOST_WIDE_INT
20176 extract_int (const unsigned char *src, unsigned int size)
20178 HOST_WIDE_INT val = 0;
20180 src += size;
20181 while (size != 0)
20183 val <<= 8;
20184 val |= *--src & 0xff;
20185 --size;
20187 return val;
20190 /* Writes wide_int values to dw_vec_const array. */
20192 static void
20193 insert_wide_int (const wide_int &val, unsigned char *dest, int elt_size)
20195 int i;
20197 if (elt_size <= HOST_BITS_PER_WIDE_INT/BITS_PER_UNIT)
20199 insert_int ((HOST_WIDE_INT) val.elt (0), elt_size, dest);
20200 return;
20203 /* We'd have to extend this code to support odd sizes. */
20204 gcc_assert (elt_size % (HOST_BITS_PER_WIDE_INT / BITS_PER_UNIT) == 0);
20206 int n = elt_size / (HOST_BITS_PER_WIDE_INT / BITS_PER_UNIT);
20208 if (WORDS_BIG_ENDIAN)
20209 for (i = n - 1; i >= 0; i--)
20211 insert_int ((HOST_WIDE_INT) val.elt (i), sizeof (HOST_WIDE_INT), dest);
20212 dest += sizeof (HOST_WIDE_INT);
20214 else
20215 for (i = 0; i < n; i++)
20217 insert_int ((HOST_WIDE_INT) val.elt (i), sizeof (HOST_WIDE_INT), dest);
20218 dest += sizeof (HOST_WIDE_INT);
20222 /* Writes floating point values to dw_vec_const array. */
20224 static unsigned
20225 insert_float (const_rtx rtl, unsigned char *array)
20227 long val[4];
20228 int i;
20229 scalar_float_mode mode = as_a <scalar_float_mode> (GET_MODE (rtl));
20231 real_to_target (val, CONST_DOUBLE_REAL_VALUE (rtl), mode);
20233 /* real_to_target puts 32-bit pieces in each long. Pack them. */
20234 if (GET_MODE_SIZE (mode) < 4)
20236 gcc_assert (GET_MODE_SIZE (mode) == 2);
20237 insert_int (val[0], 2, array);
20238 return 2;
20241 for (i = 0; i < GET_MODE_SIZE (mode) / 4; i++)
20243 insert_int (val[i], 4, array);
20244 array += 4;
20246 return 4;
20249 /* Attach a DW_AT_const_value attribute for a variable or a parameter which
20250 does not have a "location" either in memory or in a register. These
20251 things can arise in GNU C when a constant is passed as an actual parameter
20252 to an inlined function. They can also arise in C++ where declared
20253 constants do not necessarily get memory "homes". */
20255 static bool
20256 add_const_value_attribute (dw_die_ref die, machine_mode mode, rtx rtl)
20258 scalar_mode int_mode;
20260 switch (GET_CODE (rtl))
20262 case CONST_INT:
20264 HOST_WIDE_INT val = INTVAL (rtl);
20266 if (val < 0)
20267 add_AT_int (die, DW_AT_const_value, val);
20268 else
20269 add_AT_unsigned (die, DW_AT_const_value, (unsigned HOST_WIDE_INT) val);
20271 return true;
20273 case CONST_WIDE_INT:
20274 if (is_int_mode (mode, &int_mode)
20275 && (GET_MODE_PRECISION (int_mode)
20276 & (HOST_BITS_PER_WIDE_INT - 1)) == 0)
20278 wide_int w = rtx_mode_t (rtl, int_mode);
20279 add_AT_wide (die, DW_AT_const_value, w);
20280 return true;
20282 return false;
20284 case CONST_DOUBLE:
20285 /* Note that a CONST_DOUBLE rtx could represent either an integer or a
20286 floating-point constant. A CONST_DOUBLE is used whenever the
20287 constant requires more than one word in order to be adequately
20288 represented. */
20289 if (TARGET_SUPPORTS_WIDE_INT == 0
20290 && !SCALAR_FLOAT_MODE_P (GET_MODE (rtl)))
20291 add_AT_double (die, DW_AT_const_value,
20292 CONST_DOUBLE_HIGH (rtl), CONST_DOUBLE_LOW (rtl));
20293 else
20295 scalar_float_mode mode = as_a <scalar_float_mode> (GET_MODE (rtl));
20296 unsigned int length = GET_MODE_SIZE (mode);
20297 unsigned char *array = ggc_vec_alloc<unsigned char> (length);
20298 unsigned int elt_size = insert_float (rtl, array);
20300 add_AT_vec (die, DW_AT_const_value, length / elt_size, elt_size,
20301 array);
20303 return true;
20305 case CONST_VECTOR:
20307 unsigned int length;
20308 if (!CONST_VECTOR_NUNITS (rtl).is_constant (&length))
20309 return false;
20311 machine_mode mode = GET_MODE (rtl);
20312 /* The combination of a length and byte elt_size doesn't extend
20313 naturally to boolean vectors, where several elements are packed
20314 into the same byte. */
20315 if (GET_MODE_CLASS (mode) == MODE_VECTOR_BOOL)
20316 return false;
20318 unsigned int elt_size = GET_MODE_UNIT_SIZE (mode);
20319 unsigned char *array
20320 = ggc_vec_alloc<unsigned char> (length * elt_size);
20321 unsigned int i;
20322 unsigned char *p;
20323 machine_mode imode = GET_MODE_INNER (mode);
20325 switch (GET_MODE_CLASS (mode))
20327 case MODE_VECTOR_INT:
20328 for (i = 0, p = array; i < length; i++, p += elt_size)
20330 rtx elt = CONST_VECTOR_ELT (rtl, i);
20331 insert_wide_int (rtx_mode_t (elt, imode), p, elt_size);
20333 break;
20335 case MODE_VECTOR_FLOAT:
20336 for (i = 0, p = array; i < length; i++, p += elt_size)
20338 rtx elt = CONST_VECTOR_ELT (rtl, i);
20339 insert_float (elt, p);
20341 break;
20343 default:
20344 gcc_unreachable ();
20347 add_AT_vec (die, DW_AT_const_value, length, elt_size, array);
20349 return true;
20351 case CONST_STRING:
20352 if (dwarf_version >= 4 || !dwarf_strict)
20354 dw_loc_descr_ref loc_result;
20355 resolve_one_addr (&rtl);
20356 rtl_addr:
20357 loc_result = new_addr_loc_descr (rtl, dtprel_false);
20358 add_loc_descr (&loc_result, new_loc_descr (DW_OP_stack_value, 0, 0));
20359 add_AT_loc (die, DW_AT_location, loc_result);
20360 vec_safe_push (used_rtx_array, rtl);
20361 return true;
20363 return false;
20365 case CONST:
20366 if (CONSTANT_P (XEXP (rtl, 0)))
20367 return add_const_value_attribute (die, mode, XEXP (rtl, 0));
20368 /* FALLTHROUGH */
20369 case SYMBOL_REF:
20370 if (!const_ok_for_output (rtl))
20371 return false;
20372 /* FALLTHROUGH */
20373 case LABEL_REF:
20374 if (dwarf_version >= 4 || !dwarf_strict)
20375 goto rtl_addr;
20376 return false;
20378 case PLUS:
20379 /* In cases where an inlined instance of an inline function is passed
20380 the address of an `auto' variable (which is local to the caller) we
20381 can get a situation where the DECL_RTL of the artificial local
20382 variable (for the inlining) which acts as a stand-in for the
20383 corresponding formal parameter (of the inline function) will look
20384 like (plus:SI (reg:SI FRAME_PTR) (const_int ...)). This is not
20385 exactly a compile-time constant expression, but it isn't the address
20386 of the (artificial) local variable either. Rather, it represents the
20387 *value* which the artificial local variable always has during its
20388 lifetime. We currently have no way to represent such quasi-constant
20389 values in Dwarf, so for now we just punt and generate nothing. */
20390 return false;
20392 case HIGH:
20393 case CONST_FIXED:
20394 case MINUS:
20395 case SIGN_EXTEND:
20396 case ZERO_EXTEND:
20397 case CONST_POLY_INT:
20398 return false;
20400 case MEM:
20401 if (GET_CODE (XEXP (rtl, 0)) == CONST_STRING
20402 && MEM_READONLY_P (rtl)
20403 && GET_MODE (rtl) == BLKmode)
20405 add_AT_string (die, DW_AT_const_value, XSTR (XEXP (rtl, 0), 0));
20406 return true;
20408 return false;
20410 default:
20411 /* No other kinds of rtx should be possible here. */
20412 gcc_unreachable ();
20416 /* Determine whether the evaluation of EXPR references any variables
20417 or functions which aren't otherwise used (and therefore may not be
20418 output). */
20419 static tree
20420 reference_to_unused (tree * tp, int * walk_subtrees,
20421 void * data ATTRIBUTE_UNUSED)
20423 if (! EXPR_P (*tp) && ! CONSTANT_CLASS_P (*tp))
20424 *walk_subtrees = 0;
20426 if (DECL_P (*tp) && ! TREE_PUBLIC (*tp) && ! TREE_USED (*tp)
20427 && ! TREE_ASM_WRITTEN (*tp))
20428 return *tp;
20429 /* ??? The C++ FE emits debug information for using decls, so
20430 putting gcc_unreachable here falls over. See PR31899. For now
20431 be conservative. */
20432 else if (!symtab->global_info_ready && VAR_P (*tp))
20433 return *tp;
20434 else if (VAR_P (*tp))
20436 varpool_node *node = varpool_node::get (*tp);
20437 if (!node || !node->definition)
20438 return *tp;
20440 else if (TREE_CODE (*tp) == FUNCTION_DECL
20441 && (!DECL_EXTERNAL (*tp) || DECL_DECLARED_INLINE_P (*tp)))
20443 /* The call graph machinery must have finished analyzing,
20444 optimizing and gimplifying the CU by now.
20445 So if *TP has no call graph node associated
20446 to it, it means *TP will not be emitted. */
20447 if (!symtab->global_info_ready || !cgraph_node::get (*tp))
20448 return *tp;
20450 else if (TREE_CODE (*tp) == STRING_CST && !TREE_ASM_WRITTEN (*tp))
20451 return *tp;
20453 return NULL_TREE;
20456 /* Generate an RTL constant from a decl initializer INIT with decl type TYPE,
20457 for use in a later add_const_value_attribute call. */
20459 static rtx
20460 rtl_for_decl_init (tree init, tree type)
20462 rtx rtl = NULL_RTX;
20464 STRIP_NOPS (init);
20466 /* If a variable is initialized with a string constant without embedded
20467 zeros, build CONST_STRING. */
20468 if (TREE_CODE (init) == STRING_CST && TREE_CODE (type) == ARRAY_TYPE)
20470 tree enttype = TREE_TYPE (type);
20471 tree domain = TYPE_DOMAIN (type);
20472 scalar_int_mode mode;
20474 if (is_int_mode (TYPE_MODE (enttype), &mode)
20475 && GET_MODE_SIZE (mode) == 1
20476 && domain
20477 && TYPE_MAX_VALUE (domain)
20478 && TREE_CODE (TYPE_MAX_VALUE (domain)) == INTEGER_CST
20479 && integer_zerop (TYPE_MIN_VALUE (domain))
20480 && compare_tree_int (TYPE_MAX_VALUE (domain),
20481 TREE_STRING_LENGTH (init) - 1) == 0
20482 && ((size_t) TREE_STRING_LENGTH (init)
20483 == strlen (TREE_STRING_POINTER (init)) + 1))
20485 rtl = gen_rtx_CONST_STRING (VOIDmode,
20486 ggc_strdup (TREE_STRING_POINTER (init)));
20487 rtl = gen_rtx_MEM (BLKmode, rtl);
20488 MEM_READONLY_P (rtl) = 1;
20491 /* Other aggregates, and complex values, could be represented using
20492 CONCAT: FIXME!
20493 If this changes, please adjust tree_add_const_value_attribute
20494 so that for early_dwarf it will for such initializers mangle referenced
20495 decls. */
20496 else if (AGGREGATE_TYPE_P (type)
20497 || (TREE_CODE (init) == VIEW_CONVERT_EXPR
20498 && AGGREGATE_TYPE_P (TREE_TYPE (TREE_OPERAND (init, 0))))
20499 || TREE_CODE (type) == COMPLEX_TYPE)
20501 /* Vectors only work if their mode is supported by the target.
20502 FIXME: generic vectors ought to work too. */
20503 else if (TREE_CODE (type) == VECTOR_TYPE
20504 && !VECTOR_MODE_P (TYPE_MODE (type)))
20506 /* If the initializer is something that we know will expand into an
20507 immediate RTL constant, expand it now. We must be careful not to
20508 reference variables which won't be output. */
20509 else if (initializer_constant_valid_p (init, type)
20510 && ! walk_tree (&init, reference_to_unused, NULL, NULL))
20512 /* Convert vector CONSTRUCTOR initializers to VECTOR_CST if
20513 possible. */
20514 if (TREE_CODE (type) == VECTOR_TYPE)
20515 switch (TREE_CODE (init))
20517 case VECTOR_CST:
20518 break;
20519 case CONSTRUCTOR:
20520 if (TREE_CONSTANT (init))
20522 vec<constructor_elt, va_gc> *elts = CONSTRUCTOR_ELTS (init);
20523 bool constant_p = true;
20524 tree value;
20525 unsigned HOST_WIDE_INT ix;
20527 /* Even when ctor is constant, it might contain non-*_CST
20528 elements (e.g. { 1.0/0.0 - 1.0/0.0, 0.0 }) and those don't
20529 belong into VECTOR_CST nodes. */
20530 FOR_EACH_CONSTRUCTOR_VALUE (elts, ix, value)
20531 if (!CONSTANT_CLASS_P (value))
20533 constant_p = false;
20534 break;
20537 if (constant_p)
20539 init = build_vector_from_ctor (type, elts);
20540 break;
20543 /* FALLTHRU */
20545 default:
20546 return NULL;
20549 /* Large _BitInt BLKmode INTEGER_CSTs would yield a MEM. */
20550 if (TREE_CODE (init) == INTEGER_CST
20551 && TREE_CODE (TREE_TYPE (init)) == BITINT_TYPE
20552 && TYPE_MODE (TREE_TYPE (init)) == BLKmode)
20554 if (tree_fits_shwi_p (init))
20555 return GEN_INT (tree_to_shwi (init));
20556 else
20557 return NULL;
20560 rtl = expand_expr (init, NULL_RTX, VOIDmode, EXPAND_INITIALIZER);
20562 /* If expand_expr returns a MEM, it wasn't immediate. */
20563 gcc_assert (!rtl || !MEM_P (rtl));
20566 return rtl;
20569 /* Generate RTL for the variable DECL to represent its location. */
20571 static rtx
20572 rtl_for_decl_location (tree decl)
20574 rtx rtl;
20576 /* Here we have to decide where we are going to say the parameter "lives"
20577 (as far as the debugger is concerned). We only have a couple of
20578 choices. GCC provides us with DECL_RTL and with DECL_INCOMING_RTL.
20580 DECL_RTL normally indicates where the parameter lives during most of the
20581 activation of the function. If optimization is enabled however, this
20582 could be either NULL or else a pseudo-reg. Both of those cases indicate
20583 that the parameter doesn't really live anywhere (as far as the code
20584 generation parts of GCC are concerned) during most of the function's
20585 activation. That will happen (for example) if the parameter is never
20586 referenced within the function.
20588 We could just generate a location descriptor here for all non-NULL
20589 non-pseudo values of DECL_RTL and ignore all of the rest, but we can be
20590 a little nicer than that if we also consider DECL_INCOMING_RTL in cases
20591 where DECL_RTL is NULL or is a pseudo-reg.
20593 Note however that we can only get away with using DECL_INCOMING_RTL as
20594 a backup substitute for DECL_RTL in certain limited cases. In cases
20595 where DECL_ARG_TYPE (decl) indicates the same type as TREE_TYPE (decl),
20596 we can be sure that the parameter was passed using the same type as it is
20597 declared to have within the function, and that its DECL_INCOMING_RTL
20598 points us to a place where a value of that type is passed.
20600 In cases where DECL_ARG_TYPE (decl) and TREE_TYPE (decl) are different,
20601 we cannot (in general) use DECL_INCOMING_RTL as a substitute for DECL_RTL
20602 because in these cases DECL_INCOMING_RTL points us to a value of some
20603 type which is *different* from the type of the parameter itself. Thus,
20604 if we tried to use DECL_INCOMING_RTL to generate a location attribute in
20605 such cases, the debugger would end up (for example) trying to fetch a
20606 `float' from a place which actually contains the first part of a
20607 `double'. That would lead to really incorrect and confusing
20608 output at debug-time.
20610 So, in general, we *do not* use DECL_INCOMING_RTL as a backup for DECL_RTL
20611 in cases where DECL_ARG_TYPE (decl) != TREE_TYPE (decl). There
20612 are a couple of exceptions however. On little-endian machines we can
20613 get away with using DECL_INCOMING_RTL even when DECL_ARG_TYPE (decl) is
20614 not the same as TREE_TYPE (decl), but only when DECL_ARG_TYPE (decl) is
20615 an integral type that is smaller than TREE_TYPE (decl). These cases arise
20616 when (on a little-endian machine) a non-prototyped function has a
20617 parameter declared to be of type `short' or `char'. In such cases,
20618 TREE_TYPE (decl) will be `short' or `char', DECL_ARG_TYPE (decl) will
20619 be `int', and DECL_INCOMING_RTL will point to the lowest-order byte of the
20620 passed `int' value. If the debugger then uses that address to fetch
20621 a `short' or a `char' (on a little-endian machine) the result will be
20622 the correct data, so we allow for such exceptional cases below.
20624 Note that our goal here is to describe the place where the given formal
20625 parameter lives during most of the function's activation (i.e. between the
20626 end of the prologue and the start of the epilogue). We'll do that as best
20627 as we can. Note however that if the given formal parameter is modified
20628 sometime during the execution of the function, then a stack backtrace (at
20629 debug-time) will show the function as having been called with the *new*
20630 value rather than the value which was originally passed in. This happens
20631 rarely enough that it is not a major problem, but it *is* a problem, and
20632 I'd like to fix it.
20634 A future version of dwarf2out.cc may generate two additional attributes for
20635 any given DW_TAG_formal_parameter DIE which will describe the "passed
20636 type" and the "passed location" for the given formal parameter in addition
20637 to the attributes we now generate to indicate the "declared type" and the
20638 "active location" for each parameter. This additional set of attributes
20639 could be used by debuggers for stack backtraces. Separately, note that
20640 sometimes DECL_RTL can be NULL and DECL_INCOMING_RTL can be NULL also.
20641 This happens (for example) for inlined-instances of inline function formal
20642 parameters which are never referenced. This really shouldn't be
20643 happening. All PARM_DECL nodes should get valid non-NULL
20644 DECL_INCOMING_RTL values. FIXME. */
20646 /* Use DECL_RTL as the "location" unless we find something better. */
20647 rtl = DECL_RTL_IF_SET (decl);
20649 /* When generating abstract instances, ignore everything except
20650 constants, symbols living in memory, and symbols living in
20651 fixed registers. */
20652 if (! reload_completed)
20654 if (rtl
20655 && (CONSTANT_P (rtl)
20656 || (MEM_P (rtl)
20657 && CONSTANT_P (XEXP (rtl, 0)))
20658 || (REG_P (rtl)
20659 && VAR_P (decl)
20660 && TREE_STATIC (decl))))
20662 rtl = targetm.delegitimize_address (rtl);
20663 return rtl;
20665 rtl = NULL_RTX;
20667 else if (TREE_CODE (decl) == PARM_DECL)
20669 if (rtl == NULL_RTX
20670 || is_pseudo_reg (rtl)
20671 || (MEM_P (rtl)
20672 && is_pseudo_reg (XEXP (rtl, 0))
20673 && DECL_INCOMING_RTL (decl)
20674 && MEM_P (DECL_INCOMING_RTL (decl))
20675 && GET_MODE (rtl) == GET_MODE (DECL_INCOMING_RTL (decl))))
20677 tree declared_type = TREE_TYPE (decl);
20678 tree passed_type = DECL_ARG_TYPE (decl);
20679 machine_mode dmode = TYPE_MODE (declared_type);
20680 machine_mode pmode = TYPE_MODE (passed_type);
20682 /* This decl represents a formal parameter which was optimized out.
20683 Note that DECL_INCOMING_RTL may be NULL in here, but we handle
20684 all cases where (rtl == NULL_RTX) just below. */
20685 if (dmode == pmode)
20686 rtl = DECL_INCOMING_RTL (decl);
20687 else if ((rtl == NULL_RTX || is_pseudo_reg (rtl))
20688 && SCALAR_INT_MODE_P (dmode)
20689 && known_le (GET_MODE_SIZE (dmode), GET_MODE_SIZE (pmode))
20690 && DECL_INCOMING_RTL (decl))
20692 rtx inc = DECL_INCOMING_RTL (decl);
20693 if (REG_P (inc))
20694 rtl = inc;
20695 else if (MEM_P (inc))
20697 if (BYTES_BIG_ENDIAN)
20698 rtl = adjust_address_nv (inc, dmode,
20699 GET_MODE_SIZE (pmode)
20700 - GET_MODE_SIZE (dmode));
20701 else
20702 rtl = inc;
20707 /* If the parm was passed in registers, but lives on the stack, then
20708 make a big endian correction if the mode of the type of the
20709 parameter is not the same as the mode of the rtl. */
20710 /* ??? This is the same series of checks that are made in dbxout.cc before
20711 we reach the big endian correction code there. It isn't clear if all
20712 of these checks are necessary here, but keeping them all is the safe
20713 thing to do. */
20714 else if (MEM_P (rtl)
20715 && XEXP (rtl, 0) != const0_rtx
20716 && ! CONSTANT_P (XEXP (rtl, 0))
20717 /* Not passed in memory. */
20718 && !MEM_P (DECL_INCOMING_RTL (decl))
20719 /* Not passed by invisible reference. */
20720 && (!REG_P (XEXP (rtl, 0))
20721 || REGNO (XEXP (rtl, 0)) == HARD_FRAME_POINTER_REGNUM
20722 || REGNO (XEXP (rtl, 0)) == STACK_POINTER_REGNUM
20723 #if !HARD_FRAME_POINTER_IS_ARG_POINTER
20724 || REGNO (XEXP (rtl, 0)) == ARG_POINTER_REGNUM
20725 #endif
20727 /* Big endian correction check. */
20728 && BYTES_BIG_ENDIAN
20729 && TYPE_MODE (TREE_TYPE (decl)) != GET_MODE (rtl)
20730 && known_lt (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl))),
20731 UNITS_PER_WORD))
20733 machine_mode addr_mode = get_address_mode (rtl);
20734 poly_int64 offset = (UNITS_PER_WORD
20735 - GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl))));
20737 rtl = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (decl)),
20738 plus_constant (addr_mode, XEXP (rtl, 0), offset));
20741 else if (VAR_P (decl)
20742 && rtl
20743 && MEM_P (rtl)
20744 && GET_MODE (rtl) != TYPE_MODE (TREE_TYPE (decl)))
20746 machine_mode addr_mode = get_address_mode (rtl);
20747 poly_int64 offset = byte_lowpart_offset (TYPE_MODE (TREE_TYPE (decl)),
20748 GET_MODE (rtl));
20750 /* If a variable is declared "register" yet is smaller than
20751 a register, then if we store the variable to memory, it
20752 looks like we're storing a register-sized value, when in
20753 fact we are not. We need to adjust the offset of the
20754 storage location to reflect the actual value's bytes,
20755 else gdb will not be able to display it. */
20756 if (maybe_ne (offset, 0))
20757 rtl = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (decl)),
20758 plus_constant (addr_mode, XEXP (rtl, 0), offset));
20761 /* A variable with no DECL_RTL but a DECL_INITIAL is a compile-time constant,
20762 and will have been substituted directly into all expressions that use it.
20763 C does not have such a concept, but C++ and other languages do. */
20764 if (!rtl && VAR_P (decl) && DECL_INITIAL (decl))
20765 rtl = rtl_for_decl_init (DECL_INITIAL (decl), TREE_TYPE (decl));
20767 if (rtl)
20768 rtl = targetm.delegitimize_address (rtl);
20770 /* If we don't look past the constant pool, we risk emitting a
20771 reference to a constant pool entry that isn't referenced from
20772 code, and thus is not emitted. */
20773 if (rtl)
20774 rtl = avoid_constant_pool_reference (rtl);
20776 /* Try harder to get a rtl. If this symbol ends up not being emitted
20777 in the current CU, resolve_addr will remove the expression referencing
20778 it. */
20779 if (rtl == NULL_RTX
20780 && !(early_dwarf && (flag_generate_lto || flag_generate_offload))
20781 && VAR_P (decl)
20782 && !DECL_EXTERNAL (decl)
20783 && TREE_STATIC (decl)
20784 && DECL_NAME (decl)
20785 && !DECL_HARD_REGISTER (decl)
20786 && DECL_MODE (decl) != VOIDmode)
20788 rtl = make_decl_rtl_for_debug (decl);
20789 if (!MEM_P (rtl)
20790 || GET_CODE (XEXP (rtl, 0)) != SYMBOL_REF
20791 || SYMBOL_REF_DECL (XEXP (rtl, 0)) != decl)
20792 rtl = NULL_RTX;
20795 return rtl;
20798 /* Check whether decl is a Fortran COMMON symbol. If not, NULL_TREE is
20799 returned. If so, the decl for the COMMON block is returned, and the
20800 value is the offset into the common block for the symbol. */
20802 static tree
20803 fortran_common (tree decl, HOST_WIDE_INT *value)
20805 tree val_expr, cvar;
20806 machine_mode mode;
20807 poly_int64 bitsize, bitpos;
20808 tree offset;
20809 HOST_WIDE_INT cbitpos;
20810 int unsignedp, reversep, volatilep = 0;
20812 /* If the decl isn't a VAR_DECL, or if it isn't static, or if
20813 it does not have a value (the offset into the common area), or if it
20814 is thread local (as opposed to global) then it isn't common, and shouldn't
20815 be handled as such. */
20816 if (!VAR_P (decl)
20817 || !TREE_STATIC (decl)
20818 || !DECL_HAS_VALUE_EXPR_P (decl)
20819 || !is_fortran ())
20820 return NULL_TREE;
20822 val_expr = DECL_VALUE_EXPR (decl);
20823 if (TREE_CODE (val_expr) != COMPONENT_REF)
20824 return NULL_TREE;
20826 cvar = get_inner_reference (val_expr, &bitsize, &bitpos, &offset, &mode,
20827 &unsignedp, &reversep, &volatilep);
20829 if (cvar == NULL_TREE
20830 || !VAR_P (cvar)
20831 || DECL_ARTIFICIAL (cvar)
20832 || !TREE_PUBLIC (cvar)
20833 /* We don't expect to have to cope with variable offsets,
20834 since at present all static data must have a constant size. */
20835 || !bitpos.is_constant (&cbitpos))
20836 return NULL_TREE;
20838 *value = 0;
20839 if (offset != NULL)
20841 if (!tree_fits_shwi_p (offset))
20842 return NULL_TREE;
20843 *value = tree_to_shwi (offset);
20845 if (cbitpos != 0)
20846 *value += cbitpos / BITS_PER_UNIT;
20848 return cvar;
20851 /* Generate *either* a DW_AT_location attribute or else a DW_AT_const_value
20852 data attribute for a variable or a parameter. We generate the
20853 DW_AT_const_value attribute only in those cases where the given variable
20854 or parameter does not have a true "location" either in memory or in a
20855 register. This can happen (for example) when a constant is passed as an
20856 actual argument in a call to an inline function. (It's possible that
20857 these things can crop up in other ways also.) Note that one type of
20858 constant value which can be passed into an inlined function is a constant
20859 pointer. This can happen for example if an actual argument in an inlined
20860 function call evaluates to a compile-time constant address.
20862 CACHE_P is true if it is worth caching the location list for DECL,
20863 so that future calls can reuse it rather than regenerate it from scratch.
20864 This is true for BLOCK_NONLOCALIZED_VARS in inlined subroutines,
20865 since we will need to refer to them each time the function is inlined. */
20867 static bool
20868 add_location_or_const_value_attribute (dw_die_ref die, tree decl, bool cache_p)
20870 rtx rtl;
20871 dw_loc_list_ref list;
20872 var_loc_list *loc_list;
20873 cached_dw_loc_list *cache;
20875 if (early_dwarf)
20876 return false;
20878 if (TREE_CODE (decl) == ERROR_MARK)
20879 return false;
20881 if (get_AT (die, DW_AT_location)
20882 || get_AT (die, DW_AT_const_value))
20883 return true;
20885 gcc_assert (VAR_P (decl) || TREE_CODE (decl) == PARM_DECL
20886 || TREE_CODE (decl) == RESULT_DECL);
20888 /* Try to get some constant RTL for this decl, and use that as the value of
20889 the location. */
20891 rtl = rtl_for_decl_location (decl);
20892 if (rtl && (CONSTANT_P (rtl) || GET_CODE (rtl) == CONST_STRING)
20893 && add_const_value_attribute (die, DECL_MODE (decl), rtl))
20894 return true;
20896 /* See if we have single element location list that is equivalent to
20897 a constant value. That way we are better to use add_const_value_attribute
20898 rather than expanding constant value equivalent. */
20899 loc_list = lookup_decl_loc (decl);
20900 if (loc_list
20901 && loc_list->first
20902 && loc_list->first->next == NULL
20903 && NOTE_P (loc_list->first->loc)
20904 && NOTE_VAR_LOCATION (loc_list->first->loc)
20905 && NOTE_VAR_LOCATION_LOC (loc_list->first->loc))
20907 struct var_loc_node *node;
20909 node = loc_list->first;
20910 rtl = NOTE_VAR_LOCATION_LOC (node->loc);
20911 if (GET_CODE (rtl) == EXPR_LIST)
20912 rtl = XEXP (rtl, 0);
20913 if ((CONSTANT_P (rtl) || GET_CODE (rtl) == CONST_STRING)
20914 && add_const_value_attribute (die, DECL_MODE (decl), rtl))
20915 return true;
20917 /* If this decl is from BLOCK_NONLOCALIZED_VARS, we might need its
20918 list several times. See if we've already cached the contents. */
20919 list = NULL;
20920 if (loc_list == NULL || cached_dw_loc_list_table == NULL)
20921 cache_p = false;
20922 if (cache_p)
20924 cache = cached_dw_loc_list_table->find_with_hash (decl, DECL_UID (decl));
20925 if (cache)
20926 list = cache->loc_list;
20928 if (list == NULL)
20930 list = loc_list_from_tree (decl, decl_by_reference_p (decl) ? 0 : 2,
20931 NULL);
20932 /* It is usually worth caching this result if the decl is from
20933 BLOCK_NONLOCALIZED_VARS and if the list has at least two elements. */
20934 if (cache_p && list && list->dw_loc_next)
20936 cached_dw_loc_list **slot
20937 = cached_dw_loc_list_table->find_slot_with_hash (decl,
20938 DECL_UID (decl),
20939 INSERT);
20940 cache = ggc_cleared_alloc<cached_dw_loc_list> ();
20941 cache->decl_id = DECL_UID (decl);
20942 cache->loc_list = list;
20943 *slot = cache;
20946 if (list)
20948 add_AT_location_description (die, DW_AT_location, list);
20949 return true;
20951 /* None of that worked, so it must not really have a location;
20952 try adding a constant value attribute from the DECL_INITIAL. */
20953 return tree_add_const_value_attribute_for_decl (die, decl);
20956 /* Mangle referenced decls. */
20957 static tree
20958 mangle_referenced_decls (tree *tp, int *walk_subtrees, void *)
20960 if (! EXPR_P (*tp) && ! CONSTANT_CLASS_P (*tp))
20961 *walk_subtrees = 0;
20963 if (VAR_OR_FUNCTION_DECL_P (*tp))
20964 assign_assembler_name_if_needed (*tp);
20966 return NULL_TREE;
20969 /* Attach a DW_AT_const_value attribute to DIE. The value of the
20970 attribute is the const value T. */
20972 static bool
20973 tree_add_const_value_attribute (dw_die_ref die, tree t)
20975 tree init;
20976 tree type = TREE_TYPE (t);
20978 if (!t || !TREE_TYPE (t) || TREE_TYPE (t) == error_mark_node)
20979 return false;
20981 init = t;
20982 gcc_assert (!DECL_P (init));
20984 if (TREE_CODE (init) == INTEGER_CST)
20986 if (tree_fits_uhwi_p (init))
20988 add_AT_unsigned (die, DW_AT_const_value, tree_to_uhwi (init));
20989 return true;
20991 if (tree_fits_shwi_p (init))
20993 add_AT_int (die, DW_AT_const_value, tree_to_shwi (init));
20994 return true;
20997 if (!early_dwarf)
20999 rtx rtl = rtl_for_decl_init (init, type);
21000 if (rtl)
21001 return add_const_value_attribute (die, TYPE_MODE (type), rtl);
21003 else
21005 /* For early_dwarf force mangling of all referenced symbols. */
21006 tree initializer = init;
21007 STRIP_NOPS (initializer);
21008 /* rtl_for_decl_init punts on other aggregates, and complex values. */
21009 if (AGGREGATE_TYPE_P (type)
21010 || (TREE_CODE (initializer) == VIEW_CONVERT_EXPR
21011 && AGGREGATE_TYPE_P (TREE_TYPE (TREE_OPERAND (initializer, 0))))
21012 || TREE_CODE (type) == COMPLEX_TYPE)
21014 else if (initializer_constant_valid_p (initializer, type))
21015 walk_tree (&initializer, mangle_referenced_decls, NULL, NULL);
21017 /* If the host and target are sane, try harder. */
21018 if (CHAR_BIT == 8 && BITS_PER_UNIT == 8
21019 && initializer_constant_valid_p (init, type))
21021 HOST_WIDE_INT size = int_size_in_bytes (TREE_TYPE (init));
21022 if (size > 0 && (int) size == size)
21024 unsigned char *array = ggc_cleared_vec_alloc<unsigned char> (size);
21026 if (native_encode_initializer (init, array, size) == size)
21028 add_AT_vec (die, DW_AT_const_value, size, 1, array);
21029 return true;
21031 ggc_free (array);
21034 return false;
21037 /* Attach a DW_AT_const_value attribute to VAR_DIE. The value of the
21038 attribute is the const value of T, where T is an integral constant
21039 variable with static storage duration
21040 (so it can't be a PARM_DECL or a RESULT_DECL). */
21042 static bool
21043 tree_add_const_value_attribute_for_decl (dw_die_ref var_die, tree decl)
21046 if (!decl
21047 || (!VAR_P (decl) && TREE_CODE (decl) != CONST_DECL)
21048 || (VAR_P (decl) && !TREE_STATIC (decl)))
21049 return false;
21051 if (TREE_READONLY (decl)
21052 && ! TREE_THIS_VOLATILE (decl)
21053 && DECL_INITIAL (decl))
21054 /* OK */;
21055 else
21056 return false;
21058 /* Don't add DW_AT_const_value if abstract origin already has one. */
21059 if (get_AT (var_die, DW_AT_const_value))
21060 return false;
21062 return tree_add_const_value_attribute (var_die, DECL_INITIAL (decl));
21065 /* Convert the CFI instructions for the current function into a
21066 location list. This is used for DW_AT_frame_base when we targeting
21067 a dwarf2 consumer that does not support the dwarf3
21068 DW_OP_call_frame_cfa. OFFSET is a constant to be added to all CFA
21069 expressions. */
21071 static dw_loc_list_ref
21072 convert_cfa_to_fb_loc_list (HOST_WIDE_INT offset)
21074 int ix;
21075 dw_fde_ref fde;
21076 dw_loc_list_ref list, *list_tail;
21077 dw_cfi_ref cfi;
21078 dw_cfa_location last_cfa, next_cfa;
21079 const char *start_label, *last_label, *section;
21080 dw_cfa_location remember;
21082 fde = cfun->fde;
21083 gcc_assert (fde != NULL);
21085 section = secname_for_decl (current_function_decl);
21086 list_tail = &list;
21087 list = NULL;
21089 memset (&next_cfa, 0, sizeof (next_cfa));
21090 next_cfa.reg.set_by_dwreg (INVALID_REGNUM);
21091 remember = next_cfa;
21093 start_label = fde->dw_fde_begin;
21095 /* ??? Bald assumption that the CIE opcode list does not contain
21096 advance opcodes. */
21097 FOR_EACH_VEC_ELT (*cie_cfi_vec, ix, cfi)
21098 lookup_cfa_1 (cfi, &next_cfa, &remember);
21100 last_cfa = next_cfa;
21101 last_label = start_label;
21103 if (fde->dw_fde_second_begin && fde->dw_fde_switch_cfi_index == 0)
21105 /* If the first partition contained no CFI adjustments, the
21106 CIE opcodes apply to the whole first partition. */
21107 *list_tail = new_loc_list (build_cfa_loc (&last_cfa, offset),
21108 fde->dw_fde_begin, 0, fde->dw_fde_end, 0, section);
21109 list_tail =&(*list_tail)->dw_loc_next;
21110 start_label = last_label = fde->dw_fde_second_begin;
21113 FOR_EACH_VEC_SAFE_ELT (fde->dw_fde_cfi, ix, cfi)
21115 switch (cfi->dw_cfi_opc)
21117 case DW_CFA_set_loc:
21118 case DW_CFA_advance_loc1:
21119 case DW_CFA_advance_loc2:
21120 case DW_CFA_advance_loc4:
21121 if (!cfa_equal_p (&last_cfa, &next_cfa))
21123 *list_tail = new_loc_list (build_cfa_loc (&last_cfa, offset),
21124 start_label, 0, last_label, 0, section);
21126 list_tail = &(*list_tail)->dw_loc_next;
21127 last_cfa = next_cfa;
21128 start_label = last_label;
21130 last_label = cfi->dw_cfi_oprnd1.dw_cfi_addr;
21131 break;
21133 case DW_CFA_advance_loc:
21134 /* The encoding is complex enough that we should never emit this. */
21135 gcc_unreachable ();
21137 default:
21138 lookup_cfa_1 (cfi, &next_cfa, &remember);
21139 break;
21141 if (ix + 1 == fde->dw_fde_switch_cfi_index)
21143 if (!cfa_equal_p (&last_cfa, &next_cfa))
21145 *list_tail = new_loc_list (build_cfa_loc (&last_cfa, offset),
21146 start_label, 0, last_label, 0, section);
21148 list_tail = &(*list_tail)->dw_loc_next;
21149 last_cfa = next_cfa;
21150 start_label = last_label;
21152 *list_tail = new_loc_list (build_cfa_loc (&last_cfa, offset),
21153 start_label, 0, fde->dw_fde_end, 0, section);
21154 list_tail = &(*list_tail)->dw_loc_next;
21155 start_label = last_label = fde->dw_fde_second_begin;
21159 if (!cfa_equal_p (&last_cfa, &next_cfa))
21161 *list_tail = new_loc_list (build_cfa_loc (&last_cfa, offset),
21162 start_label, 0, last_label, 0, section);
21163 list_tail = &(*list_tail)->dw_loc_next;
21164 start_label = last_label;
21167 *list_tail = new_loc_list (build_cfa_loc (&next_cfa, offset),
21168 start_label, 0,
21169 fde->dw_fde_second_begin
21170 ? fde->dw_fde_second_end : fde->dw_fde_end, 0,
21171 section);
21173 maybe_gen_llsym (list);
21175 return list;
21178 /* Compute a displacement from the "steady-state frame pointer" to the
21179 frame base (often the same as the CFA), and store it in
21180 frame_pointer_fb_offset. OFFSET is added to the displacement
21181 before the latter is negated. */
21183 static void
21184 compute_frame_pointer_to_fb_displacement (poly_int64 offset)
21186 rtx reg, elim;
21188 #ifdef FRAME_POINTER_CFA_OFFSET
21189 reg = frame_pointer_rtx;
21190 offset += FRAME_POINTER_CFA_OFFSET (current_function_decl);
21191 #else
21192 reg = arg_pointer_rtx;
21193 offset += ARG_POINTER_CFA_OFFSET (current_function_decl);
21194 #endif
21196 elim = (ira_use_lra_p
21197 ? lra_eliminate_regs (reg, VOIDmode, NULL_RTX)
21198 : eliminate_regs (reg, VOIDmode, NULL_RTX));
21199 elim = strip_offset_and_add (elim, &offset);
21201 frame_pointer_fb_offset = -offset;
21203 /* ??? AVR doesn't set up valid eliminations when there is no stack frame
21204 in which to eliminate. This is because it's stack pointer isn't
21205 directly accessible as a register within the ISA. To work around
21206 this, assume that while we cannot provide a proper value for
21207 frame_pointer_fb_offset, we won't need one either. We can use
21208 hard frame pointer in debug info even if frame pointer isn't used
21209 since hard frame pointer in debug info is encoded with DW_OP_fbreg
21210 which uses the DW_AT_frame_base attribute, not hard frame pointer
21211 directly. */
21212 frame_pointer_fb_offset_valid
21213 = (elim == hard_frame_pointer_rtx || elim == stack_pointer_rtx);
21216 /* Generate a DW_AT_name attribute given some string value to be included as
21217 the value of the attribute. */
21219 void
21220 add_name_attribute (dw_die_ref die, const char *name_string)
21222 if (name_string != NULL && *name_string != 0)
21224 if (demangle_name_func)
21225 name_string = (*demangle_name_func) (name_string);
21227 add_AT_string (die, DW_AT_name, name_string);
21231 /* Generate a DW_AT_name attribute given some string value representing a
21232 file or filepath to be included as value of the attribute. */
21233 static void
21234 add_filename_attribute (dw_die_ref die, const char *name_string)
21236 if (name_string != NULL && *name_string != 0)
21237 add_filepath_AT_string (die, DW_AT_name, name_string);
21240 /* Generate a DW_AT_description attribute given some string value to be included
21241 as the value of the attribute. */
21243 static void
21244 add_desc_attribute (dw_die_ref die, const char *name_string)
21246 if (!flag_describe_dies || (dwarf_version < 3 && dwarf_strict))
21247 return;
21249 if (name_string == NULL || *name_string == 0)
21250 return;
21252 if (demangle_name_func)
21253 name_string = (*demangle_name_func) (name_string);
21255 add_AT_string (die, DW_AT_description, name_string);
21258 /* Generate a DW_AT_description attribute given some decl to be included
21259 as the value of the attribute. */
21261 static void
21262 add_desc_attribute (dw_die_ref die, tree decl)
21264 tree decl_name;
21266 if (!flag_describe_dies || (dwarf_version < 3 && dwarf_strict))
21267 return;
21269 if (decl == NULL_TREE || !DECL_P (decl))
21270 return;
21271 decl_name = DECL_NAME (decl);
21273 if (decl_name != NULL && IDENTIFIER_POINTER (decl_name) != NULL)
21275 const char *name = dwarf2_name (decl, 0);
21276 add_desc_attribute (die, name ? name : IDENTIFIER_POINTER (decl_name));
21278 else
21280 char *desc = print_generic_expr_to_str (decl);
21281 add_desc_attribute (die, desc);
21282 free (desc);
21286 /* Retrieve the descriptive type of TYPE, if any, make sure it has a
21287 DIE and attach a DW_AT_GNAT_descriptive_type attribute to the DIE
21288 of TYPE accordingly.
21290 ??? This is a temporary measure until after we're able to generate
21291 regular DWARF for the complex Ada type system. */
21293 static void
21294 add_gnat_descriptive_type_attribute (dw_die_ref die, tree type,
21295 dw_die_ref context_die)
21297 tree dtype;
21298 dw_die_ref dtype_die;
21300 if (!lang_hooks.types.descriptive_type)
21301 return;
21303 dtype = lang_hooks.types.descriptive_type (type);
21304 if (!dtype)
21305 return;
21307 dtype_die = lookup_type_die (dtype);
21308 if (!dtype_die)
21310 gen_type_die (dtype, context_die);
21311 dtype_die = lookup_type_die (dtype);
21312 gcc_assert (dtype_die);
21315 add_AT_die_ref (die, DW_AT_GNAT_descriptive_type, dtype_die);
21318 /* Retrieve the comp_dir string suitable for use with DW_AT_comp_dir. */
21320 static const char *
21321 comp_dir_string (void)
21323 const char *wd;
21324 char *wd_plus_sep = NULL;
21325 static const char *cached_wd = NULL;
21327 if (cached_wd != NULL)
21328 return cached_wd;
21330 wd = get_src_pwd ();
21331 if (wd == NULL)
21332 return NULL;
21334 if (DWARF2_DIR_SHOULD_END_WITH_SEPARATOR)
21336 size_t wdlen = strlen (wd);
21337 wd_plus_sep = XNEWVEC (char, wdlen + 2);
21338 strcpy (wd_plus_sep, wd);
21339 wd_plus_sep [wdlen] = DIR_SEPARATOR;
21340 wd_plus_sep [wdlen + 1] = 0;
21341 wd = wd_plus_sep;
21344 cached_wd = remap_debug_filename (wd);
21346 /* remap_debug_filename can just pass through wd or return a new gc string.
21347 These two types can't be both stored in a GTY(())-tagged string, but since
21348 the cached value lives forever just copy it if needed. */
21349 if (cached_wd != wd)
21351 cached_wd = xstrdup (cached_wd);
21352 if (DWARF2_DIR_SHOULD_END_WITH_SEPARATOR && wd_plus_sep != NULL)
21353 free (wd_plus_sep);
21356 return cached_wd;
21359 /* Generate a DW_AT_comp_dir attribute for DIE. */
21361 static void
21362 add_comp_dir_attribute (dw_die_ref die)
21364 const char * wd = comp_dir_string ();
21365 if (wd != NULL)
21366 add_filepath_AT_string (die, DW_AT_comp_dir, wd);
21369 /* Given a tree node VALUE describing a scalar attribute ATTR (i.e. a bound, a
21370 pointer computation, ...), output a representation for that bound according
21371 to the accepted FORMS (see enum dw_scalar_form) and add it to DIE. See
21372 loc_list_from_tree for the meaning of CONTEXT. */
21374 static void
21375 add_scalar_info (dw_die_ref die, enum dwarf_attribute attr, tree value,
21376 int forms, struct loc_descr_context *context)
21378 dw_die_ref context_die, decl_die = NULL;
21379 dw_loc_list_ref list;
21380 bool strip_conversions = true;
21381 bool placeholder_seen = false;
21383 while (strip_conversions)
21384 switch (TREE_CODE (value))
21386 case ERROR_MARK:
21387 case SAVE_EXPR:
21388 return;
21390 CASE_CONVERT:
21391 case VIEW_CONVERT_EXPR:
21392 value = TREE_OPERAND (value, 0);
21393 break;
21395 default:
21396 strip_conversions = false;
21397 break;
21400 /* If possible and permitted, output the attribute as a constant. */
21401 if ((forms & dw_scalar_form_constant) != 0
21402 && TREE_CODE (value) == INTEGER_CST)
21404 unsigned int prec = simple_type_size_in_bits (TREE_TYPE (value));
21406 /* If HOST_WIDE_INT is big enough then represent the bound as
21407 a constant value. We need to choose a form based on
21408 whether the type is signed or unsigned. We cannot just
21409 call add_AT_unsigned if the value itself is positive
21410 (add_AT_unsigned might add the unsigned value encoded as
21411 DW_FORM_data[1248]). Some DWARF consumers will lookup the
21412 bounds type and then sign extend any unsigned values found
21413 for signed types. This is needed only for
21414 DW_AT_{lower,upper}_bound, since for most other attributes,
21415 consumers will treat DW_FORM_data[1248] as unsigned values,
21416 regardless of the underlying type. */
21417 if (prec <= HOST_BITS_PER_WIDE_INT
21418 || tree_fits_uhwi_p (value))
21420 if (TYPE_UNSIGNED (TREE_TYPE (value)))
21421 add_AT_unsigned (die, attr, TREE_INT_CST_LOW (value));
21422 else
21423 add_AT_int (die, attr, TREE_INT_CST_LOW (value));
21425 else if (dwarf_version >= 5
21426 && TREE_INT_CST_LOW (TYPE_SIZE (TREE_TYPE (value))) == 128)
21427 /* Otherwise represent the bound as an unsigned value with
21428 the precision of its type. The precision and signedness
21429 of the type will be necessary to re-interpret it
21430 unambiguously. */
21431 add_AT_wide (die, attr, wi::to_wide (value));
21432 else
21434 rtx v = immed_wide_int_const (wi::to_wide (value),
21435 TYPE_MODE (TREE_TYPE (value)));
21436 dw_loc_descr_ref loc
21437 = loc_descriptor (v, TYPE_MODE (TREE_TYPE (value)),
21438 VAR_INIT_STATUS_INITIALIZED);
21439 if (loc)
21440 add_AT_loc (die, attr, loc);
21442 return;
21445 /* Otherwise, if it's possible and permitted too, output a reference to
21446 another DIE. */
21447 if ((forms & dw_scalar_form_reference) != 0)
21449 tree decl = NULL_TREE;
21451 /* Some type attributes reference an outer type. For instance, the upper
21452 bound of an array may reference an embedding record (this happens in
21453 Ada). */
21454 if (TREE_CODE (value) == COMPONENT_REF
21455 && TREE_CODE (TREE_OPERAND (value, 0)) == PLACEHOLDER_EXPR
21456 && TREE_CODE (TREE_OPERAND (value, 1)) == FIELD_DECL)
21457 decl = TREE_OPERAND (value, 1);
21459 else if (VAR_P (value)
21460 || TREE_CODE (value) == PARM_DECL
21461 || TREE_CODE (value) == RESULT_DECL)
21462 decl = value;
21464 if (decl != NULL_TREE)
21466 decl_die = lookup_decl_die (decl);
21468 /* ??? Can this happen, or should the variable have been bound
21469 first? Probably it can, since I imagine that we try to create
21470 the types of parameters in the order in which they exist in
21471 the list, and won't have created a forward reference to a
21472 later parameter. */
21473 if (decl_die != NULL)
21475 if (get_AT (decl_die, DW_AT_location)
21476 || get_AT (decl_die, DW_AT_data_member_location)
21477 || get_AT (decl_die, DW_AT_data_bit_offset)
21478 || get_AT (decl_die, DW_AT_const_value))
21480 add_AT_die_ref (die, attr, decl_die);
21481 return;
21487 /* Last chance: try to create a stack operation procedure to evaluate the
21488 value. Do nothing if even that is not possible or permitted. */
21489 if ((forms & dw_scalar_form_exprloc) == 0)
21490 return;
21492 list = loc_list_from_tree (value, 2, context);
21493 if (context && context->placeholder_arg)
21495 placeholder_seen = context->placeholder_seen;
21496 context->placeholder_seen = false;
21498 if (list == NULL || single_element_loc_list_p (list))
21500 /* If this attribute is not a reference nor constant, it is
21501 a DWARF expression rather than location description. For that
21502 loc_list_from_tree (value, 0, &context) is needed. */
21503 dw_loc_list_ref list2 = loc_list_from_tree (value, 0, context);
21504 if (list2 && single_element_loc_list_p (list2))
21506 if (placeholder_seen)
21508 struct dwarf_procedure_info dpi;
21509 dpi.fndecl = NULL_TREE;
21510 dpi.args_count = 1;
21511 if (!resolve_args_picking (list2->expr, 1, &dpi))
21512 return;
21514 add_AT_loc (die, attr, list2->expr);
21515 return;
21519 /* If that failed to give a single element location list, fall back to
21520 outputting this as a reference... still if permitted. */
21521 if (list == NULL
21522 || (forms & dw_scalar_form_reference) == 0
21523 || placeholder_seen)
21524 return;
21526 if (!decl_die)
21528 if (current_function_decl == 0)
21529 context_die = comp_unit_die ();
21530 else
21531 context_die = lookup_decl_die (current_function_decl);
21533 decl_die = new_die (DW_TAG_variable, context_die, value);
21534 add_AT_flag (decl_die, DW_AT_artificial, 1);
21535 add_type_attribute (decl_die, TREE_TYPE (value), TYPE_QUAL_CONST, false,
21536 context_die);
21539 add_AT_location_description (decl_die, DW_AT_location, list);
21540 add_AT_die_ref (die, attr, decl_die);
21543 /* Return the default for DW_AT_lower_bound, or -1 if there is not any
21544 default. */
21546 static int
21547 lower_bound_default (void)
21549 switch (get_AT_unsigned (comp_unit_die (), DW_AT_language))
21551 case DW_LANG_C:
21552 case DW_LANG_C89:
21553 case DW_LANG_C99:
21554 case DW_LANG_C11:
21555 case DW_LANG_C_plus_plus:
21556 case DW_LANG_C_plus_plus_11:
21557 case DW_LANG_C_plus_plus_14:
21558 case DW_LANG_ObjC:
21559 case DW_LANG_ObjC_plus_plus:
21560 return 0;
21561 case DW_LANG_Fortran77:
21562 case DW_LANG_Fortran90:
21563 case DW_LANG_Fortran95:
21564 case DW_LANG_Fortran03:
21565 case DW_LANG_Fortran08:
21566 return 1;
21567 case DW_LANG_UPC:
21568 case DW_LANG_D:
21569 case DW_LANG_Python:
21570 return dwarf_version >= 4 ? 0 : -1;
21571 case DW_LANG_Ada95:
21572 case DW_LANG_Ada83:
21573 case DW_LANG_Cobol74:
21574 case DW_LANG_Cobol85:
21575 case DW_LANG_Modula2:
21576 case DW_LANG_PLI:
21577 return dwarf_version >= 4 ? 1 : -1;
21578 default:
21579 return -1;
21583 /* Given a tree node describing an array bound (either lower or upper) output
21584 a representation for that bound. */
21586 static void
21587 add_bound_info (dw_die_ref subrange_die, enum dwarf_attribute bound_attr,
21588 tree bound, struct loc_descr_context *context)
21590 int dflt;
21592 while (1)
21593 switch (TREE_CODE (bound))
21595 /* Strip all conversions. */
21596 CASE_CONVERT:
21597 case VIEW_CONVERT_EXPR:
21598 bound = TREE_OPERAND (bound, 0);
21599 break;
21601 /* All fixed-bounds are represented by INTEGER_CST nodes. Lower bounds
21602 are even omitted when they are the default. */
21603 case INTEGER_CST:
21604 /* If the value for this bound is the default one, we can even omit the
21605 attribute. */
21606 if (bound_attr == DW_AT_lower_bound
21607 && tree_fits_shwi_p (bound)
21608 && (dflt = lower_bound_default ()) != -1
21609 && tree_to_shwi (bound) == dflt)
21610 return;
21612 /* FALLTHRU */
21614 default:
21615 /* Let GNAT encodings do the magic for self-referential bounds. */
21616 if (is_ada ()
21617 && gnat_encodings == DWARF_GNAT_ENCODINGS_ALL
21618 && contains_placeholder_p (bound))
21619 return;
21621 add_scalar_info (subrange_die, bound_attr, bound,
21622 dw_scalar_form_constant
21623 | dw_scalar_form_exprloc
21624 | dw_scalar_form_reference,
21625 context);
21626 return;
21630 /* Add subscript info to TYPE_DIE, describing an array TYPE, collapsing
21631 possibly nested array subscripts in a flat sequence if COLLAPSE_P is true.
21633 This function reuses previously set type and bound information if
21634 available. */
21636 static void
21637 add_subscript_info (dw_die_ref type_die, tree type, bool collapse_p)
21639 dw_die_ref child = type_die->die_child;
21640 struct array_descr_info info;
21641 int dimension_number;
21643 if (lang_hooks.types.get_array_descr_info)
21645 memset (&info, 0, sizeof (info));
21646 if (lang_hooks.types.get_array_descr_info (type, &info))
21647 /* Fortran sometimes emits array types with no dimension. */
21648 gcc_assert (info.ndimensions >= 0
21649 && info.ndimensions
21650 <= DWARF2OUT_ARRAY_DESCR_INFO_MAX_DIMEN);
21652 else
21653 info.ndimensions = 0;
21655 for (dimension_number = 0;
21656 TREE_CODE (type) == ARRAY_TYPE && (dimension_number == 0 || collapse_p);
21657 type = TREE_TYPE (type), dimension_number++)
21659 tree domain = TYPE_DOMAIN (type);
21661 if (TYPE_STRING_FLAG (type) && is_fortran () && dimension_number > 0)
21662 break;
21664 /* Arrays come in three flavors: Unspecified bounds, fixed bounds,
21665 and (in GNU C only) variable bounds. Handle all three forms
21666 here. */
21668 /* Find and reuse a previously generated DW_TAG_subrange_type if
21669 available.
21671 For multi-dimensional arrays, as we iterate through the
21672 various dimensions in the enclosing for loop above, we also
21673 iterate through the DIE children and pick at each
21674 DW_TAG_subrange_type previously generated (if available).
21675 Each child DW_TAG_subrange_type DIE describes the range of
21676 the current dimension. At this point we should have as many
21677 DW_TAG_subrange_type's as we have dimensions in the
21678 array. */
21679 dw_die_ref subrange_die = NULL;
21680 if (child)
21681 while (1)
21683 child = child->die_sib;
21684 if (child->die_tag == DW_TAG_subrange_type)
21685 subrange_die = child;
21686 if (child == type_die->die_child)
21688 /* If we wrapped around, stop looking next time. */
21689 child = NULL;
21690 break;
21692 if (child->die_tag == DW_TAG_subrange_type)
21693 break;
21695 if (!subrange_die)
21696 subrange_die = new_die (DW_TAG_subrange_type, type_die, NULL);
21698 if (domain)
21700 /* We have an array type with specified bounds. */
21701 tree lower = TYPE_MIN_VALUE (domain);
21702 tree upper = TYPE_MAX_VALUE (domain);
21703 tree index_type = TREE_TYPE (domain);
21705 if (dimension_number <= info.ndimensions - 1)
21707 lower = info.dimen[dimension_number].lower_bound;
21708 upper = info.dimen[dimension_number].upper_bound;
21709 index_type = info.dimen[dimension_number].bounds_type;
21712 /* Define the index type. */
21713 if (index_type && !get_AT (subrange_die, DW_AT_type))
21714 add_type_attribute (subrange_die, index_type, TYPE_UNQUALIFIED,
21715 false, type_die);
21717 /* ??? If upper is NULL, the array has unspecified length,
21718 but it does have a lower bound. This happens with Fortran
21719 dimension arr(N:*)
21720 Since the debugger is definitely going to need to know N
21721 to produce useful results, go ahead and output the lower
21722 bound solo, and hope the debugger can cope. */
21724 if (lower && !get_AT (subrange_die, DW_AT_lower_bound))
21725 add_bound_info (subrange_die, DW_AT_lower_bound, lower, NULL);
21727 if (!get_AT (subrange_die, DW_AT_upper_bound)
21728 && !get_AT (subrange_die, DW_AT_count))
21730 if (upper)
21731 add_bound_info (subrange_die, DW_AT_upper_bound, upper, NULL);
21732 else if ((is_c () || is_cxx ()) && COMPLETE_TYPE_P (type))
21733 /* Zero-length array. */
21734 add_bound_info (subrange_die, DW_AT_count,
21735 build_int_cst (TREE_TYPE (lower), 0), NULL);
21739 /* Otherwise we have an array type with an unspecified length. The
21740 DWARF-2 spec does not say how to handle this; let's just leave out the
21741 bounds. */
21745 /* Add a DW_AT_byte_size attribute to DIE with TREE_NODE's size. */
21747 static void
21748 add_byte_size_attribute (dw_die_ref die, tree tree_node)
21750 dw_die_ref decl_die;
21751 HOST_WIDE_INT size;
21753 switch (TREE_CODE (tree_node))
21755 case ERROR_MARK:
21756 size = 0;
21757 break;
21758 case ENUMERAL_TYPE:
21759 case RECORD_TYPE:
21760 case UNION_TYPE:
21761 case QUAL_UNION_TYPE:
21762 if (TREE_CODE (TYPE_SIZE_UNIT (tree_node)) == VAR_DECL
21763 && (decl_die = lookup_decl_die (TYPE_SIZE_UNIT (tree_node))))
21765 add_AT_die_ref (die, DW_AT_byte_size, decl_die);
21766 return;
21768 size = int_size_in_bytes (tree_node);
21769 break;
21770 case FIELD_DECL:
21771 /* For a data member of a struct or union, the DW_AT_byte_size is
21772 generally given as the number of bytes normally allocated for an
21773 object of the *declared* type of the member itself. This is true
21774 even for bit-fields. */
21775 size = int_size_in_bytes (field_type (tree_node));
21776 break;
21777 default:
21778 gcc_unreachable ();
21781 /* Note that `size' might be -1 when we get to this point. If it is, that
21782 indicates that the byte size of the entity in question is variable. */
21783 if (size >= 0)
21784 add_AT_unsigned (die, DW_AT_byte_size, size);
21786 /* Support for dynamically-sized objects was introduced in DWARF3. */
21787 else if (TYPE_P (tree_node)
21788 && (dwarf_version >= 3 || !dwarf_strict)
21789 && gnat_encodings != DWARF_GNAT_ENCODINGS_ALL)
21791 struct loc_descr_context ctx = {
21792 const_cast<tree> (tree_node), /* context_type */
21793 NULL_TREE, /* base_decl */
21794 NULL, /* dpi */
21795 false, /* placeholder_arg */
21796 false, /* placeholder_seen */
21797 false /* strict_signedness */
21800 tree tree_size = TYPE_SIZE_UNIT (TYPE_MAIN_VARIANT (tree_node));
21801 add_scalar_info (die, DW_AT_byte_size, tree_size,
21802 dw_scalar_form_constant
21803 | dw_scalar_form_exprloc
21804 | dw_scalar_form_reference,
21805 &ctx);
21809 /* Add a DW_AT_alignment attribute to DIE with TREE_NODE's non-default
21810 alignment. */
21812 static void
21813 add_alignment_attribute (dw_die_ref die, tree tree_node)
21815 if (dwarf_version < 5 && dwarf_strict)
21816 return;
21818 unsigned align;
21820 if (DECL_P (tree_node))
21822 if (!DECL_USER_ALIGN (tree_node))
21823 return;
21825 align = DECL_ALIGN_UNIT (tree_node);
21827 else if (TYPE_P (tree_node))
21829 if (!TYPE_USER_ALIGN (tree_node))
21830 return;
21832 align = TYPE_ALIGN_UNIT (tree_node);
21834 else
21835 gcc_unreachable ();
21837 add_AT_unsigned (die, DW_AT_alignment, align);
21840 /* For a FIELD_DECL node which represents a bit-field, output an attribute
21841 which specifies the distance in bits from the highest order bit of the
21842 "containing object" for the bit-field to the highest order bit of the
21843 bit-field itself.
21845 For any given bit-field, the "containing object" is a hypothetical object
21846 (of some integral or enum type) within which the given bit-field lives. The
21847 type of this hypothetical "containing object" is always the same as the
21848 declared type of the individual bit-field itself. The determination of the
21849 exact location of the "containing object" for a bit-field is rather
21850 complicated. It's handled by the `field_byte_offset' function (above).
21852 Note that it is the size (in bytes) of the hypothetical "containing object"
21853 which will be given in the DW_AT_byte_size attribute for this bit-field.
21854 (See `byte_size_attribute' above). */
21856 static inline void
21857 add_bit_offset_attribute (dw_die_ref die, tree decl)
21859 HOST_WIDE_INT object_offset_in_bytes;
21860 tree original_type = DECL_BIT_FIELD_TYPE (decl);
21861 HOST_WIDE_INT bitpos_int;
21862 HOST_WIDE_INT highest_order_object_bit_offset;
21863 HOST_WIDE_INT highest_order_field_bit_offset;
21864 HOST_WIDE_INT bit_offset;
21866 /* The containing object is within the DECL_CONTEXT. */
21867 struct vlr_context ctx = { DECL_CONTEXT (decl), NULL_TREE };
21869 field_byte_offset (decl, &ctx, &object_offset_in_bytes);
21871 /* Must be a field and a bit field. */
21872 gcc_assert (original_type && TREE_CODE (decl) == FIELD_DECL);
21874 /* We can't yet handle bit-fields whose offsets are variable, so if we
21875 encounter such things, just return without generating any attribute
21876 whatsoever. Likewise for variable or too large size. */
21877 if (! tree_fits_shwi_p (bit_position (decl))
21878 || ! tree_fits_uhwi_p (DECL_SIZE (decl)))
21879 return;
21881 bitpos_int = int_bit_position (decl);
21883 /* Note that the bit offset is always the distance (in bits) from the
21884 highest-order bit of the "containing object" to the highest-order bit of
21885 the bit-field itself. Since the "high-order end" of any object or field
21886 is different on big-endian and little-endian machines, the computation
21887 below must take account of these differences. */
21888 highest_order_object_bit_offset = object_offset_in_bytes * BITS_PER_UNIT;
21889 highest_order_field_bit_offset = bitpos_int;
21891 if (! BYTES_BIG_ENDIAN)
21893 highest_order_field_bit_offset += tree_to_shwi (DECL_SIZE (decl));
21894 highest_order_object_bit_offset +=
21895 simple_type_size_in_bits (original_type);
21898 bit_offset
21899 = (! BYTES_BIG_ENDIAN
21900 ? highest_order_object_bit_offset - highest_order_field_bit_offset
21901 : highest_order_field_bit_offset - highest_order_object_bit_offset);
21903 if (bit_offset < 0)
21904 add_AT_int (die, DW_AT_bit_offset, bit_offset);
21905 else
21906 add_AT_unsigned (die, DW_AT_bit_offset, (unsigned HOST_WIDE_INT) bit_offset);
21909 /* For a FIELD_DECL node which represents a bit field, output an attribute
21910 which specifies the length in bits of the given field. */
21912 static inline void
21913 add_bit_size_attribute (dw_die_ref die, tree decl)
21915 /* Must be a field and a bit field. */
21916 gcc_assert (TREE_CODE (decl) == FIELD_DECL
21917 && DECL_BIT_FIELD_TYPE (decl));
21919 if (tree_fits_uhwi_p (DECL_SIZE (decl)))
21920 add_AT_unsigned (die, DW_AT_bit_size, tree_to_uhwi (DECL_SIZE (decl)));
21923 /* If the compiled language is ANSI C, then add a 'prototyped'
21924 attribute, if arg types are given for the parameters of a function. */
21926 static inline void
21927 add_prototyped_attribute (dw_die_ref die, tree func_type)
21929 switch (get_AT_unsigned (comp_unit_die (), DW_AT_language))
21931 case DW_LANG_C:
21932 case DW_LANG_C89:
21933 case DW_LANG_C99:
21934 case DW_LANG_C11:
21935 case DW_LANG_ObjC:
21936 if (prototype_p (func_type))
21937 add_AT_flag (die, DW_AT_prototyped, 1);
21938 break;
21939 default:
21940 break;
21944 /* Add an 'abstract_origin' attribute below a given DIE. The DIE is found
21945 by looking in the type declaration, the object declaration equate table or
21946 the block mapping. */
21948 static inline void
21949 add_abstract_origin_attribute (dw_die_ref die, tree origin)
21951 dw_die_ref origin_die = NULL;
21953 /* For late LTO debug output we want to refer directly to the abstract
21954 DIE in the early debug rather to the possibly existing concrete
21955 instance and avoid creating that just for this purpose. */
21956 sym_off_pair *desc;
21957 if (in_lto_p
21958 && external_die_map
21959 && (desc = external_die_map->get (origin)))
21961 add_AT_external_die_ref (die, DW_AT_abstract_origin,
21962 desc->sym, desc->off);
21963 return;
21966 if (DECL_P (origin))
21967 origin_die = lookup_decl_die (origin);
21968 else if (TYPE_P (origin))
21969 origin_die = lookup_type_die (origin);
21970 else if (TREE_CODE (origin) == BLOCK)
21971 origin_die = lookup_block_die (origin);
21973 /* XXX: Functions that are never lowered don't always have correct block
21974 trees (in the case of java, they simply have no block tree, in some other
21975 languages). For these functions, there is nothing we can really do to
21976 output correct debug info for inlined functions in all cases. Rather
21977 than die, we'll just produce deficient debug info now, in that we will
21978 have variables without a proper abstract origin. In the future, when all
21979 functions are lowered, we should re-add a gcc_assert (origin_die)
21980 here. */
21982 if (origin_die)
21984 dw_attr_node *a;
21985 /* Like above, if we already created a concrete instance DIE
21986 do not use that for the abstract origin but the early DIE
21987 if present. */
21988 if (in_lto_p
21989 && (a = get_AT (origin_die, DW_AT_abstract_origin)))
21990 origin_die = AT_ref (a);
21991 add_AT_die_ref (die, DW_AT_abstract_origin, origin_die);
21995 /* We do not currently support the pure_virtual attribute. */
21997 static inline void
21998 add_pure_or_virtual_attribute (dw_die_ref die, tree func_decl)
22000 if (DECL_VINDEX (func_decl))
22002 add_AT_unsigned (die, DW_AT_virtuality, DW_VIRTUALITY_virtual);
22004 if (tree_fits_shwi_p (DECL_VINDEX (func_decl)))
22005 add_AT_loc (die, DW_AT_vtable_elem_location,
22006 new_loc_descr (DW_OP_constu,
22007 tree_to_shwi (DECL_VINDEX (func_decl)),
22008 0));
22010 /* GNU extension: Record what type this method came from originally. */
22011 if (debug_info_level > DINFO_LEVEL_TERSE
22012 && DECL_CONTEXT (func_decl))
22013 add_AT_die_ref (die, DW_AT_containing_type,
22014 lookup_type_die (DECL_CONTEXT (func_decl)));
22018 /* Add a DW_AT_linkage_name or DW_AT_MIPS_linkage_name attribute for the
22019 given decl. This used to be a vendor extension until after DWARF 4
22020 standardized it. */
22022 static void
22023 add_linkage_attr (dw_die_ref die, tree decl)
22025 const char *name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
22027 /* Mimic what assemble_name_raw does with a leading '*'. */
22028 if (name[0] == '*')
22029 name = &name[1];
22031 if (dwarf_version >= 4)
22032 add_AT_string (die, DW_AT_linkage_name, name);
22033 else
22034 add_AT_string (die, DW_AT_MIPS_linkage_name, name);
22037 /* Add source coordinate attributes for the given decl. */
22039 static void
22040 add_src_coords_attributes (dw_die_ref die, tree decl)
22042 expanded_location s;
22044 if (LOCATION_LOCUS (DECL_SOURCE_LOCATION (decl)) == UNKNOWN_LOCATION)
22045 return;
22046 s = expand_location (DECL_SOURCE_LOCATION (decl));
22047 add_AT_file (die, DW_AT_decl_file, lookup_filename (s.file));
22048 add_AT_unsigned (die, DW_AT_decl_line, s.line);
22049 if (debug_column_info && s.column)
22050 add_AT_unsigned (die, DW_AT_decl_column, s.column);
22053 /* Add DW_AT_{,MIPS_}linkage_name attribute for the given decl. */
22055 static void
22056 add_linkage_name_raw (dw_die_ref die, tree decl)
22058 /* Defer until we have an assembler name set. */
22059 if (!DECL_ASSEMBLER_NAME_SET_P (decl))
22061 limbo_die_node *asm_name;
22063 asm_name = ggc_cleared_alloc<limbo_die_node> ();
22064 asm_name->die = die;
22065 asm_name->created_for = decl;
22066 asm_name->next = deferred_asm_name;
22067 deferred_asm_name = asm_name;
22069 else if (DECL_ASSEMBLER_NAME (decl) != DECL_NAME (decl))
22070 add_linkage_attr (die, decl);
22073 /* Add DW_AT_{,MIPS_}linkage_name attribute for the given decl if desired. */
22075 static void
22076 add_linkage_name (dw_die_ref die, tree decl)
22078 if (debug_info_level > DINFO_LEVEL_NONE
22079 && VAR_OR_FUNCTION_DECL_P (decl)
22080 && TREE_PUBLIC (decl)
22081 && !(VAR_P (decl) && DECL_REGISTER (decl))
22082 && die->die_tag != DW_TAG_member)
22083 add_linkage_name_raw (die, decl);
22086 /* Add a DW_AT_name attribute and source coordinate attribute for the
22087 given decl, but only if it actually has a name. */
22089 static void
22090 add_name_and_src_coords_attributes (dw_die_ref die, tree decl,
22091 bool no_linkage_name)
22093 tree decl_name;
22095 decl_name = DECL_NAME (decl);
22096 if (decl_name != NULL && IDENTIFIER_POINTER (decl_name) != NULL)
22098 const char *name = dwarf2_name (decl, 0);
22099 if (name)
22100 add_name_attribute (die, name);
22101 else
22102 add_desc_attribute (die, decl);
22104 if (! DECL_ARTIFICIAL (decl))
22105 add_src_coords_attributes (die, decl);
22107 if (!no_linkage_name)
22108 add_linkage_name (die, decl);
22110 else
22111 add_desc_attribute (die, decl);
22113 #ifdef VMS_DEBUGGING_INFO
22114 /* Get the function's name, as described by its RTL. This may be different
22115 from the DECL_NAME name used in the source file. */
22116 if (TREE_CODE (decl) == FUNCTION_DECL && TREE_ASM_WRITTEN (decl))
22118 add_AT_addr (die, DW_AT_VMS_rtnbeg_pd_address,
22119 XEXP (DECL_RTL (decl), 0), false);
22120 vec_safe_push (used_rtx_array, XEXP (DECL_RTL (decl), 0));
22122 #endif /* VMS_DEBUGGING_INFO */
22125 /* Add VALUE as a DW_AT_discr_value attribute to DIE. */
22127 static void
22128 add_discr_value (dw_die_ref die, dw_discr_value *value)
22130 dw_attr_node attr;
22132 attr.dw_attr = DW_AT_discr_value;
22133 attr.dw_attr_val.val_class = dw_val_class_discr_value;
22134 attr.dw_attr_val.val_entry = NULL;
22135 attr.dw_attr_val.v.val_discr_value.pos = value->pos;
22136 if (value->pos)
22137 attr.dw_attr_val.v.val_discr_value.v.uval = value->v.uval;
22138 else
22139 attr.dw_attr_val.v.val_discr_value.v.sval = value->v.sval;
22140 add_dwarf_attr (die, &attr);
22143 /* Add DISCR_LIST as a DW_AT_discr_list to DIE. */
22145 static void
22146 add_discr_list (dw_die_ref die, dw_discr_list_ref discr_list)
22148 dw_attr_node attr;
22150 attr.dw_attr = DW_AT_discr_list;
22151 attr.dw_attr_val.val_class = dw_val_class_discr_list;
22152 attr.dw_attr_val.val_entry = NULL;
22153 attr.dw_attr_val.v.val_discr_list = discr_list;
22154 add_dwarf_attr (die, &attr);
22157 static inline dw_discr_list_ref
22158 AT_discr_list (dw_attr_node *attr)
22160 return attr->dw_attr_val.v.val_discr_list;
22163 #ifdef VMS_DEBUGGING_INFO
22164 /* Output the debug main pointer die for VMS */
22166 void
22167 dwarf2out_vms_debug_main_pointer (void)
22169 char label[MAX_ARTIFICIAL_LABEL_BYTES];
22170 dw_die_ref die;
22172 /* Allocate the VMS debug main subprogram die. */
22173 die = new_die_raw (DW_TAG_subprogram);
22174 add_name_attribute (die, VMS_DEBUG_MAIN_POINTER);
22175 ASM_GENERATE_INTERNAL_LABEL (label, PROLOGUE_END_LABEL,
22176 current_function_funcdef_no);
22177 add_AT_lbl_id (die, DW_AT_entry_pc, label);
22179 /* Make it the first child of comp_unit_die (). */
22180 die->die_parent = comp_unit_die ();
22181 if (comp_unit_die ()->die_child)
22183 die->die_sib = comp_unit_die ()->die_child->die_sib;
22184 comp_unit_die ()->die_child->die_sib = die;
22186 else
22188 die->die_sib = die;
22189 comp_unit_die ()->die_child = die;
22192 #endif /* VMS_DEBUGGING_INFO */
22194 /* walk_tree helper function for uses_local_type, below. */
22196 static tree
22197 uses_local_type_r (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
22199 if (!TYPE_P (*tp))
22200 *walk_subtrees = 0;
22201 else
22203 tree name = TYPE_NAME (*tp);
22204 if (name && DECL_P (name) && decl_function_context (name))
22205 return *tp;
22207 return NULL_TREE;
22210 /* If TYPE involves a function-local type (including a local typedef to a
22211 non-local type), returns that type; otherwise returns NULL_TREE. */
22213 static tree
22214 uses_local_type (tree type)
22216 tree used = walk_tree_without_duplicates (&type, uses_local_type_r, NULL);
22217 return used;
22220 /* Return the DIE for the scope that immediately contains this type.
22221 Non-named types that do not involve a function-local type get global
22222 scope. Named types nested in namespaces or other types get their
22223 containing scope. All other types (i.e. function-local named types) get
22224 the current active scope. */
22226 static dw_die_ref
22227 scope_die_for (tree t, dw_die_ref context_die)
22229 dw_die_ref scope_die = NULL;
22230 tree containing_scope;
22232 /* Non-types always go in the current scope. */
22233 gcc_assert (TYPE_P (t));
22235 /* Use the scope of the typedef, rather than the scope of the type
22236 it refers to. */
22237 if (TYPE_NAME (t) && DECL_P (TYPE_NAME (t)))
22238 containing_scope = DECL_CONTEXT (TYPE_NAME (t));
22239 else
22240 containing_scope = TYPE_CONTEXT (t);
22242 /* Use the containing namespace if there is one. */
22243 if (containing_scope && TREE_CODE (containing_scope) == NAMESPACE_DECL)
22245 if (context_die == lookup_decl_die (containing_scope))
22246 /* OK */;
22247 else if (debug_info_level > DINFO_LEVEL_TERSE)
22248 context_die = get_context_die (containing_scope);
22249 else
22250 containing_scope = NULL_TREE;
22253 /* Ignore function type "scopes" from the C frontend. They mean that
22254 a tagged type is local to a parmlist of a function declarator, but
22255 that isn't useful to DWARF. */
22256 if (containing_scope && TREE_CODE (containing_scope) == FUNCTION_TYPE)
22257 containing_scope = NULL_TREE;
22259 if (SCOPE_FILE_SCOPE_P (containing_scope))
22261 /* If T uses a local type keep it local as well, to avoid references
22262 to function-local DIEs from outside the function. */
22263 if (current_function_decl && uses_local_type (t))
22264 scope_die = context_die;
22265 else
22266 scope_die = comp_unit_die ();
22268 else if (TYPE_P (containing_scope))
22270 /* For types, we can just look up the appropriate DIE. */
22271 if (debug_info_level > DINFO_LEVEL_TERSE)
22272 scope_die = get_context_die (containing_scope);
22273 else
22275 scope_die = lookup_type_die_strip_naming_typedef (containing_scope);
22276 if (scope_die == NULL)
22277 scope_die = comp_unit_die ();
22280 else
22281 scope_die = context_die;
22283 return scope_die;
22286 /* Returns true if CONTEXT_DIE is internal to a function. */
22288 static inline bool
22289 local_scope_p (dw_die_ref context_die)
22291 for (; context_die; context_die = context_die->die_parent)
22292 if (context_die->die_tag == DW_TAG_inlined_subroutine
22293 || context_die->die_tag == DW_TAG_subprogram)
22294 return true;
22296 return false;
22299 /* Returns true if CONTEXT_DIE is a class. */
22301 static inline bool
22302 class_scope_p (dw_die_ref context_die)
22304 return (context_die
22305 && (context_die->die_tag == DW_TAG_structure_type
22306 || context_die->die_tag == DW_TAG_class_type
22307 || context_die->die_tag == DW_TAG_interface_type
22308 || context_die->die_tag == DW_TAG_union_type));
22311 /* Returns true if CONTEXT_DIE is a class or namespace, for deciding
22312 whether or not to treat a DIE in this context as a declaration. */
22314 static inline bool
22315 class_or_namespace_scope_p (dw_die_ref context_die)
22317 return (class_scope_p (context_die)
22318 || (context_die && context_die->die_tag == DW_TAG_namespace));
22321 /* Many forms of DIEs require a "type description" attribute. This
22322 routine locates the proper "type descriptor" die for the type given
22323 by 'type' plus any additional qualifiers given by 'cv_quals', and
22324 adds a DW_AT_type attribute below the given die. */
22326 static void
22327 add_type_attribute (dw_die_ref object_die, tree type, int cv_quals,
22328 bool reverse, dw_die_ref context_die)
22330 enum tree_code code = TREE_CODE (type);
22331 dw_die_ref type_die = NULL;
22333 if (debug_info_level <= DINFO_LEVEL_TERSE)
22334 return;
22336 /* ??? If this type is an unnamed subrange type of an integral, floating-point
22337 or fixed-point type, use the inner type. This is because we have no
22338 support for unnamed types in base_type_die. This can happen if this is
22339 an Ada subrange type. Correct solution is emit a subrange type die. */
22340 if ((code == INTEGER_TYPE || code == REAL_TYPE || code == FIXED_POINT_TYPE)
22341 && TREE_TYPE (type) != 0 && TYPE_NAME (type) == 0)
22342 type = TREE_TYPE (type), code = TREE_CODE (type);
22344 if (code == ERROR_MARK
22345 /* Handle a special case. For functions whose return type is void, we
22346 generate *no* type attribute. (Note that no object may have type
22347 `void', so this only applies to function return types). */
22348 || code == VOID_TYPE)
22349 return;
22351 type_die = modified_type_die (type,
22352 cv_quals | TYPE_QUALS (type),
22353 reverse,
22354 context_die);
22356 if (type_die != NULL)
22357 add_AT_die_ref (object_die, DW_AT_type, type_die);
22360 /* Given an object die, add the calling convention attribute for the
22361 function call type. */
22362 static void
22363 add_calling_convention_attribute (dw_die_ref subr_die, tree decl)
22365 enum dwarf_calling_convention value = DW_CC_normal;
22367 value = ((enum dwarf_calling_convention)
22368 targetm.dwarf_calling_convention (TREE_TYPE (decl)));
22370 if (is_fortran ()
22371 && id_equal (DECL_ASSEMBLER_NAME (decl), "MAIN__"))
22373 /* DWARF 2 doesn't provide a way to identify a program's source-level
22374 entry point. DW_AT_calling_convention attributes are only meant
22375 to describe functions' calling conventions. However, lacking a
22376 better way to signal the Fortran main program, we used this for
22377 a long time, following existing custom. Now, DWARF 4 has
22378 DW_AT_main_subprogram, which we add below, but some tools still
22379 rely on the old way, which we thus keep. */
22380 value = DW_CC_program;
22382 if (dwarf_version >= 4 || !dwarf_strict)
22383 add_AT_flag (subr_die, DW_AT_main_subprogram, 1);
22386 /* Only add the attribute if the backend requests it, and
22387 is not DW_CC_normal. */
22388 if (value && (value != DW_CC_normal))
22389 add_AT_unsigned (subr_die, DW_AT_calling_convention, value);
22392 /* Given a tree pointer to a struct, class, union, or enum type node, return
22393 a pointer to the (string) tag name for the given type, or zero if the type
22394 was declared without a tag. */
22396 static const char *
22397 type_tag (const_tree type)
22399 const char *name = 0;
22401 if (TYPE_NAME (type) != 0)
22403 tree t = 0;
22405 /* Find the IDENTIFIER_NODE for the type name. */
22406 if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE
22407 && !TYPE_NAMELESS (type))
22408 t = TYPE_NAME (type);
22410 /* The g++ front end makes the TYPE_NAME of *each* tagged type point to
22411 a TYPE_DECL node, regardless of whether or not a `typedef' was
22412 involved. */
22413 else if (TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
22414 && ! DECL_IGNORED_P (TYPE_NAME (type)))
22416 /* We want to be extra verbose. Don't call dwarf_name if
22417 DECL_NAME isn't set. The default hook for decl_printable_name
22418 doesn't like that, and in this context it's correct to return
22419 0, instead of "<anonymous>" or the like. */
22420 if (DECL_NAME (TYPE_NAME (type))
22421 && !DECL_NAMELESS (TYPE_NAME (type)))
22422 name = lang_hooks.dwarf_name (TYPE_NAME (type), 2);
22425 /* Now get the name as a string, or invent one. */
22426 if (!name && t != 0)
22427 name = IDENTIFIER_POINTER (t);
22430 return (name == 0 || *name == '\0') ? 0 : name;
22433 /* Return the type associated with a data member, make a special check
22434 for bit field types. */
22436 static inline tree
22437 member_declared_type (const_tree member)
22439 return (DECL_BIT_FIELD_TYPE (member)
22440 ? DECL_BIT_FIELD_TYPE (member) : TREE_TYPE (member));
22443 /* Get the decl's label, as described by its RTL. This may be different
22444 from the DECL_NAME name used in the source file. */
22446 #if 0
22447 static const char *
22448 decl_start_label (tree decl)
22450 rtx x;
22451 const char *fnname;
22453 x = DECL_RTL (decl);
22454 gcc_assert (MEM_P (x));
22456 x = XEXP (x, 0);
22457 gcc_assert (GET_CODE (x) == SYMBOL_REF);
22459 fnname = XSTR (x, 0);
22460 return fnname;
22462 #endif
22464 /* For variable-length arrays that have been previously generated, but
22465 may be incomplete due to missing subscript info, fill the subscript
22466 info. Return TRUE if this is one of those cases. */
22468 static bool
22469 fill_variable_array_bounds (tree type)
22471 if (TREE_ASM_WRITTEN (type)
22472 && TREE_CODE (type) == ARRAY_TYPE
22473 && variably_modified_type_p (type, NULL))
22475 dw_die_ref array_die = lookup_type_die (type);
22476 if (!array_die)
22477 return false;
22478 add_subscript_info (array_die, type, !is_ada ());
22479 return true;
22481 return false;
22484 /* These routines generate the internal representation of the DIE's for
22485 the compilation unit. Debugging information is collected by walking
22486 the declaration trees passed in from dwarf2out_decl(). */
22488 static void
22489 gen_array_type_die (tree type, dw_die_ref context_die)
22491 dw_die_ref array_die;
22493 /* GNU compilers represent multidimensional array types as sequences of one
22494 dimensional array types whose element types are themselves array types.
22495 We sometimes squish that down to a single array_type DIE with multiple
22496 subscripts in the Dwarf debugging info. The draft Dwarf specification
22497 say that we are allowed to do this kind of compression in C, because
22498 there is no difference between an array of arrays and a multidimensional
22499 array. We don't do this for Ada to remain as close as possible to the
22500 actual representation, which is especially important against the language
22501 flexibilty wrt arrays of variable size. */
22503 bool collapse_nested_arrays = !is_ada ();
22505 if (fill_variable_array_bounds (type))
22506 return;
22508 dw_die_ref scope_die = scope_die_for (type, context_die);
22509 tree element_type;
22511 /* Emit DW_TAG_string_type for Fortran character types (with kind 1 only, as
22512 DW_TAG_string_type doesn't have DW_AT_type attribute). */
22513 if (TREE_CODE (type) == ARRAY_TYPE
22514 && TYPE_STRING_FLAG (type)
22515 && is_fortran ()
22516 && TYPE_MODE (TREE_TYPE (type)) == TYPE_MODE (char_type_node))
22518 HOST_WIDE_INT size;
22520 array_die = new_die (DW_TAG_string_type, scope_die, type);
22521 add_name_attribute (array_die, type_tag (type));
22522 equate_type_number_to_die (type, array_die);
22523 size = int_size_in_bytes (type);
22524 if (size >= 0)
22525 add_AT_unsigned (array_die, DW_AT_byte_size, size);
22526 /* ??? We can't annotate types late, but for LTO we may not
22527 generate a location early either (gfortran.dg/save_6.f90). */
22528 else if (! (early_dwarf && (flag_generate_lto || flag_generate_offload))
22529 && TYPE_DOMAIN (type) != NULL_TREE
22530 && TYPE_MAX_VALUE (TYPE_DOMAIN (type)) != NULL_TREE)
22532 tree szdecl = TYPE_MAX_VALUE (TYPE_DOMAIN (type));
22533 tree rszdecl = szdecl;
22535 size = int_size_in_bytes (TREE_TYPE (szdecl));
22536 if (!DECL_P (szdecl))
22538 if (INDIRECT_REF_P (szdecl)
22539 && DECL_P (TREE_OPERAND (szdecl, 0)))
22541 rszdecl = TREE_OPERAND (szdecl, 0);
22542 if (int_size_in_bytes (TREE_TYPE (rszdecl))
22543 != DWARF2_ADDR_SIZE)
22544 size = 0;
22546 else
22547 size = 0;
22549 if (size > 0)
22551 dw_loc_list_ref loc
22552 = loc_list_from_tree (rszdecl, szdecl == rszdecl ? 2 : 0,
22553 NULL);
22554 if (loc)
22556 add_AT_location_description (array_die, DW_AT_string_length,
22557 loc);
22558 if (size != DWARF2_ADDR_SIZE)
22559 add_AT_unsigned (array_die, dwarf_version >= 5
22560 ? DW_AT_string_length_byte_size
22561 : DW_AT_byte_size, size);
22565 return;
22568 array_die = new_die (DW_TAG_array_type, scope_die, type);
22569 add_name_attribute (array_die, type_tag (type));
22570 equate_type_number_to_die (type, array_die);
22572 if (VECTOR_TYPE_P (type))
22573 add_AT_flag (array_die, DW_AT_GNU_vector, 1);
22575 /* For Fortran multidimensional arrays use DW_ORD_col_major ordering. */
22576 if (is_fortran ()
22577 && TREE_CODE (type) == ARRAY_TYPE
22578 && TREE_CODE (TREE_TYPE (type)) == ARRAY_TYPE
22579 && !TYPE_STRING_FLAG (TREE_TYPE (type)))
22580 add_AT_unsigned (array_die, DW_AT_ordering, DW_ORD_col_major);
22582 #if 0
22583 /* We default the array ordering. Debuggers will probably do the right
22584 things even if DW_AT_ordering is not present. It's not even an issue
22585 until we start to get into multidimensional arrays anyway. If a debugger
22586 is ever caught doing the Wrong Thing for multi-dimensional arrays,
22587 then we'll have to put the DW_AT_ordering attribute back in. (But if
22588 and when we find out that we need to put these in, we will only do so
22589 for multidimensional arrays. */
22590 add_AT_unsigned (array_die, DW_AT_ordering, DW_ORD_row_major);
22591 #endif
22593 if (VECTOR_TYPE_P (type))
22595 /* For VECTOR_TYPEs we use an array DIE with appropriate bounds. */
22596 dw_die_ref subrange_die = new_die (DW_TAG_subrange_type, array_die, NULL);
22597 int lb = lower_bound_default ();
22598 if (lb == -1)
22599 lb = 0;
22600 add_bound_info (subrange_die, DW_AT_lower_bound, size_int (lb), NULL);
22601 add_bound_info (subrange_die, DW_AT_upper_bound,
22602 size_int (lb + TYPE_VECTOR_SUBPARTS (type) - 1), NULL);
22604 else
22605 add_subscript_info (array_die, type, collapse_nested_arrays);
22607 /* Add representation of the type of the elements of this array type and
22608 emit the corresponding DIE if we haven't done it already. */
22609 element_type = TREE_TYPE (type);
22610 if (collapse_nested_arrays)
22611 while (TREE_CODE (element_type) == ARRAY_TYPE)
22613 if (TYPE_STRING_FLAG (element_type) && is_fortran ())
22614 break;
22615 element_type = TREE_TYPE (element_type);
22618 add_type_attribute (array_die, element_type, TYPE_UNQUALIFIED,
22619 TREE_CODE (type) == ARRAY_TYPE
22620 && TYPE_REVERSE_STORAGE_ORDER (type),
22621 context_die);
22623 add_gnat_descriptive_type_attribute (array_die, type, context_die);
22624 if (TYPE_ARTIFICIAL (type))
22625 add_AT_flag (array_die, DW_AT_artificial, 1);
22627 if (get_AT (array_die, DW_AT_name))
22628 add_pubtype (type, array_die);
22630 add_alignment_attribute (array_die, type);
22633 /* This routine generates DIE for array with hidden descriptor, details
22634 are filled into *info by a langhook. */
22636 static void
22637 gen_descr_array_type_die (tree type, struct array_descr_info *info,
22638 dw_die_ref context_die)
22640 const dw_die_ref scope_die = scope_die_for (type, context_die);
22641 const dw_die_ref array_die = new_die (DW_TAG_array_type, scope_die, type);
22642 struct loc_descr_context context = {
22643 type, /* context_type */
22644 info->base_decl, /* base_decl */
22645 NULL, /* dpi */
22646 false, /* placeholder_arg */
22647 false, /* placeholder_seen */
22648 false /* strict_signedness */
22650 enum dwarf_tag subrange_tag = DW_TAG_subrange_type;
22651 int dim;
22653 add_name_attribute (array_die, type_tag (type));
22654 equate_type_number_to_die (type, array_die);
22656 if (info->ndimensions > 1)
22657 switch (info->ordering)
22659 case array_descr_ordering_row_major:
22660 add_AT_unsigned (array_die, DW_AT_ordering, DW_ORD_row_major);
22661 break;
22662 case array_descr_ordering_column_major:
22663 add_AT_unsigned (array_die, DW_AT_ordering, DW_ORD_col_major);
22664 break;
22665 default:
22666 break;
22669 if (dwarf_version >= 3 || !dwarf_strict)
22671 if (info->data_location)
22672 add_scalar_info (array_die, DW_AT_data_location, info->data_location,
22673 dw_scalar_form_exprloc, &context);
22674 if (info->associated)
22675 add_scalar_info (array_die, DW_AT_associated, info->associated,
22676 dw_scalar_form_constant
22677 | dw_scalar_form_exprloc
22678 | dw_scalar_form_reference, &context);
22679 if (info->allocated)
22680 add_scalar_info (array_die, DW_AT_allocated, info->allocated,
22681 dw_scalar_form_constant
22682 | dw_scalar_form_exprloc
22683 | dw_scalar_form_reference, &context);
22684 if (info->stride)
22686 const enum dwarf_attribute attr
22687 = (info->stride_in_bits) ? DW_AT_bit_stride : DW_AT_byte_stride;
22688 const int forms
22689 = (info->stride_in_bits)
22690 ? dw_scalar_form_constant
22691 : (dw_scalar_form_constant
22692 | dw_scalar_form_exprloc
22693 | dw_scalar_form_reference);
22695 add_scalar_info (array_die, attr, info->stride, forms, &context);
22698 if (dwarf_version >= 5)
22700 if (info->rank)
22702 add_scalar_info (array_die, DW_AT_rank, info->rank,
22703 dw_scalar_form_constant
22704 | dw_scalar_form_exprloc, &context);
22705 subrange_tag = DW_TAG_generic_subrange;
22706 context.placeholder_arg = true;
22710 add_gnat_descriptive_type_attribute (array_die, type, context_die);
22712 for (dim = 0; dim < info->ndimensions; dim++)
22714 dw_die_ref subrange_die = new_die (subrange_tag, array_die, NULL);
22716 if (info->dimen[dim].bounds_type)
22717 add_type_attribute (subrange_die,
22718 info->dimen[dim].bounds_type, TYPE_UNQUALIFIED,
22719 false, context_die);
22720 if (info->dimen[dim].lower_bound)
22721 add_bound_info (subrange_die, DW_AT_lower_bound,
22722 info->dimen[dim].lower_bound, &context);
22723 if (info->dimen[dim].upper_bound)
22724 add_bound_info (subrange_die, DW_AT_upper_bound,
22725 info->dimen[dim].upper_bound, &context);
22726 if ((dwarf_version >= 3 || !dwarf_strict) && info->dimen[dim].stride)
22727 add_scalar_info (subrange_die, DW_AT_byte_stride,
22728 info->dimen[dim].stride,
22729 dw_scalar_form_constant
22730 | dw_scalar_form_exprloc
22731 | dw_scalar_form_reference,
22732 &context);
22735 gen_type_die (info->element_type, context_die);
22736 add_type_attribute (array_die, info->element_type, TYPE_UNQUALIFIED,
22737 TREE_CODE (type) == ARRAY_TYPE
22738 && TYPE_REVERSE_STORAGE_ORDER (type),
22739 context_die);
22741 if (get_AT (array_die, DW_AT_name))
22742 add_pubtype (type, array_die);
22744 add_alignment_attribute (array_die, type);
22747 #if 0
22748 static void
22749 gen_entry_point_die (tree decl, dw_die_ref context_die)
22751 tree origin = decl_ultimate_origin (decl);
22752 dw_die_ref decl_die = new_die (DW_TAG_entry_point, context_die, decl);
22754 if (origin != NULL)
22755 add_abstract_origin_attribute (decl_die, origin);
22756 else
22758 add_name_and_src_coords_attributes (decl_die, decl);
22759 add_type_attribute (decl_die, TREE_TYPE (TREE_TYPE (decl)),
22760 TYPE_UNQUALIFIED, false, context_die);
22763 if (DECL_ABSTRACT_P (decl))
22764 equate_decl_number_to_die (decl, decl_die);
22765 else
22766 add_AT_lbl_id (decl_die, DW_AT_low_pc, decl_start_label (decl));
22768 #endif
22770 /* Walk through the list of incomplete types again, trying once more to
22771 emit full debugging info for them. */
22773 static void
22774 retry_incomplete_types (void)
22776 set_early_dwarf s;
22777 int i;
22779 for (i = vec_safe_length (incomplete_types) - 1; i >= 0; i--)
22780 if (should_emit_struct_debug ((*incomplete_types)[i], DINFO_USAGE_DIR_USE))
22781 gen_type_die ((*incomplete_types)[i], comp_unit_die ());
22782 vec_safe_truncate (incomplete_types, 0);
22785 /* Determine what tag to use for a record type. */
22787 static enum dwarf_tag
22788 record_type_tag (tree type)
22790 if (! lang_hooks.types.classify_record)
22791 return DW_TAG_structure_type;
22793 switch (lang_hooks.types.classify_record (type))
22795 case RECORD_IS_STRUCT:
22796 return DW_TAG_structure_type;
22798 case RECORD_IS_CLASS:
22799 return DW_TAG_class_type;
22801 case RECORD_IS_INTERFACE:
22802 if (dwarf_version >= 3 || !dwarf_strict)
22803 return DW_TAG_interface_type;
22804 return DW_TAG_structure_type;
22806 default:
22807 gcc_unreachable ();
22811 /* Generate a DIE to represent an enumeration type. Note that these DIEs
22812 include all of the information about the enumeration values also. Each
22813 enumerated type name/value is listed as a child of the enumerated type
22814 DIE. */
22816 static dw_die_ref
22817 gen_enumeration_type_die (tree type, dw_die_ref context_die)
22819 dw_die_ref type_die = lookup_type_die (type);
22820 dw_die_ref orig_type_die = type_die;
22822 if (type_die == NULL)
22824 type_die = new_die (DW_TAG_enumeration_type,
22825 scope_die_for (type, context_die), type);
22826 equate_type_number_to_die (type, type_die);
22827 add_name_attribute (type_die, type_tag (type));
22828 if ((dwarf_version >= 4 || !dwarf_strict)
22829 && ENUM_IS_SCOPED (type))
22830 add_AT_flag (type_die, DW_AT_enum_class, 1);
22831 if (ENUM_IS_OPAQUE (type) && TYPE_SIZE (type))
22832 add_AT_flag (type_die, DW_AT_declaration, 1);
22833 if (!dwarf_strict)
22834 add_AT_unsigned (type_die, DW_AT_encoding,
22835 TYPE_UNSIGNED (type)
22836 ? DW_ATE_unsigned
22837 : DW_ATE_signed);
22839 else if (! TYPE_SIZE (type) || ENUM_IS_OPAQUE (type))
22840 return type_die;
22841 else
22842 remove_AT (type_die, DW_AT_declaration);
22844 /* Handle a GNU C/C++ extension, i.e. incomplete enum types. If the
22845 given enum type is incomplete, do not generate the DW_AT_byte_size
22846 attribute or the DW_AT_element_list attribute. */
22847 if (TYPE_SIZE (type))
22849 tree link;
22851 if (!ENUM_IS_OPAQUE (type))
22852 TREE_ASM_WRITTEN (type) = 1;
22853 if (!orig_type_die || !get_AT (type_die, DW_AT_byte_size))
22854 add_byte_size_attribute (type_die, type);
22855 if (!orig_type_die || !get_AT (type_die, DW_AT_alignment))
22856 add_alignment_attribute (type_die, type);
22857 if ((dwarf_version >= 3 || !dwarf_strict)
22858 && (!orig_type_die || !get_AT (type_die, DW_AT_type)))
22860 tree underlying = lang_hooks.types.enum_underlying_base_type (type);
22861 add_type_attribute (type_die, underlying, TYPE_UNQUALIFIED, false,
22862 context_die);
22864 if (TYPE_STUB_DECL (type) != NULL_TREE)
22866 if (!orig_type_die || !get_AT (type_die, DW_AT_decl_file))
22867 add_src_coords_attributes (type_die, TYPE_STUB_DECL (type));
22868 if (!orig_type_die || !get_AT (type_die, DW_AT_accessibility))
22869 add_accessibility_attribute (type_die, TYPE_STUB_DECL (type));
22872 /* If the first reference to this type was as the return type of an
22873 inline function, then it may not have a parent. Fix this now. */
22874 if (type_die->die_parent == NULL)
22875 add_child_die (scope_die_for (type, context_die), type_die);
22877 for (link = TYPE_VALUES (type);
22878 link != NULL; link = TREE_CHAIN (link))
22880 dw_die_ref enum_die = new_die (DW_TAG_enumerator, type_die, link);
22881 tree value = TREE_VALUE (link);
22883 if (DECL_P (value))
22884 equate_decl_number_to_die (value, enum_die);
22886 gcc_assert (!ENUM_IS_OPAQUE (type));
22887 add_name_attribute (enum_die,
22888 IDENTIFIER_POINTER (TREE_PURPOSE (link)));
22890 if (TREE_CODE (value) == CONST_DECL)
22891 value = DECL_INITIAL (value);
22893 if (simple_type_size_in_bits (TREE_TYPE (value))
22894 <= HOST_BITS_PER_WIDE_INT || tree_fits_shwi_p (value))
22896 /* For constant forms created by add_AT_unsigned DWARF
22897 consumers (GDB, elfutils, etc.) always zero extend
22898 the value. Only when the actual value is negative
22899 do we need to use add_AT_int to generate a constant
22900 form that can represent negative values. */
22901 HOST_WIDE_INT val = TREE_INT_CST_LOW (value);
22902 if (TYPE_UNSIGNED (TREE_TYPE (value)) || val >= 0)
22903 add_AT_unsigned (enum_die, DW_AT_const_value,
22904 (unsigned HOST_WIDE_INT) val);
22905 else
22906 add_AT_int (enum_die, DW_AT_const_value, val);
22908 else
22909 /* Enumeration constants may be wider than HOST_WIDE_INT. Handle
22910 that here. TODO: This should be re-worked to use correct
22911 signed/unsigned double tags for all cases. */
22912 add_AT_wide (enum_die, DW_AT_const_value, wi::to_wide (value));
22915 add_gnat_descriptive_type_attribute (type_die, type, context_die);
22916 if (TYPE_ARTIFICIAL (type)
22917 && (!orig_type_die || !get_AT (type_die, DW_AT_artificial)))
22918 add_AT_flag (type_die, DW_AT_artificial, 1);
22920 else
22921 add_AT_flag (type_die, DW_AT_declaration, 1);
22923 add_pubtype (type, type_die);
22925 return type_die;
22928 /* Generate a DIE to represent either a real live formal parameter decl or to
22929 represent just the type of some formal parameter position in some function
22930 type.
22932 Note that this routine is a bit unusual because its argument may be a
22933 ..._DECL node (i.e. either a PARM_DECL or perhaps a VAR_DECL which
22934 represents an inlining of some PARM_DECL) or else some sort of a ..._TYPE
22935 node. If it's the former then this function is being called to output a
22936 DIE to represent a formal parameter object (or some inlining thereof). If
22937 it's the latter, then this function is only being called to output a
22938 DW_TAG_formal_parameter DIE to stand as a placeholder for some formal
22939 argument type of some subprogram type.
22940 If EMIT_NAME_P is true, name and source coordinate attributes
22941 are emitted. */
22943 static dw_die_ref
22944 gen_formal_parameter_die (tree node, tree origin, bool emit_name_p,
22945 dw_die_ref context_die)
22947 tree node_or_origin = node ? node : origin;
22948 tree ultimate_origin;
22949 dw_die_ref parm_die = NULL;
22951 if (DECL_P (node_or_origin))
22953 parm_die = lookup_decl_die (node);
22955 /* If the contexts differ, we may not be talking about the same
22956 thing.
22957 ??? When in LTO the DIE parent is the "abstract" copy and the
22958 context_die is the specification "copy". */
22959 if (parm_die
22960 && parm_die->die_parent != context_die
22961 && (parm_die->die_parent->die_tag != DW_TAG_GNU_formal_parameter_pack
22962 || parm_die->die_parent->die_parent != context_die)
22963 && !in_lto_p)
22965 gcc_assert (!DECL_ABSTRACT_P (node));
22966 /* This can happen when creating a concrete instance, in
22967 which case we need to create a new DIE that will get
22968 annotated with DW_AT_abstract_origin. */
22969 parm_die = NULL;
22972 if (parm_die && parm_die->die_parent == NULL)
22974 /* Check that parm_die already has the right attributes that
22975 we would have added below. If any attributes are
22976 missing, fall through to add them. */
22977 if (! DECL_ABSTRACT_P (node_or_origin)
22978 && !get_AT (parm_die, DW_AT_location)
22979 && !get_AT (parm_die, DW_AT_const_value))
22980 /* We are missing location info, and are about to add it. */
22982 else
22984 add_child_die (context_die, parm_die);
22985 return parm_die;
22990 /* If we have a previously generated DIE, use it, unless this is an
22991 concrete instance (origin != NULL), in which case we need a new
22992 DIE with a corresponding DW_AT_abstract_origin. */
22993 bool reusing_die;
22994 if (parm_die && origin == NULL)
22995 reusing_die = true;
22996 else
22998 parm_die = new_die (DW_TAG_formal_parameter, context_die, node);
22999 reusing_die = false;
23002 switch (TREE_CODE_CLASS (TREE_CODE (node_or_origin)))
23004 case tcc_declaration:
23005 ultimate_origin = decl_ultimate_origin (node_or_origin);
23006 if (node || ultimate_origin)
23007 origin = ultimate_origin;
23009 if (reusing_die)
23010 goto add_location;
23012 if (origin != NULL)
23013 add_abstract_origin_attribute (parm_die, origin);
23014 else if (emit_name_p)
23015 add_name_and_src_coords_attributes (parm_die, node);
23016 if (origin == NULL
23017 || (! DECL_ABSTRACT_P (node_or_origin)
23018 && variably_modified_type_p (TREE_TYPE (node_or_origin),
23019 decl_function_context
23020 (node_or_origin))))
23022 tree type = TREE_TYPE (node_or_origin);
23023 if (decl_by_reference_p (node_or_origin))
23024 add_type_attribute (parm_die, TREE_TYPE (type),
23025 TYPE_UNQUALIFIED,
23026 false, context_die);
23027 else
23028 add_type_attribute (parm_die, type,
23029 decl_quals (node_or_origin),
23030 false, context_die);
23032 if (origin == NULL && DECL_ARTIFICIAL (node))
23033 add_AT_flag (parm_die, DW_AT_artificial, 1);
23034 add_location:
23035 if (node && node != origin)
23036 equate_decl_number_to_die (node, parm_die);
23037 if (! DECL_ABSTRACT_P (node_or_origin))
23038 add_location_or_const_value_attribute (parm_die, node_or_origin,
23039 node == NULL);
23041 break;
23043 case tcc_type:
23044 /* We were called with some kind of a ..._TYPE node. */
23045 add_type_attribute (parm_die, node_or_origin, TYPE_UNQUALIFIED, false,
23046 context_die);
23047 break;
23049 default:
23050 gcc_unreachable ();
23053 return parm_die;
23056 /* Generate and return a DW_TAG_GNU_formal_parameter_pack. Also generate
23057 children DW_TAG_formal_parameter DIEs representing the arguments of the
23058 parameter pack.
23060 PARM_PACK must be a function parameter pack.
23061 PACK_ARG is the first argument of the parameter pack. Its TREE_CHAIN
23062 must point to the subsequent arguments of the function PACK_ARG belongs to.
23063 SUBR_DIE is the DIE of the function PACK_ARG belongs to.
23064 If NEXT_ARG is non NULL, *NEXT_ARG is set to the function argument
23065 following the last one for which a DIE was generated. */
23067 static dw_die_ref
23068 gen_formal_parameter_pack_die (tree parm_pack,
23069 tree pack_arg,
23070 dw_die_ref subr_die,
23071 tree *next_arg)
23073 tree arg;
23074 dw_die_ref parm_pack_die;
23076 gcc_assert (parm_pack
23077 && lang_hooks.function_parameter_pack_p (parm_pack)
23078 && subr_die);
23080 parm_pack_die = new_die (DW_TAG_GNU_formal_parameter_pack, subr_die, parm_pack);
23081 add_src_coords_attributes (parm_pack_die, parm_pack);
23083 for (arg = pack_arg; arg; arg = DECL_CHAIN (arg))
23085 if (! lang_hooks.decls.function_parm_expanded_from_pack_p (arg,
23086 parm_pack))
23087 break;
23088 gen_formal_parameter_die (arg, NULL,
23089 false /* Don't emit name attribute. */,
23090 parm_pack_die);
23092 if (next_arg)
23093 *next_arg = arg;
23094 return parm_pack_die;
23097 /* Generate a special type of DIE used as a stand-in for a trailing ellipsis
23098 at the end of an (ANSI prototyped) formal parameters list. */
23100 static void
23101 gen_unspecified_parameters_die (tree decl_or_type, dw_die_ref context_die)
23103 new_die (DW_TAG_unspecified_parameters, context_die, decl_or_type);
23106 /* Generate a list of nameless DW_TAG_formal_parameter DIEs (and perhaps a
23107 DW_TAG_unspecified_parameters DIE) to represent the types of the formal
23108 parameters as specified in some function type specification (except for
23109 those which appear as part of a function *definition*). */
23111 static void
23112 gen_formal_types_die (tree function_or_method_type, dw_die_ref context_die)
23114 tree link;
23115 tree formal_type = NULL;
23116 tree first_parm_type;
23117 tree arg;
23119 if (TREE_CODE (function_or_method_type) == FUNCTION_DECL)
23121 arg = DECL_ARGUMENTS (function_or_method_type);
23122 function_or_method_type = TREE_TYPE (function_or_method_type);
23124 else
23125 arg = NULL_TREE;
23127 first_parm_type = TYPE_ARG_TYPES (function_or_method_type);
23129 /* Make our first pass over the list of formal parameter types and output a
23130 DW_TAG_formal_parameter DIE for each one. */
23131 for (link = first_parm_type; link; )
23133 dw_die_ref parm_die;
23135 formal_type = TREE_VALUE (link);
23136 if (formal_type == void_type_node)
23137 break;
23139 /* Output a (nameless) DIE to represent the formal parameter itself. */
23140 parm_die = gen_formal_parameter_die (formal_type, NULL,
23141 true /* Emit name attribute. */,
23142 context_die);
23143 if (TREE_CODE (function_or_method_type) == METHOD_TYPE
23144 && link == first_parm_type)
23146 add_AT_flag (parm_die, DW_AT_artificial, 1);
23147 if (dwarf_version >= 3 || !dwarf_strict)
23148 add_AT_die_ref (context_die, DW_AT_object_pointer, parm_die);
23150 else if (arg && DECL_ARTIFICIAL (arg))
23151 add_AT_flag (parm_die, DW_AT_artificial, 1);
23153 link = TREE_CHAIN (link);
23154 if (arg)
23155 arg = DECL_CHAIN (arg);
23158 /* If this function type has an ellipsis, add a
23159 DW_TAG_unspecified_parameters DIE to the end of the parameter list. */
23160 if (formal_type != void_type_node)
23161 gen_unspecified_parameters_die (function_or_method_type, context_die);
23163 /* Make our second (and final) pass over the list of formal parameter types
23164 and output DIEs to represent those types (as necessary). */
23165 for (link = TYPE_ARG_TYPES (function_or_method_type);
23166 link && TREE_VALUE (link);
23167 link = TREE_CHAIN (link))
23168 gen_type_die (TREE_VALUE (link), context_die);
23171 /* We want to generate the DIE for TYPE so that we can generate the
23172 die for MEMBER, which has been defined; we will need to refer back
23173 to the member declaration nested within TYPE. If we're trying to
23174 generate minimal debug info for TYPE, processing TYPE won't do the
23175 trick; we need to attach the member declaration by hand. */
23177 static void
23178 gen_type_die_for_member (tree type, tree member, dw_die_ref context_die)
23180 gen_type_die (type, context_die);
23182 /* If we're trying to avoid duplicate debug info, we may not have
23183 emitted the member decl for this function. Emit it now. */
23184 if (TYPE_STUB_DECL (type)
23185 && TYPE_DECL_SUPPRESS_DEBUG (TYPE_STUB_DECL (type))
23186 && ! lookup_decl_die (member))
23188 dw_die_ref type_die;
23189 gcc_assert (!decl_ultimate_origin (member));
23191 type_die = lookup_type_die_strip_naming_typedef (type);
23192 if (TREE_CODE (member) == FUNCTION_DECL)
23193 gen_subprogram_die (member, type_die);
23194 else if (TREE_CODE (member) == FIELD_DECL)
23196 /* Ignore the nameless fields that are used to skip bits but handle
23197 C++ anonymous unions and structs. */
23198 if (DECL_NAME (member) != NULL_TREE
23199 || TREE_CODE (TREE_TYPE (member)) == UNION_TYPE
23200 || TREE_CODE (TREE_TYPE (member)) == RECORD_TYPE)
23202 struct vlr_context vlr_ctx = {
23203 DECL_CONTEXT (member), /* struct_type */
23204 NULL_TREE /* variant_part_offset */
23206 gen_type_die (member_declared_type (member), type_die);
23207 gen_field_die (member, &vlr_ctx, type_die);
23210 else
23211 gen_variable_die (member, NULL_TREE, type_die);
23215 /* Forward declare these functions, because they are mutually recursive
23216 with their set_block_* pairing functions. */
23217 static void set_decl_origin_self (tree);
23219 /* Given a pointer to some BLOCK node, if the BLOCK_ABSTRACT_ORIGIN for the
23220 given BLOCK node is NULL, set the BLOCK_ABSTRACT_ORIGIN for the node so
23221 that it points to the node itself, thus indicating that the node is its
23222 own (abstract) origin. Additionally, if the BLOCK_ABSTRACT_ORIGIN for
23223 the given node is NULL, recursively descend the decl/block tree which
23224 it is the root of, and for each other ..._DECL or BLOCK node contained
23225 therein whose DECL_ABSTRACT_ORIGINs or BLOCK_ABSTRACT_ORIGINs are also
23226 still NULL, set *their* DECL_ABSTRACT_ORIGIN or BLOCK_ABSTRACT_ORIGIN
23227 values to point to themselves. */
23229 static void
23230 set_block_origin_self (tree stmt)
23232 if (BLOCK_ABSTRACT_ORIGIN (stmt) == NULL_TREE)
23234 BLOCK_ABSTRACT_ORIGIN (stmt) = stmt;
23237 tree local_decl;
23239 for (local_decl = BLOCK_VARS (stmt);
23240 local_decl != NULL_TREE;
23241 local_decl = DECL_CHAIN (local_decl))
23242 /* Do not recurse on nested functions since the inlining status
23243 of parent and child can be different as per the DWARF spec. */
23244 if (TREE_CODE (local_decl) != FUNCTION_DECL
23245 && !DECL_EXTERNAL (local_decl))
23246 set_decl_origin_self (local_decl);
23250 tree subblock;
23252 for (subblock = BLOCK_SUBBLOCKS (stmt);
23253 subblock != NULL_TREE;
23254 subblock = BLOCK_CHAIN (subblock))
23255 set_block_origin_self (subblock); /* Recurse. */
23260 /* Given a pointer to some ..._DECL node, if the DECL_ABSTRACT_ORIGIN for
23261 the given ..._DECL node is NULL, set the DECL_ABSTRACT_ORIGIN for the
23262 node to so that it points to the node itself, thus indicating that the
23263 node represents its own (abstract) origin. Additionally, if the
23264 DECL_ABSTRACT_ORIGIN for the given node is NULL, recursively descend
23265 the decl/block tree of which the given node is the root of, and for
23266 each other ..._DECL or BLOCK node contained therein whose
23267 DECL_ABSTRACT_ORIGINs or BLOCK_ABSTRACT_ORIGINs are also still NULL,
23268 set *their* DECL_ABSTRACT_ORIGIN or BLOCK_ABSTRACT_ORIGIN values to
23269 point to themselves. */
23271 static void
23272 set_decl_origin_self (tree decl)
23274 if (DECL_ABSTRACT_ORIGIN (decl) == NULL_TREE)
23276 DECL_ABSTRACT_ORIGIN (decl) = decl;
23277 if (TREE_CODE (decl) == FUNCTION_DECL)
23279 tree arg;
23281 for (arg = DECL_ARGUMENTS (decl); arg; arg = DECL_CHAIN (arg))
23282 DECL_ABSTRACT_ORIGIN (arg) = arg;
23283 if (DECL_INITIAL (decl) != NULL_TREE
23284 && DECL_INITIAL (decl) != error_mark_node)
23285 set_block_origin_self (DECL_INITIAL (decl));
23290 /* Mark the early DIE for DECL as the abstract instance. */
23292 static void
23293 dwarf2out_abstract_function (tree decl)
23295 dw_die_ref old_die;
23297 /* Make sure we have the actual abstract inline, not a clone. */
23298 decl = DECL_ORIGIN (decl);
23300 if (DECL_IGNORED_P (decl))
23301 return;
23303 /* In LTO we're all set. We already created abstract instances
23304 early and we want to avoid creating a concrete instance of that
23305 if we don't output it. */
23306 if (in_lto_p)
23307 return;
23309 old_die = lookup_decl_die (decl);
23310 gcc_assert (old_die != NULL);
23311 if (get_AT (old_die, DW_AT_inline))
23312 /* We've already generated the abstract instance. */
23313 return;
23315 /* Go ahead and put DW_AT_inline on the DIE. */
23316 if (DECL_DECLARED_INLINE_P (decl))
23318 if (cgraph_function_possibly_inlined_p (decl))
23319 add_AT_unsigned (old_die, DW_AT_inline, DW_INL_declared_inlined);
23320 else
23321 add_AT_unsigned (old_die, DW_AT_inline, DW_INL_declared_not_inlined);
23323 else
23325 if (cgraph_function_possibly_inlined_p (decl))
23326 add_AT_unsigned (old_die, DW_AT_inline, DW_INL_inlined);
23327 else
23328 add_AT_unsigned (old_die, DW_AT_inline, DW_INL_not_inlined);
23331 if (DECL_DECLARED_INLINE_P (decl)
23332 && lookup_attribute ("artificial", DECL_ATTRIBUTES (decl)))
23333 add_AT_flag (old_die, DW_AT_artificial, 1);
23335 set_decl_origin_self (decl);
23338 /* Helper function of premark_used_types() which gets called through
23339 htab_traverse.
23341 Marks the DIE of a given type in *SLOT as perennial, so it never gets
23342 marked as unused by prune_unused_types. */
23344 bool
23345 premark_used_types_helper (tree const &type, void *)
23347 dw_die_ref die;
23349 die = lookup_type_die (type);
23350 if (die != NULL)
23351 die->die_perennial_p = 1;
23352 return true;
23355 /* Helper function of premark_types_used_by_global_vars which gets called
23356 through htab_traverse.
23358 Marks the DIE of a given type in *SLOT as perennial, so it never gets
23359 marked as unused by prune_unused_types. The DIE of the type is marked
23360 only if the global variable using the type will actually be emitted. */
23363 premark_types_used_by_global_vars_helper (types_used_by_vars_entry **slot,
23364 void *)
23366 struct types_used_by_vars_entry *entry;
23367 dw_die_ref die;
23369 entry = (struct types_used_by_vars_entry *) *slot;
23370 gcc_assert (entry->type != NULL
23371 && entry->var_decl != NULL);
23372 die = lookup_type_die (entry->type);
23373 if (die)
23375 /* Ask cgraph if the global variable really is to be emitted.
23376 If yes, then we'll keep the DIE of ENTRY->TYPE. */
23377 varpool_node *node = varpool_node::get (entry->var_decl);
23378 if (node && node->definition)
23380 die->die_perennial_p = 1;
23381 /* Keep the parent DIEs as well. */
23382 while ((die = die->die_parent) && die->die_perennial_p == 0)
23383 die->die_perennial_p = 1;
23386 return 1;
23389 /* Mark all members of used_types_hash as perennial. */
23391 static void
23392 premark_used_types (struct function *fun)
23394 if (fun && fun->used_types_hash)
23395 fun->used_types_hash->traverse<void *, premark_used_types_helper> (NULL);
23398 /* Mark all members of types_used_by_vars_entry as perennial. */
23400 static void
23401 premark_types_used_by_global_vars (void)
23403 if (types_used_by_vars_hash)
23404 types_used_by_vars_hash
23405 ->traverse<void *, premark_types_used_by_global_vars_helper> (NULL);
23408 /* Mark all variables used by the symtab as perennial. */
23410 static void
23411 premark_used_variables (void)
23413 /* Mark DIEs in the symtab as used. */
23414 varpool_node *var;
23415 FOR_EACH_VARIABLE (var)
23417 dw_die_ref die = lookup_decl_die (var->decl);
23418 if (die)
23419 die->die_perennial_p = 1;
23423 /* Generate a DW_TAG_call_site DIE in function DECL under SUBR_DIE
23424 for CA_LOC call arg loc node. */
23426 static dw_die_ref
23427 gen_call_site_die (tree decl, dw_die_ref subr_die,
23428 struct call_arg_loc_node *ca_loc)
23430 dw_die_ref stmt_die = NULL, die;
23431 tree block = ca_loc->block;
23433 while (block
23434 && block != DECL_INITIAL (decl)
23435 && TREE_CODE (block) == BLOCK)
23437 stmt_die = lookup_block_die (block);
23438 if (stmt_die)
23439 break;
23440 block = BLOCK_SUPERCONTEXT (block);
23442 if (stmt_die == NULL)
23443 stmt_die = subr_die;
23444 die = new_die (dwarf_TAG (DW_TAG_call_site), stmt_die, NULL_TREE);
23445 add_AT_lbl_id (die, dwarf_AT (DW_AT_call_return_pc), ca_loc->label);
23446 if (ca_loc->tail_call_p)
23447 add_AT_flag (die, dwarf_AT (DW_AT_call_tail_call), 1);
23448 if (ca_loc->symbol_ref)
23450 dw_die_ref tdie = lookup_decl_die (SYMBOL_REF_DECL (ca_loc->symbol_ref));
23451 if (tdie)
23452 add_AT_die_ref (die, dwarf_AT (DW_AT_call_origin), tdie);
23453 else
23454 add_AT_addr (die, dwarf_AT (DW_AT_call_origin), ca_loc->symbol_ref,
23455 false);
23457 return die;
23460 /* Generate a DIE to represent a declared function (either file-scope or
23461 block-local). */
23463 static void
23464 gen_subprogram_die (tree decl, dw_die_ref context_die)
23466 tree origin = decl_ultimate_origin (decl);
23467 dw_die_ref subr_die;
23468 dw_die_ref old_die = lookup_decl_die (decl);
23469 bool old_die_had_no_children = false;
23471 /* This function gets called multiple times for different stages of
23472 the debug process. For example, for func() in this code:
23474 namespace S
23476 void func() { ... }
23479 ...we get called 4 times. Twice in early debug and twice in
23480 late debug:
23482 Early debug
23483 -----------
23485 1. Once while generating func() within the namespace. This is
23486 the declaration. The declaration bit below is set, as the
23487 context is the namespace.
23489 A new DIE will be generated with DW_AT_declaration set.
23491 2. Once for func() itself. This is the specification. The
23492 declaration bit below is clear as the context is the CU.
23494 We will use the cached DIE from (1) to create a new DIE with
23495 DW_AT_specification pointing to the declaration in (1).
23497 Late debug via rest_of_handle_final()
23498 -------------------------------------
23500 3. Once generating func() within the namespace. This is also the
23501 declaration, as in (1), but this time we will early exit below
23502 as we have a cached DIE and a declaration needs no additional
23503 annotations (no locations), as the source declaration line
23504 info is enough.
23506 4. Once for func() itself. As in (2), this is the specification,
23507 but this time we will re-use the cached DIE, and just annotate
23508 it with the location information that should now be available.
23510 For something without namespaces, but with abstract instances, we
23511 are also called a multiple times:
23513 class Base
23515 public:
23516 Base (); // constructor declaration (1)
23519 Base::Base () { } // constructor specification (2)
23521 Early debug
23522 -----------
23524 1. Once for the Base() constructor by virtue of it being a
23525 member of the Base class. This is done via
23526 rest_of_type_compilation.
23528 This is a declaration, so a new DIE will be created with
23529 DW_AT_declaration.
23531 2. Once for the Base() constructor definition, but this time
23532 while generating the abstract instance of the base
23533 constructor (__base_ctor) which is being generated via early
23534 debug of reachable functions.
23536 Even though we have a cached version of the declaration (1),
23537 we will create a DW_AT_specification of the declaration DIE
23538 in (1).
23540 3. Once for the __base_ctor itself, but this time, we generate
23541 an DW_AT_abstract_origin version of the DW_AT_specification in
23542 (2).
23544 Late debug via rest_of_handle_final
23545 -----------------------------------
23547 4. One final time for the __base_ctor (which will have a cached
23548 DIE with DW_AT_abstract_origin created in (3). This time,
23549 we will just annotate the location information now
23550 available.
23552 int declaration = (current_function_decl != decl
23553 || (!DECL_INITIAL (decl) && !origin)
23554 || class_or_namespace_scope_p (context_die));
23556 /* A declaration that has been previously dumped needs no
23557 additional information. */
23558 if (old_die && declaration)
23559 return;
23561 if (in_lto_p && old_die && old_die->die_child == NULL)
23562 old_die_had_no_children = true;
23564 /* Now that the C++ front end lazily declares artificial member fns, we
23565 might need to retrofit the declaration into its class. */
23566 if (!declaration && !origin && !old_die
23567 && DECL_CONTEXT (decl) && TYPE_P (DECL_CONTEXT (decl))
23568 && !class_or_namespace_scope_p (context_die)
23569 && debug_info_level > DINFO_LEVEL_TERSE)
23570 old_die = force_decl_die (decl);
23572 /* A concrete instance, tag a new DIE with DW_AT_abstract_origin. */
23573 if (origin != NULL)
23575 gcc_assert (!declaration || local_scope_p (context_die));
23577 /* Fixup die_parent for the abstract instance of a nested
23578 inline function. */
23579 if (old_die && old_die->die_parent == NULL)
23580 add_child_die (context_die, old_die);
23582 if (old_die && get_AT_ref (old_die, DW_AT_abstract_origin))
23584 /* If we have a DW_AT_abstract_origin we have a working
23585 cached version. */
23586 subr_die = old_die;
23588 else
23590 subr_die = new_die (DW_TAG_subprogram, context_die, decl);
23591 add_abstract_origin_attribute (subr_die, origin);
23592 /* This is where the actual code for a cloned function is.
23593 Let's emit linkage name attribute for it. This helps
23594 debuggers to e.g, set breakpoints into
23595 constructors/destructors when the user asks "break
23596 K::K". */
23597 add_linkage_name (subr_die, decl);
23600 /* A cached copy, possibly from early dwarf generation. Reuse as
23601 much as possible. */
23602 else if (old_die)
23604 if (!get_AT_flag (old_die, DW_AT_declaration)
23605 /* We can have a normal definition following an inline one in the
23606 case of redefinition of GNU C extern inlines.
23607 It seems reasonable to use AT_specification in this case. */
23608 && !get_AT (old_die, DW_AT_inline))
23610 /* Detect and ignore this case, where we are trying to output
23611 something we have already output. */
23612 if (get_AT (old_die, DW_AT_low_pc)
23613 || get_AT (old_die, DW_AT_ranges))
23614 return;
23616 /* If we have no location information, this must be a
23617 partially generated DIE from early dwarf generation.
23618 Fall through and generate it. */
23621 /* If the definition comes from the same place as the declaration,
23622 maybe use the old DIE. We always want the DIE for this function
23623 that has the *_pc attributes to be under comp_unit_die so the
23624 debugger can find it. We also need to do this for abstract
23625 instances of inlines, since the spec requires the out-of-line copy
23626 to have the same parent. For local class methods, this doesn't
23627 apply; we just use the old DIE. */
23628 expanded_location s = expand_location (DECL_SOURCE_LOCATION (decl));
23629 struct dwarf_file_data * file_index = lookup_filename (s.file);
23630 if (((is_unit_die (old_die->die_parent)
23631 /* This condition fixes the inconsistency/ICE with the
23632 following Fortran test (or some derivative thereof) while
23633 building libgfortran:
23635 module some_m
23636 contains
23637 logical function funky (FLAG)
23638 funky = .true.
23639 end function
23640 end module
23642 || (old_die->die_parent
23643 && old_die->die_parent->die_tag == DW_TAG_module)
23644 || local_scope_p (old_die->die_parent)
23645 || context_die == NULL)
23646 && (DECL_ARTIFICIAL (decl)
23647 || (get_AT_file (old_die, DW_AT_decl_file) == file_index
23648 && (get_AT_unsigned (old_die, DW_AT_decl_line)
23649 == (unsigned) s.line)
23650 && (!debug_column_info
23651 || s.column == 0
23652 || (get_AT_unsigned (old_die, DW_AT_decl_column)
23653 == (unsigned) s.column)))))
23654 /* With LTO if there's an abstract instance for
23655 the old DIE, this is a concrete instance and
23656 thus re-use the DIE. */
23657 || get_AT (old_die, DW_AT_abstract_origin))
23659 subr_die = old_die;
23661 /* Clear out the declaration attribute, but leave the
23662 parameters so they can be augmented with location
23663 information later. Unless this was a declaration, in
23664 which case, wipe out the nameless parameters and recreate
23665 them further down. */
23666 if (remove_AT (subr_die, DW_AT_declaration))
23669 remove_AT (subr_die, DW_AT_object_pointer);
23670 remove_child_TAG (subr_die, DW_TAG_formal_parameter);
23673 /* Make a specification pointing to the previously built
23674 declaration. */
23675 else
23677 subr_die = new_die (DW_TAG_subprogram, context_die, decl);
23678 add_AT_specification (subr_die, old_die);
23679 add_pubname (decl, subr_die);
23680 if (get_AT_file (old_die, DW_AT_decl_file) != file_index)
23681 add_AT_file (subr_die, DW_AT_decl_file, file_index);
23682 if (get_AT_unsigned (old_die, DW_AT_decl_line) != (unsigned) s.line)
23683 add_AT_unsigned (subr_die, DW_AT_decl_line, s.line);
23684 if (debug_column_info
23685 && s.column
23686 && (get_AT_unsigned (old_die, DW_AT_decl_column)
23687 != (unsigned) s.column))
23688 add_AT_unsigned (subr_die, DW_AT_decl_column, s.column);
23690 /* If the prototype had an 'auto' or 'decltype(auto)' in
23691 the return type, emit the real type on the definition die. */
23692 if (is_cxx () && debug_info_level > DINFO_LEVEL_TERSE)
23694 dw_die_ref die = get_AT_ref (old_die, DW_AT_type);
23695 while (die
23696 && (die->die_tag == DW_TAG_reference_type
23697 || die->die_tag == DW_TAG_rvalue_reference_type
23698 || die->die_tag == DW_TAG_pointer_type
23699 || die->die_tag == DW_TAG_const_type
23700 || die->die_tag == DW_TAG_volatile_type
23701 || die->die_tag == DW_TAG_restrict_type
23702 || die->die_tag == DW_TAG_array_type
23703 || die->die_tag == DW_TAG_ptr_to_member_type
23704 || die->die_tag == DW_TAG_subroutine_type))
23705 die = get_AT_ref (die, DW_AT_type);
23706 if (die == auto_die || die == decltype_auto_die)
23707 add_type_attribute (subr_die, TREE_TYPE (TREE_TYPE (decl)),
23708 TYPE_UNQUALIFIED, false, context_die);
23711 /* When we process the method declaration, we haven't seen
23712 the out-of-class defaulted definition yet, so we have to
23713 recheck now. */
23714 if ((dwarf_version >= 5 || ! dwarf_strict)
23715 && !get_AT (subr_die, DW_AT_defaulted))
23717 int defaulted
23718 = lang_hooks.decls.decl_dwarf_attribute (decl,
23719 DW_AT_defaulted);
23720 if (defaulted != -1)
23722 /* Other values must have been handled before. */
23723 gcc_assert (defaulted == DW_DEFAULTED_out_of_class);
23724 add_AT_unsigned (subr_die, DW_AT_defaulted, defaulted);
23729 /* Create a fresh DIE for anything else. */
23730 else
23732 subr_die = new_die (DW_TAG_subprogram, context_die, decl);
23734 if (TREE_PUBLIC (decl))
23735 add_AT_flag (subr_die, DW_AT_external, 1);
23737 add_name_and_src_coords_attributes (subr_die, decl);
23738 add_pubname (decl, subr_die);
23739 if (debug_info_level > DINFO_LEVEL_TERSE)
23741 add_prototyped_attribute (subr_die, TREE_TYPE (decl));
23742 add_type_attribute (subr_die, TREE_TYPE (TREE_TYPE (decl)),
23743 TYPE_UNQUALIFIED, false, context_die);
23746 add_pure_or_virtual_attribute (subr_die, decl);
23747 if (DECL_ARTIFICIAL (decl))
23748 add_AT_flag (subr_die, DW_AT_artificial, 1);
23750 if (TREE_THIS_VOLATILE (decl) && (dwarf_version >= 5 || !dwarf_strict))
23751 add_AT_flag (subr_die, DW_AT_noreturn, 1);
23753 add_alignment_attribute (subr_die, decl);
23755 add_accessibility_attribute (subr_die, decl);
23758 /* Unless we have an existing non-declaration DIE, equate the new
23759 DIE. */
23760 if (!old_die || is_declaration_die (old_die))
23761 equate_decl_number_to_die (decl, subr_die);
23763 if (declaration)
23765 if (!old_die || !get_AT (old_die, DW_AT_inline))
23767 add_AT_flag (subr_die, DW_AT_declaration, 1);
23769 /* If this is an explicit function declaration then generate
23770 a DW_AT_explicit attribute. */
23771 if ((dwarf_version >= 3 || !dwarf_strict)
23772 && lang_hooks.decls.decl_dwarf_attribute (decl,
23773 DW_AT_explicit) == 1)
23774 add_AT_flag (subr_die, DW_AT_explicit, 1);
23776 /* If this is a C++11 deleted special function member then generate
23777 a DW_AT_deleted attribute. */
23778 if ((dwarf_version >= 5 || !dwarf_strict)
23779 && lang_hooks.decls.decl_dwarf_attribute (decl,
23780 DW_AT_deleted) == 1)
23781 add_AT_flag (subr_die, DW_AT_deleted, 1);
23783 /* If this is a C++11 defaulted special function member then
23784 generate a DW_AT_defaulted attribute. */
23785 if (dwarf_version >= 5 || !dwarf_strict)
23787 int defaulted
23788 = lang_hooks.decls.decl_dwarf_attribute (decl,
23789 DW_AT_defaulted);
23790 if (defaulted != -1)
23791 add_AT_unsigned (subr_die, DW_AT_defaulted, defaulted);
23794 /* If this is a C++11 non-static member function with & ref-qualifier
23795 then generate a DW_AT_reference attribute. */
23796 if ((dwarf_version >= 5 || !dwarf_strict)
23797 && lang_hooks.decls.decl_dwarf_attribute (decl,
23798 DW_AT_reference) == 1)
23799 add_AT_flag (subr_die, DW_AT_reference, 1);
23801 /* If this is a C++11 non-static member function with &&
23802 ref-qualifier then generate a DW_AT_reference attribute. */
23803 if ((dwarf_version >= 5 || !dwarf_strict)
23804 && lang_hooks.decls.decl_dwarf_attribute (decl,
23805 DW_AT_rvalue_reference)
23806 == 1)
23807 add_AT_flag (subr_die, DW_AT_rvalue_reference, 1);
23810 /* For non DECL_EXTERNALs, if range information is available, fill
23811 the DIE with it. */
23812 else if (!DECL_EXTERNAL (decl) && !early_dwarf)
23814 HOST_WIDE_INT cfa_fb_offset;
23816 struct function *fun = DECL_STRUCT_FUNCTION (decl);
23818 if (!crtl->has_bb_partition)
23820 dw_fde_ref fde = fun->fde;
23821 if (fde->dw_fde_begin)
23823 /* We have already generated the labels. */
23824 add_AT_low_high_pc (subr_die, fde->dw_fde_begin,
23825 fde->dw_fde_end, false);
23827 else
23829 /* Create start/end labels and add the range. */
23830 char label_id_low[MAX_ARTIFICIAL_LABEL_BYTES];
23831 char label_id_high[MAX_ARTIFICIAL_LABEL_BYTES];
23832 ASM_GENERATE_INTERNAL_LABEL (label_id_low, FUNC_BEGIN_LABEL,
23833 current_function_funcdef_no);
23834 ASM_GENERATE_INTERNAL_LABEL (label_id_high, FUNC_END_LABEL,
23835 current_function_funcdef_no);
23836 add_AT_low_high_pc (subr_die, label_id_low, label_id_high,
23837 false);
23840 #if VMS_DEBUGGING_INFO
23841 /* HP OpenVMS Industry Standard 64: DWARF Extensions
23842 Section 2.3 Prologue and Epilogue Attributes:
23843 When a breakpoint is set on entry to a function, it is generally
23844 desirable for execution to be suspended, not on the very first
23845 instruction of the function, but rather at a point after the
23846 function's frame has been set up, after any language defined local
23847 declaration processing has been completed, and before execution of
23848 the first statement of the function begins. Debuggers generally
23849 cannot properly determine where this point is. Similarly for a
23850 breakpoint set on exit from a function. The prologue and epilogue
23851 attributes allow a compiler to communicate the location(s) to use. */
23854 if (fde->dw_fde_vms_end_prologue)
23855 add_AT_vms_delta (subr_die, DW_AT_HP_prologue,
23856 fde->dw_fde_begin, fde->dw_fde_vms_end_prologue);
23858 if (fde->dw_fde_vms_begin_epilogue)
23859 add_AT_vms_delta (subr_die, DW_AT_HP_epilogue,
23860 fde->dw_fde_begin, fde->dw_fde_vms_begin_epilogue);
23862 #endif
23865 else
23867 /* Generate pubnames entries for the split function code ranges. */
23868 dw_fde_ref fde = fun->fde;
23870 if (fde->dw_fde_second_begin)
23872 if (dwarf_version >= 3 || !dwarf_strict)
23874 /* We should use ranges for non-contiguous code section
23875 addresses. Use the actual code range for the initial
23876 section, since the HOT/COLD labels might precede an
23877 alignment offset. */
23878 bool range_list_added = false;
23879 add_ranges_by_labels (subr_die, fde->dw_fde_begin,
23880 fde->dw_fde_end, &range_list_added,
23881 false);
23882 add_ranges_by_labels (subr_die, fde->dw_fde_second_begin,
23883 fde->dw_fde_second_end,
23884 &range_list_added, false);
23885 if (range_list_added)
23886 add_ranges (NULL);
23888 else
23890 /* There is no real support in DW2 for this .. so we make
23891 a work-around. First, emit the pub name for the segment
23892 containing the function label. Then make and emit a
23893 simplified subprogram DIE for the second segment with the
23894 name pre-fixed by __hot/cold_sect_of_. We use the same
23895 linkage name for the second die so that gdb will find both
23896 sections when given "b foo". */
23897 const char *name = NULL;
23898 tree decl_name = DECL_NAME (decl);
23899 dw_die_ref seg_die;
23901 /* Do the 'primary' section. */
23902 add_AT_low_high_pc (subr_die, fde->dw_fde_begin,
23903 fde->dw_fde_end, false);
23905 /* Build a minimal DIE for the secondary section. */
23906 seg_die = new_die (DW_TAG_subprogram,
23907 subr_die->die_parent, decl);
23909 if (TREE_PUBLIC (decl))
23910 add_AT_flag (seg_die, DW_AT_external, 1);
23912 if (decl_name != NULL
23913 && IDENTIFIER_POINTER (decl_name) != NULL)
23915 name = dwarf2_name (decl, 1);
23916 if (! DECL_ARTIFICIAL (decl))
23917 add_src_coords_attributes (seg_die, decl);
23919 add_linkage_name (seg_die, decl);
23921 gcc_assert (name != NULL);
23922 add_pure_or_virtual_attribute (seg_die, decl);
23923 if (DECL_ARTIFICIAL (decl))
23924 add_AT_flag (seg_die, DW_AT_artificial, 1);
23926 name = concat ("__second_sect_of_", name, NULL);
23927 add_AT_low_high_pc (seg_die, fde->dw_fde_second_begin,
23928 fde->dw_fde_second_end, false);
23929 add_name_attribute (seg_die, name);
23930 if (want_pubnames ())
23931 add_pubname_string (name, seg_die);
23934 else
23935 add_AT_low_high_pc (subr_die, fde->dw_fde_begin, fde->dw_fde_end,
23936 false);
23939 cfa_fb_offset = CFA_FRAME_BASE_OFFSET (decl);
23941 /* We define the "frame base" as the function's CFA. This is more
23942 convenient for several reasons: (1) It's stable across the prologue
23943 and epilogue, which makes it better than just a frame pointer,
23944 (2) With dwarf3, there exists a one-byte encoding that allows us
23945 to reference the .debug_frame data by proxy, but failing that,
23946 (3) We can at least reuse the code inspection and interpretation
23947 code that determines the CFA position at various points in the
23948 function. */
23949 if (dwarf_version >= 3 && targetm.debug_unwind_info () == UI_DWARF2)
23951 dw_loc_descr_ref op = new_loc_descr (DW_OP_call_frame_cfa, 0, 0);
23952 add_AT_loc (subr_die, DW_AT_frame_base, op);
23954 else
23956 dw_loc_list_ref list = convert_cfa_to_fb_loc_list (cfa_fb_offset);
23957 if (list->dw_loc_next)
23958 add_AT_loc_list (subr_die, DW_AT_frame_base, list);
23959 else
23960 add_AT_loc (subr_die, DW_AT_frame_base, list->expr);
23963 /* Compute a displacement from the "steady-state frame pointer" to
23964 the CFA. The former is what all stack slots and argument slots
23965 will reference in the rtl; the latter is what we've told the
23966 debugger about. We'll need to adjust all frame_base references
23967 by this displacement. */
23968 compute_frame_pointer_to_fb_displacement (cfa_fb_offset);
23970 if (fun->static_chain_decl)
23972 /* DWARF requires here a location expression that computes the
23973 address of the enclosing subprogram's frame base. The machinery
23974 in tree-nested.cc is supposed to store this specific address in the
23975 last field of the FRAME record. */
23976 const tree frame_type
23977 = TREE_TYPE (TREE_TYPE (fun->static_chain_decl));
23978 const tree fb_decl = tree_last (TYPE_FIELDS (frame_type));
23980 tree fb_expr
23981 = build1 (INDIRECT_REF, frame_type, fun->static_chain_decl);
23982 fb_expr = build3 (COMPONENT_REF, TREE_TYPE (fb_decl),
23983 fb_expr, fb_decl, NULL_TREE);
23985 add_AT_location_description (subr_die, DW_AT_static_link,
23986 loc_list_from_tree (fb_expr, 0, NULL));
23989 resolve_variable_values ();
23992 /* Generate child dies for template parameters. */
23993 if (early_dwarf && debug_info_level > DINFO_LEVEL_TERSE)
23994 gen_generic_params_dies (decl);
23996 /* Now output descriptions of the arguments for this function. This gets
23997 (unnecessarily?) complex because of the fact that the DECL_ARGUMENT list
23998 for a FUNCTION_DECL doesn't indicate cases where there was a trailing
23999 `...' at the end of the formal parameter list. In order to find out if
24000 there was a trailing ellipsis or not, we must instead look at the type
24001 associated with the FUNCTION_DECL. This will be a node of type
24002 FUNCTION_TYPE. If the chain of type nodes hanging off of this
24003 FUNCTION_TYPE node ends with a void_type_node then there should *not* be
24004 an ellipsis at the end. */
24006 /* In the case where we are describing a mere function declaration, all we
24007 need to do here (and all we *can* do here) is to describe the *types* of
24008 its formal parameters. */
24009 if (debug_info_level <= DINFO_LEVEL_TERSE)
24011 else if (declaration)
24012 gen_formal_types_die (decl, subr_die);
24013 else
24015 /* Generate DIEs to represent all known formal parameters. */
24016 tree parm = DECL_ARGUMENTS (decl);
24017 tree generic_decl = early_dwarf
24018 ? lang_hooks.decls.get_generic_function_decl (decl) : NULL;
24019 tree generic_decl_parm = generic_decl
24020 ? DECL_ARGUMENTS (generic_decl)
24021 : NULL;
24023 /* Now we want to walk the list of parameters of the function and
24024 emit their relevant DIEs.
24026 We consider the case of DECL being an instance of a generic function
24027 as well as it being a normal function.
24029 If DECL is an instance of a generic function we walk the
24030 parameters of the generic function declaration _and_ the parameters of
24031 DECL itself. This is useful because we want to emit specific DIEs for
24032 function parameter packs and those are declared as part of the
24033 generic function declaration. In that particular case,
24034 the parameter pack yields a DW_TAG_GNU_formal_parameter_pack DIE.
24035 That DIE has children DIEs representing the set of arguments
24036 of the pack. Note that the set of pack arguments can be empty.
24037 In that case, the DW_TAG_GNU_formal_parameter_pack DIE will not have any
24038 children DIE.
24040 Otherwise, we just consider the parameters of DECL. */
24041 while (generic_decl_parm || parm)
24043 if (generic_decl_parm
24044 && lang_hooks.function_parameter_pack_p (generic_decl_parm))
24045 gen_formal_parameter_pack_die (generic_decl_parm,
24046 parm, subr_die,
24047 &parm);
24048 else if (parm)
24050 dw_die_ref parm_die = gen_decl_die (parm, NULL, NULL, subr_die);
24052 if (early_dwarf
24053 && parm == DECL_ARGUMENTS (decl)
24054 && TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE
24055 && parm_die
24056 && (dwarf_version >= 3 || !dwarf_strict))
24057 add_AT_die_ref (subr_die, DW_AT_object_pointer, parm_die);
24059 parm = DECL_CHAIN (parm);
24062 if (generic_decl_parm)
24063 generic_decl_parm = DECL_CHAIN (generic_decl_parm);
24066 /* Decide whether we need an unspecified_parameters DIE at the end.
24067 There are 2 more cases to do this for: 1) the ansi ... declaration -
24068 this is detectable when the end of the arg list is not a
24069 void_type_node 2) an unprototyped function declaration (not a
24070 definition). This just means that we have no info about the
24071 parameters at all. */
24072 if (early_dwarf)
24074 if (prototype_p (TREE_TYPE (decl)))
24076 /* This is the prototyped case, check for.... */
24077 if (stdarg_p (TREE_TYPE (decl)))
24078 gen_unspecified_parameters_die (decl, subr_die);
24080 else if (DECL_INITIAL (decl) == NULL_TREE)
24081 gen_unspecified_parameters_die (decl, subr_die);
24083 else if ((subr_die != old_die || old_die_had_no_children)
24084 && prototype_p (TREE_TYPE (decl))
24085 && stdarg_p (TREE_TYPE (decl)))
24086 gen_unspecified_parameters_die (decl, subr_die);
24089 if (subr_die != old_die)
24090 /* Add the calling convention attribute if requested. */
24091 add_calling_convention_attribute (subr_die, decl);
24093 /* Output Dwarf info for all of the stuff within the body of the function
24094 (if it has one - it may be just a declaration).
24096 OUTER_SCOPE is a pointer to the outermost BLOCK node created to represent
24097 a function. This BLOCK actually represents the outermost binding contour
24098 for the function, i.e. the contour in which the function's formal
24099 parameters and labels get declared. Curiously, it appears that the front
24100 end doesn't actually put the PARM_DECL nodes for the current function onto
24101 the BLOCK_VARS list for this outer scope, but are strung off of the
24102 DECL_ARGUMENTS list for the function instead.
24104 The BLOCK_VARS list for the `outer_scope' does provide us with a list of
24105 the LABEL_DECL nodes for the function however, and we output DWARF info
24106 for those in decls_for_scope. Just within the `outer_scope' there will be
24107 a BLOCK node representing the function's outermost pair of curly braces,
24108 and any blocks used for the base and member initializers of a C++
24109 constructor function. */
24110 tree outer_scope = DECL_INITIAL (decl);
24111 if (! declaration && outer_scope && TREE_CODE (outer_scope) != ERROR_MARK)
24113 int call_site_note_count = 0;
24114 int tail_call_site_note_count = 0;
24116 /* Emit a DW_TAG_variable DIE for a named return value. */
24117 if (DECL_NAME (DECL_RESULT (decl)))
24118 gen_decl_die (DECL_RESULT (decl), NULL, NULL, subr_die);
24120 /* The first time through decls_for_scope we will generate the
24121 DIEs for the locals. The second time, we fill in the
24122 location info. */
24123 decls_for_scope (outer_scope, subr_die);
24125 if (call_arg_locations && (!dwarf_strict || dwarf_version >= 5))
24127 struct call_arg_loc_node *ca_loc;
24128 for (ca_loc = call_arg_locations; ca_loc; ca_loc = ca_loc->next)
24130 dw_die_ref die = NULL;
24131 rtx tloc = NULL_RTX, tlocc = NULL_RTX;
24132 rtx arg, next_arg;
24133 tree arg_decl = NULL_TREE;
24135 for (arg = (ca_loc->call_arg_loc_note != NULL_RTX
24136 ? XEXP (ca_loc->call_arg_loc_note, 0)
24137 : NULL_RTX);
24138 arg; arg = next_arg)
24140 dw_loc_descr_ref reg, val;
24141 machine_mode mode = GET_MODE (XEXP (XEXP (arg, 0), 1));
24142 dw_die_ref cdie, tdie = NULL;
24144 next_arg = XEXP (arg, 1);
24145 if (REG_P (XEXP (XEXP (arg, 0), 0))
24146 && next_arg
24147 && MEM_P (XEXP (XEXP (next_arg, 0), 0))
24148 && REG_P (XEXP (XEXP (XEXP (next_arg, 0), 0), 0))
24149 && REGNO (XEXP (XEXP (arg, 0), 0))
24150 == REGNO (XEXP (XEXP (XEXP (next_arg, 0), 0), 0)))
24151 next_arg = XEXP (next_arg, 1);
24152 if (mode == VOIDmode)
24154 mode = GET_MODE (XEXP (XEXP (arg, 0), 0));
24155 if (mode == VOIDmode)
24156 mode = GET_MODE (XEXP (arg, 0));
24158 if (mode == VOIDmode || mode == BLKmode)
24159 continue;
24160 /* Get dynamic information about call target only if we
24161 have no static information: we cannot generate both
24162 DW_AT_call_origin and DW_AT_call_target
24163 attributes. */
24164 if (ca_loc->symbol_ref == NULL_RTX)
24166 if (XEXP (XEXP (arg, 0), 0) == pc_rtx)
24168 tloc = XEXP (XEXP (arg, 0), 1);
24169 continue;
24171 else if (GET_CODE (XEXP (XEXP (arg, 0), 0)) == CLOBBER
24172 && XEXP (XEXP (XEXP (arg, 0), 0), 0) == pc_rtx)
24174 tlocc = XEXP (XEXP (arg, 0), 1);
24175 continue;
24178 reg = NULL;
24179 if (REG_P (XEXP (XEXP (arg, 0), 0)))
24180 reg = reg_loc_descriptor (XEXP (XEXP (arg, 0), 0),
24181 VAR_INIT_STATUS_INITIALIZED);
24182 else if (MEM_P (XEXP (XEXP (arg, 0), 0)))
24184 rtx mem = XEXP (XEXP (arg, 0), 0);
24185 reg = mem_loc_descriptor (XEXP (mem, 0),
24186 get_address_mode (mem),
24187 GET_MODE (mem),
24188 VAR_INIT_STATUS_INITIALIZED);
24190 else if (GET_CODE (XEXP (XEXP (arg, 0), 0))
24191 == DEBUG_PARAMETER_REF)
24193 tree tdecl
24194 = DEBUG_PARAMETER_REF_DECL (XEXP (XEXP (arg, 0), 0));
24195 tdie = lookup_decl_die (tdecl);
24196 if (tdie == NULL)
24197 continue;
24198 arg_decl = tdecl;
24200 else
24201 continue;
24202 if (reg == NULL
24203 && GET_CODE (XEXP (XEXP (arg, 0), 0))
24204 != DEBUG_PARAMETER_REF)
24205 continue;
24206 val = mem_loc_descriptor (XEXP (XEXP (arg, 0), 1), mode,
24207 VOIDmode,
24208 VAR_INIT_STATUS_INITIALIZED);
24209 if (val == NULL)
24210 continue;
24211 if (die == NULL)
24212 die = gen_call_site_die (decl, subr_die, ca_loc);
24213 cdie = new_die (dwarf_TAG (DW_TAG_call_site_parameter), die,
24214 NULL_TREE);
24215 add_desc_attribute (cdie, arg_decl);
24216 if (reg != NULL)
24217 add_AT_loc (cdie, DW_AT_location, reg);
24218 else if (tdie != NULL)
24219 add_AT_die_ref (cdie, dwarf_AT (DW_AT_call_parameter),
24220 tdie);
24221 add_AT_loc (cdie, dwarf_AT (DW_AT_call_value), val);
24222 if (next_arg != XEXP (arg, 1))
24224 mode = GET_MODE (XEXP (XEXP (XEXP (arg, 1), 0), 1));
24225 if (mode == VOIDmode)
24226 mode = GET_MODE (XEXP (XEXP (XEXP (arg, 1), 0), 0));
24227 val = mem_loc_descriptor (XEXP (XEXP (XEXP (arg, 1),
24228 0), 1),
24229 mode, VOIDmode,
24230 VAR_INIT_STATUS_INITIALIZED);
24231 if (val != NULL)
24232 add_AT_loc (cdie, dwarf_AT (DW_AT_call_data_value),
24233 val);
24236 if (die == NULL
24237 && (ca_loc->symbol_ref || tloc))
24238 die = gen_call_site_die (decl, subr_die, ca_loc);
24239 if (die != NULL && (tloc != NULL_RTX || tlocc != NULL_RTX))
24241 dw_loc_descr_ref tval = NULL;
24243 if (tloc != NULL_RTX)
24244 tval = mem_loc_descriptor (tloc,
24245 GET_MODE (tloc) == VOIDmode
24246 ? Pmode : GET_MODE (tloc),
24247 VOIDmode,
24248 VAR_INIT_STATUS_INITIALIZED);
24249 if (tval)
24250 add_AT_loc (die, dwarf_AT (DW_AT_call_target), tval);
24251 else if (tlocc != NULL_RTX)
24253 tval = mem_loc_descriptor (tlocc,
24254 GET_MODE (tlocc) == VOIDmode
24255 ? Pmode : GET_MODE (tlocc),
24256 VOIDmode,
24257 VAR_INIT_STATUS_INITIALIZED);
24258 if (tval)
24259 add_AT_loc (die,
24260 dwarf_AT (DW_AT_call_target_clobbered),
24261 tval);
24264 if (die != NULL)
24266 call_site_note_count++;
24267 if (ca_loc->tail_call_p)
24268 tail_call_site_note_count++;
24272 call_arg_locations = NULL;
24273 call_arg_loc_last = NULL;
24274 if (tail_call_site_count >= 0
24275 && tail_call_site_count == tail_call_site_note_count
24276 && (!dwarf_strict || dwarf_version >= 5))
24278 if (call_site_count >= 0
24279 && call_site_count == call_site_note_count)
24280 add_AT_flag (subr_die, dwarf_AT (DW_AT_call_all_calls), 1);
24281 else
24282 add_AT_flag (subr_die, dwarf_AT (DW_AT_call_all_tail_calls), 1);
24284 call_site_count = -1;
24285 tail_call_site_count = -1;
24288 /* Mark used types after we have created DIEs for the functions scopes. */
24289 premark_used_types (DECL_STRUCT_FUNCTION (decl));
24292 /* Returns a hash value for X (which really is a die_struct). */
24294 hashval_t
24295 block_die_hasher::hash (die_struct *d)
24297 return (hashval_t) d->decl_id ^ htab_hash_pointer (d->die_parent);
24300 /* Return true if decl_id and die_parent of die_struct X is the same
24301 as decl_id and die_parent of die_struct Y. */
24303 bool
24304 block_die_hasher::equal (die_struct *x, die_struct *y)
24306 return x->decl_id == y->decl_id && x->die_parent == y->die_parent;
24309 /* Hold information about markers for inlined entry points. */
24310 struct GTY ((for_user)) inline_entry_data
24312 /* The block that's the inlined_function_outer_scope for an inlined
24313 function. */
24314 tree block;
24316 /* The label at the inlined entry point. */
24317 const char *label_pfx;
24318 unsigned int label_num;
24320 /* The view number to be used as the inlined entry point. */
24321 var_loc_view view;
24324 struct inline_entry_data_hasher : ggc_ptr_hash <inline_entry_data>
24326 typedef tree compare_type;
24327 static inline hashval_t hash (const inline_entry_data *);
24328 static inline bool equal (const inline_entry_data *, const_tree);
24331 /* Hash table routines for inline_entry_data. */
24333 inline hashval_t
24334 inline_entry_data_hasher::hash (const inline_entry_data *data)
24336 return htab_hash_pointer (data->block);
24339 inline bool
24340 inline_entry_data_hasher::equal (const inline_entry_data *data,
24341 const_tree block)
24343 return data->block == block;
24346 /* Inlined entry points pending DIE creation in this compilation unit. */
24348 static GTY(()) hash_table<inline_entry_data_hasher> *inline_entry_data_table;
24351 /* Return TRUE if DECL, which may have been previously generated as
24352 OLD_DIE, is a candidate for a DW_AT_specification. DECLARATION is
24353 true if decl (or its origin) is either an extern declaration or a
24354 class/namespace scoped declaration.
24356 The declare_in_namespace support causes us to get two DIEs for one
24357 variable, both of which are declarations. We want to avoid
24358 considering one to be a specification, so we must test for
24359 DECLARATION and DW_AT_declaration. */
24360 static inline bool
24361 decl_will_get_specification_p (dw_die_ref old_die, tree decl, bool declaration)
24363 return (old_die && TREE_STATIC (decl) && !declaration
24364 && get_AT_flag (old_die, DW_AT_declaration) == 1);
24367 /* Return true if DECL is a local static. */
24369 static inline bool
24370 local_function_static (tree decl)
24372 gcc_assert (VAR_P (decl));
24373 return TREE_STATIC (decl)
24374 && DECL_CONTEXT (decl)
24375 && TREE_CODE (DECL_CONTEXT (decl)) == FUNCTION_DECL;
24378 /* Return true iff DECL overrides (presumably completes) the type of
24379 OLD_DIE within CONTEXT_DIE. */
24381 static bool
24382 override_type_for_decl_p (tree decl, dw_die_ref old_die,
24383 dw_die_ref context_die)
24385 tree type = TREE_TYPE (decl);
24386 int cv_quals;
24388 if (decl_by_reference_p (decl))
24390 type = TREE_TYPE (type);
24391 cv_quals = TYPE_UNQUALIFIED;
24393 else
24394 cv_quals = decl_quals (decl);
24396 dw_die_ref type_die = modified_type_die (type,
24397 cv_quals | TYPE_QUALS (type),
24398 false,
24399 context_die);
24401 dw_die_ref old_type_die = get_AT_ref (old_die, DW_AT_type);
24403 return type_die != old_type_die;
24406 /* Generate a DIE to represent a declared data object.
24407 Either DECL or ORIGIN must be non-null. */
24409 static void
24410 gen_variable_die (tree decl, tree origin, dw_die_ref context_die)
24412 HOST_WIDE_INT off = 0;
24413 tree com_decl;
24414 tree decl_or_origin = decl ? decl : origin;
24415 tree ultimate_origin;
24416 dw_die_ref var_die;
24417 dw_die_ref old_die = decl ? lookup_decl_die (decl) : NULL;
24418 bool declaration = (DECL_EXTERNAL (decl_or_origin)
24419 || class_or_namespace_scope_p (context_die));
24420 bool specialization_p = false;
24421 bool no_linkage_name = false;
24423 /* While C++ inline static data members have definitions inside of the
24424 class, force the first DIE to be a declaration, then let gen_member_die
24425 reparent it to the class context and call gen_variable_die again
24426 to create the outside of the class DIE for the definition. */
24427 if (!declaration
24428 && old_die == NULL
24429 && decl
24430 && DECL_CONTEXT (decl)
24431 && TYPE_P (DECL_CONTEXT (decl))
24432 && lang_hooks.decls.decl_dwarf_attribute (decl, DW_AT_inline) != -1)
24434 declaration = true;
24435 if (dwarf_version < 5)
24436 no_linkage_name = true;
24439 ultimate_origin = decl_ultimate_origin (decl_or_origin);
24440 if (decl || ultimate_origin)
24441 origin = ultimate_origin;
24442 com_decl = fortran_common (decl_or_origin, &off);
24444 /* Symbol in common gets emitted as a child of the common block, in the form
24445 of a data member. */
24446 if (com_decl)
24448 dw_die_ref com_die;
24449 dw_loc_list_ref loc = NULL;
24450 die_node com_die_arg;
24452 var_die = lookup_decl_die (decl_or_origin);
24453 if (var_die)
24455 if (! early_dwarf && get_AT (var_die, DW_AT_location) == NULL)
24457 loc = loc_list_from_tree (com_decl, off ? 1 : 2, NULL);
24458 if (loc)
24460 if (off)
24462 /* Optimize the common case. */
24463 if (single_element_loc_list_p (loc)
24464 && loc->expr->dw_loc_opc == DW_OP_addr
24465 && loc->expr->dw_loc_next == NULL
24466 && GET_CODE (loc->expr->dw_loc_oprnd1.v.val_addr)
24467 == SYMBOL_REF)
24469 rtx x = loc->expr->dw_loc_oprnd1.v.val_addr;
24470 loc->expr->dw_loc_oprnd1.v.val_addr
24471 = plus_constant (GET_MODE (x), x , off);
24473 else
24474 loc_list_plus_const (loc, off);
24476 add_AT_location_description (var_die, DW_AT_location, loc);
24477 remove_AT (var_die, DW_AT_declaration);
24480 return;
24483 if (common_block_die_table == NULL)
24484 common_block_die_table = hash_table<block_die_hasher>::create_ggc (10);
24486 com_die_arg.decl_id = DECL_UID (com_decl);
24487 com_die_arg.die_parent = context_die;
24488 com_die = common_block_die_table->find (&com_die_arg);
24489 if (! early_dwarf)
24490 loc = loc_list_from_tree (com_decl, 2, NULL);
24491 if (com_die == NULL)
24493 const char *cnam
24494 = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (com_decl));
24495 die_node **slot;
24497 com_die = new_die (DW_TAG_common_block, context_die, decl);
24498 add_name_and_src_coords_attributes (com_die, com_decl);
24499 if (loc)
24501 add_AT_location_description (com_die, DW_AT_location, loc);
24502 /* Avoid sharing the same loc descriptor between
24503 DW_TAG_common_block and DW_TAG_variable. */
24504 loc = loc_list_from_tree (com_decl, 2, NULL);
24506 else if (DECL_EXTERNAL (decl_or_origin))
24507 add_AT_flag (com_die, DW_AT_declaration, 1);
24508 if (want_pubnames ())
24509 add_pubname_string (cnam, com_die); /* ??? needed? */
24510 com_die->decl_id = DECL_UID (com_decl);
24511 slot = common_block_die_table->find_slot (com_die, INSERT);
24512 *slot = com_die;
24514 else if (get_AT (com_die, DW_AT_location) == NULL && loc)
24516 add_AT_location_description (com_die, DW_AT_location, loc);
24517 loc = loc_list_from_tree (com_decl, 2, NULL);
24518 remove_AT (com_die, DW_AT_declaration);
24520 var_die = new_die (DW_TAG_variable, com_die, decl);
24521 add_name_and_src_coords_attributes (var_die, decl_or_origin);
24522 add_type_attribute (var_die, TREE_TYPE (decl_or_origin),
24523 decl_quals (decl_or_origin), false,
24524 context_die);
24525 add_alignment_attribute (var_die, decl);
24526 add_AT_flag (var_die, DW_AT_external, 1);
24527 if (loc)
24529 if (off)
24531 /* Optimize the common case. */
24532 if (single_element_loc_list_p (loc)
24533 && loc->expr->dw_loc_opc == DW_OP_addr
24534 && loc->expr->dw_loc_next == NULL
24535 && GET_CODE (loc->expr->dw_loc_oprnd1.v.val_addr) == SYMBOL_REF)
24537 rtx x = loc->expr->dw_loc_oprnd1.v.val_addr;
24538 loc->expr->dw_loc_oprnd1.v.val_addr
24539 = plus_constant (GET_MODE (x), x, off);
24541 else
24542 loc_list_plus_const (loc, off);
24544 add_AT_location_description (var_die, DW_AT_location, loc);
24546 else if (DECL_EXTERNAL (decl_or_origin))
24547 add_AT_flag (var_die, DW_AT_declaration, 1);
24548 if (decl)
24549 equate_decl_number_to_die (decl, var_die);
24550 return;
24553 if (old_die)
24555 if (declaration)
24557 /* A declaration that has been previously dumped, needs no
24558 further annotations, since it doesn't need location on
24559 the second pass. */
24560 return;
24562 else if (decl_will_get_specification_p (old_die, decl, declaration)
24563 && !get_AT (old_die, DW_AT_specification))
24565 /* Fall-thru so we can make a new variable die along with a
24566 DW_AT_specification. */
24568 else if (origin && old_die->die_parent != context_die)
24570 /* If we will be creating an inlined instance, we need a
24571 new DIE that will get annotated with
24572 DW_AT_abstract_origin. */
24573 gcc_assert (!DECL_ABSTRACT_P (decl));
24575 else
24577 /* If a DIE was dumped early, it still needs location info.
24578 Skip to where we fill the location bits. */
24579 var_die = old_die;
24581 /* ??? In LTRANS we cannot annotate early created variably
24582 modified type DIEs without copying them and adjusting all
24583 references to them. Thus we dumped them again. Also add a
24584 reference to them but beware of -g0 compile and -g link
24585 in which case the reference will be already present. */
24586 tree type = TREE_TYPE (decl_or_origin);
24587 if (in_lto_p
24588 && ! get_AT (var_die, DW_AT_type)
24589 && variably_modified_type_p
24590 (type, decl_function_context (decl_or_origin)))
24592 if (decl_by_reference_p (decl_or_origin))
24593 add_type_attribute (var_die, TREE_TYPE (type),
24594 TYPE_UNQUALIFIED, false, context_die);
24595 else
24596 add_type_attribute (var_die, type, decl_quals (decl_or_origin),
24597 false, context_die);
24600 goto gen_variable_die_location;
24604 /* For static data members, the declaration in the class is supposed
24605 to have DW_TAG_member tag in DWARF{3,4} and we emit it for compatibility
24606 also in DWARF2; the specification should still be DW_TAG_variable
24607 referencing the DW_TAG_member DIE. */
24608 if (declaration && class_scope_p (context_die) && dwarf_version < 5)
24609 var_die = new_die (DW_TAG_member, context_die, decl);
24610 else
24611 var_die = new_die (DW_TAG_variable, context_die, decl);
24613 if (origin != NULL)
24614 add_abstract_origin_attribute (var_die, origin);
24616 /* Loop unrolling can create multiple blocks that refer to the same
24617 static variable, so we must test for the DW_AT_declaration flag.
24619 ??? Loop unrolling/reorder_blocks should perhaps be rewritten to
24620 copy decls and set the DECL_ABSTRACT_P flag on them instead of
24621 sharing them.
24623 ??? Duplicated blocks have been rewritten to use .debug_ranges. */
24624 else if (decl_will_get_specification_p (old_die, decl, declaration))
24626 /* This is a definition of a C++ class level static. */
24627 add_AT_specification (var_die, old_die);
24628 specialization_p = true;
24629 if (DECL_NAME (decl))
24631 expanded_location s = expand_location (DECL_SOURCE_LOCATION (decl));
24632 struct dwarf_file_data * file_index = lookup_filename (s.file);
24634 if (get_AT_file (old_die, DW_AT_decl_file) != file_index)
24635 add_AT_file (var_die, DW_AT_decl_file, file_index);
24637 if (get_AT_unsigned (old_die, DW_AT_decl_line) != (unsigned) s.line)
24638 add_AT_unsigned (var_die, DW_AT_decl_line, s.line);
24640 if (debug_column_info
24641 && s.column
24642 && (get_AT_unsigned (old_die, DW_AT_decl_column)
24643 != (unsigned) s.column))
24644 add_AT_unsigned (var_die, DW_AT_decl_column, s.column);
24646 if (old_die->die_tag == DW_TAG_member)
24647 add_linkage_name (var_die, decl);
24650 else
24651 add_name_and_src_coords_attributes (var_die, decl, no_linkage_name);
24653 if ((origin == NULL && !specialization_p)
24654 || (origin != NULL
24655 && !DECL_ABSTRACT_P (decl_or_origin)
24656 && variably_modified_type_p (TREE_TYPE (decl_or_origin),
24657 decl_function_context
24658 (decl_or_origin)))
24659 || (old_die && specialization_p
24660 && override_type_for_decl_p (decl_or_origin, old_die, context_die)))
24662 tree type = TREE_TYPE (decl_or_origin);
24664 if (decl_by_reference_p (decl_or_origin))
24665 add_type_attribute (var_die, TREE_TYPE (type), TYPE_UNQUALIFIED, false,
24666 context_die);
24667 else
24668 add_type_attribute (var_die, type, decl_quals (decl_or_origin), false,
24669 context_die);
24672 if (origin == NULL && !specialization_p)
24674 if (TREE_PUBLIC (decl))
24675 add_AT_flag (var_die, DW_AT_external, 1);
24677 if (DECL_ARTIFICIAL (decl))
24678 add_AT_flag (var_die, DW_AT_artificial, 1);
24680 add_alignment_attribute (var_die, decl);
24682 add_accessibility_attribute (var_die, decl);
24685 if (declaration)
24686 add_AT_flag (var_die, DW_AT_declaration, 1);
24688 if (decl && (DECL_ABSTRACT_P (decl)
24689 || !old_die || is_declaration_die (old_die)))
24690 equate_decl_number_to_die (decl, var_die);
24692 gen_variable_die_location:
24693 if (! declaration
24694 && (! DECL_ABSTRACT_P (decl_or_origin)
24695 /* Local static vars are shared between all clones/inlines,
24696 so emit DW_AT_location on the abstract DIE if DECL_RTL is
24697 already set. */
24698 || (VAR_P (decl_or_origin)
24699 && TREE_STATIC (decl_or_origin)
24700 && DECL_RTL_SET_P (decl_or_origin))))
24702 if (early_dwarf)
24704 add_pubname (decl_or_origin, var_die);
24705 /* For global register variables, emit DW_AT_location if possible
24706 already during early_dwarf, as late_global_decl won't be usually
24707 called. */
24708 if (DECL_HARD_REGISTER (decl_or_origin)
24709 && TREE_STATIC (decl_or_origin)
24710 && !decl_by_reference_p (decl_or_origin)
24711 && !get_AT (var_die, DW_AT_location)
24712 && !get_AT (var_die, DW_AT_const_value)
24713 && DECL_RTL_SET_P (decl_or_origin)
24714 && REG_P (DECL_RTL (decl_or_origin)))
24716 dw_loc_descr_ref descr
24717 = reg_loc_descriptor (DECL_RTL (decl_or_origin),
24718 VAR_INIT_STATUS_INITIALIZED);
24719 if (descr)
24720 add_AT_loc (var_die, DW_AT_location, descr);
24723 else
24724 add_location_or_const_value_attribute (var_die, decl_or_origin,
24725 decl == NULL);
24727 else
24728 tree_add_const_value_attribute_for_decl (var_die, decl_or_origin);
24730 if ((dwarf_version >= 4 || !dwarf_strict)
24731 && lang_hooks.decls.decl_dwarf_attribute (decl_or_origin,
24732 DW_AT_const_expr) == 1
24733 && !get_AT (var_die, DW_AT_const_expr)
24734 && !specialization_p)
24735 add_AT_flag (var_die, DW_AT_const_expr, 1);
24737 if (!dwarf_strict)
24739 int inl = lang_hooks.decls.decl_dwarf_attribute (decl_or_origin,
24740 DW_AT_inline);
24741 if (inl != -1
24742 && !get_AT (var_die, DW_AT_inline)
24743 && !specialization_p)
24744 add_AT_unsigned (var_die, DW_AT_inline, inl);
24748 /* Generate a DIE to represent a named constant. */
24750 static void
24751 gen_const_die (tree decl, dw_die_ref context_die)
24753 dw_die_ref const_die;
24754 tree type = TREE_TYPE (decl);
24756 const_die = lookup_decl_die (decl);
24757 if (const_die)
24758 return;
24760 const_die = new_die (DW_TAG_constant, context_die, decl);
24761 equate_decl_number_to_die (decl, const_die);
24762 add_name_and_src_coords_attributes (const_die, decl);
24763 add_type_attribute (const_die, type, TYPE_QUAL_CONST, false, context_die);
24764 if (TREE_PUBLIC (decl))
24765 add_AT_flag (const_die, DW_AT_external, 1);
24766 if (DECL_ARTIFICIAL (decl))
24767 add_AT_flag (const_die, DW_AT_artificial, 1);
24768 tree_add_const_value_attribute_for_decl (const_die, decl);
24771 /* Generate a DIE to represent a label identifier. */
24773 static void
24774 gen_label_die (tree decl, dw_die_ref context_die)
24776 tree origin = decl_ultimate_origin (decl);
24777 dw_die_ref lbl_die = lookup_decl_die (decl);
24778 rtx insn;
24779 char label[MAX_ARTIFICIAL_LABEL_BYTES];
24781 if (!lbl_die)
24783 lbl_die = new_die (DW_TAG_label, context_die, decl);
24784 equate_decl_number_to_die (decl, lbl_die);
24786 if (origin != NULL)
24787 add_abstract_origin_attribute (lbl_die, origin);
24788 else
24789 add_name_and_src_coords_attributes (lbl_die, decl);
24792 if (DECL_ABSTRACT_P (decl))
24793 equate_decl_number_to_die (decl, lbl_die);
24794 else if (! early_dwarf)
24796 insn = DECL_RTL_IF_SET (decl);
24798 /* Deleted labels are programmer specified labels which have been
24799 eliminated because of various optimizations. We still emit them
24800 here so that it is possible to put breakpoints on them. */
24801 if (insn
24802 && (LABEL_P (insn)
24803 || ((NOTE_P (insn)
24804 && NOTE_KIND (insn) == NOTE_INSN_DELETED_LABEL))))
24806 /* When optimization is enabled (via -O) some parts of the compiler
24807 (e.g. jump.cc and cse.cc) may try to delete CODE_LABEL insns which
24808 represent source-level labels which were explicitly declared by
24809 the user. This really shouldn't be happening though, so catch
24810 it if it ever does happen. */
24811 gcc_assert (!as_a<rtx_insn *> (insn)->deleted ());
24813 ASM_GENERATE_INTERNAL_LABEL (label, "L", CODE_LABEL_NUMBER (insn));
24814 add_AT_lbl_id (lbl_die, DW_AT_low_pc, label);
24816 else if (insn
24817 && NOTE_P (insn)
24818 && NOTE_KIND (insn) == NOTE_INSN_DELETED_DEBUG_LABEL
24819 && CODE_LABEL_NUMBER (insn) != -1)
24821 ASM_GENERATE_INTERNAL_LABEL (label, "LDL", CODE_LABEL_NUMBER (insn));
24822 add_AT_lbl_id (lbl_die, DW_AT_low_pc, label);
24827 /* A helper function for gen_inlined_subroutine_die. Add source coordinate
24828 attributes to the DIE for a block STMT, to describe where the inlined
24829 function was called from. This is similar to add_src_coords_attributes. */
24831 static inline void
24832 add_call_src_coords_attributes (tree stmt, dw_die_ref die)
24834 /* We can end up with BUILTINS_LOCATION here. */
24835 if (RESERVED_LOCATION_P (BLOCK_SOURCE_LOCATION (stmt)))
24836 return;
24838 location_t locus = BLOCK_SOURCE_LOCATION (stmt);
24839 expanded_location s = expand_location (locus);
24841 if (dwarf_version >= 3 || !dwarf_strict)
24843 add_AT_file (die, DW_AT_call_file, lookup_filename (s.file));
24844 add_AT_unsigned (die, DW_AT_call_line, s.line);
24845 if (debug_column_info && s.column)
24846 add_AT_unsigned (die, DW_AT_call_column, s.column);
24847 unsigned discr = get_discriminator_from_loc (locus);
24848 if (discr != 0)
24849 add_AT_unsigned (die, DW_AT_GNU_discriminator, discr);
24854 /* A helper function for gen_lexical_block_die and gen_inlined_subroutine_die.
24855 Add low_pc and high_pc attributes to the DIE for a block STMT. */
24857 static inline void
24858 add_high_low_attributes (tree stmt, dw_die_ref die)
24860 char label[MAX_ARTIFICIAL_LABEL_BYTES];
24862 if (inline_entry_data **iedp
24863 = !inline_entry_data_table ? NULL
24864 : inline_entry_data_table->find_slot_with_hash (stmt,
24865 htab_hash_pointer (stmt),
24866 NO_INSERT))
24868 inline_entry_data *ied = *iedp;
24869 gcc_assert (MAY_HAVE_DEBUG_MARKER_INSNS);
24870 gcc_assert (debug_inline_points);
24871 gcc_assert (inlined_function_outer_scope_p (stmt));
24873 ASM_GENERATE_INTERNAL_LABEL (label, ied->label_pfx, ied->label_num);
24874 add_AT_lbl_id (die, DW_AT_entry_pc, label);
24876 if (debug_variable_location_views && !ZERO_VIEW_P (ied->view)
24877 && !dwarf_strict)
24879 if (!output_asm_line_debug_info ())
24880 add_AT_unsigned (die, DW_AT_GNU_entry_view, ied->view);
24881 else
24883 ASM_GENERATE_INTERNAL_LABEL (label, "LVU", ied->view);
24884 /* FIXME: this will resolve to a small number. Could we
24885 possibly emit smaller data? Ideally we'd emit a
24886 uleb128, but that would make the size of DIEs
24887 impossible for the compiler to compute, since it's
24888 the assembler that computes the value of the view
24889 label in this case. Ideally, we'd have a single form
24890 encompassing both the address and the view, and
24891 indirecting them through a table might make things
24892 easier, but even that would be more wasteful,
24893 space-wise, than what we have now. */
24894 add_AT_symview (die, DW_AT_GNU_entry_view, label);
24898 inline_entry_data_table->clear_slot (iedp);
24901 if (BLOCK_FRAGMENT_CHAIN (stmt)
24902 && (dwarf_version >= 3 || !dwarf_strict))
24904 tree chain, superblock = NULL_TREE;
24905 dw_die_ref pdie;
24906 dw_attr_node *attr = NULL;
24908 if (!debug_inline_points && inlined_function_outer_scope_p (stmt))
24910 ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_BEGIN_LABEL,
24911 BLOCK_NUMBER (stmt));
24912 add_AT_lbl_id (die, DW_AT_entry_pc, label);
24915 /* Optimize duplicate .debug_ranges lists or even tails of
24916 lists. If this BLOCK has same ranges as its supercontext,
24917 lookup DW_AT_ranges attribute in the supercontext (and
24918 recursively so), verify that the ranges_table contains the
24919 right values and use it instead of adding a new .debug_range. */
24920 for (chain = stmt, pdie = die;
24921 BLOCK_SAME_RANGE (chain);
24922 chain = BLOCK_SUPERCONTEXT (chain))
24924 dw_attr_node *new_attr;
24926 pdie = pdie->die_parent;
24927 if (pdie == NULL)
24928 break;
24929 if (BLOCK_SUPERCONTEXT (chain) == NULL_TREE)
24930 break;
24931 new_attr = get_AT (pdie, DW_AT_ranges);
24932 if (new_attr == NULL
24933 || new_attr->dw_attr_val.val_class != dw_val_class_range_list)
24934 break;
24935 attr = new_attr;
24936 superblock = BLOCK_SUPERCONTEXT (chain);
24938 if (attr != NULL
24939 && ((*ranges_table)[attr->dw_attr_val.v.val_offset].num
24940 == (int)BLOCK_NUMBER (superblock))
24941 && BLOCK_FRAGMENT_CHAIN (superblock))
24943 unsigned long off = attr->dw_attr_val.v.val_offset;
24944 unsigned long supercnt = 0, thiscnt = 0;
24945 for (chain = BLOCK_FRAGMENT_CHAIN (superblock);
24946 chain; chain = BLOCK_FRAGMENT_CHAIN (chain))
24948 ++supercnt;
24949 gcc_checking_assert ((*ranges_table)[off + supercnt].num
24950 == (int)BLOCK_NUMBER (chain));
24952 gcc_checking_assert ((*ranges_table)[off + supercnt + 1].num == 0);
24953 for (chain = BLOCK_FRAGMENT_CHAIN (stmt);
24954 chain; chain = BLOCK_FRAGMENT_CHAIN (chain))
24955 ++thiscnt;
24956 gcc_assert (supercnt >= thiscnt);
24957 add_AT_range_list (die, DW_AT_ranges, off + supercnt - thiscnt,
24958 false);
24959 note_rnglist_head (off + supercnt - thiscnt);
24960 return;
24963 unsigned int offset = add_ranges (stmt, true);
24964 add_AT_range_list (die, DW_AT_ranges, offset, false);
24965 note_rnglist_head (offset);
24967 bool prev_in_cold = BLOCK_IN_COLD_SECTION_P (stmt);
24968 chain = BLOCK_FRAGMENT_CHAIN (stmt);
24971 add_ranges (chain, prev_in_cold != BLOCK_IN_COLD_SECTION_P (chain));
24972 prev_in_cold = BLOCK_IN_COLD_SECTION_P (chain);
24973 chain = BLOCK_FRAGMENT_CHAIN (chain);
24975 while (chain);
24976 add_ranges (NULL);
24978 else
24980 char label_high[MAX_ARTIFICIAL_LABEL_BYTES];
24981 ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_BEGIN_LABEL,
24982 BLOCK_NUMBER (stmt));
24983 ASM_GENERATE_INTERNAL_LABEL (label_high, BLOCK_END_LABEL,
24984 BLOCK_NUMBER (stmt));
24985 add_AT_low_high_pc (die, label, label_high, false);
24989 /* Generate a DIE for a lexical block. */
24991 static void
24992 gen_lexical_block_die (tree stmt, dw_die_ref context_die)
24994 dw_die_ref old_die = lookup_block_die (stmt);
24995 dw_die_ref stmt_die = NULL;
24996 if (!old_die)
24998 stmt_die = new_die (DW_TAG_lexical_block, context_die, stmt);
24999 equate_block_to_die (stmt, stmt_die);
25002 if (BLOCK_ABSTRACT_ORIGIN (stmt))
25004 /* If this is an inlined or conrecte instance, create a new lexical
25005 die for anything below to attach DW_AT_abstract_origin to. */
25006 if (old_die)
25007 stmt_die = new_die (DW_TAG_lexical_block, context_die, stmt);
25009 tree origin = block_ultimate_origin (stmt);
25010 if (origin != NULL_TREE && (origin != stmt || old_die))
25011 add_abstract_origin_attribute (stmt_die, origin);
25013 old_die = NULL;
25016 if (old_die)
25017 stmt_die = old_die;
25019 /* A non abstract block whose blocks have already been reordered
25020 should have the instruction range for this block. If so, set the
25021 high/low attributes. */
25022 if (!early_dwarf && TREE_ASM_WRITTEN (stmt))
25024 gcc_assert (stmt_die);
25025 add_high_low_attributes (stmt, stmt_die);
25028 decls_for_scope (stmt, stmt_die);
25031 /* Generate a DIE for an inlined subprogram. */
25033 static void
25034 gen_inlined_subroutine_die (tree stmt, dw_die_ref context_die)
25036 tree decl = block_ultimate_origin (stmt);
25038 /* Make sure any inlined functions are known to be inlineable. */
25039 gcc_checking_assert (DECL_ABSTRACT_P (decl)
25040 || cgraph_function_possibly_inlined_p (decl));
25042 dw_die_ref subr_die = new_die (DW_TAG_inlined_subroutine, context_die, stmt);
25044 if (call_arg_locations || debug_inline_points)
25045 equate_block_to_die (stmt, subr_die);
25046 add_abstract_origin_attribute (subr_die, decl);
25047 if (TREE_ASM_WRITTEN (stmt))
25048 add_high_low_attributes (stmt, subr_die);
25049 add_call_src_coords_attributes (stmt, subr_die);
25051 /* The inliner creates an extra BLOCK for the parameter setup,
25052 we want to merge that with the actual outermost BLOCK of the
25053 inlined function to avoid duplicate locals in consumers.
25054 Do that by doing the recursion to subblocks on the single subblock
25055 of STMT. */
25056 bool unwrap_one = false;
25057 if (BLOCK_SUBBLOCKS (stmt) && !BLOCK_CHAIN (BLOCK_SUBBLOCKS (stmt)))
25059 tree origin = block_ultimate_origin (BLOCK_SUBBLOCKS (stmt));
25060 if (origin
25061 && TREE_CODE (origin) == BLOCK
25062 && BLOCK_SUPERCONTEXT (origin) == decl)
25063 unwrap_one = true;
25065 decls_for_scope (stmt, subr_die, !unwrap_one);
25066 if (unwrap_one)
25067 decls_for_scope (BLOCK_SUBBLOCKS (stmt), subr_die);
25070 /* Generate a DIE for a field in a record, or structure. CTX is required: see
25071 the comment for VLR_CONTEXT. */
25073 static void
25074 gen_field_die (tree decl, struct vlr_context *ctx, dw_die_ref context_die)
25076 dw_die_ref decl_die;
25078 if (TREE_TYPE (decl) == error_mark_node)
25079 return;
25081 decl_die = new_die (DW_TAG_member, context_die, decl);
25082 add_name_and_src_coords_attributes (decl_die, decl);
25083 add_type_attribute (decl_die, member_declared_type (decl), decl_quals (decl),
25084 TYPE_REVERSE_STORAGE_ORDER (DECL_FIELD_CONTEXT (decl)),
25085 context_die);
25087 if (DECL_BIT_FIELD_TYPE (decl))
25089 add_byte_size_attribute (decl_die, decl);
25090 add_bit_size_attribute (decl_die, decl);
25091 add_bit_offset_attribute (decl_die, decl);
25094 add_alignment_attribute (decl_die, decl);
25096 if (TREE_CODE (DECL_FIELD_CONTEXT (decl)) != UNION_TYPE)
25097 add_data_member_location_attribute (decl_die, decl, ctx);
25099 if (DECL_ARTIFICIAL (decl))
25100 add_AT_flag (decl_die, DW_AT_artificial, 1);
25102 add_accessibility_attribute (decl_die, decl);
25104 /* Equate decl number to die, so that we can look up this decl later on. */
25105 equate_decl_number_to_die (decl, decl_die);
25108 /* Generate a DIE for a pointer to a member type. TYPE can be an
25109 OFFSET_TYPE, for a pointer to data member, or a RECORD_TYPE, for a
25110 pointer to member function. */
25112 static void
25113 gen_ptr_to_mbr_type_die (tree type, dw_die_ref context_die)
25115 if (lookup_type_die (type))
25116 return;
25118 dw_die_ref ptr_die = new_die (DW_TAG_ptr_to_member_type,
25119 scope_die_for (type, context_die), type);
25121 equate_type_number_to_die (type, ptr_die);
25122 add_AT_die_ref (ptr_die, DW_AT_containing_type,
25123 lookup_type_die (TYPE_OFFSET_BASETYPE (type)));
25124 add_type_attribute (ptr_die, TREE_TYPE (type), TYPE_UNQUALIFIED, false,
25125 context_die);
25126 add_alignment_attribute (ptr_die, type);
25128 if (TREE_CODE (TREE_TYPE (type)) != FUNCTION_TYPE
25129 && TREE_CODE (TREE_TYPE (type)) != METHOD_TYPE)
25131 dw_loc_descr_ref op = new_loc_descr (DW_OP_plus, 0, 0);
25132 add_AT_loc (ptr_die, DW_AT_use_location, op);
25136 static char *producer_string;
25138 /* Given a C and/or C++ language/version string return the "highest".
25139 C++ is assumed to be "higher" than C in this case. Used for merging
25140 LTO translation unit languages. */
25141 static const char *
25142 highest_c_language (const char *lang1, const char *lang2)
25144 if (strcmp ("GNU C++26", lang1) == 0 || strcmp ("GNU C++26", lang2) == 0)
25145 return "GNU C++26";
25146 if (strcmp ("GNU C++23", lang1) == 0 || strcmp ("GNU C++23", lang2) == 0)
25147 return "GNU C++23";
25148 if (strcmp ("GNU C++20", lang1) == 0 || strcmp ("GNU C++20", lang2) == 0)
25149 return "GNU C++20";
25150 if (strcmp ("GNU C++17", lang1) == 0 || strcmp ("GNU C++17", lang2) == 0)
25151 return "GNU C++17";
25152 if (strcmp ("GNU C++14", lang1) == 0 || strcmp ("GNU C++14", lang2) == 0)
25153 return "GNU C++14";
25154 if (strcmp ("GNU C++11", lang1) == 0 || strcmp ("GNU C++11", lang2) == 0)
25155 return "GNU C++11";
25156 if (strcmp ("GNU C++98", lang1) == 0 || strcmp ("GNU C++98", lang2) == 0)
25157 return "GNU C++98";
25159 if (strcmp ("GNU C2X", lang1) == 0 || strcmp ("GNU C2X", lang2) == 0)
25160 return "GNU C2X";
25161 if (strcmp ("GNU C17", lang1) == 0 || strcmp ("GNU C17", lang2) == 0)
25162 return "GNU C17";
25163 if (strcmp ("GNU C11", lang1) == 0 || strcmp ("GNU C11", lang2) == 0)
25164 return "GNU C11";
25165 if (strcmp ("GNU C99", lang1) == 0 || strcmp ("GNU C99", lang2) == 0)
25166 return "GNU C99";
25167 if (strcmp ("GNU C89", lang1) == 0 || strcmp ("GNU C89", lang2) == 0)
25168 return "GNU C89";
25170 gcc_unreachable ();
25174 /* Generate the DIE for the compilation unit. */
25176 static dw_die_ref
25177 gen_compile_unit_die (const char *filename)
25179 dw_die_ref die;
25180 const char *language_string = lang_hooks.name;
25181 int language;
25183 die = new_die (DW_TAG_compile_unit, NULL, NULL);
25185 if (filename)
25187 add_filename_attribute (die, filename);
25188 /* Don't add cwd for <built-in>. */
25189 if (filename[0] != '<')
25190 add_comp_dir_attribute (die);
25193 add_AT_string (die, DW_AT_producer, producer_string ? producer_string : "");
25195 /* If our producer is LTO try to figure out a common language to use
25196 from the global list of translation units. */
25197 if (strcmp (language_string, "GNU GIMPLE") == 0)
25199 unsigned i;
25200 tree t;
25201 const char *common_lang = NULL;
25203 FOR_EACH_VEC_SAFE_ELT (all_translation_units, i, t)
25205 if (!TRANSLATION_UNIT_LANGUAGE (t))
25206 continue;
25207 if (!common_lang)
25208 common_lang = TRANSLATION_UNIT_LANGUAGE (t);
25209 else if (strcmp (common_lang, TRANSLATION_UNIT_LANGUAGE (t)) == 0)
25211 else if (startswith (common_lang, "GNU C")
25212 && startswith (TRANSLATION_UNIT_LANGUAGE (t), "GNU C"))
25213 /* Mixing C and C++ is ok, use C++ in that case. */
25214 common_lang = highest_c_language (common_lang,
25215 TRANSLATION_UNIT_LANGUAGE (t));
25216 else
25218 /* Fall back to C. */
25219 common_lang = NULL;
25220 break;
25224 if (common_lang)
25225 language_string = common_lang;
25228 language = DW_LANG_C;
25229 if (startswith (language_string, "GNU C")
25230 && ISDIGIT (language_string[5]))
25232 language = DW_LANG_C89;
25233 if (dwarf_version >= 3 || !dwarf_strict)
25235 if (strcmp (language_string, "GNU C89") != 0)
25236 language = DW_LANG_C99;
25238 if (dwarf_version >= 5 /* || !dwarf_strict */)
25239 if (strcmp (language_string, "GNU C11") == 0
25240 || strcmp (language_string, "GNU C17") == 0
25241 || strcmp (language_string, "GNU C2X") == 0)
25242 language = DW_LANG_C11;
25245 else if (startswith (language_string, "GNU C++"))
25247 language = DW_LANG_C_plus_plus;
25248 if (dwarf_version >= 5 /* || !dwarf_strict */)
25250 if (strcmp (language_string, "GNU C++11") == 0)
25251 language = DW_LANG_C_plus_plus_11;
25252 else if (strcmp (language_string, "GNU C++14") == 0)
25253 language = DW_LANG_C_plus_plus_14;
25254 else if (strcmp (language_string, "GNU C++17") == 0
25255 || strcmp (language_string, "GNU C++20") == 0
25256 || strcmp (language_string, "GNU C++23") == 0
25257 || strcmp (language_string, "GNU C++26") == 0)
25258 /* For now. */
25259 language = DW_LANG_C_plus_plus_14;
25262 else if (strcmp (language_string, "GNU F77") == 0)
25263 language = DW_LANG_Fortran77;
25264 else if (strcmp (language_string, "GNU Modula-2") == 0)
25265 language = DW_LANG_Modula2;
25266 else if (dwarf_version >= 3 || !dwarf_strict)
25268 if (strcmp (language_string, "GNU Ada") == 0)
25269 language = DW_LANG_Ada95;
25270 else if (startswith (language_string, "GNU Fortran"))
25272 language = DW_LANG_Fortran95;
25273 if (dwarf_version >= 5 /* || !dwarf_strict */)
25275 if (strcmp (language_string, "GNU Fortran2003") == 0)
25276 language = DW_LANG_Fortran03;
25277 else if (strcmp (language_string, "GNU Fortran2008") == 0)
25278 language = DW_LANG_Fortran08;
25281 else if (strcmp (language_string, "GNU Objective-C") == 0)
25282 language = DW_LANG_ObjC;
25283 else if (strcmp (language_string, "GNU Objective-C++") == 0)
25284 language = DW_LANG_ObjC_plus_plus;
25285 else if (strcmp (language_string, "GNU D") == 0)
25286 language = DW_LANG_D;
25287 else if (dwarf_version >= 5 || !dwarf_strict)
25289 if (strcmp (language_string, "GNU Go") == 0)
25290 language = DW_LANG_Go;
25291 else if (strcmp (language_string, "GNU Rust") == 0)
25292 language = DW_LANG_Rust;
25295 /* Use a degraded Fortran setting in strict DWARF2 so is_fortran works. */
25296 else if (startswith (language_string, "GNU Fortran"))
25297 language = DW_LANG_Fortran90;
25298 /* Likewise for Ada. */
25299 else if (strcmp (language_string, "GNU Ada") == 0)
25300 language = DW_LANG_Ada83;
25302 add_AT_unsigned (die, DW_AT_language, language);
25304 switch (language)
25306 case DW_LANG_Fortran77:
25307 case DW_LANG_Fortran90:
25308 case DW_LANG_Fortran95:
25309 case DW_LANG_Fortran03:
25310 case DW_LANG_Fortran08:
25311 /* Fortran has case insensitive identifiers and the front-end
25312 lowercases everything. */
25313 add_AT_unsigned (die, DW_AT_identifier_case, DW_ID_down_case);
25314 break;
25315 default:
25316 /* The default DW_ID_case_sensitive doesn't need to be specified. */
25317 break;
25319 return die;
25322 /* Generate the DIE for a base class. */
25324 static void
25325 gen_inheritance_die (tree binfo, tree access, tree type,
25326 dw_die_ref context_die)
25328 dw_die_ref die = new_die (DW_TAG_inheritance, context_die, binfo);
25329 struct vlr_context ctx = { type, NULL };
25331 add_type_attribute (die, BINFO_TYPE (binfo), TYPE_UNQUALIFIED, false,
25332 context_die);
25333 add_data_member_location_attribute (die, binfo, &ctx);
25335 if (BINFO_VIRTUAL_P (binfo))
25336 add_AT_unsigned (die, DW_AT_virtuality, DW_VIRTUALITY_virtual);
25338 /* In DWARF3+ the default is DW_ACCESS_private only in DW_TAG_class_type
25339 children, otherwise the default is DW_ACCESS_public. In DWARF2
25340 the default has always been DW_ACCESS_private. */
25341 if (access == access_public_node)
25343 if (dwarf_version == 2
25344 || context_die->die_tag == DW_TAG_class_type)
25345 add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_public);
25347 else if (access == access_protected_node)
25348 add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_protected);
25349 else if (dwarf_version > 2
25350 && context_die->die_tag != DW_TAG_class_type)
25351 add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_private);
25354 /* Return whether DECL is a FIELD_DECL that represents the variant part of a
25355 structure. */
25357 static bool
25358 is_variant_part (tree decl)
25360 return (TREE_CODE (decl) == FIELD_DECL
25361 && TREE_CODE (TREE_TYPE (decl)) == QUAL_UNION_TYPE);
25364 /* Check that OPERAND is a reference to a field in STRUCT_TYPE. If it is,
25365 return the FIELD_DECL. Return NULL_TREE otherwise. */
25367 static tree
25368 analyze_discr_in_predicate (tree operand, tree struct_type)
25370 while (CONVERT_EXPR_P (operand))
25371 operand = TREE_OPERAND (operand, 0);
25373 /* Match field access to members of struct_type only. */
25374 if (TREE_CODE (operand) == COMPONENT_REF
25375 && TREE_CODE (TREE_OPERAND (operand, 0)) == PLACEHOLDER_EXPR
25376 && TREE_TYPE (TREE_OPERAND (operand, 0)) == struct_type
25377 && TREE_CODE (TREE_OPERAND (operand, 1)) == FIELD_DECL)
25378 return TREE_OPERAND (operand, 1);
25379 else
25380 return NULL_TREE;
25383 /* Check that SRC is a constant integer that can be represented as a native
25384 integer constant (either signed or unsigned). If so, store it into DEST and
25385 return true. Return false otherwise. */
25387 static bool
25388 get_discr_value (tree src, dw_discr_value *dest)
25390 tree discr_type = TREE_TYPE (src);
25392 if (lang_hooks.types.get_debug_type)
25394 tree debug_type = lang_hooks.types.get_debug_type (discr_type);
25395 if (debug_type != NULL)
25396 discr_type = debug_type;
25399 if (TREE_CODE (src) != INTEGER_CST || !INTEGRAL_TYPE_P (discr_type))
25400 return false;
25402 /* Signedness can vary between the original type and the debug type. This
25403 can happen for character types in Ada for instance: the character type
25404 used for code generation can be signed, to be compatible with the C one,
25405 but from a debugger point of view, it must be unsigned. */
25406 bool is_orig_unsigned = TYPE_UNSIGNED (TREE_TYPE (src));
25407 bool is_debug_unsigned = TYPE_UNSIGNED (discr_type);
25409 if (is_orig_unsigned != is_debug_unsigned)
25410 src = fold_convert (discr_type, src);
25412 if (!(is_debug_unsigned ? tree_fits_uhwi_p (src) : tree_fits_shwi_p (src)))
25413 return false;
25415 dest->pos = is_debug_unsigned;
25416 if (is_debug_unsigned)
25417 dest->v.uval = tree_to_uhwi (src);
25418 else
25419 dest->v.sval = tree_to_shwi (src);
25421 return true;
25424 /* Try to extract synthetic properties out of VARIANT_PART_DECL, which is a
25425 FIELD_DECL in STRUCT_TYPE that represents a variant part. If unsuccessful,
25426 store NULL_TREE in DISCR_DECL. Otherwise:
25428 - store the discriminant field in STRUCT_TYPE that controls the variant
25429 part to *DISCR_DECL
25431 - put in *DISCR_LISTS_P an array where for each variant, the item
25432 represents the corresponding matching list of discriminant values.
25434 - put in *DISCR_LISTS_LENGTH the number of variants, which is the size of
25435 the above array.
25437 Note that when the array is allocated (i.e. when the analysis is
25438 successful), it is up to the caller to free the array. */
25440 static void
25441 analyze_variants_discr (tree variant_part_decl,
25442 tree struct_type,
25443 tree *discr_decl,
25444 dw_discr_list_ref **discr_lists_p,
25445 unsigned *discr_lists_length)
25447 tree variant_part_type = TREE_TYPE (variant_part_decl);
25448 tree variant;
25449 dw_discr_list_ref *discr_lists;
25450 unsigned i;
25452 /* Compute how many variants there are in this variant part. */
25453 *discr_lists_length = 0;
25454 for (variant = TYPE_FIELDS (variant_part_type);
25455 variant != NULL_TREE;
25456 variant = DECL_CHAIN (variant))
25457 ++*discr_lists_length;
25459 *discr_decl = NULL_TREE;
25460 *discr_lists_p
25461 = (dw_discr_list_ref *) xcalloc (*discr_lists_length,
25462 sizeof (**discr_lists_p));
25463 discr_lists = *discr_lists_p;
25465 /* And then analyze all variants to extract discriminant information for all
25466 of them. This analysis is conservative: as soon as we detect something we
25467 do not support, abort everything and pretend we found nothing. */
25468 for (variant = TYPE_FIELDS (variant_part_type), i = 0;
25469 variant != NULL_TREE;
25470 variant = DECL_CHAIN (variant), ++i)
25472 tree match_expr = DECL_QUALIFIER (variant);
25474 /* Now, try to analyze the predicate and deduce a discriminant for
25475 it. */
25476 if (match_expr == boolean_true_node)
25477 /* Typically happens for the default variant: it matches all cases that
25478 previous variants rejected. Don't output any matching value for
25479 this one. */
25480 continue;
25482 /* The following loop tries to iterate over each discriminant
25483 possibility: single values or ranges. */
25484 while (match_expr != NULL_TREE)
25486 tree next_round_match_expr;
25487 tree candidate_discr = NULL_TREE;
25488 dw_discr_list_ref new_node = NULL;
25490 /* Possibilities are matched one after the other by nested
25491 TRUTH_ORIF_EXPR expressions. Process the current possibility and
25492 continue with the rest at next iteration. */
25493 if (TREE_CODE (match_expr) == TRUTH_ORIF_EXPR)
25495 next_round_match_expr = TREE_OPERAND (match_expr, 0);
25496 match_expr = TREE_OPERAND (match_expr, 1);
25498 else
25499 next_round_match_expr = NULL_TREE;
25501 if (match_expr == boolean_false_node)
25502 /* This sub-expression matches nothing: just wait for the next
25503 one. */
25506 else if (TREE_CODE (match_expr) == EQ_EXPR)
25508 /* We are matching: <discr_field> == <integer_cst>
25509 This sub-expression matches a single value. */
25510 tree integer_cst = TREE_OPERAND (match_expr, 1);
25512 candidate_discr
25513 = analyze_discr_in_predicate (TREE_OPERAND (match_expr, 0),
25514 struct_type);
25516 new_node = ggc_cleared_alloc<dw_discr_list_node> ();
25517 if (!get_discr_value (integer_cst,
25518 &new_node->dw_discr_lower_bound))
25519 goto abort;
25520 new_node->dw_discr_range = false;
25523 else if (TREE_CODE (match_expr) == TRUTH_ANDIF_EXPR)
25525 /* We are matching:
25526 <discr_field> > <integer_cst>
25527 && <discr_field> < <integer_cst>.
25528 This sub-expression matches the range of values between the
25529 two matched integer constants. Note that comparisons can be
25530 inclusive or exclusive. */
25531 tree candidate_discr_1, candidate_discr_2;
25532 tree lower_cst, upper_cst;
25533 bool lower_cst_included, upper_cst_included;
25534 tree lower_op = TREE_OPERAND (match_expr, 0);
25535 tree upper_op = TREE_OPERAND (match_expr, 1);
25537 /* When the comparison is exclusive, the integer constant is not
25538 the discriminant range bound we are looking for: we will have
25539 to increment or decrement it. */
25540 if (TREE_CODE (lower_op) == GE_EXPR)
25541 lower_cst_included = true;
25542 else if (TREE_CODE (lower_op) == GT_EXPR)
25543 lower_cst_included = false;
25544 else
25545 goto abort;
25547 if (TREE_CODE (upper_op) == LE_EXPR)
25548 upper_cst_included = true;
25549 else if (TREE_CODE (upper_op) == LT_EXPR)
25550 upper_cst_included = false;
25551 else
25552 goto abort;
25554 /* Extract the discriminant from the first operand and check it
25555 is consistant with the same analysis in the second
25556 operand. */
25557 candidate_discr_1
25558 = analyze_discr_in_predicate (TREE_OPERAND (lower_op, 0),
25559 struct_type);
25560 candidate_discr_2
25561 = analyze_discr_in_predicate (TREE_OPERAND (upper_op, 0),
25562 struct_type);
25563 if (candidate_discr_1 == candidate_discr_2)
25564 candidate_discr = candidate_discr_1;
25565 else
25566 goto abort;
25568 /* Extract bounds from both. */
25569 new_node = ggc_cleared_alloc<dw_discr_list_node> ();
25570 lower_cst = TREE_OPERAND (lower_op, 1);
25571 upper_cst = TREE_OPERAND (upper_op, 1);
25573 if (!lower_cst_included)
25574 lower_cst
25575 = fold_build2 (PLUS_EXPR, TREE_TYPE (lower_cst), lower_cst,
25576 build_int_cst (TREE_TYPE (lower_cst), 1));
25577 if (!upper_cst_included)
25578 upper_cst
25579 = fold_build2 (MINUS_EXPR, TREE_TYPE (upper_cst), upper_cst,
25580 build_int_cst (TREE_TYPE (upper_cst), 1));
25582 if (!get_discr_value (lower_cst,
25583 &new_node->dw_discr_lower_bound)
25584 || !get_discr_value (upper_cst,
25585 &new_node->dw_discr_upper_bound))
25586 goto abort;
25588 new_node->dw_discr_range = true;
25591 else if ((candidate_discr
25592 = analyze_discr_in_predicate (match_expr, struct_type))
25593 && (TREE_TYPE (candidate_discr) == boolean_type_node
25594 || TREE_TYPE (TREE_TYPE (candidate_discr))
25595 == boolean_type_node))
25597 /* We are matching: <discr_field> for a boolean discriminant.
25598 This sub-expression matches boolean_true_node. */
25599 new_node = ggc_cleared_alloc<dw_discr_list_node> ();
25600 if (!get_discr_value (boolean_true_node,
25601 &new_node->dw_discr_lower_bound))
25602 goto abort;
25603 new_node->dw_discr_range = false;
25606 else
25607 /* Unsupported sub-expression: we cannot determine the set of
25608 matching discriminant values. Abort everything. */
25609 goto abort;
25611 /* If the discriminant info is not consistant with what we saw so
25612 far, consider the analysis failed and abort everything. */
25613 if (candidate_discr == NULL_TREE
25614 || (*discr_decl != NULL_TREE && candidate_discr != *discr_decl))
25615 goto abort;
25616 else
25617 *discr_decl = candidate_discr;
25619 if (new_node != NULL)
25621 new_node->dw_discr_next = discr_lists[i];
25622 discr_lists[i] = new_node;
25624 match_expr = next_round_match_expr;
25628 /* If we reach this point, we could match everything we were interested
25629 in. */
25630 return;
25632 abort:
25633 /* Clean all data structure and return no result. */
25634 free (*discr_lists_p);
25635 *discr_lists_p = NULL;
25636 *discr_decl = NULL_TREE;
25639 /* Generate a DIE to represent VARIANT_PART_DECL, a variant part that is part
25640 of STRUCT_TYPE, a record type. This new DIE is emitted as the next child
25641 under CONTEXT_DIE.
25643 Variant parts are supposed to be implemented as a FIELD_DECL whose type is a
25644 QUAL_UNION_TYPE: this is the VARIANT_PART_DECL parameter. The members for
25645 this type, which are record types, represent the available variants and each
25646 has a DECL_QUALIFIER attribute. The discriminant and the discriminant
25647 values are inferred from these attributes.
25649 In trees, the offsets for the fields inside these sub-records are relative
25650 to the variant part itself, whereas the corresponding DIEs should have
25651 offset attributes that are relative to the embedding record base address.
25652 This is why the caller must provide a VARIANT_PART_OFFSET expression: it
25653 must be an expression that computes the offset of the variant part to
25654 describe in DWARF. */
25656 static void
25657 gen_variant_part (tree variant_part_decl, struct vlr_context *vlr_ctx,
25658 dw_die_ref context_die)
25660 const tree variant_part_type = TREE_TYPE (variant_part_decl);
25661 tree variant_part_offset = vlr_ctx->variant_part_offset;
25663 /* The FIELD_DECL node in STRUCT_TYPE that acts as the discriminant, or
25664 NULL_TREE if there is no such field. */
25665 tree discr_decl = NULL_TREE;
25666 dw_discr_list_ref *discr_lists;
25667 unsigned discr_lists_length = 0;
25668 unsigned i;
25670 dw_die_ref dwarf_proc_die = NULL;
25671 dw_die_ref variant_part_die
25672 = new_die (DW_TAG_variant_part, context_die, variant_part_type);
25674 equate_decl_number_to_die (variant_part_decl, variant_part_die);
25676 analyze_variants_discr (variant_part_decl, vlr_ctx->struct_type,
25677 &discr_decl, &discr_lists, &discr_lists_length);
25679 if (discr_decl != NULL_TREE)
25681 dw_die_ref discr_die = lookup_decl_die (discr_decl);
25683 if (discr_die)
25684 add_AT_die_ref (variant_part_die, DW_AT_discr, discr_die);
25685 else
25686 /* We have no DIE for the discriminant, so just discard all
25687 discrimimant information in the output. */
25688 discr_decl = NULL_TREE;
25691 /* If the offset for this variant part is more complex than a constant,
25692 create a DWARF procedure for it so that we will not have to generate
25693 DWARF expressions for it for each member. */
25694 if (TREE_CODE (variant_part_offset) != INTEGER_CST
25695 && (dwarf_version >= 3 || !dwarf_strict))
25697 struct loc_descr_context ctx = {
25698 vlr_ctx->struct_type, /* context_type */
25699 NULL_TREE, /* base_decl */
25700 NULL, /* dpi */
25701 false, /* placeholder_arg */
25702 false, /* placeholder_seen */
25703 false /* strict_signedness */
25705 const tree dwarf_proc_fndecl
25706 = build_decl (UNKNOWN_LOCATION, FUNCTION_DECL, NULL_TREE,
25707 build_function_type (TREE_TYPE (variant_part_offset),
25708 NULL_TREE));
25709 const tree dwarf_proc_call = build_call_expr (dwarf_proc_fndecl, 0);
25710 const dw_loc_descr_ref dwarf_proc_body
25711 = loc_descriptor_from_tree (variant_part_offset, 0, &ctx);
25713 dwarf_proc_die = new_dwarf_proc_die (dwarf_proc_body,
25714 dwarf_proc_fndecl, context_die);
25715 if (dwarf_proc_die != NULL)
25716 variant_part_offset = dwarf_proc_call;
25719 /* Output DIEs for all variants. */
25720 i = 0;
25721 for (tree variant = TYPE_FIELDS (variant_part_type);
25722 variant != NULL_TREE;
25723 variant = DECL_CHAIN (variant), ++i)
25725 tree variant_type = TREE_TYPE (variant);
25726 dw_die_ref variant_die;
25728 /* All variants (i.e. members of a variant part) are supposed to be
25729 encoded as structures. Sub-variant parts are QUAL_UNION_TYPE fields
25730 under these records. */
25731 gcc_assert (TREE_CODE (variant_type) == RECORD_TYPE);
25733 variant_die = new_die (DW_TAG_variant, variant_part_die, variant_type);
25734 equate_decl_number_to_die (variant, variant_die);
25736 /* Output discriminant values this variant matches, if any. */
25737 if (discr_decl == NULL || discr_lists[i] == NULL)
25738 /* In the case we have discriminant information at all, this is
25739 probably the default variant: as the standard says, don't
25740 output any discriminant value/list attribute. */
25742 else if (discr_lists[i]->dw_discr_next == NULL
25743 && !discr_lists[i]->dw_discr_range)
25744 /* If there is only one accepted value, don't bother outputting a
25745 list. */
25746 add_discr_value (variant_die, &discr_lists[i]->dw_discr_lower_bound);
25747 else
25748 add_discr_list (variant_die, discr_lists[i]);
25750 for (tree member = TYPE_FIELDS (variant_type);
25751 member != NULL_TREE;
25752 member = DECL_CHAIN (member))
25754 struct vlr_context vlr_sub_ctx = {
25755 vlr_ctx->struct_type, /* struct_type */
25756 NULL /* variant_part_offset */
25758 if (is_variant_part (member))
25760 /* All offsets for fields inside variant parts are relative to
25761 the top-level embedding RECORD_TYPE's base address. On the
25762 other hand, offsets in GCC's types are relative to the
25763 nested-most variant part. So we have to sum offsets each time
25764 we recurse. */
25766 vlr_sub_ctx.variant_part_offset
25767 = fold_build2 (PLUS_EXPR, TREE_TYPE (variant_part_offset),
25768 variant_part_offset, byte_position (member));
25769 gen_variant_part (member, &vlr_sub_ctx, variant_die);
25771 else
25773 vlr_sub_ctx.variant_part_offset = variant_part_offset;
25774 gen_decl_die (member, NULL, &vlr_sub_ctx, variant_die);
25779 free (discr_lists);
25782 /* Generate a DIE for a class member. */
25784 static void
25785 gen_member_die (tree type, dw_die_ref context_die)
25787 tree member;
25788 tree binfo = TYPE_BINFO (type);
25790 gcc_assert (TYPE_MAIN_VARIANT (type) == type);
25792 /* If this is not an incomplete type, output descriptions of each of its
25793 members. Note that as we output the DIEs necessary to represent the
25794 members of this record or union type, we will also be trying to output
25795 DIEs to represent the *types* of those members. However the `type'
25796 function (above) will specifically avoid generating type DIEs for member
25797 types *within* the list of member DIEs for this (containing) type except
25798 for those types (of members) which are explicitly marked as also being
25799 members of this (containing) type themselves. The g++ front- end can
25800 force any given type to be treated as a member of some other (containing)
25801 type by setting the TYPE_CONTEXT of the given (member) type to point to
25802 the TREE node representing the appropriate (containing) type. */
25804 /* First output info about the base classes. */
25805 if (binfo && early_dwarf)
25807 vec<tree, va_gc> *accesses = BINFO_BASE_ACCESSES (binfo);
25808 int i;
25809 tree base;
25811 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base); i++)
25812 gen_inheritance_die (base,
25813 (accesses ? (*accesses)[i] : access_public_node),
25814 type,
25815 context_die);
25818 /* Now output info about the members. */
25819 for (member = TYPE_FIELDS (type); member; member = DECL_CHAIN (member))
25821 /* Ignore clones. */
25822 if (DECL_ABSTRACT_ORIGIN (member))
25823 continue;
25825 struct vlr_context vlr_ctx = { type, NULL_TREE };
25826 bool static_inline_p
25827 = (VAR_P (member)
25828 && TREE_STATIC (member)
25829 && (lang_hooks.decls.decl_dwarf_attribute (member, DW_AT_inline)
25830 != -1));
25832 /* If we thought we were generating minimal debug info for TYPE
25833 and then changed our minds, some of the member declarations
25834 may have already been defined. Don't define them again, but
25835 do put them in the right order. */
25837 if (dw_die_ref child = lookup_decl_die (member))
25839 /* Handle inline static data members, which only have in-class
25840 declarations. */
25841 bool splice = true;
25843 dw_die_ref ref = NULL;
25844 if (child->die_tag == DW_TAG_variable
25845 && child->die_parent == comp_unit_die ())
25847 ref = get_AT_ref (child, DW_AT_specification);
25849 /* For C++17 inline static data members followed by redundant
25850 out of class redeclaration, we might get here with
25851 child being the DIE created for the out of class
25852 redeclaration and with its DW_AT_specification being
25853 the DIE created for in-class definition. We want to
25854 reparent the latter, and don't want to create another
25855 DIE with DW_AT_specification in that case, because
25856 we already have one. */
25857 if (ref
25858 && static_inline_p
25859 && ref->die_tag == DW_TAG_variable
25860 && ref->die_parent == comp_unit_die ()
25861 && get_AT (ref, DW_AT_specification) == NULL)
25863 child = ref;
25864 ref = NULL;
25865 static_inline_p = false;
25868 if (!ref)
25870 reparent_child (child, context_die);
25871 if (dwarf_version < 5)
25872 child->die_tag = DW_TAG_member;
25873 splice = false;
25876 else if (child->die_tag == DW_TAG_enumerator)
25877 /* Enumerators remain under their enumeration even if
25878 their names are introduced in the enclosing scope. */
25879 splice = false;
25881 if (splice)
25882 splice_child_die (context_die, child);
25885 /* Do not generate DWARF for variant parts if we are generating the
25886 corresponding GNAT encodings: DIEs generated for the two schemes
25887 would conflict in our mappings. */
25888 else if (is_variant_part (member)
25889 && gnat_encodings != DWARF_GNAT_ENCODINGS_ALL)
25891 vlr_ctx.variant_part_offset = byte_position (member);
25892 gen_variant_part (member, &vlr_ctx, context_die);
25894 else
25896 vlr_ctx.variant_part_offset = NULL_TREE;
25897 gen_decl_die (member, NULL, &vlr_ctx, context_die);
25900 /* For C++ inline static data members emit immediately a DW_TAG_variable
25901 DIE that will refer to that DW_TAG_member/DW_TAG_variable through
25902 DW_AT_specification. */
25903 if (static_inline_p)
25905 int old_extern = DECL_EXTERNAL (member);
25906 DECL_EXTERNAL (member) = 0;
25907 gen_decl_die (member, NULL, NULL, comp_unit_die ());
25908 DECL_EXTERNAL (member) = old_extern;
25913 /* Generate a DIE for a structure or union type. If TYPE_DECL_SUPPRESS_DEBUG
25914 is set, we pretend that the type was never defined, so we only get the
25915 member DIEs needed by later specification DIEs. */
25917 static void
25918 gen_struct_or_union_type_die (tree type, dw_die_ref context_die,
25919 enum debug_info_usage usage)
25921 if (TREE_ASM_WRITTEN (type))
25923 /* Fill in the bound of variable-length fields in late dwarf if
25924 still incomplete. */
25925 if (!early_dwarf && variably_modified_type_p (type, NULL))
25926 for (tree member = TYPE_FIELDS (type);
25927 member;
25928 member = DECL_CHAIN (member))
25929 fill_variable_array_bounds (TREE_TYPE (member));
25930 return;
25933 dw_die_ref type_die = lookup_type_die (type);
25934 dw_die_ref scope_die = 0;
25935 bool nested = false;
25936 bool complete = (TYPE_SIZE (type)
25937 && (! TYPE_STUB_DECL (type)
25938 || ! TYPE_DECL_SUPPRESS_DEBUG (TYPE_STUB_DECL (type))));
25939 bool ns_decl = (context_die && context_die->die_tag == DW_TAG_namespace);
25940 complete = complete && should_emit_struct_debug (type, usage);
25942 if (type_die && ! complete)
25943 return;
25945 if (TYPE_CONTEXT (type) != NULL_TREE
25946 && (AGGREGATE_TYPE_P (TYPE_CONTEXT (type))
25947 || TREE_CODE (TYPE_CONTEXT (type)) == NAMESPACE_DECL))
25948 nested = true;
25950 scope_die = scope_die_for (type, context_die);
25952 /* Generate child dies for template parameters. */
25953 if (!type_die && debug_info_level > DINFO_LEVEL_TERSE)
25954 schedule_generic_params_dies_gen (type);
25956 if (! type_die || (nested && is_cu_die (scope_die)))
25957 /* First occurrence of type or toplevel definition of nested class. */
25959 dw_die_ref old_die = type_die;
25961 type_die = new_die (TREE_CODE (type) == RECORD_TYPE
25962 ? record_type_tag (type) : DW_TAG_union_type,
25963 scope_die, type);
25964 equate_type_number_to_die (type, type_die);
25965 if (old_die)
25966 add_AT_specification (type_die, old_die);
25967 else
25968 add_name_attribute (type_die, type_tag (type));
25970 else
25971 remove_AT (type_die, DW_AT_declaration);
25973 /* If this type has been completed, then give it a byte_size attribute and
25974 then give a list of members. */
25975 if (complete && !ns_decl)
25977 /* Prevent infinite recursion in cases where the type of some member of
25978 this type is expressed in terms of this type itself. */
25979 TREE_ASM_WRITTEN (type) = 1;
25980 add_byte_size_attribute (type_die, type);
25981 add_alignment_attribute (type_die, type);
25982 if (TYPE_STUB_DECL (type) != NULL_TREE)
25984 add_src_coords_attributes (type_die, TYPE_STUB_DECL (type));
25985 add_accessibility_attribute (type_die, TYPE_STUB_DECL (type));
25988 /* If the first reference to this type was as the return type of an
25989 inline function, then it may not have a parent. Fix this now. */
25990 if (type_die->die_parent == NULL)
25991 add_child_die (scope_die, type_die);
25993 gen_member_die (type, type_die);
25995 add_gnat_descriptive_type_attribute (type_die, type, context_die);
25996 if (TYPE_ARTIFICIAL (type))
25997 add_AT_flag (type_die, DW_AT_artificial, 1);
25999 /* GNU extension: Record what type our vtable lives in. */
26000 if (TYPE_VFIELD (type))
26002 tree vtype = DECL_FCONTEXT (TYPE_VFIELD (type));
26004 gen_type_die (vtype, context_die);
26005 add_AT_die_ref (type_die, DW_AT_containing_type,
26006 lookup_type_die (vtype));
26009 else
26011 add_AT_flag (type_die, DW_AT_declaration, 1);
26013 /* We don't need to do this for function-local types. */
26014 if (TYPE_STUB_DECL (type)
26015 && ! decl_function_context (TYPE_STUB_DECL (type)))
26016 vec_safe_push (incomplete_types, type);
26019 if (get_AT (type_die, DW_AT_name))
26020 add_pubtype (type, type_die);
26023 /* Generate a DIE for a subroutine _type_. */
26025 static void
26026 gen_subroutine_type_die (tree type, dw_die_ref context_die)
26028 tree return_type = TREE_TYPE (type);
26029 dw_die_ref subr_die
26030 = new_die (DW_TAG_subroutine_type,
26031 scope_die_for (type, context_die), type);
26033 equate_type_number_to_die (type, subr_die);
26034 add_prototyped_attribute (subr_die, type);
26035 add_type_attribute (subr_die, return_type, TYPE_UNQUALIFIED, false,
26036 context_die);
26037 add_alignment_attribute (subr_die, type);
26038 gen_formal_types_die (type, subr_die);
26040 if (get_AT (subr_die, DW_AT_name))
26041 add_pubtype (type, subr_die);
26042 if ((dwarf_version >= 5 || !dwarf_strict)
26043 && lang_hooks.types.type_dwarf_attribute (type, DW_AT_reference) != -1)
26044 add_AT_flag (subr_die, DW_AT_reference, 1);
26045 if ((dwarf_version >= 5 || !dwarf_strict)
26046 && lang_hooks.types.type_dwarf_attribute (type,
26047 DW_AT_rvalue_reference) != -1)
26048 add_AT_flag (subr_die, DW_AT_rvalue_reference, 1);
26051 /* Generate a DIE for a type definition. */
26053 static void
26054 gen_typedef_die (tree decl, dw_die_ref context_die)
26056 dw_die_ref type_die;
26057 tree type;
26059 if (TREE_ASM_WRITTEN (decl))
26061 if (DECL_ORIGINAL_TYPE (decl))
26062 fill_variable_array_bounds (DECL_ORIGINAL_TYPE (decl));
26063 return;
26066 /* As we avoid creating DIEs for local typedefs (see decl_ultimate_origin
26067 checks in process_scope_var and modified_type_die), this should be called
26068 only for original types. */
26069 gcc_assert (decl_ultimate_origin (decl) == NULL
26070 || decl_ultimate_origin (decl) == decl);
26072 TREE_ASM_WRITTEN (decl) = 1;
26073 type_die = new_die (DW_TAG_typedef, context_die, decl);
26075 add_name_and_src_coords_attributes (type_die, decl);
26076 if (DECL_ORIGINAL_TYPE (decl))
26078 type = DECL_ORIGINAL_TYPE (decl);
26079 if (type == error_mark_node)
26080 return;
26082 gcc_assert (type != TREE_TYPE (decl));
26083 equate_type_number_to_die (TREE_TYPE (decl), type_die);
26085 else
26087 type = TREE_TYPE (decl);
26088 if (type == error_mark_node)
26089 return;
26091 if (is_naming_typedef_decl (TYPE_NAME (type)))
26093 /* Here, we are in the case of decl being a typedef naming
26094 an anonymous type, e.g:
26095 typedef struct {...} foo;
26096 In that case TREE_TYPE (decl) is not a typedef variant
26097 type and TYPE_NAME of the anonymous type is set to the
26098 TYPE_DECL of the typedef. This construct is emitted by
26099 the C++ FE.
26101 TYPE is the anonymous struct named by the typedef
26102 DECL. As we need the DW_AT_type attribute of the
26103 DW_TAG_typedef to point to the DIE of TYPE, let's
26104 generate that DIE right away. add_type_attribute
26105 called below will then pick (via lookup_type_die) that
26106 anonymous struct DIE. */
26107 if (!TREE_ASM_WRITTEN (type))
26108 gen_tagged_type_die (type, context_die, DINFO_USAGE_DIR_USE);
26110 /* This is a GNU Extension. We are adding a
26111 DW_AT_linkage_name attribute to the DIE of the
26112 anonymous struct TYPE. The value of that attribute
26113 is the name of the typedef decl naming the anonymous
26114 struct. This greatly eases the work of consumers of
26115 this debug info. */
26116 add_linkage_name_raw (lookup_type_die (type), decl);
26120 add_type_attribute (type_die, type, decl_quals (decl), false,
26121 context_die);
26123 if (is_naming_typedef_decl (decl))
26124 /* We want that all subsequent calls to lookup_type_die with
26125 TYPE in argument yield the DW_TAG_typedef we have just
26126 created. */
26127 equate_type_number_to_die (type, type_die);
26129 add_alignment_attribute (type_die, TREE_TYPE (decl));
26131 add_accessibility_attribute (type_die, decl);
26133 if (DECL_ABSTRACT_P (decl))
26134 equate_decl_number_to_die (decl, type_die);
26136 if (get_AT (type_die, DW_AT_name))
26137 add_pubtype (decl, type_die);
26140 /* Generate a DIE for a struct, class, enum or union type. */
26142 static void
26143 gen_tagged_type_die (tree type,
26144 dw_die_ref context_die,
26145 enum debug_info_usage usage)
26147 if (type == NULL_TREE
26148 || !is_tagged_type (type))
26149 return;
26151 if (TREE_ASM_WRITTEN (type))
26153 /* If this is a nested type whose containing class hasn't been written
26154 out yet, writing it out will cover this one, too. This does not apply
26155 to instantiations of member class templates; they need to be added to
26156 the containing class as they are generated. FIXME: This hurts the
26157 idea of combining type decls from multiple TUs, since we can't predict
26158 what set of template instantiations we'll get. */
26159 else if (TYPE_CONTEXT (type)
26160 && AGGREGATE_TYPE_P (TYPE_CONTEXT (type))
26161 && ! TREE_ASM_WRITTEN (TYPE_CONTEXT (type)))
26163 gen_type_die_with_usage (TYPE_CONTEXT (type), context_die, usage);
26165 if (TREE_ASM_WRITTEN (type))
26166 return;
26168 /* If that failed, attach ourselves to the stub. */
26169 context_die = lookup_type_die (TYPE_CONTEXT (type));
26171 else if (TYPE_CONTEXT (type) != NULL_TREE
26172 && (TREE_CODE (TYPE_CONTEXT (type)) == FUNCTION_DECL))
26174 /* If this type is local to a function that hasn't been written
26175 out yet, use a NULL context for now; it will be fixed up in
26176 decls_for_scope. */
26177 context_die = lookup_decl_die (TYPE_CONTEXT (type));
26178 /* A declaration DIE doesn't count; nested types need to go in the
26179 specification. */
26180 if (context_die && is_declaration_die (context_die))
26181 context_die = NULL;
26183 else
26184 context_die = declare_in_namespace (type, context_die);
26186 if (TREE_CODE (type) == ENUMERAL_TYPE)
26188 /* This might have been written out by the call to
26189 declare_in_namespace. */
26190 if (!TREE_ASM_WRITTEN (type))
26191 gen_enumeration_type_die (type, context_die);
26193 else
26194 gen_struct_or_union_type_die (type, context_die, usage);
26196 /* Don't set TREE_ASM_WRITTEN on an incomplete struct; we want to fix
26197 it up if it is ever completed. gen_*_type_die will set it for us
26198 when appropriate. */
26201 /* Generate a type description DIE. */
26203 static void
26204 gen_type_die_with_usage (tree type, dw_die_ref context_die,
26205 enum debug_info_usage usage)
26207 struct array_descr_info info;
26209 if (type == NULL_TREE || type == error_mark_node)
26210 return;
26212 if (flag_checking && type)
26213 verify_type (type);
26215 if (TYPE_NAME (type) != NULL_TREE
26216 && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
26217 && is_redundant_typedef (TYPE_NAME (type))
26218 && DECL_ORIGINAL_TYPE (TYPE_NAME (type)))
26219 /* The DECL of this type is a typedef we don't want to emit debug
26220 info for but we want debug info for its underlying typedef.
26221 This can happen for e.g, the injected-class-name of a C++
26222 type. */
26223 type = DECL_ORIGINAL_TYPE (TYPE_NAME (type));
26225 /* If TYPE is a typedef type variant, let's generate debug info
26226 for the parent typedef which TYPE is a type of. */
26227 if (typedef_variant_p (type))
26229 if (TREE_ASM_WRITTEN (type))
26230 return;
26232 tree name = TYPE_NAME (type);
26233 tree origin = decl_ultimate_origin (name);
26234 if (origin != NULL && origin != name)
26236 gen_decl_die (origin, NULL, NULL, context_die);
26237 return;
26240 /* Prevent broken recursion; we can't hand off to the same type. */
26241 gcc_assert (DECL_ORIGINAL_TYPE (name) != type);
26243 /* Give typedefs the right scope. */
26244 context_die = scope_die_for (type, context_die);
26246 TREE_ASM_WRITTEN (type) = 1;
26248 gen_decl_die (name, NULL, NULL, context_die);
26249 return;
26252 /* If type is an anonymous tagged type named by a typedef, let's
26253 generate debug info for the typedef. */
26254 if (is_naming_typedef_decl (TYPE_NAME (type)))
26256 /* Give typedefs the right scope. */
26257 context_die = scope_die_for (type, context_die);
26259 gen_decl_die (TYPE_NAME (type), NULL, NULL, context_die);
26260 return;
26263 if (lang_hooks.types.get_debug_type)
26265 tree debug_type = lang_hooks.types.get_debug_type (type);
26267 if (debug_type != NULL_TREE && debug_type != type)
26269 gen_type_die_with_usage (debug_type, context_die, usage);
26270 return;
26274 /* We are going to output a DIE to represent the unqualified version
26275 of this type (i.e. without any const or volatile qualifiers) so
26276 get the main variant (i.e. the unqualified version) of this type
26277 now. (Vectors and arrays are special because the debugging info is in the
26278 cloned type itself. Similarly function/method types can contain extra
26279 ref-qualification). */
26280 if (FUNC_OR_METHOD_TYPE_P (type))
26282 /* For function/method types, can't use type_main_variant here,
26283 because that can have different ref-qualifiers for C++,
26284 but try to canonicalize. */
26285 tree main = TYPE_MAIN_VARIANT (type);
26286 for (tree t = main; t; t = TYPE_NEXT_VARIANT (t))
26287 if (TYPE_QUALS_NO_ADDR_SPACE (t) == 0
26288 && check_base_type (t, main)
26289 && check_lang_type (t, type))
26291 type = t;
26292 break;
26295 else if (TREE_CODE (type) != VECTOR_TYPE
26296 && TREE_CODE (type) != ARRAY_TYPE)
26297 type = type_main_variant (type);
26299 /* If this is an array type with hidden descriptor, handle it first. */
26300 if (!TREE_ASM_WRITTEN (type)
26301 && lang_hooks.types.get_array_descr_info)
26303 memset (&info, 0, sizeof (info));
26304 if (lang_hooks.types.get_array_descr_info (type, &info))
26306 /* Fortran sometimes emits array types with no dimension. */
26307 gcc_assert (info.ndimensions >= 0
26308 && (info.ndimensions
26309 <= DWARF2OUT_ARRAY_DESCR_INFO_MAX_DIMEN));
26310 gen_descr_array_type_die (type, &info, context_die);
26311 TREE_ASM_WRITTEN (type) = 1;
26312 return;
26316 if (TREE_ASM_WRITTEN (type))
26318 /* Variable-length types may be incomplete even if
26319 TREE_ASM_WRITTEN. For such types, fall through to
26320 gen_array_type_die() and possibly fill in
26321 DW_AT_{upper,lower}_bound attributes. */
26322 if ((TREE_CODE (type) != ARRAY_TYPE
26323 && TREE_CODE (type) != RECORD_TYPE
26324 && TREE_CODE (type) != UNION_TYPE
26325 && TREE_CODE (type) != QUAL_UNION_TYPE)
26326 || !variably_modified_type_p (type, NULL))
26327 return;
26330 switch (TREE_CODE (type))
26332 case ERROR_MARK:
26333 break;
26335 case POINTER_TYPE:
26336 case REFERENCE_TYPE:
26337 /* We must set TREE_ASM_WRITTEN in case this is a recursive type. This
26338 ensures that the gen_type_die recursion will terminate even if the
26339 type is recursive. Recursive types are possible in Ada. */
26340 /* ??? We could perhaps do this for all types before the switch
26341 statement. */
26342 TREE_ASM_WRITTEN (type) = 1;
26344 /* For these types, all that is required is that we output a DIE (or a
26345 set of DIEs) to represent the "basis" type. */
26346 gen_type_die_with_usage (TREE_TYPE (type), context_die,
26347 DINFO_USAGE_IND_USE);
26348 break;
26350 case OFFSET_TYPE:
26351 /* This code is used for C++ pointer-to-data-member types.
26352 Output a description of the relevant class type. */
26353 gen_type_die_with_usage (TYPE_OFFSET_BASETYPE (type), context_die,
26354 DINFO_USAGE_IND_USE);
26356 /* Output a description of the type of the object pointed to. */
26357 gen_type_die_with_usage (TREE_TYPE (type), context_die,
26358 DINFO_USAGE_IND_USE);
26360 /* Now output a DIE to represent this pointer-to-data-member type
26361 itself. */
26362 gen_ptr_to_mbr_type_die (type, context_die);
26363 break;
26365 case FUNCTION_TYPE:
26366 /* Force out return type (in case it wasn't forced out already). */
26367 gen_type_die_with_usage (TREE_TYPE (type), context_die,
26368 DINFO_USAGE_DIR_USE);
26369 gen_subroutine_type_die (type, context_die);
26370 break;
26372 case METHOD_TYPE:
26373 /* Force out return type (in case it wasn't forced out already). */
26374 gen_type_die_with_usage (TREE_TYPE (type), context_die,
26375 DINFO_USAGE_DIR_USE);
26376 gen_subroutine_type_die (type, context_die);
26377 break;
26379 case ARRAY_TYPE:
26380 case VECTOR_TYPE:
26381 gen_array_type_die (type, context_die);
26382 break;
26384 case ENUMERAL_TYPE:
26385 case RECORD_TYPE:
26386 case UNION_TYPE:
26387 case QUAL_UNION_TYPE:
26388 gen_tagged_type_die (type, context_die, usage);
26389 return;
26391 case VOID_TYPE:
26392 case OPAQUE_TYPE:
26393 case INTEGER_TYPE:
26394 case REAL_TYPE:
26395 case FIXED_POINT_TYPE:
26396 case COMPLEX_TYPE:
26397 case BOOLEAN_TYPE:
26398 case BITINT_TYPE:
26399 /* No DIEs needed for fundamental types. */
26400 break;
26402 case NULLPTR_TYPE:
26403 case LANG_TYPE:
26404 /* Just use DW_TAG_unspecified_type. */
26406 dw_die_ref type_die = lookup_type_die (type);
26407 if (type_die == NULL)
26409 tree name = TYPE_IDENTIFIER (type);
26410 type_die = new_die (DW_TAG_unspecified_type, comp_unit_die (),
26411 type);
26412 add_name_attribute (type_die, IDENTIFIER_POINTER (name));
26413 equate_type_number_to_die (type, type_die);
26416 break;
26418 default:
26419 if (is_cxx_auto (type))
26421 tree name = TYPE_IDENTIFIER (type);
26422 dw_die_ref *die = (name == get_identifier ("auto")
26423 ? &auto_die : &decltype_auto_die);
26424 if (!*die)
26426 *die = new_die (DW_TAG_unspecified_type,
26427 comp_unit_die (), NULL_TREE);
26428 add_name_attribute (*die, IDENTIFIER_POINTER (name));
26430 equate_type_number_to_die (type, *die);
26431 break;
26433 gcc_unreachable ();
26436 TREE_ASM_WRITTEN (type) = 1;
26439 static void
26440 gen_type_die (tree type, dw_die_ref context_die)
26442 if (type != error_mark_node)
26444 gen_type_die_with_usage (type, context_die, DINFO_USAGE_DIR_USE);
26445 if (flag_checking)
26447 dw_die_ref die = lookup_type_die (type);
26448 if (die)
26449 check_die (die);
26454 /* Generate a DW_TAG_lexical_block DIE followed by DIEs to represent all of the
26455 things which are local to the given block. */
26457 static void
26458 gen_block_die (tree stmt, dw_die_ref context_die)
26460 int must_output_die = 0;
26461 bool inlined_func;
26463 /* Ignore blocks that are NULL. */
26464 if (stmt == NULL_TREE)
26465 return;
26467 inlined_func = inlined_function_outer_scope_p (stmt);
26469 /* If the block is one fragment of a non-contiguous block, do not
26470 process the variables, since they will have been done by the
26471 origin block. Do process subblocks. */
26472 if (BLOCK_FRAGMENT_ORIGIN (stmt))
26474 tree sub;
26476 for (sub = BLOCK_SUBBLOCKS (stmt); sub; sub = BLOCK_CHAIN (sub))
26477 gen_block_die (sub, context_die);
26479 return;
26482 /* Determine if we need to output any Dwarf DIEs at all to represent this
26483 block. */
26484 if (inlined_func)
26485 /* The outer scopes for inlinings *must* always be represented. We
26486 generate DW_TAG_inlined_subroutine DIEs for them. (See below.) */
26487 must_output_die = 1;
26488 else if (lookup_block_die (stmt))
26489 /* If we already have a DIE then it was filled early. Meanwhile
26490 we might have pruned all BLOCK_VARS as optimized out but we
26491 still want to generate high/low PC attributes so output it. */
26492 must_output_die = 1;
26493 else if (TREE_USED (stmt)
26494 || TREE_ASM_WRITTEN (stmt))
26496 /* Determine if this block directly contains any "significant"
26497 local declarations which we will need to output DIEs for. */
26498 if (debug_info_level > DINFO_LEVEL_TERSE)
26500 /* We are not in terse mode so any local declaration that
26501 is not ignored for debug purposes counts as being a
26502 "significant" one. */
26503 if (BLOCK_NUM_NONLOCALIZED_VARS (stmt))
26504 must_output_die = 1;
26505 else
26506 for (tree var = BLOCK_VARS (stmt); var; var = DECL_CHAIN (var))
26507 if (!DECL_IGNORED_P (var))
26509 must_output_die = 1;
26510 break;
26513 else if (!dwarf2out_ignore_block (stmt))
26514 must_output_die = 1;
26517 /* It would be a waste of space to generate a Dwarf DW_TAG_lexical_block
26518 DIE for any block which contains no significant local declarations at
26519 all. Rather, in such cases we just call `decls_for_scope' so that any
26520 needed Dwarf info for any sub-blocks will get properly generated. Note
26521 that in terse mode, our definition of what constitutes a "significant"
26522 local declaration gets restricted to include only inlined function
26523 instances and local (nested) function definitions. */
26524 if (must_output_die)
26526 if (inlined_func)
26527 gen_inlined_subroutine_die (stmt, context_die);
26528 else
26529 gen_lexical_block_die (stmt, context_die);
26531 else
26532 decls_for_scope (stmt, context_die);
26535 /* Process variable DECL (or variable with origin ORIGIN) within
26536 block STMT and add it to CONTEXT_DIE. */
26537 static void
26538 process_scope_var (tree stmt, tree decl, tree origin, dw_die_ref context_die)
26540 dw_die_ref die;
26541 tree decl_or_origin = decl ? decl : origin;
26543 if (TREE_CODE (decl_or_origin) == FUNCTION_DECL)
26544 die = lookup_decl_die (decl_or_origin);
26545 else if (TREE_CODE (decl_or_origin) == TYPE_DECL)
26547 if (TYPE_DECL_IS_STUB (decl_or_origin))
26548 die = lookup_type_die (TREE_TYPE (decl_or_origin));
26549 else
26550 die = lookup_decl_die (decl_or_origin);
26551 /* Avoid re-creating the DIE late if it was optimized as unused early. */
26552 if (! die && ! early_dwarf)
26553 return;
26555 else
26556 die = NULL;
26558 /* Avoid creating DIEs for local typedefs and concrete static variables that
26559 will only be pruned later. */
26560 if ((origin || decl_ultimate_origin (decl))
26561 && (TREE_CODE (decl_or_origin) == TYPE_DECL
26562 || (VAR_P (decl_or_origin) && TREE_STATIC (decl_or_origin))))
26564 origin = decl_ultimate_origin (decl_or_origin);
26565 if (decl && VAR_P (decl) && die != NULL)
26567 die = lookup_decl_die (origin);
26568 if (die != NULL)
26569 equate_decl_number_to_die (decl, die);
26571 return;
26574 if (die != NULL && die->die_parent == NULL)
26575 add_child_die (context_die, die);
26577 if (TREE_CODE (decl_or_origin) == IMPORTED_DECL)
26579 if (early_dwarf)
26580 dwarf2out_imported_module_or_decl_1 (decl_or_origin, DECL_NAME (decl_or_origin),
26581 stmt, context_die);
26583 else
26585 if (decl && DECL_P (decl))
26587 die = lookup_decl_die (decl);
26589 /* Early created DIEs do not have a parent as the decls refer
26590 to the function as DECL_CONTEXT rather than the BLOCK. */
26591 if (die && die->die_parent == NULL)
26593 gcc_assert (in_lto_p);
26594 add_child_die (context_die, die);
26598 gen_decl_die (decl, origin, NULL, context_die);
26602 /* Generate all of the decls declared within a given scope and (recursively)
26603 all of its sub-blocks. */
26605 static void
26606 decls_for_scope (tree stmt, dw_die_ref context_die, bool recurse)
26608 tree decl;
26609 unsigned int i;
26610 tree subblocks;
26612 /* Ignore NULL blocks. */
26613 if (stmt == NULL_TREE)
26614 return;
26616 /* Output the DIEs to represent all of the data objects and typedefs
26617 declared directly within this block but not within any nested
26618 sub-blocks. Also, nested function and tag DIEs have been
26619 generated with a parent of NULL; fix that up now. We don't
26620 have to do this if we're at -g1. */
26621 if (debug_info_level > DINFO_LEVEL_TERSE)
26623 for (decl = BLOCK_VARS (stmt); decl != NULL; decl = DECL_CHAIN (decl))
26624 process_scope_var (stmt, decl, NULL_TREE, context_die);
26625 /* BLOCK_NONLOCALIZED_VARs simply generate DIE stubs with abstract
26626 origin - avoid doing this twice as we have no good way to see
26627 if we've done it once already. */
26628 if (! early_dwarf)
26629 for (i = 0; i < BLOCK_NUM_NONLOCALIZED_VARS (stmt); i++)
26631 decl = BLOCK_NONLOCALIZED_VAR (stmt, i);
26632 if (decl == current_function_decl)
26633 /* Ignore declarations of the current function, while they
26634 are declarations, gen_subprogram_die would treat them
26635 as definitions again, because they are equal to
26636 current_function_decl and endlessly recurse. */;
26637 else if (TREE_CODE (decl) == FUNCTION_DECL)
26638 process_scope_var (stmt, decl, NULL_TREE, context_die);
26639 else
26640 process_scope_var (stmt, NULL_TREE, decl, context_die);
26644 /* Even if we're at -g1, we need to process the subblocks in order to get
26645 inlined call information. */
26647 /* Output the DIEs to represent all sub-blocks (and the items declared
26648 therein) of this block. */
26649 if (recurse)
26650 for (subblocks = BLOCK_SUBBLOCKS (stmt);
26651 subblocks != NULL;
26652 subblocks = BLOCK_CHAIN (subblocks))
26653 gen_block_die (subblocks, context_die);
26656 /* Is this a typedef we can avoid emitting? */
26658 static bool
26659 is_redundant_typedef (const_tree decl)
26661 if (TYPE_DECL_IS_STUB (decl))
26662 return true;
26664 if (DECL_ARTIFICIAL (decl)
26665 && DECL_CONTEXT (decl)
26666 && is_tagged_type (DECL_CONTEXT (decl))
26667 && TREE_CODE (TYPE_NAME (DECL_CONTEXT (decl))) == TYPE_DECL
26668 && DECL_NAME (decl) == DECL_NAME (TYPE_NAME (DECL_CONTEXT (decl))))
26669 /* Also ignore the artificial member typedef for the class name. */
26670 return true;
26672 return false;
26675 /* Return TRUE if TYPE is a typedef that names a type for linkage
26676 purposes. This kind of typedefs is produced by the C++ FE for
26677 constructs like:
26679 typedef struct {...} foo;
26681 In that case, there is no typedef variant type produced for foo.
26682 Rather, the TREE_TYPE of the TYPE_DECL of foo is the anonymous
26683 struct type. */
26685 static bool
26686 is_naming_typedef_decl (const_tree decl)
26688 if (decl == NULL_TREE
26689 || TREE_CODE (decl) != TYPE_DECL
26690 || DECL_NAMELESS (decl)
26691 || !is_tagged_type (TREE_TYPE (decl))
26692 || DECL_IS_UNDECLARED_BUILTIN (decl)
26693 || is_redundant_typedef (decl)
26694 /* It looks like Ada produces TYPE_DECLs that are very similar
26695 to C++ naming typedefs but that have different
26696 semantics. Let's be specific to c++ for now. */
26697 || !is_cxx (decl))
26698 return false;
26700 return (DECL_ORIGINAL_TYPE (decl) == NULL_TREE
26701 && TYPE_NAME (TREE_TYPE (decl)) == decl
26702 && (TYPE_STUB_DECL (TREE_TYPE (decl))
26703 != TYPE_NAME (TREE_TYPE (decl))));
26706 /* Looks up the DIE for a context. */
26708 static inline dw_die_ref
26709 lookup_context_die (tree context)
26711 if (context)
26713 /* Find die that represents this context. */
26714 if (TYPE_P (context))
26716 context = TYPE_MAIN_VARIANT (context);
26717 dw_die_ref ctx = lookup_type_die (context);
26718 if (!ctx)
26719 return NULL;
26720 return strip_naming_typedef (context, ctx);
26722 else
26723 return lookup_decl_die (context);
26725 return comp_unit_die ();
26728 /* Returns the DIE for a context. */
26730 static inline dw_die_ref
26731 get_context_die (tree context)
26733 if (context)
26735 /* Find die that represents this context. */
26736 if (TYPE_P (context))
26738 context = TYPE_MAIN_VARIANT (context);
26739 return strip_naming_typedef (context, force_type_die (context));
26741 else
26742 return force_decl_die (context);
26744 return comp_unit_die ();
26747 /* Returns the DIE for decl. A DIE will always be returned. */
26749 static dw_die_ref
26750 force_decl_die (tree decl)
26752 dw_die_ref decl_die;
26753 unsigned saved_external_flag;
26754 tree save_fn = NULL_TREE;
26755 decl_die = lookup_decl_die (decl);
26756 if (!decl_die)
26758 dw_die_ref context_die = get_context_die (DECL_CONTEXT (decl));
26760 decl_die = lookup_decl_die (decl);
26761 if (decl_die)
26762 return decl_die;
26764 switch (TREE_CODE (decl))
26766 case FUNCTION_DECL:
26767 /* Clear current_function_decl, so that gen_subprogram_die thinks
26768 that this is a declaration. At this point, we just want to force
26769 declaration die. */
26770 save_fn = current_function_decl;
26771 current_function_decl = NULL_TREE;
26772 gen_subprogram_die (decl, context_die);
26773 current_function_decl = save_fn;
26774 break;
26776 case VAR_DECL:
26777 /* Set external flag to force declaration die. Restore it after
26778 gen_decl_die() call. */
26779 saved_external_flag = DECL_EXTERNAL (decl);
26780 DECL_EXTERNAL (decl) = 1;
26781 gen_decl_die (decl, NULL, NULL, context_die);
26782 DECL_EXTERNAL (decl) = saved_external_flag;
26783 break;
26785 case NAMESPACE_DECL:
26786 if (dwarf_version >= 3 || !dwarf_strict)
26787 dwarf2out_decl (decl);
26788 else
26789 /* DWARF2 has neither DW_TAG_module, nor DW_TAG_namespace. */
26790 decl_die = comp_unit_die ();
26791 break;
26793 case CONST_DECL:
26794 /* Enumerators shouldn't need force_decl_die. */
26795 gcc_assert (DECL_CONTEXT (decl) == NULL_TREE
26796 || TREE_CODE (DECL_CONTEXT (decl)) != ENUMERAL_TYPE);
26797 gen_decl_die (decl, NULL, NULL, context_die);
26798 break;
26800 case TRANSLATION_UNIT_DECL:
26801 decl_die = comp_unit_die ();
26802 break;
26804 default:
26805 gcc_unreachable ();
26808 /* We should be able to find the DIE now. */
26809 if (!decl_die)
26810 decl_die = lookup_decl_die (decl);
26811 gcc_assert (decl_die);
26814 return decl_die;
26817 /* Returns the DIE for TYPE, that must not be a base type. A DIE is
26818 always returned. */
26820 static dw_die_ref
26821 force_type_die (tree type)
26823 dw_die_ref type_die;
26825 type_die = lookup_type_die (type);
26826 if (!type_die)
26828 dw_die_ref context_die = get_context_die (TYPE_CONTEXT (type));
26830 type_die = modified_type_die (type, TYPE_QUALS_NO_ADDR_SPACE (type),
26831 false, context_die);
26832 gcc_assert (type_die);
26834 return type_die;
26837 /* Force out any required namespaces to be able to output DECL,
26838 and return the new context_die for it, if it's changed. */
26840 static dw_die_ref
26841 setup_namespace_context (tree thing, dw_die_ref context_die)
26843 tree context = (DECL_P (thing)
26844 ? DECL_CONTEXT (thing) : TYPE_CONTEXT (thing));
26845 if (context && TREE_CODE (context) == NAMESPACE_DECL)
26846 /* Force out the namespace. */
26847 context_die = force_decl_die (context);
26849 return context_die;
26852 /* Emit a declaration DIE for THING (which is either a DECL or a tagged
26853 type) within its namespace, if appropriate.
26855 For compatibility with older debuggers, namespace DIEs only contain
26856 declarations; all definitions are emitted at CU scope, with
26857 DW_AT_specification pointing to the declaration (like with class
26858 members). */
26860 static dw_die_ref
26861 declare_in_namespace (tree thing, dw_die_ref context_die)
26863 dw_die_ref ns_context;
26865 if (debug_info_level <= DINFO_LEVEL_TERSE)
26866 return context_die;
26868 /* External declarations in the local scope only need to be emitted
26869 once, not once in the namespace and once in the scope.
26871 This avoids declaring the `extern' below in the
26872 namespace DIE as well as in the innermost scope:
26874 namespace S
26876 int i=5;
26877 int foo()
26879 int i=8;
26880 extern int i;
26881 return i;
26885 if (DECL_P (thing) && DECL_EXTERNAL (thing) && local_scope_p (context_die))
26886 return context_die;
26888 /* If this decl is from an inlined function, then don't try to emit it in its
26889 namespace, as we will get confused. It would have already been emitted
26890 when the abstract instance of the inline function was emitted anyways. */
26891 if (DECL_P (thing) && DECL_ABSTRACT_ORIGIN (thing))
26892 return context_die;
26894 ns_context = setup_namespace_context (thing, context_die);
26896 if (ns_context != context_die)
26898 if (is_fortran () || is_dlang ())
26899 return ns_context;
26900 if (DECL_P (thing))
26901 gen_decl_die (thing, NULL, NULL, ns_context);
26902 else
26903 gen_type_die (thing, ns_context);
26905 return context_die;
26908 /* Generate a DIE for a namespace or namespace alias. */
26910 static void
26911 gen_namespace_die (tree decl, dw_die_ref context_die)
26913 dw_die_ref namespace_die;
26915 /* Namespace aliases have a DECL_ABSTRACT_ORIGIN of the namespace
26916 they are an alias of. */
26917 if (DECL_ABSTRACT_ORIGIN (decl) == NULL)
26919 /* Output a real namespace or module. */
26920 context_die = setup_namespace_context (decl, comp_unit_die ());
26921 namespace_die = new_die (is_fortran () || is_dlang ()
26922 ? DW_TAG_module : DW_TAG_namespace,
26923 context_die, decl);
26924 /* For Fortran modules defined in different CU don't add src coords. */
26925 if (namespace_die->die_tag == DW_TAG_module && DECL_EXTERNAL (decl))
26927 const char *name = dwarf2_name (decl, 0);
26928 if (name)
26929 add_name_attribute (namespace_die, name);
26931 else
26932 add_name_and_src_coords_attributes (namespace_die, decl);
26933 if (DECL_EXTERNAL (decl))
26934 add_AT_flag (namespace_die, DW_AT_declaration, 1);
26935 equate_decl_number_to_die (decl, namespace_die);
26937 else
26939 /* Output a namespace alias. */
26941 /* Force out the namespace we are an alias of, if necessary. */
26942 dw_die_ref origin_die
26943 = force_decl_die (DECL_ABSTRACT_ORIGIN (decl));
26945 if (DECL_FILE_SCOPE_P (decl)
26946 || TREE_CODE (DECL_CONTEXT (decl)) == NAMESPACE_DECL)
26947 context_die = setup_namespace_context (decl, comp_unit_die ());
26948 /* Now create the namespace alias DIE. */
26949 namespace_die = new_die (DW_TAG_imported_declaration, context_die, decl);
26950 add_name_and_src_coords_attributes (namespace_die, decl);
26951 add_AT_die_ref (namespace_die, DW_AT_import, origin_die);
26952 equate_decl_number_to_die (decl, namespace_die);
26954 if ((dwarf_version >= 5 || !dwarf_strict)
26955 && lang_hooks.decls.decl_dwarf_attribute (decl,
26956 DW_AT_export_symbols) == 1)
26957 add_AT_flag (namespace_die, DW_AT_export_symbols, 1);
26959 /* Bypass dwarf2_name's check for DECL_NAMELESS. */
26960 if (want_pubnames ())
26961 add_pubname_string (lang_hooks.dwarf_name (decl, 1), namespace_die);
26964 /* Generate Dwarf debug information for a decl described by DECL.
26965 The return value is currently only meaningful for PARM_DECLs,
26966 for all other decls it returns NULL.
26968 If DECL is a FIELD_DECL, CTX is required: see the comment for VLR_CONTEXT.
26969 It can be NULL otherwise. */
26971 static dw_die_ref
26972 gen_decl_die (tree decl, tree origin, struct vlr_context *ctx,
26973 dw_die_ref context_die)
26975 tree decl_or_origin = decl ? decl : origin;
26976 tree class_origin = NULL, ultimate_origin;
26978 if (DECL_P (decl_or_origin) && DECL_IGNORED_P (decl_or_origin))
26979 return NULL;
26981 switch (TREE_CODE (decl_or_origin))
26983 case ERROR_MARK:
26984 break;
26986 case CONST_DECL:
26987 if (!is_fortran () && !is_ada () && !is_dlang ())
26989 /* The individual enumerators of an enum type get output when we output
26990 the Dwarf representation of the relevant enum type itself. */
26991 break;
26994 /* Emit its type. */
26995 gen_type_die (TREE_TYPE (decl), context_die);
26997 /* And its containing namespace. */
26998 context_die = declare_in_namespace (decl, context_die);
27000 gen_const_die (decl, context_die);
27001 break;
27003 case FUNCTION_DECL:
27004 #if 0
27005 /* FIXME */
27006 /* This doesn't work because the C frontend sets DECL_ABSTRACT_ORIGIN
27007 on local redeclarations of global functions. That seems broken. */
27008 if (current_function_decl != decl)
27009 /* This is only a declaration. */;
27010 #endif
27012 /* We should have abstract copies already and should not generate
27013 stray type DIEs in late LTO dumping. */
27014 if (! early_dwarf)
27017 /* If we're emitting a clone, emit info for the abstract instance. */
27018 else if (origin || DECL_ORIGIN (decl) != decl)
27019 dwarf2out_abstract_function (origin
27020 ? DECL_ORIGIN (origin)
27021 : DECL_ABSTRACT_ORIGIN (decl));
27023 /* If we're emitting a possibly inlined function emit it as
27024 abstract instance. */
27025 else if (cgraph_function_possibly_inlined_p (decl)
27026 && ! DECL_ABSTRACT_P (decl)
27027 && ! class_or_namespace_scope_p (context_die)
27028 /* dwarf2out_abstract_function won't emit a die if this is just
27029 a declaration. We must avoid setting DECL_ABSTRACT_ORIGIN in
27030 that case, because that works only if we have a die. */
27031 && DECL_INITIAL (decl) != NULL_TREE)
27032 dwarf2out_abstract_function (decl);
27034 /* Otherwise we're emitting the primary DIE for this decl. */
27035 else if (debug_info_level > DINFO_LEVEL_TERSE)
27037 /* Before we describe the FUNCTION_DECL itself, make sure that we
27038 have its containing type. */
27039 if (!origin)
27040 origin = decl_class_context (decl);
27041 if (origin != NULL_TREE)
27042 gen_type_die (origin, context_die);
27044 /* And its return type. */
27045 gen_type_die (TREE_TYPE (TREE_TYPE (decl)), context_die);
27047 /* And its virtual context. */
27048 if (DECL_VINDEX (decl) != NULL_TREE)
27049 gen_type_die (DECL_CONTEXT (decl), context_die);
27051 /* Make sure we have a member DIE for decl. */
27052 if (origin != NULL_TREE)
27053 gen_type_die_for_member (origin, decl, context_die);
27055 /* And its containing namespace. */
27056 context_die = declare_in_namespace (decl, context_die);
27059 /* Now output a DIE to represent the function itself. */
27060 if (decl)
27061 gen_subprogram_die (decl, context_die);
27062 break;
27064 case TYPE_DECL:
27065 /* If we are in terse mode, don't generate any DIEs to represent any
27066 actual typedefs. */
27067 if (debug_info_level <= DINFO_LEVEL_TERSE)
27068 break;
27070 /* In the special case of a TYPE_DECL node representing the declaration
27071 of some type tag, if the given TYPE_DECL is marked as having been
27072 instantiated from some other (original) TYPE_DECL node (e.g. one which
27073 was generated within the original definition of an inline function) we
27074 used to generate a special (abbreviated) DW_TAG_structure_type,
27075 DW_TAG_union_type, or DW_TAG_enumeration_type DIE here. But nothing
27076 should be actually referencing those DIEs, as variable DIEs with that
27077 type would be emitted already in the abstract origin, so it was always
27078 removed during unused type prunning. Don't add anything in this
27079 case. */
27080 if (TYPE_DECL_IS_STUB (decl) && decl_ultimate_origin (decl) != NULL_TREE)
27081 break;
27083 if (is_redundant_typedef (decl))
27084 gen_type_die (TREE_TYPE (decl), context_die);
27085 else
27086 /* Output a DIE to represent the typedef itself. */
27087 gen_typedef_die (decl, context_die);
27088 break;
27090 case LABEL_DECL:
27091 if (debug_info_level >= DINFO_LEVEL_NORMAL)
27092 gen_label_die (decl, context_die);
27093 break;
27095 case VAR_DECL:
27096 case RESULT_DECL:
27097 /* If we are in terse mode, don't generate any DIEs to represent any
27098 variable declarations or definitions unless it is external. */
27099 if (debug_info_level < DINFO_LEVEL_TERSE
27100 || (debug_info_level == DINFO_LEVEL_TERSE
27101 && !TREE_PUBLIC (decl_or_origin)))
27102 break;
27104 if (debug_info_level > DINFO_LEVEL_TERSE)
27106 /* Avoid generating stray type DIEs during late dwarf dumping.
27107 All types have been dumped early. */
27108 if (early_dwarf
27109 /* ??? But in LTRANS we cannot annotate early created variably
27110 modified type DIEs without copying them and adjusting all
27111 references to them. Dump them again as happens for inlining
27112 which copies both the decl and the types. */
27113 /* ??? And even non-LTO needs to re-visit type DIEs to fill
27114 in VLA bound information for example. */
27115 || (decl && variably_modified_type_p (TREE_TYPE (decl),
27116 current_function_decl)))
27118 /* Output any DIEs that are needed to specify the type of this data
27119 object. */
27120 if (decl_by_reference_p (decl_or_origin))
27121 gen_type_die (TREE_TYPE (TREE_TYPE (decl_or_origin)), context_die);
27122 else
27123 gen_type_die (TREE_TYPE (decl_or_origin), context_die);
27126 if (early_dwarf)
27128 /* And its containing type. */
27129 class_origin = decl_class_context (decl_or_origin);
27130 if (class_origin != NULL_TREE)
27131 gen_type_die_for_member (class_origin, decl_or_origin, context_die);
27133 /* And its containing namespace. */
27134 context_die = declare_in_namespace (decl_or_origin, context_die);
27138 /* Now output the DIE to represent the data object itself. This gets
27139 complicated because of the possibility that the VAR_DECL really
27140 represents an inlined instance of a formal parameter for an inline
27141 function. */
27142 ultimate_origin = decl_ultimate_origin (decl_or_origin);
27143 if (ultimate_origin != NULL_TREE
27144 && TREE_CODE (ultimate_origin) == PARM_DECL)
27145 gen_formal_parameter_die (decl, origin,
27146 true /* Emit name attribute. */,
27147 context_die);
27148 else
27149 gen_variable_die (decl, origin, context_die);
27150 break;
27152 case FIELD_DECL:
27153 gcc_assert (ctx != NULL && ctx->struct_type != NULL);
27154 /* Ignore the nameless fields that are used to skip bits but handle C++
27155 anonymous unions and structs. */
27156 if (DECL_NAME (decl) != NULL_TREE
27157 || TREE_CODE (TREE_TYPE (decl)) == UNION_TYPE
27158 || TREE_CODE (TREE_TYPE (decl)) == RECORD_TYPE)
27160 gen_type_die (member_declared_type (decl), context_die);
27161 gen_field_die (decl, ctx, context_die);
27163 break;
27165 case PARM_DECL:
27166 /* Avoid generating stray type DIEs during late dwarf dumping.
27167 All types have been dumped early. */
27168 if (early_dwarf
27169 /* ??? But in LTRANS we cannot annotate early created variably
27170 modified type DIEs without copying them and adjusting all
27171 references to them. Dump them again as happens for inlining
27172 which copies both the decl and the types. */
27173 /* ??? And even non-LTO needs to re-visit type DIEs to fill
27174 in VLA bound information for example. */
27175 || (decl && variably_modified_type_p (TREE_TYPE (decl),
27176 current_function_decl)))
27178 if (DECL_BY_REFERENCE (decl_or_origin))
27179 gen_type_die (TREE_TYPE (TREE_TYPE (decl_or_origin)), context_die);
27180 else
27181 gen_type_die (TREE_TYPE (decl_or_origin), context_die);
27183 return gen_formal_parameter_die (decl, origin,
27184 true /* Emit name attribute. */,
27185 context_die);
27187 case NAMESPACE_DECL:
27188 if (dwarf_version >= 3 || !dwarf_strict)
27189 gen_namespace_die (decl, context_die);
27190 break;
27192 case IMPORTED_DECL:
27193 dwarf2out_imported_module_or_decl_1 (decl, DECL_NAME (decl),
27194 DECL_CONTEXT (decl), context_die);
27195 break;
27197 case NAMELIST_DECL:
27198 gen_namelist_decl (DECL_NAME (decl), context_die,
27199 NAMELIST_DECL_ASSOCIATED_DECL (decl));
27200 break;
27202 default:
27203 /* Probably some frontend-internal decl. Assume we don't care. */
27204 gcc_assert ((int)TREE_CODE (decl) > NUM_TREE_CODES);
27205 break;
27208 return NULL;
27211 /* Output initial debug information for global DECL. Called at the
27212 end of the parsing process.
27214 This is the initial debug generation process. As such, the DIEs
27215 generated may be incomplete. A later debug generation pass
27216 (dwarf2out_late_global_decl) will augment the information generated
27217 in this pass (e.g., with complete location info). */
27219 static void
27220 dwarf2out_early_global_decl (tree decl)
27222 set_early_dwarf s;
27224 /* gen_decl_die() will set DECL_ABSTRACT because
27225 cgraph_function_possibly_inlined_p() returns true. This is in
27226 turn will cause DW_AT_inline attributes to be set.
27228 This happens because at early dwarf generation, there is no
27229 cgraph information, causing cgraph_function_possibly_inlined_p()
27230 to return true. Trick cgraph_function_possibly_inlined_p()
27231 while we generate dwarf early. */
27232 bool save = symtab->global_info_ready;
27233 symtab->global_info_ready = true;
27235 /* We don't handle TYPE_DECLs. If required, they'll be reached via
27236 other DECLs and they can point to template types or other things
27237 that dwarf2out can't handle when done via dwarf2out_decl. */
27238 if (TREE_CODE (decl) != TYPE_DECL
27239 && TREE_CODE (decl) != PARM_DECL)
27241 if (TREE_CODE (decl) == FUNCTION_DECL)
27243 tree save_fndecl = current_function_decl;
27245 /* For nested functions, make sure we have DIEs for the parents first
27246 so that all nested DIEs are generated at the proper scope in the
27247 first shot. */
27248 tree context = decl_function_context (decl);
27249 if (context != NULL)
27251 dw_die_ref context_die = lookup_decl_die (context);
27252 current_function_decl = context;
27254 /* Avoid emitting DIEs multiple times, but still process CONTEXT
27255 enough so that it lands in its own context. This avoids type
27256 pruning issues later on. */
27257 if (context_die == NULL || is_declaration_die (context_die))
27258 dwarf2out_early_global_decl (context);
27261 /* Emit an abstract origin of a function first. This happens
27262 with C++ constructor clones for example and makes
27263 dwarf2out_abstract_function happy which requires the early
27264 DIE of the abstract instance to be present. */
27265 tree origin = DECL_ABSTRACT_ORIGIN (decl);
27266 dw_die_ref origin_die;
27267 if (origin != NULL
27268 /* Do not emit the DIE multiple times but make sure to
27269 process it fully here in case we just saw a declaration. */
27270 && ((origin_die = lookup_decl_die (origin)) == NULL
27271 || is_declaration_die (origin_die)))
27273 current_function_decl = origin;
27274 dwarf2out_decl (origin);
27277 /* Emit the DIE for decl but avoid doing that multiple times. */
27278 dw_die_ref old_die;
27279 if ((old_die = lookup_decl_die (decl)) == NULL
27280 || is_declaration_die (old_die))
27282 current_function_decl = decl;
27283 dwarf2out_decl (decl);
27286 current_function_decl = save_fndecl;
27288 else
27289 dwarf2out_decl (decl);
27291 symtab->global_info_ready = save;
27294 /* Return whether EXPR is an expression with the following pattern:
27295 INDIRECT_REF (NOP_EXPR (INTEGER_CST)). */
27297 static bool
27298 is_trivial_indirect_ref (tree expr)
27300 if (expr == NULL_TREE || TREE_CODE (expr) != INDIRECT_REF)
27301 return false;
27303 tree nop = TREE_OPERAND (expr, 0);
27304 if (nop == NULL_TREE || TREE_CODE (nop) != NOP_EXPR)
27305 return false;
27307 tree int_cst = TREE_OPERAND (nop, 0);
27308 return int_cst != NULL_TREE && TREE_CODE (int_cst) == INTEGER_CST;
27311 /* Output debug information for global decl DECL. Called from
27312 toplev.cc after compilation proper has finished. */
27314 static void
27315 dwarf2out_late_global_decl (tree decl)
27317 /* Fill-in any location information we were unable to determine
27318 on the first pass. */
27319 if (VAR_P (decl))
27321 dw_die_ref die = lookup_decl_die (decl);
27323 /* We may have to generate full debug late for LTO in case debug
27324 was not enabled at compile-time or the target doesn't support
27325 the LTO early debug scheme. */
27326 if (! die && in_lto_p
27327 /* Function scope variables are emitted when emitting the
27328 DIE for the function. */
27329 && ! local_function_static (decl))
27330 dwarf2out_decl (decl);
27331 else if (die)
27333 /* We get called via the symtab code invoking late_global_decl
27334 for symbols that are optimized out.
27336 Do not add locations for those, except if they have a
27337 DECL_VALUE_EXPR, in which case they are relevant for debuggers.
27338 Still don't add a location if the DECL_VALUE_EXPR is not a trivial
27339 INDIRECT_REF expression, as this could generate relocations to
27340 text symbols in LTO object files, which is invalid. */
27341 varpool_node *node = varpool_node::get (decl);
27342 if ((! node || ! node->definition)
27343 && ! (DECL_HAS_VALUE_EXPR_P (decl)
27344 && is_trivial_indirect_ref (DECL_VALUE_EXPR (decl))))
27345 tree_add_const_value_attribute_for_decl (die, decl);
27346 else
27347 add_location_or_const_value_attribute (die, decl, false);
27352 /* Output debug information for type decl DECL. Called from toplev.cc
27353 and from language front ends (to record built-in types). */
27354 static void
27355 dwarf2out_type_decl (tree decl, int local)
27357 if (!local)
27359 set_early_dwarf s;
27360 dwarf2out_decl (decl);
27364 /* Output debug information for imported module or decl DECL.
27365 NAME is non-NULL name in the lexical block if the decl has been renamed.
27366 LEXICAL_BLOCK is the lexical block (which TREE_CODE is a BLOCK)
27367 that DECL belongs to.
27368 LEXICAL_BLOCK_DIE is the DIE of LEXICAL_BLOCK. */
27369 static void
27370 dwarf2out_imported_module_or_decl_1 (tree decl,
27371 tree name,
27372 tree lexical_block,
27373 dw_die_ref lexical_block_die)
27375 expanded_location xloc;
27376 dw_die_ref imported_die = NULL;
27377 dw_die_ref at_import_die;
27379 if (TREE_CODE (decl) == IMPORTED_DECL)
27381 xloc = expand_location (DECL_SOURCE_LOCATION (decl));
27382 decl = IMPORTED_DECL_ASSOCIATED_DECL (decl);
27383 gcc_assert (decl);
27385 else
27386 xloc = expand_location (input_location);
27388 if (TREE_CODE (decl) == TYPE_DECL)
27390 at_import_die = force_type_die (TREE_TYPE (decl));
27391 /* For namespace N { typedef void T; } using N::T; base_type_die
27392 returns NULL, but DW_TAG_imported_declaration requires
27393 the DW_AT_import tag. Force creation of DW_TAG_typedef. */
27394 if (!at_import_die)
27396 gcc_assert (TREE_CODE (decl) == TYPE_DECL);
27397 gen_typedef_die (decl, get_context_die (DECL_CONTEXT (decl)));
27398 at_import_die = lookup_type_die (TREE_TYPE (decl));
27399 gcc_assert (at_import_die);
27402 else
27404 at_import_die = lookup_decl_die (decl);
27405 if (!at_import_die)
27407 /* If we're trying to avoid duplicate debug info, we may not have
27408 emitted the member decl for this field. Emit it now. */
27409 if (TREE_CODE (decl) == FIELD_DECL)
27411 tree type = DECL_CONTEXT (decl);
27413 if (TYPE_CONTEXT (type)
27414 && TYPE_P (TYPE_CONTEXT (type))
27415 && !should_emit_struct_debug (TYPE_CONTEXT (type),
27416 DINFO_USAGE_DIR_USE))
27417 return;
27418 gen_type_die_for_member (type, decl,
27419 get_context_die (TYPE_CONTEXT (type)));
27421 if (TREE_CODE (decl) == CONST_DECL)
27423 /* Individual enumerators of an enum type do not get output here
27424 (see gen_decl_die), so we cannot call force_decl_die. */
27425 if (!is_fortran () && !is_ada () && !is_dlang ())
27426 return;
27428 if (TREE_CODE (decl) == NAMELIST_DECL)
27429 at_import_die = gen_namelist_decl (DECL_NAME (decl),
27430 get_context_die (DECL_CONTEXT (decl)),
27431 NULL_TREE);
27432 else
27433 at_import_die = force_decl_die (decl);
27437 if (TREE_CODE (decl) == NAMESPACE_DECL)
27439 if (dwarf_version >= 3 || !dwarf_strict)
27440 imported_die = new_die (DW_TAG_imported_module,
27441 lexical_block_die,
27442 lexical_block);
27443 else
27444 return;
27446 else
27447 imported_die = new_die (DW_TAG_imported_declaration,
27448 lexical_block_die,
27449 lexical_block);
27451 add_AT_file (imported_die, DW_AT_decl_file, lookup_filename (xloc.file));
27452 add_AT_unsigned (imported_die, DW_AT_decl_line, xloc.line);
27453 if (debug_column_info && xloc.column)
27454 add_AT_unsigned (imported_die, DW_AT_decl_column, xloc.column);
27455 if (name)
27456 add_AT_string (imported_die, DW_AT_name,
27457 IDENTIFIER_POINTER (name));
27458 add_AT_die_ref (imported_die, DW_AT_import, at_import_die);
27461 /* Output debug information for imported module or decl DECL.
27462 NAME is non-NULL name in context if the decl has been renamed.
27463 CHILD is true if decl is one of the renamed decls as part of
27464 importing whole module.
27465 IMPLICIT is set if this hook is called for an implicit import
27466 such as inline namespace. */
27468 static void
27469 dwarf2out_imported_module_or_decl (tree decl, tree name, tree context,
27470 bool child, bool implicit)
27472 /* dw_die_ref at_import_die; */
27473 dw_die_ref scope_die;
27475 if (debug_info_level <= DINFO_LEVEL_TERSE)
27476 return;
27478 gcc_assert (decl);
27480 /* For DWARF5, just DW_AT_export_symbols on the DW_TAG_namespace
27481 should be enough, for DWARF4 and older even if we emit as extension
27482 DW_AT_export_symbols add the implicit DW_TAG_imported_module anyway
27483 for the benefit of consumers unaware of DW_AT_export_symbols. */
27484 if (implicit
27485 && dwarf_version >= 5
27486 && lang_hooks.decls.decl_dwarf_attribute (decl,
27487 DW_AT_export_symbols) == 1)
27488 return;
27490 set_early_dwarf s;
27492 /* To emit DW_TAG_imported_module or DW_TAG_imported_decl, we need two DIEs.
27493 We need decl DIE for reference and scope die. First, get DIE for the decl
27494 itself. */
27496 /* Get the scope die for decl context. Use comp_unit_die for global module
27497 or decl. If die is not found for non globals, force new die. */
27498 if (context
27499 && TYPE_P (context)
27500 && !should_emit_struct_debug (context, DINFO_USAGE_DIR_USE))
27501 return;
27503 scope_die = get_context_die (context);
27505 if (child)
27507 /* DW_TAG_imported_module was introduced in the DWARFv3 specification, so
27508 there is nothing we can do, here. */
27509 if (dwarf_version < 3 && dwarf_strict)
27510 return;
27512 gcc_assert (scope_die->die_child);
27513 gcc_assert (scope_die->die_child->die_tag == DW_TAG_imported_module);
27514 gcc_assert (TREE_CODE (decl) != NAMESPACE_DECL);
27515 scope_die = scope_die->die_child;
27518 /* OK, now we have DIEs for decl as well as scope. Emit imported die. */
27519 dwarf2out_imported_module_or_decl_1 (decl, name, context, scope_die);
27522 /* Output debug information for namelists. */
27524 static dw_die_ref
27525 gen_namelist_decl (tree name, dw_die_ref scope_die, tree item_decls)
27527 dw_die_ref nml_die, nml_item_die, nml_item_ref_die;
27528 tree value;
27529 unsigned i;
27531 if (debug_info_level <= DINFO_LEVEL_TERSE)
27532 return NULL;
27534 gcc_assert (scope_die != NULL);
27535 nml_die = new_die (DW_TAG_namelist, scope_die, NULL);
27536 add_AT_string (nml_die, DW_AT_name, IDENTIFIER_POINTER (name));
27538 /* If there are no item_decls, we have a nondefining namelist, e.g.
27539 with USE association; hence, set DW_AT_declaration. */
27540 if (item_decls == NULL_TREE)
27542 add_AT_flag (nml_die, DW_AT_declaration, 1);
27543 return nml_die;
27546 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (item_decls), i, value)
27548 nml_item_ref_die = lookup_decl_die (value);
27549 if (!nml_item_ref_die)
27550 nml_item_ref_die = force_decl_die (value);
27552 nml_item_die = new_die (DW_TAG_namelist_item, nml_die, NULL);
27553 add_AT_die_ref (nml_item_die, DW_AT_namelist_item, nml_item_ref_die);
27555 return nml_die;
27559 /* Write the debugging output for DECL and return the DIE. */
27561 static void
27562 dwarf2out_decl (tree decl)
27564 dw_die_ref context_die = comp_unit_die ();
27566 switch (TREE_CODE (decl))
27568 case ERROR_MARK:
27569 return;
27571 case FUNCTION_DECL:
27572 /* If we're a nested function, initially use a parent of NULL; if we're
27573 a plain function, this will be fixed up in decls_for_scope. If
27574 we're a method, it will be ignored, since we already have a DIE.
27575 Avoid doing this late though since clones of class methods may
27576 otherwise end up in limbo and create type DIEs late. */
27577 if (early_dwarf
27578 && decl_function_context (decl)
27579 /* But if we're in terse mode, we don't care about scope. */
27580 && debug_info_level > DINFO_LEVEL_TERSE)
27581 context_die = NULL;
27582 break;
27584 case VAR_DECL:
27585 /* For local statics lookup proper context die. */
27586 if (local_function_static (decl))
27587 context_die = lookup_decl_die (DECL_CONTEXT (decl));
27589 /* If we are in terse mode, don't generate any DIEs to represent any
27590 variable declarations or definitions unless it is external. */
27591 if (debug_info_level < DINFO_LEVEL_TERSE
27592 || (debug_info_level == DINFO_LEVEL_TERSE
27593 && !TREE_PUBLIC (decl)))
27594 return;
27595 break;
27597 case CONST_DECL:
27598 if (debug_info_level <= DINFO_LEVEL_TERSE)
27599 return;
27600 if (!is_fortran () && !is_ada () && !is_dlang ())
27601 return;
27602 if (TREE_STATIC (decl) && decl_function_context (decl))
27603 context_die = lookup_decl_die (DECL_CONTEXT (decl));
27604 break;
27606 case NAMESPACE_DECL:
27607 case IMPORTED_DECL:
27608 if (debug_info_level <= DINFO_LEVEL_TERSE)
27609 return;
27610 if (lookup_decl_die (decl) != NULL)
27611 return;
27612 break;
27614 case TYPE_DECL:
27615 /* Don't emit stubs for types unless they are needed by other DIEs. */
27616 if (TYPE_DECL_SUPPRESS_DEBUG (decl))
27617 return;
27619 /* Don't bother trying to generate any DIEs to represent any of the
27620 normal built-in types for the language we are compiling. */
27621 if (DECL_IS_UNDECLARED_BUILTIN (decl))
27622 return;
27624 /* If we are in terse mode, don't generate any DIEs for types. */
27625 if (debug_info_level <= DINFO_LEVEL_TERSE)
27626 return;
27628 /* If we're a function-scope tag, initially use a parent of NULL;
27629 this will be fixed up in decls_for_scope. */
27630 if (decl_function_context (decl))
27631 context_die = NULL;
27633 break;
27635 case NAMELIST_DECL:
27636 break;
27638 default:
27639 return;
27642 gen_decl_die (decl, NULL, NULL, context_die);
27644 if (flag_checking)
27646 dw_die_ref die = lookup_decl_die (decl);
27647 if (die)
27648 check_die (die);
27652 /* Write the debugging output for DECL. */
27654 static void
27655 dwarf2out_function_decl (tree decl)
27657 dwarf2out_decl (decl);
27658 call_arg_locations = NULL;
27659 call_arg_loc_last = NULL;
27660 call_site_count = -1;
27661 tail_call_site_count = -1;
27662 decl_loc_table->empty ();
27663 cached_dw_loc_list_table->empty ();
27666 /* Output a marker (i.e. a label) for the beginning of the generated code for
27667 a lexical block. */
27669 static void
27670 dwarf2out_begin_block (unsigned int line ATTRIBUTE_UNUSED,
27671 unsigned int blocknum)
27673 switch_to_section (current_function_section ());
27674 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, BLOCK_BEGIN_LABEL, blocknum);
27677 /* Output a marker (i.e. a label) for the end of the generated code for a
27678 lexical block. */
27680 static void
27681 dwarf2out_end_block (unsigned int line ATTRIBUTE_UNUSED, unsigned int blocknum)
27683 switch_to_section (current_function_section ());
27684 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, BLOCK_END_LABEL, blocknum);
27687 /* Returns true if it is appropriate not to emit any debugging
27688 information for BLOCK, because it doesn't contain any instructions.
27690 Don't allow this for blocks with nested functions or local classes
27691 as we would end up with orphans, and in the presence of scheduling
27692 we may end up calling them anyway. */
27694 static bool
27695 dwarf2out_ignore_block (const_tree block)
27697 tree decl;
27698 unsigned int i;
27700 for (decl = BLOCK_VARS (block); decl; decl = DECL_CHAIN (decl))
27701 if (TREE_CODE (decl) == FUNCTION_DECL
27702 || (TREE_CODE (decl) == TYPE_DECL && TYPE_DECL_IS_STUB (decl)))
27703 return false;
27704 for (i = 0; i < BLOCK_NUM_NONLOCALIZED_VARS (block); i++)
27706 decl = BLOCK_NONLOCALIZED_VAR (block, i);
27707 if (TREE_CODE (decl) == FUNCTION_DECL
27708 || (TREE_CODE (decl) == TYPE_DECL && TYPE_DECL_IS_STUB (decl)))
27709 return false;
27712 return true;
27715 /* Hash table routines for file_hash. */
27717 bool
27718 dwarf_file_hasher::equal (dwarf_file_data *p1, const char *p2)
27720 return filename_cmp (p1->key, p2) == 0;
27723 hashval_t
27724 dwarf_file_hasher::hash (dwarf_file_data *p)
27726 return htab_hash_string (p->key);
27729 /* Lookup FILE_NAME (in the list of filenames that we know about here in
27730 dwarf2out.cc) and return its "index". The index of each (known) filename is
27731 just a unique number which is associated with only that one filename. We
27732 need such numbers for the sake of generating labels (in the .debug_sfnames
27733 section) and references to those files numbers (in the .debug_srcinfo
27734 and .debug_macinfo sections). If the filename given as an argument is not
27735 found in our current list, add it to the list and assign it the next
27736 available unique index number. */
27738 static struct dwarf_file_data *
27739 lookup_filename (const char *file_name)
27741 struct dwarf_file_data * created;
27743 if (!file_name)
27744 return NULL;
27746 if (!file_name[0])
27747 file_name = "<stdin>";
27749 dwarf_file_data **slot
27750 = file_table->find_slot_with_hash (file_name, htab_hash_string (file_name),
27751 INSERT);
27752 if (*slot)
27753 return *slot;
27755 created = ggc_alloc<dwarf_file_data> ();
27756 created->key = file_name;
27757 created->filename = remap_debug_filename (file_name);
27758 created->emitted_number = 0;
27759 *slot = created;
27760 return created;
27763 /* If the assembler will construct the file table, then translate the compiler
27764 internal file table number into the assembler file table number, and emit
27765 a .file directive if we haven't already emitted one yet. The file table
27766 numbers are different because we prune debug info for unused variables and
27767 types, which may include filenames. */
27769 static int
27770 maybe_emit_file (struct dwarf_file_data * fd)
27772 if (! fd->emitted_number)
27774 if (last_emitted_file)
27775 fd->emitted_number = last_emitted_file->emitted_number + 1;
27776 else
27777 fd->emitted_number = 1;
27778 last_emitted_file = fd;
27780 if (output_asm_line_debug_info ())
27782 fprintf (asm_out_file, "\t.file %u ", fd->emitted_number);
27783 output_quoted_string (asm_out_file, fd->filename);
27784 fputc ('\n', asm_out_file);
27788 return fd->emitted_number;
27791 /* Schedule generation of a DW_AT_const_value attribute to DIE.
27792 That generation should happen after function debug info has been
27793 generated. The value of the attribute is the constant value of ARG. */
27795 static void
27796 append_entry_to_tmpl_value_parm_die_table (dw_die_ref die, tree arg)
27798 die_arg_entry entry;
27800 if (!die || !arg)
27801 return;
27803 gcc_assert (early_dwarf);
27805 if (!tmpl_value_parm_die_table)
27806 vec_alloc (tmpl_value_parm_die_table, 32);
27808 entry.die = die;
27809 entry.arg = arg;
27810 vec_safe_push (tmpl_value_parm_die_table, entry);
27813 /* Return TRUE if T is an instance of generic type, FALSE
27814 otherwise. */
27816 static bool
27817 generic_type_p (tree t)
27819 if (t == NULL_TREE || !TYPE_P (t))
27820 return false;
27821 return lang_hooks.get_innermost_generic_parms (t) != NULL_TREE;
27824 /* Schedule the generation of the generic parameter dies for the
27825 instance of generic type T. The proper generation itself is later
27826 done by gen_scheduled_generic_parms_dies. */
27828 static void
27829 schedule_generic_params_dies_gen (tree t)
27831 if (!generic_type_p (t))
27832 return;
27834 gcc_assert (early_dwarf);
27836 if (!generic_type_instances)
27837 vec_alloc (generic_type_instances, 256);
27839 vec_safe_push (generic_type_instances, t);
27842 /* Add a DW_AT_const_value attribute to DIEs that were scheduled
27843 by append_entry_to_tmpl_value_parm_die_table. This function must
27844 be called after function DIEs have been generated. */
27846 static void
27847 gen_remaining_tmpl_value_param_die_attribute (void)
27849 if (tmpl_value_parm_die_table)
27851 unsigned i, j;
27852 die_arg_entry *e;
27854 /* We do this in two phases - first get the cases we can
27855 handle during early-finish, preserving those we cannot
27856 (containing symbolic constants where we don't yet know
27857 whether we are going to output the referenced symbols).
27858 For those we try again at late-finish. */
27859 j = 0;
27860 FOR_EACH_VEC_ELT (*tmpl_value_parm_die_table, i, e)
27862 if (!e->die->removed
27863 && !tree_add_const_value_attribute (e->die, e->arg))
27865 dw_loc_descr_ref loc = NULL;
27866 if (! early_dwarf
27867 && (dwarf_version >= 5 || !dwarf_strict))
27868 loc = loc_descriptor_from_tree (e->arg, 2, NULL);
27869 if (loc)
27870 add_AT_loc (e->die, DW_AT_location, loc);
27871 else
27872 (*tmpl_value_parm_die_table)[j++] = *e;
27875 tmpl_value_parm_die_table->truncate (j);
27879 /* Generate generic parameters DIEs for instances of generic types
27880 that have been previously scheduled by
27881 schedule_generic_params_dies_gen. This function must be called
27882 after all the types of the CU have been laid out. */
27884 static void
27885 gen_scheduled_generic_parms_dies (void)
27887 unsigned i;
27888 tree t;
27890 if (!generic_type_instances)
27891 return;
27893 FOR_EACH_VEC_ELT (*generic_type_instances, i, t)
27894 if (COMPLETE_TYPE_P (t))
27895 gen_generic_params_dies (t);
27897 generic_type_instances = NULL;
27901 /* Replace DW_AT_name for the decl with name. */
27903 static void
27904 dwarf2out_set_name (tree decl, tree name)
27906 dw_die_ref die;
27907 dw_attr_node *attr;
27908 const char *dname;
27910 die = TYPE_SYMTAB_DIE (decl);
27911 if (!die)
27912 return;
27914 dname = dwarf2_name (name, 0);
27915 if (!dname)
27916 return;
27918 attr = get_AT (die, DW_AT_name);
27919 if (attr)
27921 struct indirect_string_node *node;
27923 node = find_AT_string (dname);
27924 /* replace the string. */
27925 attr->dw_attr_val.v.val_str = node;
27928 else
27929 add_name_attribute (die, dname);
27932 /* True if before or during processing of the first function being emitted. */
27933 static bool in_first_function_p = true;
27934 /* True if loc_note during dwarf2out_var_location call might still be
27935 before first real instruction at address equal to .Ltext0. */
27936 static bool maybe_at_text_label_p = true;
27937 /* One above highest N where .LVLN label might be equal to .Ltext0 label. */
27938 static unsigned int first_loclabel_num_not_at_text_label;
27940 /* Look ahead for a real insn. */
27942 static rtx_insn *
27943 dwarf2out_next_real_insn (rtx_insn *loc_note)
27945 rtx_insn *next_real = NEXT_INSN (loc_note);
27947 while (next_real)
27948 if (INSN_P (next_real))
27949 break;
27950 else
27951 next_real = NEXT_INSN (next_real);
27953 return next_real;
27956 /* Called by the final INSN scan whenever we see a var location. We
27957 use it to drop labels in the right places, and throw the location in
27958 our lookup table. */
27960 static void
27961 dwarf2out_var_location (rtx_insn *loc_note)
27963 char loclabel[MAX_ARTIFICIAL_LABEL_BYTES + 2];
27964 struct var_loc_node *newloc;
27965 rtx_insn *next_real;
27966 rtx_insn *call_insn = NULL;
27967 static const char *last_label;
27968 static const char *last_postcall_label;
27969 static bool last_in_cold_section_p;
27970 static rtx_insn *expected_next_loc_note;
27971 tree decl;
27972 bool var_loc_p;
27973 var_loc_view view = 0;
27975 if (!NOTE_P (loc_note))
27977 if (CALL_P (loc_note))
27979 maybe_reset_location_view (loc_note, cur_line_info_table);
27980 call_site_count++;
27981 if (SIBLING_CALL_P (loc_note))
27982 tail_call_site_count++;
27983 if (find_reg_note (loc_note, REG_CALL_ARG_LOCATION, NULL_RTX))
27985 call_insn = loc_note;
27986 loc_note = NULL;
27987 var_loc_p = false;
27989 next_real = dwarf2out_next_real_insn (call_insn);
27990 cached_next_real_insn = NULL;
27991 goto create_label;
27993 if (optimize == 0 && !flag_var_tracking)
27995 /* When the var-tracking pass is not running, there is no note
27996 for indirect calls whose target is compile-time known. In this
27997 case, process such calls specifically so that we generate call
27998 sites for them anyway. */
27999 rtx x = PATTERN (loc_note);
28000 if (GET_CODE (x) == PARALLEL)
28001 x = XVECEXP (x, 0, 0);
28002 if (GET_CODE (x) == SET)
28003 x = SET_SRC (x);
28004 if (GET_CODE (x) == CALL)
28005 x = XEXP (x, 0);
28006 if (!MEM_P (x)
28007 || GET_CODE (XEXP (x, 0)) != SYMBOL_REF
28008 || !SYMBOL_REF_DECL (XEXP (x, 0))
28009 || (TREE_CODE (SYMBOL_REF_DECL (XEXP (x, 0)))
28010 != FUNCTION_DECL))
28012 call_insn = loc_note;
28013 loc_note = NULL;
28014 var_loc_p = false;
28016 next_real = dwarf2out_next_real_insn (call_insn);
28017 cached_next_real_insn = NULL;
28018 goto create_label;
28022 else if (!debug_variable_location_views)
28023 gcc_unreachable ();
28024 else
28025 maybe_reset_location_view (loc_note, cur_line_info_table);
28027 return;
28030 var_loc_p = NOTE_KIND (loc_note) == NOTE_INSN_VAR_LOCATION;
28031 if (var_loc_p && !DECL_P (NOTE_VAR_LOCATION_DECL (loc_note)))
28032 return;
28034 /* Optimize processing a large consecutive sequence of location
28035 notes so we don't spend too much time in next_real_insn. If the
28036 next insn is another location note, remember the next_real_insn
28037 calculation for next time. */
28038 next_real = cached_next_real_insn;
28039 if (next_real)
28041 if (expected_next_loc_note != loc_note)
28042 next_real = NULL;
28045 if (! next_real)
28046 next_real = dwarf2out_next_real_insn (loc_note);
28048 if (next_real)
28050 rtx_insn *next_note = NEXT_INSN (loc_note);
28051 while (next_note != next_real)
28053 if (! next_note->deleted ()
28054 && NOTE_P (next_note)
28055 && NOTE_KIND (next_note) == NOTE_INSN_VAR_LOCATION)
28056 break;
28057 next_note = NEXT_INSN (next_note);
28060 if (next_note == next_real)
28061 cached_next_real_insn = NULL;
28062 else
28064 expected_next_loc_note = next_note;
28065 cached_next_real_insn = next_real;
28068 else
28069 cached_next_real_insn = NULL;
28071 /* If there are no instructions which would be affected by this note,
28072 don't do anything. */
28073 if (var_loc_p
28074 && next_real == NULL_RTX
28075 && !NOTE_DURING_CALL_P (loc_note))
28076 return;
28078 create_label:
28080 if (next_real == NULL_RTX)
28081 next_real = get_last_insn ();
28083 /* If there were any real insns between note we processed last time
28084 and this note (or if it is the first note), clear
28085 last_{,postcall_}label so that they are not reused this time. */
28086 if (last_var_location_insn == NULL_RTX
28087 || last_var_location_insn != next_real
28088 || last_in_cold_section_p != in_cold_section_p)
28090 last_label = NULL;
28091 last_postcall_label = NULL;
28094 if (var_loc_p)
28096 const char *label
28097 = NOTE_DURING_CALL_P (loc_note) ? last_postcall_label : last_label;
28098 view = cur_line_info_table->view;
28099 decl = NOTE_VAR_LOCATION_DECL (loc_note);
28100 newloc = add_var_loc_to_decl (decl, loc_note, label, view);
28101 if (newloc == NULL)
28102 return;
28104 else
28106 decl = NULL_TREE;
28107 newloc = NULL;
28110 /* If there were no real insns between note we processed last time
28111 and this note, use the label we emitted last time. Otherwise
28112 create a new label and emit it. */
28113 if (last_label == NULL)
28115 ASM_GENERATE_INTERNAL_LABEL (loclabel, "LVL", loclabel_num);
28116 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, "LVL", loclabel_num);
28117 loclabel_num++;
28118 last_label = ggc_strdup (loclabel);
28119 /* See if loclabel might be equal to .Ltext0. If yes,
28120 bump first_loclabel_num_not_at_text_label. */
28121 if (!have_multiple_function_sections
28122 && in_first_function_p
28123 && maybe_at_text_label_p)
28125 static rtx_insn *last_start;
28126 rtx_insn *insn;
28127 for (insn = loc_note; insn; insn = previous_insn (insn))
28128 if (insn == last_start)
28129 break;
28130 else if (!NONDEBUG_INSN_P (insn))
28131 continue;
28132 else
28134 rtx body = PATTERN (insn);
28135 if (GET_CODE (body) == USE || GET_CODE (body) == CLOBBER)
28136 continue;
28137 /* Inline asm could occupy zero bytes. */
28138 else if (GET_CODE (body) == ASM_INPUT
28139 || asm_noperands (body) >= 0)
28140 continue;
28141 #ifdef HAVE_ATTR_length /* ??? We don't include insn-attr.h. */
28142 else if (HAVE_ATTR_length && get_attr_min_length (insn) == 0)
28143 continue;
28144 #endif
28145 else
28147 /* Assume insn has non-zero length. */
28148 maybe_at_text_label_p = false;
28149 break;
28152 if (maybe_at_text_label_p)
28154 last_start = loc_note;
28155 first_loclabel_num_not_at_text_label = loclabel_num;
28160 gcc_assert ((loc_note == NULL_RTX && call_insn != NULL_RTX)
28161 || (loc_note != NULL_RTX && call_insn == NULL_RTX));
28163 if (!var_loc_p)
28165 struct call_arg_loc_node *ca_loc
28166 = ggc_cleared_alloc<call_arg_loc_node> ();
28167 rtx_insn *prev = call_insn;
28169 ca_loc->call_arg_loc_note
28170 = find_reg_note (call_insn, REG_CALL_ARG_LOCATION, NULL_RTX);
28171 ca_loc->next = NULL;
28172 ca_loc->label = last_label;
28173 gcc_assert (prev
28174 && (CALL_P (prev)
28175 || (NONJUMP_INSN_P (prev)
28176 && GET_CODE (PATTERN (prev)) == SEQUENCE
28177 && CALL_P (XVECEXP (PATTERN (prev), 0, 0)))));
28178 if (!CALL_P (prev))
28179 prev = as_a <rtx_sequence *> (PATTERN (prev))->insn (0);
28180 ca_loc->tail_call_p = SIBLING_CALL_P (prev);
28182 /* Look for a SYMBOL_REF in the "prev" instruction. */
28183 rtx x = get_call_rtx_from (prev);
28184 if (x)
28186 /* Try to get the call symbol, if any. */
28187 if (MEM_P (XEXP (x, 0)))
28188 x = XEXP (x, 0);
28189 /* First, look for a memory access to a symbol_ref. */
28190 if (GET_CODE (XEXP (x, 0)) == SYMBOL_REF
28191 && SYMBOL_REF_DECL (XEXP (x, 0))
28192 && TREE_CODE (SYMBOL_REF_DECL (XEXP (x, 0))) == FUNCTION_DECL)
28193 ca_loc->symbol_ref = XEXP (x, 0);
28194 /* Otherwise, look at a compile-time known user-level function
28195 declaration. */
28196 else if (MEM_P (x)
28197 && MEM_EXPR (x)
28198 && TREE_CODE (MEM_EXPR (x)) == FUNCTION_DECL)
28199 ca_loc->symbol_ref = XEXP (DECL_RTL (MEM_EXPR (x)), 0);
28202 ca_loc->block = insn_scope (prev);
28203 if (call_arg_locations)
28204 call_arg_loc_last->next = ca_loc;
28205 else
28206 call_arg_locations = ca_loc;
28207 call_arg_loc_last = ca_loc;
28209 else if (loc_note != NULL_RTX && !NOTE_DURING_CALL_P (loc_note))
28211 newloc->label = last_label;
28212 newloc->view = view;
28214 else
28216 if (!last_postcall_label)
28218 sprintf (loclabel, "%s-1", last_label);
28219 last_postcall_label = ggc_strdup (loclabel);
28221 newloc->label = last_postcall_label;
28222 /* ??? This view is at last_label, not last_label-1, but we
28223 could only assume view at last_label-1 is zero if we could
28224 assume calls always have length greater than one. This is
28225 probably true in general, though there might be a rare
28226 exception to this rule, e.g. if a call insn is optimized out
28227 by target magic. Then, even the -1 in the label will be
28228 wrong, which might invalidate the range. Anyway, using view,
28229 though technically possibly incorrect, will work as far as
28230 ranges go: since L-1 is in the middle of the call insn,
28231 (L-1).0 and (L-1).V shouldn't make any difference, and having
28232 the loclist entry refer to the .loc entry might be useful, so
28233 leave it like this. */
28234 newloc->view = view;
28237 if (var_loc_p && flag_debug_asm)
28239 const char *name, *sep, *patstr;
28240 if (decl && DECL_NAME (decl))
28241 name = IDENTIFIER_POINTER (DECL_NAME (decl));
28242 else
28243 name = "";
28244 if (NOTE_VAR_LOCATION_LOC (loc_note))
28246 sep = " => ";
28247 patstr = str_pattern_slim (NOTE_VAR_LOCATION_LOC (loc_note));
28249 else
28251 sep = " ";
28252 patstr = "RESET";
28254 fprintf (asm_out_file, "\t%s DEBUG %s%s%s\n", ASM_COMMENT_START,
28255 name, sep, patstr);
28258 last_var_location_insn = next_real;
28259 last_in_cold_section_p = in_cold_section_p;
28262 /* Check whether BLOCK, a lexical block, is nested within OUTER, or is
28263 OUTER itself. If BOTHWAYS, check not only that BLOCK can reach
28264 OUTER through BLOCK_SUPERCONTEXT links, but also that there is a
28265 path from OUTER to BLOCK through BLOCK_SUBBLOCKs and
28266 BLOCK_FRAGMENT_ORIGIN links. */
28267 static bool
28268 block_within_block_p (tree block, tree outer, bool bothways)
28270 if (block == outer)
28271 return true;
28273 /* Quickly check that OUTER is up BLOCK's supercontext chain. */
28274 for (tree context = BLOCK_SUPERCONTEXT (block);
28275 context != outer;
28276 context = BLOCK_SUPERCONTEXT (context))
28277 if (!context || TREE_CODE (context) != BLOCK)
28278 return false;
28280 if (!bothways)
28281 return true;
28283 /* Now check that each block is actually referenced by its
28284 parent. */
28285 for (tree context = BLOCK_SUPERCONTEXT (block); ;
28286 context = BLOCK_SUPERCONTEXT (context))
28288 if (BLOCK_FRAGMENT_ORIGIN (context))
28290 gcc_assert (!BLOCK_SUBBLOCKS (context));
28291 context = BLOCK_FRAGMENT_ORIGIN (context);
28293 for (tree sub = BLOCK_SUBBLOCKS (context);
28294 sub != block;
28295 sub = BLOCK_CHAIN (sub))
28296 if (!sub)
28297 return false;
28298 if (context == outer)
28299 return true;
28300 else
28301 block = context;
28305 /* Called during final while assembling the marker of the entry point
28306 for an inlined function. */
28308 static void
28309 dwarf2out_inline_entry (tree block)
28311 gcc_assert (debug_inline_points);
28313 /* If we can't represent it, don't bother. */
28314 if (!(dwarf_version >= 3 || !dwarf_strict))
28315 return;
28317 gcc_assert (DECL_P (block_ultimate_origin (block)));
28319 /* Sanity check the block tree. This would catch a case in which
28320 BLOCK got removed from the tree reachable from the outermost
28321 lexical block, but got retained in markers. It would still link
28322 back to its parents, but some ancestor would be missing a link
28323 down the path to the sub BLOCK. If the block got removed, its
28324 BLOCK_NUMBER will not be a usable value. */
28325 if (flag_checking)
28326 gcc_assert (block_within_block_p (block,
28327 DECL_INITIAL (current_function_decl),
28328 true));
28330 gcc_assert (inlined_function_outer_scope_p (block));
28331 gcc_assert (!lookup_block_die (block));
28333 if (BLOCK_FRAGMENT_ORIGIN (block))
28334 block = BLOCK_FRAGMENT_ORIGIN (block);
28335 /* Can the entry point ever not be at the beginning of an
28336 unfragmented lexical block? */
28337 else if (!(BLOCK_FRAGMENT_CHAIN (block)
28338 || (cur_line_info_table
28339 && !ZERO_VIEW_P (cur_line_info_table->view))))
28340 return;
28342 if (!inline_entry_data_table)
28343 inline_entry_data_table
28344 = hash_table<inline_entry_data_hasher>::create_ggc (10);
28347 inline_entry_data **iedp
28348 = inline_entry_data_table->find_slot_with_hash (block,
28349 htab_hash_pointer (block),
28350 INSERT);
28351 if (*iedp)
28352 /* ??? Ideally, we'd record all entry points for the same inlined
28353 function (some may have been duplicated by e.g. unrolling), but
28354 we have no way to represent that ATM. */
28355 return;
28357 inline_entry_data *ied = *iedp = ggc_cleared_alloc<inline_entry_data> ();
28358 ied->block = block;
28359 ied->label_pfx = BLOCK_INLINE_ENTRY_LABEL;
28360 ied->label_num = BLOCK_NUMBER (block);
28361 if (cur_line_info_table)
28362 ied->view = cur_line_info_table->view;
28364 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, BLOCK_INLINE_ENTRY_LABEL,
28365 BLOCK_NUMBER (block));
28368 /* Called from finalize_size_functions for size functions so that their body
28369 can be encoded in the debug info to describe the layout of variable-length
28370 structures. */
28372 static void
28373 dwarf2out_size_function (tree decl)
28375 set_early_dwarf s;
28376 function_to_dwarf_procedure (decl);
28379 /* Note in one location list that text section has changed. */
28382 var_location_switch_text_section_1 (var_loc_list **slot, void *)
28384 var_loc_list *list = *slot;
28385 if (list->first)
28386 list->last_before_switch
28387 = list->last->next ? list->last->next : list->last;
28388 return 1;
28391 /* Note in all location lists that text section has changed. */
28393 static void
28394 var_location_switch_text_section (void)
28396 if (decl_loc_table == NULL)
28397 return;
28399 decl_loc_table->traverse<void *, var_location_switch_text_section_1> (NULL);
28402 /* Create a new line number table. */
28404 static dw_line_info_table *
28405 new_line_info_table (void)
28407 dw_line_info_table *table;
28409 table = ggc_cleared_alloc<dw_line_info_table> ();
28410 table->file_num = 1;
28411 table->line_num = 1;
28412 table->is_stmt = DWARF_LINE_DEFAULT_IS_STMT_START;
28413 FORCE_RESET_NEXT_VIEW (table->view);
28414 table->symviews_since_reset = 0;
28416 return table;
28419 /* Lookup the "current" table into which we emit line info, so
28420 that we don't have to do it for every source line. */
28422 static void
28423 set_cur_line_info_table (section *sec)
28425 dw_line_info_table *table;
28427 if (sec == text_section)
28428 table = text_section_line_info;
28429 else if (sec == cold_text_section)
28431 table = cold_text_section_line_info;
28432 if (!table)
28434 cold_text_section_line_info = table = new_line_info_table ();
28435 table->end_label = cold_end_label;
28438 else
28440 const char *end_label;
28442 if (crtl->has_bb_partition)
28444 if (in_cold_section_p)
28445 end_label = crtl->subsections.cold_section_end_label;
28446 else
28447 end_label = crtl->subsections.hot_section_end_label;
28449 else
28451 char label[MAX_ARTIFICIAL_LABEL_BYTES];
28452 ASM_GENERATE_INTERNAL_LABEL (label, FUNC_END_LABEL,
28453 current_function_funcdef_no);
28454 end_label = ggc_strdup (label);
28457 table = new_line_info_table ();
28458 table->end_label = end_label;
28460 vec_safe_push (separate_line_info, table);
28463 if (output_asm_line_debug_info ())
28464 table->is_stmt = (cur_line_info_table
28465 ? cur_line_info_table->is_stmt
28466 : DWARF_LINE_DEFAULT_IS_STMT_START);
28467 cur_line_info_table = table;
28471 /* We need to reset the locations at the beginning of each
28472 function. We can't do this in the end_function hook, because the
28473 declarations that use the locations won't have been output when
28474 that hook is called. Also compute have_multiple_function_sections here. */
28476 static void
28477 dwarf2out_begin_function (tree fun)
28479 section *sec = function_section (fun);
28481 if (sec != text_section)
28482 have_multiple_function_sections = true;
28484 if (crtl->has_bb_partition && !cold_text_section)
28486 gcc_assert (current_function_decl == fun);
28487 cold_text_section = unlikely_text_section ();
28488 switch_to_section (cold_text_section);
28489 ASM_OUTPUT_LABEL (asm_out_file, cold_text_section_label);
28490 switch_to_section (sec);
28493 call_site_count = 0;
28494 tail_call_site_count = 0;
28496 set_cur_line_info_table (sec);
28497 FORCE_RESET_NEXT_VIEW (cur_line_info_table->view);
28500 /* Helper function of dwarf2out_end_function, called only after emitting
28501 the very first function into assembly. Check if some .debug_loc range
28502 might end with a .LVL* label that could be equal to .Ltext0.
28503 In that case we must force using absolute addresses in .debug_loc ranges,
28504 because this range could be .LVLN-.Ltext0 .. .LVLM-.Ltext0 for
28505 .LVLN == .LVLM == .Ltext0, thus 0 .. 0, which is a .debug_loc
28506 list terminator.
28507 Set have_multiple_function_sections to true in that case and
28508 terminate htab traversal. */
28511 find_empty_loc_ranges_at_text_label (var_loc_list **slot, int)
28513 var_loc_list *entry = *slot;
28514 struct var_loc_node *node;
28516 node = entry->first;
28517 if (node && node->next && node->next->label)
28519 unsigned int i;
28520 const char *label = node->next->label;
28521 char loclabel[MAX_ARTIFICIAL_LABEL_BYTES];
28523 for (i = 0; i < first_loclabel_num_not_at_text_label; i++)
28525 ASM_GENERATE_INTERNAL_LABEL (loclabel, "LVL", i);
28526 if (strcmp (label, loclabel) == 0)
28528 have_multiple_function_sections = true;
28529 return 0;
28533 return 1;
28536 /* Hook called after emitting a function into assembly.
28537 This does something only for the very first function emitted. */
28539 static void
28540 dwarf2out_end_function (unsigned int)
28542 if (in_first_function_p
28543 && !have_multiple_function_sections
28544 && first_loclabel_num_not_at_text_label
28545 && decl_loc_table)
28546 decl_loc_table->traverse<int, find_empty_loc_ranges_at_text_label> (0);
28547 in_first_function_p = false;
28548 maybe_at_text_label_p = false;
28551 /* Temporary holder for dwarf2out_register_main_translation_unit. Used to let
28552 front-ends register a translation unit even before dwarf2out_init is
28553 called. */
28554 static tree main_translation_unit = NULL_TREE;
28556 /* Hook called by front-ends after they built their main translation unit.
28557 Associate comp_unit_die to UNIT. */
28559 static void
28560 dwarf2out_register_main_translation_unit (tree unit)
28562 gcc_assert (TREE_CODE (unit) == TRANSLATION_UNIT_DECL
28563 && main_translation_unit == NULL_TREE);
28564 main_translation_unit = unit;
28565 /* If dwarf2out_init has not been called yet, it will perform the association
28566 itself looking at main_translation_unit. */
28567 if (decl_die_table != NULL)
28568 equate_decl_number_to_die (unit, comp_unit_die ());
28571 /* Add OPCODE+VAL as an entry at the end of the opcode array in TABLE. */
28573 static void
28574 push_dw_line_info_entry (dw_line_info_table *table,
28575 enum dw_line_info_opcode opcode, unsigned int val)
28577 dw_line_info_entry e;
28578 e.opcode = opcode;
28579 e.val = val;
28580 vec_safe_push (table->entries, e);
28583 /* Output a label to mark the beginning of a source code line entry
28584 and record information relating to this source line, in
28585 'line_info_table' for later output of the .debug_line section. */
28586 /* ??? The discriminator parameter ought to be unsigned. */
28588 static void
28589 dwarf2out_source_line (unsigned int line, unsigned int column,
28590 const char *filename,
28591 int discriminator, bool is_stmt)
28593 unsigned int file_num;
28594 dw_line_info_table *table;
28595 static var_loc_view lvugid;
28597 /* 'line_info_table' information gathering is not needed when the debug
28598 info level is set to the lowest value. Also, the current DWARF-based
28599 debug formats do not use this info. */
28600 if (debug_info_level < DINFO_LEVEL_TERSE || !dwarf_debuginfo_p ())
28601 return;
28603 table = cur_line_info_table;
28605 if (line == 0)
28607 if (debug_variable_location_views
28608 && output_asm_line_debug_info ()
28609 && table && !RESETTING_VIEW_P (table->view))
28611 /* If we're using the assembler to compute view numbers, we
28612 can't issue a .loc directive for line zero, so we can't
28613 get a view number at this point. We might attempt to
28614 compute it from the previous view, or equate it to a
28615 subsequent view (though it might not be there!), but
28616 since we're omitting the line number entry, we might as
28617 well omit the view number as well. That means pretending
28618 it's a view number zero, which might very well turn out
28619 to be correct. ??? Extend the assembler so that the
28620 compiler could emit e.g. ".locview .LVU#", to output a
28621 view without changing line number information. We'd then
28622 have to count it in symviews_since_reset; when it's omitted,
28623 it doesn't count. */
28624 if (!zero_view_p)
28625 zero_view_p = BITMAP_GGC_ALLOC ();
28626 bitmap_set_bit (zero_view_p, table->view);
28627 if (flag_debug_asm)
28629 char label[MAX_ARTIFICIAL_LABEL_BYTES];
28630 ASM_GENERATE_INTERNAL_LABEL (label, "LVU", table->view);
28631 fprintf (asm_out_file, "\t%s line 0, omitted view ",
28632 ASM_COMMENT_START);
28633 assemble_name (asm_out_file, label);
28634 putc ('\n', asm_out_file);
28636 table->view = ++lvugid;
28638 return;
28641 /* The discriminator column was added in dwarf4. Simplify the below
28642 by simply removing it if we're not supposed to output it. */
28643 if (dwarf_version < 4 && dwarf_strict)
28644 discriminator = 0;
28646 if (!debug_column_info)
28647 column = 0;
28649 file_num = maybe_emit_file (lookup_filename (filename));
28651 /* ??? TODO: Elide duplicate line number entries. Traditionally,
28652 the debugger has used the second (possibly duplicate) line number
28653 at the beginning of the function to mark the end of the prologue.
28654 We could eliminate any other duplicates within the function. For
28655 Dwarf3, we ought to include the DW_LNS_set_prologue_end mark in
28656 that second line number entry. */
28657 /* Recall that this end-of-prologue indication is *not* the same thing
28658 as the end_prologue debug hook. The NOTE_INSN_PROLOGUE_END note,
28659 to which the hook corresponds, follows the last insn that was
28660 emitted by gen_prologue. What we need is to precede the first insn
28661 that had been emitted after NOTE_INSN_FUNCTION_BEG, i.e. the first
28662 insn that corresponds to something the user wrote. These may be
28663 very different locations once scheduling is enabled. */
28665 if (0 && file_num == table->file_num
28666 && line == table->line_num
28667 && column == table->column_num
28668 && discriminator == table->discrim_num
28669 && is_stmt == table->is_stmt)
28670 return;
28672 switch_to_section (current_function_section ());
28674 /* If requested, emit something human-readable. */
28675 if (flag_debug_asm)
28677 if (debug_column_info)
28678 fprintf (asm_out_file, "\t%s %s:%d:%d\n", ASM_COMMENT_START,
28679 filename, line, column);
28680 else
28681 fprintf (asm_out_file, "\t%s %s:%d\n", ASM_COMMENT_START,
28682 filename, line);
28685 if (output_asm_line_debug_info ())
28687 /* Emit the .loc directive understood by GNU as. */
28688 /* "\t.loc %u %u 0 is_stmt %u discriminator %u",
28689 file_num, line, is_stmt, discriminator */
28690 fputs ("\t.loc ", asm_out_file);
28691 fprint_ul (asm_out_file, file_num);
28692 putc (' ', asm_out_file);
28693 fprint_ul (asm_out_file, line);
28694 putc (' ', asm_out_file);
28695 fprint_ul (asm_out_file, column);
28697 if (is_stmt != table->is_stmt)
28699 #if HAVE_GAS_LOC_STMT
28700 fputs (" is_stmt ", asm_out_file);
28701 putc (is_stmt ? '1' : '0', asm_out_file);
28702 #endif
28704 if (SUPPORTS_DISCRIMINATOR && discriminator != 0)
28706 gcc_assert (discriminator > 0);
28707 fputs (" discriminator ", asm_out_file);
28708 fprint_ul (asm_out_file, (unsigned long) discriminator);
28710 if (debug_variable_location_views)
28712 if (!RESETTING_VIEW_P (table->view))
28714 table->symviews_since_reset++;
28715 if (table->symviews_since_reset > symview_upper_bound)
28716 symview_upper_bound = table->symviews_since_reset;
28717 /* When we're using the assembler to compute view
28718 numbers, we output symbolic labels after "view" in
28719 .loc directives, and the assembler will set them for
28720 us, so that we can refer to the view numbers in
28721 location lists. The only exceptions are when we know
28722 a view will be zero: "-0" is a forced reset, used
28723 e.g. in the beginning of functions, whereas "0" tells
28724 the assembler to check that there was a PC change
28725 since the previous view, in a way that implicitly
28726 resets the next view. */
28727 fputs (" view ", asm_out_file);
28728 char label[MAX_ARTIFICIAL_LABEL_BYTES];
28729 ASM_GENERATE_INTERNAL_LABEL (label, "LVU", table->view);
28730 assemble_name (asm_out_file, label);
28731 table->view = ++lvugid;
28733 else
28735 table->symviews_since_reset = 0;
28736 if (FORCE_RESETTING_VIEW_P (table->view))
28737 fputs (" view -0", asm_out_file);
28738 else
28739 fputs (" view 0", asm_out_file);
28740 /* Mark the present view as a zero view. Earlier debug
28741 binds may have already added its id to loclists to be
28742 emitted later, so we can't reuse the id for something
28743 else. However, it's good to know whether a view is
28744 known to be zero, because then we may be able to
28745 optimize out locviews that are all zeros, so take
28746 note of it in zero_view_p. */
28747 if (!zero_view_p)
28748 zero_view_p = BITMAP_GGC_ALLOC ();
28749 bitmap_set_bit (zero_view_p, lvugid);
28750 table->view = ++lvugid;
28753 putc ('\n', asm_out_file);
28755 else
28757 unsigned int label_num = ++line_info_label_num;
28759 targetm.asm_out.internal_label (asm_out_file, LINE_CODE_LABEL, label_num);
28761 if (debug_variable_location_views && !RESETTING_VIEW_P (table->view))
28762 push_dw_line_info_entry (table, LI_adv_address, label_num);
28763 else
28764 push_dw_line_info_entry (table, LI_set_address, label_num);
28765 if (debug_variable_location_views)
28767 bool resetting = FORCE_RESETTING_VIEW_P (table->view);
28768 if (resetting)
28769 table->view = 0;
28771 if (flag_debug_asm)
28772 fprintf (asm_out_file, "\t%s view %s%d\n",
28773 ASM_COMMENT_START,
28774 resetting ? "-" : "",
28775 table->view);
28777 table->view++;
28779 if (file_num != table->file_num)
28780 push_dw_line_info_entry (table, LI_set_file, file_num);
28781 if (discriminator != table->discrim_num)
28782 push_dw_line_info_entry (table, LI_set_discriminator, discriminator);
28783 if (is_stmt != table->is_stmt)
28784 push_dw_line_info_entry (table, LI_negate_stmt, 0);
28785 push_dw_line_info_entry (table, LI_set_line, line);
28786 if (debug_column_info)
28787 push_dw_line_info_entry (table, LI_set_column, column);
28790 table->file_num = file_num;
28791 table->line_num = line;
28792 table->column_num = column;
28793 table->discrim_num = discriminator;
28794 table->is_stmt = is_stmt;
28795 table->in_use = true;
28798 /* Record a source file location for a DECL_IGNORED_P function. */
28800 static void
28801 dwarf2out_set_ignored_loc (unsigned int line, unsigned int column,
28802 const char *filename)
28804 dw_fde_ref fde = cfun->fde;
28806 fde->ignored_debug = false;
28807 set_cur_line_info_table (function_section (fde->decl));
28809 dwarf2out_source_line (line, column, filename, 0, true);
28812 /* Record the beginning of a new source file. */
28814 static void
28815 dwarf2out_start_source_file (unsigned int lineno, const char *filename)
28817 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
28819 macinfo_entry e;
28820 e.code = DW_MACINFO_start_file;
28821 e.lineno = lineno;
28822 e.info = ggc_strdup (filename);
28823 vec_safe_push (macinfo_table, e);
28827 /* Record the end of a source file. */
28829 static void
28830 dwarf2out_end_source_file (unsigned int lineno ATTRIBUTE_UNUSED)
28832 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
28834 macinfo_entry e;
28835 e.code = DW_MACINFO_end_file;
28836 e.lineno = lineno;
28837 e.info = NULL;
28838 vec_safe_push (macinfo_table, e);
28842 /* Called from debug_define in toplev.cc. The `buffer' parameter contains
28843 the tail part of the directive line, i.e. the part which is past the
28844 initial whitespace, #, whitespace, directive-name, whitespace part. */
28846 static void
28847 dwarf2out_define (unsigned int lineno ATTRIBUTE_UNUSED,
28848 const char *buffer ATTRIBUTE_UNUSED)
28850 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
28852 macinfo_entry e;
28853 /* Insert a dummy first entry to be able to optimize the whole
28854 predefined macro block using DW_MACRO_import. */
28855 if (macinfo_table->is_empty () && lineno <= 1)
28857 e.code = 0;
28858 e.lineno = 0;
28859 e.info = NULL;
28860 vec_safe_push (macinfo_table, e);
28862 e.code = DW_MACINFO_define;
28863 e.lineno = lineno;
28864 e.info = ggc_strdup (buffer);
28865 vec_safe_push (macinfo_table, e);
28869 /* Called from debug_undef in toplev.cc. The `buffer' parameter contains
28870 the tail part of the directive line, i.e. the part which is past the
28871 initial whitespace, #, whitespace, directive-name, whitespace part. */
28873 static void
28874 dwarf2out_undef (unsigned int lineno ATTRIBUTE_UNUSED,
28875 const char *buffer ATTRIBUTE_UNUSED)
28877 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
28879 macinfo_entry e;
28880 /* Insert a dummy first entry to be able to optimize the whole
28881 predefined macro block using DW_MACRO_import. */
28882 if (macinfo_table->is_empty () && lineno <= 1)
28884 e.code = 0;
28885 e.lineno = 0;
28886 e.info = NULL;
28887 vec_safe_push (macinfo_table, e);
28889 e.code = DW_MACINFO_undef;
28890 e.lineno = lineno;
28891 e.info = ggc_strdup (buffer);
28892 vec_safe_push (macinfo_table, e);
28896 /* Helpers to manipulate hash table of CUs. */
28898 struct macinfo_entry_hasher : nofree_ptr_hash <macinfo_entry>
28900 static inline hashval_t hash (const macinfo_entry *);
28901 static inline bool equal (const macinfo_entry *, const macinfo_entry *);
28904 inline hashval_t
28905 macinfo_entry_hasher::hash (const macinfo_entry *entry)
28907 return htab_hash_string (entry->info);
28910 inline bool
28911 macinfo_entry_hasher::equal (const macinfo_entry *entry1,
28912 const macinfo_entry *entry2)
28914 return !strcmp (entry1->info, entry2->info);
28917 typedef hash_table<macinfo_entry_hasher> macinfo_hash_type;
28919 /* Output a single .debug_macinfo entry. */
28921 static void
28922 output_macinfo_op (macinfo_entry *ref)
28924 int file_num;
28925 size_t len;
28926 struct indirect_string_node *node;
28927 char label[MAX_ARTIFICIAL_LABEL_BYTES];
28928 struct dwarf_file_data *fd;
28930 switch (ref->code)
28932 case DW_MACINFO_start_file:
28933 fd = lookup_filename (ref->info);
28934 file_num = maybe_emit_file (fd);
28935 dw2_asm_output_data (1, DW_MACINFO_start_file, "Start new file");
28936 dw2_asm_output_data_uleb128 (ref->lineno,
28937 "Included from line number %lu",
28938 (unsigned long) ref->lineno);
28939 dw2_asm_output_data_uleb128 (file_num, "file %s", ref->info);
28940 break;
28941 case DW_MACINFO_end_file:
28942 dw2_asm_output_data (1, DW_MACINFO_end_file, "End file");
28943 break;
28944 case DW_MACINFO_define:
28945 case DW_MACINFO_undef:
28946 len = strlen (ref->info) + 1;
28947 if ((!dwarf_strict || dwarf_version >= 5)
28948 && len > (size_t) dwarf_offset_size
28949 && !DWARF2_INDIRECT_STRING_SUPPORT_MISSING_ON_TARGET
28950 && (debug_str_section->common.flags & SECTION_MERGE) != 0)
28952 if (dwarf_split_debug_info && dwarf_version >= 5)
28953 ref->code = ref->code == DW_MACINFO_define
28954 ? DW_MACRO_define_strx : DW_MACRO_undef_strx;
28955 else
28956 ref->code = ref->code == DW_MACINFO_define
28957 ? DW_MACRO_define_strp : DW_MACRO_undef_strp;
28958 output_macinfo_op (ref);
28959 return;
28961 dw2_asm_output_data (1, ref->code,
28962 ref->code == DW_MACINFO_define
28963 ? "Define macro" : "Undefine macro");
28964 dw2_asm_output_data_uleb128 (ref->lineno, "At line number %lu",
28965 (unsigned long) ref->lineno);
28966 dw2_asm_output_nstring (ref->info, -1, "The macro");
28967 break;
28968 case DW_MACRO_define_strp:
28969 dw2_asm_output_data (1, ref->code, "Define macro strp");
28970 goto do_DW_MACRO_define_strpx;
28971 case DW_MACRO_undef_strp:
28972 dw2_asm_output_data (1, ref->code, "Undefine macro strp");
28973 goto do_DW_MACRO_define_strpx;
28974 case DW_MACRO_define_strx:
28975 dw2_asm_output_data (1, ref->code, "Define macro strx");
28976 goto do_DW_MACRO_define_strpx;
28977 case DW_MACRO_undef_strx:
28978 dw2_asm_output_data (1, ref->code, "Undefine macro strx");
28979 /* FALLTHRU */
28980 do_DW_MACRO_define_strpx:
28981 /* NB: dwarf2out_finish performs:
28982 1. save_macinfo_strings
28983 2. hash table traverse of index_string
28984 3. output_macinfo -> output_macinfo_op
28985 4. output_indirect_strings
28986 -> hash table traverse of output_index_string
28988 When output_macinfo_op is called, all index strings have been
28989 added to hash table by save_macinfo_strings and we can't pass
28990 INSERT to find_slot_with_hash which may expand hash table, even
28991 if no insertion is needed, and change hash table traverse order
28992 between index_string and output_index_string. */
28993 node = find_AT_string (ref->info, NO_INSERT);
28994 gcc_assert (node
28995 && (node->form == DW_FORM_strp
28996 || node->form == dwarf_FORM (DW_FORM_strx)));
28997 dw2_asm_output_data_uleb128 (ref->lineno, "At line number %lu",
28998 (unsigned long) ref->lineno);
28999 if (node->form == DW_FORM_strp)
29000 dw2_asm_output_offset (dwarf_offset_size, node->label,
29001 debug_str_section, "The macro: \"%s\"",
29002 ref->info);
29003 else
29004 dw2_asm_output_data_uleb128 (node->index, "The macro: \"%s\"",
29005 ref->info);
29006 break;
29007 case DW_MACRO_import:
29008 dw2_asm_output_data (1, ref->code, "Import");
29009 ASM_GENERATE_INTERNAL_LABEL (label,
29010 DEBUG_MACRO_SECTION_LABEL,
29011 ref->lineno + macinfo_label_base);
29012 dw2_asm_output_offset (dwarf_offset_size, label, NULL, NULL);
29013 break;
29014 default:
29015 fprintf (asm_out_file, "%s unrecognized macinfo code %lu\n",
29016 ASM_COMMENT_START, (unsigned long) ref->code);
29017 break;
29021 /* Attempt to make a sequence of define/undef macinfo ops shareable with
29022 other compilation unit .debug_macinfo sections. IDX is the first
29023 index of a define/undef, return the number of ops that should be
29024 emitted in a comdat .debug_macinfo section and emit
29025 a DW_MACRO_import entry referencing it.
29026 If the define/undef entry should be emitted normally, return 0. */
29028 static unsigned
29029 optimize_macinfo_range (unsigned int idx, vec<macinfo_entry, va_gc> *files,
29030 macinfo_hash_type **macinfo_htab)
29032 macinfo_entry *first, *second, *cur, *inc;
29033 char linebuf[sizeof (HOST_WIDE_INT) * 3 + 1];
29034 unsigned char checksum[16];
29035 struct md5_ctx ctx;
29036 char *grp_name, *tail;
29037 const char *base;
29038 unsigned int i, count, encoded_filename_len, linebuf_len;
29039 macinfo_entry **slot;
29041 first = &(*macinfo_table)[idx];
29042 second = &(*macinfo_table)[idx + 1];
29044 /* Optimize only if there are at least two consecutive define/undef ops,
29045 and either all of them are before first DW_MACINFO_start_file
29046 with lineno {0,1} (i.e. predefined macro block), or all of them are
29047 in some included header file. */
29048 if (second->code != DW_MACINFO_define && second->code != DW_MACINFO_undef)
29049 return 0;
29050 if (vec_safe_is_empty (files))
29052 if (first->lineno > 1 || second->lineno > 1)
29053 return 0;
29055 else if (first->lineno == 0)
29056 return 0;
29058 /* Find the last define/undef entry that can be grouped together
29059 with first and at the same time compute md5 checksum of their
29060 codes, linenumbers and strings. */
29061 md5_init_ctx (&ctx);
29062 for (i = idx; macinfo_table->iterate (i, &cur); i++)
29063 if (cur->code != DW_MACINFO_define && cur->code != DW_MACINFO_undef)
29064 break;
29065 else if (vec_safe_is_empty (files) && cur->lineno > 1)
29066 break;
29067 else
29069 unsigned char code = cur->code;
29070 md5_process_bytes (&code, 1, &ctx);
29071 checksum_uleb128 (cur->lineno, &ctx);
29072 md5_process_bytes (cur->info, strlen (cur->info) + 1, &ctx);
29074 md5_finish_ctx (&ctx, checksum);
29075 count = i - idx;
29077 /* From the containing include filename (if any) pick up just
29078 usable characters from its basename. */
29079 if (vec_safe_is_empty (files))
29080 base = "";
29081 else
29082 base = lbasename (files->last ().info);
29083 for (encoded_filename_len = 0, i = 0; base[i]; i++)
29084 if (ISIDNUM (base[i]) || base[i] == '.')
29085 encoded_filename_len++;
29086 /* Count . at the end. */
29087 if (encoded_filename_len)
29088 encoded_filename_len++;
29090 sprintf (linebuf, HOST_WIDE_INT_PRINT_UNSIGNED, first->lineno);
29091 linebuf_len = strlen (linebuf);
29093 /* The group name format is: wmN.[<encoded filename>.]<lineno>.<md5sum> */
29094 grp_name = XALLOCAVEC (char, 4 + encoded_filename_len + linebuf_len + 1
29095 + 16 * 2 + 1);
29096 memcpy (grp_name, dwarf_offset_size == 4 ? "wm4." : "wm8.", 4);
29097 tail = grp_name + 4;
29098 if (encoded_filename_len)
29100 for (i = 0; base[i]; i++)
29101 if (ISIDNUM (base[i]) || base[i] == '.')
29102 *tail++ = base[i];
29103 *tail++ = '.';
29105 memcpy (tail, linebuf, linebuf_len);
29106 tail += linebuf_len;
29107 *tail++ = '.';
29108 for (i = 0; i < 16; i++)
29109 sprintf (tail + i * 2, "%02x", checksum[i] & 0xff);
29111 /* Construct a macinfo_entry for DW_MACRO_import
29112 in the empty vector entry before the first define/undef. */
29113 inc = &(*macinfo_table)[idx - 1];
29114 inc->code = DW_MACRO_import;
29115 inc->lineno = 0;
29116 inc->info = ggc_strdup (grp_name);
29117 if (!*macinfo_htab)
29118 *macinfo_htab = new macinfo_hash_type (10);
29119 /* Avoid emitting duplicates. */
29120 slot = (*macinfo_htab)->find_slot (inc, INSERT);
29121 if (*slot != NULL)
29123 inc->code = 0;
29124 inc->info = NULL;
29125 /* If such an entry has been used before, just emit
29126 a DW_MACRO_import op. */
29127 inc = *slot;
29128 output_macinfo_op (inc);
29129 /* And clear all macinfo_entry in the range to avoid emitting them
29130 in the second pass. */
29131 for (i = idx; macinfo_table->iterate (i, &cur) && i < idx + count; i++)
29133 cur->code = 0;
29134 cur->info = NULL;
29137 else
29139 *slot = inc;
29140 inc->lineno = (*macinfo_htab)->elements ();
29141 output_macinfo_op (inc);
29143 return count;
29146 /* Save any strings needed by the macinfo table in the debug str
29147 table. All strings must be collected into the table by the time
29148 index_string is called. */
29150 static void
29151 save_macinfo_strings (void)
29153 unsigned len;
29154 unsigned i;
29155 macinfo_entry *ref;
29157 for (i = 0; macinfo_table && macinfo_table->iterate (i, &ref); i++)
29159 switch (ref->code)
29161 /* Match the logic in output_macinfo_op to decide on
29162 indirect strings. */
29163 case DW_MACINFO_define:
29164 case DW_MACINFO_undef:
29165 len = strlen (ref->info) + 1;
29166 if ((!dwarf_strict || dwarf_version >= 5)
29167 && len > (unsigned) dwarf_offset_size
29168 && !DWARF2_INDIRECT_STRING_SUPPORT_MISSING_ON_TARGET
29169 && (debug_str_section->common.flags & SECTION_MERGE) != 0)
29170 set_indirect_string (find_AT_string (ref->info));
29171 break;
29172 case DW_MACINFO_start_file:
29173 /* -gsplit-dwarf -g3 will also output filename as indirect
29174 string. */
29175 if (!dwarf_split_debug_info)
29176 break;
29177 /* Fall through. */
29178 case DW_MACRO_define_strp:
29179 case DW_MACRO_undef_strp:
29180 case DW_MACRO_define_strx:
29181 case DW_MACRO_undef_strx:
29182 set_indirect_string (find_AT_string (ref->info));
29183 break;
29184 default:
29185 break;
29190 /* Output macinfo section(s). */
29192 static void
29193 output_macinfo (const char *debug_line_label, bool early_lto_debug)
29195 unsigned i;
29196 unsigned long length = vec_safe_length (macinfo_table);
29197 macinfo_entry *ref;
29198 vec<macinfo_entry, va_gc> *files = NULL;
29199 macinfo_hash_type *macinfo_htab = NULL;
29200 char dl_section_ref[MAX_ARTIFICIAL_LABEL_BYTES];
29202 if (! length)
29203 return;
29205 /* output_macinfo* uses these interchangeably. */
29206 gcc_assert ((int) DW_MACINFO_define == (int) DW_MACRO_define
29207 && (int) DW_MACINFO_undef == (int) DW_MACRO_undef
29208 && (int) DW_MACINFO_start_file == (int) DW_MACRO_start_file
29209 && (int) DW_MACINFO_end_file == (int) DW_MACRO_end_file);
29211 /* AIX Assembler inserts the length, so adjust the reference to match the
29212 offset expected by debuggers. */
29213 strcpy (dl_section_ref, debug_line_label);
29214 if (XCOFF_DEBUGGING_INFO)
29215 strcat (dl_section_ref, DWARF_INITIAL_LENGTH_SIZE_STR);
29217 /* For .debug_macro emit the section header. */
29218 if (!dwarf_strict || dwarf_version >= 5)
29220 dw2_asm_output_data (2, dwarf_version >= 5 ? 5 : 4,
29221 "DWARF macro version number");
29222 if (dwarf_offset_size == 8)
29223 dw2_asm_output_data (1, 3, "Flags: 64-bit, lineptr present");
29224 else
29225 dw2_asm_output_data (1, 2, "Flags: 32-bit, lineptr present");
29226 dw2_asm_output_offset (dwarf_offset_size, debug_line_label,
29227 debug_line_section, NULL);
29230 /* In the first loop, it emits the primary .debug_macinfo section
29231 and after each emitted op the macinfo_entry is cleared.
29232 If a longer range of define/undef ops can be optimized using
29233 DW_MACRO_import, the DW_MACRO_import op is emitted and kept in
29234 the vector before the first define/undef in the range and the
29235 whole range of define/undef ops is not emitted and kept. */
29236 for (i = 0; macinfo_table->iterate (i, &ref); i++)
29238 switch (ref->code)
29240 case DW_MACINFO_start_file:
29241 vec_safe_push (files, *ref);
29242 break;
29243 case DW_MACINFO_end_file:
29244 if (!vec_safe_is_empty (files))
29245 files->pop ();
29246 break;
29247 case DW_MACINFO_define:
29248 case DW_MACINFO_undef:
29249 if ((!dwarf_strict || dwarf_version >= 5)
29250 && HAVE_COMDAT_GROUP
29251 && vec_safe_length (files) != 1
29252 && i > 0
29253 && i + 1 < length
29254 && (*macinfo_table)[i - 1].code == 0)
29256 unsigned count = optimize_macinfo_range (i, files, &macinfo_htab);
29257 if (count)
29259 i += count - 1;
29260 continue;
29263 break;
29264 case 0:
29265 /* A dummy entry may be inserted at the beginning to be able
29266 to optimize the whole block of predefined macros. */
29267 if (i == 0)
29268 continue;
29269 default:
29270 break;
29272 output_macinfo_op (ref);
29273 ref->info = NULL;
29274 ref->code = 0;
29277 if (!macinfo_htab)
29278 return;
29280 /* Save the number of transparent includes so we can adjust the
29281 label number for the fat LTO object DWARF. */
29282 unsigned macinfo_label_base_adj = macinfo_htab->elements ();
29284 delete macinfo_htab;
29285 macinfo_htab = NULL;
29287 /* If any DW_MACRO_import were used, on those DW_MACRO_import entries
29288 terminate the current chain and switch to a new comdat .debug_macinfo
29289 section and emit the define/undef entries within it. */
29290 for (i = 0; macinfo_table->iterate (i, &ref); i++)
29291 switch (ref->code)
29293 case 0:
29294 continue;
29295 case DW_MACRO_import:
29297 char label[MAX_ARTIFICIAL_LABEL_BYTES];
29298 tree comdat_key = get_identifier (ref->info);
29299 /* Terminate the previous .debug_macinfo section. */
29300 dw2_asm_output_data (1, 0, "End compilation unit");
29301 targetm.asm_out.named_section (debug_macinfo_section_name,
29302 SECTION_DEBUG
29303 | SECTION_LINKONCE
29304 | (early_lto_debug
29305 ? SECTION_EXCLUDE : 0),
29306 comdat_key);
29307 ASM_GENERATE_INTERNAL_LABEL (label,
29308 DEBUG_MACRO_SECTION_LABEL,
29309 ref->lineno + macinfo_label_base);
29310 ASM_OUTPUT_LABEL (asm_out_file, label);
29311 ref->code = 0;
29312 ref->info = NULL;
29313 dw2_asm_output_data (2, dwarf_version >= 5 ? 5 : 4,
29314 "DWARF macro version number");
29315 if (dwarf_offset_size == 8)
29316 dw2_asm_output_data (1, 1, "Flags: 64-bit");
29317 else
29318 dw2_asm_output_data (1, 0, "Flags: 32-bit");
29320 break;
29321 case DW_MACINFO_define:
29322 case DW_MACINFO_undef:
29323 output_macinfo_op (ref);
29324 ref->code = 0;
29325 ref->info = NULL;
29326 break;
29327 default:
29328 gcc_unreachable ();
29331 macinfo_label_base += macinfo_label_base_adj;
29334 /* As init_sections_and_labels may get called multiple times, have a
29335 generation count for labels. */
29336 static unsigned init_sections_and_labels_generation;
29338 /* Initialize the various sections and labels for dwarf output and prefix
29339 them with PREFIX if non-NULL. Returns the generation (zero based
29340 number of times function was called). */
29342 static unsigned
29343 init_sections_and_labels (bool early_lto_debug)
29345 if (early_lto_debug)
29347 if (!dwarf_split_debug_info)
29349 debug_info_section = get_section (DEBUG_LTO_INFO_SECTION,
29350 SECTION_DEBUG | SECTION_EXCLUDE,
29351 NULL);
29352 debug_abbrev_section = get_section (DEBUG_LTO_ABBREV_SECTION,
29353 SECTION_DEBUG | SECTION_EXCLUDE,
29354 NULL);
29355 debug_macinfo_section_name
29356 = ((dwarf_strict && dwarf_version < 5)
29357 ? DEBUG_LTO_MACINFO_SECTION : DEBUG_LTO_MACRO_SECTION);
29358 debug_macinfo_section = get_section (debug_macinfo_section_name,
29359 SECTION_DEBUG
29360 | SECTION_EXCLUDE, NULL);
29362 else
29364 /* ??? Which of the following do we need early? */
29365 debug_info_section = get_section (DEBUG_LTO_DWO_INFO_SECTION,
29366 SECTION_DEBUG | SECTION_EXCLUDE,
29367 NULL);
29368 debug_abbrev_section = get_section (DEBUG_LTO_DWO_ABBREV_SECTION,
29369 SECTION_DEBUG | SECTION_EXCLUDE,
29370 NULL);
29371 debug_skeleton_info_section = get_section (DEBUG_LTO_INFO_SECTION,
29372 SECTION_DEBUG
29373 | SECTION_EXCLUDE, NULL);
29374 debug_skeleton_abbrev_section
29375 = get_section (DEBUG_LTO_ABBREV_SECTION,
29376 SECTION_DEBUG | SECTION_EXCLUDE, NULL);
29377 ASM_GENERATE_INTERNAL_LABEL (debug_skeleton_abbrev_section_label,
29378 DEBUG_SKELETON_ABBREV_SECTION_LABEL,
29379 init_sections_and_labels_generation);
29381 /* Somewhat confusing detail: The skeleton_[abbrev|info] sections
29382 stay in the main .o, but the skeleton_line goes into the split
29383 off dwo. */
29384 debug_skeleton_line_section
29385 = get_section (DEBUG_LTO_LINE_SECTION,
29386 SECTION_DEBUG | SECTION_EXCLUDE, NULL);
29387 ASM_GENERATE_INTERNAL_LABEL (debug_skeleton_line_section_label,
29388 DEBUG_SKELETON_LINE_SECTION_LABEL,
29389 init_sections_and_labels_generation);
29390 debug_str_offsets_section
29391 = get_section (DEBUG_LTO_DWO_STR_OFFSETS_SECTION,
29392 SECTION_DEBUG | SECTION_EXCLUDE,
29393 NULL);
29394 ASM_GENERATE_INTERNAL_LABEL (debug_skeleton_info_section_label,
29395 DEBUG_SKELETON_INFO_SECTION_LABEL,
29396 init_sections_and_labels_generation);
29397 debug_str_dwo_section = get_section (DEBUG_LTO_STR_DWO_SECTION,
29398 DEBUG_STR_DWO_SECTION_FLAGS,
29399 NULL);
29400 debug_macinfo_section_name
29401 = ((dwarf_strict && dwarf_version < 5)
29402 ? DEBUG_LTO_DWO_MACINFO_SECTION : DEBUG_LTO_DWO_MACRO_SECTION);
29403 debug_macinfo_section = get_section (debug_macinfo_section_name,
29404 SECTION_DEBUG | SECTION_EXCLUDE,
29405 NULL);
29407 /* For macro info and the file table we have to refer to a
29408 debug_line section. */
29409 debug_line_section = get_section (DEBUG_LTO_LINE_SECTION,
29410 SECTION_DEBUG | SECTION_EXCLUDE, NULL);
29411 ASM_GENERATE_INTERNAL_LABEL (debug_line_section_label,
29412 DEBUG_LINE_SECTION_LABEL,
29413 init_sections_and_labels_generation);
29415 debug_str_section = get_section (DEBUG_LTO_STR_SECTION,
29416 DEBUG_STR_SECTION_FLAGS
29417 | SECTION_EXCLUDE, NULL);
29418 if (!dwarf_split_debug_info)
29419 debug_line_str_section
29420 = get_section (DEBUG_LTO_LINE_STR_SECTION,
29421 DEBUG_STR_SECTION_FLAGS | SECTION_EXCLUDE, NULL);
29423 else
29425 if (!dwarf_split_debug_info)
29427 debug_info_section = get_section (DEBUG_INFO_SECTION,
29428 SECTION_DEBUG, NULL);
29429 debug_abbrev_section = get_section (DEBUG_ABBREV_SECTION,
29430 SECTION_DEBUG, NULL);
29431 debug_loc_section = get_section (dwarf_version >= 5
29432 ? DEBUG_LOCLISTS_SECTION
29433 : DEBUG_LOC_SECTION,
29434 SECTION_DEBUG, NULL);
29435 debug_macinfo_section_name
29436 = ((dwarf_strict && dwarf_version < 5)
29437 ? DEBUG_MACINFO_SECTION : DEBUG_MACRO_SECTION);
29438 debug_macinfo_section = get_section (debug_macinfo_section_name,
29439 SECTION_DEBUG, NULL);
29441 else
29443 debug_info_section = get_section (DEBUG_DWO_INFO_SECTION,
29444 SECTION_DEBUG | SECTION_EXCLUDE,
29445 NULL);
29446 debug_abbrev_section = get_section (DEBUG_DWO_ABBREV_SECTION,
29447 SECTION_DEBUG | SECTION_EXCLUDE,
29448 NULL);
29449 debug_addr_section = get_section (DEBUG_ADDR_SECTION,
29450 SECTION_DEBUG, NULL);
29451 debug_skeleton_info_section = get_section (DEBUG_INFO_SECTION,
29452 SECTION_DEBUG, NULL);
29453 debug_skeleton_abbrev_section = get_section (DEBUG_ABBREV_SECTION,
29454 SECTION_DEBUG, NULL);
29455 ASM_GENERATE_INTERNAL_LABEL (debug_skeleton_abbrev_section_label,
29456 DEBUG_SKELETON_ABBREV_SECTION_LABEL,
29457 init_sections_and_labels_generation);
29459 /* Somewhat confusing detail: The skeleton_[abbrev|info] sections
29460 stay in the main .o, but the skeleton_line goes into the
29461 split off dwo. */
29462 debug_skeleton_line_section
29463 = get_section (DEBUG_DWO_LINE_SECTION,
29464 SECTION_DEBUG | SECTION_EXCLUDE, NULL);
29465 ASM_GENERATE_INTERNAL_LABEL (debug_skeleton_line_section_label,
29466 DEBUG_SKELETON_LINE_SECTION_LABEL,
29467 init_sections_and_labels_generation);
29468 debug_str_offsets_section
29469 = get_section (DEBUG_DWO_STR_OFFSETS_SECTION,
29470 SECTION_DEBUG | SECTION_EXCLUDE, NULL);
29471 ASM_GENERATE_INTERNAL_LABEL (debug_skeleton_info_section_label,
29472 DEBUG_SKELETON_INFO_SECTION_LABEL,
29473 init_sections_and_labels_generation);
29474 debug_loc_section = get_section (dwarf_version >= 5
29475 ? DEBUG_DWO_LOCLISTS_SECTION
29476 : DEBUG_DWO_LOC_SECTION,
29477 SECTION_DEBUG | SECTION_EXCLUDE,
29478 NULL);
29479 debug_str_dwo_section = get_section (DEBUG_STR_DWO_SECTION,
29480 DEBUG_STR_DWO_SECTION_FLAGS,
29481 NULL);
29482 debug_macinfo_section_name
29483 = ((dwarf_strict && dwarf_version < 5)
29484 ? DEBUG_DWO_MACINFO_SECTION : DEBUG_DWO_MACRO_SECTION);
29485 debug_macinfo_section = get_section (debug_macinfo_section_name,
29486 SECTION_DEBUG | SECTION_EXCLUDE,
29487 NULL);
29488 if (dwarf_version >= 5)
29489 debug_ranges_dwo_section
29490 = get_section (DEBUG_DWO_RNGLISTS_SECTION,
29491 SECTION_DEBUG | SECTION_EXCLUDE, NULL);
29493 debug_aranges_section = get_section (DEBUG_ARANGES_SECTION,
29494 SECTION_DEBUG, NULL);
29495 debug_line_section = get_section (DEBUG_LINE_SECTION,
29496 SECTION_DEBUG, NULL);
29497 debug_pubnames_section = get_section (DEBUG_PUBNAMES_SECTION,
29498 SECTION_DEBUG, NULL);
29499 debug_pubtypes_section = get_section (DEBUG_PUBTYPES_SECTION,
29500 SECTION_DEBUG, NULL);
29501 debug_str_section = get_section (DEBUG_STR_SECTION,
29502 DEBUG_STR_SECTION_FLAGS, NULL);
29503 if ((!dwarf_split_debug_info && !output_asm_line_debug_info ())
29504 || asm_outputs_debug_line_str ())
29505 debug_line_str_section = get_section (DEBUG_LINE_STR_SECTION,
29506 DEBUG_STR_SECTION_FLAGS, NULL);
29508 debug_ranges_section = get_section (dwarf_version >= 5
29509 ? DEBUG_RNGLISTS_SECTION
29510 : DEBUG_RANGES_SECTION,
29511 SECTION_DEBUG, NULL);
29512 debug_frame_section = get_section (DEBUG_FRAME_SECTION,
29513 SECTION_DEBUG, NULL);
29516 ASM_GENERATE_INTERNAL_LABEL (abbrev_section_label,
29517 DEBUG_ABBREV_SECTION_LABEL,
29518 init_sections_and_labels_generation);
29519 ASM_GENERATE_INTERNAL_LABEL (debug_info_section_label,
29520 DEBUG_INFO_SECTION_LABEL,
29521 init_sections_and_labels_generation);
29522 info_section_emitted = false;
29523 ASM_GENERATE_INTERNAL_LABEL (debug_line_section_label,
29524 DEBUG_LINE_SECTION_LABEL,
29525 init_sections_and_labels_generation);
29526 /* There are up to 6 unique ranges labels per generation.
29527 See also output_rnglists. */
29528 ASM_GENERATE_INTERNAL_LABEL (ranges_section_label,
29529 DEBUG_RANGES_SECTION_LABEL,
29530 init_sections_and_labels_generation * 6);
29531 if (dwarf_version >= 5 && dwarf_split_debug_info)
29532 ASM_GENERATE_INTERNAL_LABEL (ranges_base_label,
29533 DEBUG_RANGES_SECTION_LABEL,
29534 1 + init_sections_and_labels_generation * 6);
29535 ASM_GENERATE_INTERNAL_LABEL (debug_addr_section_label,
29536 DEBUG_ADDR_SECTION_LABEL,
29537 init_sections_and_labels_generation);
29538 ASM_GENERATE_INTERNAL_LABEL (macinfo_section_label,
29539 (dwarf_strict && dwarf_version < 5)
29540 ? DEBUG_MACINFO_SECTION_LABEL
29541 : DEBUG_MACRO_SECTION_LABEL,
29542 init_sections_and_labels_generation);
29543 ASM_GENERATE_INTERNAL_LABEL (loc_section_label, DEBUG_LOC_SECTION_LABEL,
29544 init_sections_and_labels_generation);
29546 ++init_sections_and_labels_generation;
29547 return init_sections_and_labels_generation - 1;
29550 /* Set up for Dwarf output at the start of compilation. */
29552 static void
29553 dwarf2out_init (const char *filename ATTRIBUTE_UNUSED)
29555 /* Allocate the file_table. */
29556 file_table = hash_table<dwarf_file_hasher>::create_ggc (50);
29558 #ifndef DWARF2_LINENO_DEBUGGING_INFO
29559 /* Allocate the decl_die_table. */
29560 decl_die_table = hash_table<decl_die_hasher>::create_ggc (10);
29562 /* Allocate the decl_loc_table. */
29563 decl_loc_table = hash_table<decl_loc_hasher>::create_ggc (10);
29565 /* Allocate the cached_dw_loc_list_table. */
29566 cached_dw_loc_list_table = hash_table<dw_loc_list_hasher>::create_ggc (10);
29568 /* Allocate the initial hunk of the abbrev_die_table. */
29569 vec_alloc (abbrev_die_table, 256);
29570 /* Zero-th entry is allocated, but unused. */
29571 abbrev_die_table->quick_push (NULL);
29573 /* Allocate the dwarf_proc_stack_usage_map. */
29574 dwarf_proc_stack_usage_map = new hash_map<dw_die_ref, int>;
29576 /* Allocate the pubtypes and pubnames vectors. */
29577 vec_alloc (pubname_table, 32);
29578 vec_alloc (pubtype_table, 32);
29580 vec_alloc (incomplete_types, 64);
29582 vec_alloc (used_rtx_array, 32);
29584 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
29585 vec_alloc (macinfo_table, 64);
29586 #endif
29588 /* If front-ends already registered a main translation unit but we were not
29589 ready to perform the association, do this now. */
29590 if (main_translation_unit != NULL_TREE)
29591 equate_decl_number_to_die (main_translation_unit, comp_unit_die ());
29594 /* Called before compile () starts outputtting functions, variables
29595 and toplevel asms into assembly. */
29597 static void
29598 dwarf2out_assembly_start (void)
29600 if (text_section_line_info)
29601 return;
29603 #ifndef DWARF2_LINENO_DEBUGGING_INFO
29604 ASM_GENERATE_INTERNAL_LABEL (text_section_label, TEXT_SECTION_LABEL, 0);
29605 ASM_GENERATE_INTERNAL_LABEL (text_end_label, TEXT_END_LABEL, 0);
29606 ASM_GENERATE_INTERNAL_LABEL (cold_text_section_label,
29607 COLD_TEXT_SECTION_LABEL, 0);
29608 ASM_GENERATE_INTERNAL_LABEL (cold_end_label, COLD_END_LABEL, 0);
29610 switch_to_section (text_section);
29611 ASM_OUTPUT_LABEL (asm_out_file, text_section_label);
29612 #endif
29614 /* Make sure the line number table for .text always exists. */
29615 text_section_line_info = new_line_info_table ();
29616 text_section_line_info->end_label = text_end_label;
29618 #ifdef DWARF2_LINENO_DEBUGGING_INFO
29619 cur_line_info_table = text_section_line_info;
29620 #endif
29622 if (HAVE_GAS_CFI_SECTIONS_DIRECTIVE
29623 && dwarf2out_do_cfi_asm ()
29624 && !dwarf2out_do_eh_frame ())
29625 fprintf (asm_out_file, "\t.cfi_sections\t.debug_frame\n");
29627 #if defined(HAVE_AS_GDWARF_5_DEBUG_FLAG) && defined(HAVE_AS_WORKING_DWARF_N_FLAG)
29628 if (output_asm_line_debug_info () && dwarf_version >= 5)
29630 /* When gas outputs DWARF5 .debug_line[_str] then we have to
29631 tell it the comp_dir and main file name for the zero entry
29632 line table. */
29633 const char *comp_dir, *filename0;
29635 comp_dir = comp_dir_string ();
29636 if (comp_dir == NULL)
29637 comp_dir = "";
29639 filename0 = get_AT_string (comp_unit_die (), DW_AT_name);
29640 if (filename0 == NULL)
29641 filename0 = "";
29643 fprintf (asm_out_file, "\t.file 0 ");
29644 output_quoted_string (asm_out_file, remap_debug_filename (comp_dir));
29645 fputc (' ', asm_out_file);
29646 output_quoted_string (asm_out_file, remap_debug_filename (filename0));
29647 fputc ('\n', asm_out_file);
29649 else
29650 #endif
29651 /* Work around for PR101575: output a dummy .file directive. */
29652 if (!last_emitted_file && dwarf_debuginfo_p ()
29653 && debug_info_level >= DINFO_LEVEL_TERSE)
29655 const char *filename0 = get_AT_string (comp_unit_die (), DW_AT_name);
29657 if (filename0 == NULL)
29658 filename0 = "<dummy>";
29659 maybe_emit_file (lookup_filename (filename0));
29663 /* A helper function for dwarf2out_finish called through
29664 htab_traverse. Assign a string its index. All strings must be
29665 collected into the table by the time index_string is called,
29666 because the indexing code relies on htab_traverse to traverse nodes
29667 in the same order for each run. */
29670 index_string (indirect_string_node **h, unsigned int *index)
29672 indirect_string_node *node = *h;
29674 find_string_form (node);
29675 if (node->form == dwarf_FORM (DW_FORM_strx) && node->refcount > 0)
29677 gcc_assert (node->index == NO_INDEX_ASSIGNED);
29678 node->index = *index;
29679 *index += 1;
29681 return 1;
29684 /* A helper function for output_indirect_strings called through
29685 htab_traverse. Output the offset to a string and update the
29686 current offset. */
29689 output_index_string_offset (indirect_string_node **h, unsigned int *offset)
29691 indirect_string_node *node = *h;
29693 if (node->form == dwarf_FORM (DW_FORM_strx) && node->refcount > 0)
29695 /* Assert that this node has been assigned an index. */
29696 gcc_assert (node->index != NO_INDEX_ASSIGNED
29697 && node->index != NOT_INDEXED);
29698 dw2_asm_output_data (dwarf_offset_size, *offset,
29699 "indexed string 0x%x: %s", node->index, node->str);
29700 *offset += strlen (node->str) + 1;
29702 return 1;
29705 /* A helper function for dwarf2out_finish called through
29706 htab_traverse. Output the indexed string. */
29709 output_index_string (indirect_string_node **h, unsigned int *cur_idx)
29711 struct indirect_string_node *node = *h;
29713 if (node->form == dwarf_FORM (DW_FORM_strx) && node->refcount > 0)
29715 /* Assert that the strings are output in the same order as their
29716 indexes were assigned. */
29717 gcc_assert (*cur_idx == node->index);
29718 assemble_string (node->str, strlen (node->str) + 1);
29719 *cur_idx += 1;
29721 return 1;
29724 /* A helper function for output_indirect_strings. Counts the number
29725 of index strings offsets. Must match the logic of the functions
29726 output_index_string[_offsets] above. */
29728 count_index_strings (indirect_string_node **h, unsigned int *last_idx)
29730 struct indirect_string_node *node = *h;
29732 if (node->form == dwarf_FORM (DW_FORM_strx) && node->refcount > 0)
29733 *last_idx += 1;
29734 return 1;
29737 /* A helper function for dwarf2out_finish called through
29738 htab_traverse. Emit one queued .debug_str string. */
29741 output_indirect_string (indirect_string_node **h, enum dwarf_form form)
29743 struct indirect_string_node *node = *h;
29745 node->form = find_string_form (node);
29746 if (node->form == form && node->refcount > 0)
29748 ASM_OUTPUT_LABEL (asm_out_file, node->label);
29749 assemble_string (node->str, strlen (node->str) + 1);
29752 return 1;
29755 /* Output the indexed string table. */
29757 static void
29758 output_indirect_strings (void)
29760 switch_to_section (debug_str_section);
29761 if (!dwarf_split_debug_info)
29762 debug_str_hash->traverse<enum dwarf_form,
29763 output_indirect_string> (DW_FORM_strp);
29764 else
29766 unsigned int offset = 0;
29767 unsigned int cur_idx = 0;
29769 if (skeleton_debug_str_hash)
29770 skeleton_debug_str_hash->traverse<enum dwarf_form,
29771 output_indirect_string> (DW_FORM_strp);
29773 switch_to_section (debug_str_offsets_section);
29774 /* For DWARF5 the .debug_str_offsets[.dwo] section needs a unit
29775 header. Note that we don't need to generate a label to the
29776 actual index table following the header here, because this is
29777 for the split dwarf case only. In an .dwo file there is only
29778 one string offsets table (and one debug info section). But
29779 if we would start using string offset tables for the main (or
29780 skeleton) unit, then we have to add a DW_AT_str_offsets_base
29781 pointing to the actual index after the header. Split dwarf
29782 units will never have a string offsets base attribute. When
29783 a split unit is moved into a .dwp file the string offsets can
29784 be found through the .debug_cu_index section table. */
29785 if (dwarf_version >= 5)
29787 unsigned int last_idx = 0;
29788 unsigned long str_offsets_length;
29790 debug_str_hash->traverse_noresize
29791 <unsigned int *, count_index_strings> (&last_idx);
29792 str_offsets_length = last_idx * dwarf_offset_size + 4;
29793 if (DWARF_INITIAL_LENGTH_SIZE - dwarf_offset_size == 4)
29794 dw2_asm_output_data (4, 0xffffffff,
29795 "Escape value for 64-bit DWARF extension");
29796 dw2_asm_output_data (dwarf_offset_size, str_offsets_length,
29797 "Length of string offsets unit");
29798 dw2_asm_output_data (2, 5, "DWARF string offsets version");
29799 dw2_asm_output_data (2, 0, "Header zero padding");
29801 debug_str_hash->traverse_noresize
29802 <unsigned int *, output_index_string_offset> (&offset);
29803 switch_to_section (debug_str_dwo_section);
29804 debug_str_hash->traverse_noresize<unsigned int *, output_index_string>
29805 (&cur_idx);
29809 /* Callback for htab_traverse to assign an index to an entry in the
29810 table, and to write that entry to the .debug_addr section. */
29813 output_addr_table_entry (addr_table_entry **slot, unsigned int *cur_index)
29815 addr_table_entry *entry = *slot;
29817 if (entry->refcount == 0)
29819 gcc_assert (entry->index == NO_INDEX_ASSIGNED
29820 || entry->index == NOT_INDEXED);
29821 return 1;
29824 gcc_assert (entry->index == *cur_index);
29825 (*cur_index)++;
29827 switch (entry->kind)
29829 case ate_kind_rtx:
29830 dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE, entry->addr.rtl,
29831 "0x%x", entry->index);
29832 break;
29833 case ate_kind_rtx_dtprel:
29834 gcc_assert (targetm.asm_out.output_dwarf_dtprel);
29835 targetm.asm_out.output_dwarf_dtprel (asm_out_file,
29836 DWARF2_ADDR_SIZE,
29837 entry->addr.rtl);
29838 fputc ('\n', asm_out_file);
29839 break;
29840 case ate_kind_label:
29841 dw2_asm_output_addr (DWARF2_ADDR_SIZE, entry->addr.label,
29842 "0x%x", entry->index);
29843 break;
29844 default:
29845 gcc_unreachable ();
29847 return 1;
29850 /* A helper function for dwarf2out_finish. Counts the number
29851 of indexed addresses. Must match the logic of the functions
29852 output_addr_table_entry above. */
29854 count_index_addrs (addr_table_entry **slot, unsigned int *last_idx)
29856 addr_table_entry *entry = *slot;
29858 if (entry->refcount > 0)
29859 *last_idx += 1;
29860 return 1;
29863 /* Produce the .debug_addr section. */
29865 static void
29866 output_addr_table (void)
29868 unsigned int index = 0;
29869 if (addr_index_table == NULL || addr_index_table->size () == 0)
29870 return;
29872 switch_to_section (debug_addr_section);
29873 /* GNU DebugFission https://gcc.gnu.org/wiki/DebugFission
29874 which GCC uses to implement -gsplit-dwarf as DWARF GNU extension
29875 before DWARF5, didn't have a header for .debug_addr units.
29876 DWARF5 specifies a small header when address tables are used. */
29877 if (dwarf_version >= 5)
29879 unsigned int last_idx = 0;
29880 unsigned long addrs_length;
29882 addr_index_table->traverse_noresize
29883 <unsigned int *, count_index_addrs> (&last_idx);
29884 addrs_length = last_idx * DWARF2_ADDR_SIZE + 4;
29886 if (DWARF_INITIAL_LENGTH_SIZE - dwarf_offset_size == 4)
29887 dw2_asm_output_data (4, 0xffffffff,
29888 "Escape value for 64-bit DWARF extension");
29889 dw2_asm_output_data (dwarf_offset_size, addrs_length,
29890 "Length of Address Unit");
29891 dw2_asm_output_data (2, 5, "DWARF addr version");
29892 dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Size of Address");
29893 dw2_asm_output_data (1, 0, "Size of Segment Descriptor");
29895 ASM_OUTPUT_LABEL (asm_out_file, debug_addr_section_label);
29897 addr_index_table
29898 ->traverse_noresize<unsigned int *, output_addr_table_entry> (&index);
29901 #if ENABLE_ASSERT_CHECKING
29902 /* Verify that all marks are clear. */
29904 static void
29905 verify_marks_clear (dw_die_ref die)
29907 dw_die_ref c;
29909 gcc_assert (! die->die_mark);
29910 FOR_EACH_CHILD (die, c, verify_marks_clear (c));
29912 #endif /* ENABLE_ASSERT_CHECKING */
29914 /* Clear the marks for a die and its children.
29915 Be cool if the mark isn't set. */
29917 static void
29918 prune_unmark_dies (dw_die_ref die)
29920 dw_die_ref c;
29922 if (die->die_mark)
29923 die->die_mark = 0;
29924 FOR_EACH_CHILD (die, c, prune_unmark_dies (c));
29927 /* Given LOC that is referenced by a DIE we're marking as used, find all
29928 referenced DWARF procedures it references and mark them as used. */
29930 static void
29931 prune_unused_types_walk_loc_descr (dw_loc_descr_ref loc)
29933 for (; loc != NULL; loc = loc->dw_loc_next)
29934 switch (loc->dw_loc_opc)
29936 case DW_OP_implicit_pointer:
29937 case DW_OP_convert:
29938 case DW_OP_reinterpret:
29939 case DW_OP_GNU_implicit_pointer:
29940 case DW_OP_GNU_convert:
29941 case DW_OP_GNU_reinterpret:
29942 if (loc->dw_loc_oprnd1.val_class == dw_val_class_die_ref)
29943 prune_unused_types_mark (loc->dw_loc_oprnd1.v.val_die_ref.die, 1);
29944 break;
29945 case DW_OP_GNU_variable_value:
29946 if (loc->dw_loc_oprnd1.val_class == dw_val_class_decl_ref)
29948 dw_die_ref ref
29949 = lookup_decl_die (loc->dw_loc_oprnd1.v.val_decl_ref);
29950 if (ref == NULL)
29951 break;
29952 loc->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
29953 loc->dw_loc_oprnd1.v.val_die_ref.die = ref;
29954 loc->dw_loc_oprnd1.v.val_die_ref.external = 0;
29956 /* FALLTHRU */
29957 case DW_OP_call2:
29958 case DW_OP_call4:
29959 case DW_OP_call_ref:
29960 case DW_OP_const_type:
29961 case DW_OP_GNU_const_type:
29962 case DW_OP_GNU_parameter_ref:
29963 gcc_assert (loc->dw_loc_oprnd1.val_class == dw_val_class_die_ref);
29964 prune_unused_types_mark (loc->dw_loc_oprnd1.v.val_die_ref.die, 1);
29965 break;
29966 case DW_OP_regval_type:
29967 case DW_OP_deref_type:
29968 case DW_OP_GNU_regval_type:
29969 case DW_OP_GNU_deref_type:
29970 gcc_assert (loc->dw_loc_oprnd2.val_class == dw_val_class_die_ref);
29971 prune_unused_types_mark (loc->dw_loc_oprnd2.v.val_die_ref.die, 1);
29972 break;
29973 case DW_OP_entry_value:
29974 case DW_OP_GNU_entry_value:
29975 gcc_assert (loc->dw_loc_oprnd1.val_class == dw_val_class_loc);
29976 prune_unused_types_walk_loc_descr (loc->dw_loc_oprnd1.v.val_loc);
29977 break;
29978 default:
29979 break;
29983 /* Given DIE that we're marking as used, find any other dies
29984 it references as attributes and mark them as used. */
29986 static void
29987 prune_unused_types_walk_attribs (dw_die_ref die)
29989 dw_attr_node *a;
29990 unsigned ix;
29992 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
29994 switch (AT_class (a))
29996 /* Make sure DWARF procedures referenced by location descriptions will
29997 get emitted. */
29998 case dw_val_class_loc:
29999 prune_unused_types_walk_loc_descr (AT_loc (a));
30000 break;
30001 case dw_val_class_loc_list:
30002 for (dw_loc_list_ref list = AT_loc_list (a);
30003 list != NULL;
30004 list = list->dw_loc_next)
30005 prune_unused_types_walk_loc_descr (list->expr);
30006 break;
30008 case dw_val_class_view_list:
30009 /* This points to a loc_list in another attribute, so it's
30010 already covered. */
30011 break;
30013 case dw_val_class_die_ref:
30014 /* A reference to another DIE.
30015 Make sure that it will get emitted.
30016 If it was broken out into a comdat group, don't follow it. */
30017 if (! AT_ref (a)->comdat_type_p
30018 || a->dw_attr == DW_AT_specification)
30019 prune_unused_types_mark (a->dw_attr_val.v.val_die_ref.die, 1);
30020 break;
30022 case dw_val_class_str:
30023 /* Set the string's refcount to 0 so that prune_unused_types_mark
30024 accounts properly for it. */
30025 a->dw_attr_val.v.val_str->refcount = 0;
30026 break;
30028 default:
30029 break;
30034 /* Mark the generic parameters and arguments children DIEs of DIE. */
30036 static void
30037 prune_unused_types_mark_generic_parms_dies (dw_die_ref die)
30039 dw_die_ref c;
30041 if (die == NULL || die->die_child == NULL)
30042 return;
30043 c = die->die_child;
30046 if (is_template_parameter (c))
30047 prune_unused_types_mark (c, 1);
30048 c = c->die_sib;
30049 } while (c && c != die->die_child);
30052 /* Mark DIE as being used. If DOKIDS is true, then walk down
30053 to DIE's children. */
30055 static void
30056 prune_unused_types_mark (dw_die_ref die, int dokids)
30058 dw_die_ref c;
30060 if (die->die_mark == 0)
30062 /* We haven't done this node yet. Mark it as used. */
30063 die->die_mark = 1;
30064 /* If this is the DIE of a generic type instantiation,
30065 mark the children DIEs that describe its generic parms and
30066 args. */
30067 prune_unused_types_mark_generic_parms_dies (die);
30069 /* We also have to mark its parents as used.
30070 (But we don't want to mark our parent's kids due to this,
30071 unless it is a class.) */
30072 if (die->die_parent)
30073 prune_unused_types_mark (die->die_parent,
30074 class_scope_p (die->die_parent));
30076 /* Mark any referenced nodes. */
30077 prune_unused_types_walk_attribs (die);
30079 /* If this node is a specification,
30080 also mark the definition, if it exists. */
30081 if (get_AT_flag (die, DW_AT_declaration) && die->die_definition)
30082 prune_unused_types_mark (die->die_definition, 1);
30085 if (dokids && die->die_mark != 2)
30087 /* We need to walk the children, but haven't done so yet.
30088 Remember that we've walked the kids. */
30089 die->die_mark = 2;
30091 /* If this is an array type, we need to make sure our
30092 kids get marked, even if they're types. If we're
30093 breaking out types into comdat sections, do this
30094 for all type definitions. */
30095 if (die->die_tag == DW_TAG_array_type
30096 || (use_debug_types
30097 && is_type_die (die) && ! is_declaration_die (die)))
30098 FOR_EACH_CHILD (die, c, prune_unused_types_mark (c, 1));
30099 else
30100 FOR_EACH_CHILD (die, c, prune_unused_types_walk (c));
30104 /* For local classes, look if any static member functions were emitted
30105 and if so, mark them. */
30107 static void
30108 prune_unused_types_walk_local_classes (dw_die_ref die)
30110 dw_die_ref c;
30112 if (die->die_mark == 2)
30113 return;
30115 switch (die->die_tag)
30117 case DW_TAG_structure_type:
30118 case DW_TAG_union_type:
30119 case DW_TAG_class_type:
30120 case DW_TAG_interface_type:
30121 break;
30123 case DW_TAG_subprogram:
30124 if (!get_AT_flag (die, DW_AT_declaration)
30125 || die->die_definition != NULL)
30126 prune_unused_types_mark (die, 1);
30127 return;
30129 default:
30130 return;
30133 /* Mark children. */
30134 FOR_EACH_CHILD (die, c, prune_unused_types_walk_local_classes (c));
30137 /* Walk the tree DIE and mark types that we actually use. */
30139 static void
30140 prune_unused_types_walk (dw_die_ref die)
30142 dw_die_ref c;
30144 /* Don't do anything if this node is already marked and
30145 children have been marked as well. */
30146 if (die->die_mark == 2)
30147 return;
30149 switch (die->die_tag)
30151 case DW_TAG_structure_type:
30152 case DW_TAG_union_type:
30153 case DW_TAG_class_type:
30154 case DW_TAG_interface_type:
30155 if (die->die_perennial_p)
30156 break;
30158 for (c = die->die_parent; c; c = c->die_parent)
30159 if (c->die_tag == DW_TAG_subprogram)
30160 break;
30162 /* Finding used static member functions inside of classes
30163 is needed just for local classes, because for other classes
30164 static member function DIEs with DW_AT_specification
30165 are emitted outside of the DW_TAG_*_type. If we ever change
30166 it, we'd need to call this even for non-local classes. */
30167 if (c)
30168 prune_unused_types_walk_local_classes (die);
30170 /* It's a type node --- don't mark it. */
30171 return;
30173 case DW_TAG_const_type:
30174 case DW_TAG_packed_type:
30175 case DW_TAG_pointer_type:
30176 case DW_TAG_reference_type:
30177 case DW_TAG_rvalue_reference_type:
30178 case DW_TAG_volatile_type:
30179 case DW_TAG_restrict_type:
30180 case DW_TAG_shared_type:
30181 case DW_TAG_atomic_type:
30182 case DW_TAG_immutable_type:
30183 case DW_TAG_typedef:
30184 case DW_TAG_array_type:
30185 case DW_TAG_coarray_type:
30186 case DW_TAG_friend:
30187 case DW_TAG_enumeration_type:
30188 case DW_TAG_subroutine_type:
30189 case DW_TAG_string_type:
30190 case DW_TAG_set_type:
30191 case DW_TAG_subrange_type:
30192 case DW_TAG_ptr_to_member_type:
30193 case DW_TAG_file_type:
30194 case DW_TAG_unspecified_type:
30195 case DW_TAG_dynamic_type:
30196 /* Type nodes are useful only when other DIEs reference them --- don't
30197 mark them. */
30198 /* FALLTHROUGH */
30200 case DW_TAG_dwarf_procedure:
30201 /* Likewise for DWARF procedures. */
30203 if (die->die_perennial_p)
30204 break;
30206 return;
30208 case DW_TAG_variable:
30209 if (flag_debug_only_used_symbols)
30211 if (die->die_perennial_p)
30212 break;
30214 /* For static data members, the declaration in the class is supposed
30215 to have DW_TAG_member tag in DWARF{3,4} but DW_TAG_variable in
30216 DWARF5. DW_TAG_member will be marked, so mark even such
30217 DW_TAG_variables in DWARF5, as long as it has DW_AT_const_value
30218 attribute. */
30219 if (dwarf_version >= 5
30220 && class_scope_p (die->die_parent)
30221 && get_AT (die, DW_AT_const_value))
30222 break;
30224 /* premark_used_variables marks external variables --- don't mark
30225 them here. But function-local externals are always considered
30226 used. */
30227 if (get_AT (die, DW_AT_external))
30229 for (c = die->die_parent; c; c = c->die_parent)
30230 if (c->die_tag == DW_TAG_subprogram)
30231 break;
30232 if (!c)
30233 return;
30236 /* FALLTHROUGH */
30238 default:
30239 /* Mark everything else. */
30240 break;
30243 if (die->die_mark == 0)
30245 die->die_mark = 1;
30247 /* Now, mark any dies referenced from here. */
30248 prune_unused_types_walk_attribs (die);
30251 die->die_mark = 2;
30253 /* Mark children. */
30254 FOR_EACH_CHILD (die, c, prune_unused_types_walk (c));
30257 /* Increment the string counts on strings referred to from DIE's
30258 attributes. */
30260 static void
30261 prune_unused_types_update_strings (dw_die_ref die)
30263 dw_attr_node *a;
30264 unsigned ix;
30266 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
30267 if (AT_class (a) == dw_val_class_str)
30269 struct indirect_string_node *s = a->dw_attr_val.v.val_str;
30270 s->refcount++;
30271 /* Avoid unnecessarily putting strings that are used less than
30272 twice in the hash table. */
30273 if (s->form != DW_FORM_line_strp
30274 && (s->refcount
30275 == ((DEBUG_STR_SECTION_FLAGS & SECTION_MERGE) ? 1 : 2)))
30277 indirect_string_node **slot
30278 = debug_str_hash->find_slot_with_hash (s->str,
30279 htab_hash_string (s->str),
30280 INSERT);
30281 gcc_assert (*slot == NULL);
30282 *slot = s;
30287 /* Mark DIE and its children as removed. */
30289 static void
30290 mark_removed (dw_die_ref die)
30292 dw_die_ref c;
30293 die->removed = true;
30294 FOR_EACH_CHILD (die, c, mark_removed (c));
30297 /* Remove from the tree DIE any dies that aren't marked. */
30299 static void
30300 prune_unused_types_prune (dw_die_ref die)
30302 dw_die_ref c;
30304 gcc_assert (die->die_mark);
30305 prune_unused_types_update_strings (die);
30307 if (! die->die_child)
30308 return;
30310 c = die->die_child;
30311 do {
30312 dw_die_ref prev = c, next;
30313 for (c = c->die_sib; ! c->die_mark; c = next)
30314 if (c == die->die_child)
30316 /* No marked children between 'prev' and the end of the list. */
30317 if (prev == c)
30318 /* No marked children at all. */
30319 die->die_child = NULL;
30320 else
30322 prev->die_sib = c->die_sib;
30323 die->die_child = prev;
30325 c->die_sib = NULL;
30326 mark_removed (c);
30327 return;
30329 else
30331 next = c->die_sib;
30332 c->die_sib = NULL;
30333 mark_removed (c);
30336 if (c != prev->die_sib)
30337 prev->die_sib = c;
30338 prune_unused_types_prune (c);
30339 } while (c != die->die_child);
30342 /* Remove dies representing declarations that we never use. */
30344 static void
30345 prune_unused_types (void)
30347 unsigned int i;
30348 limbo_die_node *node;
30349 comdat_type_node *ctnode;
30350 pubname_entry *pub;
30351 dw_die_ref base_type;
30353 #if ENABLE_ASSERT_CHECKING
30354 /* All the marks should already be clear. */
30355 verify_marks_clear (comp_unit_die ());
30356 for (node = limbo_die_list; node; node = node->next)
30357 verify_marks_clear (node->die);
30358 for (ctnode = comdat_type_list; ctnode; ctnode = ctnode->next)
30359 verify_marks_clear (ctnode->root_die);
30360 #endif /* ENABLE_ASSERT_CHECKING */
30362 /* Mark types that are used in global variables. */
30363 premark_types_used_by_global_vars ();
30365 /* Mark variables used in the symtab. */
30366 if (flag_debug_only_used_symbols)
30367 premark_used_variables ();
30369 /* Set the mark on nodes that are actually used. */
30370 prune_unused_types_walk (comp_unit_die ());
30371 for (node = limbo_die_list; node; node = node->next)
30372 prune_unused_types_walk (node->die);
30373 for (ctnode = comdat_type_list; ctnode; ctnode = ctnode->next)
30375 prune_unused_types_walk (ctnode->root_die);
30376 prune_unused_types_mark (ctnode->type_die, 1);
30379 /* Also set the mark on nodes referenced from the pubname_table. Enumerators
30380 are unusual in that they are pubnames that are the children of pubtypes.
30381 They should only be marked via their parent DW_TAG_enumeration_type die,
30382 not as roots in themselves. */
30383 FOR_EACH_VEC_ELT (*pubname_table, i, pub)
30384 if (pub->die->die_tag != DW_TAG_enumerator)
30385 prune_unused_types_mark (pub->die, 1);
30386 for (i = 0; base_types.iterate (i, &base_type); i++)
30387 prune_unused_types_mark (base_type, 1);
30389 /* Also set the mark on nodes that could be referenced by
30390 DW_TAG_call_site DW_AT_call_origin (i.e. direct call callees) or
30391 by DW_TAG_inlined_subroutine origins. */
30392 cgraph_node *cnode;
30393 FOR_EACH_FUNCTION (cnode)
30394 if (cnode->referred_to_p (false))
30396 dw_die_ref die = lookup_decl_die (cnode->decl);
30397 if (die == NULL || die->die_mark)
30398 continue;
30399 for (cgraph_edge *e = cnode->callers; e; e = e->next_caller)
30400 if (e->caller != cnode)
30402 prune_unused_types_mark (die, 1);
30403 break;
30407 if (debug_str_hash)
30408 debug_str_hash->empty ();
30409 if (skeleton_debug_str_hash)
30410 skeleton_debug_str_hash->empty ();
30411 prune_unused_types_prune (comp_unit_die ());
30412 for (limbo_die_node **pnode = &limbo_die_list; *pnode; )
30414 node = *pnode;
30415 if (!node->die->die_mark)
30416 *pnode = node->next;
30417 else
30419 prune_unused_types_prune (node->die);
30420 pnode = &node->next;
30423 for (ctnode = comdat_type_list; ctnode; ctnode = ctnode->next)
30424 prune_unused_types_prune (ctnode->root_die);
30426 /* Leave the marks clear. */
30427 prune_unmark_dies (comp_unit_die ());
30428 for (node = limbo_die_list; node; node = node->next)
30429 prune_unmark_dies (node->die);
30430 for (ctnode = comdat_type_list; ctnode; ctnode = ctnode->next)
30431 prune_unmark_dies (ctnode->root_die);
30434 /* Helpers to manipulate hash table of comdat type units. */
30436 struct comdat_type_hasher : nofree_ptr_hash <comdat_type_node>
30438 static inline hashval_t hash (const comdat_type_node *);
30439 static inline bool equal (const comdat_type_node *, const comdat_type_node *);
30442 inline hashval_t
30443 comdat_type_hasher::hash (const comdat_type_node *type_node)
30445 hashval_t h;
30446 memcpy (&h, type_node->signature, sizeof (h));
30447 return h;
30450 inline bool
30451 comdat_type_hasher::equal (const comdat_type_node *type_node_1,
30452 const comdat_type_node *type_node_2)
30454 return (! memcmp (type_node_1->signature, type_node_2->signature,
30455 DWARF_TYPE_SIGNATURE_SIZE));
30458 /* Move a DW_AT_{,MIPS_}linkage_name attribute just added to dw_die_ref
30459 to the location it would have been added, should we know its
30460 DECL_ASSEMBLER_NAME when we added other attributes. This will
30461 probably improve compactness of debug info, removing equivalent
30462 abbrevs, and hide any differences caused by deferring the
30463 computation of the assembler name, triggered by e.g. PCH. */
30465 static inline void
30466 move_linkage_attr (dw_die_ref die)
30468 unsigned ix = vec_safe_length (die->die_attr);
30469 dw_attr_node linkage = (*die->die_attr)[ix - 1];
30471 gcc_assert (linkage.dw_attr == DW_AT_linkage_name
30472 || linkage.dw_attr == DW_AT_MIPS_linkage_name);
30474 while (--ix > 0)
30476 dw_attr_node *prev = &(*die->die_attr)[ix - 1];
30478 if (prev->dw_attr == DW_AT_decl_line
30479 || prev->dw_attr == DW_AT_decl_column
30480 || prev->dw_attr == DW_AT_name)
30481 break;
30484 if (ix != vec_safe_length (die->die_attr) - 1)
30486 die->die_attr->pop ();
30487 die->die_attr->quick_insert (ix, linkage);
30491 /* Helper function for resolve_addr, mark DW_TAG_base_type nodes
30492 referenced from typed stack ops and count how often they are used. */
30494 static void
30495 mark_base_types (dw_loc_descr_ref loc)
30497 dw_die_ref base_type = NULL;
30499 for (; loc; loc = loc->dw_loc_next)
30501 switch (loc->dw_loc_opc)
30503 case DW_OP_regval_type:
30504 case DW_OP_deref_type:
30505 case DW_OP_GNU_regval_type:
30506 case DW_OP_GNU_deref_type:
30507 base_type = loc->dw_loc_oprnd2.v.val_die_ref.die;
30508 break;
30509 case DW_OP_convert:
30510 case DW_OP_reinterpret:
30511 case DW_OP_GNU_convert:
30512 case DW_OP_GNU_reinterpret:
30513 if (loc->dw_loc_oprnd1.val_class == dw_val_class_unsigned_const)
30514 continue;
30515 /* FALLTHRU */
30516 case DW_OP_const_type:
30517 case DW_OP_GNU_const_type:
30518 base_type = loc->dw_loc_oprnd1.v.val_die_ref.die;
30519 break;
30520 case DW_OP_entry_value:
30521 case DW_OP_GNU_entry_value:
30522 mark_base_types (loc->dw_loc_oprnd1.v.val_loc);
30523 continue;
30524 default:
30525 continue;
30527 gcc_assert (base_type->die_parent == comp_unit_die ());
30528 if (base_type->die_mark)
30529 base_type->die_mark++;
30530 else
30532 base_types.safe_push (base_type);
30533 base_type->die_mark = 1;
30538 /* Stripped-down variant of resolve_addr, mark DW_TAG_base_type nodes
30539 referenced from typed stack ops and count how often they are used. */
30541 static void
30542 mark_base_types (dw_die_ref die)
30544 dw_die_ref c;
30545 dw_attr_node *a;
30546 dw_loc_list_ref *curr;
30547 unsigned ix;
30549 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
30550 switch (AT_class (a))
30552 case dw_val_class_loc_list:
30553 curr = AT_loc_list_ptr (a);
30554 while (*curr)
30556 mark_base_types ((*curr)->expr);
30557 curr = &(*curr)->dw_loc_next;
30559 break;
30561 case dw_val_class_loc:
30562 mark_base_types (AT_loc (a));
30563 break;
30565 default:
30566 break;
30569 FOR_EACH_CHILD (die, c, mark_base_types (c));
30572 /* Comparison function for sorting marked base types. */
30574 static int
30575 base_type_cmp (const void *x, const void *y)
30577 dw_die_ref dx = *(const dw_die_ref *) x;
30578 dw_die_ref dy = *(const dw_die_ref *) y;
30579 unsigned int byte_size1, byte_size2;
30580 unsigned int encoding1, encoding2;
30581 unsigned int align1, align2;
30582 if (dx->die_mark > dy->die_mark)
30583 return -1;
30584 if (dx->die_mark < dy->die_mark)
30585 return 1;
30586 byte_size1 = get_AT_unsigned (dx, DW_AT_byte_size);
30587 byte_size2 = get_AT_unsigned (dy, DW_AT_byte_size);
30588 if (byte_size1 < byte_size2)
30589 return 1;
30590 if (byte_size1 > byte_size2)
30591 return -1;
30592 encoding1 = get_AT_unsigned (dx, DW_AT_encoding);
30593 encoding2 = get_AT_unsigned (dy, DW_AT_encoding);
30594 if (encoding1 < encoding2)
30595 return 1;
30596 if (encoding1 > encoding2)
30597 return -1;
30598 align1 = get_AT_unsigned (dx, DW_AT_alignment);
30599 align2 = get_AT_unsigned (dy, DW_AT_alignment);
30600 if (align1 < align2)
30601 return 1;
30602 if (align1 > align2)
30603 return -1;
30604 return 0;
30607 /* Move base types marked by mark_base_types as early as possible
30608 in the CU, sorted by decreasing usage count both to make the
30609 uleb128 references as small as possible and to make sure they
30610 will have die_offset already computed by calc_die_sizes when
30611 sizes of typed stack loc ops is computed. */
30613 static void
30614 move_marked_base_types (void)
30616 unsigned int i;
30617 dw_die_ref base_type, die, c;
30619 if (base_types.is_empty ())
30620 return;
30622 /* Sort by decreasing usage count, they will be added again in that
30623 order later on. */
30624 base_types.qsort (base_type_cmp);
30625 die = comp_unit_die ();
30626 c = die->die_child;
30629 dw_die_ref prev = c;
30630 c = c->die_sib;
30631 while (c->die_mark)
30633 remove_child_with_prev (c, prev);
30634 /* As base types got marked, there must be at least
30635 one node other than DW_TAG_base_type. */
30636 gcc_assert (die->die_child != NULL);
30637 c = prev->die_sib;
30640 while (c != die->die_child);
30641 gcc_assert (die->die_child);
30642 c = die->die_child;
30643 for (i = 0; base_types.iterate (i, &base_type); i++)
30645 base_type->die_mark = 0;
30646 base_type->die_sib = c->die_sib;
30647 c->die_sib = base_type;
30648 c = base_type;
30652 /* Helper function for resolve_addr, attempt to resolve
30653 one CONST_STRING, return true if successful. Similarly verify that
30654 SYMBOL_REFs refer to variables emitted in the current CU. */
30656 static bool
30657 resolve_one_addr (rtx *addr)
30659 rtx rtl = *addr;
30661 if (GET_CODE (rtl) == CONST_STRING)
30663 size_t len = strlen (XSTR (rtl, 0)) + 1;
30664 tree t = build_string (len, XSTR (rtl, 0));
30665 tree tlen = size_int (len - 1);
30666 TREE_TYPE (t)
30667 = build_array_type (char_type_node, build_index_type (tlen));
30668 rtl = lookup_constant_def (t);
30669 if (!rtl || !MEM_P (rtl))
30670 return false;
30671 rtl = XEXP (rtl, 0);
30672 if (GET_CODE (rtl) == SYMBOL_REF
30673 && SYMBOL_REF_DECL (rtl)
30674 && !TREE_ASM_WRITTEN (SYMBOL_REF_DECL (rtl)))
30675 return false;
30676 vec_safe_push (used_rtx_array, rtl);
30677 *addr = rtl;
30678 return true;
30681 if (GET_CODE (rtl) == SYMBOL_REF
30682 && SYMBOL_REF_DECL (rtl))
30684 if (TREE_CONSTANT_POOL_ADDRESS_P (rtl))
30686 if (!TREE_ASM_WRITTEN (DECL_INITIAL (SYMBOL_REF_DECL (rtl))))
30687 return false;
30689 else if (!TREE_ASM_WRITTEN (SYMBOL_REF_DECL (rtl)))
30690 return false;
30693 if (GET_CODE (rtl) == CONST)
30695 subrtx_ptr_iterator::array_type array;
30696 FOR_EACH_SUBRTX_PTR (iter, array, &XEXP (rtl, 0), ALL)
30697 if (!resolve_one_addr (*iter))
30698 return false;
30701 return true;
30704 /* For STRING_CST, return SYMBOL_REF of its constant pool entry,
30705 if possible, and create DW_TAG_dwarf_procedure that can be referenced
30706 from DW_OP_implicit_pointer if the string hasn't been seen yet. */
30708 static rtx
30709 string_cst_pool_decl (tree t)
30711 rtx rtl = output_constant_def (t, 1);
30712 unsigned char *array;
30713 dw_loc_descr_ref l;
30714 tree decl;
30715 size_t len;
30716 dw_die_ref ref;
30718 if (!rtl || !MEM_P (rtl))
30719 return NULL_RTX;
30720 rtl = XEXP (rtl, 0);
30721 if (GET_CODE (rtl) != SYMBOL_REF
30722 || SYMBOL_REF_DECL (rtl) == NULL_TREE)
30723 return NULL_RTX;
30725 decl = SYMBOL_REF_DECL (rtl);
30726 if (!lookup_decl_die (decl))
30728 len = TREE_STRING_LENGTH (t);
30729 vec_safe_push (used_rtx_array, rtl);
30730 ref = new_die (DW_TAG_dwarf_procedure, comp_unit_die (), decl);
30731 array = ggc_vec_alloc<unsigned char> (len);
30732 memcpy (array, TREE_STRING_POINTER (t), len);
30733 l = new_loc_descr (DW_OP_implicit_value, len, 0);
30734 l->dw_loc_oprnd2.val_class = dw_val_class_vec;
30735 l->dw_loc_oprnd2.v.val_vec.length = len;
30736 l->dw_loc_oprnd2.v.val_vec.elt_size = 1;
30737 l->dw_loc_oprnd2.v.val_vec.array = array;
30738 add_AT_loc (ref, DW_AT_location, l);
30739 equate_decl_number_to_die (decl, ref);
30741 return rtl;
30744 /* Helper function of resolve_addr_in_expr. LOC is
30745 a DW_OP_addr followed by DW_OP_stack_value, either at the start
30746 of exprloc or after DW_OP_{,bit_}piece, and val_addr can't be
30747 resolved. Replace it (both DW_OP_addr and DW_OP_stack_value)
30748 with DW_OP_implicit_pointer if possible
30749 and return true, if unsuccessful, return false. */
30751 static bool
30752 optimize_one_addr_into_implicit_ptr (dw_loc_descr_ref loc)
30754 rtx rtl = loc->dw_loc_oprnd1.v.val_addr;
30755 HOST_WIDE_INT offset = 0;
30756 dw_die_ref ref = NULL;
30757 tree decl;
30759 if (GET_CODE (rtl) == CONST
30760 && GET_CODE (XEXP (rtl, 0)) == PLUS
30761 && CONST_INT_P (XEXP (XEXP (rtl, 0), 1)))
30763 offset = INTVAL (XEXP (XEXP (rtl, 0), 1));
30764 rtl = XEXP (XEXP (rtl, 0), 0);
30766 if (GET_CODE (rtl) == CONST_STRING)
30768 size_t len = strlen (XSTR (rtl, 0)) + 1;
30769 tree t = build_string (len, XSTR (rtl, 0));
30770 tree tlen = size_int (len - 1);
30772 TREE_TYPE (t)
30773 = build_array_type (char_type_node, build_index_type (tlen));
30774 rtl = string_cst_pool_decl (t);
30775 if (!rtl)
30776 return false;
30778 if (GET_CODE (rtl) == SYMBOL_REF && SYMBOL_REF_DECL (rtl))
30780 decl = SYMBOL_REF_DECL (rtl);
30781 if (VAR_P (decl) && !DECL_EXTERNAL (decl))
30783 ref = lookup_decl_die (decl);
30784 if (ref && (get_AT (ref, DW_AT_location)
30785 || get_AT (ref, DW_AT_const_value)))
30787 loc->dw_loc_opc = dwarf_OP (DW_OP_implicit_pointer);
30788 loc->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
30789 loc->dw_loc_oprnd1.val_entry = NULL;
30790 loc->dw_loc_oprnd1.v.val_die_ref.die = ref;
30791 loc->dw_loc_oprnd1.v.val_die_ref.external = 0;
30792 loc->dw_loc_next = loc->dw_loc_next->dw_loc_next;
30793 loc->dw_loc_oprnd2.v.val_int = offset;
30794 return true;
30798 return false;
30801 /* Helper function for resolve_addr, handle one location
30802 expression, return false if at least one CONST_STRING or SYMBOL_REF in
30803 the location list couldn't be resolved. */
30805 static bool
30806 resolve_addr_in_expr (dw_attr_node *a, dw_loc_descr_ref loc)
30808 dw_loc_descr_ref keep = NULL;
30809 for (dw_loc_descr_ref prev = NULL; loc; prev = loc, loc = loc->dw_loc_next)
30810 switch (loc->dw_loc_opc)
30812 case DW_OP_addr:
30813 if (!resolve_one_addr (&loc->dw_loc_oprnd1.v.val_addr))
30815 if ((prev == NULL
30816 || prev->dw_loc_opc == DW_OP_piece
30817 || prev->dw_loc_opc == DW_OP_bit_piece)
30818 && loc->dw_loc_next
30819 && loc->dw_loc_next->dw_loc_opc == DW_OP_stack_value
30820 && (!dwarf_strict || dwarf_version >= 5)
30821 && optimize_one_addr_into_implicit_ptr (loc))
30822 break;
30823 return false;
30825 break;
30826 case DW_OP_GNU_addr_index:
30827 case DW_OP_addrx:
30828 case DW_OP_GNU_const_index:
30829 case DW_OP_constx:
30830 if ((loc->dw_loc_opc == DW_OP_GNU_addr_index
30831 || loc->dw_loc_opc == DW_OP_addrx)
30832 || ((loc->dw_loc_opc == DW_OP_GNU_const_index
30833 || loc->dw_loc_opc == DW_OP_constx)
30834 && loc->dtprel))
30836 rtx rtl = loc->dw_loc_oprnd1.val_entry->addr.rtl;
30837 if (!resolve_one_addr (&rtl))
30838 return false;
30839 remove_addr_table_entry (loc->dw_loc_oprnd1.val_entry);
30840 loc->dw_loc_oprnd1.val_entry
30841 = add_addr_table_entry (rtl, ate_kind_rtx);
30843 break;
30844 case DW_OP_const4u:
30845 case DW_OP_const8u:
30846 if (loc->dtprel
30847 && !resolve_one_addr (&loc->dw_loc_oprnd1.v.val_addr))
30848 return false;
30849 break;
30850 case DW_OP_plus_uconst:
30851 if (size_of_loc_descr (loc)
30852 > size_of_int_loc_descriptor (loc->dw_loc_oprnd1.v.val_unsigned)
30854 && loc->dw_loc_oprnd1.v.val_unsigned > 0)
30856 dw_loc_descr_ref repl
30857 = int_loc_descriptor (loc->dw_loc_oprnd1.v.val_unsigned);
30858 add_loc_descr (&repl, new_loc_descr (DW_OP_plus, 0, 0));
30859 add_loc_descr (&repl, loc->dw_loc_next);
30860 *loc = *repl;
30862 break;
30863 case DW_OP_implicit_value:
30864 if (loc->dw_loc_oprnd2.val_class == dw_val_class_addr
30865 && !resolve_one_addr (&loc->dw_loc_oprnd2.v.val_addr))
30866 return false;
30867 break;
30868 case DW_OP_implicit_pointer:
30869 case DW_OP_GNU_implicit_pointer:
30870 case DW_OP_GNU_parameter_ref:
30871 case DW_OP_GNU_variable_value:
30872 if (loc->dw_loc_oprnd1.val_class == dw_val_class_decl_ref)
30874 dw_die_ref ref
30875 = lookup_decl_die (loc->dw_loc_oprnd1.v.val_decl_ref);
30876 if (ref == NULL)
30877 return false;
30878 loc->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
30879 loc->dw_loc_oprnd1.v.val_die_ref.die = ref;
30880 loc->dw_loc_oprnd1.v.val_die_ref.external = 0;
30882 if (loc->dw_loc_opc == DW_OP_GNU_variable_value)
30884 if (prev == NULL
30885 && loc->dw_loc_next == NULL
30886 && AT_class (a) == dw_val_class_loc)
30887 switch (a->dw_attr)
30889 /* Following attributes allow both exprloc and reference,
30890 so if the whole expression is DW_OP_GNU_variable_value
30891 alone we could transform it into reference. */
30892 case DW_AT_byte_size:
30893 case DW_AT_bit_size:
30894 case DW_AT_lower_bound:
30895 case DW_AT_upper_bound:
30896 case DW_AT_bit_stride:
30897 case DW_AT_count:
30898 case DW_AT_allocated:
30899 case DW_AT_associated:
30900 case DW_AT_byte_stride:
30901 a->dw_attr_val.val_class = dw_val_class_die_ref;
30902 a->dw_attr_val.val_entry = NULL;
30903 a->dw_attr_val.v.val_die_ref.die
30904 = loc->dw_loc_oprnd1.v.val_die_ref.die;
30905 a->dw_attr_val.v.val_die_ref.external = 0;
30906 return true;
30907 default:
30908 break;
30910 if (dwarf_strict)
30911 return false;
30913 break;
30914 case DW_OP_const_type:
30915 case DW_OP_regval_type:
30916 case DW_OP_deref_type:
30917 case DW_OP_convert:
30918 case DW_OP_reinterpret:
30919 case DW_OP_GNU_const_type:
30920 case DW_OP_GNU_regval_type:
30921 case DW_OP_GNU_deref_type:
30922 case DW_OP_GNU_convert:
30923 case DW_OP_GNU_reinterpret:
30924 while (loc->dw_loc_next
30925 && (loc->dw_loc_next->dw_loc_opc == DW_OP_convert
30926 || loc->dw_loc_next->dw_loc_opc == DW_OP_GNU_convert))
30928 dw_die_ref base1, base2;
30929 unsigned enc1, enc2, size1, size2;
30930 if (loc->dw_loc_opc == DW_OP_regval_type
30931 || loc->dw_loc_opc == DW_OP_deref_type
30932 || loc->dw_loc_opc == DW_OP_GNU_regval_type
30933 || loc->dw_loc_opc == DW_OP_GNU_deref_type)
30934 base1 = loc->dw_loc_oprnd2.v.val_die_ref.die;
30935 else if (loc->dw_loc_oprnd1.val_class
30936 == dw_val_class_unsigned_const)
30937 break;
30938 else
30939 base1 = loc->dw_loc_oprnd1.v.val_die_ref.die;
30940 if (loc->dw_loc_next->dw_loc_oprnd1.val_class
30941 == dw_val_class_unsigned_const)
30942 break;
30943 base2 = loc->dw_loc_next->dw_loc_oprnd1.v.val_die_ref.die;
30944 gcc_assert (base1->die_tag == DW_TAG_base_type
30945 && base2->die_tag == DW_TAG_base_type);
30946 enc1 = get_AT_unsigned (base1, DW_AT_encoding);
30947 enc2 = get_AT_unsigned (base2, DW_AT_encoding);
30948 size1 = get_AT_unsigned (base1, DW_AT_byte_size);
30949 size2 = get_AT_unsigned (base2, DW_AT_byte_size);
30950 if (size1 == size2
30951 && (((enc1 == DW_ATE_unsigned || enc1 == DW_ATE_signed)
30952 && (enc2 == DW_ATE_unsigned || enc2 == DW_ATE_signed)
30953 && loc != keep)
30954 || enc1 == enc2))
30956 /* Optimize away next DW_OP_convert after
30957 adjusting LOC's base type die reference. */
30958 if (loc->dw_loc_opc == DW_OP_regval_type
30959 || loc->dw_loc_opc == DW_OP_deref_type
30960 || loc->dw_loc_opc == DW_OP_GNU_regval_type
30961 || loc->dw_loc_opc == DW_OP_GNU_deref_type)
30962 loc->dw_loc_oprnd2.v.val_die_ref.die = base2;
30963 else
30964 loc->dw_loc_oprnd1.v.val_die_ref.die = base2;
30965 loc->dw_loc_next = loc->dw_loc_next->dw_loc_next;
30966 continue;
30968 /* Don't change integer DW_OP_convert after e.g. floating
30969 point typed stack entry. */
30970 else if (enc1 != DW_ATE_unsigned && enc1 != DW_ATE_signed)
30971 keep = loc->dw_loc_next;
30972 break;
30974 break;
30975 default:
30976 break;
30978 return true;
30981 /* Helper function of resolve_addr. DIE had DW_AT_location of
30982 DW_OP_addr alone, which referred to DECL in DW_OP_addr's operand
30983 and DW_OP_addr couldn't be resolved. resolve_addr has already
30984 removed the DW_AT_location attribute. This function attempts to
30985 add a new DW_AT_location attribute with DW_OP_implicit_pointer
30986 to it or DW_AT_const_value attribute, if possible. */
30988 static void
30989 optimize_location_into_implicit_ptr (dw_die_ref die, tree decl)
30991 if (!VAR_P (decl)
30992 || lookup_decl_die (decl) != die
30993 || DECL_EXTERNAL (decl)
30994 || !TREE_STATIC (decl)
30995 || DECL_INITIAL (decl) == NULL_TREE
30996 || DECL_P (DECL_INITIAL (decl))
30997 || get_AT (die, DW_AT_const_value))
30998 return;
31000 tree init = DECL_INITIAL (decl);
31001 HOST_WIDE_INT offset = 0;
31002 /* For variables that have been optimized away and thus
31003 don't have a memory location, see if we can emit
31004 DW_AT_const_value instead. */
31005 if (tree_add_const_value_attribute (die, init))
31006 return;
31007 if (dwarf_strict && dwarf_version < 5)
31008 return;
31009 /* If init is ADDR_EXPR or POINTER_PLUS_EXPR of ADDR_EXPR,
31010 and ADDR_EXPR refers to a decl that has DW_AT_location or
31011 DW_AT_const_value (but isn't addressable, otherwise
31012 resolving the original DW_OP_addr wouldn't fail), see if
31013 we can add DW_OP_implicit_pointer. */
31014 STRIP_NOPS (init);
31015 if (TREE_CODE (init) == POINTER_PLUS_EXPR
31016 && tree_fits_shwi_p (TREE_OPERAND (init, 1)))
31018 offset = tree_to_shwi (TREE_OPERAND (init, 1));
31019 init = TREE_OPERAND (init, 0);
31020 STRIP_NOPS (init);
31022 if (TREE_CODE (init) != ADDR_EXPR)
31023 return;
31024 if ((TREE_CODE (TREE_OPERAND (init, 0)) == STRING_CST
31025 && !TREE_ASM_WRITTEN (TREE_OPERAND (init, 0)))
31026 || (VAR_P (TREE_OPERAND (init, 0))
31027 && !DECL_EXTERNAL (TREE_OPERAND (init, 0))
31028 && TREE_OPERAND (init, 0) != decl))
31030 dw_die_ref ref;
31031 dw_loc_descr_ref l;
31033 if (TREE_CODE (TREE_OPERAND (init, 0)) == STRING_CST)
31035 rtx rtl = string_cst_pool_decl (TREE_OPERAND (init, 0));
31036 if (!rtl)
31037 return;
31038 decl = SYMBOL_REF_DECL (rtl);
31040 else
31041 decl = TREE_OPERAND (init, 0);
31042 ref = lookup_decl_die (decl);
31043 if (ref == NULL
31044 || (!get_AT (ref, DW_AT_location)
31045 && !get_AT (ref, DW_AT_const_value)))
31046 return;
31047 l = new_loc_descr (dwarf_OP (DW_OP_implicit_pointer), 0, offset);
31048 l->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
31049 l->dw_loc_oprnd1.v.val_die_ref.die = ref;
31050 l->dw_loc_oprnd1.v.val_die_ref.external = 0;
31051 add_AT_loc (die, DW_AT_location, l);
31055 /* Return NULL if l is a DWARF expression, or first op that is not
31056 valid DWARF expression. */
31058 static dw_loc_descr_ref
31059 non_dwarf_expression (dw_loc_descr_ref l)
31061 while (l)
31063 if (l->dw_loc_opc >= DW_OP_reg0 && l->dw_loc_opc <= DW_OP_reg31)
31064 return l;
31065 switch (l->dw_loc_opc)
31067 case DW_OP_regx:
31068 case DW_OP_implicit_value:
31069 case DW_OP_stack_value:
31070 case DW_OP_implicit_pointer:
31071 case DW_OP_GNU_implicit_pointer:
31072 case DW_OP_GNU_parameter_ref:
31073 case DW_OP_piece:
31074 case DW_OP_bit_piece:
31075 return l;
31076 default:
31077 break;
31079 l = l->dw_loc_next;
31081 return NULL;
31084 /* Return adjusted copy of EXPR:
31085 If it is empty DWARF expression, return it.
31086 If it is valid non-empty DWARF expression,
31087 return copy of EXPR with DW_OP_deref appended to it.
31088 If it is DWARF expression followed by DW_OP_reg{N,x}, return
31089 copy of the DWARF expression with DW_OP_breg{N,x} <0> appended.
31090 If it is DWARF expression followed by DW_OP_stack_value, return
31091 copy of the DWARF expression without anything appended.
31092 Otherwise, return NULL. */
31094 static dw_loc_descr_ref
31095 copy_deref_exprloc (dw_loc_descr_ref expr)
31097 dw_loc_descr_ref tail = NULL;
31099 if (expr == NULL)
31100 return NULL;
31102 dw_loc_descr_ref l = non_dwarf_expression (expr);
31103 if (l && l->dw_loc_next)
31104 return NULL;
31106 if (l)
31108 if (l->dw_loc_opc >= DW_OP_reg0 && l->dw_loc_opc <= DW_OP_reg31)
31109 tail = new_loc_descr ((enum dwarf_location_atom)
31110 (DW_OP_breg0 + (l->dw_loc_opc - DW_OP_reg0)),
31111 0, 0);
31112 else
31113 switch (l->dw_loc_opc)
31115 case DW_OP_regx:
31116 tail = new_loc_descr (DW_OP_bregx,
31117 l->dw_loc_oprnd1.v.val_unsigned, 0);
31118 break;
31119 case DW_OP_stack_value:
31120 break;
31121 default:
31122 return NULL;
31125 else
31126 tail = new_loc_descr (DW_OP_deref, 0, 0);
31128 dw_loc_descr_ref ret = NULL, *p = &ret;
31129 while (expr != l)
31131 *p = new_loc_descr (expr->dw_loc_opc, 0, 0);
31132 (*p)->dw_loc_oprnd1 = expr->dw_loc_oprnd1;
31133 (*p)->dw_loc_oprnd2 = expr->dw_loc_oprnd2;
31134 p = &(*p)->dw_loc_next;
31135 expr = expr->dw_loc_next;
31137 *p = tail;
31138 return ret;
31141 /* For DW_AT_string_length attribute with DW_OP_GNU_variable_value
31142 reference to a variable or argument, adjust it if needed and return:
31143 -1 if the DW_AT_string_length attribute and DW_AT_{string_length_,}byte_size
31144 attribute if present should be removed
31145 0 keep the attribute perhaps with minor modifications, no need to rescan
31146 1 if the attribute has been successfully adjusted. */
31148 static int
31149 optimize_string_length (dw_attr_node *a)
31151 dw_loc_descr_ref l = AT_loc (a), lv;
31152 dw_die_ref die;
31153 if (l->dw_loc_oprnd1.val_class == dw_val_class_decl_ref)
31155 tree decl = l->dw_loc_oprnd1.v.val_decl_ref;
31156 die = lookup_decl_die (decl);
31157 if (die)
31159 l->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
31160 l->dw_loc_oprnd1.v.val_die_ref.die = die;
31161 l->dw_loc_oprnd1.v.val_die_ref.external = 0;
31163 else
31164 return -1;
31166 else
31167 die = l->dw_loc_oprnd1.v.val_die_ref.die;
31169 /* DWARF5 allows reference class, so we can then reference the DIE.
31170 Only do this for DW_OP_GNU_variable_value DW_OP_stack_value. */
31171 if (l->dw_loc_next != NULL && dwarf_version >= 5)
31173 a->dw_attr_val.val_class = dw_val_class_die_ref;
31174 a->dw_attr_val.val_entry = NULL;
31175 a->dw_attr_val.v.val_die_ref.die = die;
31176 a->dw_attr_val.v.val_die_ref.external = 0;
31177 return 0;
31180 dw_attr_node *av = get_AT (die, DW_AT_location);
31181 dw_loc_list_ref d;
31182 bool non_dwarf_expr = false;
31184 if (av == NULL)
31185 return dwarf_strict ? -1 : 0;
31186 switch (AT_class (av))
31188 case dw_val_class_loc_list:
31189 for (d = AT_loc_list (av); d != NULL; d = d->dw_loc_next)
31190 if (d->expr && non_dwarf_expression (d->expr))
31191 non_dwarf_expr = true;
31192 break;
31193 case dw_val_class_view_list:
31194 gcc_unreachable ();
31195 case dw_val_class_loc:
31196 lv = AT_loc (av);
31197 if (lv == NULL)
31198 return dwarf_strict ? -1 : 0;
31199 if (non_dwarf_expression (lv))
31200 non_dwarf_expr = true;
31201 break;
31202 default:
31203 return dwarf_strict ? -1 : 0;
31206 /* If it is safe to transform DW_OP_GNU_variable_value DW_OP_stack_value
31207 into DW_OP_call4 or DW_OP_GNU_variable_value into
31208 DW_OP_call4 DW_OP_deref, do so. */
31209 if (!non_dwarf_expr
31210 && (l->dw_loc_next != NULL || AT_class (av) == dw_val_class_loc))
31212 l->dw_loc_opc = DW_OP_call4;
31213 if (l->dw_loc_next)
31214 l->dw_loc_next = NULL;
31215 else
31216 l->dw_loc_next = new_loc_descr (DW_OP_deref, 0, 0);
31217 return 0;
31220 /* For DW_OP_GNU_variable_value DW_OP_stack_value, we can just
31221 copy over the DW_AT_location attribute from die to a. */
31222 if (l->dw_loc_next != NULL)
31224 a->dw_attr_val = av->dw_attr_val;
31225 return 1;
31228 dw_loc_list_ref list, *p;
31229 switch (AT_class (av))
31231 case dw_val_class_loc_list:
31232 p = &list;
31233 list = NULL;
31234 for (d = AT_loc_list (av); d != NULL; d = d->dw_loc_next)
31236 lv = copy_deref_exprloc (d->expr);
31237 if (lv)
31239 *p = new_loc_list (lv, d->begin, d->vbegin, d->end, d->vend, d->section);
31240 p = &(*p)->dw_loc_next;
31242 else if (!dwarf_strict && d->expr)
31243 return 0;
31245 if (list == NULL)
31246 return dwarf_strict ? -1 : 0;
31247 a->dw_attr_val.val_class = dw_val_class_loc_list;
31248 gen_llsym (list);
31249 *AT_loc_list_ptr (a) = list;
31250 return 1;
31251 case dw_val_class_loc:
31252 lv = copy_deref_exprloc (AT_loc (av));
31253 if (lv == NULL)
31254 return dwarf_strict ? -1 : 0;
31255 a->dw_attr_val.v.val_loc = lv;
31256 return 1;
31257 default:
31258 gcc_unreachable ();
31262 /* Resolve DW_OP_addr and DW_AT_const_value CONST_STRING arguments to
31263 an address in .rodata section if the string literal is emitted there,
31264 or remove the containing location list or replace DW_AT_const_value
31265 with DW_AT_location and empty location expression, if it isn't found
31266 in .rodata. Similarly for SYMBOL_REFs, keep only those that refer
31267 to something that has been emitted in the current CU. */
31269 static void
31270 resolve_addr (dw_die_ref die)
31272 dw_die_ref c;
31273 dw_attr_node *a;
31274 dw_loc_list_ref *curr, *start, loc;
31275 unsigned ix;
31276 bool remove_AT_byte_size = false;
31278 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
31279 switch (AT_class (a))
31281 case dw_val_class_loc_list:
31282 start = curr = AT_loc_list_ptr (a);
31283 loc = *curr;
31284 gcc_assert (loc);
31285 /* The same list can be referenced more than once. See if we have
31286 already recorded the result from a previous pass. */
31287 if (loc->replaced)
31288 *curr = loc->dw_loc_next;
31289 else if (!loc->resolved_addr)
31291 /* As things stand, we do not expect or allow one die to
31292 reference a suffix of another die's location list chain.
31293 References must be identical or completely separate.
31294 There is therefore no need to cache the result of this
31295 pass on any list other than the first; doing so
31296 would lead to unnecessary writes. */
31297 while (*curr)
31299 gcc_assert (!(*curr)->replaced && !(*curr)->resolved_addr);
31300 if (!resolve_addr_in_expr (a, (*curr)->expr))
31302 dw_loc_list_ref next = (*curr)->dw_loc_next;
31303 dw_loc_descr_ref l = (*curr)->expr;
31305 if (next && (*curr)->ll_symbol)
31307 gcc_assert (!next->ll_symbol);
31308 next->ll_symbol = (*curr)->ll_symbol;
31309 next->vl_symbol = (*curr)->vl_symbol;
31311 if (dwarf_split_debug_info)
31312 remove_loc_list_addr_table_entries (l);
31313 *curr = next;
31315 else
31317 mark_base_types ((*curr)->expr);
31318 curr = &(*curr)->dw_loc_next;
31321 if (loc == *start)
31322 loc->resolved_addr = 1;
31323 else
31325 loc->replaced = 1;
31326 loc->dw_loc_next = *start;
31329 if (!*start)
31331 remove_AT (die, a->dw_attr);
31332 ix--;
31334 break;
31335 case dw_val_class_view_list:
31337 gcc_checking_assert (a->dw_attr == DW_AT_GNU_locviews);
31338 gcc_checking_assert (dwarf2out_locviews_in_attribute ());
31339 dw_val_node *llnode
31340 = view_list_to_loc_list_val_node (&a->dw_attr_val);
31341 /* If we no longer have a loclist, or it no longer needs
31342 views, drop this attribute. */
31343 if (!llnode || !llnode->v.val_loc_list->vl_symbol)
31345 remove_AT (die, a->dw_attr);
31346 ix--;
31348 break;
31350 case dw_val_class_loc:
31352 dw_loc_descr_ref l = AT_loc (a);
31353 /* DW_OP_GNU_variable_value DW_OP_stack_value or
31354 DW_OP_GNU_variable_value in DW_AT_string_length can be converted
31355 into DW_OP_call4 or DW_OP_call4 DW_OP_deref, which is standard
31356 DWARF4 unlike DW_OP_GNU_variable_value. Or for DWARF5
31357 DW_OP_GNU_variable_value DW_OP_stack_value can be replaced
31358 with DW_FORM_ref referencing the same DIE as
31359 DW_OP_GNU_variable_value used to reference. */
31360 if (a->dw_attr == DW_AT_string_length
31361 && l
31362 && l->dw_loc_opc == DW_OP_GNU_variable_value
31363 && (l->dw_loc_next == NULL
31364 || (l->dw_loc_next->dw_loc_next == NULL
31365 && l->dw_loc_next->dw_loc_opc == DW_OP_stack_value)))
31367 switch (optimize_string_length (a))
31369 case -1:
31370 remove_AT (die, a->dw_attr);
31371 ix--;
31372 /* If we drop DW_AT_string_length, we need to drop also
31373 DW_AT_{string_length_,}byte_size. */
31374 remove_AT_byte_size = true;
31375 continue;
31376 default:
31377 break;
31378 case 1:
31379 /* Even if we keep the optimized DW_AT_string_length,
31380 it might have changed AT_class, so process it again. */
31381 ix--;
31382 continue;
31385 /* For -gdwarf-2 don't attempt to optimize
31386 DW_AT_data_member_location containing
31387 DW_OP_plus_uconst - older consumers might
31388 rely on it being that op instead of a more complex,
31389 but shorter, location description. */
31390 if ((dwarf_version > 2
31391 || a->dw_attr != DW_AT_data_member_location
31392 || l == NULL
31393 || l->dw_loc_opc != DW_OP_plus_uconst
31394 || l->dw_loc_next != NULL)
31395 && !resolve_addr_in_expr (a, l))
31397 if (dwarf_split_debug_info)
31398 remove_loc_list_addr_table_entries (l);
31399 if (l != NULL
31400 && l->dw_loc_next == NULL
31401 && l->dw_loc_opc == DW_OP_addr
31402 && GET_CODE (l->dw_loc_oprnd1.v.val_addr) == SYMBOL_REF
31403 && SYMBOL_REF_DECL (l->dw_loc_oprnd1.v.val_addr)
31404 && a->dw_attr == DW_AT_location)
31406 tree decl = SYMBOL_REF_DECL (l->dw_loc_oprnd1.v.val_addr);
31407 remove_AT (die, a->dw_attr);
31408 ix--;
31409 optimize_location_into_implicit_ptr (die, decl);
31410 break;
31412 if (a->dw_attr == DW_AT_string_length)
31413 /* If we drop DW_AT_string_length, we need to drop also
31414 DW_AT_{string_length_,}byte_size. */
31415 remove_AT_byte_size = true;
31416 remove_AT (die, a->dw_attr);
31417 ix--;
31419 else
31420 mark_base_types (l);
31422 break;
31423 case dw_val_class_addr:
31424 if (a->dw_attr == DW_AT_const_value
31425 && !resolve_one_addr (&a->dw_attr_val.v.val_addr))
31427 if (AT_index (a) != NOT_INDEXED)
31428 remove_addr_table_entry (a->dw_attr_val.val_entry);
31429 remove_AT (die, a->dw_attr);
31430 ix--;
31432 if ((die->die_tag == DW_TAG_call_site
31433 && a->dw_attr == DW_AT_call_origin)
31434 || (die->die_tag == DW_TAG_GNU_call_site
31435 && a->dw_attr == DW_AT_abstract_origin))
31437 tree tdecl = SYMBOL_REF_DECL (a->dw_attr_val.v.val_addr);
31438 dw_die_ref tdie = lookup_decl_die (tdecl);
31439 dw_die_ref cdie;
31440 if (tdie == NULL
31441 && DECL_EXTERNAL (tdecl)
31442 && DECL_ABSTRACT_ORIGIN (tdecl) == NULL_TREE
31443 && (cdie = lookup_context_die (DECL_CONTEXT (tdecl))))
31445 dw_die_ref pdie = cdie;
31446 /* Make sure we don't add these DIEs into type units.
31447 We could emit skeleton DIEs for context (namespaces,
31448 outer structs/classes) and a skeleton DIE for the
31449 innermost context with DW_AT_signature pointing to the
31450 type unit. See PR78835. */
31451 while (pdie && pdie->die_tag != DW_TAG_type_unit)
31452 pdie = pdie->die_parent;
31453 if (pdie == NULL)
31455 /* Creating a full DIE for tdecl is overly expensive and
31456 at this point even wrong when in the LTO phase
31457 as it can end up generating new type DIEs we didn't
31458 output and thus optimize_external_refs will crash. */
31459 tdie = new_die (DW_TAG_subprogram, cdie, NULL_TREE);
31460 add_AT_flag (tdie, DW_AT_external, 1);
31461 add_AT_flag (tdie, DW_AT_declaration, 1);
31462 add_linkage_attr (tdie, tdecl);
31463 add_name_and_src_coords_attributes (tdie, tdecl, true);
31464 equate_decl_number_to_die (tdecl, tdie);
31467 if (tdie)
31469 a->dw_attr_val.val_class = dw_val_class_die_ref;
31470 a->dw_attr_val.v.val_die_ref.die = tdie;
31471 a->dw_attr_val.v.val_die_ref.external = 0;
31473 else
31475 if (AT_index (a) != NOT_INDEXED)
31476 remove_addr_table_entry (a->dw_attr_val.val_entry);
31477 remove_AT (die, a->dw_attr);
31478 ix--;
31481 break;
31482 default:
31483 break;
31486 if (remove_AT_byte_size)
31487 remove_AT (die, dwarf_version >= 5
31488 ? DW_AT_string_length_byte_size
31489 : DW_AT_byte_size);
31491 FOR_EACH_CHILD (die, c, resolve_addr (c));
31494 /* Helper routines for optimize_location_lists.
31495 This pass tries to share identical local lists in .debug_loc
31496 section. */
31498 /* Iteratively hash operands of LOC opcode into HSTATE. */
31500 static void
31501 hash_loc_operands (dw_loc_descr_ref loc, inchash::hash &hstate)
31503 dw_val_ref val1 = &loc->dw_loc_oprnd1;
31504 dw_val_ref val2 = &loc->dw_loc_oprnd2;
31506 switch (loc->dw_loc_opc)
31508 case DW_OP_const4u:
31509 case DW_OP_const8u:
31510 if (loc->dtprel)
31511 goto hash_addr;
31512 /* FALLTHRU */
31513 case DW_OP_const1u:
31514 case DW_OP_const1s:
31515 case DW_OP_const2u:
31516 case DW_OP_const2s:
31517 case DW_OP_const4s:
31518 case DW_OP_const8s:
31519 case DW_OP_constu:
31520 case DW_OP_consts:
31521 case DW_OP_pick:
31522 case DW_OP_plus_uconst:
31523 case DW_OP_breg0:
31524 case DW_OP_breg1:
31525 case DW_OP_breg2:
31526 case DW_OP_breg3:
31527 case DW_OP_breg4:
31528 case DW_OP_breg5:
31529 case DW_OP_breg6:
31530 case DW_OP_breg7:
31531 case DW_OP_breg8:
31532 case DW_OP_breg9:
31533 case DW_OP_breg10:
31534 case DW_OP_breg11:
31535 case DW_OP_breg12:
31536 case DW_OP_breg13:
31537 case DW_OP_breg14:
31538 case DW_OP_breg15:
31539 case DW_OP_breg16:
31540 case DW_OP_breg17:
31541 case DW_OP_breg18:
31542 case DW_OP_breg19:
31543 case DW_OP_breg20:
31544 case DW_OP_breg21:
31545 case DW_OP_breg22:
31546 case DW_OP_breg23:
31547 case DW_OP_breg24:
31548 case DW_OP_breg25:
31549 case DW_OP_breg26:
31550 case DW_OP_breg27:
31551 case DW_OP_breg28:
31552 case DW_OP_breg29:
31553 case DW_OP_breg30:
31554 case DW_OP_breg31:
31555 case DW_OP_regx:
31556 case DW_OP_fbreg:
31557 case DW_OP_piece:
31558 case DW_OP_deref_size:
31559 case DW_OP_xderef_size:
31560 hstate.add_object (val1->v.val_int);
31561 break;
31562 case DW_OP_skip:
31563 case DW_OP_bra:
31565 int offset;
31567 gcc_assert (val1->val_class == dw_val_class_loc);
31568 offset = val1->v.val_loc->dw_loc_addr - (loc->dw_loc_addr + 3);
31569 hstate.add_object (offset);
31571 break;
31572 case DW_OP_implicit_value:
31573 hstate.add_object (val1->v.val_unsigned);
31574 switch (val2->val_class)
31576 case dw_val_class_const:
31577 hstate.add_object (val2->v.val_int);
31578 break;
31579 case dw_val_class_vec:
31581 unsigned int elt_size = val2->v.val_vec.elt_size;
31582 unsigned int len = val2->v.val_vec.length;
31584 hstate.add_int (elt_size);
31585 hstate.add_int (len);
31586 hstate.add (val2->v.val_vec.array, len * elt_size);
31588 break;
31589 case dw_val_class_const_double:
31590 hstate.add_object (val2->v.val_double.low);
31591 hstate.add_object (val2->v.val_double.high);
31592 break;
31593 case dw_val_class_wide_int:
31594 hstate.add (val2->v.val_wide->get_val (),
31595 get_full_len (*val2->v.val_wide)
31596 * HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR);
31597 break;
31598 case dw_val_class_addr:
31599 inchash::add_rtx (val2->v.val_addr, hstate);
31600 break;
31601 default:
31602 gcc_unreachable ();
31604 break;
31605 case DW_OP_bregx:
31606 case DW_OP_bit_piece:
31607 hstate.add_object (val1->v.val_int);
31608 hstate.add_object (val2->v.val_int);
31609 break;
31610 case DW_OP_addr:
31611 hash_addr:
31612 if (loc->dtprel)
31614 unsigned char dtprel = 0xd1;
31615 hstate.add_object (dtprel);
31617 inchash::add_rtx (val1->v.val_addr, hstate);
31618 break;
31619 case DW_OP_GNU_addr_index:
31620 case DW_OP_addrx:
31621 case DW_OP_GNU_const_index:
31622 case DW_OP_constx:
31624 if (loc->dtprel)
31626 unsigned char dtprel = 0xd1;
31627 hstate.add_object (dtprel);
31629 inchash::add_rtx (val1->val_entry->addr.rtl, hstate);
31631 break;
31632 case DW_OP_implicit_pointer:
31633 case DW_OP_GNU_implicit_pointer:
31634 hstate.add_int (val2->v.val_int);
31635 break;
31636 case DW_OP_entry_value:
31637 case DW_OP_GNU_entry_value:
31638 hstate.add_object (val1->v.val_loc);
31639 break;
31640 case DW_OP_regval_type:
31641 case DW_OP_deref_type:
31642 case DW_OP_GNU_regval_type:
31643 case DW_OP_GNU_deref_type:
31645 unsigned int byte_size
31646 = get_AT_unsigned (val2->v.val_die_ref.die, DW_AT_byte_size);
31647 unsigned int encoding
31648 = get_AT_unsigned (val2->v.val_die_ref.die, DW_AT_encoding);
31649 hstate.add_object (val1->v.val_int);
31650 hstate.add_object (byte_size);
31651 hstate.add_object (encoding);
31653 break;
31654 case DW_OP_convert:
31655 case DW_OP_reinterpret:
31656 case DW_OP_GNU_convert:
31657 case DW_OP_GNU_reinterpret:
31658 if (val1->val_class == dw_val_class_unsigned_const)
31660 hstate.add_object (val1->v.val_unsigned);
31661 break;
31663 /* FALLTHRU */
31664 case DW_OP_const_type:
31665 case DW_OP_GNU_const_type:
31667 unsigned int byte_size
31668 = get_AT_unsigned (val1->v.val_die_ref.die, DW_AT_byte_size);
31669 unsigned int encoding
31670 = get_AT_unsigned (val1->v.val_die_ref.die, DW_AT_encoding);
31671 hstate.add_object (byte_size);
31672 hstate.add_object (encoding);
31673 if (loc->dw_loc_opc != DW_OP_const_type
31674 && loc->dw_loc_opc != DW_OP_GNU_const_type)
31675 break;
31676 hstate.add_object (val2->val_class);
31677 switch (val2->val_class)
31679 case dw_val_class_const:
31680 hstate.add_object (val2->v.val_int);
31681 break;
31682 case dw_val_class_vec:
31684 unsigned int elt_size = val2->v.val_vec.elt_size;
31685 unsigned int len = val2->v.val_vec.length;
31687 hstate.add_object (elt_size);
31688 hstate.add_object (len);
31689 hstate.add (val2->v.val_vec.array, len * elt_size);
31691 break;
31692 case dw_val_class_const_double:
31693 hstate.add_object (val2->v.val_double.low);
31694 hstate.add_object (val2->v.val_double.high);
31695 break;
31696 case dw_val_class_wide_int:
31697 hstate.add (val2->v.val_wide->get_val (),
31698 get_full_len (*val2->v.val_wide)
31699 * HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR);
31700 break;
31701 default:
31702 gcc_unreachable ();
31705 break;
31707 default:
31708 /* Other codes have no operands. */
31709 break;
31713 /* Iteratively hash the whole DWARF location expression LOC into HSTATE. */
31715 static inline void
31716 hash_locs (dw_loc_descr_ref loc, inchash::hash &hstate)
31718 dw_loc_descr_ref l;
31719 bool sizes_computed = false;
31720 /* Compute sizes, so that DW_OP_skip/DW_OP_bra can be checksummed. */
31721 size_of_locs (loc);
31723 for (l = loc; l != NULL; l = l->dw_loc_next)
31725 enum dwarf_location_atom opc = l->dw_loc_opc;
31726 hstate.add_object (opc);
31727 if ((opc == DW_OP_skip || opc == DW_OP_bra) && !sizes_computed)
31729 size_of_locs (loc);
31730 sizes_computed = true;
31732 hash_loc_operands (l, hstate);
31736 /* Compute hash of the whole location list LIST_HEAD. */
31738 static inline void
31739 hash_loc_list (dw_loc_list_ref list_head)
31741 dw_loc_list_ref curr = list_head;
31742 inchash::hash hstate;
31744 for (curr = list_head; curr != NULL; curr = curr->dw_loc_next)
31746 hstate.add (curr->begin, strlen (curr->begin) + 1);
31747 hstate.add (curr->end, strlen (curr->end) + 1);
31748 hstate.add_object (curr->vbegin);
31749 hstate.add_object (curr->vend);
31750 if (curr->section)
31751 hstate.add (curr->section, strlen (curr->section) + 1);
31752 hash_locs (curr->expr, hstate);
31754 list_head->hash = hstate.end ();
31757 /* Return true if X and Y opcodes have the same operands. */
31759 static inline bool
31760 compare_loc_operands (dw_loc_descr_ref x, dw_loc_descr_ref y)
31762 dw_val_ref valx1 = &x->dw_loc_oprnd1;
31763 dw_val_ref valx2 = &x->dw_loc_oprnd2;
31764 dw_val_ref valy1 = &y->dw_loc_oprnd1;
31765 dw_val_ref valy2 = &y->dw_loc_oprnd2;
31767 switch (x->dw_loc_opc)
31769 case DW_OP_const4u:
31770 case DW_OP_const8u:
31771 if (x->dtprel)
31772 goto hash_addr;
31773 /* FALLTHRU */
31774 case DW_OP_const1u:
31775 case DW_OP_const1s:
31776 case DW_OP_const2u:
31777 case DW_OP_const2s:
31778 case DW_OP_const4s:
31779 case DW_OP_const8s:
31780 case DW_OP_constu:
31781 case DW_OP_consts:
31782 case DW_OP_pick:
31783 case DW_OP_plus_uconst:
31784 case DW_OP_breg0:
31785 case DW_OP_breg1:
31786 case DW_OP_breg2:
31787 case DW_OP_breg3:
31788 case DW_OP_breg4:
31789 case DW_OP_breg5:
31790 case DW_OP_breg6:
31791 case DW_OP_breg7:
31792 case DW_OP_breg8:
31793 case DW_OP_breg9:
31794 case DW_OP_breg10:
31795 case DW_OP_breg11:
31796 case DW_OP_breg12:
31797 case DW_OP_breg13:
31798 case DW_OP_breg14:
31799 case DW_OP_breg15:
31800 case DW_OP_breg16:
31801 case DW_OP_breg17:
31802 case DW_OP_breg18:
31803 case DW_OP_breg19:
31804 case DW_OP_breg20:
31805 case DW_OP_breg21:
31806 case DW_OP_breg22:
31807 case DW_OP_breg23:
31808 case DW_OP_breg24:
31809 case DW_OP_breg25:
31810 case DW_OP_breg26:
31811 case DW_OP_breg27:
31812 case DW_OP_breg28:
31813 case DW_OP_breg29:
31814 case DW_OP_breg30:
31815 case DW_OP_breg31:
31816 case DW_OP_regx:
31817 case DW_OP_fbreg:
31818 case DW_OP_piece:
31819 case DW_OP_deref_size:
31820 case DW_OP_xderef_size:
31821 return valx1->v.val_int == valy1->v.val_int;
31822 case DW_OP_skip:
31823 case DW_OP_bra:
31824 /* If splitting debug info, the use of DW_OP_GNU_addr_index
31825 can cause irrelevant differences in dw_loc_addr. */
31826 gcc_assert (valx1->val_class == dw_val_class_loc
31827 && valy1->val_class == dw_val_class_loc
31828 && (dwarf_split_debug_info
31829 || x->dw_loc_addr == y->dw_loc_addr));
31830 return valx1->v.val_loc->dw_loc_addr == valy1->v.val_loc->dw_loc_addr;
31831 case DW_OP_implicit_value:
31832 if (valx1->v.val_unsigned != valy1->v.val_unsigned
31833 || valx2->val_class != valy2->val_class)
31834 return false;
31835 switch (valx2->val_class)
31837 case dw_val_class_const:
31838 return valx2->v.val_int == valy2->v.val_int;
31839 case dw_val_class_vec:
31840 return valx2->v.val_vec.elt_size == valy2->v.val_vec.elt_size
31841 && valx2->v.val_vec.length == valy2->v.val_vec.length
31842 && memcmp (valx2->v.val_vec.array, valy2->v.val_vec.array,
31843 valx2->v.val_vec.elt_size
31844 * valx2->v.val_vec.length) == 0;
31845 case dw_val_class_const_double:
31846 return valx2->v.val_double.low == valy2->v.val_double.low
31847 && valx2->v.val_double.high == valy2->v.val_double.high;
31848 case dw_val_class_wide_int:
31849 return *valx2->v.val_wide == *valy2->v.val_wide;
31850 case dw_val_class_addr:
31851 return rtx_equal_p (valx2->v.val_addr, valy2->v.val_addr);
31852 default:
31853 gcc_unreachable ();
31855 case DW_OP_bregx:
31856 case DW_OP_bit_piece:
31857 return valx1->v.val_int == valy1->v.val_int
31858 && valx2->v.val_int == valy2->v.val_int;
31859 case DW_OP_addr:
31860 hash_addr:
31861 return rtx_equal_p (valx1->v.val_addr, valy1->v.val_addr);
31862 case DW_OP_GNU_addr_index:
31863 case DW_OP_addrx:
31864 case DW_OP_GNU_const_index:
31865 case DW_OP_constx:
31867 rtx ax1 = valx1->val_entry->addr.rtl;
31868 rtx ay1 = valy1->val_entry->addr.rtl;
31869 return rtx_equal_p (ax1, ay1);
31871 case DW_OP_implicit_pointer:
31872 case DW_OP_GNU_implicit_pointer:
31873 return valx1->val_class == dw_val_class_die_ref
31874 && valx1->val_class == valy1->val_class
31875 && valx1->v.val_die_ref.die == valy1->v.val_die_ref.die
31876 && valx2->v.val_int == valy2->v.val_int;
31877 case DW_OP_entry_value:
31878 case DW_OP_GNU_entry_value:
31879 return compare_loc_operands (valx1->v.val_loc, valy1->v.val_loc);
31880 case DW_OP_const_type:
31881 case DW_OP_GNU_const_type:
31882 if (valx1->v.val_die_ref.die != valy1->v.val_die_ref.die
31883 || valx2->val_class != valy2->val_class)
31884 return false;
31885 switch (valx2->val_class)
31887 case dw_val_class_const:
31888 return valx2->v.val_int == valy2->v.val_int;
31889 case dw_val_class_vec:
31890 return valx2->v.val_vec.elt_size == valy2->v.val_vec.elt_size
31891 && valx2->v.val_vec.length == valy2->v.val_vec.length
31892 && memcmp (valx2->v.val_vec.array, valy2->v.val_vec.array,
31893 valx2->v.val_vec.elt_size
31894 * valx2->v.val_vec.length) == 0;
31895 case dw_val_class_const_double:
31896 return valx2->v.val_double.low == valy2->v.val_double.low
31897 && valx2->v.val_double.high == valy2->v.val_double.high;
31898 case dw_val_class_wide_int:
31899 return *valx2->v.val_wide == *valy2->v.val_wide;
31900 default:
31901 gcc_unreachable ();
31903 case DW_OP_regval_type:
31904 case DW_OP_deref_type:
31905 case DW_OP_GNU_regval_type:
31906 case DW_OP_GNU_deref_type:
31907 return valx1->v.val_int == valy1->v.val_int
31908 && valx2->v.val_die_ref.die == valy2->v.val_die_ref.die;
31909 case DW_OP_convert:
31910 case DW_OP_reinterpret:
31911 case DW_OP_GNU_convert:
31912 case DW_OP_GNU_reinterpret:
31913 if (valx1->val_class != valy1->val_class)
31914 return false;
31915 if (valx1->val_class == dw_val_class_unsigned_const)
31916 return valx1->v.val_unsigned == valy1->v.val_unsigned;
31917 return valx1->v.val_die_ref.die == valy1->v.val_die_ref.die;
31918 case DW_OP_GNU_parameter_ref:
31919 return valx1->val_class == dw_val_class_die_ref
31920 && valx1->val_class == valy1->val_class
31921 && valx1->v.val_die_ref.die == valy1->v.val_die_ref.die;
31922 default:
31923 /* Other codes have no operands. */
31924 return true;
31928 /* Return true if DWARF location expressions X and Y are the same. */
31930 static inline bool
31931 compare_locs (dw_loc_descr_ref x, dw_loc_descr_ref y)
31933 for (; x != NULL && y != NULL; x = x->dw_loc_next, y = y->dw_loc_next)
31934 if (x->dw_loc_opc != y->dw_loc_opc
31935 || x->dtprel != y->dtprel
31936 || !compare_loc_operands (x, y))
31937 break;
31938 return x == NULL && y == NULL;
31941 /* Hashtable helpers. */
31943 struct loc_list_hasher : nofree_ptr_hash <dw_loc_list_struct>
31945 static inline hashval_t hash (const dw_loc_list_struct *);
31946 static inline bool equal (const dw_loc_list_struct *,
31947 const dw_loc_list_struct *);
31950 /* Return precomputed hash of location list X. */
31952 inline hashval_t
31953 loc_list_hasher::hash (const dw_loc_list_struct *x)
31955 return x->hash;
31958 /* Return true if location lists A and B are the same. */
31960 inline bool
31961 loc_list_hasher::equal (const dw_loc_list_struct *a,
31962 const dw_loc_list_struct *b)
31964 if (a == b)
31965 return true;
31966 if (a->hash != b->hash)
31967 return false;
31968 for (; a != NULL && b != NULL; a = a->dw_loc_next, b = b->dw_loc_next)
31969 if (strcmp (a->begin, b->begin) != 0
31970 || strcmp (a->end, b->end) != 0
31971 || (a->section == NULL) != (b->section == NULL)
31972 || (a->section && strcmp (a->section, b->section) != 0)
31973 || a->vbegin != b->vbegin || a->vend != b->vend
31974 || !compare_locs (a->expr, b->expr))
31975 break;
31976 return a == NULL && b == NULL;
31979 typedef hash_table<loc_list_hasher> loc_list_hash_type;
31982 /* Recursively optimize location lists referenced from DIE
31983 children and share them whenever possible. */
31985 static void
31986 optimize_location_lists_1 (dw_die_ref die, loc_list_hash_type *htab)
31988 dw_die_ref c;
31989 dw_attr_node *a;
31990 unsigned ix;
31991 dw_loc_list_struct **slot;
31992 bool drop_locviews = false;
31993 bool has_locviews = false;
31995 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
31996 if (AT_class (a) == dw_val_class_loc_list)
31998 dw_loc_list_ref list = AT_loc_list (a);
31999 /* TODO: perform some optimizations here, before hashing
32000 it and storing into the hash table. */
32001 hash_loc_list (list);
32002 slot = htab->find_slot_with_hash (list, list->hash, INSERT);
32003 if (*slot == NULL)
32005 *slot = list;
32006 if (loc_list_has_views (list))
32007 gcc_assert (list->vl_symbol);
32008 else if (list->vl_symbol)
32010 drop_locviews = true;
32011 list->vl_symbol = NULL;
32014 else
32016 if (list->vl_symbol && !(*slot)->vl_symbol)
32017 drop_locviews = true;
32018 a->dw_attr_val.v.val_loc_list = *slot;
32021 else if (AT_class (a) == dw_val_class_view_list)
32023 gcc_checking_assert (a->dw_attr == DW_AT_GNU_locviews);
32024 has_locviews = true;
32028 if (drop_locviews && has_locviews)
32029 remove_AT (die, DW_AT_GNU_locviews);
32031 FOR_EACH_CHILD (die, c, optimize_location_lists_1 (c, htab));
32035 /* Recursively assign each location list a unique index into the debug_addr
32036 section. */
32038 static void
32039 index_location_lists (dw_die_ref die)
32041 dw_die_ref c;
32042 dw_attr_node *a;
32043 unsigned ix;
32045 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
32046 if (AT_class (a) == dw_val_class_loc_list)
32048 dw_loc_list_ref list = AT_loc_list (a);
32049 dw_loc_list_ref curr;
32050 for (curr = list; curr != NULL; curr = curr->dw_loc_next)
32052 /* Don't index an entry that has already been indexed
32053 or won't be output. Make sure skip_loc_list_entry doesn't
32054 call size_of_locs, because that might cause circular dependency,
32055 index_location_lists requiring address table indexes to be
32056 computed, but adding new indexes through add_addr_table_entry
32057 and address table index computation requiring no new additions
32058 to the hash table. In the rare case of DWARF[234] >= 64KB
32059 location expression, we'll just waste unused address table entry
32060 for it. */
32061 if (curr->begin_entry != NULL || skip_loc_list_entry (curr))
32062 continue;
32064 curr->begin_entry
32065 = add_addr_table_entry (xstrdup (curr->begin), ate_kind_label);
32066 if (dwarf_version >= 5 && !HAVE_AS_LEB128)
32067 curr->end_entry
32068 = add_addr_table_entry (xstrdup (curr->end), ate_kind_label);
32072 FOR_EACH_CHILD (die, c, index_location_lists (c));
32075 /* Optimize location lists referenced from DIE
32076 children and share them whenever possible. */
32078 static void
32079 optimize_location_lists (dw_die_ref die)
32081 loc_list_hash_type htab (500);
32082 optimize_location_lists_1 (die, &htab);
32085 /* Traverse the limbo die list, and add parent/child links. The only
32086 dies without parents that should be here are concrete instances of
32087 inline functions, and the comp_unit_die. We can ignore the comp_unit_die.
32088 For concrete instances, we can get the parent die from the abstract
32089 instance. */
32091 static void
32092 flush_limbo_die_list (void)
32094 limbo_die_node *node;
32096 /* get_context_die calls force_decl_die, which can put new DIEs on the
32097 limbo list in LTO mode when nested functions are put in a different
32098 partition than that of their parent function. */
32099 while ((node = limbo_die_list))
32101 dw_die_ref die = node->die;
32102 limbo_die_list = node->next;
32104 if (die->die_parent == NULL)
32106 dw_die_ref origin = get_AT_ref (die, DW_AT_abstract_origin);
32108 if (origin && origin->die_parent)
32109 add_child_die (origin->die_parent, die);
32110 else if (is_cu_die (die))
32112 else if (seen_error ())
32113 /* It's OK to be confused by errors in the input. */
32114 add_child_die (comp_unit_die (), die);
32115 else
32117 /* In certain situations, the lexical block containing a
32118 nested function can be optimized away, which results
32119 in the nested function die being orphaned. Likewise
32120 with the return type of that nested function. Force
32121 this to be a child of the containing function.
32123 It may happen that even the containing function got fully
32124 inlined and optimized out. In that case we are lost and
32125 assign the empty child. This should not be big issue as
32126 the function is likely unreachable too. */
32127 gcc_assert (node->created_for);
32129 if (DECL_P (node->created_for))
32130 origin = get_context_die (DECL_CONTEXT (node->created_for));
32131 else if (TYPE_P (node->created_for))
32132 origin = scope_die_for (node->created_for, comp_unit_die ());
32133 else
32134 origin = comp_unit_die ();
32136 add_child_die (origin, die);
32142 /* Reset DIEs so we can output them again. */
32144 static void
32145 reset_dies (dw_die_ref die)
32147 dw_die_ref c;
32149 /* Remove stuff we re-generate. */
32150 die->die_mark = 0;
32151 die->die_offset = 0;
32152 die->die_abbrev = 0;
32153 remove_AT (die, DW_AT_sibling);
32155 FOR_EACH_CHILD (die, c, reset_dies (c));
32158 /* reset_indirect_string removed the references coming from DW_AT_name
32159 and DW_AT_comp_dir attributes on compilation unit DIEs. Readd them as
32160 .debug_line_str strings again. */
32162 static void
32163 adjust_name_comp_dir (dw_die_ref die)
32165 for (int i = 0; i < 2; i++)
32167 dwarf_attribute attr_kind = i ? DW_AT_comp_dir : DW_AT_name;
32168 dw_attr_node *a = get_AT (die, attr_kind);
32169 if (a == NULL || a->dw_attr_val.val_class != dw_val_class_str)
32170 continue;
32172 if (!debug_line_str_hash)
32173 debug_line_str_hash
32174 = hash_table<indirect_string_hasher>::create_ggc (10);
32176 struct indirect_string_node *node
32177 = find_AT_string_in_table (a->dw_attr_val.v.val_str->str,
32178 debug_line_str_hash);
32179 set_indirect_string (node);
32180 node->form = DW_FORM_line_strp;
32181 a->dw_attr_val.v.val_str = node;
32185 /* Output stuff that dwarf requires at the end of every file,
32186 and generate the DWARF-2 debugging info. */
32188 static void
32189 dwarf2out_finish (const char *filename)
32191 comdat_type_node *ctnode;
32192 dw_die_ref main_comp_unit_die;
32193 unsigned char checksum[16];
32194 char dl_section_ref[MAX_ARTIFICIAL_LABEL_BYTES];
32196 /* Generate CTF/BTF debug info. */
32197 if ((ctf_debug_info_level > CTFINFO_LEVEL_NONE
32198 || btf_debuginfo_p ()) && lang_GNU_C ())
32199 ctf_debug_finish (filename);
32201 /* Skip emitting DWARF if not required. */
32202 if (!dwarf_debuginfo_p ())
32203 return;
32205 /* Flush out any latecomers to the limbo party. */
32206 flush_limbo_die_list ();
32208 if (inline_entry_data_table)
32209 gcc_assert (inline_entry_data_table->is_empty ());
32211 if (flag_checking)
32213 verify_die (comp_unit_die ());
32214 for (limbo_die_node *node = cu_die_list; node; node = node->next)
32215 verify_die (node->die);
32218 /* We shouldn't have any symbols with delayed asm names for
32219 DIEs generated after early finish. */
32220 gcc_assert (deferred_asm_name == NULL);
32222 gen_remaining_tmpl_value_param_die_attribute ();
32224 if (flag_generate_lto || flag_generate_offload)
32226 gcc_assert (flag_fat_lto_objects || flag_generate_offload);
32228 /* Prune stuff so that dwarf2out_finish runs successfully
32229 for the fat part of the object. */
32230 reset_dies (comp_unit_die ());
32231 for (limbo_die_node *node = cu_die_list; node; node = node->next)
32232 reset_dies (node->die);
32234 hash_table<comdat_type_hasher> comdat_type_table (100);
32235 for (ctnode = comdat_type_list; ctnode != NULL; ctnode = ctnode->next)
32237 comdat_type_node **slot
32238 = comdat_type_table.find_slot (ctnode, INSERT);
32240 /* Don't reset types twice. */
32241 if (*slot != HTAB_EMPTY_ENTRY)
32242 continue;
32244 /* Remove the pointer to the line table. */
32245 remove_AT (ctnode->root_die, DW_AT_stmt_list);
32247 if (debug_info_level >= DINFO_LEVEL_TERSE)
32248 reset_dies (ctnode->root_die);
32250 *slot = ctnode;
32253 /* Reset die CU symbol so we don't output it twice. */
32254 comp_unit_die ()->die_id.die_symbol = NULL;
32256 /* Remove DW_AT_macro and DW_AT_stmt_list from the early output. */
32257 remove_AT (comp_unit_die (), DW_AT_stmt_list);
32258 if (have_macinfo)
32259 remove_AT (comp_unit_die (), DEBUG_MACRO_ATTRIBUTE);
32261 /* Remove indirect string decisions. */
32262 debug_str_hash->traverse<void *, reset_indirect_string> (NULL);
32263 if (debug_line_str_hash)
32265 debug_line_str_hash->traverse<void *, reset_indirect_string> (NULL);
32266 debug_line_str_hash = NULL;
32267 if (asm_outputs_debug_line_str ())
32269 adjust_name_comp_dir (comp_unit_die ());
32270 for (limbo_die_node *node = cu_die_list; node; node = node->next)
32271 adjust_name_comp_dir (node->die);
32276 #if ENABLE_ASSERT_CHECKING
32278 dw_die_ref die = comp_unit_die (), c;
32279 FOR_EACH_CHILD (die, c, gcc_assert (! c->die_mark));
32281 #endif
32282 base_types.truncate (0);
32283 for (ctnode = comdat_type_list; ctnode != NULL; ctnode = ctnode->next)
32284 resolve_addr (ctnode->root_die);
32285 resolve_addr (comp_unit_die ());
32286 move_marked_base_types ();
32288 if (dump_file)
32290 fprintf (dump_file, "DWARF for %s\n", filename);
32291 print_die (comp_unit_die (), dump_file);
32294 /* Initialize sections and labels used for actual assembler output. */
32295 unsigned generation = init_sections_and_labels (false);
32297 /* Traverse the DIE's and add sibling attributes to those DIE's that
32298 have children. */
32299 add_sibling_attributes (comp_unit_die ());
32300 limbo_die_node *node;
32301 for (node = cu_die_list; node; node = node->next)
32302 add_sibling_attributes (node->die);
32303 for (ctnode = comdat_type_list; ctnode != NULL; ctnode = ctnode->next)
32304 add_sibling_attributes (ctnode->root_die);
32306 /* When splitting DWARF info, we put some attributes in the
32307 skeleton compile_unit DIE that remains in the .o, while
32308 most attributes go in the DWO compile_unit_die. */
32309 if (dwarf_split_debug_info)
32311 limbo_die_node *cu;
32312 main_comp_unit_die = gen_compile_unit_die (NULL);
32313 if (dwarf_version >= 5)
32314 main_comp_unit_die->die_tag = DW_TAG_skeleton_unit;
32315 cu = limbo_die_list;
32316 gcc_assert (cu->die == main_comp_unit_die);
32317 limbo_die_list = limbo_die_list->next;
32318 cu->next = cu_die_list;
32319 cu_die_list = cu;
32321 else
32322 main_comp_unit_die = comp_unit_die ();
32324 /* Output a terminator label for the .text section. */
32325 switch_to_section (text_section);
32326 targetm.asm_out.internal_label (asm_out_file, TEXT_END_LABEL, 0);
32327 if (cold_text_section)
32329 switch_to_section (cold_text_section);
32330 targetm.asm_out.internal_label (asm_out_file, COLD_END_LABEL, 0);
32333 /* We can only use the low/high_pc attributes if all of the code was
32334 in .text. */
32335 if ((!have_multiple_function_sections
32336 && vec_safe_length (switch_text_ranges) < 2)
32337 || (dwarf_version < 3 && dwarf_strict))
32339 const char *end_label = text_end_label;
32340 if (vec_safe_length (switch_text_ranges) == 1)
32341 end_label = (*switch_text_ranges)[0];
32342 /* Don't add if the CU has no associated code. */
32343 if (switch_text_ranges)
32344 add_AT_low_high_pc (main_comp_unit_die, text_section_label,
32345 end_label, true);
32347 else
32349 unsigned fde_idx;
32350 dw_fde_ref fde;
32351 bool range_list_added = false;
32352 if (switch_text_ranges)
32354 const char *prev_loc = text_section_label;
32355 const char *loc;
32356 unsigned idx;
32358 FOR_EACH_VEC_ELT (*switch_text_ranges, idx, loc)
32359 if (prev_loc)
32361 add_ranges_by_labels (main_comp_unit_die, prev_loc,
32362 loc, &range_list_added, true);
32363 prev_loc = NULL;
32365 else
32366 prev_loc = loc;
32368 if (prev_loc)
32369 add_ranges_by_labels (main_comp_unit_die, prev_loc,
32370 text_end_label, &range_list_added, true);
32373 if (switch_cold_ranges)
32375 const char *prev_loc = cold_text_section_label;
32376 const char *loc;
32377 unsigned idx;
32379 FOR_EACH_VEC_ELT (*switch_cold_ranges, idx, loc)
32380 if (prev_loc)
32382 add_ranges_by_labels (main_comp_unit_die, prev_loc,
32383 loc, &range_list_added, true);
32384 prev_loc = NULL;
32386 else
32387 prev_loc = loc;
32389 if (prev_loc)
32390 add_ranges_by_labels (main_comp_unit_die, prev_loc,
32391 cold_end_label, &range_list_added, true);
32394 FOR_EACH_VEC_ELT (*fde_vec, fde_idx, fde)
32396 if (fde->ignored_debug)
32397 continue;
32398 if (!fde->in_std_section)
32399 add_ranges_by_labels (main_comp_unit_die, fde->dw_fde_begin,
32400 fde->dw_fde_end, &range_list_added,
32401 true);
32402 if (fde->dw_fde_second_begin && !fde->second_in_std_section)
32403 add_ranges_by_labels (main_comp_unit_die, fde->dw_fde_second_begin,
32404 fde->dw_fde_second_end, &range_list_added,
32405 true);
32408 if (range_list_added)
32410 /* We need to give .debug_loc and .debug_ranges an appropriate
32411 "base address". Use zero so that these addresses become
32412 absolute. Historically, we've emitted the unexpected
32413 DW_AT_entry_pc instead of DW_AT_low_pc for this purpose.
32414 Emit both to give time for other tools to adapt. */
32415 add_AT_addr (main_comp_unit_die, DW_AT_low_pc, const0_rtx, true);
32416 if (! dwarf_strict && dwarf_version < 4)
32417 add_AT_addr (main_comp_unit_die, DW_AT_entry_pc, const0_rtx, true);
32419 add_ranges (NULL);
32420 have_multiple_function_sections = true;
32424 /* AIX Assembler inserts the length, so adjust the reference to match the
32425 offset expected by debuggers. */
32426 strcpy (dl_section_ref, debug_line_section_label);
32427 if (XCOFF_DEBUGGING_INFO)
32428 strcat (dl_section_ref, DWARF_INITIAL_LENGTH_SIZE_STR);
32430 if (debug_info_level >= DINFO_LEVEL_TERSE)
32431 add_AT_lineptr (main_comp_unit_die, DW_AT_stmt_list,
32432 dl_section_ref);
32434 if (have_macinfo)
32435 add_AT_macptr (comp_unit_die (), DEBUG_MACRO_ATTRIBUTE,
32436 macinfo_section_label);
32438 if (dwarf_split_debug_info)
32440 if (have_location_lists)
32442 /* Since we generate the loclists in the split DWARF .dwo
32443 file itself, we don't need to generate a loclists_base
32444 attribute for the split compile unit DIE. That attribute
32445 (and using relocatable sec_offset FORMs) isn't allowed
32446 for a split compile unit. Only if the .debug_loclists
32447 section was in the main file, would we need to generate a
32448 loclists_base attribute here (for the full or skeleton
32449 unit DIE). */
32451 /* optimize_location_lists calculates the size of the lists,
32452 so index them first, and assign indices to the entries.
32453 Although optimize_location_lists will remove entries from
32454 the table, it only does so for duplicates, and therefore
32455 only reduces ref_counts to 1. */
32456 index_location_lists (comp_unit_die ());
32459 if (dwarf_version >= 5 && !vec_safe_is_empty (ranges_table))
32460 index_rnglists ();
32462 if (addr_index_table != NULL)
32464 unsigned int index = 0;
32465 addr_index_table
32466 ->traverse_noresize<unsigned int *, index_addr_table_entry>
32467 (&index);
32471 loc_list_idx = 0;
32472 if (have_location_lists)
32474 optimize_location_lists (comp_unit_die ());
32475 /* And finally assign indexes to the entries for -gsplit-dwarf. */
32476 if (dwarf_version >= 5 && dwarf_split_debug_info)
32477 assign_location_list_indexes (comp_unit_die ());
32480 save_macinfo_strings ();
32482 if (dwarf_split_debug_info)
32484 unsigned int index = 0;
32486 /* Add attributes common to skeleton compile_units and
32487 type_units. Because these attributes include strings, it
32488 must be done before freezing the string table. Top-level
32489 skeleton die attrs are added when the skeleton type unit is
32490 created, so ensure it is created by this point. */
32491 add_top_level_skeleton_die_attrs (main_comp_unit_die);
32492 debug_str_hash->traverse_noresize<unsigned int *, index_string> (&index);
32495 /* Output all of the compilation units. We put the main one last so that
32496 the offsets are available to output_pubnames. */
32497 for (node = cu_die_list; node; node = node->next)
32498 output_comp_unit (node->die, 0, NULL);
32500 hash_table<comdat_type_hasher> comdat_type_table (100);
32501 for (ctnode = comdat_type_list; ctnode != NULL; ctnode = ctnode->next)
32503 comdat_type_node **slot = comdat_type_table.find_slot (ctnode, INSERT);
32505 /* Don't output duplicate types. */
32506 if (*slot != HTAB_EMPTY_ENTRY)
32507 continue;
32509 /* Add a pointer to the line table for the main compilation unit
32510 so that the debugger can make sense of DW_AT_decl_file
32511 attributes. */
32512 if (debug_info_level >= DINFO_LEVEL_TERSE)
32513 add_AT_lineptr (ctnode->root_die, DW_AT_stmt_list,
32514 (!dwarf_split_debug_info
32515 ? dl_section_ref
32516 : debug_skeleton_line_section_label));
32518 output_comdat_type_unit (ctnode, false);
32519 *slot = ctnode;
32522 if (dwarf_split_debug_info)
32524 int mark;
32525 struct md5_ctx ctx;
32527 /* Compute a checksum of the comp_unit to use as the dwo_id. */
32528 md5_init_ctx (&ctx);
32529 mark = 0;
32530 die_checksum (comp_unit_die (), &ctx, &mark);
32531 unmark_all_dies (comp_unit_die ());
32532 md5_finish_ctx (&ctx, checksum);
32534 if (dwarf_version < 5)
32536 /* Use the first 8 bytes of the checksum as the dwo_id,
32537 and add it to both comp-unit DIEs. */
32538 add_AT_data8 (main_comp_unit_die, DW_AT_GNU_dwo_id, checksum);
32539 add_AT_data8 (comp_unit_die (), DW_AT_GNU_dwo_id, checksum);
32542 /* Add the base offset of the ranges table to the skeleton
32543 comp-unit DIE. */
32544 if (!vec_safe_is_empty (ranges_table))
32546 if (dwarf_version < 5)
32547 add_AT_lineptr (main_comp_unit_die, DW_AT_GNU_ranges_base,
32548 ranges_section_label);
32551 output_addr_table ();
32554 /* Output the main compilation unit if non-empty or if .debug_macinfo
32555 or .debug_macro will be emitted. */
32556 output_comp_unit (comp_unit_die (), have_macinfo,
32557 dwarf_split_debug_info ? checksum : NULL);
32559 if (dwarf_split_debug_info && info_section_emitted)
32560 output_skeleton_debug_sections (main_comp_unit_die, checksum);
32562 /* Output the abbreviation table. */
32563 if (vec_safe_length (abbrev_die_table) != 1)
32565 switch_to_section (debug_abbrev_section);
32566 ASM_OUTPUT_LABEL (asm_out_file, abbrev_section_label);
32567 output_abbrev_section ();
32570 /* Output location list section if necessary. */
32571 if (have_location_lists)
32573 char l1[MAX_ARTIFICIAL_LABEL_BYTES];
32574 char l2[MAX_ARTIFICIAL_LABEL_BYTES];
32575 /* Output the location lists info. */
32576 switch_to_section (debug_loc_section);
32577 if (dwarf_version >= 5)
32579 ASM_GENERATE_INTERNAL_LABEL (l1, DEBUG_LOC_SECTION_LABEL, 2);
32580 ASM_GENERATE_INTERNAL_LABEL (l2, DEBUG_LOC_SECTION_LABEL, 3);
32581 if (DWARF_INITIAL_LENGTH_SIZE - dwarf_offset_size == 4)
32582 dw2_asm_output_data (4, 0xffffffff,
32583 "Initial length escape value indicating "
32584 "64-bit DWARF extension");
32585 dw2_asm_output_delta (dwarf_offset_size, l2, l1,
32586 "Length of Location Lists");
32587 ASM_OUTPUT_LABEL (asm_out_file, l1);
32588 output_dwarf_version ();
32589 dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Address Size");
32590 dw2_asm_output_data (1, 0, "Segment Size");
32591 dw2_asm_output_data (4, dwarf_split_debug_info ? loc_list_idx : 0,
32592 "Offset Entry Count");
32594 ASM_OUTPUT_LABEL (asm_out_file, loc_section_label);
32595 if (dwarf_version >= 5 && dwarf_split_debug_info)
32597 unsigned int save_loc_list_idx = loc_list_idx;
32598 loc_list_idx = 0;
32599 output_loclists_offsets (comp_unit_die ());
32600 gcc_assert (save_loc_list_idx == loc_list_idx);
32602 output_location_lists (comp_unit_die ());
32603 if (dwarf_version >= 5)
32604 ASM_OUTPUT_LABEL (asm_out_file, l2);
32607 output_pubtables ();
32609 /* Output the address range information if a CU (.debug_info section)
32610 was emitted. We output an empty table even if we had no functions
32611 to put in it. This because the consumer has no way to tell the
32612 difference between an empty table that we omitted and failure to
32613 generate a table that would have contained data. */
32614 if (info_section_emitted)
32616 switch_to_section (debug_aranges_section);
32617 output_aranges ();
32620 /* Output ranges section if necessary. */
32621 if (!vec_safe_is_empty (ranges_table))
32623 if (dwarf_version >= 5)
32625 if (dwarf_split_debug_info)
32627 /* We don't know right now whether there are any
32628 ranges for .debug_rnglists and any for .debug_rnglists.dwo.
32629 Depending on into which of those two belongs the first
32630 ranges_table entry, emit that section first and that
32631 output_rnglists call will return true if the other kind of
32632 ranges needs to be emitted as well. */
32633 bool dwo = (*ranges_table)[0].idx != DW_RANGES_IDX_SKELETON;
32634 if (output_rnglists (generation, dwo))
32635 output_rnglists (generation, !dwo);
32637 else
32638 output_rnglists (generation, false);
32640 else
32641 output_ranges ();
32644 /* Have to end the macro section. */
32645 if (have_macinfo)
32647 switch_to_section (debug_macinfo_section);
32648 ASM_OUTPUT_LABEL (asm_out_file, macinfo_section_label);
32649 output_macinfo (!dwarf_split_debug_info ? debug_line_section_label
32650 : debug_skeleton_line_section_label, false);
32651 dw2_asm_output_data (1, 0, "End compilation unit");
32654 /* Output the source line correspondence table. We must do this
32655 even if there is no line information. Otherwise, on an empty
32656 translation unit, we will generate a present, but empty,
32657 .debug_info section. IRIX 6.5 `nm' will then complain when
32658 examining the file. This is done late so that any filenames
32659 used by the debug_info section are marked as 'used'. */
32660 switch_to_section (debug_line_section);
32661 ASM_OUTPUT_LABEL (asm_out_file, debug_line_section_label);
32662 if (! output_asm_line_debug_info ())
32663 output_line_info (false);
32665 if (dwarf_split_debug_info && info_section_emitted)
32667 switch_to_section (debug_skeleton_line_section);
32668 ASM_OUTPUT_LABEL (asm_out_file, debug_skeleton_line_section_label);
32669 output_line_info (true);
32672 /* If we emitted any indirect strings, output the string table too. */
32673 if (debug_str_hash || skeleton_debug_str_hash)
32674 output_indirect_strings ();
32675 if (debug_line_str_hash)
32677 switch_to_section (debug_line_str_section);
32678 const enum dwarf_form form = DW_FORM_line_strp;
32679 debug_line_str_hash->traverse<enum dwarf_form,
32680 output_indirect_string> (form);
32683 /* ??? Move lvugid out of dwarf2out_source_line and reset it too? */
32684 symview_upper_bound = 0;
32685 if (zero_view_p)
32686 bitmap_clear (zero_view_p);
32689 /* Returns a hash value for X (which really is a variable_value_struct). */
32691 inline hashval_t
32692 variable_value_hasher::hash (variable_value_struct *x)
32694 return (hashval_t) x->decl_id;
32697 /* Return true if decl_id of variable_value_struct X is the same as
32698 UID of decl Y. */
32700 inline bool
32701 variable_value_hasher::equal (variable_value_struct *x, tree y)
32703 return x->decl_id == DECL_UID (y);
32706 /* Helper function for resolve_variable_value, handle
32707 DW_OP_GNU_variable_value in one location expression.
32708 Return true if exprloc has been changed into loclist. */
32710 static bool
32711 resolve_variable_value_in_expr (dw_attr_node *a, dw_loc_descr_ref loc)
32713 dw_loc_descr_ref next;
32714 for (dw_loc_descr_ref prev = NULL; loc; prev = loc, loc = next)
32716 next = loc->dw_loc_next;
32717 if (loc->dw_loc_opc != DW_OP_GNU_variable_value
32718 || loc->dw_loc_oprnd1.val_class != dw_val_class_decl_ref)
32719 continue;
32721 tree decl = loc->dw_loc_oprnd1.v.val_decl_ref;
32722 if (DECL_CONTEXT (decl) != current_function_decl)
32723 continue;
32725 dw_die_ref ref = lookup_decl_die (decl);
32726 if (ref)
32728 loc->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
32729 loc->dw_loc_oprnd1.v.val_die_ref.die = ref;
32730 loc->dw_loc_oprnd1.v.val_die_ref.external = 0;
32731 continue;
32733 dw_loc_list_ref l = loc_list_from_tree (decl, 0, NULL);
32734 if (l == NULL)
32735 continue;
32736 if (l->dw_loc_next)
32738 if (AT_class (a) != dw_val_class_loc)
32739 continue;
32740 switch (a->dw_attr)
32742 /* Following attributes allow both exprloc and loclist
32743 classes, so we can change them into a loclist. */
32744 case DW_AT_location:
32745 case DW_AT_string_length:
32746 case DW_AT_return_addr:
32747 case DW_AT_data_member_location:
32748 case DW_AT_frame_base:
32749 case DW_AT_segment:
32750 case DW_AT_static_link:
32751 case DW_AT_use_location:
32752 case DW_AT_vtable_elem_location:
32753 if (prev)
32755 prev->dw_loc_next = NULL;
32756 prepend_loc_descr_to_each (l, AT_loc (a));
32758 if (next)
32759 add_loc_descr_to_each (l, next);
32760 a->dw_attr_val.val_class = dw_val_class_loc_list;
32761 a->dw_attr_val.val_entry = NULL;
32762 a->dw_attr_val.v.val_loc_list = l;
32763 have_location_lists = true;
32764 return true;
32765 /* Following attributes allow both exprloc and reference,
32766 so if the whole expression is DW_OP_GNU_variable_value alone
32767 we could transform it into reference. */
32768 case DW_AT_byte_size:
32769 case DW_AT_bit_size:
32770 case DW_AT_lower_bound:
32771 case DW_AT_upper_bound:
32772 case DW_AT_bit_stride:
32773 case DW_AT_count:
32774 case DW_AT_allocated:
32775 case DW_AT_associated:
32776 case DW_AT_byte_stride:
32777 if (prev == NULL && next == NULL)
32778 break;
32779 /* FALLTHRU */
32780 default:
32781 if (dwarf_strict)
32782 continue;
32783 break;
32785 /* Create DW_TAG_variable that we can refer to. */
32786 gen_decl_die (decl, NULL_TREE, NULL,
32787 lookup_decl_die (current_function_decl));
32788 ref = lookup_decl_die (decl);
32789 if (ref)
32791 loc->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
32792 loc->dw_loc_oprnd1.v.val_die_ref.die = ref;
32793 loc->dw_loc_oprnd1.v.val_die_ref.external = 0;
32795 continue;
32797 if (prev)
32799 prev->dw_loc_next = l->expr;
32800 add_loc_descr (&prev->dw_loc_next, next);
32801 free_loc_descr (loc, NULL);
32802 next = prev->dw_loc_next;
32804 else
32806 memcpy (loc, l->expr, sizeof (dw_loc_descr_node));
32807 add_loc_descr (&loc, next);
32808 next = loc;
32810 loc = prev;
32812 return false;
32815 /* Attempt to resolve DW_OP_GNU_variable_value using loc_list_from_tree. */
32817 static void
32818 resolve_variable_value (dw_die_ref die)
32820 dw_attr_node *a;
32821 dw_loc_list_ref loc;
32822 unsigned ix;
32824 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
32825 switch (AT_class (a))
32827 case dw_val_class_loc:
32828 if (!resolve_variable_value_in_expr (a, AT_loc (a)))
32829 break;
32830 /* FALLTHRU */
32831 case dw_val_class_loc_list:
32832 loc = AT_loc_list (a);
32833 gcc_assert (loc);
32834 for (; loc; loc = loc->dw_loc_next)
32835 resolve_variable_value_in_expr (a, loc->expr);
32836 break;
32837 default:
32838 break;
32842 /* Attempt to optimize DW_OP_GNU_variable_value refering to
32843 temporaries in the current function. */
32845 static void
32846 resolve_variable_values (void)
32848 if (!variable_value_hash || !current_function_decl)
32849 return;
32851 struct variable_value_struct *node
32852 = variable_value_hash->find_with_hash (current_function_decl,
32853 DECL_UID (current_function_decl));
32855 if (node == NULL)
32856 return;
32858 unsigned int i;
32859 dw_die_ref die;
32860 FOR_EACH_VEC_SAFE_ELT (node->dies, i, die)
32861 resolve_variable_value (die);
32864 /* Helper function for note_variable_value, handle one location
32865 expression. */
32867 static void
32868 note_variable_value_in_expr (dw_die_ref die, dw_loc_descr_ref loc)
32870 for (; loc; loc = loc->dw_loc_next)
32871 if (loc->dw_loc_opc == DW_OP_GNU_variable_value
32872 && loc->dw_loc_oprnd1.val_class == dw_val_class_decl_ref)
32874 tree decl = loc->dw_loc_oprnd1.v.val_decl_ref;
32875 dw_die_ref ref = lookup_decl_die (decl);
32876 if (! ref && (flag_generate_lto || flag_generate_offload))
32878 /* ??? This is somewhat a hack because we do not create DIEs
32879 for variables not in BLOCK trees early but when generating
32880 early LTO output we need the dw_val_class_decl_ref to be
32881 fully resolved. For fat LTO objects we'd also like to
32882 undo this after LTO dwarf output. */
32883 gcc_assert (DECL_CONTEXT (decl));
32884 dw_die_ref ctx = lookup_decl_die (DECL_CONTEXT (decl));
32885 gcc_assert (ctx != NULL);
32886 gen_decl_die (decl, NULL_TREE, NULL, ctx);
32887 ref = lookup_decl_die (decl);
32888 gcc_assert (ref != NULL);
32890 if (ref)
32892 loc->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
32893 loc->dw_loc_oprnd1.v.val_die_ref.die = ref;
32894 loc->dw_loc_oprnd1.v.val_die_ref.external = 0;
32895 continue;
32897 if (VAR_P (decl)
32898 && DECL_CONTEXT (decl)
32899 && TREE_CODE (DECL_CONTEXT (decl)) == FUNCTION_DECL
32900 && lookup_decl_die (DECL_CONTEXT (decl)))
32902 if (!variable_value_hash)
32903 variable_value_hash
32904 = hash_table<variable_value_hasher>::create_ggc (10);
32906 tree fndecl = DECL_CONTEXT (decl);
32907 struct variable_value_struct *node;
32908 struct variable_value_struct **slot
32909 = variable_value_hash->find_slot_with_hash (fndecl,
32910 DECL_UID (fndecl),
32911 INSERT);
32912 if (*slot == NULL)
32914 node = ggc_cleared_alloc<variable_value_struct> ();
32915 node->decl_id = DECL_UID (fndecl);
32916 *slot = node;
32918 else
32919 node = *slot;
32921 vec_safe_push (node->dies, die);
32926 /* Walk the tree DIE and note DIEs with DW_OP_GNU_variable_value still
32927 with dw_val_class_decl_ref operand. */
32929 static void
32930 note_variable_value (dw_die_ref die)
32932 dw_die_ref c;
32933 dw_attr_node *a;
32934 dw_loc_list_ref loc;
32935 unsigned ix;
32937 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
32938 switch (AT_class (a))
32940 case dw_val_class_loc_list:
32941 loc = AT_loc_list (a);
32942 gcc_assert (loc);
32943 if (!loc->noted_variable_value)
32945 loc->noted_variable_value = 1;
32946 for (; loc; loc = loc->dw_loc_next)
32947 note_variable_value_in_expr (die, loc->expr);
32949 break;
32950 case dw_val_class_loc:
32951 note_variable_value_in_expr (die, AT_loc (a));
32952 break;
32953 default:
32954 break;
32957 /* Mark children. */
32958 FOR_EACH_CHILD (die, c, note_variable_value (c));
32961 /* Process DWARF dies for CTF generation. */
32963 static void
32964 ctf_debug_do_cu (dw_die_ref die)
32966 dw_die_ref c;
32968 if (!ctf_do_die (die))
32969 return;
32971 FOR_EACH_CHILD (die, c, ctf_do_die (c));
32974 /* Perform any cleanups needed after the early debug generation pass
32975 has run. */
32977 static void
32978 dwarf2out_early_finish (const char *filename)
32980 comdat_type_node *ctnode;
32981 set_early_dwarf s;
32982 char dl_section_ref[MAX_ARTIFICIAL_LABEL_BYTES];
32984 /* PCH might result in DW_AT_producer string being restored from the
32985 header compilation, so always fill it with empty string initially
32986 and overwrite only here. */
32987 dw_attr_node *producer = get_AT (comp_unit_die (), DW_AT_producer);
32989 if (dwarf_record_gcc_switches)
32990 producer_string = gen_producer_string (lang_hooks.name,
32991 save_decoded_options,
32992 save_decoded_options_count);
32993 else
32994 producer_string = concat (lang_hooks.name, " ", version_string, NULL);
32996 producer->dw_attr_val.v.val_str->refcount--;
32997 producer->dw_attr_val.v.val_str = find_AT_string (producer_string);
32999 /* Add the name for the main input file now. We delayed this from
33000 dwarf2out_init to avoid complications with PCH. */
33001 add_filename_attribute (comp_unit_die (), remap_debug_filename (filename));
33002 add_comp_dir_attribute (comp_unit_die ());
33004 /* With LTO early dwarf was really finished at compile-time, so make
33005 sure to adjust the phase after annotating the LTRANS CU DIE. */
33006 if (in_lto_p)
33008 early_dwarf_finished = true;
33009 if (dump_file)
33011 fprintf (dump_file, "LTO EARLY DWARF for %s\n", filename);
33012 print_die (comp_unit_die (), dump_file);
33014 return;
33017 /* Walk through the list of incomplete types again, trying once more to
33018 emit full debugging info for them. */
33019 retry_incomplete_types ();
33021 gen_scheduled_generic_parms_dies ();
33022 gen_remaining_tmpl_value_param_die_attribute ();
33024 /* The point here is to flush out the limbo list so that it is empty
33025 and we don't need to stream it for LTO. */
33026 flush_limbo_die_list ();
33028 /* Add DW_AT_linkage_name for all deferred DIEs. */
33029 for (limbo_die_node *node = deferred_asm_name; node; node = node->next)
33031 tree decl = node->created_for;
33032 if (DECL_ASSEMBLER_NAME (decl) != DECL_NAME (decl)
33033 /* A missing DECL_ASSEMBLER_NAME can be a constant DIE that
33034 ended up in deferred_asm_name before we knew it was
33035 constant and never written to disk. */
33036 && DECL_ASSEMBLER_NAME (decl))
33038 add_linkage_attr (node->die, decl);
33039 move_linkage_attr (node->die);
33042 deferred_asm_name = NULL;
33044 if (flag_eliminate_unused_debug_types)
33045 prune_unused_types ();
33047 /* Generate separate COMDAT sections for type DIEs. */
33048 if (use_debug_types)
33050 break_out_comdat_types (comp_unit_die ());
33052 /* Each new type_unit DIE was added to the limbo die list when created.
33053 Since these have all been added to comdat_type_list, clear the
33054 limbo die list. */
33055 limbo_die_list = NULL;
33057 /* For each new comdat type unit, copy declarations for incomplete
33058 types to make the new unit self-contained (i.e., no direct
33059 references to the main compile unit). */
33060 for (ctnode = comdat_type_list; ctnode != NULL; ctnode = ctnode->next)
33061 copy_decls_for_unworthy_types (ctnode->root_die);
33062 copy_decls_for_unworthy_types (comp_unit_die ());
33064 /* In the process of copying declarations from one unit to another,
33065 we may have left some declarations behind that are no longer
33066 referenced. Prune them. */
33067 prune_unused_types ();
33070 /* Traverse the DIE's and note DIEs with DW_OP_GNU_variable_value still
33071 with dw_val_class_decl_ref operand. */
33072 note_variable_value (comp_unit_die ());
33073 for (limbo_die_node *node = cu_die_list; node; node = node->next)
33074 note_variable_value (node->die);
33075 for (ctnode = comdat_type_list; ctnode != NULL; ctnode = ctnode->next)
33076 note_variable_value (ctnode->root_die);
33077 for (limbo_die_node *node = limbo_die_list; node; node = node->next)
33078 note_variable_value (node->die);
33080 /* The AT_pubnames attribute needs to go in all skeleton dies, including
33081 both the main_cu and all skeleton TUs. Making this call unconditional
33082 would end up either adding a second copy of the AT_pubnames attribute, or
33083 requiring a special case in add_top_level_skeleton_die_attrs. */
33084 if (!dwarf_split_debug_info)
33085 add_AT_pubnames (comp_unit_die ());
33087 /* The early debug phase is now finished. */
33088 early_dwarf_finished = true;
33089 if (dump_file)
33091 fprintf (dump_file, "EARLY DWARF for %s\n", filename);
33092 print_die (comp_unit_die (), dump_file);
33095 /* Generate CTF/BTF debug info. */
33096 if ((ctf_debug_info_level > CTFINFO_LEVEL_NONE
33097 || btf_debuginfo_p ()) && lang_GNU_C ())
33099 ctf_debug_init ();
33100 ctf_debug_do_cu (comp_unit_die ());
33101 for (limbo_die_node *node = limbo_die_list; node; node = node->next)
33102 ctf_debug_do_cu (node->die);
33103 /* Post process the debug data in the CTF container if necessary. */
33104 ctf_debug_init_postprocess (btf_debuginfo_p ());
33106 ctf_debug_early_finish (filename);
33109 /* Do not generate DWARF assembler now when not producing LTO bytecode. */
33110 if ((!flag_generate_lto && !flag_generate_offload)
33111 /* FIXME: Disable debug info generation for (PE-)COFF targets since the
33112 copy_lto_debug_sections operation of the simple object support in
33113 libiberty is not implemented for them yet. */
33114 || TARGET_PECOFF || TARGET_COFF)
33115 return;
33117 /* Now as we are going to output for LTO initialize sections and labels
33118 to the LTO variants. We don't need a random-seed postfix as other
33119 LTO sections as linking the LTO debug sections into one in a partial
33120 link is fine. */
33121 init_sections_and_labels (true);
33123 /* The output below is modeled after dwarf2out_finish with all
33124 location related output removed and some LTO specific changes.
33125 Some refactoring might make both smaller and easier to match up. */
33127 base_types.truncate (0);
33128 for (ctnode = comdat_type_list; ctnode != NULL; ctnode = ctnode->next)
33129 mark_base_types (ctnode->root_die);
33130 mark_base_types (comp_unit_die ());
33131 move_marked_base_types ();
33133 /* Traverse the DIE's and add sibling attributes to those DIE's
33134 that have children. */
33135 add_sibling_attributes (comp_unit_die ());
33136 for (limbo_die_node *node = limbo_die_list; node; node = node->next)
33137 add_sibling_attributes (node->die);
33138 for (ctnode = comdat_type_list; ctnode != NULL; ctnode = ctnode->next)
33139 add_sibling_attributes (ctnode->root_die);
33141 /* AIX Assembler inserts the length, so adjust the reference to match the
33142 offset expected by debuggers. */
33143 strcpy (dl_section_ref, debug_line_section_label);
33144 if (XCOFF_DEBUGGING_INFO)
33145 strcat (dl_section_ref, DWARF_INITIAL_LENGTH_SIZE_STR);
33147 if (debug_info_level >= DINFO_LEVEL_TERSE)
33148 add_AT_lineptr (comp_unit_die (), DW_AT_stmt_list, dl_section_ref);
33150 if (have_macinfo)
33151 add_AT_macptr (comp_unit_die (), DEBUG_MACRO_ATTRIBUTE,
33152 macinfo_section_label);
33154 save_macinfo_strings ();
33156 if (dwarf_split_debug_info)
33158 unsigned int index = 0;
33159 debug_str_hash->traverse_noresize<unsigned int *, index_string> (&index);
33162 /* Output all of the compilation units. We put the main one last so that
33163 the offsets are available to output_pubnames. */
33164 for (limbo_die_node *node = limbo_die_list; node; node = node->next)
33165 output_comp_unit (node->die, 0, NULL);
33167 hash_table<comdat_type_hasher> comdat_type_table (100);
33168 for (ctnode = comdat_type_list; ctnode != NULL; ctnode = ctnode->next)
33170 comdat_type_node **slot = comdat_type_table.find_slot (ctnode, INSERT);
33172 /* Don't output duplicate types. */
33173 if (*slot != HTAB_EMPTY_ENTRY)
33174 continue;
33176 /* Add a pointer to the line table for the main compilation unit
33177 so that the debugger can make sense of DW_AT_decl_file
33178 attributes. */
33179 if (debug_info_level >= DINFO_LEVEL_TERSE)
33180 add_AT_lineptr (ctnode->root_die, DW_AT_stmt_list,
33181 (!dwarf_split_debug_info
33182 ? debug_line_section_label
33183 : debug_skeleton_line_section_label));
33185 output_comdat_type_unit (ctnode, true);
33186 *slot = ctnode;
33189 /* Stick a unique symbol to the main debuginfo section. */
33190 compute_comp_unit_symbol (comp_unit_die ());
33192 /* Output the main compilation unit. We always need it if only for
33193 the CU symbol. */
33194 output_comp_unit (comp_unit_die (), true, NULL);
33196 /* Output the abbreviation table. */
33197 if (vec_safe_length (abbrev_die_table) != 1)
33199 switch_to_section (debug_abbrev_section);
33200 ASM_OUTPUT_LABEL (asm_out_file, abbrev_section_label);
33201 output_abbrev_section ();
33204 /* Have to end the macro section. */
33205 if (have_macinfo)
33207 /* We have to save macinfo state if we need to output it again
33208 for the FAT part of the object. */
33209 vec<macinfo_entry, va_gc> *saved_macinfo_table = macinfo_table;
33210 if (flag_fat_lto_objects)
33211 macinfo_table = macinfo_table->copy ();
33213 switch_to_section (debug_macinfo_section);
33214 ASM_OUTPUT_LABEL (asm_out_file, macinfo_section_label);
33215 output_macinfo (debug_line_section_label, true);
33216 dw2_asm_output_data (1, 0, "End compilation unit");
33218 if (flag_fat_lto_objects)
33220 vec_free (macinfo_table);
33221 macinfo_table = saved_macinfo_table;
33225 /* Emit a skeleton debug_line section. */
33226 switch_to_section (debug_line_section);
33227 ASM_OUTPUT_LABEL (asm_out_file, debug_line_section_label);
33228 output_line_info (true);
33230 /* If we emitted any indirect strings, output the string table too. */
33231 if (debug_str_hash || skeleton_debug_str_hash)
33232 output_indirect_strings ();
33233 if (debug_line_str_hash)
33235 switch_to_section (debug_line_str_section);
33236 const enum dwarf_form form = DW_FORM_line_strp;
33237 debug_line_str_hash->traverse<enum dwarf_form,
33238 output_indirect_string> (form);
33241 /* Switch back to the text section. */
33242 switch_to_section (text_section);
33245 /* Reset all state within dwarf2out.cc so that we can rerun the compiler
33246 within the same process. For use by toplev::finalize. */
33248 void
33249 dwarf2out_cc_finalize (void)
33251 last_var_location_insn = NULL;
33252 cached_next_real_insn = NULL;
33253 used_rtx_array = NULL;
33254 incomplete_types = NULL;
33255 debug_info_section = NULL;
33256 debug_skeleton_info_section = NULL;
33257 debug_abbrev_section = NULL;
33258 debug_skeleton_abbrev_section = NULL;
33259 debug_aranges_section = NULL;
33260 debug_addr_section = NULL;
33261 debug_macinfo_section = NULL;
33262 debug_line_section = NULL;
33263 debug_skeleton_line_section = NULL;
33264 debug_loc_section = NULL;
33265 debug_pubnames_section = NULL;
33266 debug_pubtypes_section = NULL;
33267 debug_str_section = NULL;
33268 debug_line_str_section = NULL;
33269 debug_str_dwo_section = NULL;
33270 debug_str_offsets_section = NULL;
33271 debug_ranges_section = NULL;
33272 debug_ranges_dwo_section = NULL;
33273 debug_frame_section = NULL;
33274 fde_vec = NULL;
33275 debug_str_hash = NULL;
33276 debug_line_str_hash = NULL;
33277 skeleton_debug_str_hash = NULL;
33278 dw2_string_counter = 0;
33279 have_multiple_function_sections = false;
33280 in_text_section_p = false;
33281 cold_text_section = NULL;
33282 last_text_label = NULL;
33283 last_cold_label = NULL;
33284 switch_text_ranges = NULL;
33285 switch_cold_ranges = NULL;
33286 current_unit_personality = NULL;
33288 early_dwarf = false;
33289 early_dwarf_finished = false;
33291 next_die_offset = 0;
33292 single_comp_unit_die = NULL;
33293 comdat_type_list = NULL;
33294 limbo_die_list = NULL;
33295 file_table = NULL;
33296 decl_die_table = NULL;
33297 common_block_die_table = NULL;
33298 decl_loc_table = NULL;
33299 call_arg_locations = NULL;
33300 call_arg_loc_last = NULL;
33301 call_site_count = -1;
33302 tail_call_site_count = -1;
33303 cached_dw_loc_list_table = NULL;
33304 abbrev_die_table = NULL;
33305 delete dwarf_proc_stack_usage_map;
33306 dwarf_proc_stack_usage_map = NULL;
33307 line_info_label_num = 0;
33308 cur_line_info_table = NULL;
33309 text_section_line_info = NULL;
33310 cold_text_section_line_info = NULL;
33311 separate_line_info = NULL;
33312 info_section_emitted = false;
33313 pubname_table = NULL;
33314 pubtype_table = NULL;
33315 macinfo_table = NULL;
33316 ranges_table = NULL;
33317 ranges_by_label = NULL;
33318 rnglist_idx = 0;
33319 have_location_lists = false;
33320 loclabel_num = 0;
33321 poc_label_num = 0;
33322 last_emitted_file = NULL;
33323 label_num = 0;
33324 tmpl_value_parm_die_table = NULL;
33325 generic_type_instances = NULL;
33326 frame_pointer_fb_offset = 0;
33327 frame_pointer_fb_offset_valid = false;
33328 base_types.release ();
33329 XDELETEVEC (producer_string);
33330 producer_string = NULL;
33331 output_line_info_generation = 0;
33332 init_sections_and_labels_generation = 0;
33335 #include "gt-dwarf2out.h"