pr88074.c: Require c99_runtime.
[official-gcc.git] / gcc / dwarf2out.c
blob251fff7b9ae961cd49196077624129ad45db58be
1 /* Output Dwarf2 format symbol table information from GCC.
2 Copyright (C) 1992-2019 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 "dwarf2asm.h"
83 #include "toplev.h"
84 #include "md5.h"
85 #include "tree-pretty-print.h"
86 #include "print-rtl.h"
87 #include "debug.h"
88 #include "common/common-target.h"
89 #include "langhooks.h"
90 #include "lra.h"
91 #include "dumpfile.h"
92 #include "opts.h"
93 #include "tree-dfa.h"
94 #include "gdb/gdb-index.h"
95 #include "rtl-iter.h"
96 #include "stringpool.h"
97 #include "attribs.h"
98 #include "file-prefix-map.h" /* remap_debug_filename() */
100 static void dwarf2out_source_line (unsigned int, unsigned int, const char *,
101 int, bool);
102 static rtx_insn *last_var_location_insn;
103 static rtx_insn *cached_next_real_insn;
104 static void dwarf2out_decl (tree);
105 static bool is_redundant_typedef (const_tree);
107 #ifndef XCOFF_DEBUGGING_INFO
108 #define XCOFF_DEBUGGING_INFO 0
109 #endif
111 #ifndef HAVE_XCOFF_DWARF_EXTRAS
112 #define HAVE_XCOFF_DWARF_EXTRAS 0
113 #endif
115 #ifdef VMS_DEBUGGING_INFO
116 int vms_file_stats_name (const char *, long long *, long *, char *, int *);
118 /* Define this macro to be a nonzero value if the directory specifications
119 which are output in the debug info should end with a separator. */
120 #define DWARF2_DIR_SHOULD_END_WITH_SEPARATOR 1
121 /* Define this macro to evaluate to a nonzero value if GCC should refrain
122 from generating indirect strings in DWARF2 debug information, for instance
123 if your target is stuck with an old version of GDB that is unable to
124 process them properly or uses VMS Debug. */
125 #define DWARF2_INDIRECT_STRING_SUPPORT_MISSING_ON_TARGET 1
126 #else
127 #define DWARF2_DIR_SHOULD_END_WITH_SEPARATOR 0
128 #define DWARF2_INDIRECT_STRING_SUPPORT_MISSING_ON_TARGET 0
129 #endif
131 /* ??? Poison these here until it can be done generically. They've been
132 totally replaced in this file; make sure it stays that way. */
133 #undef DWARF2_UNWIND_INFO
134 #undef DWARF2_FRAME_INFO
135 #if (GCC_VERSION >= 3000)
136 #pragma GCC poison DWARF2_UNWIND_INFO DWARF2_FRAME_INFO
137 #endif
139 /* The size of the target's pointer type. */
140 #ifndef PTR_SIZE
141 #define PTR_SIZE (POINTER_SIZE / BITS_PER_UNIT)
142 #endif
144 /* Array of RTXes referenced by the debugging information, which therefore
145 must be kept around forever. */
146 static GTY(()) vec<rtx, va_gc> *used_rtx_array;
148 /* A pointer to the base of a list of incomplete types which might be
149 completed at some later time. incomplete_types_list needs to be a
150 vec<tree, va_gc> *because we want to tell the garbage collector about
151 it. */
152 static GTY(()) vec<tree, va_gc> *incomplete_types;
154 /* Pointers to various DWARF2 sections. */
155 static GTY(()) section *debug_info_section;
156 static GTY(()) section *debug_skeleton_info_section;
157 static GTY(()) section *debug_abbrev_section;
158 static GTY(()) section *debug_skeleton_abbrev_section;
159 static GTY(()) section *debug_aranges_section;
160 static GTY(()) section *debug_addr_section;
161 static GTY(()) section *debug_macinfo_section;
162 static const char *debug_macinfo_section_name;
163 static unsigned macinfo_label_base = 1;
164 static GTY(()) section *debug_line_section;
165 static GTY(()) section *debug_skeleton_line_section;
166 static GTY(()) section *debug_loc_section;
167 static GTY(()) section *debug_pubnames_section;
168 static GTY(()) section *debug_pubtypes_section;
169 static GTY(()) section *debug_str_section;
170 static GTY(()) section *debug_line_str_section;
171 static GTY(()) section *debug_str_dwo_section;
172 static GTY(()) section *debug_str_offsets_section;
173 static GTY(()) section *debug_ranges_section;
174 static GTY(()) section *debug_frame_section;
176 /* Maximum size (in bytes) of an artificially generated label. */
177 #define MAX_ARTIFICIAL_LABEL_BYTES 40
179 /* According to the (draft) DWARF 3 specification, the initial length
180 should either be 4 or 12 bytes. When it's 12 bytes, the first 4
181 bytes are 0xffffffff, followed by the length stored in the next 8
182 bytes.
184 However, the SGI/MIPS ABI uses an initial length which is equal to
185 DWARF_OFFSET_SIZE. It is defined (elsewhere) accordingly. */
187 #ifndef DWARF_INITIAL_LENGTH_SIZE
188 #define DWARF_INITIAL_LENGTH_SIZE (DWARF_OFFSET_SIZE == 4 ? 4 : 12)
189 #endif
191 #ifndef DWARF_INITIAL_LENGTH_SIZE_STR
192 #define DWARF_INITIAL_LENGTH_SIZE_STR (DWARF_OFFSET_SIZE == 4 ? "-4" : "-12")
193 #endif
195 /* Round SIZE up to the nearest BOUNDARY. */
196 #define DWARF_ROUND(SIZE,BOUNDARY) \
197 ((((SIZE) + (BOUNDARY) - 1) / (BOUNDARY)) * (BOUNDARY))
199 /* CIE identifier. */
200 #if HOST_BITS_PER_WIDE_INT >= 64
201 #define DWARF_CIE_ID \
202 (unsigned HOST_WIDE_INT) (DWARF_OFFSET_SIZE == 4 ? DW_CIE_ID : DW64_CIE_ID)
203 #else
204 #define DWARF_CIE_ID DW_CIE_ID
205 #endif
208 /* A vector for a table that contains frame description
209 information for each routine. */
210 #define NOT_INDEXED (-1U)
211 #define NO_INDEX_ASSIGNED (-2U)
213 static GTY(()) vec<dw_fde_ref, va_gc> *fde_vec;
215 struct GTY((for_user)) indirect_string_node {
216 const char *str;
217 unsigned int refcount;
218 enum dwarf_form form;
219 char *label;
220 unsigned int index;
223 struct indirect_string_hasher : ggc_ptr_hash<indirect_string_node>
225 typedef const char *compare_type;
227 static hashval_t hash (indirect_string_node *);
228 static bool equal (indirect_string_node *, const char *);
231 static GTY (()) hash_table<indirect_string_hasher> *debug_str_hash;
233 static GTY (()) hash_table<indirect_string_hasher> *debug_line_str_hash;
235 /* With split_debug_info, both the comp_dir and dwo_name go in the
236 main object file, rather than the dwo, similar to the force_direct
237 parameter elsewhere but with additional complications:
239 1) The string is needed in both the main object file and the dwo.
240 That is, the comp_dir and dwo_name will appear in both places.
242 2) Strings can use four forms: DW_FORM_string, DW_FORM_strp,
243 DW_FORM_line_strp or DW_FORM_strx/GNU_str_index.
245 3) GCC chooses the form to use late, depending on the size and
246 reference count.
248 Rather than forcing the all debug string handling functions and
249 callers to deal with these complications, simply use a separate,
250 special-cased string table for any attribute that should go in the
251 main object file. This limits the complexity to just the places
252 that need it. */
254 static GTY (()) hash_table<indirect_string_hasher> *skeleton_debug_str_hash;
256 static GTY(()) int dw2_string_counter;
258 /* True if the compilation unit places functions in more than one section. */
259 static GTY(()) bool have_multiple_function_sections = false;
261 /* Whether the default text and cold text sections have been used at all. */
262 static GTY(()) bool text_section_used = false;
263 static GTY(()) bool cold_text_section_used = false;
265 /* The default cold text section. */
266 static GTY(()) section *cold_text_section;
268 /* The DIE for C++14 'auto' in a function return type. */
269 static GTY(()) dw_die_ref auto_die;
271 /* The DIE for C++14 'decltype(auto)' in a function return type. */
272 static GTY(()) dw_die_ref decltype_auto_die;
274 /* Forward declarations for functions defined in this file. */
276 static void output_call_frame_info (int);
277 static void dwarf2out_note_section_used (void);
279 /* Personality decl of current unit. Used only when assembler does not support
280 personality CFI. */
281 static GTY(()) rtx current_unit_personality;
283 /* Whether an eh_frame section is required. */
284 static GTY(()) bool do_eh_frame = false;
286 /* .debug_rnglists next index. */
287 static unsigned int rnglist_idx;
289 /* Data and reference forms for relocatable data. */
290 #define DW_FORM_data (DWARF_OFFSET_SIZE == 8 ? DW_FORM_data8 : DW_FORM_data4)
291 #define DW_FORM_ref (DWARF_OFFSET_SIZE == 8 ? DW_FORM_ref8 : DW_FORM_ref4)
293 #ifndef DEBUG_FRAME_SECTION
294 #define DEBUG_FRAME_SECTION ".debug_frame"
295 #endif
297 #ifndef FUNC_BEGIN_LABEL
298 #define FUNC_BEGIN_LABEL "LFB"
299 #endif
301 #ifndef FUNC_SECOND_SECT_LABEL
302 #define FUNC_SECOND_SECT_LABEL "LFSB"
303 #endif
305 #ifndef FUNC_END_LABEL
306 #define FUNC_END_LABEL "LFE"
307 #endif
309 #ifndef PROLOGUE_END_LABEL
310 #define PROLOGUE_END_LABEL "LPE"
311 #endif
313 #ifndef EPILOGUE_BEGIN_LABEL
314 #define EPILOGUE_BEGIN_LABEL "LEB"
315 #endif
317 #ifndef FRAME_BEGIN_LABEL
318 #define FRAME_BEGIN_LABEL "Lframe"
319 #endif
320 #define CIE_AFTER_SIZE_LABEL "LSCIE"
321 #define CIE_END_LABEL "LECIE"
322 #define FDE_LABEL "LSFDE"
323 #define FDE_AFTER_SIZE_LABEL "LASFDE"
324 #define FDE_END_LABEL "LEFDE"
325 #define LINE_NUMBER_BEGIN_LABEL "LSLT"
326 #define LINE_NUMBER_END_LABEL "LELT"
327 #define LN_PROLOG_AS_LABEL "LASLTP"
328 #define LN_PROLOG_END_LABEL "LELTP"
329 #define DIE_LABEL_PREFIX "DW"
331 /* Match the base name of a file to the base name of a compilation unit. */
333 static int
334 matches_main_base (const char *path)
336 /* Cache the last query. */
337 static const char *last_path = NULL;
338 static int last_match = 0;
339 if (path != last_path)
341 const char *base;
342 int length = base_of_path (path, &base);
343 last_path = path;
344 last_match = (length == main_input_baselength
345 && memcmp (base, main_input_basename, length) == 0);
347 return last_match;
350 #ifdef DEBUG_DEBUG_STRUCT
352 static int
353 dump_struct_debug (tree type, enum debug_info_usage usage,
354 enum debug_struct_file criterion, int generic,
355 int matches, int result)
357 /* Find the type name. */
358 tree type_decl = TYPE_STUB_DECL (type);
359 tree t = type_decl;
360 const char *name = 0;
361 if (TREE_CODE (t) == TYPE_DECL)
362 t = DECL_NAME (t);
363 if (t)
364 name = IDENTIFIER_POINTER (t);
366 fprintf (stderr, " struct %d %s %s %s %s %d %p %s\n",
367 criterion,
368 DECL_IN_SYSTEM_HEADER (type_decl) ? "sys" : "usr",
369 matches ? "bas" : "hdr",
370 generic ? "gen" : "ord",
371 usage == DINFO_USAGE_DFN ? ";" :
372 usage == DINFO_USAGE_DIR_USE ? "." : "*",
373 result,
374 (void*) type_decl, name);
375 return result;
377 #define DUMP_GSTRUCT(type, usage, criterion, generic, matches, result) \
378 dump_struct_debug (type, usage, criterion, generic, matches, result)
380 #else
382 #define DUMP_GSTRUCT(type, usage, criterion, generic, matches, result) \
383 (result)
385 #endif
387 /* Get the number of HOST_WIDE_INTs needed to represent the precision
388 of the number. Some constants have a large uniform precision, so
389 we get the precision needed for the actual value of the number. */
391 static unsigned int
392 get_full_len (const wide_int &op)
394 int prec = wi::min_precision (op, UNSIGNED);
395 return ((prec + HOST_BITS_PER_WIDE_INT - 1)
396 / HOST_BITS_PER_WIDE_INT);
399 static bool
400 should_emit_struct_debug (tree type, enum debug_info_usage usage)
402 enum debug_struct_file criterion;
403 tree type_decl;
404 bool generic = lang_hooks.types.generic_p (type);
406 if (generic)
407 criterion = debug_struct_generic[usage];
408 else
409 criterion = debug_struct_ordinary[usage];
411 if (criterion == DINFO_STRUCT_FILE_NONE)
412 return DUMP_GSTRUCT (type, usage, criterion, generic, false, false);
413 if (criterion == DINFO_STRUCT_FILE_ANY)
414 return DUMP_GSTRUCT (type, usage, criterion, generic, false, true);
416 type_decl = TYPE_STUB_DECL (TYPE_MAIN_VARIANT (type));
418 if (type_decl != NULL)
420 if (criterion == DINFO_STRUCT_FILE_SYS && DECL_IN_SYSTEM_HEADER (type_decl))
421 return DUMP_GSTRUCT (type, usage, criterion, generic, false, true);
423 if (matches_main_base (DECL_SOURCE_FILE (type_decl)))
424 return DUMP_GSTRUCT (type, usage, criterion, generic, true, true);
427 return DUMP_GSTRUCT (type, usage, criterion, generic, false, false);
430 /* Switch [BACK] to eh_frame_section. If we don't have an eh_frame_section,
431 switch to the data section instead, and write out a synthetic start label
432 for collect2 the first time around. */
434 static void
435 switch_to_eh_frame_section (bool back ATTRIBUTE_UNUSED)
437 if (eh_frame_section == 0)
439 int flags;
441 if (EH_TABLES_CAN_BE_READ_ONLY)
443 int fde_encoding;
444 int per_encoding;
445 int lsda_encoding;
447 fde_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/1,
448 /*global=*/0);
449 per_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/2,
450 /*global=*/1);
451 lsda_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/0,
452 /*global=*/0);
453 flags = ((! flag_pic
454 || ((fde_encoding & 0x70) != DW_EH_PE_absptr
455 && (fde_encoding & 0x70) != DW_EH_PE_aligned
456 && (per_encoding & 0x70) != DW_EH_PE_absptr
457 && (per_encoding & 0x70) != DW_EH_PE_aligned
458 && (lsda_encoding & 0x70) != DW_EH_PE_absptr
459 && (lsda_encoding & 0x70) != DW_EH_PE_aligned))
460 ? 0 : SECTION_WRITE);
462 else
463 flags = SECTION_WRITE;
465 #ifdef EH_FRAME_SECTION_NAME
466 eh_frame_section = get_section (EH_FRAME_SECTION_NAME, flags, NULL);
467 #else
468 eh_frame_section = ((flags == SECTION_WRITE)
469 ? data_section : readonly_data_section);
470 #endif /* EH_FRAME_SECTION_NAME */
473 switch_to_section (eh_frame_section);
475 #ifdef EH_FRAME_THROUGH_COLLECT2
476 /* We have no special eh_frame section. Emit special labels to guide
477 collect2. */
478 if (!back)
480 tree label = get_file_function_name ("F");
481 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (PTR_SIZE));
482 targetm.asm_out.globalize_label (asm_out_file,
483 IDENTIFIER_POINTER (label));
484 ASM_OUTPUT_LABEL (asm_out_file, IDENTIFIER_POINTER (label));
486 #endif
489 /* Switch [BACK] to the eh or debug frame table section, depending on
490 FOR_EH. */
492 static void
493 switch_to_frame_table_section (int for_eh, bool back)
495 if (for_eh)
496 switch_to_eh_frame_section (back);
497 else
499 if (!debug_frame_section)
500 debug_frame_section = get_section (DEBUG_FRAME_SECTION,
501 SECTION_DEBUG, NULL);
502 switch_to_section (debug_frame_section);
506 /* Describe for the GTY machinery what parts of dw_cfi_oprnd1 are used. */
508 enum dw_cfi_oprnd_type
509 dw_cfi_oprnd1_desc (enum dwarf_call_frame_info cfi)
511 switch (cfi)
513 case DW_CFA_nop:
514 case DW_CFA_GNU_window_save:
515 case DW_CFA_remember_state:
516 case DW_CFA_restore_state:
517 return dw_cfi_oprnd_unused;
519 case DW_CFA_set_loc:
520 case DW_CFA_advance_loc1:
521 case DW_CFA_advance_loc2:
522 case DW_CFA_advance_loc4:
523 case DW_CFA_MIPS_advance_loc8:
524 return dw_cfi_oprnd_addr;
526 case DW_CFA_offset:
527 case DW_CFA_offset_extended:
528 case DW_CFA_def_cfa:
529 case DW_CFA_offset_extended_sf:
530 case DW_CFA_def_cfa_sf:
531 case DW_CFA_restore:
532 case DW_CFA_restore_extended:
533 case DW_CFA_undefined:
534 case DW_CFA_same_value:
535 case DW_CFA_def_cfa_register:
536 case DW_CFA_register:
537 case DW_CFA_expression:
538 case DW_CFA_val_expression:
539 return dw_cfi_oprnd_reg_num;
541 case DW_CFA_def_cfa_offset:
542 case DW_CFA_GNU_args_size:
543 case DW_CFA_def_cfa_offset_sf:
544 return dw_cfi_oprnd_offset;
546 case DW_CFA_def_cfa_expression:
547 return dw_cfi_oprnd_loc;
549 default:
550 gcc_unreachable ();
554 /* Describe for the GTY machinery what parts of dw_cfi_oprnd2 are used. */
556 enum dw_cfi_oprnd_type
557 dw_cfi_oprnd2_desc (enum dwarf_call_frame_info cfi)
559 switch (cfi)
561 case DW_CFA_def_cfa:
562 case DW_CFA_def_cfa_sf:
563 case DW_CFA_offset:
564 case DW_CFA_offset_extended_sf:
565 case DW_CFA_offset_extended:
566 return dw_cfi_oprnd_offset;
568 case DW_CFA_register:
569 return dw_cfi_oprnd_reg_num;
571 case DW_CFA_expression:
572 case DW_CFA_val_expression:
573 return dw_cfi_oprnd_loc;
575 case DW_CFA_def_cfa_expression:
576 return dw_cfi_oprnd_cfa_loc;
578 default:
579 return dw_cfi_oprnd_unused;
583 /* Output one FDE. */
585 static void
586 output_fde (dw_fde_ref fde, bool for_eh, bool second,
587 char *section_start_label, int fde_encoding, char *augmentation,
588 bool any_lsda_needed, int lsda_encoding)
590 const char *begin, *end;
591 static unsigned int j;
592 char l1[MAX_ARTIFICIAL_LABEL_BYTES], l2[MAX_ARTIFICIAL_LABEL_BYTES];
594 targetm.asm_out.emit_unwind_label (asm_out_file, fde->decl, for_eh,
595 /* empty */ 0);
596 targetm.asm_out.internal_label (asm_out_file, FDE_LABEL,
597 for_eh + j);
598 ASM_GENERATE_INTERNAL_LABEL (l1, FDE_AFTER_SIZE_LABEL, for_eh + j);
599 ASM_GENERATE_INTERNAL_LABEL (l2, FDE_END_LABEL, for_eh + j);
600 if (!XCOFF_DEBUGGING_INFO || for_eh)
602 if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4 && !for_eh)
603 dw2_asm_output_data (4, 0xffffffff, "Initial length escape value"
604 " indicating 64-bit DWARF extension");
605 dw2_asm_output_delta (for_eh ? 4 : DWARF_OFFSET_SIZE, l2, l1,
606 "FDE Length");
608 ASM_OUTPUT_LABEL (asm_out_file, l1);
610 if (for_eh)
611 dw2_asm_output_delta (4, l1, section_start_label, "FDE CIE offset");
612 else
613 dw2_asm_output_offset (DWARF_OFFSET_SIZE, section_start_label,
614 debug_frame_section, "FDE CIE offset");
616 begin = second ? fde->dw_fde_second_begin : fde->dw_fde_begin;
617 end = second ? fde->dw_fde_second_end : fde->dw_fde_end;
619 if (for_eh)
621 rtx sym_ref = gen_rtx_SYMBOL_REF (Pmode, begin);
622 SYMBOL_REF_FLAGS (sym_ref) |= SYMBOL_FLAG_LOCAL;
623 dw2_asm_output_encoded_addr_rtx (fde_encoding, sym_ref, false,
624 "FDE initial location");
625 dw2_asm_output_delta (size_of_encoded_value (fde_encoding),
626 end, begin, "FDE address range");
628 else
630 dw2_asm_output_addr (DWARF2_ADDR_SIZE, begin, "FDE initial location");
631 dw2_asm_output_delta (DWARF2_ADDR_SIZE, end, begin, "FDE address range");
634 if (augmentation[0])
636 if (any_lsda_needed)
638 int size = size_of_encoded_value (lsda_encoding);
640 if (lsda_encoding == DW_EH_PE_aligned)
642 int offset = ( 4 /* Length */
643 + 4 /* CIE offset */
644 + 2 * size_of_encoded_value (fde_encoding)
645 + 1 /* Augmentation size */ );
646 int pad = -offset & (PTR_SIZE - 1);
648 size += pad;
649 gcc_assert (size_of_uleb128 (size) == 1);
652 dw2_asm_output_data_uleb128 (size, "Augmentation size");
654 if (fde->uses_eh_lsda)
656 ASM_GENERATE_INTERNAL_LABEL (l1, second ? "LLSDAC" : "LLSDA",
657 fde->funcdef_number);
658 dw2_asm_output_encoded_addr_rtx (lsda_encoding,
659 gen_rtx_SYMBOL_REF (Pmode, l1),
660 false,
661 "Language Specific Data Area");
663 else
665 if (lsda_encoding == DW_EH_PE_aligned)
666 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (PTR_SIZE));
667 dw2_asm_output_data (size_of_encoded_value (lsda_encoding), 0,
668 "Language Specific Data Area (none)");
671 else
672 dw2_asm_output_data_uleb128 (0, "Augmentation size");
675 /* Loop through the Call Frame Instructions associated with this FDE. */
676 fde->dw_fde_current_label = begin;
678 size_t from, until, i;
680 from = 0;
681 until = vec_safe_length (fde->dw_fde_cfi);
683 if (fde->dw_fde_second_begin == NULL)
685 else if (!second)
686 until = fde->dw_fde_switch_cfi_index;
687 else
688 from = fde->dw_fde_switch_cfi_index;
690 for (i = from; i < until; i++)
691 output_cfi ((*fde->dw_fde_cfi)[i], fde, for_eh);
694 /* If we are to emit a ref/link from function bodies to their frame tables,
695 do it now. This is typically performed to make sure that tables
696 associated with functions are dragged with them and not discarded in
697 garbage collecting links. We need to do this on a per function basis to
698 cope with -ffunction-sections. */
700 #ifdef ASM_OUTPUT_DWARF_TABLE_REF
701 /* Switch to the function section, emit the ref to the tables, and
702 switch *back* into the table section. */
703 switch_to_section (function_section (fde->decl));
704 ASM_OUTPUT_DWARF_TABLE_REF (section_start_label);
705 switch_to_frame_table_section (for_eh, true);
706 #endif
708 /* Pad the FDE out to an address sized boundary. */
709 ASM_OUTPUT_ALIGN (asm_out_file,
710 floor_log2 ((for_eh ? PTR_SIZE : DWARF2_ADDR_SIZE)));
711 ASM_OUTPUT_LABEL (asm_out_file, l2);
713 j += 2;
716 /* Return true if frame description entry FDE is needed for EH. */
718 static bool
719 fde_needed_for_eh_p (dw_fde_ref fde)
721 if (flag_asynchronous_unwind_tables)
722 return true;
724 if (TARGET_USES_WEAK_UNWIND_INFO && DECL_WEAK (fde->decl))
725 return true;
727 if (fde->uses_eh_lsda)
728 return true;
730 /* If exceptions are enabled, we have collected nothrow info. */
731 if (flag_exceptions && (fde->all_throwers_are_sibcalls || fde->nothrow))
732 return false;
734 return true;
737 /* Output the call frame information used to record information
738 that relates to calculating the frame pointer, and records the
739 location of saved registers. */
741 static void
742 output_call_frame_info (int for_eh)
744 unsigned int i;
745 dw_fde_ref fde;
746 dw_cfi_ref cfi;
747 char l1[MAX_ARTIFICIAL_LABEL_BYTES], l2[MAX_ARTIFICIAL_LABEL_BYTES];
748 char section_start_label[MAX_ARTIFICIAL_LABEL_BYTES];
749 bool any_lsda_needed = false;
750 char augmentation[6];
751 int augmentation_size;
752 int fde_encoding = DW_EH_PE_absptr;
753 int per_encoding = DW_EH_PE_absptr;
754 int lsda_encoding = DW_EH_PE_absptr;
755 int return_reg;
756 rtx personality = NULL;
757 int dw_cie_version;
759 /* Don't emit a CIE if there won't be any FDEs. */
760 if (!fde_vec)
761 return;
763 /* Nothing to do if the assembler's doing it all. */
764 if (dwarf2out_do_cfi_asm ())
765 return;
767 /* If we don't have any functions we'll want to unwind out of, don't emit
768 any EH unwind information. If we make FDEs linkonce, we may have to
769 emit an empty label for an FDE that wouldn't otherwise be emitted. We
770 want to avoid having an FDE kept around when the function it refers to
771 is discarded. Example where this matters: a primary function template
772 in C++ requires EH information, an explicit specialization doesn't. */
773 if (for_eh)
775 bool any_eh_needed = false;
777 FOR_EACH_VEC_ELT (*fde_vec, i, fde)
779 if (fde->uses_eh_lsda)
780 any_eh_needed = any_lsda_needed = true;
781 else if (fde_needed_for_eh_p (fde))
782 any_eh_needed = true;
783 else if (TARGET_USES_WEAK_UNWIND_INFO)
784 targetm.asm_out.emit_unwind_label (asm_out_file, fde->decl, 1, 1);
787 if (!any_eh_needed)
788 return;
791 /* We're going to be generating comments, so turn on app. */
792 if (flag_debug_asm)
793 app_enable ();
795 /* Switch to the proper frame section, first time. */
796 switch_to_frame_table_section (for_eh, false);
798 ASM_GENERATE_INTERNAL_LABEL (section_start_label, FRAME_BEGIN_LABEL, for_eh);
799 ASM_OUTPUT_LABEL (asm_out_file, section_start_label);
801 /* Output the CIE. */
802 ASM_GENERATE_INTERNAL_LABEL (l1, CIE_AFTER_SIZE_LABEL, for_eh);
803 ASM_GENERATE_INTERNAL_LABEL (l2, CIE_END_LABEL, for_eh);
804 if (!XCOFF_DEBUGGING_INFO || for_eh)
806 if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4 && !for_eh)
807 dw2_asm_output_data (4, 0xffffffff,
808 "Initial length escape value indicating 64-bit DWARF extension");
809 dw2_asm_output_delta (for_eh ? 4 : DWARF_OFFSET_SIZE, l2, l1,
810 "Length of Common Information Entry");
812 ASM_OUTPUT_LABEL (asm_out_file, l1);
814 /* Now that the CIE pointer is PC-relative for EH,
815 use 0 to identify the CIE. */
816 dw2_asm_output_data ((for_eh ? 4 : DWARF_OFFSET_SIZE),
817 (for_eh ? 0 : DWARF_CIE_ID),
818 "CIE Identifier Tag");
820 /* Use the CIE version 3 for DWARF3; allow DWARF2 to continue to
821 use CIE version 1, unless that would produce incorrect results
822 due to overflowing the return register column. */
823 return_reg = DWARF2_FRAME_REG_OUT (DWARF_FRAME_RETURN_COLUMN, for_eh);
824 dw_cie_version = 1;
825 if (return_reg >= 256 || dwarf_version > 2)
826 dw_cie_version = 3;
827 dw2_asm_output_data (1, dw_cie_version, "CIE Version");
829 augmentation[0] = 0;
830 augmentation_size = 0;
832 personality = current_unit_personality;
833 if (for_eh)
835 char *p;
837 /* Augmentation:
838 z Indicates that a uleb128 is present to size the
839 augmentation section.
840 L Indicates the encoding (and thus presence) of
841 an LSDA pointer in the FDE augmentation.
842 R Indicates a non-default pointer encoding for
843 FDE code pointers.
844 P Indicates the presence of an encoding + language
845 personality routine in the CIE augmentation. */
847 fde_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/1, /*global=*/0);
848 per_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/2, /*global=*/1);
849 lsda_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/0, /*global=*/0);
851 p = augmentation + 1;
852 if (personality)
854 *p++ = 'P';
855 augmentation_size += 1 + size_of_encoded_value (per_encoding);
856 assemble_external_libcall (personality);
858 if (any_lsda_needed)
860 *p++ = 'L';
861 augmentation_size += 1;
863 if (fde_encoding != DW_EH_PE_absptr)
865 *p++ = 'R';
866 augmentation_size += 1;
868 if (p > augmentation + 1)
870 augmentation[0] = 'z';
871 *p = '\0';
874 /* Ug. Some platforms can't do unaligned dynamic relocations at all. */
875 if (personality && per_encoding == DW_EH_PE_aligned)
877 int offset = ( 4 /* Length */
878 + 4 /* CIE Id */
879 + 1 /* CIE version */
880 + strlen (augmentation) + 1 /* Augmentation */
881 + size_of_uleb128 (1) /* Code alignment */
882 + size_of_sleb128 (DWARF_CIE_DATA_ALIGNMENT)
883 + 1 /* RA column */
884 + 1 /* Augmentation size */
885 + 1 /* Personality encoding */ );
886 int pad = -offset & (PTR_SIZE - 1);
888 augmentation_size += pad;
890 /* Augmentations should be small, so there's scarce need to
891 iterate for a solution. Die if we exceed one uleb128 byte. */
892 gcc_assert (size_of_uleb128 (augmentation_size) == 1);
896 dw2_asm_output_nstring (augmentation, -1, "CIE Augmentation");
897 if (dw_cie_version >= 4)
899 dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "CIE Address Size");
900 dw2_asm_output_data (1, 0, "CIE Segment Size");
902 dw2_asm_output_data_uleb128 (1, "CIE Code Alignment Factor");
903 dw2_asm_output_data_sleb128 (DWARF_CIE_DATA_ALIGNMENT,
904 "CIE Data Alignment Factor");
906 if (dw_cie_version == 1)
907 dw2_asm_output_data (1, return_reg, "CIE RA Column");
908 else
909 dw2_asm_output_data_uleb128 (return_reg, "CIE RA Column");
911 if (augmentation[0])
913 dw2_asm_output_data_uleb128 (augmentation_size, "Augmentation size");
914 if (personality)
916 dw2_asm_output_data (1, per_encoding, "Personality (%s)",
917 eh_data_format_name (per_encoding));
918 dw2_asm_output_encoded_addr_rtx (per_encoding,
919 personality,
920 true, NULL);
923 if (any_lsda_needed)
924 dw2_asm_output_data (1, lsda_encoding, "LSDA Encoding (%s)",
925 eh_data_format_name (lsda_encoding));
927 if (fde_encoding != DW_EH_PE_absptr)
928 dw2_asm_output_data (1, fde_encoding, "FDE Encoding (%s)",
929 eh_data_format_name (fde_encoding));
932 FOR_EACH_VEC_ELT (*cie_cfi_vec, i, cfi)
933 output_cfi (cfi, NULL, for_eh);
935 /* Pad the CIE out to an address sized boundary. */
936 ASM_OUTPUT_ALIGN (asm_out_file,
937 floor_log2 (for_eh ? PTR_SIZE : DWARF2_ADDR_SIZE));
938 ASM_OUTPUT_LABEL (asm_out_file, l2);
940 /* Loop through all of the FDE's. */
941 FOR_EACH_VEC_ELT (*fde_vec, i, fde)
943 unsigned int k;
945 /* Don't emit EH unwind info for leaf functions that don't need it. */
946 if (for_eh && !fde_needed_for_eh_p (fde))
947 continue;
949 for (k = 0; k < (fde->dw_fde_second_begin ? 2 : 1); k++)
950 output_fde (fde, for_eh, k, section_start_label, fde_encoding,
951 augmentation, any_lsda_needed, lsda_encoding);
954 if (for_eh && targetm.terminate_dw2_eh_frame_info)
955 dw2_asm_output_data (4, 0, "End of Table");
957 /* Turn off app to make assembly quicker. */
958 if (flag_debug_asm)
959 app_disable ();
962 /* Emit .cfi_startproc and .cfi_personality/.cfi_lsda if needed. */
964 static void
965 dwarf2out_do_cfi_startproc (bool second)
967 int enc;
968 rtx ref;
970 fprintf (asm_out_file, "\t.cfi_startproc\n");
972 targetm.asm_out.post_cfi_startproc (asm_out_file, current_function_decl);
974 /* .cfi_personality and .cfi_lsda are only relevant to DWARF2
975 eh unwinders. */
976 if (targetm_common.except_unwind_info (&global_options) != UI_DWARF2)
977 return;
979 rtx personality = get_personality_function (current_function_decl);
981 if (personality)
983 enc = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/2, /*global=*/1);
984 ref = personality;
986 /* ??? The GAS support isn't entirely consistent. We have to
987 handle indirect support ourselves, but PC-relative is done
988 in the assembler. Further, the assembler can't handle any
989 of the weirder relocation types. */
990 if (enc & DW_EH_PE_indirect)
991 ref = dw2_force_const_mem (ref, true);
993 fprintf (asm_out_file, "\t.cfi_personality %#x,", enc);
994 output_addr_const (asm_out_file, ref);
995 fputc ('\n', asm_out_file);
998 if (crtl->uses_eh_lsda)
1000 char lab[MAX_ARTIFICIAL_LABEL_BYTES];
1002 enc = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/0, /*global=*/0);
1003 ASM_GENERATE_INTERNAL_LABEL (lab, second ? "LLSDAC" : "LLSDA",
1004 current_function_funcdef_no);
1005 ref = gen_rtx_SYMBOL_REF (Pmode, lab);
1006 SYMBOL_REF_FLAGS (ref) = SYMBOL_FLAG_LOCAL;
1008 if (enc & DW_EH_PE_indirect)
1009 ref = dw2_force_const_mem (ref, true);
1011 fprintf (asm_out_file, "\t.cfi_lsda %#x,", enc);
1012 output_addr_const (asm_out_file, ref);
1013 fputc ('\n', asm_out_file);
1017 /* Allocate CURRENT_FDE. Immediately initialize all we can, noting that
1018 this allocation may be done before pass_final. */
1020 dw_fde_ref
1021 dwarf2out_alloc_current_fde (void)
1023 dw_fde_ref fde;
1025 fde = ggc_cleared_alloc<dw_fde_node> ();
1026 fde->decl = current_function_decl;
1027 fde->funcdef_number = current_function_funcdef_no;
1028 fde->fde_index = vec_safe_length (fde_vec);
1029 fde->all_throwers_are_sibcalls = crtl->all_throwers_are_sibcalls;
1030 fde->uses_eh_lsda = crtl->uses_eh_lsda;
1031 fde->nothrow = crtl->nothrow;
1032 fde->drap_reg = INVALID_REGNUM;
1033 fde->vdrap_reg = INVALID_REGNUM;
1035 /* Record the FDE associated with this function. */
1036 cfun->fde = fde;
1037 vec_safe_push (fde_vec, fde);
1039 return fde;
1042 /* Output a marker (i.e. a label) for the beginning of a function, before
1043 the prologue. */
1045 void
1046 dwarf2out_begin_prologue (unsigned int line ATTRIBUTE_UNUSED,
1047 unsigned int column ATTRIBUTE_UNUSED,
1048 const char *file ATTRIBUTE_UNUSED)
1050 char label[MAX_ARTIFICIAL_LABEL_BYTES];
1051 char * dup_label;
1052 dw_fde_ref fde;
1053 section *fnsec;
1054 bool do_frame;
1056 current_function_func_begin_label = NULL;
1058 do_frame = dwarf2out_do_frame ();
1060 /* ??? current_function_func_begin_label is also used by except.c for
1061 call-site information. We must emit this label if it might be used. */
1062 if (!do_frame
1063 && (!flag_exceptions
1064 || targetm_common.except_unwind_info (&global_options) == UI_SJLJ))
1065 return;
1067 fnsec = function_section (current_function_decl);
1068 switch_to_section (fnsec);
1069 ASM_GENERATE_INTERNAL_LABEL (label, FUNC_BEGIN_LABEL,
1070 current_function_funcdef_no);
1071 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, FUNC_BEGIN_LABEL,
1072 current_function_funcdef_no);
1073 dup_label = xstrdup (label);
1074 current_function_func_begin_label = dup_label;
1076 /* We can elide FDE allocation if we're not emitting frame unwind info. */
1077 if (!do_frame)
1078 return;
1080 /* Unlike the debug version, the EH version of frame unwind info is a per-
1081 function setting so we need to record whether we need it for the unit. */
1082 do_eh_frame |= dwarf2out_do_eh_frame ();
1084 /* Cater to the various TARGET_ASM_OUTPUT_MI_THUNK implementations that
1085 emit insns as rtx but bypass the bulk of rest_of_compilation, which
1086 would include pass_dwarf2_frame. If we've not created the FDE yet,
1087 do so now. */
1088 fde = cfun->fde;
1089 if (fde == NULL)
1090 fde = dwarf2out_alloc_current_fde ();
1092 /* Initialize the bits of CURRENT_FDE that were not available earlier. */
1093 fde->dw_fde_begin = dup_label;
1094 fde->dw_fde_current_label = dup_label;
1095 fde->in_std_section = (fnsec == text_section
1096 || (cold_text_section && fnsec == cold_text_section));
1098 /* We only want to output line number information for the genuine dwarf2
1099 prologue case, not the eh frame case. */
1100 #ifdef DWARF2_DEBUGGING_INFO
1101 if (file)
1102 dwarf2out_source_line (line, column, file, 0, true);
1103 #endif
1105 if (dwarf2out_do_cfi_asm ())
1106 dwarf2out_do_cfi_startproc (false);
1107 else
1109 rtx personality = get_personality_function (current_function_decl);
1110 if (!current_unit_personality)
1111 current_unit_personality = personality;
1113 /* We cannot keep a current personality per function as without CFI
1114 asm, at the point where we emit the CFI data, there is no current
1115 function anymore. */
1116 if (personality && current_unit_personality != personality)
1117 sorry ("multiple EH personalities are supported only with assemblers "
1118 "supporting .cfi_personality directive");
1122 /* Output a marker (i.e. a label) for the end of the generated code
1123 for a function prologue. This gets called *after* the prologue code has
1124 been generated. */
1126 void
1127 dwarf2out_vms_end_prologue (unsigned int line ATTRIBUTE_UNUSED,
1128 const char *file ATTRIBUTE_UNUSED)
1130 char label[MAX_ARTIFICIAL_LABEL_BYTES];
1132 /* Output a label to mark the endpoint of the code generated for this
1133 function. */
1134 ASM_GENERATE_INTERNAL_LABEL (label, PROLOGUE_END_LABEL,
1135 current_function_funcdef_no);
1136 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, PROLOGUE_END_LABEL,
1137 current_function_funcdef_no);
1138 cfun->fde->dw_fde_vms_end_prologue = xstrdup (label);
1141 /* Output a marker (i.e. a label) for the beginning of the generated code
1142 for a function epilogue. This gets called *before* the prologue code has
1143 been generated. */
1145 void
1146 dwarf2out_vms_begin_epilogue (unsigned int line ATTRIBUTE_UNUSED,
1147 const char *file ATTRIBUTE_UNUSED)
1149 dw_fde_ref fde = cfun->fde;
1150 char label[MAX_ARTIFICIAL_LABEL_BYTES];
1152 if (fde->dw_fde_vms_begin_epilogue)
1153 return;
1155 /* Output a label to mark the endpoint of the code generated for this
1156 function. */
1157 ASM_GENERATE_INTERNAL_LABEL (label, EPILOGUE_BEGIN_LABEL,
1158 current_function_funcdef_no);
1159 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, EPILOGUE_BEGIN_LABEL,
1160 current_function_funcdef_no);
1161 fde->dw_fde_vms_begin_epilogue = xstrdup (label);
1164 /* Output a marker (i.e. a label) for the absolute end of the generated code
1165 for a function definition. This gets called *after* the epilogue code has
1166 been generated. */
1168 void
1169 dwarf2out_end_epilogue (unsigned int line ATTRIBUTE_UNUSED,
1170 const char *file ATTRIBUTE_UNUSED)
1172 dw_fde_ref fde;
1173 char label[MAX_ARTIFICIAL_LABEL_BYTES];
1175 last_var_location_insn = NULL;
1176 cached_next_real_insn = NULL;
1178 if (dwarf2out_do_cfi_asm ())
1179 fprintf (asm_out_file, "\t.cfi_endproc\n");
1181 /* Output a label to mark the endpoint of the code generated for this
1182 function. */
1183 ASM_GENERATE_INTERNAL_LABEL (label, FUNC_END_LABEL,
1184 current_function_funcdef_no);
1185 ASM_OUTPUT_LABEL (asm_out_file, label);
1186 fde = cfun->fde;
1187 gcc_assert (fde != NULL);
1188 if (fde->dw_fde_second_begin == NULL)
1189 fde->dw_fde_end = xstrdup (label);
1192 void
1193 dwarf2out_frame_finish (void)
1195 /* Output call frame information. */
1196 if (targetm.debug_unwind_info () == UI_DWARF2)
1197 output_call_frame_info (0);
1199 /* Output another copy for the unwinder. */
1200 if (do_eh_frame)
1201 output_call_frame_info (1);
1204 /* Note that the current function section is being used for code. */
1206 static void
1207 dwarf2out_note_section_used (void)
1209 section *sec = current_function_section ();
1210 if (sec == text_section)
1211 text_section_used = true;
1212 else if (sec == cold_text_section)
1213 cold_text_section_used = true;
1216 static void var_location_switch_text_section (void);
1217 static void set_cur_line_info_table (section *);
1219 void
1220 dwarf2out_switch_text_section (void)
1222 char label[MAX_ARTIFICIAL_LABEL_BYTES];
1223 section *sect;
1224 dw_fde_ref fde = cfun->fde;
1226 gcc_assert (cfun && fde && fde->dw_fde_second_begin == NULL);
1228 ASM_GENERATE_INTERNAL_LABEL (label, FUNC_SECOND_SECT_LABEL,
1229 current_function_funcdef_no);
1231 fde->dw_fde_second_begin = ggc_strdup (label);
1232 if (!in_cold_section_p)
1234 fde->dw_fde_end = crtl->subsections.cold_section_end_label;
1235 fde->dw_fde_second_end = crtl->subsections.hot_section_end_label;
1237 else
1239 fde->dw_fde_end = crtl->subsections.hot_section_end_label;
1240 fde->dw_fde_second_end = crtl->subsections.cold_section_end_label;
1242 have_multiple_function_sections = true;
1244 /* There is no need to mark used sections when not debugging. */
1245 if (cold_text_section != NULL)
1246 dwarf2out_note_section_used ();
1248 if (dwarf2out_do_cfi_asm ())
1249 fprintf (asm_out_file, "\t.cfi_endproc\n");
1251 /* Now do the real section switch. */
1252 sect = current_function_section ();
1253 switch_to_section (sect);
1255 fde->second_in_std_section
1256 = (sect == text_section
1257 || (cold_text_section && sect == cold_text_section));
1259 if (dwarf2out_do_cfi_asm ())
1260 dwarf2out_do_cfi_startproc (true);
1262 var_location_switch_text_section ();
1264 if (cold_text_section != NULL)
1265 set_cur_line_info_table (sect);
1268 /* And now, the subset of the debugging information support code necessary
1269 for emitting location expressions. */
1271 /* Data about a single source file. */
1272 struct GTY((for_user)) dwarf_file_data {
1273 const char * filename;
1274 int emitted_number;
1277 /* Describe an entry into the .debug_addr section. */
1279 enum ate_kind {
1280 ate_kind_rtx,
1281 ate_kind_rtx_dtprel,
1282 ate_kind_label
1285 struct GTY((for_user)) addr_table_entry {
1286 enum ate_kind kind;
1287 unsigned int refcount;
1288 unsigned int index;
1289 union addr_table_entry_struct_union
1291 rtx GTY ((tag ("0"))) rtl;
1292 char * GTY ((tag ("1"))) label;
1294 GTY ((desc ("%1.kind"))) addr;
1297 typedef unsigned int var_loc_view;
1299 /* Location lists are ranges + location descriptions for that range,
1300 so you can track variables that are in different places over
1301 their entire life. */
1302 typedef struct GTY(()) dw_loc_list_struct {
1303 dw_loc_list_ref dw_loc_next;
1304 const char *begin; /* Label and addr_entry for start of range */
1305 addr_table_entry *begin_entry;
1306 const char *end; /* Label for end of range */
1307 char *ll_symbol; /* Label for beginning of location list.
1308 Only on head of list. */
1309 char *vl_symbol; /* Label for beginning of view list. Ditto. */
1310 const char *section; /* Section this loclist is relative to */
1311 dw_loc_descr_ref expr;
1312 var_loc_view vbegin, vend;
1313 hashval_t hash;
1314 /* True if all addresses in this and subsequent lists are known to be
1315 resolved. */
1316 bool resolved_addr;
1317 /* True if this list has been replaced by dw_loc_next. */
1318 bool replaced;
1319 /* True if it has been emitted into .debug_loc* / .debug_loclists*
1320 section. */
1321 unsigned char emitted : 1;
1322 /* True if hash field is index rather than hash value. */
1323 unsigned char num_assigned : 1;
1324 /* True if .debug_loclists.dwo offset has been emitted for it already. */
1325 unsigned char offset_emitted : 1;
1326 /* True if note_variable_value_in_expr has been called on it. */
1327 unsigned char noted_variable_value : 1;
1328 /* True if the range should be emitted even if begin and end
1329 are the same. */
1330 bool force;
1331 } dw_loc_list_node;
1333 static dw_loc_descr_ref int_loc_descriptor (poly_int64);
1334 static dw_loc_descr_ref uint_loc_descriptor (unsigned HOST_WIDE_INT);
1336 /* Convert a DWARF stack opcode into its string name. */
1338 static const char *
1339 dwarf_stack_op_name (unsigned int op)
1341 const char *name = get_DW_OP_name (op);
1343 if (name != NULL)
1344 return name;
1346 return "OP_<unknown>";
1349 /* Return TRUE iff we're to output location view lists as a separate
1350 attribute next to the location lists, as an extension compatible
1351 with DWARF 2 and above. */
1353 static inline bool
1354 dwarf2out_locviews_in_attribute ()
1356 return debug_variable_location_views == 1;
1359 /* Return TRUE iff we're to output location view lists as part of the
1360 location lists, as proposed for standardization after DWARF 5. */
1362 static inline bool
1363 dwarf2out_locviews_in_loclist ()
1365 #ifndef DW_LLE_view_pair
1366 return false;
1367 #else
1368 return debug_variable_location_views == -1;
1369 #endif
1372 /* Return a pointer to a newly allocated location description. Location
1373 descriptions are simple expression terms that can be strung
1374 together to form more complicated location (address) descriptions. */
1376 static inline dw_loc_descr_ref
1377 new_loc_descr (enum dwarf_location_atom op, unsigned HOST_WIDE_INT oprnd1,
1378 unsigned HOST_WIDE_INT oprnd2)
1380 dw_loc_descr_ref descr = ggc_cleared_alloc<dw_loc_descr_node> ();
1382 descr->dw_loc_opc = op;
1383 descr->dw_loc_oprnd1.val_class = dw_val_class_unsigned_const;
1384 descr->dw_loc_oprnd1.val_entry = NULL;
1385 descr->dw_loc_oprnd1.v.val_unsigned = oprnd1;
1386 descr->dw_loc_oprnd2.val_class = dw_val_class_unsigned_const;
1387 descr->dw_loc_oprnd2.val_entry = NULL;
1388 descr->dw_loc_oprnd2.v.val_unsigned = oprnd2;
1390 return descr;
1393 /* Add a location description term to a location description expression. */
1395 static inline void
1396 add_loc_descr (dw_loc_descr_ref *list_head, dw_loc_descr_ref descr)
1398 dw_loc_descr_ref *d;
1400 /* Find the end of the chain. */
1401 for (d = list_head; (*d) != NULL; d = &(*d)->dw_loc_next)
1404 *d = descr;
1407 /* Compare two location operands for exact equality. */
1409 static bool
1410 dw_val_equal_p (dw_val_node *a, dw_val_node *b)
1412 if (a->val_class != b->val_class)
1413 return false;
1414 switch (a->val_class)
1416 case dw_val_class_none:
1417 return true;
1418 case dw_val_class_addr:
1419 return rtx_equal_p (a->v.val_addr, b->v.val_addr);
1421 case dw_val_class_offset:
1422 case dw_val_class_unsigned_const:
1423 case dw_val_class_const:
1424 case dw_val_class_unsigned_const_implicit:
1425 case dw_val_class_const_implicit:
1426 case dw_val_class_range_list:
1427 /* These are all HOST_WIDE_INT, signed or unsigned. */
1428 return a->v.val_unsigned == b->v.val_unsigned;
1430 case dw_val_class_loc:
1431 return a->v.val_loc == b->v.val_loc;
1432 case dw_val_class_loc_list:
1433 return a->v.val_loc_list == b->v.val_loc_list;
1434 case dw_val_class_view_list:
1435 return a->v.val_view_list == b->v.val_view_list;
1436 case dw_val_class_die_ref:
1437 return a->v.val_die_ref.die == b->v.val_die_ref.die;
1438 case dw_val_class_fde_ref:
1439 return a->v.val_fde_index == b->v.val_fde_index;
1440 case dw_val_class_symview:
1441 return strcmp (a->v.val_symbolic_view, b->v.val_symbolic_view) == 0;
1442 case dw_val_class_lbl_id:
1443 case dw_val_class_lineptr:
1444 case dw_val_class_macptr:
1445 case dw_val_class_loclistsptr:
1446 case dw_val_class_high_pc:
1447 return strcmp (a->v.val_lbl_id, b->v.val_lbl_id) == 0;
1448 case dw_val_class_str:
1449 return a->v.val_str == b->v.val_str;
1450 case dw_val_class_flag:
1451 return a->v.val_flag == b->v.val_flag;
1452 case dw_val_class_file:
1453 case dw_val_class_file_implicit:
1454 return a->v.val_file == b->v.val_file;
1455 case dw_val_class_decl_ref:
1456 return a->v.val_decl_ref == b->v.val_decl_ref;
1458 case dw_val_class_const_double:
1459 return (a->v.val_double.high == b->v.val_double.high
1460 && a->v.val_double.low == b->v.val_double.low);
1462 case dw_val_class_wide_int:
1463 return *a->v.val_wide == *b->v.val_wide;
1465 case dw_val_class_vec:
1467 size_t a_len = a->v.val_vec.elt_size * a->v.val_vec.length;
1468 size_t b_len = b->v.val_vec.elt_size * b->v.val_vec.length;
1470 return (a_len == b_len
1471 && !memcmp (a->v.val_vec.array, b->v.val_vec.array, a_len));
1474 case dw_val_class_data8:
1475 return memcmp (a->v.val_data8, b->v.val_data8, 8) == 0;
1477 case dw_val_class_vms_delta:
1478 return (!strcmp (a->v.val_vms_delta.lbl1, b->v.val_vms_delta.lbl1)
1479 && !strcmp (a->v.val_vms_delta.lbl1, b->v.val_vms_delta.lbl1));
1481 case dw_val_class_discr_value:
1482 return (a->v.val_discr_value.pos == b->v.val_discr_value.pos
1483 && a->v.val_discr_value.v.uval == b->v.val_discr_value.v.uval);
1484 case dw_val_class_discr_list:
1485 /* It makes no sense comparing two discriminant value lists. */
1486 return false;
1488 gcc_unreachable ();
1491 /* Compare two location atoms for exact equality. */
1493 static bool
1494 loc_descr_equal_p_1 (dw_loc_descr_ref a, dw_loc_descr_ref b)
1496 if (a->dw_loc_opc != b->dw_loc_opc)
1497 return false;
1499 /* ??? This is only ever set for DW_OP_constNu, for N equal to the
1500 address size, but since we always allocate cleared storage it
1501 should be zero for other types of locations. */
1502 if (a->dtprel != b->dtprel)
1503 return false;
1505 return (dw_val_equal_p (&a->dw_loc_oprnd1, &b->dw_loc_oprnd1)
1506 && dw_val_equal_p (&a->dw_loc_oprnd2, &b->dw_loc_oprnd2));
1509 /* Compare two complete location expressions for exact equality. */
1511 bool
1512 loc_descr_equal_p (dw_loc_descr_ref a, dw_loc_descr_ref b)
1514 while (1)
1516 if (a == b)
1517 return true;
1518 if (a == NULL || b == NULL)
1519 return false;
1520 if (!loc_descr_equal_p_1 (a, b))
1521 return false;
1523 a = a->dw_loc_next;
1524 b = b->dw_loc_next;
1529 /* Add a constant POLY_OFFSET to a location expression. */
1531 static void
1532 loc_descr_plus_const (dw_loc_descr_ref *list_head, poly_int64 poly_offset)
1534 dw_loc_descr_ref loc;
1535 HOST_WIDE_INT *p;
1537 gcc_assert (*list_head != NULL);
1539 if (known_eq (poly_offset, 0))
1540 return;
1542 /* Find the end of the chain. */
1543 for (loc = *list_head; loc->dw_loc_next != NULL; loc = loc->dw_loc_next)
1546 HOST_WIDE_INT offset;
1547 if (!poly_offset.is_constant (&offset))
1549 loc->dw_loc_next = int_loc_descriptor (poly_offset);
1550 add_loc_descr (&loc->dw_loc_next, new_loc_descr (DW_OP_plus, 0, 0));
1551 return;
1554 p = NULL;
1555 if (loc->dw_loc_opc == DW_OP_fbreg
1556 || (loc->dw_loc_opc >= DW_OP_breg0 && loc->dw_loc_opc <= DW_OP_breg31))
1557 p = &loc->dw_loc_oprnd1.v.val_int;
1558 else if (loc->dw_loc_opc == DW_OP_bregx)
1559 p = &loc->dw_loc_oprnd2.v.val_int;
1561 /* If the last operation is fbreg, breg{0..31,x}, optimize by adjusting its
1562 offset. Don't optimize if an signed integer overflow would happen. */
1563 if (p != NULL
1564 && ((offset > 0 && *p <= INTTYPE_MAXIMUM (HOST_WIDE_INT) - offset)
1565 || (offset < 0 && *p >= INTTYPE_MINIMUM (HOST_WIDE_INT) - offset)))
1566 *p += offset;
1568 else if (offset > 0)
1569 loc->dw_loc_next = new_loc_descr (DW_OP_plus_uconst, offset, 0);
1571 else
1573 loc->dw_loc_next
1574 = uint_loc_descriptor (-(unsigned HOST_WIDE_INT) offset);
1575 add_loc_descr (&loc->dw_loc_next, new_loc_descr (DW_OP_minus, 0, 0));
1579 /* Return a pointer to a newly allocated location description for
1580 REG and OFFSET. */
1582 static inline dw_loc_descr_ref
1583 new_reg_loc_descr (unsigned int reg, poly_int64 offset)
1585 HOST_WIDE_INT const_offset;
1586 if (offset.is_constant (&const_offset))
1588 if (reg <= 31)
1589 return new_loc_descr ((enum dwarf_location_atom) (DW_OP_breg0 + reg),
1590 const_offset, 0);
1591 else
1592 return new_loc_descr (DW_OP_bregx, reg, const_offset);
1594 else
1596 dw_loc_descr_ref ret = new_reg_loc_descr (reg, 0);
1597 loc_descr_plus_const (&ret, offset);
1598 return ret;
1602 /* Add a constant OFFSET to a location list. */
1604 static void
1605 loc_list_plus_const (dw_loc_list_ref list_head, poly_int64 offset)
1607 dw_loc_list_ref d;
1608 for (d = list_head; d != NULL; d = d->dw_loc_next)
1609 loc_descr_plus_const (&d->expr, offset);
1612 #define DWARF_REF_SIZE \
1613 (dwarf_version == 2 ? DWARF2_ADDR_SIZE : DWARF_OFFSET_SIZE)
1615 /* The number of bits that can be encoded by largest DW_FORM_dataN.
1616 In DWARF4 and earlier it is DW_FORM_data8 with 64 bits, in DWARF5
1617 DW_FORM_data16 with 128 bits. */
1618 #define DWARF_LARGEST_DATA_FORM_BITS \
1619 (dwarf_version >= 5 ? 128 : 64)
1621 /* Utility inline function for construction of ops that were GNU extension
1622 before DWARF 5. */
1623 static inline enum dwarf_location_atom
1624 dwarf_OP (enum dwarf_location_atom op)
1626 switch (op)
1628 case DW_OP_implicit_pointer:
1629 if (dwarf_version < 5)
1630 return DW_OP_GNU_implicit_pointer;
1631 break;
1633 case DW_OP_entry_value:
1634 if (dwarf_version < 5)
1635 return DW_OP_GNU_entry_value;
1636 break;
1638 case DW_OP_const_type:
1639 if (dwarf_version < 5)
1640 return DW_OP_GNU_const_type;
1641 break;
1643 case DW_OP_regval_type:
1644 if (dwarf_version < 5)
1645 return DW_OP_GNU_regval_type;
1646 break;
1648 case DW_OP_deref_type:
1649 if (dwarf_version < 5)
1650 return DW_OP_GNU_deref_type;
1651 break;
1653 case DW_OP_convert:
1654 if (dwarf_version < 5)
1655 return DW_OP_GNU_convert;
1656 break;
1658 case DW_OP_reinterpret:
1659 if (dwarf_version < 5)
1660 return DW_OP_GNU_reinterpret;
1661 break;
1663 case DW_OP_addrx:
1664 if (dwarf_version < 5)
1665 return DW_OP_GNU_addr_index;
1666 break;
1668 case DW_OP_constx:
1669 if (dwarf_version < 5)
1670 return DW_OP_GNU_const_index;
1671 break;
1673 default:
1674 break;
1676 return op;
1679 /* Similarly for attributes. */
1680 static inline enum dwarf_attribute
1681 dwarf_AT (enum dwarf_attribute at)
1683 switch (at)
1685 case DW_AT_call_return_pc:
1686 if (dwarf_version < 5)
1687 return DW_AT_low_pc;
1688 break;
1690 case DW_AT_call_tail_call:
1691 if (dwarf_version < 5)
1692 return DW_AT_GNU_tail_call;
1693 break;
1695 case DW_AT_call_origin:
1696 if (dwarf_version < 5)
1697 return DW_AT_abstract_origin;
1698 break;
1700 case DW_AT_call_target:
1701 if (dwarf_version < 5)
1702 return DW_AT_GNU_call_site_target;
1703 break;
1705 case DW_AT_call_target_clobbered:
1706 if (dwarf_version < 5)
1707 return DW_AT_GNU_call_site_target_clobbered;
1708 break;
1710 case DW_AT_call_parameter:
1711 if (dwarf_version < 5)
1712 return DW_AT_abstract_origin;
1713 break;
1715 case DW_AT_call_value:
1716 if (dwarf_version < 5)
1717 return DW_AT_GNU_call_site_value;
1718 break;
1720 case DW_AT_call_data_value:
1721 if (dwarf_version < 5)
1722 return DW_AT_GNU_call_site_data_value;
1723 break;
1725 case DW_AT_call_all_calls:
1726 if (dwarf_version < 5)
1727 return DW_AT_GNU_all_call_sites;
1728 break;
1730 case DW_AT_call_all_tail_calls:
1731 if (dwarf_version < 5)
1732 return DW_AT_GNU_all_tail_call_sites;
1733 break;
1735 case DW_AT_dwo_name:
1736 if (dwarf_version < 5)
1737 return DW_AT_GNU_dwo_name;
1738 break;
1740 case DW_AT_addr_base:
1741 if (dwarf_version < 5)
1742 return DW_AT_GNU_addr_base;
1743 break;
1745 default:
1746 break;
1748 return at;
1751 /* And similarly for tags. */
1752 static inline enum dwarf_tag
1753 dwarf_TAG (enum dwarf_tag tag)
1755 switch (tag)
1757 case DW_TAG_call_site:
1758 if (dwarf_version < 5)
1759 return DW_TAG_GNU_call_site;
1760 break;
1762 case DW_TAG_call_site_parameter:
1763 if (dwarf_version < 5)
1764 return DW_TAG_GNU_call_site_parameter;
1765 break;
1767 default:
1768 break;
1770 return tag;
1773 /* And similarly for forms. */
1774 static inline enum dwarf_form
1775 dwarf_FORM (enum dwarf_form form)
1777 switch (form)
1779 case DW_FORM_addrx:
1780 if (dwarf_version < 5)
1781 return DW_FORM_GNU_addr_index;
1782 break;
1784 case DW_FORM_strx:
1785 if (dwarf_version < 5)
1786 return DW_FORM_GNU_str_index;
1787 break;
1789 default:
1790 break;
1792 return form;
1795 static unsigned long int get_base_type_offset (dw_die_ref);
1797 /* Return the size of a location descriptor. */
1799 static unsigned long
1800 size_of_loc_descr (dw_loc_descr_ref loc)
1802 unsigned long size = 1;
1804 switch (loc->dw_loc_opc)
1806 case DW_OP_addr:
1807 size += DWARF2_ADDR_SIZE;
1808 break;
1809 case DW_OP_GNU_addr_index:
1810 case DW_OP_addrx:
1811 case DW_OP_GNU_const_index:
1812 case DW_OP_constx:
1813 gcc_assert (loc->dw_loc_oprnd1.val_entry->index != NO_INDEX_ASSIGNED);
1814 size += size_of_uleb128 (loc->dw_loc_oprnd1.val_entry->index);
1815 break;
1816 case DW_OP_const1u:
1817 case DW_OP_const1s:
1818 size += 1;
1819 break;
1820 case DW_OP_const2u:
1821 case DW_OP_const2s:
1822 size += 2;
1823 break;
1824 case DW_OP_const4u:
1825 case DW_OP_const4s:
1826 size += 4;
1827 break;
1828 case DW_OP_const8u:
1829 case DW_OP_const8s:
1830 size += 8;
1831 break;
1832 case DW_OP_constu:
1833 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
1834 break;
1835 case DW_OP_consts:
1836 size += size_of_sleb128 (loc->dw_loc_oprnd1.v.val_int);
1837 break;
1838 case DW_OP_pick:
1839 size += 1;
1840 break;
1841 case DW_OP_plus_uconst:
1842 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
1843 break;
1844 case DW_OP_skip:
1845 case DW_OP_bra:
1846 size += 2;
1847 break;
1848 case DW_OP_breg0:
1849 case DW_OP_breg1:
1850 case DW_OP_breg2:
1851 case DW_OP_breg3:
1852 case DW_OP_breg4:
1853 case DW_OP_breg5:
1854 case DW_OP_breg6:
1855 case DW_OP_breg7:
1856 case DW_OP_breg8:
1857 case DW_OP_breg9:
1858 case DW_OP_breg10:
1859 case DW_OP_breg11:
1860 case DW_OP_breg12:
1861 case DW_OP_breg13:
1862 case DW_OP_breg14:
1863 case DW_OP_breg15:
1864 case DW_OP_breg16:
1865 case DW_OP_breg17:
1866 case DW_OP_breg18:
1867 case DW_OP_breg19:
1868 case DW_OP_breg20:
1869 case DW_OP_breg21:
1870 case DW_OP_breg22:
1871 case DW_OP_breg23:
1872 case DW_OP_breg24:
1873 case DW_OP_breg25:
1874 case DW_OP_breg26:
1875 case DW_OP_breg27:
1876 case DW_OP_breg28:
1877 case DW_OP_breg29:
1878 case DW_OP_breg30:
1879 case DW_OP_breg31:
1880 size += size_of_sleb128 (loc->dw_loc_oprnd1.v.val_int);
1881 break;
1882 case DW_OP_regx:
1883 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
1884 break;
1885 case DW_OP_fbreg:
1886 size += size_of_sleb128 (loc->dw_loc_oprnd1.v.val_int);
1887 break;
1888 case DW_OP_bregx:
1889 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
1890 size += size_of_sleb128 (loc->dw_loc_oprnd2.v.val_int);
1891 break;
1892 case DW_OP_piece:
1893 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
1894 break;
1895 case DW_OP_bit_piece:
1896 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
1897 size += size_of_uleb128 (loc->dw_loc_oprnd2.v.val_unsigned);
1898 break;
1899 case DW_OP_deref_size:
1900 case DW_OP_xderef_size:
1901 size += 1;
1902 break;
1903 case DW_OP_call2:
1904 size += 2;
1905 break;
1906 case DW_OP_call4:
1907 size += 4;
1908 break;
1909 case DW_OP_call_ref:
1910 case DW_OP_GNU_variable_value:
1911 size += DWARF_REF_SIZE;
1912 break;
1913 case DW_OP_implicit_value:
1914 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned)
1915 + loc->dw_loc_oprnd1.v.val_unsigned;
1916 break;
1917 case DW_OP_implicit_pointer:
1918 case DW_OP_GNU_implicit_pointer:
1919 size += DWARF_REF_SIZE + size_of_sleb128 (loc->dw_loc_oprnd2.v.val_int);
1920 break;
1921 case DW_OP_entry_value:
1922 case DW_OP_GNU_entry_value:
1924 unsigned long op_size = size_of_locs (loc->dw_loc_oprnd1.v.val_loc);
1925 size += size_of_uleb128 (op_size) + op_size;
1926 break;
1928 case DW_OP_const_type:
1929 case DW_OP_GNU_const_type:
1931 unsigned long o
1932 = get_base_type_offset (loc->dw_loc_oprnd1.v.val_die_ref.die);
1933 size += size_of_uleb128 (o) + 1;
1934 switch (loc->dw_loc_oprnd2.val_class)
1936 case dw_val_class_vec:
1937 size += loc->dw_loc_oprnd2.v.val_vec.length
1938 * loc->dw_loc_oprnd2.v.val_vec.elt_size;
1939 break;
1940 case dw_val_class_const:
1941 size += HOST_BITS_PER_WIDE_INT / BITS_PER_UNIT;
1942 break;
1943 case dw_val_class_const_double:
1944 size += HOST_BITS_PER_DOUBLE_INT / BITS_PER_UNIT;
1945 break;
1946 case dw_val_class_wide_int:
1947 size += (get_full_len (*loc->dw_loc_oprnd2.v.val_wide)
1948 * HOST_BITS_PER_WIDE_INT / BITS_PER_UNIT);
1949 break;
1950 default:
1951 gcc_unreachable ();
1953 break;
1955 case DW_OP_regval_type:
1956 case DW_OP_GNU_regval_type:
1958 unsigned long o
1959 = get_base_type_offset (loc->dw_loc_oprnd2.v.val_die_ref.die);
1960 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned)
1961 + size_of_uleb128 (o);
1963 break;
1964 case DW_OP_deref_type:
1965 case DW_OP_GNU_deref_type:
1967 unsigned long o
1968 = get_base_type_offset (loc->dw_loc_oprnd2.v.val_die_ref.die);
1969 size += 1 + size_of_uleb128 (o);
1971 break;
1972 case DW_OP_convert:
1973 case DW_OP_reinterpret:
1974 case DW_OP_GNU_convert:
1975 case DW_OP_GNU_reinterpret:
1976 if (loc->dw_loc_oprnd1.val_class == dw_val_class_unsigned_const)
1977 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
1978 else
1980 unsigned long o
1981 = get_base_type_offset (loc->dw_loc_oprnd1.v.val_die_ref.die);
1982 size += size_of_uleb128 (o);
1984 break;
1985 case DW_OP_GNU_parameter_ref:
1986 size += 4;
1987 break;
1988 default:
1989 break;
1992 return size;
1995 /* Return the size of a series of location descriptors. */
1997 unsigned long
1998 size_of_locs (dw_loc_descr_ref loc)
2000 dw_loc_descr_ref l;
2001 unsigned long size;
2003 /* If there are no skip or bra opcodes, don't fill in the dw_loc_addr
2004 field, to avoid writing to a PCH file. */
2005 for (size = 0, l = loc; l != NULL; l = l->dw_loc_next)
2007 if (l->dw_loc_opc == DW_OP_skip || l->dw_loc_opc == DW_OP_bra)
2008 break;
2009 size += size_of_loc_descr (l);
2011 if (! l)
2012 return size;
2014 for (size = 0, l = loc; l != NULL; l = l->dw_loc_next)
2016 l->dw_loc_addr = size;
2017 size += size_of_loc_descr (l);
2020 return size;
2023 /* Return the size of the value in a DW_AT_discr_value attribute. */
2025 static int
2026 size_of_discr_value (dw_discr_value *discr_value)
2028 if (discr_value->pos)
2029 return size_of_uleb128 (discr_value->v.uval);
2030 else
2031 return size_of_sleb128 (discr_value->v.sval);
2034 /* Return the size of the value in a DW_AT_discr_list attribute. */
2036 static int
2037 size_of_discr_list (dw_discr_list_ref discr_list)
2039 int size = 0;
2041 for (dw_discr_list_ref list = discr_list;
2042 list != NULL;
2043 list = list->dw_discr_next)
2045 /* One byte for the discriminant value descriptor, and then one or two
2046 LEB128 numbers, depending on whether it's a single case label or a
2047 range label. */
2048 size += 1;
2049 size += size_of_discr_value (&list->dw_discr_lower_bound);
2050 if (list->dw_discr_range != 0)
2051 size += size_of_discr_value (&list->dw_discr_upper_bound);
2053 return size;
2056 static HOST_WIDE_INT extract_int (const unsigned char *, unsigned);
2057 static void get_ref_die_offset_label (char *, dw_die_ref);
2058 static unsigned long int get_ref_die_offset (dw_die_ref);
2060 /* Output location description stack opcode's operands (if any).
2061 The for_eh_or_skip parameter controls whether register numbers are
2062 converted using DWARF2_FRAME_REG_OUT, which is needed in the case that
2063 hard reg numbers have been processed via DWARF_FRAME_REGNUM (i.e. for unwind
2064 info). This should be suppressed for the cases that have not been converted
2065 (i.e. symbolic debug info), by setting the parameter < 0. See PR47324. */
2067 static void
2068 output_loc_operands (dw_loc_descr_ref loc, int for_eh_or_skip)
2070 dw_val_ref val1 = &loc->dw_loc_oprnd1;
2071 dw_val_ref val2 = &loc->dw_loc_oprnd2;
2073 switch (loc->dw_loc_opc)
2075 #ifdef DWARF2_DEBUGGING_INFO
2076 case DW_OP_const2u:
2077 case DW_OP_const2s:
2078 dw2_asm_output_data (2, val1->v.val_int, NULL);
2079 break;
2080 case DW_OP_const4u:
2081 if (loc->dtprel)
2083 gcc_assert (targetm.asm_out.output_dwarf_dtprel);
2084 targetm.asm_out.output_dwarf_dtprel (asm_out_file, 4,
2085 val1->v.val_addr);
2086 fputc ('\n', asm_out_file);
2087 break;
2089 /* FALLTHRU */
2090 case DW_OP_const4s:
2091 dw2_asm_output_data (4, val1->v.val_int, NULL);
2092 break;
2093 case DW_OP_const8u:
2094 if (loc->dtprel)
2096 gcc_assert (targetm.asm_out.output_dwarf_dtprel);
2097 targetm.asm_out.output_dwarf_dtprel (asm_out_file, 8,
2098 val1->v.val_addr);
2099 fputc ('\n', asm_out_file);
2100 break;
2102 /* FALLTHRU */
2103 case DW_OP_const8s:
2104 gcc_assert (HOST_BITS_PER_WIDE_INT >= 64);
2105 dw2_asm_output_data (8, val1->v.val_int, NULL);
2106 break;
2107 case DW_OP_skip:
2108 case DW_OP_bra:
2110 int offset;
2112 gcc_assert (val1->val_class == dw_val_class_loc);
2113 offset = val1->v.val_loc->dw_loc_addr - (loc->dw_loc_addr + 3);
2115 dw2_asm_output_data (2, offset, NULL);
2117 break;
2118 case DW_OP_implicit_value:
2119 dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
2120 switch (val2->val_class)
2122 case dw_val_class_const:
2123 dw2_asm_output_data (val1->v.val_unsigned, val2->v.val_int, NULL);
2124 break;
2125 case dw_val_class_vec:
2127 unsigned int elt_size = val2->v.val_vec.elt_size;
2128 unsigned int len = val2->v.val_vec.length;
2129 unsigned int i;
2130 unsigned char *p;
2132 if (elt_size > sizeof (HOST_WIDE_INT))
2134 elt_size /= 2;
2135 len *= 2;
2137 for (i = 0, p = (unsigned char *) val2->v.val_vec.array;
2138 i < len;
2139 i++, p += elt_size)
2140 dw2_asm_output_data (elt_size, extract_int (p, elt_size),
2141 "fp or vector constant word %u", i);
2143 break;
2144 case dw_val_class_const_double:
2146 unsigned HOST_WIDE_INT first, second;
2148 if (WORDS_BIG_ENDIAN)
2150 first = val2->v.val_double.high;
2151 second = val2->v.val_double.low;
2153 else
2155 first = val2->v.val_double.low;
2156 second = val2->v.val_double.high;
2158 dw2_asm_output_data (HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR,
2159 first, NULL);
2160 dw2_asm_output_data (HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR,
2161 second, NULL);
2163 break;
2164 case dw_val_class_wide_int:
2166 int i;
2167 int len = get_full_len (*val2->v.val_wide);
2168 if (WORDS_BIG_ENDIAN)
2169 for (i = len - 1; i >= 0; --i)
2170 dw2_asm_output_data (HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR,
2171 val2->v.val_wide->elt (i), NULL);
2172 else
2173 for (i = 0; i < len; ++i)
2174 dw2_asm_output_data (HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR,
2175 val2->v.val_wide->elt (i), NULL);
2177 break;
2178 case dw_val_class_addr:
2179 gcc_assert (val1->v.val_unsigned == DWARF2_ADDR_SIZE);
2180 dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE, val2->v.val_addr, NULL);
2181 break;
2182 default:
2183 gcc_unreachable ();
2185 break;
2186 #else
2187 case DW_OP_const2u:
2188 case DW_OP_const2s:
2189 case DW_OP_const4u:
2190 case DW_OP_const4s:
2191 case DW_OP_const8u:
2192 case DW_OP_const8s:
2193 case DW_OP_skip:
2194 case DW_OP_bra:
2195 case DW_OP_implicit_value:
2196 /* We currently don't make any attempt to make sure these are
2197 aligned properly like we do for the main unwind info, so
2198 don't support emitting things larger than a byte if we're
2199 only doing unwinding. */
2200 gcc_unreachable ();
2201 #endif
2202 case DW_OP_const1u:
2203 case DW_OP_const1s:
2204 dw2_asm_output_data (1, val1->v.val_int, NULL);
2205 break;
2206 case DW_OP_constu:
2207 dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
2208 break;
2209 case DW_OP_consts:
2210 dw2_asm_output_data_sleb128 (val1->v.val_int, NULL);
2211 break;
2212 case DW_OP_pick:
2213 dw2_asm_output_data (1, val1->v.val_int, NULL);
2214 break;
2215 case DW_OP_plus_uconst:
2216 dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
2217 break;
2218 case DW_OP_breg0:
2219 case DW_OP_breg1:
2220 case DW_OP_breg2:
2221 case DW_OP_breg3:
2222 case DW_OP_breg4:
2223 case DW_OP_breg5:
2224 case DW_OP_breg6:
2225 case DW_OP_breg7:
2226 case DW_OP_breg8:
2227 case DW_OP_breg9:
2228 case DW_OP_breg10:
2229 case DW_OP_breg11:
2230 case DW_OP_breg12:
2231 case DW_OP_breg13:
2232 case DW_OP_breg14:
2233 case DW_OP_breg15:
2234 case DW_OP_breg16:
2235 case DW_OP_breg17:
2236 case DW_OP_breg18:
2237 case DW_OP_breg19:
2238 case DW_OP_breg20:
2239 case DW_OP_breg21:
2240 case DW_OP_breg22:
2241 case DW_OP_breg23:
2242 case DW_OP_breg24:
2243 case DW_OP_breg25:
2244 case DW_OP_breg26:
2245 case DW_OP_breg27:
2246 case DW_OP_breg28:
2247 case DW_OP_breg29:
2248 case DW_OP_breg30:
2249 case DW_OP_breg31:
2250 dw2_asm_output_data_sleb128 (val1->v.val_int, NULL);
2251 break;
2252 case DW_OP_regx:
2254 unsigned r = val1->v.val_unsigned;
2255 if (for_eh_or_skip >= 0)
2256 r = DWARF2_FRAME_REG_OUT (r, for_eh_or_skip);
2257 gcc_assert (size_of_uleb128 (r)
2258 == size_of_uleb128 (val1->v.val_unsigned));
2259 dw2_asm_output_data_uleb128 (r, NULL);
2261 break;
2262 case DW_OP_fbreg:
2263 dw2_asm_output_data_sleb128 (val1->v.val_int, NULL);
2264 break;
2265 case DW_OP_bregx:
2267 unsigned r = val1->v.val_unsigned;
2268 if (for_eh_or_skip >= 0)
2269 r = DWARF2_FRAME_REG_OUT (r, for_eh_or_skip);
2270 gcc_assert (size_of_uleb128 (r)
2271 == size_of_uleb128 (val1->v.val_unsigned));
2272 dw2_asm_output_data_uleb128 (r, NULL);
2273 dw2_asm_output_data_sleb128 (val2->v.val_int, NULL);
2275 break;
2276 case DW_OP_piece:
2277 dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
2278 break;
2279 case DW_OP_bit_piece:
2280 dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
2281 dw2_asm_output_data_uleb128 (val2->v.val_unsigned, NULL);
2282 break;
2283 case DW_OP_deref_size:
2284 case DW_OP_xderef_size:
2285 dw2_asm_output_data (1, val1->v.val_int, NULL);
2286 break;
2288 case DW_OP_addr:
2289 if (loc->dtprel)
2291 if (targetm.asm_out.output_dwarf_dtprel)
2293 targetm.asm_out.output_dwarf_dtprel (asm_out_file,
2294 DWARF2_ADDR_SIZE,
2295 val1->v.val_addr);
2296 fputc ('\n', asm_out_file);
2298 else
2299 gcc_unreachable ();
2301 else
2303 #ifdef DWARF2_DEBUGGING_INFO
2304 dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE, val1->v.val_addr, NULL);
2305 #else
2306 gcc_unreachable ();
2307 #endif
2309 break;
2311 case DW_OP_GNU_addr_index:
2312 case DW_OP_addrx:
2313 case DW_OP_GNU_const_index:
2314 case DW_OP_constx:
2315 gcc_assert (loc->dw_loc_oprnd1.val_entry->index != NO_INDEX_ASSIGNED);
2316 dw2_asm_output_data_uleb128 (loc->dw_loc_oprnd1.val_entry->index,
2317 "(index into .debug_addr)");
2318 break;
2320 case DW_OP_call2:
2321 case DW_OP_call4:
2323 unsigned long die_offset
2324 = get_ref_die_offset (val1->v.val_die_ref.die);
2325 /* Make sure the offset has been computed and that we can encode it as
2326 an operand. */
2327 gcc_assert (die_offset > 0
2328 && die_offset <= (loc->dw_loc_opc == DW_OP_call2
2329 ? 0xffff
2330 : 0xffffffff));
2331 dw2_asm_output_data ((loc->dw_loc_opc == DW_OP_call2) ? 2 : 4,
2332 die_offset, NULL);
2334 break;
2336 case DW_OP_call_ref:
2337 case DW_OP_GNU_variable_value:
2339 char label[MAX_ARTIFICIAL_LABEL_BYTES
2340 + HOST_BITS_PER_WIDE_INT / 2 + 2];
2341 gcc_assert (val1->val_class == dw_val_class_die_ref);
2342 get_ref_die_offset_label (label, val1->v.val_die_ref.die);
2343 dw2_asm_output_offset (DWARF_REF_SIZE, label, debug_info_section, NULL);
2345 break;
2347 case DW_OP_implicit_pointer:
2348 case DW_OP_GNU_implicit_pointer:
2350 char label[MAX_ARTIFICIAL_LABEL_BYTES
2351 + HOST_BITS_PER_WIDE_INT / 2 + 2];
2352 gcc_assert (val1->val_class == dw_val_class_die_ref);
2353 get_ref_die_offset_label (label, val1->v.val_die_ref.die);
2354 dw2_asm_output_offset (DWARF_REF_SIZE, label, debug_info_section, NULL);
2355 dw2_asm_output_data_sleb128 (val2->v.val_int, NULL);
2357 break;
2359 case DW_OP_entry_value:
2360 case DW_OP_GNU_entry_value:
2361 dw2_asm_output_data_uleb128 (size_of_locs (val1->v.val_loc), NULL);
2362 output_loc_sequence (val1->v.val_loc, for_eh_or_skip);
2363 break;
2365 case DW_OP_const_type:
2366 case DW_OP_GNU_const_type:
2368 unsigned long o = get_base_type_offset (val1->v.val_die_ref.die), l;
2369 gcc_assert (o);
2370 dw2_asm_output_data_uleb128 (o, NULL);
2371 switch (val2->val_class)
2373 case dw_val_class_const:
2374 l = HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR;
2375 dw2_asm_output_data (1, l, NULL);
2376 dw2_asm_output_data (l, val2->v.val_int, NULL);
2377 break;
2378 case dw_val_class_vec:
2380 unsigned int elt_size = val2->v.val_vec.elt_size;
2381 unsigned int len = val2->v.val_vec.length;
2382 unsigned int i;
2383 unsigned char *p;
2385 l = len * elt_size;
2386 dw2_asm_output_data (1, l, NULL);
2387 if (elt_size > sizeof (HOST_WIDE_INT))
2389 elt_size /= 2;
2390 len *= 2;
2392 for (i = 0, p = (unsigned char *) val2->v.val_vec.array;
2393 i < len;
2394 i++, p += elt_size)
2395 dw2_asm_output_data (elt_size, extract_int (p, elt_size),
2396 "fp or vector constant word %u", i);
2398 break;
2399 case dw_val_class_const_double:
2401 unsigned HOST_WIDE_INT first, second;
2402 l = HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR;
2404 dw2_asm_output_data (1, 2 * l, NULL);
2405 if (WORDS_BIG_ENDIAN)
2407 first = val2->v.val_double.high;
2408 second = val2->v.val_double.low;
2410 else
2412 first = val2->v.val_double.low;
2413 second = val2->v.val_double.high;
2415 dw2_asm_output_data (l, first, NULL);
2416 dw2_asm_output_data (l, second, NULL);
2418 break;
2419 case dw_val_class_wide_int:
2421 int i;
2422 int len = get_full_len (*val2->v.val_wide);
2423 l = HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR;
2425 dw2_asm_output_data (1, len * l, NULL);
2426 if (WORDS_BIG_ENDIAN)
2427 for (i = len - 1; i >= 0; --i)
2428 dw2_asm_output_data (l, val2->v.val_wide->elt (i), NULL);
2429 else
2430 for (i = 0; i < len; ++i)
2431 dw2_asm_output_data (l, val2->v.val_wide->elt (i), NULL);
2433 break;
2434 default:
2435 gcc_unreachable ();
2438 break;
2439 case DW_OP_regval_type:
2440 case DW_OP_GNU_regval_type:
2442 unsigned r = val1->v.val_unsigned;
2443 unsigned long o = get_base_type_offset (val2->v.val_die_ref.die);
2444 gcc_assert (o);
2445 if (for_eh_or_skip >= 0)
2447 r = DWARF2_FRAME_REG_OUT (r, for_eh_or_skip);
2448 gcc_assert (size_of_uleb128 (r)
2449 == size_of_uleb128 (val1->v.val_unsigned));
2451 dw2_asm_output_data_uleb128 (r, NULL);
2452 dw2_asm_output_data_uleb128 (o, NULL);
2454 break;
2455 case DW_OP_deref_type:
2456 case DW_OP_GNU_deref_type:
2458 unsigned long o = get_base_type_offset (val2->v.val_die_ref.die);
2459 gcc_assert (o);
2460 dw2_asm_output_data (1, val1->v.val_int, NULL);
2461 dw2_asm_output_data_uleb128 (o, NULL);
2463 break;
2464 case DW_OP_convert:
2465 case DW_OP_reinterpret:
2466 case DW_OP_GNU_convert:
2467 case DW_OP_GNU_reinterpret:
2468 if (loc->dw_loc_oprnd1.val_class == dw_val_class_unsigned_const)
2469 dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
2470 else
2472 unsigned long o = get_base_type_offset (val1->v.val_die_ref.die);
2473 gcc_assert (o);
2474 dw2_asm_output_data_uleb128 (o, NULL);
2476 break;
2478 case DW_OP_GNU_parameter_ref:
2480 unsigned long o;
2481 gcc_assert (val1->val_class == dw_val_class_die_ref);
2482 o = get_ref_die_offset (val1->v.val_die_ref.die);
2483 dw2_asm_output_data (4, o, NULL);
2485 break;
2487 default:
2488 /* Other codes have no operands. */
2489 break;
2493 /* Output a sequence of location operations.
2494 The for_eh_or_skip parameter controls whether register numbers are
2495 converted using DWARF2_FRAME_REG_OUT, which is needed in the case that
2496 hard reg numbers have been processed via DWARF_FRAME_REGNUM (i.e. for unwind
2497 info). This should be suppressed for the cases that have not been converted
2498 (i.e. symbolic debug info), by setting the parameter < 0. See PR47324. */
2500 void
2501 output_loc_sequence (dw_loc_descr_ref loc, int for_eh_or_skip)
2503 for (; loc != NULL; loc = loc->dw_loc_next)
2505 enum dwarf_location_atom opc = loc->dw_loc_opc;
2506 /* Output the opcode. */
2507 if (for_eh_or_skip >= 0
2508 && opc >= DW_OP_breg0 && opc <= DW_OP_breg31)
2510 unsigned r = (opc - DW_OP_breg0);
2511 r = DWARF2_FRAME_REG_OUT (r, for_eh_or_skip);
2512 gcc_assert (r <= 31);
2513 opc = (enum dwarf_location_atom) (DW_OP_breg0 + r);
2515 else if (for_eh_or_skip >= 0
2516 && opc >= DW_OP_reg0 && opc <= DW_OP_reg31)
2518 unsigned r = (opc - DW_OP_reg0);
2519 r = DWARF2_FRAME_REG_OUT (r, for_eh_or_skip);
2520 gcc_assert (r <= 31);
2521 opc = (enum dwarf_location_atom) (DW_OP_reg0 + r);
2524 dw2_asm_output_data (1, opc,
2525 "%s", dwarf_stack_op_name (opc));
2527 /* Output the operand(s) (if any). */
2528 output_loc_operands (loc, for_eh_or_skip);
2532 /* Output location description stack opcode's operands (if any).
2533 The output is single bytes on a line, suitable for .cfi_escape. */
2535 static void
2536 output_loc_operands_raw (dw_loc_descr_ref loc)
2538 dw_val_ref val1 = &loc->dw_loc_oprnd1;
2539 dw_val_ref val2 = &loc->dw_loc_oprnd2;
2541 switch (loc->dw_loc_opc)
2543 case DW_OP_addr:
2544 case DW_OP_GNU_addr_index:
2545 case DW_OP_addrx:
2546 case DW_OP_GNU_const_index:
2547 case DW_OP_constx:
2548 case DW_OP_implicit_value:
2549 /* We cannot output addresses in .cfi_escape, only bytes. */
2550 gcc_unreachable ();
2552 case DW_OP_const1u:
2553 case DW_OP_const1s:
2554 case DW_OP_pick:
2555 case DW_OP_deref_size:
2556 case DW_OP_xderef_size:
2557 fputc (',', asm_out_file);
2558 dw2_asm_output_data_raw (1, val1->v.val_int);
2559 break;
2561 case DW_OP_const2u:
2562 case DW_OP_const2s:
2563 fputc (',', asm_out_file);
2564 dw2_asm_output_data_raw (2, val1->v.val_int);
2565 break;
2567 case DW_OP_const4u:
2568 case DW_OP_const4s:
2569 fputc (',', asm_out_file);
2570 dw2_asm_output_data_raw (4, val1->v.val_int);
2571 break;
2573 case DW_OP_const8u:
2574 case DW_OP_const8s:
2575 gcc_assert (HOST_BITS_PER_WIDE_INT >= 64);
2576 fputc (',', asm_out_file);
2577 dw2_asm_output_data_raw (8, val1->v.val_int);
2578 break;
2580 case DW_OP_skip:
2581 case DW_OP_bra:
2583 int offset;
2585 gcc_assert (val1->val_class == dw_val_class_loc);
2586 offset = val1->v.val_loc->dw_loc_addr - (loc->dw_loc_addr + 3);
2588 fputc (',', asm_out_file);
2589 dw2_asm_output_data_raw (2, offset);
2591 break;
2593 case DW_OP_regx:
2595 unsigned r = DWARF2_FRAME_REG_OUT (val1->v.val_unsigned, 1);
2596 gcc_assert (size_of_uleb128 (r)
2597 == size_of_uleb128 (val1->v.val_unsigned));
2598 fputc (',', asm_out_file);
2599 dw2_asm_output_data_uleb128_raw (r);
2601 break;
2603 case DW_OP_constu:
2604 case DW_OP_plus_uconst:
2605 case DW_OP_piece:
2606 fputc (',', asm_out_file);
2607 dw2_asm_output_data_uleb128_raw (val1->v.val_unsigned);
2608 break;
2610 case DW_OP_bit_piece:
2611 fputc (',', asm_out_file);
2612 dw2_asm_output_data_uleb128_raw (val1->v.val_unsigned);
2613 dw2_asm_output_data_uleb128_raw (val2->v.val_unsigned);
2614 break;
2616 case DW_OP_consts:
2617 case DW_OP_breg0:
2618 case DW_OP_breg1:
2619 case DW_OP_breg2:
2620 case DW_OP_breg3:
2621 case DW_OP_breg4:
2622 case DW_OP_breg5:
2623 case DW_OP_breg6:
2624 case DW_OP_breg7:
2625 case DW_OP_breg8:
2626 case DW_OP_breg9:
2627 case DW_OP_breg10:
2628 case DW_OP_breg11:
2629 case DW_OP_breg12:
2630 case DW_OP_breg13:
2631 case DW_OP_breg14:
2632 case DW_OP_breg15:
2633 case DW_OP_breg16:
2634 case DW_OP_breg17:
2635 case DW_OP_breg18:
2636 case DW_OP_breg19:
2637 case DW_OP_breg20:
2638 case DW_OP_breg21:
2639 case DW_OP_breg22:
2640 case DW_OP_breg23:
2641 case DW_OP_breg24:
2642 case DW_OP_breg25:
2643 case DW_OP_breg26:
2644 case DW_OP_breg27:
2645 case DW_OP_breg28:
2646 case DW_OP_breg29:
2647 case DW_OP_breg30:
2648 case DW_OP_breg31:
2649 case DW_OP_fbreg:
2650 fputc (',', asm_out_file);
2651 dw2_asm_output_data_sleb128_raw (val1->v.val_int);
2652 break;
2654 case DW_OP_bregx:
2656 unsigned r = DWARF2_FRAME_REG_OUT (val1->v.val_unsigned, 1);
2657 gcc_assert (size_of_uleb128 (r)
2658 == size_of_uleb128 (val1->v.val_unsigned));
2659 fputc (',', asm_out_file);
2660 dw2_asm_output_data_uleb128_raw (r);
2661 fputc (',', asm_out_file);
2662 dw2_asm_output_data_sleb128_raw (val2->v.val_int);
2664 break;
2666 case DW_OP_implicit_pointer:
2667 case DW_OP_entry_value:
2668 case DW_OP_const_type:
2669 case DW_OP_regval_type:
2670 case DW_OP_deref_type:
2671 case DW_OP_convert:
2672 case DW_OP_reinterpret:
2673 case DW_OP_GNU_implicit_pointer:
2674 case DW_OP_GNU_entry_value:
2675 case DW_OP_GNU_const_type:
2676 case DW_OP_GNU_regval_type:
2677 case DW_OP_GNU_deref_type:
2678 case DW_OP_GNU_convert:
2679 case DW_OP_GNU_reinterpret:
2680 case DW_OP_GNU_parameter_ref:
2681 gcc_unreachable ();
2682 break;
2684 default:
2685 /* Other codes have no operands. */
2686 break;
2690 void
2691 output_loc_sequence_raw (dw_loc_descr_ref loc)
2693 while (1)
2695 enum dwarf_location_atom opc = loc->dw_loc_opc;
2696 /* Output the opcode. */
2697 if (opc >= DW_OP_breg0 && opc <= DW_OP_breg31)
2699 unsigned r = (opc - DW_OP_breg0);
2700 r = DWARF2_FRAME_REG_OUT (r, 1);
2701 gcc_assert (r <= 31);
2702 opc = (enum dwarf_location_atom) (DW_OP_breg0 + r);
2704 else if (opc >= DW_OP_reg0 && opc <= DW_OP_reg31)
2706 unsigned r = (opc - DW_OP_reg0);
2707 r = DWARF2_FRAME_REG_OUT (r, 1);
2708 gcc_assert (r <= 31);
2709 opc = (enum dwarf_location_atom) (DW_OP_reg0 + r);
2711 /* Output the opcode. */
2712 fprintf (asm_out_file, "%#x", opc);
2713 output_loc_operands_raw (loc);
2715 if (!loc->dw_loc_next)
2716 break;
2717 loc = loc->dw_loc_next;
2719 fputc (',', asm_out_file);
2723 /* This function builds a dwarf location descriptor sequence from a
2724 dw_cfa_location, adding the given OFFSET to the result of the
2725 expression. */
2727 struct dw_loc_descr_node *
2728 build_cfa_loc (dw_cfa_location *cfa, poly_int64 offset)
2730 struct dw_loc_descr_node *head, *tmp;
2732 offset += cfa->offset;
2734 if (cfa->indirect)
2736 head = new_reg_loc_descr (cfa->reg, cfa->base_offset);
2737 head->dw_loc_oprnd1.val_class = dw_val_class_const;
2738 head->dw_loc_oprnd1.val_entry = NULL;
2739 tmp = new_loc_descr (DW_OP_deref, 0, 0);
2740 add_loc_descr (&head, tmp);
2741 loc_descr_plus_const (&head, offset);
2743 else
2744 head = new_reg_loc_descr (cfa->reg, offset);
2746 return head;
2749 /* This function builds a dwarf location descriptor sequence for
2750 the address at OFFSET from the CFA when stack is aligned to
2751 ALIGNMENT byte. */
2753 struct dw_loc_descr_node *
2754 build_cfa_aligned_loc (dw_cfa_location *cfa,
2755 poly_int64 offset, HOST_WIDE_INT alignment)
2757 struct dw_loc_descr_node *head;
2758 unsigned int dwarf_fp
2759 = DWARF_FRAME_REGNUM (HARD_FRAME_POINTER_REGNUM);
2761 /* When CFA is defined as FP+OFFSET, emulate stack alignment. */
2762 if (cfa->reg == HARD_FRAME_POINTER_REGNUM && cfa->indirect == 0)
2764 head = new_reg_loc_descr (dwarf_fp, 0);
2765 add_loc_descr (&head, int_loc_descriptor (alignment));
2766 add_loc_descr (&head, new_loc_descr (DW_OP_and, 0, 0));
2767 loc_descr_plus_const (&head, offset);
2769 else
2770 head = new_reg_loc_descr (dwarf_fp, offset);
2771 return head;
2774 /* And now, the support for symbolic debugging information. */
2776 /* .debug_str support. */
2778 static void dwarf2out_init (const char *);
2779 static void dwarf2out_finish (const char *);
2780 static void dwarf2out_early_finish (const char *);
2781 static void dwarf2out_assembly_start (void);
2782 static void dwarf2out_define (unsigned int, const char *);
2783 static void dwarf2out_undef (unsigned int, const char *);
2784 static void dwarf2out_start_source_file (unsigned, const char *);
2785 static void dwarf2out_end_source_file (unsigned);
2786 static void dwarf2out_function_decl (tree);
2787 static void dwarf2out_begin_block (unsigned, unsigned);
2788 static void dwarf2out_end_block (unsigned, unsigned);
2789 static bool dwarf2out_ignore_block (const_tree);
2790 static void dwarf2out_early_global_decl (tree);
2791 static void dwarf2out_late_global_decl (tree);
2792 static void dwarf2out_type_decl (tree, int);
2793 static void dwarf2out_imported_module_or_decl (tree, tree, tree, bool, bool);
2794 static void dwarf2out_imported_module_or_decl_1 (tree, tree, tree,
2795 dw_die_ref);
2796 static void dwarf2out_abstract_function (tree);
2797 static void dwarf2out_var_location (rtx_insn *);
2798 static void dwarf2out_inline_entry (tree);
2799 static void dwarf2out_size_function (tree);
2800 static void dwarf2out_begin_function (tree);
2801 static void dwarf2out_end_function (unsigned int);
2802 static void dwarf2out_register_main_translation_unit (tree unit);
2803 static void dwarf2out_set_name (tree, tree);
2804 static void dwarf2out_register_external_die (tree decl, const char *sym,
2805 unsigned HOST_WIDE_INT off);
2806 static bool dwarf2out_die_ref_for_decl (tree decl, const char **sym,
2807 unsigned HOST_WIDE_INT *off);
2809 /* The debug hooks structure. */
2811 const struct gcc_debug_hooks dwarf2_debug_hooks =
2813 dwarf2out_init,
2814 dwarf2out_finish,
2815 dwarf2out_early_finish,
2816 dwarf2out_assembly_start,
2817 dwarf2out_define,
2818 dwarf2out_undef,
2819 dwarf2out_start_source_file,
2820 dwarf2out_end_source_file,
2821 dwarf2out_begin_block,
2822 dwarf2out_end_block,
2823 dwarf2out_ignore_block,
2824 dwarf2out_source_line,
2825 dwarf2out_begin_prologue,
2826 #if VMS_DEBUGGING_INFO
2827 dwarf2out_vms_end_prologue,
2828 dwarf2out_vms_begin_epilogue,
2829 #else
2830 debug_nothing_int_charstar,
2831 debug_nothing_int_charstar,
2832 #endif
2833 dwarf2out_end_epilogue,
2834 dwarf2out_begin_function,
2835 dwarf2out_end_function, /* end_function */
2836 dwarf2out_register_main_translation_unit,
2837 dwarf2out_function_decl, /* function_decl */
2838 dwarf2out_early_global_decl,
2839 dwarf2out_late_global_decl,
2840 dwarf2out_type_decl, /* type_decl */
2841 dwarf2out_imported_module_or_decl,
2842 dwarf2out_die_ref_for_decl,
2843 dwarf2out_register_external_die,
2844 debug_nothing_tree, /* deferred_inline_function */
2845 /* The DWARF 2 backend tries to reduce debugging bloat by not
2846 emitting the abstract description of inline functions until
2847 something tries to reference them. */
2848 dwarf2out_abstract_function, /* outlining_inline_function */
2849 debug_nothing_rtx_code_label, /* label */
2850 debug_nothing_int, /* handle_pch */
2851 dwarf2out_var_location,
2852 dwarf2out_inline_entry, /* inline_entry */
2853 dwarf2out_size_function, /* size_function */
2854 dwarf2out_switch_text_section,
2855 dwarf2out_set_name,
2856 1, /* start_end_main_source_file */
2857 TYPE_SYMTAB_IS_DIE /* tree_type_symtab_field */
2860 const struct gcc_debug_hooks dwarf2_lineno_debug_hooks =
2862 dwarf2out_init,
2863 debug_nothing_charstar,
2864 debug_nothing_charstar,
2865 dwarf2out_assembly_start,
2866 debug_nothing_int_charstar,
2867 debug_nothing_int_charstar,
2868 debug_nothing_int_charstar,
2869 debug_nothing_int,
2870 debug_nothing_int_int, /* begin_block */
2871 debug_nothing_int_int, /* end_block */
2872 debug_true_const_tree, /* ignore_block */
2873 dwarf2out_source_line, /* source_line */
2874 debug_nothing_int_int_charstar, /* begin_prologue */
2875 debug_nothing_int_charstar, /* end_prologue */
2876 debug_nothing_int_charstar, /* begin_epilogue */
2877 debug_nothing_int_charstar, /* end_epilogue */
2878 debug_nothing_tree, /* begin_function */
2879 debug_nothing_int, /* end_function */
2880 debug_nothing_tree, /* register_main_translation_unit */
2881 debug_nothing_tree, /* function_decl */
2882 debug_nothing_tree, /* early_global_decl */
2883 debug_nothing_tree, /* late_global_decl */
2884 debug_nothing_tree_int, /* type_decl */
2885 debug_nothing_tree_tree_tree_bool_bool,/* imported_module_or_decl */
2886 debug_false_tree_charstarstar_uhwistar,/* die_ref_for_decl */
2887 debug_nothing_tree_charstar_uhwi, /* register_external_die */
2888 debug_nothing_tree, /* deferred_inline_function */
2889 debug_nothing_tree, /* outlining_inline_function */
2890 debug_nothing_rtx_code_label, /* label */
2891 debug_nothing_int, /* handle_pch */
2892 debug_nothing_rtx_insn, /* var_location */
2893 debug_nothing_tree, /* inline_entry */
2894 debug_nothing_tree, /* size_function */
2895 debug_nothing_void, /* switch_text_section */
2896 debug_nothing_tree_tree, /* set_name */
2897 0, /* start_end_main_source_file */
2898 TYPE_SYMTAB_IS_ADDRESS /* tree_type_symtab_field */
2901 /* NOTE: In the comments in this file, many references are made to
2902 "Debugging Information Entries". This term is abbreviated as `DIE'
2903 throughout the remainder of this file. */
2905 /* An internal representation of the DWARF output is built, and then
2906 walked to generate the DWARF debugging info. The walk of the internal
2907 representation is done after the entire program has been compiled.
2908 The types below are used to describe the internal representation. */
2910 /* Whether to put type DIEs into their own section .debug_types instead
2911 of making them part of the .debug_info section. Only supported for
2912 Dwarf V4 or higher and the user didn't disable them through
2913 -fno-debug-types-section. It is more efficient to put them in a
2914 separate comdat sections since the linker will then be able to
2915 remove duplicates. But not all tools support .debug_types sections
2916 yet. For Dwarf V5 or higher .debug_types doesn't exist any more,
2917 it is DW_UT_type unit type in .debug_info section. For late LTO
2918 debug there should be almost no types emitted so avoid enabling
2919 -fdebug-types-section there. */
2921 #define use_debug_types (dwarf_version >= 4 \
2922 && flag_debug_types_section \
2923 && !in_lto_p)
2925 /* Various DIE's use offsets relative to the beginning of the
2926 .debug_info section to refer to each other. */
2928 typedef long int dw_offset;
2930 struct comdat_type_node;
2932 /* The entries in the line_info table more-or-less mirror the opcodes
2933 that are used in the real dwarf line table. Arrays of these entries
2934 are collected per section when DWARF2_ASM_LINE_DEBUG_INFO is not
2935 supported. */
2937 enum dw_line_info_opcode {
2938 /* Emit DW_LNE_set_address; the operand is the label index. */
2939 LI_set_address,
2941 /* Emit a row to the matrix with the given line. This may be done
2942 via any combination of DW_LNS_copy, DW_LNS_advance_line, and
2943 special opcodes. */
2944 LI_set_line,
2946 /* Emit a DW_LNS_set_file. */
2947 LI_set_file,
2949 /* Emit a DW_LNS_set_column. */
2950 LI_set_column,
2952 /* Emit a DW_LNS_negate_stmt; the operand is ignored. */
2953 LI_negate_stmt,
2955 /* Emit a DW_LNS_set_prologue_end/epilogue_begin; the operand is ignored. */
2956 LI_set_prologue_end,
2957 LI_set_epilogue_begin,
2959 /* Emit a DW_LNE_set_discriminator. */
2960 LI_set_discriminator,
2962 /* Output a Fixed Advance PC; the target PC is the label index; the
2963 base PC is the previous LI_adv_address or LI_set_address entry.
2964 We only use this when emitting debug views without assembler
2965 support, at explicit user request. Ideally, we should only use
2966 it when the offset might be zero but we can't tell: it's the only
2967 way to maybe change the PC without resetting the view number. */
2968 LI_adv_address
2971 typedef struct GTY(()) dw_line_info_struct {
2972 enum dw_line_info_opcode opcode;
2973 unsigned int val;
2974 } dw_line_info_entry;
2977 struct GTY(()) dw_line_info_table {
2978 /* The label that marks the end of this section. */
2979 const char *end_label;
2981 /* The values for the last row of the matrix, as collected in the table.
2982 These are used to minimize the changes to the next row. */
2983 unsigned int file_num;
2984 unsigned int line_num;
2985 unsigned int column_num;
2986 int discrim_num;
2987 bool is_stmt;
2988 bool in_use;
2990 /* This denotes the NEXT view number.
2992 If it is 0, it is known that the NEXT view will be the first view
2993 at the given PC.
2995 If it is -1, we're forcing the view number to be reset, e.g. at a
2996 function entry.
2998 The meaning of other nonzero values depends on whether we're
2999 computing views internally or leaving it for the assembler to do
3000 so. If we're emitting them internally, view denotes the view
3001 number since the last known advance of PC. If we're leaving it
3002 for the assembler, it denotes the LVU label number that we're
3003 going to ask the assembler to assign. */
3004 var_loc_view view;
3006 /* This counts the number of symbolic views emitted in this table
3007 since the latest view reset. Its max value, over all tables,
3008 sets symview_upper_bound. */
3009 var_loc_view symviews_since_reset;
3011 #define FORCE_RESET_NEXT_VIEW(x) ((x) = (var_loc_view)-1)
3012 #define RESET_NEXT_VIEW(x) ((x) = (var_loc_view)0)
3013 #define FORCE_RESETTING_VIEW_P(x) ((x) == (var_loc_view)-1)
3014 #define RESETTING_VIEW_P(x) ((x) == (var_loc_view)0 || FORCE_RESETTING_VIEW_P (x))
3016 vec<dw_line_info_entry, va_gc> *entries;
3019 /* This is an upper bound for view numbers that the assembler may
3020 assign to symbolic views output in this translation. It is used to
3021 decide how big a field to use to represent view numbers in
3022 symview-classed attributes. */
3024 static var_loc_view symview_upper_bound;
3026 /* If we're keep track of location views and their reset points, and
3027 INSN is a reset point (i.e., it necessarily advances the PC), mark
3028 the next view in TABLE as reset. */
3030 static void
3031 maybe_reset_location_view (rtx_insn *insn, dw_line_info_table *table)
3033 if (!debug_internal_reset_location_views)
3034 return;
3036 /* Maybe turn (part of?) this test into a default target hook. */
3037 int reset = 0;
3039 if (targetm.reset_location_view)
3040 reset = targetm.reset_location_view (insn);
3042 if (reset)
3044 else if (JUMP_TABLE_DATA_P (insn))
3045 reset = 1;
3046 else if (GET_CODE (insn) == USE
3047 || GET_CODE (insn) == CLOBBER
3048 || GET_CODE (insn) == ASM_INPUT
3049 || asm_noperands (insn) >= 0)
3051 else if (get_attr_min_length (insn) > 0)
3052 reset = 1;
3054 if (reset > 0 && !RESETTING_VIEW_P (table->view))
3055 RESET_NEXT_VIEW (table->view);
3058 /* Each DIE attribute has a field specifying the attribute kind,
3059 a link to the next attribute in the chain, and an attribute value.
3060 Attributes are typically linked below the DIE they modify. */
3062 typedef struct GTY(()) dw_attr_struct {
3063 enum dwarf_attribute dw_attr;
3064 dw_val_node dw_attr_val;
3066 dw_attr_node;
3069 /* The Debugging Information Entry (DIE) structure. DIEs form a tree.
3070 The children of each node form a circular list linked by
3071 die_sib. die_child points to the node *before* the "first" child node. */
3073 typedef struct GTY((chain_circular ("%h.die_sib"), for_user)) die_struct {
3074 union die_symbol_or_type_node
3076 const char * GTY ((tag ("0"))) die_symbol;
3077 comdat_type_node *GTY ((tag ("1"))) die_type_node;
3079 GTY ((desc ("%0.comdat_type_p"))) die_id;
3080 vec<dw_attr_node, va_gc> *die_attr;
3081 dw_die_ref die_parent;
3082 dw_die_ref die_child;
3083 dw_die_ref die_sib;
3084 dw_die_ref die_definition; /* ref from a specification to its definition */
3085 dw_offset die_offset;
3086 unsigned long die_abbrev;
3087 int die_mark;
3088 unsigned int decl_id;
3089 enum dwarf_tag die_tag;
3090 /* Die is used and must not be pruned as unused. */
3091 BOOL_BITFIELD die_perennial_p : 1;
3092 BOOL_BITFIELD comdat_type_p : 1; /* DIE has a type signature */
3093 /* For an external ref to die_symbol if die_offset contains an extra
3094 offset to that symbol. */
3095 BOOL_BITFIELD with_offset : 1;
3096 /* Whether this DIE was removed from the DIE tree, for example via
3097 prune_unused_types. We don't consider those present from the
3098 DIE lookup routines. */
3099 BOOL_BITFIELD removed : 1;
3100 /* Lots of spare bits. */
3102 die_node;
3104 /* Set to TRUE while dwarf2out_early_global_decl is running. */
3105 static bool early_dwarf;
3106 static bool early_dwarf_finished;
3107 struct set_early_dwarf {
3108 bool saved;
3109 set_early_dwarf () : saved(early_dwarf)
3111 gcc_assert (! early_dwarf_finished);
3112 early_dwarf = true;
3114 ~set_early_dwarf () { early_dwarf = saved; }
3117 /* Evaluate 'expr' while 'c' is set to each child of DIE in order. */
3118 #define FOR_EACH_CHILD(die, c, expr) do { \
3119 c = die->die_child; \
3120 if (c) do { \
3121 c = c->die_sib; \
3122 expr; \
3123 } while (c != die->die_child); \
3124 } while (0)
3126 /* The pubname structure */
3128 typedef struct GTY(()) pubname_struct {
3129 dw_die_ref die;
3130 const char *name;
3132 pubname_entry;
3135 struct GTY(()) dw_ranges {
3136 const char *label;
3137 /* If this is positive, it's a block number, otherwise it's a
3138 bitwise-negated index into dw_ranges_by_label. */
3139 int num;
3140 /* Index for the range list for DW_FORM_rnglistx. */
3141 unsigned int idx : 31;
3142 /* True if this range might be possibly in a different section
3143 from previous entry. */
3144 unsigned int maybe_new_sec : 1;
3147 /* A structure to hold a macinfo entry. */
3149 typedef struct GTY(()) macinfo_struct {
3150 unsigned char code;
3151 unsigned HOST_WIDE_INT lineno;
3152 const char *info;
3154 macinfo_entry;
3157 struct GTY(()) dw_ranges_by_label {
3158 const char *begin;
3159 const char *end;
3162 /* The comdat type node structure. */
3163 struct GTY(()) comdat_type_node
3165 dw_die_ref root_die;
3166 dw_die_ref type_die;
3167 dw_die_ref skeleton_die;
3168 char signature[DWARF_TYPE_SIGNATURE_SIZE];
3169 comdat_type_node *next;
3172 /* A list of DIEs for which we can't determine ancestry (parent_die
3173 field) just yet. Later in dwarf2out_finish we will fill in the
3174 missing bits. */
3175 typedef struct GTY(()) limbo_die_struct {
3176 dw_die_ref die;
3177 /* The tree for which this DIE was created. We use this to
3178 determine ancestry later. */
3179 tree created_for;
3180 struct limbo_die_struct *next;
3182 limbo_die_node;
3184 typedef struct skeleton_chain_struct
3186 dw_die_ref old_die;
3187 dw_die_ref new_die;
3188 struct skeleton_chain_struct *parent;
3190 skeleton_chain_node;
3192 /* Define a macro which returns nonzero for a TYPE_DECL which was
3193 implicitly generated for a type.
3195 Note that, unlike the C front-end (which generates a NULL named
3196 TYPE_DECL node for each complete tagged type, each array type,
3197 and each function type node created) the C++ front-end generates
3198 a _named_ TYPE_DECL node for each tagged type node created.
3199 These TYPE_DECLs have DECL_ARTIFICIAL set, so we know not to
3200 generate a DW_TAG_typedef DIE for them. Likewise with the Ada
3201 front-end, but for each type, tagged or not. */
3203 #define TYPE_DECL_IS_STUB(decl) \
3204 (DECL_NAME (decl) == NULL_TREE \
3205 || (DECL_ARTIFICIAL (decl) \
3206 && ((decl == TYPE_STUB_DECL (TREE_TYPE (decl))) \
3207 /* This is necessary for stub decls that \
3208 appear in nested inline functions. */ \
3209 || (DECL_ABSTRACT_ORIGIN (decl) != NULL_TREE \
3210 && (decl_ultimate_origin (decl) \
3211 == TYPE_STUB_DECL (TREE_TYPE (decl)))))))
3213 /* Information concerning the compilation unit's programming
3214 language, and compiler version. */
3216 /* Fixed size portion of the DWARF compilation unit header. */
3217 #define DWARF_COMPILE_UNIT_HEADER_SIZE \
3218 (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE \
3219 + (dwarf_version >= 5 ? 4 : 3))
3221 /* Fixed size portion of the DWARF comdat type unit header. */
3222 #define DWARF_COMDAT_TYPE_UNIT_HEADER_SIZE \
3223 (DWARF_COMPILE_UNIT_HEADER_SIZE \
3224 + DWARF_TYPE_SIGNATURE_SIZE + DWARF_OFFSET_SIZE)
3226 /* Fixed size portion of the DWARF skeleton compilation unit header. */
3227 #define DWARF_COMPILE_UNIT_SKELETON_HEADER_SIZE \
3228 (DWARF_COMPILE_UNIT_HEADER_SIZE + (dwarf_version >= 5 ? 8 : 0))
3230 /* Fixed size portion of public names info. */
3231 #define DWARF_PUBNAMES_HEADER_SIZE (2 * DWARF_OFFSET_SIZE + 2)
3233 /* Fixed size portion of the address range info. */
3234 #define DWARF_ARANGES_HEADER_SIZE \
3235 (DWARF_ROUND (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 4, \
3236 DWARF2_ADDR_SIZE * 2) \
3237 - DWARF_INITIAL_LENGTH_SIZE)
3239 /* Size of padding portion in the address range info. It must be
3240 aligned to twice the pointer size. */
3241 #define DWARF_ARANGES_PAD_SIZE \
3242 (DWARF_ROUND (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 4, \
3243 DWARF2_ADDR_SIZE * 2) \
3244 - (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 4))
3246 /* Use assembler line directives if available. */
3247 #ifndef DWARF2_ASM_LINE_DEBUG_INFO
3248 #ifdef HAVE_AS_DWARF2_DEBUG_LINE
3249 #define DWARF2_ASM_LINE_DEBUG_INFO 1
3250 #else
3251 #define DWARF2_ASM_LINE_DEBUG_INFO 0
3252 #endif
3253 #endif
3255 /* Use assembler views in line directives if available. */
3256 #ifndef DWARF2_ASM_VIEW_DEBUG_INFO
3257 #ifdef HAVE_AS_DWARF2_DEBUG_VIEW
3258 #define DWARF2_ASM_VIEW_DEBUG_INFO 1
3259 #else
3260 #define DWARF2_ASM_VIEW_DEBUG_INFO 0
3261 #endif
3262 #endif
3264 /* Return true if GCC configure detected assembler support for .loc. */
3266 bool
3267 dwarf2out_default_as_loc_support (void)
3269 return DWARF2_ASM_LINE_DEBUG_INFO;
3270 #if (GCC_VERSION >= 3000)
3271 # undef DWARF2_ASM_LINE_DEBUG_INFO
3272 # pragma GCC poison DWARF2_ASM_LINE_DEBUG_INFO
3273 #endif
3276 /* Return true if GCC configure detected assembler support for views
3277 in .loc directives. */
3279 bool
3280 dwarf2out_default_as_locview_support (void)
3282 return DWARF2_ASM_VIEW_DEBUG_INFO;
3283 #if (GCC_VERSION >= 3000)
3284 # undef DWARF2_ASM_VIEW_DEBUG_INFO
3285 # pragma GCC poison DWARF2_ASM_VIEW_DEBUG_INFO
3286 #endif
3289 /* A bit is set in ZERO_VIEW_P if we are using the assembler-supported
3290 view computation, and it refers to a view identifier for which we
3291 will not emit a label because it is known to map to a view number
3292 zero. We won't allocate the bitmap if we're not using assembler
3293 support for location views, but we have to make the variable
3294 visible for GGC and for code that will be optimized out for lack of
3295 support but that's still parsed and compiled. We could abstract it
3296 out with macros, but it's not worth it. */
3297 static GTY(()) bitmap zero_view_p;
3299 /* Evaluate to TRUE iff N is known to identify the first location view
3300 at its PC. When not using assembler location view computation,
3301 that must be view number zero. Otherwise, ZERO_VIEW_P is allocated
3302 and views label numbers recorded in it are the ones known to be
3303 zero. */
3304 #define ZERO_VIEW_P(N) ((N) == (var_loc_view)0 \
3305 || (N) == (var_loc_view)-1 \
3306 || (zero_view_p \
3307 && bitmap_bit_p (zero_view_p, (N))))
3309 /* Return true iff we're to emit .loc directives for the assembler to
3310 generate line number sections.
3312 When we're not emitting views, all we need from the assembler is
3313 support for .loc directives.
3315 If we are emitting views, we can only use the assembler's .loc
3316 support if it also supports views.
3318 When the compiler is emitting the line number programs and
3319 computing view numbers itself, it resets view numbers at known PC
3320 changes and counts from that, and then it emits view numbers as
3321 literal constants in locviewlists. There are cases in which the
3322 compiler is not sure about PC changes, e.g. when extra alignment is
3323 requested for a label. In these cases, the compiler may not reset
3324 the view counter, and the potential PC advance in the line number
3325 program will use an opcode that does not reset the view counter
3326 even if the PC actually changes, so that compiler and debug info
3327 consumer can keep view numbers in sync.
3329 When the compiler defers view computation to the assembler, it
3330 emits symbolic view numbers in locviewlists, with the exception of
3331 views known to be zero (forced resets, or reset after
3332 compiler-visible PC changes): instead of emitting symbols for
3333 these, we emit literal zero and assert the assembler agrees with
3334 the compiler's assessment. We could use symbolic views everywhere,
3335 instead of special-casing zero views, but then we'd be unable to
3336 optimize out locviewlists that contain only zeros. */
3338 static bool
3339 output_asm_line_debug_info (void)
3341 return (dwarf2out_as_loc_support
3342 && (dwarf2out_as_locview_support
3343 || !debug_variable_location_views));
3346 /* Minimum line offset in a special line info. opcode.
3347 This value was chosen to give a reasonable range of values. */
3348 #define DWARF_LINE_BASE -10
3350 /* First special line opcode - leave room for the standard opcodes. */
3351 #define DWARF_LINE_OPCODE_BASE ((int)DW_LNS_set_isa + 1)
3353 /* Range of line offsets in a special line info. opcode. */
3354 #define DWARF_LINE_RANGE (254-DWARF_LINE_OPCODE_BASE+1)
3356 /* Flag that indicates the initial value of the is_stmt_start flag.
3357 In the present implementation, we do not mark any lines as
3358 the beginning of a source statement, because that information
3359 is not made available by the GCC front-end. */
3360 #define DWARF_LINE_DEFAULT_IS_STMT_START 1
3362 /* Maximum number of operations per instruction bundle. */
3363 #ifndef DWARF_LINE_DEFAULT_MAX_OPS_PER_INSN
3364 #define DWARF_LINE_DEFAULT_MAX_OPS_PER_INSN 1
3365 #endif
3367 /* This location is used by calc_die_sizes() to keep track
3368 the offset of each DIE within the .debug_info section. */
3369 static unsigned long next_die_offset;
3371 /* Record the root of the DIE's built for the current compilation unit. */
3372 static GTY(()) dw_die_ref single_comp_unit_die;
3374 /* A list of type DIEs that have been separated into comdat sections. */
3375 static GTY(()) comdat_type_node *comdat_type_list;
3377 /* A list of CU DIEs that have been separated. */
3378 static GTY(()) limbo_die_node *cu_die_list;
3380 /* A list of DIEs with a NULL parent waiting to be relocated. */
3381 static GTY(()) limbo_die_node *limbo_die_list;
3383 /* A list of DIEs for which we may have to generate
3384 DW_AT_{,MIPS_}linkage_name once their DECL_ASSEMBLER_NAMEs are set. */
3385 static GTY(()) limbo_die_node *deferred_asm_name;
3387 struct dwarf_file_hasher : ggc_ptr_hash<dwarf_file_data>
3389 typedef const char *compare_type;
3391 static hashval_t hash (dwarf_file_data *);
3392 static bool equal (dwarf_file_data *, const char *);
3395 /* Filenames referenced by this compilation unit. */
3396 static GTY(()) hash_table<dwarf_file_hasher> *file_table;
3398 struct decl_die_hasher : ggc_ptr_hash<die_node>
3400 typedef tree compare_type;
3402 static hashval_t hash (die_node *);
3403 static bool equal (die_node *, tree);
3405 /* A hash table of references to DIE's that describe declarations.
3406 The key is a DECL_UID() which is a unique number identifying each decl. */
3407 static GTY (()) hash_table<decl_die_hasher> *decl_die_table;
3409 struct GTY ((for_user)) variable_value_struct {
3410 unsigned int decl_id;
3411 vec<dw_die_ref, va_gc> *dies;
3414 struct variable_value_hasher : ggc_ptr_hash<variable_value_struct>
3416 typedef tree compare_type;
3418 static hashval_t hash (variable_value_struct *);
3419 static bool equal (variable_value_struct *, tree);
3421 /* A hash table of DIEs that contain DW_OP_GNU_variable_value with
3422 dw_val_class_decl_ref class, indexed by FUNCTION_DECLs which is
3423 DECL_CONTEXT of the referenced VAR_DECLs. */
3424 static GTY (()) hash_table<variable_value_hasher> *variable_value_hash;
3426 struct block_die_hasher : ggc_ptr_hash<die_struct>
3428 static hashval_t hash (die_struct *);
3429 static bool equal (die_struct *, die_struct *);
3432 /* A hash table of references to DIE's that describe COMMON blocks.
3433 The key is DECL_UID() ^ die_parent. */
3434 static GTY (()) hash_table<block_die_hasher> *common_block_die_table;
3436 typedef struct GTY(()) die_arg_entry_struct {
3437 dw_die_ref die;
3438 tree arg;
3439 } die_arg_entry;
3442 /* Node of the variable location list. */
3443 struct GTY ((chain_next ("%h.next"))) var_loc_node {
3444 /* Either NOTE_INSN_VAR_LOCATION, or, for SRA optimized variables,
3445 EXPR_LIST chain. For small bitsizes, bitsize is encoded
3446 in mode of the EXPR_LIST node and first EXPR_LIST operand
3447 is either NOTE_INSN_VAR_LOCATION for a piece with a known
3448 location or NULL for padding. For larger bitsizes,
3449 mode is 0 and first operand is a CONCAT with bitsize
3450 as first CONCAT operand and NOTE_INSN_VAR_LOCATION resp.
3451 NULL as second operand. */
3452 rtx GTY (()) loc;
3453 const char * GTY (()) label;
3454 struct var_loc_node * GTY (()) next;
3455 var_loc_view view;
3458 /* Variable location list. */
3459 struct GTY ((for_user)) var_loc_list_def {
3460 struct var_loc_node * GTY (()) first;
3462 /* Pointer to the last but one or last element of the
3463 chained list. If the list is empty, both first and
3464 last are NULL, if the list contains just one node
3465 or the last node certainly is not redundant, it points
3466 to the last node, otherwise points to the last but one.
3467 Do not mark it for GC because it is marked through the chain. */
3468 struct var_loc_node * GTY ((skip ("%h"))) last;
3470 /* Pointer to the last element before section switch,
3471 if NULL, either sections weren't switched or first
3472 is after section switch. */
3473 struct var_loc_node * GTY ((skip ("%h"))) last_before_switch;
3475 /* DECL_UID of the variable decl. */
3476 unsigned int decl_id;
3478 typedef struct var_loc_list_def var_loc_list;
3480 /* Call argument location list. */
3481 struct GTY ((chain_next ("%h.next"))) call_arg_loc_node {
3482 rtx GTY (()) call_arg_loc_note;
3483 const char * GTY (()) label;
3484 tree GTY (()) block;
3485 bool tail_call_p;
3486 rtx GTY (()) symbol_ref;
3487 struct call_arg_loc_node * GTY (()) next;
3491 struct decl_loc_hasher : ggc_ptr_hash<var_loc_list>
3493 typedef const_tree compare_type;
3495 static hashval_t hash (var_loc_list *);
3496 static bool equal (var_loc_list *, const_tree);
3499 /* Table of decl location linked lists. */
3500 static GTY (()) hash_table<decl_loc_hasher> *decl_loc_table;
3502 /* Head and tail of call_arg_loc chain. */
3503 static GTY (()) struct call_arg_loc_node *call_arg_locations;
3504 static struct call_arg_loc_node *call_arg_loc_last;
3506 /* Number of call sites in the current function. */
3507 static int call_site_count = -1;
3508 /* Number of tail call sites in the current function. */
3509 static int tail_call_site_count = -1;
3511 /* A cached location list. */
3512 struct GTY ((for_user)) cached_dw_loc_list_def {
3513 /* The DECL_UID of the decl that this entry describes. */
3514 unsigned int decl_id;
3516 /* The cached location list. */
3517 dw_loc_list_ref loc_list;
3519 typedef struct cached_dw_loc_list_def cached_dw_loc_list;
3521 struct dw_loc_list_hasher : ggc_ptr_hash<cached_dw_loc_list>
3524 typedef const_tree compare_type;
3526 static hashval_t hash (cached_dw_loc_list *);
3527 static bool equal (cached_dw_loc_list *, const_tree);
3530 /* Table of cached location lists. */
3531 static GTY (()) hash_table<dw_loc_list_hasher> *cached_dw_loc_list_table;
3533 /* A vector of references to DIE's that are uniquely identified by their tag,
3534 presence/absence of children DIE's, and list of attribute/value pairs. */
3535 static GTY(()) vec<dw_die_ref, va_gc> *abbrev_die_table;
3537 /* A hash map to remember the stack usage for DWARF procedures. The value
3538 stored is the stack size difference between before the DWARF procedure
3539 invokation and after it returned. In other words, for a DWARF procedure
3540 that consumes N stack slots and that pushes M ones, this stores M - N. */
3541 static hash_map<dw_die_ref, int> *dwarf_proc_stack_usage_map;
3543 /* A global counter for generating labels for line number data. */
3544 static unsigned int line_info_label_num;
3546 /* The current table to which we should emit line number information
3547 for the current function. This will be set up at the beginning of
3548 assembly for the function. */
3549 static GTY(()) dw_line_info_table *cur_line_info_table;
3551 /* The two default tables of line number info. */
3552 static GTY(()) dw_line_info_table *text_section_line_info;
3553 static GTY(()) dw_line_info_table *cold_text_section_line_info;
3555 /* The set of all non-default tables of line number info. */
3556 static GTY(()) vec<dw_line_info_table *, va_gc> *separate_line_info;
3558 /* A flag to tell pubnames/types export if there is an info section to
3559 refer to. */
3560 static bool info_section_emitted;
3562 /* A pointer to the base of a table that contains a list of publicly
3563 accessible names. */
3564 static GTY (()) vec<pubname_entry, va_gc> *pubname_table;
3566 /* A pointer to the base of a table that contains a list of publicly
3567 accessible types. */
3568 static GTY (()) vec<pubname_entry, va_gc> *pubtype_table;
3570 /* A pointer to the base of a table that contains a list of macro
3571 defines/undefines (and file start/end markers). */
3572 static GTY (()) vec<macinfo_entry, va_gc> *macinfo_table;
3574 /* True if .debug_macinfo or .debug_macros section is going to be
3575 emitted. */
3576 #define have_macinfo \
3577 ((!XCOFF_DEBUGGING_INFO || HAVE_XCOFF_DWARF_EXTRAS) \
3578 && debug_info_level >= DINFO_LEVEL_VERBOSE \
3579 && !macinfo_table->is_empty ())
3581 /* Vector of dies for which we should generate .debug_ranges info. */
3582 static GTY (()) vec<dw_ranges, va_gc> *ranges_table;
3584 /* Vector of pairs of labels referenced in ranges_table. */
3585 static GTY (()) vec<dw_ranges_by_label, va_gc> *ranges_by_label;
3587 /* Whether we have location lists that need outputting */
3588 static GTY(()) bool have_location_lists;
3590 /* Unique label counter. */
3591 static GTY(()) unsigned int loclabel_num;
3593 /* Unique label counter for point-of-call tables. */
3594 static GTY(()) unsigned int poc_label_num;
3596 /* The last file entry emitted by maybe_emit_file(). */
3597 static GTY(()) struct dwarf_file_data * last_emitted_file;
3599 /* Number of internal labels generated by gen_internal_sym(). */
3600 static GTY(()) int label_num;
3602 static GTY(()) vec<die_arg_entry, va_gc> *tmpl_value_parm_die_table;
3604 /* Instances of generic types for which we need to generate debug
3605 info that describe their generic parameters and arguments. That
3606 generation needs to happen once all types are properly laid out so
3607 we do it at the end of compilation. */
3608 static GTY(()) vec<tree, va_gc> *generic_type_instances;
3610 /* Offset from the "steady-state frame pointer" to the frame base,
3611 within the current function. */
3612 static poly_int64 frame_pointer_fb_offset;
3613 static bool frame_pointer_fb_offset_valid;
3615 static vec<dw_die_ref> base_types;
3617 /* Flags to represent a set of attribute classes for attributes that represent
3618 a scalar value (bounds, pointers, ...). */
3619 enum dw_scalar_form
3621 dw_scalar_form_constant = 0x01,
3622 dw_scalar_form_exprloc = 0x02,
3623 dw_scalar_form_reference = 0x04
3626 /* Forward declarations for functions defined in this file. */
3628 static int is_pseudo_reg (const_rtx);
3629 static tree type_main_variant (tree);
3630 static int is_tagged_type (const_tree);
3631 static const char *dwarf_tag_name (unsigned);
3632 static const char *dwarf_attr_name (unsigned);
3633 static const char *dwarf_form_name (unsigned);
3634 static tree decl_ultimate_origin (const_tree);
3635 static tree decl_class_context (tree);
3636 static void add_dwarf_attr (dw_die_ref, dw_attr_node *);
3637 static inline enum dw_val_class AT_class (dw_attr_node *);
3638 static inline unsigned int AT_index (dw_attr_node *);
3639 static void add_AT_flag (dw_die_ref, enum dwarf_attribute, unsigned);
3640 static inline unsigned AT_flag (dw_attr_node *);
3641 static void add_AT_int (dw_die_ref, enum dwarf_attribute, HOST_WIDE_INT);
3642 static inline HOST_WIDE_INT AT_int (dw_attr_node *);
3643 static void add_AT_unsigned (dw_die_ref, enum dwarf_attribute, unsigned HOST_WIDE_INT);
3644 static inline unsigned HOST_WIDE_INT AT_unsigned (dw_attr_node *);
3645 static void add_AT_double (dw_die_ref, enum dwarf_attribute,
3646 HOST_WIDE_INT, unsigned HOST_WIDE_INT);
3647 static inline void add_AT_vec (dw_die_ref, enum dwarf_attribute, unsigned int,
3648 unsigned int, unsigned char *);
3649 static void add_AT_data8 (dw_die_ref, enum dwarf_attribute, unsigned char *);
3650 static void add_AT_string (dw_die_ref, enum dwarf_attribute, const char *);
3651 static inline const char *AT_string (dw_attr_node *);
3652 static enum dwarf_form AT_string_form (dw_attr_node *);
3653 static void add_AT_die_ref (dw_die_ref, enum dwarf_attribute, dw_die_ref);
3654 static void add_AT_specification (dw_die_ref, dw_die_ref);
3655 static inline dw_die_ref AT_ref (dw_attr_node *);
3656 static inline int AT_ref_external (dw_attr_node *);
3657 static inline void set_AT_ref_external (dw_attr_node *, int);
3658 static void add_AT_loc (dw_die_ref, enum dwarf_attribute, dw_loc_descr_ref);
3659 static inline dw_loc_descr_ref AT_loc (dw_attr_node *);
3660 static void add_AT_loc_list (dw_die_ref, enum dwarf_attribute,
3661 dw_loc_list_ref);
3662 static inline dw_loc_list_ref AT_loc_list (dw_attr_node *);
3663 static void add_AT_view_list (dw_die_ref, enum dwarf_attribute);
3664 static inline dw_loc_list_ref AT_loc_list (dw_attr_node *);
3665 static addr_table_entry *add_addr_table_entry (void *, enum ate_kind);
3666 static void remove_addr_table_entry (addr_table_entry *);
3667 static void add_AT_addr (dw_die_ref, enum dwarf_attribute, rtx, bool);
3668 static inline rtx AT_addr (dw_attr_node *);
3669 static void add_AT_symview (dw_die_ref, enum dwarf_attribute, const char *);
3670 static void add_AT_lbl_id (dw_die_ref, enum dwarf_attribute, const char *);
3671 static void add_AT_lineptr (dw_die_ref, enum dwarf_attribute, const char *);
3672 static void add_AT_macptr (dw_die_ref, enum dwarf_attribute, const char *);
3673 static void add_AT_range_list (dw_die_ref, enum dwarf_attribute,
3674 unsigned long, bool);
3675 static inline const char *AT_lbl (dw_attr_node *);
3676 static dw_attr_node *get_AT (dw_die_ref, enum dwarf_attribute);
3677 static const char *get_AT_low_pc (dw_die_ref);
3678 static const char *get_AT_string (dw_die_ref, enum dwarf_attribute);
3679 static int get_AT_flag (dw_die_ref, enum dwarf_attribute);
3680 static unsigned get_AT_unsigned (dw_die_ref, enum dwarf_attribute);
3681 static inline dw_die_ref get_AT_ref (dw_die_ref, enum dwarf_attribute);
3682 static bool is_c (void);
3683 static bool is_cxx (void);
3684 static bool is_cxx (const_tree);
3685 static bool is_fortran (void);
3686 static bool is_ada (void);
3687 static bool remove_AT (dw_die_ref, enum dwarf_attribute);
3688 static void remove_child_TAG (dw_die_ref, enum dwarf_tag);
3689 static void add_child_die (dw_die_ref, dw_die_ref);
3690 static dw_die_ref new_die (enum dwarf_tag, dw_die_ref, tree);
3691 static dw_die_ref lookup_type_die (tree);
3692 static dw_die_ref strip_naming_typedef (tree, dw_die_ref);
3693 static dw_die_ref lookup_type_die_strip_naming_typedef (tree);
3694 static void equate_type_number_to_die (tree, dw_die_ref);
3695 static dw_die_ref lookup_decl_die (tree);
3696 static var_loc_list *lookup_decl_loc (const_tree);
3697 static void equate_decl_number_to_die (tree, dw_die_ref);
3698 static struct var_loc_node *add_var_loc_to_decl (tree, rtx, const char *, var_loc_view);
3699 static void print_spaces (FILE *);
3700 static void print_die (dw_die_ref, FILE *);
3701 static void loc_checksum (dw_loc_descr_ref, struct md5_ctx *);
3702 static void attr_checksum (dw_attr_node *, struct md5_ctx *, int *);
3703 static void die_checksum (dw_die_ref, struct md5_ctx *, int *);
3704 static void checksum_sleb128 (HOST_WIDE_INT, struct md5_ctx *);
3705 static void checksum_uleb128 (unsigned HOST_WIDE_INT, struct md5_ctx *);
3706 static void loc_checksum_ordered (dw_loc_descr_ref, struct md5_ctx *);
3707 static void attr_checksum_ordered (enum dwarf_tag, dw_attr_node *,
3708 struct md5_ctx *, int *);
3709 struct checksum_attributes;
3710 static void collect_checksum_attributes (struct checksum_attributes *, dw_die_ref);
3711 static void die_checksum_ordered (dw_die_ref, struct md5_ctx *, int *);
3712 static void checksum_die_context (dw_die_ref, struct md5_ctx *);
3713 static void generate_type_signature (dw_die_ref, comdat_type_node *);
3714 static int same_loc_p (dw_loc_descr_ref, dw_loc_descr_ref, int *);
3715 static int same_dw_val_p (const dw_val_node *, const dw_val_node *, int *);
3716 static int same_attr_p (dw_attr_node *, dw_attr_node *, int *);
3717 static int same_die_p (dw_die_ref, dw_die_ref, int *);
3718 static int is_type_die (dw_die_ref);
3719 static inline bool is_template_instantiation (dw_die_ref);
3720 static int is_declaration_die (dw_die_ref);
3721 static int should_move_die_to_comdat (dw_die_ref);
3722 static dw_die_ref clone_as_declaration (dw_die_ref);
3723 static dw_die_ref clone_die (dw_die_ref);
3724 static dw_die_ref clone_tree (dw_die_ref);
3725 static dw_die_ref copy_declaration_context (dw_die_ref, dw_die_ref);
3726 static void generate_skeleton_ancestor_tree (skeleton_chain_node *);
3727 static void generate_skeleton_bottom_up (skeleton_chain_node *);
3728 static dw_die_ref generate_skeleton (dw_die_ref);
3729 static dw_die_ref remove_child_or_replace_with_skeleton (dw_die_ref,
3730 dw_die_ref,
3731 dw_die_ref);
3732 static void break_out_comdat_types (dw_die_ref);
3733 static void copy_decls_for_unworthy_types (dw_die_ref);
3735 static void add_sibling_attributes (dw_die_ref);
3736 static void output_location_lists (dw_die_ref);
3737 static int constant_size (unsigned HOST_WIDE_INT);
3738 static unsigned long size_of_die (dw_die_ref);
3739 static void calc_die_sizes (dw_die_ref);
3740 static void calc_base_type_die_sizes (void);
3741 static void mark_dies (dw_die_ref);
3742 static void unmark_dies (dw_die_ref);
3743 static void unmark_all_dies (dw_die_ref);
3744 static unsigned long size_of_pubnames (vec<pubname_entry, va_gc> *);
3745 static unsigned long size_of_aranges (void);
3746 static enum dwarf_form value_format (dw_attr_node *);
3747 static void output_value_format (dw_attr_node *);
3748 static void output_abbrev_section (void);
3749 static void output_die_abbrevs (unsigned long, dw_die_ref);
3750 static void output_die (dw_die_ref);
3751 static void output_compilation_unit_header (enum dwarf_unit_type);
3752 static void output_comp_unit (dw_die_ref, int, const unsigned char *);
3753 static void output_comdat_type_unit (comdat_type_node *, bool);
3754 static const char *dwarf2_name (tree, int);
3755 static void add_pubname (tree, dw_die_ref);
3756 static void add_enumerator_pubname (const char *, dw_die_ref);
3757 static void add_pubname_string (const char *, dw_die_ref);
3758 static void add_pubtype (tree, dw_die_ref);
3759 static void output_pubnames (vec<pubname_entry, va_gc> *);
3760 static void output_aranges (void);
3761 static unsigned int add_ranges (const_tree, bool = false);
3762 static void add_ranges_by_labels (dw_die_ref, const char *, const char *,
3763 bool *, bool);
3764 static void output_ranges (void);
3765 static dw_line_info_table *new_line_info_table (void);
3766 static void output_line_info (bool);
3767 static void output_file_names (void);
3768 static dw_die_ref base_type_die (tree, bool);
3769 static int is_base_type (tree);
3770 static dw_die_ref subrange_type_die (tree, tree, tree, tree, dw_die_ref);
3771 static int decl_quals (const_tree);
3772 static dw_die_ref modified_type_die (tree, int, bool, dw_die_ref);
3773 static dw_die_ref generic_parameter_die (tree, tree, bool, dw_die_ref);
3774 static dw_die_ref template_parameter_pack_die (tree, tree, dw_die_ref);
3775 static unsigned int dbx_reg_number (const_rtx);
3776 static void add_loc_descr_op_piece (dw_loc_descr_ref *, int);
3777 static dw_loc_descr_ref reg_loc_descriptor (rtx, enum var_init_status);
3778 static dw_loc_descr_ref one_reg_loc_descriptor (unsigned int,
3779 enum var_init_status);
3780 static dw_loc_descr_ref multiple_reg_loc_descriptor (rtx, rtx,
3781 enum var_init_status);
3782 static dw_loc_descr_ref based_loc_descr (rtx, poly_int64,
3783 enum var_init_status);
3784 static int is_based_loc (const_rtx);
3785 static bool resolve_one_addr (rtx *);
3786 static dw_loc_descr_ref concat_loc_descriptor (rtx, rtx,
3787 enum var_init_status);
3788 static dw_loc_descr_ref loc_descriptor (rtx, machine_mode mode,
3789 enum var_init_status);
3790 struct loc_descr_context;
3791 static void add_loc_descr_to_each (dw_loc_list_ref list, dw_loc_descr_ref ref);
3792 static void add_loc_list (dw_loc_list_ref *ret, dw_loc_list_ref list);
3793 static dw_loc_list_ref loc_list_from_tree (tree, int,
3794 struct loc_descr_context *);
3795 static dw_loc_descr_ref loc_descriptor_from_tree (tree, int,
3796 struct loc_descr_context *);
3797 static tree field_type (const_tree);
3798 static unsigned int simple_type_align_in_bits (const_tree);
3799 static unsigned int simple_decl_align_in_bits (const_tree);
3800 static unsigned HOST_WIDE_INT simple_type_size_in_bits (const_tree);
3801 struct vlr_context;
3802 static dw_loc_descr_ref field_byte_offset (const_tree, struct vlr_context *,
3803 HOST_WIDE_INT *);
3804 static void add_AT_location_description (dw_die_ref, enum dwarf_attribute,
3805 dw_loc_list_ref);
3806 static void add_data_member_location_attribute (dw_die_ref, tree,
3807 struct vlr_context *);
3808 static bool add_const_value_attribute (dw_die_ref, rtx);
3809 static void insert_int (HOST_WIDE_INT, unsigned, unsigned char *);
3810 static void insert_wide_int (const wide_int &, unsigned char *, int);
3811 static void insert_float (const_rtx, unsigned char *);
3812 static rtx rtl_for_decl_location (tree);
3813 static bool add_location_or_const_value_attribute (dw_die_ref, tree, bool);
3814 static bool tree_add_const_value_attribute (dw_die_ref, tree);
3815 static bool tree_add_const_value_attribute_for_decl (dw_die_ref, tree);
3816 static void add_name_attribute (dw_die_ref, const char *);
3817 static void add_desc_attribute (dw_die_ref, tree);
3818 static void add_gnat_descriptive_type_attribute (dw_die_ref, tree, dw_die_ref);
3819 static void add_comp_dir_attribute (dw_die_ref);
3820 static void add_scalar_info (dw_die_ref, enum dwarf_attribute, tree, int,
3821 struct loc_descr_context *);
3822 static void add_bound_info (dw_die_ref, enum dwarf_attribute, tree,
3823 struct loc_descr_context *);
3824 static void add_subscript_info (dw_die_ref, tree, bool);
3825 static void add_byte_size_attribute (dw_die_ref, tree);
3826 static void add_alignment_attribute (dw_die_ref, tree);
3827 static inline void add_bit_offset_attribute (dw_die_ref, tree,
3828 struct vlr_context *);
3829 static void add_bit_size_attribute (dw_die_ref, tree);
3830 static void add_prototyped_attribute (dw_die_ref, tree);
3831 static void add_abstract_origin_attribute (dw_die_ref, tree);
3832 static void add_pure_or_virtual_attribute (dw_die_ref, tree);
3833 static void add_src_coords_attributes (dw_die_ref, tree);
3834 static void add_name_and_src_coords_attributes (dw_die_ref, tree, bool = false);
3835 static void add_discr_value (dw_die_ref, dw_discr_value *);
3836 static void add_discr_list (dw_die_ref, dw_discr_list_ref);
3837 static inline dw_discr_list_ref AT_discr_list (dw_attr_node *);
3838 static dw_die_ref scope_die_for (tree, dw_die_ref);
3839 static inline int local_scope_p (dw_die_ref);
3840 static inline int class_scope_p (dw_die_ref);
3841 static inline int class_or_namespace_scope_p (dw_die_ref);
3842 static void add_type_attribute (dw_die_ref, tree, int, bool, dw_die_ref);
3843 static void add_calling_convention_attribute (dw_die_ref, tree);
3844 static const char *type_tag (const_tree);
3845 static tree member_declared_type (const_tree);
3846 #if 0
3847 static const char *decl_start_label (tree);
3848 #endif
3849 static void gen_array_type_die (tree, dw_die_ref);
3850 static void gen_descr_array_type_die (tree, struct array_descr_info *, dw_die_ref);
3851 #if 0
3852 static void gen_entry_point_die (tree, dw_die_ref);
3853 #endif
3854 static dw_die_ref gen_enumeration_type_die (tree, dw_die_ref);
3855 static dw_die_ref gen_formal_parameter_die (tree, tree, bool, dw_die_ref);
3856 static dw_die_ref gen_formal_parameter_pack_die (tree, tree, dw_die_ref, tree*);
3857 static void gen_unspecified_parameters_die (tree, dw_die_ref);
3858 static void gen_formal_types_die (tree, dw_die_ref);
3859 static void gen_subprogram_die (tree, dw_die_ref);
3860 static void gen_variable_die (tree, tree, dw_die_ref);
3861 static void gen_const_die (tree, dw_die_ref);
3862 static void gen_label_die (tree, dw_die_ref);
3863 static void gen_lexical_block_die (tree, dw_die_ref);
3864 static void gen_inlined_subroutine_die (tree, dw_die_ref);
3865 static void gen_field_die (tree, struct vlr_context *, dw_die_ref);
3866 static void gen_ptr_to_mbr_type_die (tree, dw_die_ref);
3867 static dw_die_ref gen_compile_unit_die (const char *);
3868 static void gen_inheritance_die (tree, tree, tree, dw_die_ref);
3869 static void gen_member_die (tree, dw_die_ref);
3870 static void gen_struct_or_union_type_die (tree, dw_die_ref,
3871 enum debug_info_usage);
3872 static void gen_subroutine_type_die (tree, dw_die_ref);
3873 static void gen_typedef_die (tree, dw_die_ref);
3874 static void gen_type_die (tree, dw_die_ref);
3875 static void gen_block_die (tree, dw_die_ref);
3876 static void decls_for_scope (tree, dw_die_ref, bool = true);
3877 static bool is_naming_typedef_decl (const_tree);
3878 static inline dw_die_ref get_context_die (tree);
3879 static void gen_namespace_die (tree, dw_die_ref);
3880 static dw_die_ref gen_namelist_decl (tree, dw_die_ref, tree);
3881 static dw_die_ref gen_decl_die (tree, tree, struct vlr_context *, dw_die_ref);
3882 static dw_die_ref force_decl_die (tree);
3883 static dw_die_ref force_type_die (tree);
3884 static dw_die_ref setup_namespace_context (tree, dw_die_ref);
3885 static dw_die_ref declare_in_namespace (tree, dw_die_ref);
3886 static struct dwarf_file_data * lookup_filename (const char *);
3887 static void retry_incomplete_types (void);
3888 static void gen_type_die_for_member (tree, tree, dw_die_ref);
3889 static void gen_generic_params_dies (tree);
3890 static void gen_tagged_type_die (tree, dw_die_ref, enum debug_info_usage);
3891 static void gen_type_die_with_usage (tree, dw_die_ref, enum debug_info_usage);
3892 static void splice_child_die (dw_die_ref, dw_die_ref);
3893 static int file_info_cmp (const void *, const void *);
3894 static dw_loc_list_ref new_loc_list (dw_loc_descr_ref, const char *, var_loc_view,
3895 const char *, var_loc_view, const char *);
3896 static void output_loc_list (dw_loc_list_ref);
3897 static char *gen_internal_sym (const char *);
3898 static bool want_pubnames (void);
3900 static void prune_unmark_dies (dw_die_ref);
3901 static void prune_unused_types_mark_generic_parms_dies (dw_die_ref);
3902 static void prune_unused_types_mark (dw_die_ref, int);
3903 static void prune_unused_types_walk (dw_die_ref);
3904 static void prune_unused_types_walk_attribs (dw_die_ref);
3905 static void prune_unused_types_prune (dw_die_ref);
3906 static void prune_unused_types (void);
3907 static int maybe_emit_file (struct dwarf_file_data *fd);
3908 static inline const char *AT_vms_delta1 (dw_attr_node *);
3909 static inline const char *AT_vms_delta2 (dw_attr_node *);
3910 static inline void add_AT_vms_delta (dw_die_ref, enum dwarf_attribute,
3911 const char *, const char *);
3912 static void append_entry_to_tmpl_value_parm_die_table (dw_die_ref, tree);
3913 static void gen_remaining_tmpl_value_param_die_attribute (void);
3914 static bool generic_type_p (tree);
3915 static void schedule_generic_params_dies_gen (tree t);
3916 static void gen_scheduled_generic_parms_dies (void);
3917 static void resolve_variable_values (void);
3919 static const char *comp_dir_string (void);
3921 static void hash_loc_operands (dw_loc_descr_ref, inchash::hash &);
3923 /* enum for tracking thread-local variables whose address is really an offset
3924 relative to the TLS pointer, which will need link-time relocation, but will
3925 not need relocation by the DWARF consumer. */
3927 enum dtprel_bool
3929 dtprel_false = 0,
3930 dtprel_true = 1
3933 /* Return the operator to use for an address of a variable. For dtprel_true, we
3934 use DW_OP_const*. For regular variables, which need both link-time
3935 relocation and consumer-level relocation (e.g., to account for shared objects
3936 loaded at a random address), we use DW_OP_addr*. */
3938 static inline enum dwarf_location_atom
3939 dw_addr_op (enum dtprel_bool dtprel)
3941 if (dtprel == dtprel_true)
3942 return (dwarf_split_debug_info ? dwarf_OP (DW_OP_constx)
3943 : (DWARF2_ADDR_SIZE == 4 ? DW_OP_const4u : DW_OP_const8u));
3944 else
3945 return dwarf_split_debug_info ? dwarf_OP (DW_OP_addrx) : DW_OP_addr;
3948 /* Return a pointer to a newly allocated address location description. If
3949 dwarf_split_debug_info is true, then record the address with the appropriate
3950 relocation. */
3951 static inline dw_loc_descr_ref
3952 new_addr_loc_descr (rtx addr, enum dtprel_bool dtprel)
3954 dw_loc_descr_ref ref = new_loc_descr (dw_addr_op (dtprel), 0, 0);
3956 ref->dw_loc_oprnd1.val_class = dw_val_class_addr;
3957 ref->dw_loc_oprnd1.v.val_addr = addr;
3958 ref->dtprel = dtprel;
3959 if (dwarf_split_debug_info)
3960 ref->dw_loc_oprnd1.val_entry
3961 = add_addr_table_entry (addr,
3962 dtprel ? ate_kind_rtx_dtprel : ate_kind_rtx);
3963 else
3964 ref->dw_loc_oprnd1.val_entry = NULL;
3966 return ref;
3969 /* Section names used to hold DWARF debugging information. */
3971 #ifndef DEBUG_INFO_SECTION
3972 #define DEBUG_INFO_SECTION ".debug_info"
3973 #endif
3974 #ifndef DEBUG_DWO_INFO_SECTION
3975 #define DEBUG_DWO_INFO_SECTION ".debug_info.dwo"
3976 #endif
3977 #ifndef DEBUG_LTO_INFO_SECTION
3978 #define DEBUG_LTO_INFO_SECTION ".gnu.debuglto_.debug_info"
3979 #endif
3980 #ifndef DEBUG_LTO_DWO_INFO_SECTION
3981 #define DEBUG_LTO_DWO_INFO_SECTION ".gnu.debuglto_.debug_info.dwo"
3982 #endif
3983 #ifndef DEBUG_ABBREV_SECTION
3984 #define DEBUG_ABBREV_SECTION ".debug_abbrev"
3985 #endif
3986 #ifndef DEBUG_LTO_ABBREV_SECTION
3987 #define DEBUG_LTO_ABBREV_SECTION ".gnu.debuglto_.debug_abbrev"
3988 #endif
3989 #ifndef DEBUG_DWO_ABBREV_SECTION
3990 #define DEBUG_DWO_ABBREV_SECTION ".debug_abbrev.dwo"
3991 #endif
3992 #ifndef DEBUG_LTO_DWO_ABBREV_SECTION
3993 #define DEBUG_LTO_DWO_ABBREV_SECTION ".gnu.debuglto_.debug_abbrev.dwo"
3994 #endif
3995 #ifndef DEBUG_ARANGES_SECTION
3996 #define DEBUG_ARANGES_SECTION ".debug_aranges"
3997 #endif
3998 #ifndef DEBUG_ADDR_SECTION
3999 #define DEBUG_ADDR_SECTION ".debug_addr"
4000 #endif
4001 #ifndef DEBUG_MACINFO_SECTION
4002 #define DEBUG_MACINFO_SECTION ".debug_macinfo"
4003 #endif
4004 #ifndef DEBUG_LTO_MACINFO_SECTION
4005 #define DEBUG_LTO_MACINFO_SECTION ".gnu.debuglto_.debug_macinfo"
4006 #endif
4007 #ifndef DEBUG_DWO_MACINFO_SECTION
4008 #define DEBUG_DWO_MACINFO_SECTION ".debug_macinfo.dwo"
4009 #endif
4010 #ifndef DEBUG_LTO_DWO_MACINFO_SECTION
4011 #define DEBUG_LTO_DWO_MACINFO_SECTION ".gnu.debuglto_.debug_macinfo.dwo"
4012 #endif
4013 #ifndef DEBUG_MACRO_SECTION
4014 #define DEBUG_MACRO_SECTION ".debug_macro"
4015 #endif
4016 #ifndef DEBUG_LTO_MACRO_SECTION
4017 #define DEBUG_LTO_MACRO_SECTION ".gnu.debuglto_.debug_macro"
4018 #endif
4019 #ifndef DEBUG_DWO_MACRO_SECTION
4020 #define DEBUG_DWO_MACRO_SECTION ".debug_macro.dwo"
4021 #endif
4022 #ifndef DEBUG_LTO_DWO_MACRO_SECTION
4023 #define DEBUG_LTO_DWO_MACRO_SECTION ".gnu.debuglto_.debug_macro.dwo"
4024 #endif
4025 #ifndef DEBUG_LINE_SECTION
4026 #define DEBUG_LINE_SECTION ".debug_line"
4027 #endif
4028 #ifndef DEBUG_LTO_LINE_SECTION
4029 #define DEBUG_LTO_LINE_SECTION ".gnu.debuglto_.debug_line"
4030 #endif
4031 #ifndef DEBUG_DWO_LINE_SECTION
4032 #define DEBUG_DWO_LINE_SECTION ".debug_line.dwo"
4033 #endif
4034 #ifndef DEBUG_LTO_DWO_LINE_SECTION
4035 #define DEBUG_LTO_DWO_LINE_SECTION ".gnu.debuglto_.debug_line.dwo"
4036 #endif
4037 #ifndef DEBUG_LOC_SECTION
4038 #define DEBUG_LOC_SECTION ".debug_loc"
4039 #endif
4040 #ifndef DEBUG_DWO_LOC_SECTION
4041 #define DEBUG_DWO_LOC_SECTION ".debug_loc.dwo"
4042 #endif
4043 #ifndef DEBUG_LOCLISTS_SECTION
4044 #define DEBUG_LOCLISTS_SECTION ".debug_loclists"
4045 #endif
4046 #ifndef DEBUG_DWO_LOCLISTS_SECTION
4047 #define DEBUG_DWO_LOCLISTS_SECTION ".debug_loclists.dwo"
4048 #endif
4049 #ifndef DEBUG_PUBNAMES_SECTION
4050 #define DEBUG_PUBNAMES_SECTION \
4051 ((debug_generate_pub_sections == 2) \
4052 ? ".debug_gnu_pubnames" : ".debug_pubnames")
4053 #endif
4054 #ifndef DEBUG_PUBTYPES_SECTION
4055 #define DEBUG_PUBTYPES_SECTION \
4056 ((debug_generate_pub_sections == 2) \
4057 ? ".debug_gnu_pubtypes" : ".debug_pubtypes")
4058 #endif
4059 #ifndef DEBUG_STR_OFFSETS_SECTION
4060 #define DEBUG_STR_OFFSETS_SECTION ".debug_str_offsets"
4061 #endif
4062 #ifndef DEBUG_DWO_STR_OFFSETS_SECTION
4063 #define DEBUG_DWO_STR_OFFSETS_SECTION ".debug_str_offsets.dwo"
4064 #endif
4065 #ifndef DEBUG_LTO_DWO_STR_OFFSETS_SECTION
4066 #define DEBUG_LTO_DWO_STR_OFFSETS_SECTION ".gnu.debuglto_.debug_str_offsets.dwo"
4067 #endif
4068 #ifndef DEBUG_STR_SECTION
4069 #define DEBUG_STR_SECTION ".debug_str"
4070 #endif
4071 #ifndef DEBUG_LTO_STR_SECTION
4072 #define DEBUG_LTO_STR_SECTION ".gnu.debuglto_.debug_str"
4073 #endif
4074 #ifndef DEBUG_STR_DWO_SECTION
4075 #define DEBUG_STR_DWO_SECTION ".debug_str.dwo"
4076 #endif
4077 #ifndef DEBUG_LTO_STR_DWO_SECTION
4078 #define DEBUG_LTO_STR_DWO_SECTION ".gnu.debuglto_.debug_str.dwo"
4079 #endif
4080 #ifndef DEBUG_RANGES_SECTION
4081 #define DEBUG_RANGES_SECTION ".debug_ranges"
4082 #endif
4083 #ifndef DEBUG_RNGLISTS_SECTION
4084 #define DEBUG_RNGLISTS_SECTION ".debug_rnglists"
4085 #endif
4086 #ifndef DEBUG_LINE_STR_SECTION
4087 #define DEBUG_LINE_STR_SECTION ".debug_line_str"
4088 #endif
4089 #ifndef DEBUG_LTO_LINE_STR_SECTION
4090 #define DEBUG_LTO_LINE_STR_SECTION ".gnu.debuglto_.debug_line_str"
4091 #endif
4093 /* Standard ELF section names for compiled code and data. */
4094 #ifndef TEXT_SECTION_NAME
4095 #define TEXT_SECTION_NAME ".text"
4096 #endif
4098 /* Section flags for .debug_str section. */
4099 #define DEBUG_STR_SECTION_FLAGS \
4100 (HAVE_GAS_SHF_MERGE && flag_merge_debug_strings \
4101 ? SECTION_DEBUG | SECTION_MERGE | SECTION_STRINGS | 1 \
4102 : SECTION_DEBUG)
4104 /* Section flags for .debug_str.dwo section. */
4105 #define DEBUG_STR_DWO_SECTION_FLAGS (SECTION_DEBUG | SECTION_EXCLUDE)
4107 /* Attribute used to refer to the macro section. */
4108 #define DEBUG_MACRO_ATTRIBUTE (dwarf_version >= 5 ? DW_AT_macros \
4109 : dwarf_strict ? DW_AT_macro_info : DW_AT_GNU_macros)
4111 /* Labels we insert at beginning sections we can reference instead of
4112 the section names themselves. */
4114 #ifndef TEXT_SECTION_LABEL
4115 #define TEXT_SECTION_LABEL "Ltext"
4116 #endif
4117 #ifndef COLD_TEXT_SECTION_LABEL
4118 #define COLD_TEXT_SECTION_LABEL "Ltext_cold"
4119 #endif
4120 #ifndef DEBUG_LINE_SECTION_LABEL
4121 #define DEBUG_LINE_SECTION_LABEL "Ldebug_line"
4122 #endif
4123 #ifndef DEBUG_SKELETON_LINE_SECTION_LABEL
4124 #define DEBUG_SKELETON_LINE_SECTION_LABEL "Lskeleton_debug_line"
4125 #endif
4126 #ifndef DEBUG_INFO_SECTION_LABEL
4127 #define DEBUG_INFO_SECTION_LABEL "Ldebug_info"
4128 #endif
4129 #ifndef DEBUG_SKELETON_INFO_SECTION_LABEL
4130 #define DEBUG_SKELETON_INFO_SECTION_LABEL "Lskeleton_debug_info"
4131 #endif
4132 #ifndef DEBUG_ABBREV_SECTION_LABEL
4133 #define DEBUG_ABBREV_SECTION_LABEL "Ldebug_abbrev"
4134 #endif
4135 #ifndef DEBUG_SKELETON_ABBREV_SECTION_LABEL
4136 #define DEBUG_SKELETON_ABBREV_SECTION_LABEL "Lskeleton_debug_abbrev"
4137 #endif
4138 #ifndef DEBUG_ADDR_SECTION_LABEL
4139 #define DEBUG_ADDR_SECTION_LABEL "Ldebug_addr"
4140 #endif
4141 #ifndef DEBUG_LOC_SECTION_LABEL
4142 #define DEBUG_LOC_SECTION_LABEL "Ldebug_loc"
4143 #endif
4144 #ifndef DEBUG_RANGES_SECTION_LABEL
4145 #define DEBUG_RANGES_SECTION_LABEL "Ldebug_ranges"
4146 #endif
4147 #ifndef DEBUG_MACINFO_SECTION_LABEL
4148 #define DEBUG_MACINFO_SECTION_LABEL "Ldebug_macinfo"
4149 #endif
4150 #ifndef DEBUG_MACRO_SECTION_LABEL
4151 #define DEBUG_MACRO_SECTION_LABEL "Ldebug_macro"
4152 #endif
4153 #define SKELETON_COMP_DIE_ABBREV 1
4154 #define SKELETON_TYPE_DIE_ABBREV 2
4156 /* Definitions of defaults for formats and names of various special
4157 (artificial) labels which may be generated within this file (when the -g
4158 options is used and DWARF2_DEBUGGING_INFO is in effect.
4159 If necessary, these may be overridden from within the tm.h file, but
4160 typically, overriding these defaults is unnecessary. */
4162 static char text_end_label[MAX_ARTIFICIAL_LABEL_BYTES];
4163 static char text_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4164 static char cold_text_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4165 static char cold_end_label[MAX_ARTIFICIAL_LABEL_BYTES];
4166 static char abbrev_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4167 static char debug_info_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4168 static char debug_skeleton_info_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4169 static char debug_skeleton_abbrev_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4170 static char debug_line_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4171 static char debug_addr_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4172 static char debug_skeleton_line_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4173 static char macinfo_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4174 static char loc_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4175 static char ranges_section_label[2 * MAX_ARTIFICIAL_LABEL_BYTES];
4176 static char ranges_base_label[2 * MAX_ARTIFICIAL_LABEL_BYTES];
4178 #ifndef TEXT_END_LABEL
4179 #define TEXT_END_LABEL "Letext"
4180 #endif
4181 #ifndef COLD_END_LABEL
4182 #define COLD_END_LABEL "Letext_cold"
4183 #endif
4184 #ifndef BLOCK_BEGIN_LABEL
4185 #define BLOCK_BEGIN_LABEL "LBB"
4186 #endif
4187 #ifndef BLOCK_INLINE_ENTRY_LABEL
4188 #define BLOCK_INLINE_ENTRY_LABEL "LBI"
4189 #endif
4190 #ifndef BLOCK_END_LABEL
4191 #define BLOCK_END_LABEL "LBE"
4192 #endif
4193 #ifndef LINE_CODE_LABEL
4194 #define LINE_CODE_LABEL "LM"
4195 #endif
4198 /* Return the root of the DIE's built for the current compilation unit. */
4199 static dw_die_ref
4200 comp_unit_die (void)
4202 if (!single_comp_unit_die)
4203 single_comp_unit_die = gen_compile_unit_die (NULL);
4204 return single_comp_unit_die;
4207 /* We allow a language front-end to designate a function that is to be
4208 called to "demangle" any name before it is put into a DIE. */
4210 static const char *(*demangle_name_func) (const char *);
4212 void
4213 dwarf2out_set_demangle_name_func (const char *(*func) (const char *))
4215 demangle_name_func = func;
4218 /* Test if rtl node points to a pseudo register. */
4220 static inline int
4221 is_pseudo_reg (const_rtx rtl)
4223 return ((REG_P (rtl) && REGNO (rtl) >= FIRST_PSEUDO_REGISTER)
4224 || (GET_CODE (rtl) == SUBREG
4225 && REGNO (SUBREG_REG (rtl)) >= FIRST_PSEUDO_REGISTER));
4228 /* Return a reference to a type, with its const and volatile qualifiers
4229 removed. */
4231 static inline tree
4232 type_main_variant (tree type)
4234 type = TYPE_MAIN_VARIANT (type);
4236 /* ??? There really should be only one main variant among any group of
4237 variants of a given type (and all of the MAIN_VARIANT values for all
4238 members of the group should point to that one type) but sometimes the C
4239 front-end messes this up for array types, so we work around that bug
4240 here. */
4241 if (TREE_CODE (type) == ARRAY_TYPE)
4242 while (type != TYPE_MAIN_VARIANT (type))
4243 type = TYPE_MAIN_VARIANT (type);
4245 return type;
4248 /* Return nonzero if the given type node represents a tagged type. */
4250 static inline int
4251 is_tagged_type (const_tree type)
4253 enum tree_code code = TREE_CODE (type);
4255 return (code == RECORD_TYPE || code == UNION_TYPE
4256 || code == QUAL_UNION_TYPE || code == ENUMERAL_TYPE);
4259 /* Set label to debug_info_section_label + die_offset of a DIE reference. */
4261 static void
4262 get_ref_die_offset_label (char *label, dw_die_ref ref)
4264 sprintf (label, "%s+%ld", debug_info_section_label, ref->die_offset);
4267 /* Return die_offset of a DIE reference to a base type. */
4269 static unsigned long int
4270 get_base_type_offset (dw_die_ref ref)
4272 if (ref->die_offset)
4273 return ref->die_offset;
4274 if (comp_unit_die ()->die_abbrev)
4276 calc_base_type_die_sizes ();
4277 gcc_assert (ref->die_offset);
4279 return ref->die_offset;
4282 /* Return die_offset of a DIE reference other than base type. */
4284 static unsigned long int
4285 get_ref_die_offset (dw_die_ref ref)
4287 gcc_assert (ref->die_offset);
4288 return ref->die_offset;
4291 /* Convert a DIE tag into its string name. */
4293 static const char *
4294 dwarf_tag_name (unsigned int tag)
4296 const char *name = get_DW_TAG_name (tag);
4298 if (name != NULL)
4299 return name;
4301 return "DW_TAG_<unknown>";
4304 /* Convert a DWARF attribute code into its string name. */
4306 static const char *
4307 dwarf_attr_name (unsigned int attr)
4309 const char *name;
4311 switch (attr)
4313 #if VMS_DEBUGGING_INFO
4314 case DW_AT_HP_prologue:
4315 return "DW_AT_HP_prologue";
4316 #else
4317 case DW_AT_MIPS_loop_unroll_factor:
4318 return "DW_AT_MIPS_loop_unroll_factor";
4319 #endif
4321 #if VMS_DEBUGGING_INFO
4322 case DW_AT_HP_epilogue:
4323 return "DW_AT_HP_epilogue";
4324 #else
4325 case DW_AT_MIPS_stride:
4326 return "DW_AT_MIPS_stride";
4327 #endif
4330 name = get_DW_AT_name (attr);
4332 if (name != NULL)
4333 return name;
4335 return "DW_AT_<unknown>";
4338 /* Convert a DWARF value form code into its string name. */
4340 static const char *
4341 dwarf_form_name (unsigned int form)
4343 const char *name = get_DW_FORM_name (form);
4345 if (name != NULL)
4346 return name;
4348 return "DW_FORM_<unknown>";
4351 /* Determine the "ultimate origin" of a decl. The decl may be an inlined
4352 instance of an inlined instance of a decl which is local to an inline
4353 function, so we have to trace all of the way back through the origin chain
4354 to find out what sort of node actually served as the original seed for the
4355 given block. */
4357 static tree
4358 decl_ultimate_origin (const_tree decl)
4360 if (!CODE_CONTAINS_STRUCT (TREE_CODE (decl), TS_DECL_COMMON))
4361 return NULL_TREE;
4363 /* DECL_ABSTRACT_ORIGIN can point to itself; ignore that if
4364 we're trying to output the abstract instance of this function. */
4365 if (DECL_ABSTRACT_P (decl) && DECL_ABSTRACT_ORIGIN (decl) == decl)
4366 return NULL_TREE;
4368 /* Since the DECL_ABSTRACT_ORIGIN for a DECL is supposed to be the
4369 most distant ancestor, this should never happen. */
4370 gcc_assert (!DECL_FROM_INLINE (DECL_ORIGIN (decl)));
4372 return DECL_ABSTRACT_ORIGIN (decl);
4375 /* Get the class to which DECL belongs, if any. In g++, the DECL_CONTEXT
4376 of a virtual function may refer to a base class, so we check the 'this'
4377 parameter. */
4379 static tree
4380 decl_class_context (tree decl)
4382 tree context = NULL_TREE;
4384 if (TREE_CODE (decl) != FUNCTION_DECL || ! DECL_VINDEX (decl))
4385 context = DECL_CONTEXT (decl);
4386 else
4387 context = TYPE_MAIN_VARIANT
4388 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl)))));
4390 if (context && !TYPE_P (context))
4391 context = NULL_TREE;
4393 return context;
4396 /* Add an attribute/value pair to a DIE. */
4398 static inline void
4399 add_dwarf_attr (dw_die_ref die, dw_attr_node *attr)
4401 /* Maybe this should be an assert? */
4402 if (die == NULL)
4403 return;
4405 if (flag_checking)
4407 /* Check we do not add duplicate attrs. Can't use get_AT here
4408 because that recurses to the specification/abstract origin DIE. */
4409 dw_attr_node *a;
4410 unsigned ix;
4411 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
4412 gcc_assert (a->dw_attr != attr->dw_attr);
4415 vec_safe_reserve (die->die_attr, 1);
4416 vec_safe_push (die->die_attr, *attr);
4419 static inline enum dw_val_class
4420 AT_class (dw_attr_node *a)
4422 return a->dw_attr_val.val_class;
4425 /* Return the index for any attribute that will be referenced with a
4426 DW_FORM_addrx/GNU_addr_index or DW_FORM_strx/GNU_str_index. String
4427 indices are stored in dw_attr_val.v.val_str for reference counting
4428 pruning. */
4430 static inline unsigned int
4431 AT_index (dw_attr_node *a)
4433 if (AT_class (a) == dw_val_class_str)
4434 return a->dw_attr_val.v.val_str->index;
4435 else if (a->dw_attr_val.val_entry != NULL)
4436 return a->dw_attr_val.val_entry->index;
4437 return NOT_INDEXED;
4440 /* Add a flag value attribute to a DIE. */
4442 static inline void
4443 add_AT_flag (dw_die_ref die, enum dwarf_attribute attr_kind, unsigned int flag)
4445 dw_attr_node attr;
4447 attr.dw_attr = attr_kind;
4448 attr.dw_attr_val.val_class = dw_val_class_flag;
4449 attr.dw_attr_val.val_entry = NULL;
4450 attr.dw_attr_val.v.val_flag = flag;
4451 add_dwarf_attr (die, &attr);
4454 static inline unsigned
4455 AT_flag (dw_attr_node *a)
4457 gcc_assert (a && AT_class (a) == dw_val_class_flag);
4458 return a->dw_attr_val.v.val_flag;
4461 /* Add a signed integer attribute value to a DIE. */
4463 static inline void
4464 add_AT_int (dw_die_ref die, enum dwarf_attribute attr_kind, HOST_WIDE_INT int_val)
4466 dw_attr_node attr;
4468 attr.dw_attr = attr_kind;
4469 attr.dw_attr_val.val_class = dw_val_class_const;
4470 attr.dw_attr_val.val_entry = NULL;
4471 attr.dw_attr_val.v.val_int = int_val;
4472 add_dwarf_attr (die, &attr);
4475 static inline HOST_WIDE_INT
4476 AT_int (dw_attr_node *a)
4478 gcc_assert (a && (AT_class (a) == dw_val_class_const
4479 || AT_class (a) == dw_val_class_const_implicit));
4480 return a->dw_attr_val.v.val_int;
4483 /* Add an unsigned integer attribute value to a DIE. */
4485 static inline void
4486 add_AT_unsigned (dw_die_ref die, enum dwarf_attribute attr_kind,
4487 unsigned HOST_WIDE_INT unsigned_val)
4489 dw_attr_node attr;
4491 attr.dw_attr = attr_kind;
4492 attr.dw_attr_val.val_class = dw_val_class_unsigned_const;
4493 attr.dw_attr_val.val_entry = NULL;
4494 attr.dw_attr_val.v.val_unsigned = unsigned_val;
4495 add_dwarf_attr (die, &attr);
4498 static inline unsigned HOST_WIDE_INT
4499 AT_unsigned (dw_attr_node *a)
4501 gcc_assert (a && (AT_class (a) == dw_val_class_unsigned_const
4502 || AT_class (a) == dw_val_class_unsigned_const_implicit));
4503 return a->dw_attr_val.v.val_unsigned;
4506 /* Add an unsigned wide integer attribute value to a DIE. */
4508 static inline void
4509 add_AT_wide (dw_die_ref die, enum dwarf_attribute attr_kind,
4510 const wide_int& w)
4512 dw_attr_node attr;
4514 attr.dw_attr = attr_kind;
4515 attr.dw_attr_val.val_class = dw_val_class_wide_int;
4516 attr.dw_attr_val.val_entry = NULL;
4517 attr.dw_attr_val.v.val_wide = ggc_alloc<wide_int> ();
4518 *attr.dw_attr_val.v.val_wide = w;
4519 add_dwarf_attr (die, &attr);
4522 /* Add an unsigned double integer attribute value to a DIE. */
4524 static inline void
4525 add_AT_double (dw_die_ref die, enum dwarf_attribute attr_kind,
4526 HOST_WIDE_INT high, unsigned HOST_WIDE_INT low)
4528 dw_attr_node attr;
4530 attr.dw_attr = attr_kind;
4531 attr.dw_attr_val.val_class = dw_val_class_const_double;
4532 attr.dw_attr_val.val_entry = NULL;
4533 attr.dw_attr_val.v.val_double.high = high;
4534 attr.dw_attr_val.v.val_double.low = low;
4535 add_dwarf_attr (die, &attr);
4538 /* Add a floating point attribute value to a DIE and return it. */
4540 static inline void
4541 add_AT_vec (dw_die_ref die, enum dwarf_attribute attr_kind,
4542 unsigned int length, unsigned int elt_size, unsigned char *array)
4544 dw_attr_node attr;
4546 attr.dw_attr = attr_kind;
4547 attr.dw_attr_val.val_class = dw_val_class_vec;
4548 attr.dw_attr_val.val_entry = NULL;
4549 attr.dw_attr_val.v.val_vec.length = length;
4550 attr.dw_attr_val.v.val_vec.elt_size = elt_size;
4551 attr.dw_attr_val.v.val_vec.array = array;
4552 add_dwarf_attr (die, &attr);
4555 /* Add an 8-byte data attribute value to a DIE. */
4557 static inline void
4558 add_AT_data8 (dw_die_ref die, enum dwarf_attribute attr_kind,
4559 unsigned char data8[8])
4561 dw_attr_node attr;
4563 attr.dw_attr = attr_kind;
4564 attr.dw_attr_val.val_class = dw_val_class_data8;
4565 attr.dw_attr_val.val_entry = NULL;
4566 memcpy (attr.dw_attr_val.v.val_data8, data8, 8);
4567 add_dwarf_attr (die, &attr);
4570 /* Add DW_AT_low_pc and DW_AT_high_pc to a DIE. When using
4571 dwarf_split_debug_info, address attributes in dies destined for the
4572 final executable have force_direct set to avoid using indexed
4573 references. */
4575 static inline void
4576 add_AT_low_high_pc (dw_die_ref die, const char *lbl_low, const char *lbl_high,
4577 bool force_direct)
4579 dw_attr_node attr;
4580 char * lbl_id;
4582 lbl_id = xstrdup (lbl_low);
4583 attr.dw_attr = DW_AT_low_pc;
4584 attr.dw_attr_val.val_class = dw_val_class_lbl_id;
4585 attr.dw_attr_val.v.val_lbl_id = lbl_id;
4586 if (dwarf_split_debug_info && !force_direct)
4587 attr.dw_attr_val.val_entry
4588 = add_addr_table_entry (lbl_id, ate_kind_label);
4589 else
4590 attr.dw_attr_val.val_entry = NULL;
4591 add_dwarf_attr (die, &attr);
4593 attr.dw_attr = DW_AT_high_pc;
4594 if (dwarf_version < 4)
4595 attr.dw_attr_val.val_class = dw_val_class_lbl_id;
4596 else
4597 attr.dw_attr_val.val_class = dw_val_class_high_pc;
4598 lbl_id = xstrdup (lbl_high);
4599 attr.dw_attr_val.v.val_lbl_id = lbl_id;
4600 if (attr.dw_attr_val.val_class == dw_val_class_lbl_id
4601 && dwarf_split_debug_info && !force_direct)
4602 attr.dw_attr_val.val_entry
4603 = add_addr_table_entry (lbl_id, ate_kind_label);
4604 else
4605 attr.dw_attr_val.val_entry = NULL;
4606 add_dwarf_attr (die, &attr);
4609 /* Hash and equality functions for debug_str_hash. */
4611 hashval_t
4612 indirect_string_hasher::hash (indirect_string_node *x)
4614 return htab_hash_string (x->str);
4617 bool
4618 indirect_string_hasher::equal (indirect_string_node *x1, const char *x2)
4620 return strcmp (x1->str, x2) == 0;
4623 /* Add STR to the given string hash table. */
4625 static struct indirect_string_node *
4626 find_AT_string_in_table (const char *str,
4627 hash_table<indirect_string_hasher> *table,
4628 enum insert_option insert = INSERT)
4630 struct indirect_string_node *node;
4632 indirect_string_node **slot
4633 = table->find_slot_with_hash (str, htab_hash_string (str), insert);
4634 if (*slot == NULL)
4636 node = ggc_cleared_alloc<indirect_string_node> ();
4637 node->str = ggc_strdup (str);
4638 *slot = node;
4640 else
4641 node = *slot;
4643 node->refcount++;
4644 return node;
4647 /* Add STR to the indirect string hash table. */
4649 static struct indirect_string_node *
4650 find_AT_string (const char *str, enum insert_option insert = INSERT)
4652 if (! debug_str_hash)
4653 debug_str_hash = hash_table<indirect_string_hasher>::create_ggc (10);
4655 return find_AT_string_in_table (str, debug_str_hash, insert);
4658 /* Add a string attribute value to a DIE. */
4660 static inline void
4661 add_AT_string (dw_die_ref die, enum dwarf_attribute attr_kind, const char *str)
4663 dw_attr_node attr;
4664 struct indirect_string_node *node;
4666 node = find_AT_string (str);
4668 attr.dw_attr = attr_kind;
4669 attr.dw_attr_val.val_class = dw_val_class_str;
4670 attr.dw_attr_val.val_entry = NULL;
4671 attr.dw_attr_val.v.val_str = node;
4672 add_dwarf_attr (die, &attr);
4675 static inline const char *
4676 AT_string (dw_attr_node *a)
4678 gcc_assert (a && AT_class (a) == dw_val_class_str);
4679 return a->dw_attr_val.v.val_str->str;
4682 /* Call this function directly to bypass AT_string_form's logic to put
4683 the string inline in the die. */
4685 static void
4686 set_indirect_string (struct indirect_string_node *node)
4688 char label[MAX_ARTIFICIAL_LABEL_BYTES];
4689 /* Already indirect is a no op. */
4690 if (node->form == DW_FORM_strp
4691 || node->form == DW_FORM_line_strp
4692 || node->form == dwarf_FORM (DW_FORM_strx))
4694 gcc_assert (node->label);
4695 return;
4697 ASM_GENERATE_INTERNAL_LABEL (label, "LASF", dw2_string_counter);
4698 ++dw2_string_counter;
4699 node->label = xstrdup (label);
4701 if (!dwarf_split_debug_info)
4703 node->form = DW_FORM_strp;
4704 node->index = NOT_INDEXED;
4706 else
4708 node->form = dwarf_FORM (DW_FORM_strx);
4709 node->index = NO_INDEX_ASSIGNED;
4713 /* A helper function for dwarf2out_finish, called to reset indirect
4714 string decisions done for early LTO dwarf output before fat object
4715 dwarf output. */
4718 reset_indirect_string (indirect_string_node **h, void *)
4720 struct indirect_string_node *node = *h;
4721 if (node->form == DW_FORM_strp || node->form == dwarf_FORM (DW_FORM_strx))
4723 free (node->label);
4724 node->label = NULL;
4725 node->form = (dwarf_form) 0;
4726 node->index = 0;
4728 return 1;
4731 /* Find out whether a string should be output inline in DIE
4732 or out-of-line in .debug_str section. */
4734 static enum dwarf_form
4735 find_string_form (struct indirect_string_node *node)
4737 unsigned int len;
4739 if (node->form)
4740 return node->form;
4742 len = strlen (node->str) + 1;
4744 /* If the string is shorter or equal to the size of the reference, it is
4745 always better to put it inline. */
4746 if (len <= DWARF_OFFSET_SIZE || node->refcount == 0)
4747 return node->form = DW_FORM_string;
4749 /* If we cannot expect the linker to merge strings in .debug_str
4750 section, only put it into .debug_str if it is worth even in this
4751 single module. */
4752 if (DWARF2_INDIRECT_STRING_SUPPORT_MISSING_ON_TARGET
4753 || ((debug_str_section->common.flags & SECTION_MERGE) == 0
4754 && (len - DWARF_OFFSET_SIZE) * node->refcount <= len))
4755 return node->form = DW_FORM_string;
4757 set_indirect_string (node);
4759 return node->form;
4762 /* Find out whether the string referenced from the attribute should be
4763 output inline in DIE or out-of-line in .debug_str section. */
4765 static enum dwarf_form
4766 AT_string_form (dw_attr_node *a)
4768 gcc_assert (a && AT_class (a) == dw_val_class_str);
4769 return find_string_form (a->dw_attr_val.v.val_str);
4772 /* Add a DIE reference attribute value to a DIE. */
4774 static inline void
4775 add_AT_die_ref (dw_die_ref die, enum dwarf_attribute attr_kind, dw_die_ref targ_die)
4777 dw_attr_node attr;
4778 gcc_checking_assert (targ_die != NULL);
4780 /* With LTO we can end up trying to reference something we didn't create
4781 a DIE for. Avoid crashing later on a NULL referenced DIE. */
4782 if (targ_die == NULL)
4783 return;
4785 attr.dw_attr = attr_kind;
4786 attr.dw_attr_val.val_class = dw_val_class_die_ref;
4787 attr.dw_attr_val.val_entry = NULL;
4788 attr.dw_attr_val.v.val_die_ref.die = targ_die;
4789 attr.dw_attr_val.v.val_die_ref.external = 0;
4790 add_dwarf_attr (die, &attr);
4793 /* Change DIE reference REF to point to NEW_DIE instead. */
4795 static inline void
4796 change_AT_die_ref (dw_attr_node *ref, dw_die_ref new_die)
4798 gcc_assert (ref->dw_attr_val.val_class == dw_val_class_die_ref);
4799 ref->dw_attr_val.v.val_die_ref.die = new_die;
4800 ref->dw_attr_val.v.val_die_ref.external = 0;
4803 /* Add an AT_specification attribute to a DIE, and also make the back
4804 pointer from the specification to the definition. */
4806 static inline void
4807 add_AT_specification (dw_die_ref die, dw_die_ref targ_die)
4809 add_AT_die_ref (die, DW_AT_specification, targ_die);
4810 gcc_assert (!targ_die->die_definition);
4811 targ_die->die_definition = die;
4814 static inline dw_die_ref
4815 AT_ref (dw_attr_node *a)
4817 gcc_assert (a && AT_class (a) == dw_val_class_die_ref);
4818 return a->dw_attr_val.v.val_die_ref.die;
4821 static inline int
4822 AT_ref_external (dw_attr_node *a)
4824 if (a && AT_class (a) == dw_val_class_die_ref)
4825 return a->dw_attr_val.v.val_die_ref.external;
4827 return 0;
4830 static inline void
4831 set_AT_ref_external (dw_attr_node *a, int i)
4833 gcc_assert (a && AT_class (a) == dw_val_class_die_ref);
4834 a->dw_attr_val.v.val_die_ref.external = i;
4837 /* Add a location description attribute value to a DIE. */
4839 static inline void
4840 add_AT_loc (dw_die_ref die, enum dwarf_attribute attr_kind, dw_loc_descr_ref loc)
4842 dw_attr_node attr;
4844 attr.dw_attr = attr_kind;
4845 attr.dw_attr_val.val_class = dw_val_class_loc;
4846 attr.dw_attr_val.val_entry = NULL;
4847 attr.dw_attr_val.v.val_loc = loc;
4848 add_dwarf_attr (die, &attr);
4851 static inline dw_loc_descr_ref
4852 AT_loc (dw_attr_node *a)
4854 gcc_assert (a && AT_class (a) == dw_val_class_loc);
4855 return a->dw_attr_val.v.val_loc;
4858 static inline void
4859 add_AT_loc_list (dw_die_ref die, enum dwarf_attribute attr_kind, dw_loc_list_ref loc_list)
4861 dw_attr_node attr;
4863 if (XCOFF_DEBUGGING_INFO && !HAVE_XCOFF_DWARF_EXTRAS)
4864 return;
4866 attr.dw_attr = attr_kind;
4867 attr.dw_attr_val.val_class = dw_val_class_loc_list;
4868 attr.dw_attr_val.val_entry = NULL;
4869 attr.dw_attr_val.v.val_loc_list = loc_list;
4870 add_dwarf_attr (die, &attr);
4871 have_location_lists = true;
4874 static inline dw_loc_list_ref
4875 AT_loc_list (dw_attr_node *a)
4877 gcc_assert (a && AT_class (a) == dw_val_class_loc_list);
4878 return a->dw_attr_val.v.val_loc_list;
4881 /* Add a view list attribute to DIE. It must have a DW_AT_location
4882 attribute, because the view list complements the location list. */
4884 static inline void
4885 add_AT_view_list (dw_die_ref die, enum dwarf_attribute attr_kind)
4887 dw_attr_node attr;
4889 if (XCOFF_DEBUGGING_INFO && !HAVE_XCOFF_DWARF_EXTRAS)
4890 return;
4892 attr.dw_attr = attr_kind;
4893 attr.dw_attr_val.val_class = dw_val_class_view_list;
4894 attr.dw_attr_val.val_entry = NULL;
4895 attr.dw_attr_val.v.val_view_list = die;
4896 add_dwarf_attr (die, &attr);
4897 gcc_checking_assert (get_AT (die, DW_AT_location));
4898 gcc_assert (have_location_lists);
4901 /* Return a pointer to the location list referenced by the attribute.
4902 If the named attribute is a view list, look up the corresponding
4903 DW_AT_location attribute and return its location list. */
4905 static inline dw_loc_list_ref *
4906 AT_loc_list_ptr (dw_attr_node *a)
4908 gcc_assert (a);
4909 switch (AT_class (a))
4911 case dw_val_class_loc_list:
4912 return &a->dw_attr_val.v.val_loc_list;
4913 case dw_val_class_view_list:
4915 dw_attr_node *l;
4916 l = get_AT (a->dw_attr_val.v.val_view_list, DW_AT_location);
4917 if (!l)
4918 return NULL;
4919 gcc_checking_assert (l + 1 == a);
4920 return AT_loc_list_ptr (l);
4922 default:
4923 gcc_unreachable ();
4927 /* Return the location attribute value associated with a view list
4928 attribute value. */
4930 static inline dw_val_node *
4931 view_list_to_loc_list_val_node (dw_val_node *val)
4933 gcc_assert (val->val_class == dw_val_class_view_list);
4934 dw_attr_node *loc = get_AT (val->v.val_view_list, DW_AT_location);
4935 if (!loc)
4936 return NULL;
4937 gcc_checking_assert (&(loc + 1)->dw_attr_val == val);
4938 gcc_assert (AT_class (loc) == dw_val_class_loc_list);
4939 return &loc->dw_attr_val;
4942 struct addr_hasher : ggc_ptr_hash<addr_table_entry>
4944 static hashval_t hash (addr_table_entry *);
4945 static bool equal (addr_table_entry *, addr_table_entry *);
4948 /* Table of entries into the .debug_addr section. */
4950 static GTY (()) hash_table<addr_hasher> *addr_index_table;
4952 /* Hash an address_table_entry. */
4954 hashval_t
4955 addr_hasher::hash (addr_table_entry *a)
4957 inchash::hash hstate;
4958 switch (a->kind)
4960 case ate_kind_rtx:
4961 hstate.add_int (0);
4962 break;
4963 case ate_kind_rtx_dtprel:
4964 hstate.add_int (1);
4965 break;
4966 case ate_kind_label:
4967 return htab_hash_string (a->addr.label);
4968 default:
4969 gcc_unreachable ();
4971 inchash::add_rtx (a->addr.rtl, hstate);
4972 return hstate.end ();
4975 /* Determine equality for two address_table_entries. */
4977 bool
4978 addr_hasher::equal (addr_table_entry *a1, addr_table_entry *a2)
4980 if (a1->kind != a2->kind)
4981 return 0;
4982 switch (a1->kind)
4984 case ate_kind_rtx:
4985 case ate_kind_rtx_dtprel:
4986 return rtx_equal_p (a1->addr.rtl, a2->addr.rtl);
4987 case ate_kind_label:
4988 return strcmp (a1->addr.label, a2->addr.label) == 0;
4989 default:
4990 gcc_unreachable ();
4994 /* Initialize an addr_table_entry. */
4996 void
4997 init_addr_table_entry (addr_table_entry *e, enum ate_kind kind, void *addr)
4999 e->kind = kind;
5000 switch (kind)
5002 case ate_kind_rtx:
5003 case ate_kind_rtx_dtprel:
5004 e->addr.rtl = (rtx) addr;
5005 break;
5006 case ate_kind_label:
5007 e->addr.label = (char *) addr;
5008 break;
5010 e->refcount = 0;
5011 e->index = NO_INDEX_ASSIGNED;
5014 /* Add attr to the address table entry to the table. Defer setting an
5015 index until output time. */
5017 static addr_table_entry *
5018 add_addr_table_entry (void *addr, enum ate_kind kind)
5020 addr_table_entry *node;
5021 addr_table_entry finder;
5023 gcc_assert (dwarf_split_debug_info);
5024 if (! addr_index_table)
5025 addr_index_table = hash_table<addr_hasher>::create_ggc (10);
5026 init_addr_table_entry (&finder, kind, addr);
5027 addr_table_entry **slot = addr_index_table->find_slot (&finder, INSERT);
5029 if (*slot == HTAB_EMPTY_ENTRY)
5031 node = ggc_cleared_alloc<addr_table_entry> ();
5032 init_addr_table_entry (node, kind, addr);
5033 *slot = node;
5035 else
5036 node = *slot;
5038 node->refcount++;
5039 return node;
5042 /* Remove an entry from the addr table by decrementing its refcount.
5043 Strictly, decrementing the refcount would be enough, but the
5044 assertion that the entry is actually in the table has found
5045 bugs. */
5047 static void
5048 remove_addr_table_entry (addr_table_entry *entry)
5050 gcc_assert (dwarf_split_debug_info && addr_index_table);
5051 /* After an index is assigned, the table is frozen. */
5052 gcc_assert (entry->refcount > 0 && entry->index == NO_INDEX_ASSIGNED);
5053 entry->refcount--;
5056 /* Given a location list, remove all addresses it refers to from the
5057 address_table. */
5059 static void
5060 remove_loc_list_addr_table_entries (dw_loc_descr_ref descr)
5062 for (; descr; descr = descr->dw_loc_next)
5063 if (descr->dw_loc_oprnd1.val_entry != NULL)
5065 gcc_assert (descr->dw_loc_oprnd1.val_entry->index == NO_INDEX_ASSIGNED);
5066 remove_addr_table_entry (descr->dw_loc_oprnd1.val_entry);
5070 /* A helper function for dwarf2out_finish called through
5071 htab_traverse. Assign an addr_table_entry its index. All entries
5072 must be collected into the table when this function is called,
5073 because the indexing code relies on htab_traverse to traverse nodes
5074 in the same order for each run. */
5077 index_addr_table_entry (addr_table_entry **h, unsigned int *index)
5079 addr_table_entry *node = *h;
5081 /* Don't index unreferenced nodes. */
5082 if (node->refcount == 0)
5083 return 1;
5085 gcc_assert (node->index == NO_INDEX_ASSIGNED);
5086 node->index = *index;
5087 *index += 1;
5089 return 1;
5092 /* Add an address constant attribute value to a DIE. When using
5093 dwarf_split_debug_info, address attributes in dies destined for the
5094 final executable should be direct references--setting the parameter
5095 force_direct ensures this behavior. */
5097 static inline void
5098 add_AT_addr (dw_die_ref die, enum dwarf_attribute attr_kind, rtx addr,
5099 bool force_direct)
5101 dw_attr_node attr;
5103 attr.dw_attr = attr_kind;
5104 attr.dw_attr_val.val_class = dw_val_class_addr;
5105 attr.dw_attr_val.v.val_addr = addr;
5106 if (dwarf_split_debug_info && !force_direct)
5107 attr.dw_attr_val.val_entry = add_addr_table_entry (addr, ate_kind_rtx);
5108 else
5109 attr.dw_attr_val.val_entry = NULL;
5110 add_dwarf_attr (die, &attr);
5113 /* Get the RTX from to an address DIE attribute. */
5115 static inline rtx
5116 AT_addr (dw_attr_node *a)
5118 gcc_assert (a && AT_class (a) == dw_val_class_addr);
5119 return a->dw_attr_val.v.val_addr;
5122 /* Add a file attribute value to a DIE. */
5124 static inline void
5125 add_AT_file (dw_die_ref die, enum dwarf_attribute attr_kind,
5126 struct dwarf_file_data *fd)
5128 dw_attr_node attr;
5130 attr.dw_attr = attr_kind;
5131 attr.dw_attr_val.val_class = dw_val_class_file;
5132 attr.dw_attr_val.val_entry = NULL;
5133 attr.dw_attr_val.v.val_file = fd;
5134 add_dwarf_attr (die, &attr);
5137 /* Get the dwarf_file_data from a file DIE attribute. */
5139 static inline struct dwarf_file_data *
5140 AT_file (dw_attr_node *a)
5142 gcc_assert (a && (AT_class (a) == dw_val_class_file
5143 || AT_class (a) == dw_val_class_file_implicit));
5144 return a->dw_attr_val.v.val_file;
5147 /* Add a vms delta attribute value to a DIE. */
5149 static inline void
5150 add_AT_vms_delta (dw_die_ref die, enum dwarf_attribute attr_kind,
5151 const char *lbl1, const char *lbl2)
5153 dw_attr_node attr;
5155 attr.dw_attr = attr_kind;
5156 attr.dw_attr_val.val_class = dw_val_class_vms_delta;
5157 attr.dw_attr_val.val_entry = NULL;
5158 attr.dw_attr_val.v.val_vms_delta.lbl1 = xstrdup (lbl1);
5159 attr.dw_attr_val.v.val_vms_delta.lbl2 = xstrdup (lbl2);
5160 add_dwarf_attr (die, &attr);
5163 /* Add a symbolic view identifier attribute value to a DIE. */
5165 static inline void
5166 add_AT_symview (dw_die_ref die, enum dwarf_attribute attr_kind,
5167 const char *view_label)
5169 dw_attr_node attr;
5171 attr.dw_attr = attr_kind;
5172 attr.dw_attr_val.val_class = dw_val_class_symview;
5173 attr.dw_attr_val.val_entry = NULL;
5174 attr.dw_attr_val.v.val_symbolic_view = xstrdup (view_label);
5175 add_dwarf_attr (die, &attr);
5178 /* Add a label identifier attribute value to a DIE. */
5180 static inline void
5181 add_AT_lbl_id (dw_die_ref die, enum dwarf_attribute attr_kind,
5182 const char *lbl_id)
5184 dw_attr_node attr;
5186 attr.dw_attr = attr_kind;
5187 attr.dw_attr_val.val_class = dw_val_class_lbl_id;
5188 attr.dw_attr_val.val_entry = NULL;
5189 attr.dw_attr_val.v.val_lbl_id = xstrdup (lbl_id);
5190 if (dwarf_split_debug_info)
5191 attr.dw_attr_val.val_entry
5192 = add_addr_table_entry (attr.dw_attr_val.v.val_lbl_id,
5193 ate_kind_label);
5194 add_dwarf_attr (die, &attr);
5197 /* Add a section offset attribute value to a DIE, an offset into the
5198 debug_line section. */
5200 static inline void
5201 add_AT_lineptr (dw_die_ref die, enum dwarf_attribute attr_kind,
5202 const char *label)
5204 dw_attr_node attr;
5206 attr.dw_attr = attr_kind;
5207 attr.dw_attr_val.val_class = dw_val_class_lineptr;
5208 attr.dw_attr_val.val_entry = NULL;
5209 attr.dw_attr_val.v.val_lbl_id = xstrdup (label);
5210 add_dwarf_attr (die, &attr);
5213 /* Add a section offset attribute value to a DIE, an offset into the
5214 debug_macinfo section. */
5216 static inline void
5217 add_AT_macptr (dw_die_ref die, enum dwarf_attribute attr_kind,
5218 const char *label)
5220 dw_attr_node attr;
5222 attr.dw_attr = attr_kind;
5223 attr.dw_attr_val.val_class = dw_val_class_macptr;
5224 attr.dw_attr_val.val_entry = NULL;
5225 attr.dw_attr_val.v.val_lbl_id = xstrdup (label);
5226 add_dwarf_attr (die, &attr);
5229 /* Add a range_list attribute value to a DIE. When using
5230 dwarf_split_debug_info, address attributes in dies destined for the
5231 final executable should be direct references--setting the parameter
5232 force_direct ensures this behavior. */
5234 #define UNRELOCATED_OFFSET ((addr_table_entry *) 1)
5235 #define RELOCATED_OFFSET (NULL)
5237 static void
5238 add_AT_range_list (dw_die_ref die, enum dwarf_attribute attr_kind,
5239 long unsigned int offset, bool force_direct)
5241 dw_attr_node attr;
5243 attr.dw_attr = attr_kind;
5244 attr.dw_attr_val.val_class = dw_val_class_range_list;
5245 /* For the range_list attribute, use val_entry to store whether the
5246 offset should follow split-debug-info or normal semantics. This
5247 value is read in output_range_list_offset. */
5248 if (dwarf_split_debug_info && !force_direct)
5249 attr.dw_attr_val.val_entry = UNRELOCATED_OFFSET;
5250 else
5251 attr.dw_attr_val.val_entry = RELOCATED_OFFSET;
5252 attr.dw_attr_val.v.val_offset = offset;
5253 add_dwarf_attr (die, &attr);
5256 /* Return the start label of a delta attribute. */
5258 static inline const char *
5259 AT_vms_delta1 (dw_attr_node *a)
5261 gcc_assert (a && (AT_class (a) == dw_val_class_vms_delta));
5262 return a->dw_attr_val.v.val_vms_delta.lbl1;
5265 /* Return the end label of a delta attribute. */
5267 static inline const char *
5268 AT_vms_delta2 (dw_attr_node *a)
5270 gcc_assert (a && (AT_class (a) == dw_val_class_vms_delta));
5271 return a->dw_attr_val.v.val_vms_delta.lbl2;
5274 static inline const char *
5275 AT_lbl (dw_attr_node *a)
5277 gcc_assert (a && (AT_class (a) == dw_val_class_lbl_id
5278 || AT_class (a) == dw_val_class_lineptr
5279 || AT_class (a) == dw_val_class_macptr
5280 || AT_class (a) == dw_val_class_loclistsptr
5281 || AT_class (a) == dw_val_class_high_pc));
5282 return a->dw_attr_val.v.val_lbl_id;
5285 /* Get the attribute of type attr_kind. */
5287 static dw_attr_node *
5288 get_AT (dw_die_ref die, enum dwarf_attribute attr_kind)
5290 dw_attr_node *a;
5291 unsigned ix;
5292 dw_die_ref spec = NULL;
5294 if (! die)
5295 return NULL;
5297 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
5298 if (a->dw_attr == attr_kind)
5299 return a;
5300 else if (a->dw_attr == DW_AT_specification
5301 || a->dw_attr == DW_AT_abstract_origin)
5302 spec = AT_ref (a);
5304 if (spec)
5305 return get_AT (spec, attr_kind);
5307 return NULL;
5310 /* Returns the parent of the declaration of DIE. */
5312 static dw_die_ref
5313 get_die_parent (dw_die_ref die)
5315 dw_die_ref t;
5317 if (!die)
5318 return NULL;
5320 if ((t = get_AT_ref (die, DW_AT_abstract_origin))
5321 || (t = get_AT_ref (die, DW_AT_specification)))
5322 die = t;
5324 return die->die_parent;
5327 /* Return the "low pc" attribute value, typically associated with a subprogram
5328 DIE. Return null if the "low pc" attribute is either not present, or if it
5329 cannot be represented as an assembler label identifier. */
5331 static inline const char *
5332 get_AT_low_pc (dw_die_ref die)
5334 dw_attr_node *a = get_AT (die, DW_AT_low_pc);
5336 return a ? AT_lbl (a) : NULL;
5339 /* Return the value of the string attribute designated by ATTR_KIND, or
5340 NULL if it is not present. */
5342 static inline const char *
5343 get_AT_string (dw_die_ref die, enum dwarf_attribute attr_kind)
5345 dw_attr_node *a = get_AT (die, attr_kind);
5347 return a ? AT_string (a) : NULL;
5350 /* Return the value of the flag attribute designated by ATTR_KIND, or -1
5351 if it is not present. */
5353 static inline int
5354 get_AT_flag (dw_die_ref die, enum dwarf_attribute attr_kind)
5356 dw_attr_node *a = get_AT (die, attr_kind);
5358 return a ? AT_flag (a) : 0;
5361 /* Return the value of the unsigned attribute designated by ATTR_KIND, or 0
5362 if it is not present. */
5364 static inline unsigned
5365 get_AT_unsigned (dw_die_ref die, enum dwarf_attribute attr_kind)
5367 dw_attr_node *a = get_AT (die, attr_kind);
5369 return a ? AT_unsigned (a) : 0;
5372 static inline dw_die_ref
5373 get_AT_ref (dw_die_ref die, enum dwarf_attribute attr_kind)
5375 dw_attr_node *a = get_AT (die, attr_kind);
5377 return a ? AT_ref (a) : NULL;
5380 static inline struct dwarf_file_data *
5381 get_AT_file (dw_die_ref die, enum dwarf_attribute attr_kind)
5383 dw_attr_node *a = get_AT (die, attr_kind);
5385 return a ? AT_file (a) : NULL;
5388 /* Return TRUE if the language is C. */
5390 static inline bool
5391 is_c (void)
5393 unsigned int lang = get_AT_unsigned (comp_unit_die (), DW_AT_language);
5395 return (lang == DW_LANG_C || lang == DW_LANG_C89 || lang == DW_LANG_C99
5396 || lang == DW_LANG_C11 || lang == DW_LANG_ObjC);
5401 /* Return TRUE if the language is C++. */
5403 static inline bool
5404 is_cxx (void)
5406 unsigned int lang = get_AT_unsigned (comp_unit_die (), DW_AT_language);
5408 return (lang == DW_LANG_C_plus_plus || lang == DW_LANG_ObjC_plus_plus
5409 || lang == DW_LANG_C_plus_plus_11 || lang == DW_LANG_C_plus_plus_14);
5412 /* Return TRUE if DECL was created by the C++ frontend. */
5414 static bool
5415 is_cxx (const_tree decl)
5417 if (in_lto_p)
5419 const_tree context = get_ultimate_context (decl);
5420 if (context && TRANSLATION_UNIT_LANGUAGE (context))
5421 return strncmp (TRANSLATION_UNIT_LANGUAGE (context), "GNU C++", 7) == 0;
5423 return is_cxx ();
5426 /* Return TRUE if the language is Fortran. */
5428 static inline bool
5429 is_fortran (void)
5431 unsigned int lang = get_AT_unsigned (comp_unit_die (), DW_AT_language);
5433 return (lang == DW_LANG_Fortran77
5434 || lang == DW_LANG_Fortran90
5435 || lang == DW_LANG_Fortran95
5436 || lang == DW_LANG_Fortran03
5437 || lang == DW_LANG_Fortran08);
5440 static inline bool
5441 is_fortran (const_tree decl)
5443 if (in_lto_p)
5445 const_tree context = get_ultimate_context (decl);
5446 if (context && TRANSLATION_UNIT_LANGUAGE (context))
5447 return (strncmp (TRANSLATION_UNIT_LANGUAGE (context),
5448 "GNU Fortran", 11) == 0
5449 || strcmp (TRANSLATION_UNIT_LANGUAGE (context),
5450 "GNU F77") == 0);
5452 return is_fortran ();
5455 /* Return TRUE if the language is Ada. */
5457 static inline bool
5458 is_ada (void)
5460 unsigned int lang = get_AT_unsigned (comp_unit_die (), DW_AT_language);
5462 return lang == DW_LANG_Ada95 || lang == DW_LANG_Ada83;
5465 /* Return TRUE if the language is D. */
5467 static inline bool
5468 is_dlang (void)
5470 unsigned int lang = get_AT_unsigned (comp_unit_die (), DW_AT_language);
5472 return lang == DW_LANG_D;
5475 /* Remove the specified attribute if present. Return TRUE if removal
5476 was successful. */
5478 static bool
5479 remove_AT (dw_die_ref die, enum dwarf_attribute attr_kind)
5481 dw_attr_node *a;
5482 unsigned ix;
5484 if (! die)
5485 return false;
5487 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
5488 if (a->dw_attr == attr_kind)
5490 if (AT_class (a) == dw_val_class_str)
5491 if (a->dw_attr_val.v.val_str->refcount)
5492 a->dw_attr_val.v.val_str->refcount--;
5494 /* vec::ordered_remove should help reduce the number of abbrevs
5495 that are needed. */
5496 die->die_attr->ordered_remove (ix);
5497 return true;
5499 return false;
5502 /* Remove CHILD from its parent. PREV must have the property that
5503 PREV->DIE_SIB == CHILD. Does not alter CHILD. */
5505 static void
5506 remove_child_with_prev (dw_die_ref child, dw_die_ref prev)
5508 gcc_assert (child->die_parent == prev->die_parent);
5509 gcc_assert (prev->die_sib == child);
5510 if (prev == child)
5512 gcc_assert (child->die_parent->die_child == child);
5513 prev = NULL;
5515 else
5516 prev->die_sib = child->die_sib;
5517 if (child->die_parent->die_child == child)
5518 child->die_parent->die_child = prev;
5519 child->die_sib = NULL;
5522 /* Replace OLD_CHILD with NEW_CHILD. PREV must have the property that
5523 PREV->DIE_SIB == OLD_CHILD. Does not alter OLD_CHILD. */
5525 static void
5526 replace_child (dw_die_ref old_child, dw_die_ref new_child, dw_die_ref prev)
5528 dw_die_ref parent = old_child->die_parent;
5530 gcc_assert (parent == prev->die_parent);
5531 gcc_assert (prev->die_sib == old_child);
5533 new_child->die_parent = parent;
5534 if (prev == old_child)
5536 gcc_assert (parent->die_child == old_child);
5537 new_child->die_sib = new_child;
5539 else
5541 prev->die_sib = new_child;
5542 new_child->die_sib = old_child->die_sib;
5544 if (old_child->die_parent->die_child == old_child)
5545 old_child->die_parent->die_child = new_child;
5546 old_child->die_sib = NULL;
5549 /* Move all children from OLD_PARENT to NEW_PARENT. */
5551 static void
5552 move_all_children (dw_die_ref old_parent, dw_die_ref new_parent)
5554 dw_die_ref c;
5555 new_parent->die_child = old_parent->die_child;
5556 old_parent->die_child = NULL;
5557 FOR_EACH_CHILD (new_parent, c, c->die_parent = new_parent);
5560 /* Remove child DIE whose die_tag is TAG. Do nothing if no child
5561 matches TAG. */
5563 static void
5564 remove_child_TAG (dw_die_ref die, enum dwarf_tag tag)
5566 dw_die_ref c;
5568 c = die->die_child;
5569 if (c) do {
5570 dw_die_ref prev = c;
5571 c = c->die_sib;
5572 while (c->die_tag == tag)
5574 remove_child_with_prev (c, prev);
5575 c->die_parent = NULL;
5576 /* Might have removed every child. */
5577 if (die->die_child == NULL)
5578 return;
5579 c = prev->die_sib;
5581 } while (c != die->die_child);
5584 /* Add a CHILD_DIE as the last child of DIE. */
5586 static void
5587 add_child_die (dw_die_ref die, dw_die_ref child_die)
5589 /* FIXME this should probably be an assert. */
5590 if (! die || ! child_die)
5591 return;
5592 gcc_assert (die != child_die);
5594 child_die->die_parent = die;
5595 if (die->die_child)
5597 child_die->die_sib = die->die_child->die_sib;
5598 die->die_child->die_sib = child_die;
5600 else
5601 child_die->die_sib = child_die;
5602 die->die_child = child_die;
5605 /* Like add_child_die, but put CHILD_DIE after AFTER_DIE. */
5607 static void
5608 add_child_die_after (dw_die_ref die, dw_die_ref child_die,
5609 dw_die_ref after_die)
5611 gcc_assert (die
5612 && child_die
5613 && after_die
5614 && die->die_child
5615 && die != child_die);
5617 child_die->die_parent = die;
5618 child_die->die_sib = after_die->die_sib;
5619 after_die->die_sib = child_die;
5620 if (die->die_child == after_die)
5621 die->die_child = child_die;
5624 /* Unassociate CHILD from its parent, and make its parent be
5625 NEW_PARENT. */
5627 static void
5628 reparent_child (dw_die_ref child, dw_die_ref new_parent)
5630 for (dw_die_ref p = child->die_parent->die_child; ; p = p->die_sib)
5631 if (p->die_sib == child)
5633 remove_child_with_prev (child, p);
5634 break;
5636 add_child_die (new_parent, child);
5639 /* Move CHILD, which must be a child of PARENT or the DIE for which PARENT
5640 is the specification, to the end of PARENT's list of children.
5641 This is done by removing and re-adding it. */
5643 static void
5644 splice_child_die (dw_die_ref parent, dw_die_ref child)
5646 /* We want the declaration DIE from inside the class, not the
5647 specification DIE at toplevel. */
5648 if (child->die_parent != parent)
5650 dw_die_ref tmp = get_AT_ref (child, DW_AT_specification);
5652 if (tmp)
5653 child = tmp;
5656 gcc_assert (child->die_parent == parent
5657 || (child->die_parent
5658 == get_AT_ref (parent, DW_AT_specification)));
5660 reparent_child (child, parent);
5663 /* Create and return a new die with TAG_VALUE as tag. */
5665 static inline dw_die_ref
5666 new_die_raw (enum dwarf_tag tag_value)
5668 dw_die_ref die = ggc_cleared_alloc<die_node> ();
5669 die->die_tag = tag_value;
5670 return die;
5673 /* Create and return a new die with a parent of PARENT_DIE. If
5674 PARENT_DIE is NULL, the new DIE is placed in limbo and an
5675 associated tree T must be supplied to determine parenthood
5676 later. */
5678 static inline dw_die_ref
5679 new_die (enum dwarf_tag tag_value, dw_die_ref parent_die, tree t)
5681 dw_die_ref die = new_die_raw (tag_value);
5683 if (parent_die != NULL)
5684 add_child_die (parent_die, die);
5685 else
5687 limbo_die_node *limbo_node;
5689 /* No DIEs created after early dwarf should end up in limbo,
5690 because the limbo list should not persist past LTO
5691 streaming. */
5692 if (tag_value != DW_TAG_compile_unit
5693 /* These are allowed because they're generated while
5694 breaking out COMDAT units late. */
5695 && tag_value != DW_TAG_type_unit
5696 && tag_value != DW_TAG_skeleton_unit
5697 && !early_dwarf
5698 /* Allow nested functions to live in limbo because they will
5699 only temporarily live there, as decls_for_scope will fix
5700 them up. */
5701 && (TREE_CODE (t) != FUNCTION_DECL
5702 || !decl_function_context (t))
5703 /* Same as nested functions above but for types. Types that
5704 are local to a function will be fixed in
5705 decls_for_scope. */
5706 && (!RECORD_OR_UNION_TYPE_P (t)
5707 || !TYPE_CONTEXT (t)
5708 || TREE_CODE (TYPE_CONTEXT (t)) != FUNCTION_DECL)
5709 /* FIXME debug-early: Allow late limbo DIE creation for LTO,
5710 especially in the ltrans stage, but once we implement LTO
5711 dwarf streaming, we should remove this exception. */
5712 && !in_lto_p)
5714 fprintf (stderr, "symbol ended up in limbo too late:");
5715 debug_generic_stmt (t);
5716 gcc_unreachable ();
5719 limbo_node = ggc_cleared_alloc<limbo_die_node> ();
5720 limbo_node->die = die;
5721 limbo_node->created_for = t;
5722 limbo_node->next = limbo_die_list;
5723 limbo_die_list = limbo_node;
5726 return die;
5729 /* Return the DIE associated with the given type specifier. */
5731 static inline dw_die_ref
5732 lookup_type_die (tree type)
5734 dw_die_ref die = TYPE_SYMTAB_DIE (type);
5735 if (die && die->removed)
5737 TYPE_SYMTAB_DIE (type) = NULL;
5738 return NULL;
5740 return die;
5743 /* Given a TYPE_DIE representing the type TYPE, if TYPE is an
5744 anonymous type named by the typedef TYPE_DIE, return the DIE of the
5745 anonymous type instead the one of the naming typedef. */
5747 static inline dw_die_ref
5748 strip_naming_typedef (tree type, dw_die_ref type_die)
5750 if (type
5751 && TREE_CODE (type) == RECORD_TYPE
5752 && type_die
5753 && type_die->die_tag == DW_TAG_typedef
5754 && is_naming_typedef_decl (TYPE_NAME (type)))
5755 type_die = get_AT_ref (type_die, DW_AT_type);
5756 return type_die;
5759 /* Like lookup_type_die, but if type is an anonymous type named by a
5760 typedef[1], return the DIE of the anonymous type instead the one of
5761 the naming typedef. This is because in gen_typedef_die, we did
5762 equate the anonymous struct named by the typedef with the DIE of
5763 the naming typedef. So by default, lookup_type_die on an anonymous
5764 struct yields the DIE of the naming typedef.
5766 [1]: Read the comment of is_naming_typedef_decl to learn about what
5767 a naming typedef is. */
5769 static inline dw_die_ref
5770 lookup_type_die_strip_naming_typedef (tree type)
5772 dw_die_ref die = lookup_type_die (type);
5773 return strip_naming_typedef (type, die);
5776 /* Equate a DIE to a given type specifier. */
5778 static inline void
5779 equate_type_number_to_die (tree type, dw_die_ref type_die)
5781 TYPE_SYMTAB_DIE (type) = type_die;
5784 static dw_die_ref maybe_create_die_with_external_ref (tree);
5785 struct GTY(()) sym_off_pair
5787 const char * GTY((skip)) sym;
5788 unsigned HOST_WIDE_INT off;
5790 static GTY(()) hash_map<tree, sym_off_pair> *external_die_map;
5792 /* Returns a hash value for X (which really is a die_struct). */
5794 inline hashval_t
5795 decl_die_hasher::hash (die_node *x)
5797 return (hashval_t) x->decl_id;
5800 /* Return nonzero if decl_id of die_struct X is the same as UID of decl *Y. */
5802 inline bool
5803 decl_die_hasher::equal (die_node *x, tree y)
5805 return (x->decl_id == DECL_UID (y));
5808 /* Return the DIE associated with a given declaration. */
5810 static inline dw_die_ref
5811 lookup_decl_die (tree decl)
5813 dw_die_ref *die = decl_die_table->find_slot_with_hash (decl, DECL_UID (decl),
5814 NO_INSERT);
5815 if (!die)
5817 if (in_lto_p)
5818 return maybe_create_die_with_external_ref (decl);
5819 return NULL;
5821 if ((*die)->removed)
5823 decl_die_table->clear_slot (die);
5824 return NULL;
5826 return *die;
5830 /* Return the DIE associated with BLOCK. */
5832 static inline dw_die_ref
5833 lookup_block_die (tree block)
5835 dw_die_ref die = BLOCK_DIE (block);
5836 if (!die && in_lto_p)
5837 return maybe_create_die_with_external_ref (block);
5838 return die;
5841 /* Associate DIE with BLOCK. */
5843 static inline void
5844 equate_block_to_die (tree block, dw_die_ref die)
5846 BLOCK_DIE (block) = die;
5848 #undef BLOCK_DIE
5851 /* For DECL which might have early dwarf output query a SYMBOL + OFFSET
5852 style reference. Return true if we found one refering to a DIE for
5853 DECL, otherwise return false. */
5855 static bool
5856 dwarf2out_die_ref_for_decl (tree decl, const char **sym,
5857 unsigned HOST_WIDE_INT *off)
5859 dw_die_ref die;
5861 if (in_lto_p)
5863 /* During WPA stage and incremental linking we use a hash-map
5864 to store the decl <-> label + offset map. */
5865 if (!external_die_map)
5866 return false;
5867 sym_off_pair *desc = external_die_map->get (decl);
5868 if (!desc)
5869 return false;
5870 *sym = desc->sym;
5871 *off = desc->off;
5872 return true;
5875 if (TREE_CODE (decl) == BLOCK)
5876 die = lookup_block_die (decl);
5877 else
5878 die = lookup_decl_die (decl);
5879 if (!die)
5880 return false;
5882 /* Similar to get_ref_die_offset_label, but using the "correct"
5883 label. */
5884 *off = die->die_offset;
5885 while (die->die_parent)
5886 die = die->die_parent;
5887 /* For the containing CU DIE we compute a die_symbol in
5888 compute_comp_unit_symbol. */
5889 gcc_assert (die->die_tag == DW_TAG_compile_unit
5890 && die->die_id.die_symbol != NULL);
5891 *sym = die->die_id.die_symbol;
5892 return true;
5895 /* Add a reference of kind ATTR_KIND to a DIE at SYMBOL + OFFSET to DIE. */
5897 static void
5898 add_AT_external_die_ref (dw_die_ref die, enum dwarf_attribute attr_kind,
5899 const char *symbol, HOST_WIDE_INT offset)
5901 /* Create a fake DIE that contains the reference. Don't use
5902 new_die because we don't want to end up in the limbo list. */
5903 /* ??? We probably want to share these, thus put a ref to the DIE
5904 we create here to the external_die_map entry. */
5905 dw_die_ref ref = new_die_raw (die->die_tag);
5906 ref->die_id.die_symbol = symbol;
5907 ref->die_offset = offset;
5908 ref->with_offset = 1;
5909 add_AT_die_ref (die, attr_kind, ref);
5912 /* Create a DIE for DECL if required and add a reference to a DIE
5913 at SYMBOL + OFFSET which contains attributes dumped early. */
5915 static void
5916 dwarf2out_register_external_die (tree decl, const char *sym,
5917 unsigned HOST_WIDE_INT off)
5919 if (debug_info_level == DINFO_LEVEL_NONE)
5920 return;
5922 if (!external_die_map)
5923 external_die_map = hash_map<tree, sym_off_pair>::create_ggc (1000);
5924 gcc_checking_assert (!external_die_map->get (decl));
5925 sym_off_pair p = { IDENTIFIER_POINTER (get_identifier (sym)), off };
5926 external_die_map->put (decl, p);
5929 /* If we have a registered external DIE for DECL return a new DIE for
5930 the concrete instance with an appropriate abstract origin. */
5932 static dw_die_ref
5933 maybe_create_die_with_external_ref (tree decl)
5935 if (!external_die_map)
5936 return NULL;
5937 sym_off_pair *desc = external_die_map->get (decl);
5938 if (!desc)
5939 return NULL;
5941 const char *sym = desc->sym;
5942 unsigned HOST_WIDE_INT off = desc->off;
5944 in_lto_p = false;
5945 dw_die_ref die = (TREE_CODE (decl) == BLOCK
5946 ? lookup_block_die (decl) : lookup_decl_die (decl));
5947 gcc_assert (!die);
5948 in_lto_p = true;
5950 tree ctx;
5951 dw_die_ref parent = NULL;
5952 /* Need to lookup a DIE for the decls context - the containing
5953 function or translation unit. */
5954 if (TREE_CODE (decl) == BLOCK)
5956 ctx = BLOCK_SUPERCONTEXT (decl);
5957 /* ??? We do not output DIEs for all scopes thus skip as
5958 many DIEs as needed. */
5959 while (TREE_CODE (ctx) == BLOCK
5960 && !lookup_block_die (ctx))
5961 ctx = BLOCK_SUPERCONTEXT (ctx);
5963 else
5964 ctx = DECL_CONTEXT (decl);
5965 /* Peel types in the context stack. */
5966 while (ctx && TYPE_P (ctx))
5967 ctx = TYPE_CONTEXT (ctx);
5968 /* Likewise namespaces in case we do not want to emit DIEs for them. */
5969 if (debug_info_level <= DINFO_LEVEL_TERSE)
5970 while (ctx && TREE_CODE (ctx) == NAMESPACE_DECL)
5971 ctx = DECL_CONTEXT (ctx);
5972 if (ctx)
5974 if (TREE_CODE (ctx) == BLOCK)
5975 parent = lookup_block_die (ctx);
5976 else if (TREE_CODE (ctx) == TRANSLATION_UNIT_DECL
5977 /* Keep the 1:1 association during WPA. */
5978 && !flag_wpa
5979 && flag_incremental_link != INCREMENTAL_LINK_LTO)
5980 /* Otherwise all late annotations go to the main CU which
5981 imports the original CUs. */
5982 parent = comp_unit_die ();
5983 else if (TREE_CODE (ctx) == FUNCTION_DECL
5984 && TREE_CODE (decl) != FUNCTION_DECL
5985 && TREE_CODE (decl) != PARM_DECL
5986 && TREE_CODE (decl) != RESULT_DECL
5987 && TREE_CODE (decl) != BLOCK)
5988 /* Leave function local entities parent determination to when
5989 we process scope vars. */
5991 else
5992 parent = lookup_decl_die (ctx);
5994 else
5995 /* In some cases the FEs fail to set DECL_CONTEXT properly.
5996 Handle this case gracefully by globalizing stuff. */
5997 parent = comp_unit_die ();
5998 /* Create a DIE "stub". */
5999 switch (TREE_CODE (decl))
6001 case TRANSLATION_UNIT_DECL:
6003 die = comp_unit_die ();
6004 /* We re-target all CU decls to the LTRANS CU DIE, so no need
6005 to create a DIE for the original CUs. */
6006 return die;
6008 case NAMESPACE_DECL:
6009 if (is_fortran (decl))
6010 die = new_die (DW_TAG_module, parent, decl);
6011 else
6012 die = new_die (DW_TAG_namespace, parent, decl);
6013 break;
6014 case FUNCTION_DECL:
6015 die = new_die (DW_TAG_subprogram, parent, decl);
6016 break;
6017 case VAR_DECL:
6018 die = new_die (DW_TAG_variable, parent, decl);
6019 break;
6020 case RESULT_DECL:
6021 die = new_die (DW_TAG_variable, parent, decl);
6022 break;
6023 case PARM_DECL:
6024 die = new_die (DW_TAG_formal_parameter, parent, decl);
6025 break;
6026 case CONST_DECL:
6027 die = new_die (DW_TAG_constant, parent, decl);
6028 break;
6029 case LABEL_DECL:
6030 die = new_die (DW_TAG_label, parent, decl);
6031 break;
6032 case BLOCK:
6033 die = new_die (DW_TAG_lexical_block, parent, decl);
6034 break;
6035 default:
6036 gcc_unreachable ();
6038 if (TREE_CODE (decl) == BLOCK)
6039 equate_block_to_die (decl, die);
6040 else
6041 equate_decl_number_to_die (decl, die);
6043 add_desc_attribute (die, decl);
6045 /* Add a reference to the DIE providing early debug at $sym + off. */
6046 add_AT_external_die_ref (die, DW_AT_abstract_origin, sym, off);
6048 return die;
6051 /* Returns a hash value for X (which really is a var_loc_list). */
6053 inline hashval_t
6054 decl_loc_hasher::hash (var_loc_list *x)
6056 return (hashval_t) x->decl_id;
6059 /* Return nonzero if decl_id of var_loc_list X is the same as
6060 UID of decl *Y. */
6062 inline bool
6063 decl_loc_hasher::equal (var_loc_list *x, const_tree y)
6065 return (x->decl_id == DECL_UID (y));
6068 /* Return the var_loc list associated with a given declaration. */
6070 static inline var_loc_list *
6071 lookup_decl_loc (const_tree decl)
6073 if (!decl_loc_table)
6074 return NULL;
6075 return decl_loc_table->find_with_hash (decl, DECL_UID (decl));
6078 /* Returns a hash value for X (which really is a cached_dw_loc_list_list). */
6080 inline hashval_t
6081 dw_loc_list_hasher::hash (cached_dw_loc_list *x)
6083 return (hashval_t) x->decl_id;
6086 /* Return nonzero if decl_id of cached_dw_loc_list X is the same as
6087 UID of decl *Y. */
6089 inline bool
6090 dw_loc_list_hasher::equal (cached_dw_loc_list *x, const_tree y)
6092 return (x->decl_id == DECL_UID (y));
6095 /* Equate a DIE to a particular declaration. */
6097 static void
6098 equate_decl_number_to_die (tree decl, dw_die_ref decl_die)
6100 unsigned int decl_id = DECL_UID (decl);
6102 *decl_die_table->find_slot_with_hash (decl, decl_id, INSERT) = decl_die;
6103 decl_die->decl_id = decl_id;
6106 /* Return how many bits covers PIECE EXPR_LIST. */
6108 static HOST_WIDE_INT
6109 decl_piece_bitsize (rtx piece)
6111 int ret = (int) GET_MODE (piece);
6112 if (ret)
6113 return ret;
6114 gcc_assert (GET_CODE (XEXP (piece, 0)) == CONCAT
6115 && CONST_INT_P (XEXP (XEXP (piece, 0), 0)));
6116 return INTVAL (XEXP (XEXP (piece, 0), 0));
6119 /* Return pointer to the location of location note in PIECE EXPR_LIST. */
6121 static rtx *
6122 decl_piece_varloc_ptr (rtx piece)
6124 if ((int) GET_MODE (piece))
6125 return &XEXP (piece, 0);
6126 else
6127 return &XEXP (XEXP (piece, 0), 1);
6130 /* Create an EXPR_LIST for location note LOC_NOTE covering BITSIZE bits.
6131 Next is the chain of following piece nodes. */
6133 static rtx_expr_list *
6134 decl_piece_node (rtx loc_note, HOST_WIDE_INT bitsize, rtx next)
6136 if (bitsize > 0 && bitsize <= (int) MAX_MACHINE_MODE)
6137 return alloc_EXPR_LIST (bitsize, loc_note, next);
6138 else
6139 return alloc_EXPR_LIST (0, gen_rtx_CONCAT (VOIDmode,
6140 GEN_INT (bitsize),
6141 loc_note), next);
6144 /* Return rtx that should be stored into loc field for
6145 LOC_NOTE and BITPOS/BITSIZE. */
6147 static rtx
6148 construct_piece_list (rtx loc_note, HOST_WIDE_INT bitpos,
6149 HOST_WIDE_INT bitsize)
6151 if (bitsize != -1)
6153 loc_note = decl_piece_node (loc_note, bitsize, NULL_RTX);
6154 if (bitpos != 0)
6155 loc_note = decl_piece_node (NULL_RTX, bitpos, loc_note);
6157 return loc_note;
6160 /* This function either modifies location piece list *DEST in
6161 place (if SRC and INNER is NULL), or copies location piece list
6162 *SRC to *DEST while modifying it. Location BITPOS is modified
6163 to contain LOC_NOTE, any pieces overlapping it are removed resp.
6164 not copied and if needed some padding around it is added.
6165 When modifying in place, DEST should point to EXPR_LIST where
6166 earlier pieces cover PIECE_BITPOS bits, when copying SRC points
6167 to the start of the whole list and INNER points to the EXPR_LIST
6168 where earlier pieces cover PIECE_BITPOS bits. */
6170 static void
6171 adjust_piece_list (rtx *dest, rtx *src, rtx *inner,
6172 HOST_WIDE_INT bitpos, HOST_WIDE_INT piece_bitpos,
6173 HOST_WIDE_INT bitsize, rtx loc_note)
6175 HOST_WIDE_INT diff;
6176 bool copy = inner != NULL;
6178 if (copy)
6180 /* First copy all nodes preceding the current bitpos. */
6181 while (src != inner)
6183 *dest = decl_piece_node (*decl_piece_varloc_ptr (*src),
6184 decl_piece_bitsize (*src), NULL_RTX);
6185 dest = &XEXP (*dest, 1);
6186 src = &XEXP (*src, 1);
6189 /* Add padding if needed. */
6190 if (bitpos != piece_bitpos)
6192 *dest = decl_piece_node (NULL_RTX, bitpos - piece_bitpos,
6193 copy ? NULL_RTX : *dest);
6194 dest = &XEXP (*dest, 1);
6196 else if (*dest && decl_piece_bitsize (*dest) == bitsize)
6198 gcc_assert (!copy);
6199 /* A piece with correct bitpos and bitsize already exist,
6200 just update the location for it and return. */
6201 *decl_piece_varloc_ptr (*dest) = loc_note;
6202 return;
6204 /* Add the piece that changed. */
6205 *dest = decl_piece_node (loc_note, bitsize, copy ? NULL_RTX : *dest);
6206 dest = &XEXP (*dest, 1);
6207 /* Skip over pieces that overlap it. */
6208 diff = bitpos - piece_bitpos + bitsize;
6209 if (!copy)
6210 src = dest;
6211 while (diff > 0 && *src)
6213 rtx piece = *src;
6214 diff -= decl_piece_bitsize (piece);
6215 if (copy)
6216 src = &XEXP (piece, 1);
6217 else
6219 *src = XEXP (piece, 1);
6220 free_EXPR_LIST_node (piece);
6223 /* Add padding if needed. */
6224 if (diff < 0 && *src)
6226 if (!copy)
6227 dest = src;
6228 *dest = decl_piece_node (NULL_RTX, -diff, copy ? NULL_RTX : *dest);
6229 dest = &XEXP (*dest, 1);
6231 if (!copy)
6232 return;
6233 /* Finally copy all nodes following it. */
6234 while (*src)
6236 *dest = decl_piece_node (*decl_piece_varloc_ptr (*src),
6237 decl_piece_bitsize (*src), NULL_RTX);
6238 dest = &XEXP (*dest, 1);
6239 src = &XEXP (*src, 1);
6243 /* Add a variable location node to the linked list for DECL. */
6245 static struct var_loc_node *
6246 add_var_loc_to_decl (tree decl, rtx loc_note, const char *label, var_loc_view view)
6248 unsigned int decl_id;
6249 var_loc_list *temp;
6250 struct var_loc_node *loc = NULL;
6251 HOST_WIDE_INT bitsize = -1, bitpos = -1;
6253 if (VAR_P (decl) && DECL_HAS_DEBUG_EXPR_P (decl))
6255 tree realdecl = DECL_DEBUG_EXPR (decl);
6256 if (handled_component_p (realdecl)
6257 || (TREE_CODE (realdecl) == MEM_REF
6258 && TREE_CODE (TREE_OPERAND (realdecl, 0)) == ADDR_EXPR))
6260 bool reverse;
6261 tree innerdecl = get_ref_base_and_extent_hwi (realdecl, &bitpos,
6262 &bitsize, &reverse);
6263 if (!innerdecl
6264 || !DECL_P (innerdecl)
6265 || DECL_IGNORED_P (innerdecl)
6266 || TREE_STATIC (innerdecl)
6267 || bitsize == 0
6268 || bitpos + bitsize > 256)
6269 return NULL;
6270 decl = innerdecl;
6274 decl_id = DECL_UID (decl);
6275 var_loc_list **slot
6276 = decl_loc_table->find_slot_with_hash (decl, decl_id, INSERT);
6277 if (*slot == NULL)
6279 temp = ggc_cleared_alloc<var_loc_list> ();
6280 temp->decl_id = decl_id;
6281 *slot = temp;
6283 else
6284 temp = *slot;
6286 /* For PARM_DECLs try to keep around the original incoming value,
6287 even if that means we'll emit a zero-range .debug_loc entry. */
6288 if (temp->last
6289 && temp->first == temp->last
6290 && TREE_CODE (decl) == PARM_DECL
6291 && NOTE_P (temp->first->loc)
6292 && NOTE_VAR_LOCATION_DECL (temp->first->loc) == decl
6293 && DECL_INCOMING_RTL (decl)
6294 && NOTE_VAR_LOCATION_LOC (temp->first->loc)
6295 && GET_CODE (NOTE_VAR_LOCATION_LOC (temp->first->loc))
6296 == GET_CODE (DECL_INCOMING_RTL (decl))
6297 && prev_real_insn (as_a<rtx_insn *> (temp->first->loc)) == NULL_RTX
6298 && (bitsize != -1
6299 || !rtx_equal_p (NOTE_VAR_LOCATION_LOC (temp->first->loc),
6300 NOTE_VAR_LOCATION_LOC (loc_note))
6301 || (NOTE_VAR_LOCATION_STATUS (temp->first->loc)
6302 != NOTE_VAR_LOCATION_STATUS (loc_note))))
6304 loc = ggc_cleared_alloc<var_loc_node> ();
6305 temp->first->next = loc;
6306 temp->last = loc;
6307 loc->loc = construct_piece_list (loc_note, bitpos, bitsize);
6309 else if (temp->last)
6311 struct var_loc_node *last = temp->last, *unused = NULL;
6312 rtx *piece_loc = NULL, last_loc_note;
6313 HOST_WIDE_INT piece_bitpos = 0;
6314 if (last->next)
6316 last = last->next;
6317 gcc_assert (last->next == NULL);
6319 if (bitsize != -1 && GET_CODE (last->loc) == EXPR_LIST)
6321 piece_loc = &last->loc;
6324 HOST_WIDE_INT cur_bitsize = decl_piece_bitsize (*piece_loc);
6325 if (piece_bitpos + cur_bitsize > bitpos)
6326 break;
6327 piece_bitpos += cur_bitsize;
6328 piece_loc = &XEXP (*piece_loc, 1);
6330 while (*piece_loc);
6332 /* TEMP->LAST here is either pointer to the last but one or
6333 last element in the chained list, LAST is pointer to the
6334 last element. */
6335 if (label && strcmp (last->label, label) == 0 && last->view == view)
6337 /* For SRA optimized variables if there weren't any real
6338 insns since last note, just modify the last node. */
6339 if (piece_loc != NULL)
6341 adjust_piece_list (piece_loc, NULL, NULL,
6342 bitpos, piece_bitpos, bitsize, loc_note);
6343 return NULL;
6345 /* If the last note doesn't cover any instructions, remove it. */
6346 if (temp->last != last)
6348 temp->last->next = NULL;
6349 unused = last;
6350 last = temp->last;
6351 gcc_assert (strcmp (last->label, label) != 0 || last->view != view);
6353 else
6355 gcc_assert (temp->first == temp->last
6356 || (temp->first->next == temp->last
6357 && TREE_CODE (decl) == PARM_DECL));
6358 memset (temp->last, '\0', sizeof (*temp->last));
6359 temp->last->loc = construct_piece_list (loc_note, bitpos, bitsize);
6360 return temp->last;
6363 if (bitsize == -1 && NOTE_P (last->loc))
6364 last_loc_note = last->loc;
6365 else if (piece_loc != NULL
6366 && *piece_loc != NULL_RTX
6367 && piece_bitpos == bitpos
6368 && decl_piece_bitsize (*piece_loc) == bitsize)
6369 last_loc_note = *decl_piece_varloc_ptr (*piece_loc);
6370 else
6371 last_loc_note = NULL_RTX;
6372 /* If the current location is the same as the end of the list,
6373 and either both or neither of the locations is uninitialized,
6374 we have nothing to do. */
6375 if (last_loc_note == NULL_RTX
6376 || (!rtx_equal_p (NOTE_VAR_LOCATION_LOC (last_loc_note),
6377 NOTE_VAR_LOCATION_LOC (loc_note)))
6378 || ((NOTE_VAR_LOCATION_STATUS (last_loc_note)
6379 != NOTE_VAR_LOCATION_STATUS (loc_note))
6380 && ((NOTE_VAR_LOCATION_STATUS (last_loc_note)
6381 == VAR_INIT_STATUS_UNINITIALIZED)
6382 || (NOTE_VAR_LOCATION_STATUS (loc_note)
6383 == VAR_INIT_STATUS_UNINITIALIZED))))
6385 /* Add LOC to the end of list and update LAST. If the last
6386 element of the list has been removed above, reuse its
6387 memory for the new node, otherwise allocate a new one. */
6388 if (unused)
6390 loc = unused;
6391 memset (loc, '\0', sizeof (*loc));
6393 else
6394 loc = ggc_cleared_alloc<var_loc_node> ();
6395 if (bitsize == -1 || piece_loc == NULL)
6396 loc->loc = construct_piece_list (loc_note, bitpos, bitsize);
6397 else
6398 adjust_piece_list (&loc->loc, &last->loc, piece_loc,
6399 bitpos, piece_bitpos, bitsize, loc_note);
6400 last->next = loc;
6401 /* Ensure TEMP->LAST will point either to the new last but one
6402 element of the chain, or to the last element in it. */
6403 if (last != temp->last)
6404 temp->last = last;
6406 else if (unused)
6407 ggc_free (unused);
6409 else
6411 loc = ggc_cleared_alloc<var_loc_node> ();
6412 temp->first = loc;
6413 temp->last = loc;
6414 loc->loc = construct_piece_list (loc_note, bitpos, bitsize);
6416 return loc;
6419 /* Keep track of the number of spaces used to indent the
6420 output of the debugging routines that print the structure of
6421 the DIE internal representation. */
6422 static int print_indent;
6424 /* Indent the line the number of spaces given by print_indent. */
6426 static inline void
6427 print_spaces (FILE *outfile)
6429 fprintf (outfile, "%*s", print_indent, "");
6432 /* Print a type signature in hex. */
6434 static inline void
6435 print_signature (FILE *outfile, char *sig)
6437 int i;
6439 for (i = 0; i < DWARF_TYPE_SIGNATURE_SIZE; i++)
6440 fprintf (outfile, "%02x", sig[i] & 0xff);
6443 static inline void
6444 print_discr_value (FILE *outfile, dw_discr_value *discr_value)
6446 if (discr_value->pos)
6447 fprintf (outfile, HOST_WIDE_INT_PRINT_UNSIGNED, discr_value->v.sval);
6448 else
6449 fprintf (outfile, HOST_WIDE_INT_PRINT_DEC, discr_value->v.uval);
6452 static void print_loc_descr (dw_loc_descr_ref, FILE *);
6454 /* Print the value associated to the VAL DWARF value node to OUTFILE. If
6455 RECURSE, output location descriptor operations. */
6457 static void
6458 print_dw_val (dw_val_node *val, bool recurse, FILE *outfile)
6460 switch (val->val_class)
6462 case dw_val_class_addr:
6463 fprintf (outfile, "address");
6464 break;
6465 case dw_val_class_offset:
6466 fprintf (outfile, "offset");
6467 break;
6468 case dw_val_class_loc:
6469 fprintf (outfile, "location descriptor");
6470 if (val->v.val_loc == NULL)
6471 fprintf (outfile, " -> <null>\n");
6472 else if (recurse)
6474 fprintf (outfile, ":\n");
6475 print_indent += 4;
6476 print_loc_descr (val->v.val_loc, outfile);
6477 print_indent -= 4;
6479 else
6481 if (flag_dump_noaddr || flag_dump_unnumbered)
6482 fprintf (outfile, " #\n");
6483 else
6484 fprintf (outfile, " (%p)\n", (void *) val->v.val_loc);
6486 break;
6487 case dw_val_class_loc_list:
6488 fprintf (outfile, "location list -> label:%s",
6489 val->v.val_loc_list->ll_symbol);
6490 break;
6491 case dw_val_class_view_list:
6492 val = view_list_to_loc_list_val_node (val);
6493 fprintf (outfile, "location list with views -> labels:%s and %s",
6494 val->v.val_loc_list->ll_symbol,
6495 val->v.val_loc_list->vl_symbol);
6496 break;
6497 case dw_val_class_range_list:
6498 fprintf (outfile, "range list");
6499 break;
6500 case dw_val_class_const:
6501 case dw_val_class_const_implicit:
6502 fprintf (outfile, HOST_WIDE_INT_PRINT_DEC, val->v.val_int);
6503 break;
6504 case dw_val_class_unsigned_const:
6505 case dw_val_class_unsigned_const_implicit:
6506 fprintf (outfile, HOST_WIDE_INT_PRINT_UNSIGNED, val->v.val_unsigned);
6507 break;
6508 case dw_val_class_const_double:
6509 fprintf (outfile, "constant (" HOST_WIDE_INT_PRINT_DEC","\
6510 HOST_WIDE_INT_PRINT_UNSIGNED")",
6511 val->v.val_double.high,
6512 val->v.val_double.low);
6513 break;
6514 case dw_val_class_wide_int:
6516 int i = val->v.val_wide->get_len ();
6517 fprintf (outfile, "constant (");
6518 gcc_assert (i > 0);
6519 if (val->v.val_wide->elt (i - 1) == 0)
6520 fprintf (outfile, "0x");
6521 fprintf (outfile, HOST_WIDE_INT_PRINT_HEX,
6522 val->v.val_wide->elt (--i));
6523 while (--i >= 0)
6524 fprintf (outfile, HOST_WIDE_INT_PRINT_PADDED_HEX,
6525 val->v.val_wide->elt (i));
6526 fprintf (outfile, ")");
6527 break;
6529 case dw_val_class_vec:
6530 fprintf (outfile, "floating-point or vector constant");
6531 break;
6532 case dw_val_class_flag:
6533 fprintf (outfile, "%u", val->v.val_flag);
6534 break;
6535 case dw_val_class_die_ref:
6536 if (val->v.val_die_ref.die != NULL)
6538 dw_die_ref die = val->v.val_die_ref.die;
6540 if (die->comdat_type_p)
6542 fprintf (outfile, "die -> signature: ");
6543 print_signature (outfile,
6544 die->die_id.die_type_node->signature);
6546 else if (die->die_id.die_symbol)
6548 fprintf (outfile, "die -> label: %s", die->die_id.die_symbol);
6549 if (die->with_offset)
6550 fprintf (outfile, " + %ld", die->die_offset);
6552 else
6553 fprintf (outfile, "die -> %ld", die->die_offset);
6554 if (flag_dump_noaddr || flag_dump_unnumbered)
6555 fprintf (outfile, " #");
6556 else
6557 fprintf (outfile, " (%p)", (void *) die);
6559 else
6560 fprintf (outfile, "die -> <null>");
6561 break;
6562 case dw_val_class_vms_delta:
6563 fprintf (outfile, "delta: @slotcount(%s-%s)",
6564 val->v.val_vms_delta.lbl2, val->v.val_vms_delta.lbl1);
6565 break;
6566 case dw_val_class_symview:
6567 fprintf (outfile, "view: %s", val->v.val_symbolic_view);
6568 break;
6569 case dw_val_class_lbl_id:
6570 case dw_val_class_lineptr:
6571 case dw_val_class_macptr:
6572 case dw_val_class_loclistsptr:
6573 case dw_val_class_high_pc:
6574 fprintf (outfile, "label: %s", val->v.val_lbl_id);
6575 break;
6576 case dw_val_class_str:
6577 if (val->v.val_str->str != NULL)
6578 fprintf (outfile, "\"%s\"", val->v.val_str->str);
6579 else
6580 fprintf (outfile, "<null>");
6581 break;
6582 case dw_val_class_file:
6583 case dw_val_class_file_implicit:
6584 fprintf (outfile, "\"%s\" (%d)", val->v.val_file->filename,
6585 val->v.val_file->emitted_number);
6586 break;
6587 case dw_val_class_data8:
6589 int i;
6591 for (i = 0; i < 8; i++)
6592 fprintf (outfile, "%02x", val->v.val_data8[i]);
6593 break;
6595 case dw_val_class_discr_value:
6596 print_discr_value (outfile, &val->v.val_discr_value);
6597 break;
6598 case dw_val_class_discr_list:
6599 for (dw_discr_list_ref node = val->v.val_discr_list;
6600 node != NULL;
6601 node = node->dw_discr_next)
6603 if (node->dw_discr_range)
6605 fprintf (outfile, " .. ");
6606 print_discr_value (outfile, &node->dw_discr_lower_bound);
6607 print_discr_value (outfile, &node->dw_discr_upper_bound);
6609 else
6610 print_discr_value (outfile, &node->dw_discr_lower_bound);
6612 if (node->dw_discr_next != NULL)
6613 fprintf (outfile, " | ");
6615 default:
6616 break;
6620 /* Likewise, for a DIE attribute. */
6622 static void
6623 print_attribute (dw_attr_node *a, bool recurse, FILE *outfile)
6625 print_dw_val (&a->dw_attr_val, recurse, outfile);
6629 /* Print the list of operands in the LOC location description to OUTFILE. This
6630 routine is a debugging aid only. */
6632 static void
6633 print_loc_descr (dw_loc_descr_ref loc, FILE *outfile)
6635 dw_loc_descr_ref l = loc;
6637 if (loc == NULL)
6639 print_spaces (outfile);
6640 fprintf (outfile, "<null>\n");
6641 return;
6644 for (l = loc; l != NULL; l = l->dw_loc_next)
6646 print_spaces (outfile);
6647 if (flag_dump_noaddr || flag_dump_unnumbered)
6648 fprintf (outfile, "#");
6649 else
6650 fprintf (outfile, "(%p)", (void *) l);
6651 fprintf (outfile, " %s",
6652 dwarf_stack_op_name (l->dw_loc_opc));
6653 if (l->dw_loc_oprnd1.val_class != dw_val_class_none)
6655 fprintf (outfile, " ");
6656 print_dw_val (&l->dw_loc_oprnd1, false, outfile);
6658 if (l->dw_loc_oprnd2.val_class != dw_val_class_none)
6660 fprintf (outfile, ", ");
6661 print_dw_val (&l->dw_loc_oprnd2, false, outfile);
6663 fprintf (outfile, "\n");
6667 /* Print the information associated with a given DIE, and its children.
6668 This routine is a debugging aid only. */
6670 static void
6671 print_die (dw_die_ref die, FILE *outfile)
6673 dw_attr_node *a;
6674 dw_die_ref c;
6675 unsigned ix;
6677 print_spaces (outfile);
6678 fprintf (outfile, "DIE %4ld: %s ",
6679 die->die_offset, dwarf_tag_name (die->die_tag));
6680 if (flag_dump_noaddr || flag_dump_unnumbered)
6681 fprintf (outfile, "#\n");
6682 else
6683 fprintf (outfile, "(%p)\n", (void*) die);
6684 print_spaces (outfile);
6685 fprintf (outfile, " abbrev id: %lu", die->die_abbrev);
6686 fprintf (outfile, " offset: %ld", die->die_offset);
6687 fprintf (outfile, " mark: %d\n", die->die_mark);
6689 if (die->comdat_type_p)
6691 print_spaces (outfile);
6692 fprintf (outfile, " signature: ");
6693 print_signature (outfile, die->die_id.die_type_node->signature);
6694 fprintf (outfile, "\n");
6697 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
6699 print_spaces (outfile);
6700 fprintf (outfile, " %s: ", dwarf_attr_name (a->dw_attr));
6702 print_attribute (a, true, outfile);
6703 fprintf (outfile, "\n");
6706 if (die->die_child != NULL)
6708 print_indent += 4;
6709 FOR_EACH_CHILD (die, c, print_die (c, outfile));
6710 print_indent -= 4;
6712 if (print_indent == 0)
6713 fprintf (outfile, "\n");
6716 /* Print the list of operations in the LOC location description. */
6718 DEBUG_FUNCTION void
6719 debug_dwarf_loc_descr (dw_loc_descr_ref loc)
6721 print_loc_descr (loc, stderr);
6724 /* Print the information collected for a given DIE. */
6726 DEBUG_FUNCTION void
6727 debug_dwarf_die (dw_die_ref die)
6729 print_die (die, stderr);
6732 DEBUG_FUNCTION void
6733 debug (die_struct &ref)
6735 print_die (&ref, stderr);
6738 DEBUG_FUNCTION void
6739 debug (die_struct *ptr)
6741 if (ptr)
6742 debug (*ptr);
6743 else
6744 fprintf (stderr, "<nil>\n");
6748 /* Print all DWARF information collected for the compilation unit.
6749 This routine is a debugging aid only. */
6751 DEBUG_FUNCTION void
6752 debug_dwarf (void)
6754 print_indent = 0;
6755 print_die (comp_unit_die (), stderr);
6758 /* Verify the DIE tree structure. */
6760 DEBUG_FUNCTION void
6761 verify_die (dw_die_ref die)
6763 gcc_assert (!die->die_mark);
6764 if (die->die_parent == NULL
6765 && die->die_sib == NULL)
6766 return;
6767 /* Verify the die_sib list is cyclic. */
6768 dw_die_ref x = die;
6771 x->die_mark = 1;
6772 x = x->die_sib;
6774 while (x && !x->die_mark);
6775 gcc_assert (x == die);
6776 x = die;
6779 /* Verify all dies have the same parent. */
6780 gcc_assert (x->die_parent == die->die_parent);
6781 if (x->die_child)
6783 /* Verify the child has the proper parent and recurse. */
6784 gcc_assert (x->die_child->die_parent == x);
6785 verify_die (x->die_child);
6787 x->die_mark = 0;
6788 x = x->die_sib;
6790 while (x && x->die_mark);
6793 /* Sanity checks on DIEs. */
6795 static void
6796 check_die (dw_die_ref die)
6798 unsigned ix;
6799 dw_attr_node *a;
6800 bool inline_found = false;
6801 int n_location = 0, n_low_pc = 0, n_high_pc = 0, n_artificial = 0;
6802 int n_decl_line = 0, n_decl_column = 0, n_decl_file = 0;
6803 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
6805 switch (a->dw_attr)
6807 case DW_AT_inline:
6808 if (a->dw_attr_val.v.val_unsigned)
6809 inline_found = true;
6810 break;
6811 case DW_AT_location:
6812 ++n_location;
6813 break;
6814 case DW_AT_low_pc:
6815 ++n_low_pc;
6816 break;
6817 case DW_AT_high_pc:
6818 ++n_high_pc;
6819 break;
6820 case DW_AT_artificial:
6821 ++n_artificial;
6822 break;
6823 case DW_AT_decl_column:
6824 ++n_decl_column;
6825 break;
6826 case DW_AT_decl_line:
6827 ++n_decl_line;
6828 break;
6829 case DW_AT_decl_file:
6830 ++n_decl_file;
6831 break;
6832 default:
6833 break;
6836 if (n_location > 1 || n_low_pc > 1 || n_high_pc > 1 || n_artificial > 1
6837 || n_decl_column > 1 || n_decl_line > 1 || n_decl_file > 1)
6839 fprintf (stderr, "Duplicate attributes in DIE:\n");
6840 debug_dwarf_die (die);
6841 gcc_unreachable ();
6843 if (inline_found)
6845 /* A debugging information entry that is a member of an abstract
6846 instance tree [that has DW_AT_inline] should not contain any
6847 attributes which describe aspects of the subroutine which vary
6848 between distinct inlined expansions or distinct out-of-line
6849 expansions. */
6850 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
6851 gcc_assert (a->dw_attr != DW_AT_low_pc
6852 && a->dw_attr != DW_AT_high_pc
6853 && a->dw_attr != DW_AT_location
6854 && a->dw_attr != DW_AT_frame_base
6855 && a->dw_attr != DW_AT_call_all_calls
6856 && a->dw_attr != DW_AT_GNU_all_call_sites);
6860 #define CHECKSUM(FOO) md5_process_bytes (&(FOO), sizeof (FOO), ctx)
6861 #define CHECKSUM_BLOCK(FOO, SIZE) md5_process_bytes ((FOO), (SIZE), ctx)
6862 #define CHECKSUM_STRING(FOO) md5_process_bytes ((FOO), strlen (FOO), ctx)
6864 /* Calculate the checksum of a location expression. */
6866 static inline void
6867 loc_checksum (dw_loc_descr_ref loc, struct md5_ctx *ctx)
6869 int tem;
6870 inchash::hash hstate;
6871 hashval_t hash;
6873 tem = (loc->dtprel << 8) | ((unsigned int) loc->dw_loc_opc);
6874 CHECKSUM (tem);
6875 hash_loc_operands (loc, hstate);
6876 hash = hstate.end();
6877 CHECKSUM (hash);
6880 /* Calculate the checksum of an attribute. */
6882 static void
6883 attr_checksum (dw_attr_node *at, struct md5_ctx *ctx, int *mark)
6885 dw_loc_descr_ref loc;
6886 rtx r;
6888 CHECKSUM (at->dw_attr);
6890 /* We don't care that this was compiled with a different compiler
6891 snapshot; if the output is the same, that's what matters. */
6892 if (at->dw_attr == DW_AT_producer)
6893 return;
6895 switch (AT_class (at))
6897 case dw_val_class_const:
6898 case dw_val_class_const_implicit:
6899 CHECKSUM (at->dw_attr_val.v.val_int);
6900 break;
6901 case dw_val_class_unsigned_const:
6902 case dw_val_class_unsigned_const_implicit:
6903 CHECKSUM (at->dw_attr_val.v.val_unsigned);
6904 break;
6905 case dw_val_class_const_double:
6906 CHECKSUM (at->dw_attr_val.v.val_double);
6907 break;
6908 case dw_val_class_wide_int:
6909 CHECKSUM_BLOCK (at->dw_attr_val.v.val_wide->get_val (),
6910 get_full_len (*at->dw_attr_val.v.val_wide)
6911 * HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR);
6912 break;
6913 case dw_val_class_vec:
6914 CHECKSUM_BLOCK (at->dw_attr_val.v.val_vec.array,
6915 (at->dw_attr_val.v.val_vec.length
6916 * at->dw_attr_val.v.val_vec.elt_size));
6917 break;
6918 case dw_val_class_flag:
6919 CHECKSUM (at->dw_attr_val.v.val_flag);
6920 break;
6921 case dw_val_class_str:
6922 CHECKSUM_STRING (AT_string (at));
6923 break;
6925 case dw_val_class_addr:
6926 r = AT_addr (at);
6927 gcc_assert (GET_CODE (r) == SYMBOL_REF);
6928 CHECKSUM_STRING (XSTR (r, 0));
6929 break;
6931 case dw_val_class_offset:
6932 CHECKSUM (at->dw_attr_val.v.val_offset);
6933 break;
6935 case dw_val_class_loc:
6936 for (loc = AT_loc (at); loc; loc = loc->dw_loc_next)
6937 loc_checksum (loc, ctx);
6938 break;
6940 case dw_val_class_die_ref:
6941 die_checksum (AT_ref (at), ctx, mark);
6942 break;
6944 case dw_val_class_fde_ref:
6945 case dw_val_class_vms_delta:
6946 case dw_val_class_symview:
6947 case dw_val_class_lbl_id:
6948 case dw_val_class_lineptr:
6949 case dw_val_class_macptr:
6950 case dw_val_class_loclistsptr:
6951 case dw_val_class_high_pc:
6952 break;
6954 case dw_val_class_file:
6955 case dw_val_class_file_implicit:
6956 CHECKSUM_STRING (AT_file (at)->filename);
6957 break;
6959 case dw_val_class_data8:
6960 CHECKSUM (at->dw_attr_val.v.val_data8);
6961 break;
6963 default:
6964 break;
6968 /* Calculate the checksum of a DIE. */
6970 static void
6971 die_checksum (dw_die_ref die, struct md5_ctx *ctx, int *mark)
6973 dw_die_ref c;
6974 dw_attr_node *a;
6975 unsigned ix;
6977 /* To avoid infinite recursion. */
6978 if (die->die_mark)
6980 CHECKSUM (die->die_mark);
6981 return;
6983 die->die_mark = ++(*mark);
6985 CHECKSUM (die->die_tag);
6987 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
6988 attr_checksum (a, ctx, mark);
6990 FOR_EACH_CHILD (die, c, die_checksum (c, ctx, mark));
6993 #undef CHECKSUM
6994 #undef CHECKSUM_BLOCK
6995 #undef CHECKSUM_STRING
6997 /* For DWARF-4 types, include the trailing NULL when checksumming strings. */
6998 #define CHECKSUM(FOO) md5_process_bytes (&(FOO), sizeof (FOO), ctx)
6999 #define CHECKSUM_BLOCK(FOO, SIZE) md5_process_bytes ((FOO), (SIZE), ctx)
7000 #define CHECKSUM_STRING(FOO) md5_process_bytes ((FOO), strlen (FOO) + 1, ctx)
7001 #define CHECKSUM_SLEB128(FOO) checksum_sleb128 ((FOO), ctx)
7002 #define CHECKSUM_ULEB128(FOO) checksum_uleb128 ((FOO), ctx)
7003 #define CHECKSUM_ATTR(FOO) \
7004 if (FOO) attr_checksum_ordered (die->die_tag, (FOO), ctx, mark)
7006 /* Calculate the checksum of a number in signed LEB128 format. */
7008 static void
7009 checksum_sleb128 (HOST_WIDE_INT value, struct md5_ctx *ctx)
7011 unsigned char byte;
7012 bool more;
7014 while (1)
7016 byte = (value & 0x7f);
7017 value >>= 7;
7018 more = !((value == 0 && (byte & 0x40) == 0)
7019 || (value == -1 && (byte & 0x40) != 0));
7020 if (more)
7021 byte |= 0x80;
7022 CHECKSUM (byte);
7023 if (!more)
7024 break;
7028 /* Calculate the checksum of a number in unsigned LEB128 format. */
7030 static void
7031 checksum_uleb128 (unsigned HOST_WIDE_INT value, struct md5_ctx *ctx)
7033 while (1)
7035 unsigned char byte = (value & 0x7f);
7036 value >>= 7;
7037 if (value != 0)
7038 /* More bytes to follow. */
7039 byte |= 0x80;
7040 CHECKSUM (byte);
7041 if (value == 0)
7042 break;
7046 /* Checksum the context of the DIE. This adds the names of any
7047 surrounding namespaces or structures to the checksum. */
7049 static void
7050 checksum_die_context (dw_die_ref die, struct md5_ctx *ctx)
7052 const char *name;
7053 dw_die_ref spec;
7054 int tag = die->die_tag;
7056 if (tag != DW_TAG_namespace
7057 && tag != DW_TAG_structure_type
7058 && tag != DW_TAG_class_type)
7059 return;
7061 name = get_AT_string (die, DW_AT_name);
7063 spec = get_AT_ref (die, DW_AT_specification);
7064 if (spec != NULL)
7065 die = spec;
7067 if (die->die_parent != NULL)
7068 checksum_die_context (die->die_parent, ctx);
7070 CHECKSUM_ULEB128 ('C');
7071 CHECKSUM_ULEB128 (tag);
7072 if (name != NULL)
7073 CHECKSUM_STRING (name);
7076 /* Calculate the checksum of a location expression. */
7078 static inline void
7079 loc_checksum_ordered (dw_loc_descr_ref loc, struct md5_ctx *ctx)
7081 /* Special case for lone DW_OP_plus_uconst: checksum as if the location
7082 were emitted as a DW_FORM_sdata instead of a location expression. */
7083 if (loc->dw_loc_opc == DW_OP_plus_uconst && loc->dw_loc_next == NULL)
7085 CHECKSUM_ULEB128 (DW_FORM_sdata);
7086 CHECKSUM_SLEB128 ((HOST_WIDE_INT) loc->dw_loc_oprnd1.v.val_unsigned);
7087 return;
7090 /* Otherwise, just checksum the raw location expression. */
7091 while (loc != NULL)
7093 inchash::hash hstate;
7094 hashval_t hash;
7096 CHECKSUM_ULEB128 (loc->dtprel);
7097 CHECKSUM_ULEB128 (loc->dw_loc_opc);
7098 hash_loc_operands (loc, hstate);
7099 hash = hstate.end ();
7100 CHECKSUM (hash);
7101 loc = loc->dw_loc_next;
7105 /* Calculate the checksum of an attribute. */
7107 static void
7108 attr_checksum_ordered (enum dwarf_tag tag, dw_attr_node *at,
7109 struct md5_ctx *ctx, int *mark)
7111 dw_loc_descr_ref loc;
7112 rtx r;
7114 if (AT_class (at) == dw_val_class_die_ref)
7116 dw_die_ref target_die = AT_ref (at);
7118 /* For pointer and reference types, we checksum only the (qualified)
7119 name of the target type (if there is a name). For friend entries,
7120 we checksum only the (qualified) name of the target type or function.
7121 This allows the checksum to remain the same whether the target type
7122 is complete or not. */
7123 if ((at->dw_attr == DW_AT_type
7124 && (tag == DW_TAG_pointer_type
7125 || tag == DW_TAG_reference_type
7126 || tag == DW_TAG_rvalue_reference_type
7127 || tag == DW_TAG_ptr_to_member_type))
7128 || (at->dw_attr == DW_AT_friend
7129 && tag == DW_TAG_friend))
7131 dw_attr_node *name_attr = get_AT (target_die, DW_AT_name);
7133 if (name_attr != NULL)
7135 dw_die_ref decl = get_AT_ref (target_die, DW_AT_specification);
7137 if (decl == NULL)
7138 decl = target_die;
7139 CHECKSUM_ULEB128 ('N');
7140 CHECKSUM_ULEB128 (at->dw_attr);
7141 if (decl->die_parent != NULL)
7142 checksum_die_context (decl->die_parent, ctx);
7143 CHECKSUM_ULEB128 ('E');
7144 CHECKSUM_STRING (AT_string (name_attr));
7145 return;
7149 /* For all other references to another DIE, we check to see if the
7150 target DIE has already been visited. If it has, we emit a
7151 backward reference; if not, we descend recursively. */
7152 if (target_die->die_mark > 0)
7154 CHECKSUM_ULEB128 ('R');
7155 CHECKSUM_ULEB128 (at->dw_attr);
7156 CHECKSUM_ULEB128 (target_die->die_mark);
7158 else
7160 dw_die_ref decl = get_AT_ref (target_die, DW_AT_specification);
7162 if (decl == NULL)
7163 decl = target_die;
7164 target_die->die_mark = ++(*mark);
7165 CHECKSUM_ULEB128 ('T');
7166 CHECKSUM_ULEB128 (at->dw_attr);
7167 if (decl->die_parent != NULL)
7168 checksum_die_context (decl->die_parent, ctx);
7169 die_checksum_ordered (target_die, ctx, mark);
7171 return;
7174 CHECKSUM_ULEB128 ('A');
7175 CHECKSUM_ULEB128 (at->dw_attr);
7177 switch (AT_class (at))
7179 case dw_val_class_const:
7180 case dw_val_class_const_implicit:
7181 CHECKSUM_ULEB128 (DW_FORM_sdata);
7182 CHECKSUM_SLEB128 (at->dw_attr_val.v.val_int);
7183 break;
7185 case dw_val_class_unsigned_const:
7186 case dw_val_class_unsigned_const_implicit:
7187 CHECKSUM_ULEB128 (DW_FORM_sdata);
7188 CHECKSUM_SLEB128 ((int) at->dw_attr_val.v.val_unsigned);
7189 break;
7191 case dw_val_class_const_double:
7192 CHECKSUM_ULEB128 (DW_FORM_block);
7193 CHECKSUM_ULEB128 (sizeof (at->dw_attr_val.v.val_double));
7194 CHECKSUM (at->dw_attr_val.v.val_double);
7195 break;
7197 case dw_val_class_wide_int:
7198 CHECKSUM_ULEB128 (DW_FORM_block);
7199 CHECKSUM_ULEB128 (get_full_len (*at->dw_attr_val.v.val_wide)
7200 * HOST_BITS_PER_WIDE_INT / BITS_PER_UNIT);
7201 CHECKSUM_BLOCK (at->dw_attr_val.v.val_wide->get_val (),
7202 get_full_len (*at->dw_attr_val.v.val_wide)
7203 * HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR);
7204 break;
7206 case dw_val_class_vec:
7207 CHECKSUM_ULEB128 (DW_FORM_block);
7208 CHECKSUM_ULEB128 (at->dw_attr_val.v.val_vec.length
7209 * at->dw_attr_val.v.val_vec.elt_size);
7210 CHECKSUM_BLOCK (at->dw_attr_val.v.val_vec.array,
7211 (at->dw_attr_val.v.val_vec.length
7212 * at->dw_attr_val.v.val_vec.elt_size));
7213 break;
7215 case dw_val_class_flag:
7216 CHECKSUM_ULEB128 (DW_FORM_flag);
7217 CHECKSUM_ULEB128 (at->dw_attr_val.v.val_flag ? 1 : 0);
7218 break;
7220 case dw_val_class_str:
7221 CHECKSUM_ULEB128 (DW_FORM_string);
7222 CHECKSUM_STRING (AT_string (at));
7223 break;
7225 case dw_val_class_addr:
7226 r = AT_addr (at);
7227 gcc_assert (GET_CODE (r) == SYMBOL_REF);
7228 CHECKSUM_ULEB128 (DW_FORM_string);
7229 CHECKSUM_STRING (XSTR (r, 0));
7230 break;
7232 case dw_val_class_offset:
7233 CHECKSUM_ULEB128 (DW_FORM_sdata);
7234 CHECKSUM_ULEB128 (at->dw_attr_val.v.val_offset);
7235 break;
7237 case dw_val_class_loc:
7238 for (loc = AT_loc (at); loc; loc = loc->dw_loc_next)
7239 loc_checksum_ordered (loc, ctx);
7240 break;
7242 case dw_val_class_fde_ref:
7243 case dw_val_class_symview:
7244 case dw_val_class_lbl_id:
7245 case dw_val_class_lineptr:
7246 case dw_val_class_macptr:
7247 case dw_val_class_loclistsptr:
7248 case dw_val_class_high_pc:
7249 break;
7251 case dw_val_class_file:
7252 case dw_val_class_file_implicit:
7253 CHECKSUM_ULEB128 (DW_FORM_string);
7254 CHECKSUM_STRING (AT_file (at)->filename);
7255 break;
7257 case dw_val_class_data8:
7258 CHECKSUM (at->dw_attr_val.v.val_data8);
7259 break;
7261 default:
7262 break;
7266 struct checksum_attributes
7268 dw_attr_node *at_name;
7269 dw_attr_node *at_type;
7270 dw_attr_node *at_friend;
7271 dw_attr_node *at_accessibility;
7272 dw_attr_node *at_address_class;
7273 dw_attr_node *at_alignment;
7274 dw_attr_node *at_allocated;
7275 dw_attr_node *at_artificial;
7276 dw_attr_node *at_associated;
7277 dw_attr_node *at_binary_scale;
7278 dw_attr_node *at_bit_offset;
7279 dw_attr_node *at_bit_size;
7280 dw_attr_node *at_bit_stride;
7281 dw_attr_node *at_byte_size;
7282 dw_attr_node *at_byte_stride;
7283 dw_attr_node *at_const_value;
7284 dw_attr_node *at_containing_type;
7285 dw_attr_node *at_count;
7286 dw_attr_node *at_data_location;
7287 dw_attr_node *at_data_member_location;
7288 dw_attr_node *at_decimal_scale;
7289 dw_attr_node *at_decimal_sign;
7290 dw_attr_node *at_default_value;
7291 dw_attr_node *at_digit_count;
7292 dw_attr_node *at_discr;
7293 dw_attr_node *at_discr_list;
7294 dw_attr_node *at_discr_value;
7295 dw_attr_node *at_encoding;
7296 dw_attr_node *at_endianity;
7297 dw_attr_node *at_explicit;
7298 dw_attr_node *at_is_optional;
7299 dw_attr_node *at_location;
7300 dw_attr_node *at_lower_bound;
7301 dw_attr_node *at_mutable;
7302 dw_attr_node *at_ordering;
7303 dw_attr_node *at_picture_string;
7304 dw_attr_node *at_prototyped;
7305 dw_attr_node *at_small;
7306 dw_attr_node *at_segment;
7307 dw_attr_node *at_string_length;
7308 dw_attr_node *at_string_length_bit_size;
7309 dw_attr_node *at_string_length_byte_size;
7310 dw_attr_node *at_threads_scaled;
7311 dw_attr_node *at_upper_bound;
7312 dw_attr_node *at_use_location;
7313 dw_attr_node *at_use_UTF8;
7314 dw_attr_node *at_variable_parameter;
7315 dw_attr_node *at_virtuality;
7316 dw_attr_node *at_visibility;
7317 dw_attr_node *at_vtable_elem_location;
7320 /* Collect the attributes that we will want to use for the checksum. */
7322 static void
7323 collect_checksum_attributes (struct checksum_attributes *attrs, dw_die_ref die)
7325 dw_attr_node *a;
7326 unsigned ix;
7328 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
7330 switch (a->dw_attr)
7332 case DW_AT_name:
7333 attrs->at_name = a;
7334 break;
7335 case DW_AT_type:
7336 attrs->at_type = a;
7337 break;
7338 case DW_AT_friend:
7339 attrs->at_friend = a;
7340 break;
7341 case DW_AT_accessibility:
7342 attrs->at_accessibility = a;
7343 break;
7344 case DW_AT_address_class:
7345 attrs->at_address_class = a;
7346 break;
7347 case DW_AT_alignment:
7348 attrs->at_alignment = a;
7349 break;
7350 case DW_AT_allocated:
7351 attrs->at_allocated = a;
7352 break;
7353 case DW_AT_artificial:
7354 attrs->at_artificial = a;
7355 break;
7356 case DW_AT_associated:
7357 attrs->at_associated = a;
7358 break;
7359 case DW_AT_binary_scale:
7360 attrs->at_binary_scale = a;
7361 break;
7362 case DW_AT_bit_offset:
7363 attrs->at_bit_offset = a;
7364 break;
7365 case DW_AT_bit_size:
7366 attrs->at_bit_size = a;
7367 break;
7368 case DW_AT_bit_stride:
7369 attrs->at_bit_stride = a;
7370 break;
7371 case DW_AT_byte_size:
7372 attrs->at_byte_size = a;
7373 break;
7374 case DW_AT_byte_stride:
7375 attrs->at_byte_stride = a;
7376 break;
7377 case DW_AT_const_value:
7378 attrs->at_const_value = a;
7379 break;
7380 case DW_AT_containing_type:
7381 attrs->at_containing_type = a;
7382 break;
7383 case DW_AT_count:
7384 attrs->at_count = a;
7385 break;
7386 case DW_AT_data_location:
7387 attrs->at_data_location = a;
7388 break;
7389 case DW_AT_data_member_location:
7390 attrs->at_data_member_location = a;
7391 break;
7392 case DW_AT_decimal_scale:
7393 attrs->at_decimal_scale = a;
7394 break;
7395 case DW_AT_decimal_sign:
7396 attrs->at_decimal_sign = a;
7397 break;
7398 case DW_AT_default_value:
7399 attrs->at_default_value = a;
7400 break;
7401 case DW_AT_digit_count:
7402 attrs->at_digit_count = a;
7403 break;
7404 case DW_AT_discr:
7405 attrs->at_discr = a;
7406 break;
7407 case DW_AT_discr_list:
7408 attrs->at_discr_list = a;
7409 break;
7410 case DW_AT_discr_value:
7411 attrs->at_discr_value = a;
7412 break;
7413 case DW_AT_encoding:
7414 attrs->at_encoding = a;
7415 break;
7416 case DW_AT_endianity:
7417 attrs->at_endianity = a;
7418 break;
7419 case DW_AT_explicit:
7420 attrs->at_explicit = a;
7421 break;
7422 case DW_AT_is_optional:
7423 attrs->at_is_optional = a;
7424 break;
7425 case DW_AT_location:
7426 attrs->at_location = a;
7427 break;
7428 case DW_AT_lower_bound:
7429 attrs->at_lower_bound = a;
7430 break;
7431 case DW_AT_mutable:
7432 attrs->at_mutable = a;
7433 break;
7434 case DW_AT_ordering:
7435 attrs->at_ordering = a;
7436 break;
7437 case DW_AT_picture_string:
7438 attrs->at_picture_string = a;
7439 break;
7440 case DW_AT_prototyped:
7441 attrs->at_prototyped = a;
7442 break;
7443 case DW_AT_small:
7444 attrs->at_small = a;
7445 break;
7446 case DW_AT_segment:
7447 attrs->at_segment = a;
7448 break;
7449 case DW_AT_string_length:
7450 attrs->at_string_length = a;
7451 break;
7452 case DW_AT_string_length_bit_size:
7453 attrs->at_string_length_bit_size = a;
7454 break;
7455 case DW_AT_string_length_byte_size:
7456 attrs->at_string_length_byte_size = a;
7457 break;
7458 case DW_AT_threads_scaled:
7459 attrs->at_threads_scaled = a;
7460 break;
7461 case DW_AT_upper_bound:
7462 attrs->at_upper_bound = a;
7463 break;
7464 case DW_AT_use_location:
7465 attrs->at_use_location = a;
7466 break;
7467 case DW_AT_use_UTF8:
7468 attrs->at_use_UTF8 = a;
7469 break;
7470 case DW_AT_variable_parameter:
7471 attrs->at_variable_parameter = a;
7472 break;
7473 case DW_AT_virtuality:
7474 attrs->at_virtuality = a;
7475 break;
7476 case DW_AT_visibility:
7477 attrs->at_visibility = a;
7478 break;
7479 case DW_AT_vtable_elem_location:
7480 attrs->at_vtable_elem_location = a;
7481 break;
7482 default:
7483 break;
7488 /* Calculate the checksum of a DIE, using an ordered subset of attributes. */
7490 static void
7491 die_checksum_ordered (dw_die_ref die, struct md5_ctx *ctx, int *mark)
7493 dw_die_ref c;
7494 dw_die_ref decl;
7495 struct checksum_attributes attrs;
7497 CHECKSUM_ULEB128 ('D');
7498 CHECKSUM_ULEB128 (die->die_tag);
7500 memset (&attrs, 0, sizeof (attrs));
7502 decl = get_AT_ref (die, DW_AT_specification);
7503 if (decl != NULL)
7504 collect_checksum_attributes (&attrs, decl);
7505 collect_checksum_attributes (&attrs, die);
7507 CHECKSUM_ATTR (attrs.at_name);
7508 CHECKSUM_ATTR (attrs.at_accessibility);
7509 CHECKSUM_ATTR (attrs.at_address_class);
7510 CHECKSUM_ATTR (attrs.at_allocated);
7511 CHECKSUM_ATTR (attrs.at_artificial);
7512 CHECKSUM_ATTR (attrs.at_associated);
7513 CHECKSUM_ATTR (attrs.at_binary_scale);
7514 CHECKSUM_ATTR (attrs.at_bit_offset);
7515 CHECKSUM_ATTR (attrs.at_bit_size);
7516 CHECKSUM_ATTR (attrs.at_bit_stride);
7517 CHECKSUM_ATTR (attrs.at_byte_size);
7518 CHECKSUM_ATTR (attrs.at_byte_stride);
7519 CHECKSUM_ATTR (attrs.at_const_value);
7520 CHECKSUM_ATTR (attrs.at_containing_type);
7521 CHECKSUM_ATTR (attrs.at_count);
7522 CHECKSUM_ATTR (attrs.at_data_location);
7523 CHECKSUM_ATTR (attrs.at_data_member_location);
7524 CHECKSUM_ATTR (attrs.at_decimal_scale);
7525 CHECKSUM_ATTR (attrs.at_decimal_sign);
7526 CHECKSUM_ATTR (attrs.at_default_value);
7527 CHECKSUM_ATTR (attrs.at_digit_count);
7528 CHECKSUM_ATTR (attrs.at_discr);
7529 CHECKSUM_ATTR (attrs.at_discr_list);
7530 CHECKSUM_ATTR (attrs.at_discr_value);
7531 CHECKSUM_ATTR (attrs.at_encoding);
7532 CHECKSUM_ATTR (attrs.at_endianity);
7533 CHECKSUM_ATTR (attrs.at_explicit);
7534 CHECKSUM_ATTR (attrs.at_is_optional);
7535 CHECKSUM_ATTR (attrs.at_location);
7536 CHECKSUM_ATTR (attrs.at_lower_bound);
7537 CHECKSUM_ATTR (attrs.at_mutable);
7538 CHECKSUM_ATTR (attrs.at_ordering);
7539 CHECKSUM_ATTR (attrs.at_picture_string);
7540 CHECKSUM_ATTR (attrs.at_prototyped);
7541 CHECKSUM_ATTR (attrs.at_small);
7542 CHECKSUM_ATTR (attrs.at_segment);
7543 CHECKSUM_ATTR (attrs.at_string_length);
7544 CHECKSUM_ATTR (attrs.at_string_length_bit_size);
7545 CHECKSUM_ATTR (attrs.at_string_length_byte_size);
7546 CHECKSUM_ATTR (attrs.at_threads_scaled);
7547 CHECKSUM_ATTR (attrs.at_upper_bound);
7548 CHECKSUM_ATTR (attrs.at_use_location);
7549 CHECKSUM_ATTR (attrs.at_use_UTF8);
7550 CHECKSUM_ATTR (attrs.at_variable_parameter);
7551 CHECKSUM_ATTR (attrs.at_virtuality);
7552 CHECKSUM_ATTR (attrs.at_visibility);
7553 CHECKSUM_ATTR (attrs.at_vtable_elem_location);
7554 CHECKSUM_ATTR (attrs.at_type);
7555 CHECKSUM_ATTR (attrs.at_friend);
7556 CHECKSUM_ATTR (attrs.at_alignment);
7558 /* Checksum the child DIEs. */
7559 c = die->die_child;
7560 if (c) do {
7561 dw_attr_node *name_attr;
7563 c = c->die_sib;
7564 name_attr = get_AT (c, DW_AT_name);
7565 if (is_template_instantiation (c))
7567 /* Ignore instantiations of member type and function templates. */
7569 else if (name_attr != NULL
7570 && (is_type_die (c) || c->die_tag == DW_TAG_subprogram))
7572 /* Use a shallow checksum for named nested types and member
7573 functions. */
7574 CHECKSUM_ULEB128 ('S');
7575 CHECKSUM_ULEB128 (c->die_tag);
7576 CHECKSUM_STRING (AT_string (name_attr));
7578 else
7580 /* Use a deep checksum for other children. */
7581 /* Mark this DIE so it gets processed when unmarking. */
7582 if (c->die_mark == 0)
7583 c->die_mark = -1;
7584 die_checksum_ordered (c, ctx, mark);
7586 } while (c != die->die_child);
7588 CHECKSUM_ULEB128 (0);
7591 /* Add a type name and tag to a hash. */
7592 static void
7593 die_odr_checksum (int tag, const char *name, md5_ctx *ctx)
7595 CHECKSUM_ULEB128 (tag);
7596 CHECKSUM_STRING (name);
7599 #undef CHECKSUM
7600 #undef CHECKSUM_STRING
7601 #undef CHECKSUM_ATTR
7602 #undef CHECKSUM_LEB128
7603 #undef CHECKSUM_ULEB128
7605 /* Generate the type signature for DIE. This is computed by generating an
7606 MD5 checksum over the DIE's tag, its relevant attributes, and its
7607 children. Attributes that are references to other DIEs are processed
7608 by recursion, using the MARK field to prevent infinite recursion.
7609 If the DIE is nested inside a namespace or another type, we also
7610 need to include that context in the signature. The lower 64 bits
7611 of the resulting MD5 checksum comprise the signature. */
7613 static void
7614 generate_type_signature (dw_die_ref die, comdat_type_node *type_node)
7616 int mark;
7617 const char *name;
7618 unsigned char checksum[16];
7619 struct md5_ctx ctx;
7620 dw_die_ref decl;
7621 dw_die_ref parent;
7623 name = get_AT_string (die, DW_AT_name);
7624 decl = get_AT_ref (die, DW_AT_specification);
7625 parent = get_die_parent (die);
7627 /* First, compute a signature for just the type name (and its surrounding
7628 context, if any. This is stored in the type unit DIE for link-time
7629 ODR (one-definition rule) checking. */
7631 if (is_cxx () && name != NULL)
7633 md5_init_ctx (&ctx);
7635 /* Checksum the names of surrounding namespaces and structures. */
7636 if (parent != NULL)
7637 checksum_die_context (parent, &ctx);
7639 /* Checksum the current DIE. */
7640 die_odr_checksum (die->die_tag, name, &ctx);
7641 md5_finish_ctx (&ctx, checksum);
7643 add_AT_data8 (type_node->root_die, DW_AT_GNU_odr_signature, &checksum[8]);
7646 /* Next, compute the complete type signature. */
7648 md5_init_ctx (&ctx);
7649 mark = 1;
7650 die->die_mark = mark;
7652 /* Checksum the names of surrounding namespaces and structures. */
7653 if (parent != NULL)
7654 checksum_die_context (parent, &ctx);
7656 /* Checksum the DIE and its children. */
7657 die_checksum_ordered (die, &ctx, &mark);
7658 unmark_all_dies (die);
7659 md5_finish_ctx (&ctx, checksum);
7661 /* Store the signature in the type node and link the type DIE and the
7662 type node together. */
7663 memcpy (type_node->signature, &checksum[16 - DWARF_TYPE_SIGNATURE_SIZE],
7664 DWARF_TYPE_SIGNATURE_SIZE);
7665 die->comdat_type_p = true;
7666 die->die_id.die_type_node = type_node;
7667 type_node->type_die = die;
7669 /* If the DIE is a specification, link its declaration to the type node
7670 as well. */
7671 if (decl != NULL)
7673 decl->comdat_type_p = true;
7674 decl->die_id.die_type_node = type_node;
7678 /* Do the location expressions look same? */
7679 static inline int
7680 same_loc_p (dw_loc_descr_ref loc1, dw_loc_descr_ref loc2, int *mark)
7682 return loc1->dw_loc_opc == loc2->dw_loc_opc
7683 && same_dw_val_p (&loc1->dw_loc_oprnd1, &loc2->dw_loc_oprnd1, mark)
7684 && same_dw_val_p (&loc1->dw_loc_oprnd2, &loc2->dw_loc_oprnd2, mark);
7687 /* Do the values look the same? */
7688 static int
7689 same_dw_val_p (const dw_val_node *v1, const dw_val_node *v2, int *mark)
7691 dw_loc_descr_ref loc1, loc2;
7692 rtx r1, r2;
7694 if (v1->val_class != v2->val_class)
7695 return 0;
7697 switch (v1->val_class)
7699 case dw_val_class_const:
7700 case dw_val_class_const_implicit:
7701 return v1->v.val_int == v2->v.val_int;
7702 case dw_val_class_unsigned_const:
7703 case dw_val_class_unsigned_const_implicit:
7704 return v1->v.val_unsigned == v2->v.val_unsigned;
7705 case dw_val_class_const_double:
7706 return v1->v.val_double.high == v2->v.val_double.high
7707 && v1->v.val_double.low == v2->v.val_double.low;
7708 case dw_val_class_wide_int:
7709 return *v1->v.val_wide == *v2->v.val_wide;
7710 case dw_val_class_vec:
7711 if (v1->v.val_vec.length != v2->v.val_vec.length
7712 || v1->v.val_vec.elt_size != v2->v.val_vec.elt_size)
7713 return 0;
7714 if (memcmp (v1->v.val_vec.array, v2->v.val_vec.array,
7715 v1->v.val_vec.length * v1->v.val_vec.elt_size))
7716 return 0;
7717 return 1;
7718 case dw_val_class_flag:
7719 return v1->v.val_flag == v2->v.val_flag;
7720 case dw_val_class_str:
7721 return !strcmp (v1->v.val_str->str, v2->v.val_str->str);
7723 case dw_val_class_addr:
7724 r1 = v1->v.val_addr;
7725 r2 = v2->v.val_addr;
7726 if (GET_CODE (r1) != GET_CODE (r2))
7727 return 0;
7728 return !rtx_equal_p (r1, r2);
7730 case dw_val_class_offset:
7731 return v1->v.val_offset == v2->v.val_offset;
7733 case dw_val_class_loc:
7734 for (loc1 = v1->v.val_loc, loc2 = v2->v.val_loc;
7735 loc1 && loc2;
7736 loc1 = loc1->dw_loc_next, loc2 = loc2->dw_loc_next)
7737 if (!same_loc_p (loc1, loc2, mark))
7738 return 0;
7739 return !loc1 && !loc2;
7741 case dw_val_class_die_ref:
7742 return same_die_p (v1->v.val_die_ref.die, v2->v.val_die_ref.die, mark);
7744 case dw_val_class_symview:
7745 return strcmp (v1->v.val_symbolic_view, v2->v.val_symbolic_view) == 0;
7747 case dw_val_class_fde_ref:
7748 case dw_val_class_vms_delta:
7749 case dw_val_class_lbl_id:
7750 case dw_val_class_lineptr:
7751 case dw_val_class_macptr:
7752 case dw_val_class_loclistsptr:
7753 case dw_val_class_high_pc:
7754 return 1;
7756 case dw_val_class_file:
7757 case dw_val_class_file_implicit:
7758 return v1->v.val_file == v2->v.val_file;
7760 case dw_val_class_data8:
7761 return !memcmp (v1->v.val_data8, v2->v.val_data8, 8);
7763 default:
7764 return 1;
7768 /* Do the attributes look the same? */
7770 static int
7771 same_attr_p (dw_attr_node *at1, dw_attr_node *at2, int *mark)
7773 if (at1->dw_attr != at2->dw_attr)
7774 return 0;
7776 /* We don't care that this was compiled with a different compiler
7777 snapshot; if the output is the same, that's what matters. */
7778 if (at1->dw_attr == DW_AT_producer)
7779 return 1;
7781 return same_dw_val_p (&at1->dw_attr_val, &at2->dw_attr_val, mark);
7784 /* Do the dies look the same? */
7786 static int
7787 same_die_p (dw_die_ref die1, dw_die_ref die2, int *mark)
7789 dw_die_ref c1, c2;
7790 dw_attr_node *a1;
7791 unsigned ix;
7793 /* To avoid infinite recursion. */
7794 if (die1->die_mark)
7795 return die1->die_mark == die2->die_mark;
7796 die1->die_mark = die2->die_mark = ++(*mark);
7798 if (die1->die_tag != die2->die_tag)
7799 return 0;
7801 if (vec_safe_length (die1->die_attr) != vec_safe_length (die2->die_attr))
7802 return 0;
7804 FOR_EACH_VEC_SAFE_ELT (die1->die_attr, ix, a1)
7805 if (!same_attr_p (a1, &(*die2->die_attr)[ix], mark))
7806 return 0;
7808 c1 = die1->die_child;
7809 c2 = die2->die_child;
7810 if (! c1)
7812 if (c2)
7813 return 0;
7815 else
7816 for (;;)
7818 if (!same_die_p (c1, c2, mark))
7819 return 0;
7820 c1 = c1->die_sib;
7821 c2 = c2->die_sib;
7822 if (c1 == die1->die_child)
7824 if (c2 == die2->die_child)
7825 break;
7826 else
7827 return 0;
7831 return 1;
7834 /* Calculate the MD5 checksum of the compilation unit DIE UNIT_DIE and its
7835 children, and set die_symbol. */
7837 static void
7838 compute_comp_unit_symbol (dw_die_ref unit_die)
7840 const char *die_name = get_AT_string (unit_die, DW_AT_name);
7841 const char *base = die_name ? lbasename (die_name) : "anonymous";
7842 char *name = XALLOCAVEC (char, strlen (base) + 64);
7843 char *p;
7844 int i, mark;
7845 unsigned char checksum[16];
7846 struct md5_ctx ctx;
7848 /* Compute the checksum of the DIE, then append part of it as hex digits to
7849 the name filename of the unit. */
7851 md5_init_ctx (&ctx);
7852 mark = 0;
7853 die_checksum (unit_die, &ctx, &mark);
7854 unmark_all_dies (unit_die);
7855 md5_finish_ctx (&ctx, checksum);
7857 /* When we this for comp_unit_die () we have a DW_AT_name that might
7858 not start with a letter but with anything valid for filenames and
7859 clean_symbol_name doesn't fix that up. Prepend 'g' if the first
7860 character is not a letter. */
7861 sprintf (name, "%s%s.", ISALPHA (*base) ? "" : "g", base);
7862 clean_symbol_name (name);
7864 p = name + strlen (name);
7865 for (i = 0; i < 4; i++)
7867 sprintf (p, "%.2x", checksum[i]);
7868 p += 2;
7871 unit_die->die_id.die_symbol = xstrdup (name);
7874 /* Returns nonzero if DIE represents a type, in the sense of TYPE_P. */
7876 static int
7877 is_type_die (dw_die_ref die)
7879 switch (die->die_tag)
7881 case DW_TAG_array_type:
7882 case DW_TAG_class_type:
7883 case DW_TAG_interface_type:
7884 case DW_TAG_enumeration_type:
7885 case DW_TAG_pointer_type:
7886 case DW_TAG_reference_type:
7887 case DW_TAG_rvalue_reference_type:
7888 case DW_TAG_string_type:
7889 case DW_TAG_structure_type:
7890 case DW_TAG_subroutine_type:
7891 case DW_TAG_union_type:
7892 case DW_TAG_ptr_to_member_type:
7893 case DW_TAG_set_type:
7894 case DW_TAG_subrange_type:
7895 case DW_TAG_base_type:
7896 case DW_TAG_const_type:
7897 case DW_TAG_file_type:
7898 case DW_TAG_packed_type:
7899 case DW_TAG_volatile_type:
7900 case DW_TAG_typedef:
7901 return 1;
7902 default:
7903 return 0;
7907 /* Returns true iff C is a compile-unit DIE. */
7909 static inline bool
7910 is_cu_die (dw_die_ref c)
7912 return c && (c->die_tag == DW_TAG_compile_unit
7913 || c->die_tag == DW_TAG_skeleton_unit);
7916 /* Returns true iff C is a unit DIE of some sort. */
7918 static inline bool
7919 is_unit_die (dw_die_ref c)
7921 return c && (c->die_tag == DW_TAG_compile_unit
7922 || c->die_tag == DW_TAG_partial_unit
7923 || c->die_tag == DW_TAG_type_unit
7924 || c->die_tag == DW_TAG_skeleton_unit);
7927 /* Returns true iff C is a namespace DIE. */
7929 static inline bool
7930 is_namespace_die (dw_die_ref c)
7932 return c && c->die_tag == DW_TAG_namespace;
7935 /* Return non-zero if this DIE is a template parameter. */
7937 static inline bool
7938 is_template_parameter (dw_die_ref die)
7940 switch (die->die_tag)
7942 case DW_TAG_template_type_param:
7943 case DW_TAG_template_value_param:
7944 case DW_TAG_GNU_template_template_param:
7945 case DW_TAG_GNU_template_parameter_pack:
7946 return true;
7947 default:
7948 return false;
7952 /* Return non-zero if this DIE represents a template instantiation. */
7954 static inline bool
7955 is_template_instantiation (dw_die_ref die)
7957 dw_die_ref c;
7959 if (!is_type_die (die) && die->die_tag != DW_TAG_subprogram)
7960 return false;
7961 FOR_EACH_CHILD (die, c, if (is_template_parameter (c)) return true);
7962 return false;
7965 static char *
7966 gen_internal_sym (const char *prefix)
7968 char buf[MAX_ARTIFICIAL_LABEL_BYTES];
7970 ASM_GENERATE_INTERNAL_LABEL (buf, prefix, label_num++);
7971 return xstrdup (buf);
7974 /* Return non-zero if this DIE is a declaration. */
7976 static int
7977 is_declaration_die (dw_die_ref die)
7979 dw_attr_node *a;
7980 unsigned ix;
7982 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
7983 if (a->dw_attr == DW_AT_declaration)
7984 return 1;
7986 return 0;
7989 /* Return non-zero if this DIE is nested inside a subprogram. */
7991 static int
7992 is_nested_in_subprogram (dw_die_ref die)
7994 dw_die_ref decl = get_AT_ref (die, DW_AT_specification);
7996 if (decl == NULL)
7997 decl = die;
7998 return local_scope_p (decl);
8001 /* Return non-zero if this DIE contains a defining declaration of a
8002 subprogram. */
8004 static int
8005 contains_subprogram_definition (dw_die_ref die)
8007 dw_die_ref c;
8009 if (die->die_tag == DW_TAG_subprogram && ! is_declaration_die (die))
8010 return 1;
8011 FOR_EACH_CHILD (die, c, if (contains_subprogram_definition (c)) return 1);
8012 return 0;
8015 /* Return non-zero if this is a type DIE that should be moved to a
8016 COMDAT .debug_types section or .debug_info section with DW_UT_*type
8017 unit type. */
8019 static int
8020 should_move_die_to_comdat (dw_die_ref die)
8022 switch (die->die_tag)
8024 case DW_TAG_class_type:
8025 case DW_TAG_structure_type:
8026 case DW_TAG_enumeration_type:
8027 case DW_TAG_union_type:
8028 /* Don't move declarations, inlined instances, types nested in a
8029 subprogram, or types that contain subprogram definitions. */
8030 if (is_declaration_die (die)
8031 || get_AT (die, DW_AT_abstract_origin)
8032 || is_nested_in_subprogram (die)
8033 || contains_subprogram_definition (die))
8034 return 0;
8035 return 1;
8036 case DW_TAG_array_type:
8037 case DW_TAG_interface_type:
8038 case DW_TAG_pointer_type:
8039 case DW_TAG_reference_type:
8040 case DW_TAG_rvalue_reference_type:
8041 case DW_TAG_string_type:
8042 case DW_TAG_subroutine_type:
8043 case DW_TAG_ptr_to_member_type:
8044 case DW_TAG_set_type:
8045 case DW_TAG_subrange_type:
8046 case DW_TAG_base_type:
8047 case DW_TAG_const_type:
8048 case DW_TAG_file_type:
8049 case DW_TAG_packed_type:
8050 case DW_TAG_volatile_type:
8051 case DW_TAG_typedef:
8052 default:
8053 return 0;
8057 /* Make a clone of DIE. */
8059 static dw_die_ref
8060 clone_die (dw_die_ref die)
8062 dw_die_ref clone = new_die_raw (die->die_tag);
8063 dw_attr_node *a;
8064 unsigned ix;
8066 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
8067 add_dwarf_attr (clone, a);
8069 return clone;
8072 /* Make a clone of the tree rooted at DIE. */
8074 static dw_die_ref
8075 clone_tree (dw_die_ref die)
8077 dw_die_ref c;
8078 dw_die_ref clone = clone_die (die);
8080 FOR_EACH_CHILD (die, c, add_child_die (clone, clone_tree (c)));
8082 return clone;
8085 /* Make a clone of DIE as a declaration. */
8087 static dw_die_ref
8088 clone_as_declaration (dw_die_ref die)
8090 dw_die_ref clone;
8091 dw_die_ref decl;
8092 dw_attr_node *a;
8093 unsigned ix;
8095 /* If the DIE is already a declaration, just clone it. */
8096 if (is_declaration_die (die))
8097 return clone_die (die);
8099 /* If the DIE is a specification, just clone its declaration DIE. */
8100 decl = get_AT_ref (die, DW_AT_specification);
8101 if (decl != NULL)
8103 clone = clone_die (decl);
8104 if (die->comdat_type_p)
8105 add_AT_die_ref (clone, DW_AT_signature, die);
8106 return clone;
8109 clone = new_die_raw (die->die_tag);
8111 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
8113 /* We don't want to copy over all attributes.
8114 For example we don't want DW_AT_byte_size because otherwise we will no
8115 longer have a declaration and GDB will treat it as a definition. */
8117 switch (a->dw_attr)
8119 case DW_AT_abstract_origin:
8120 case DW_AT_artificial:
8121 case DW_AT_containing_type:
8122 case DW_AT_external:
8123 case DW_AT_name:
8124 case DW_AT_type:
8125 case DW_AT_virtuality:
8126 case DW_AT_linkage_name:
8127 case DW_AT_MIPS_linkage_name:
8128 add_dwarf_attr (clone, a);
8129 break;
8130 case DW_AT_byte_size:
8131 case DW_AT_alignment:
8132 default:
8133 break;
8137 if (die->comdat_type_p)
8138 add_AT_die_ref (clone, DW_AT_signature, die);
8140 add_AT_flag (clone, DW_AT_declaration, 1);
8141 return clone;
8145 /* Structure to map a DIE in one CU to its copy in a comdat type unit. */
8147 struct decl_table_entry
8149 dw_die_ref orig;
8150 dw_die_ref copy;
8153 /* Helpers to manipulate hash table of copied declarations. */
8155 /* Hashtable helpers. */
8157 struct decl_table_entry_hasher : free_ptr_hash <decl_table_entry>
8159 typedef die_struct *compare_type;
8160 static inline hashval_t hash (const decl_table_entry *);
8161 static inline bool equal (const decl_table_entry *, const die_struct *);
8164 inline hashval_t
8165 decl_table_entry_hasher::hash (const decl_table_entry *entry)
8167 return htab_hash_pointer (entry->orig);
8170 inline bool
8171 decl_table_entry_hasher::equal (const decl_table_entry *entry1,
8172 const die_struct *entry2)
8174 return entry1->orig == entry2;
8177 typedef hash_table<decl_table_entry_hasher> decl_hash_type;
8179 /* Copy DIE and its ancestors, up to, but not including, the compile unit
8180 or type unit entry, to a new tree. Adds the new tree to UNIT and returns
8181 a pointer to the copy of DIE. If DECL_TABLE is provided, it is used
8182 to check if the ancestor has already been copied into UNIT. */
8184 static dw_die_ref
8185 copy_ancestor_tree (dw_die_ref unit, dw_die_ref die,
8186 decl_hash_type *decl_table)
8188 dw_die_ref parent = die->die_parent;
8189 dw_die_ref new_parent = unit;
8190 dw_die_ref copy;
8191 decl_table_entry **slot = NULL;
8192 struct decl_table_entry *entry = NULL;
8194 /* If DIE refers to a stub unfold that so we get the appropriate
8195 DIE registered as orig in decl_table. */
8196 if (dw_die_ref c = get_AT_ref (die, DW_AT_signature))
8197 die = c;
8199 if (decl_table)
8201 /* Check if the entry has already been copied to UNIT. */
8202 slot = decl_table->find_slot_with_hash (die, htab_hash_pointer (die),
8203 INSERT);
8204 if (*slot != HTAB_EMPTY_ENTRY)
8206 entry = *slot;
8207 return entry->copy;
8210 /* Record in DECL_TABLE that DIE has been copied to UNIT. */
8211 entry = XCNEW (struct decl_table_entry);
8212 entry->orig = die;
8213 entry->copy = NULL;
8214 *slot = entry;
8217 if (parent != NULL)
8219 dw_die_ref spec = get_AT_ref (parent, DW_AT_specification);
8220 if (spec != NULL)
8221 parent = spec;
8222 if (!is_unit_die (parent))
8223 new_parent = copy_ancestor_tree (unit, parent, decl_table);
8226 copy = clone_as_declaration (die);
8227 add_child_die (new_parent, copy);
8229 if (decl_table)
8231 /* Record the pointer to the copy. */
8232 entry->copy = copy;
8235 return copy;
8237 /* Copy the declaration context to the new type unit DIE. This includes
8238 any surrounding namespace or type declarations. If the DIE has an
8239 AT_specification attribute, it also includes attributes and children
8240 attached to the specification, and returns a pointer to the original
8241 parent of the declaration DIE. Returns NULL otherwise. */
8243 static dw_die_ref
8244 copy_declaration_context (dw_die_ref unit, dw_die_ref die)
8246 dw_die_ref decl;
8247 dw_die_ref new_decl;
8248 dw_die_ref orig_parent = NULL;
8250 decl = get_AT_ref (die, DW_AT_specification);
8251 if (decl == NULL)
8252 decl = die;
8253 else
8255 unsigned ix;
8256 dw_die_ref c;
8257 dw_attr_node *a;
8259 /* The original DIE will be changed to a declaration, and must
8260 be moved to be a child of the original declaration DIE. */
8261 orig_parent = decl->die_parent;
8263 /* Copy the type node pointer from the new DIE to the original
8264 declaration DIE so we can forward references later. */
8265 decl->comdat_type_p = true;
8266 decl->die_id.die_type_node = die->die_id.die_type_node;
8268 remove_AT (die, DW_AT_specification);
8270 FOR_EACH_VEC_SAFE_ELT (decl->die_attr, ix, a)
8272 if (a->dw_attr != DW_AT_name
8273 && a->dw_attr != DW_AT_declaration
8274 && a->dw_attr != DW_AT_external)
8275 add_dwarf_attr (die, a);
8278 FOR_EACH_CHILD (decl, c, add_child_die (die, clone_tree (c)));
8281 if (decl->die_parent != NULL
8282 && !is_unit_die (decl->die_parent))
8284 new_decl = copy_ancestor_tree (unit, decl, NULL);
8285 if (new_decl != NULL)
8287 remove_AT (new_decl, DW_AT_signature);
8288 add_AT_specification (die, new_decl);
8292 return orig_parent;
8295 /* Generate the skeleton ancestor tree for the given NODE, then clone
8296 the DIE and add the clone into the tree. */
8298 static void
8299 generate_skeleton_ancestor_tree (skeleton_chain_node *node)
8301 if (node->new_die != NULL)
8302 return;
8304 node->new_die = clone_as_declaration (node->old_die);
8306 if (node->parent != NULL)
8308 generate_skeleton_ancestor_tree (node->parent);
8309 add_child_die (node->parent->new_die, node->new_die);
8313 /* Generate a skeleton tree of DIEs containing any declarations that are
8314 found in the original tree. We traverse the tree looking for declaration
8315 DIEs, and construct the skeleton from the bottom up whenever we find one. */
8317 static void
8318 generate_skeleton_bottom_up (skeleton_chain_node *parent)
8320 skeleton_chain_node node;
8321 dw_die_ref c;
8322 dw_die_ref first;
8323 dw_die_ref prev = NULL;
8324 dw_die_ref next = NULL;
8326 node.parent = parent;
8328 first = c = parent->old_die->die_child;
8329 if (c)
8330 next = c->die_sib;
8331 if (c) do {
8332 if (prev == NULL || prev->die_sib == c)
8333 prev = c;
8334 c = next;
8335 next = (c == first ? NULL : c->die_sib);
8336 node.old_die = c;
8337 node.new_die = NULL;
8338 if (is_declaration_die (c))
8340 if (is_template_instantiation (c))
8342 /* Instantiated templates do not need to be cloned into the
8343 type unit. Just move the DIE and its children back to
8344 the skeleton tree (in the main CU). */
8345 remove_child_with_prev (c, prev);
8346 add_child_die (parent->new_die, c);
8347 c = prev;
8349 else if (c->comdat_type_p)
8351 /* This is the skeleton of earlier break_out_comdat_types
8352 type. Clone the existing DIE, but keep the children
8353 under the original (which is in the main CU). */
8354 dw_die_ref clone = clone_die (c);
8356 replace_child (c, clone, prev);
8357 generate_skeleton_ancestor_tree (parent);
8358 add_child_die (parent->new_die, c);
8359 c = clone;
8360 continue;
8362 else
8364 /* Clone the existing DIE, move the original to the skeleton
8365 tree (which is in the main CU), and put the clone, with
8366 all the original's children, where the original came from
8367 (which is about to be moved to the type unit). */
8368 dw_die_ref clone = clone_die (c);
8369 move_all_children (c, clone);
8371 /* If the original has a DW_AT_object_pointer attribute,
8372 it would now point to a child DIE just moved to the
8373 cloned tree, so we need to remove that attribute from
8374 the original. */
8375 remove_AT (c, DW_AT_object_pointer);
8377 replace_child (c, clone, prev);
8378 generate_skeleton_ancestor_tree (parent);
8379 add_child_die (parent->new_die, c);
8380 node.old_die = clone;
8381 node.new_die = c;
8382 c = clone;
8385 generate_skeleton_bottom_up (&node);
8386 } while (next != NULL);
8389 /* Wrapper function for generate_skeleton_bottom_up. */
8391 static dw_die_ref
8392 generate_skeleton (dw_die_ref die)
8394 skeleton_chain_node node;
8396 node.old_die = die;
8397 node.new_die = NULL;
8398 node.parent = NULL;
8400 /* If this type definition is nested inside another type,
8401 and is not an instantiation of a template, always leave
8402 at least a declaration in its place. */
8403 if (die->die_parent != NULL
8404 && is_type_die (die->die_parent)
8405 && !is_template_instantiation (die))
8406 node.new_die = clone_as_declaration (die);
8408 generate_skeleton_bottom_up (&node);
8409 return node.new_die;
8412 /* Remove the CHILD DIE from its parent, possibly replacing it with a cloned
8413 declaration. The original DIE is moved to a new compile unit so that
8414 existing references to it follow it to the new location. If any of the
8415 original DIE's descendants is a declaration, we need to replace the
8416 original DIE with a skeleton tree and move the declarations back into the
8417 skeleton tree. */
8419 static dw_die_ref
8420 remove_child_or_replace_with_skeleton (dw_die_ref unit, dw_die_ref child,
8421 dw_die_ref prev)
8423 dw_die_ref skeleton, orig_parent;
8425 /* Copy the declaration context to the type unit DIE. If the returned
8426 ORIG_PARENT is not NULL, the skeleton needs to be added as a child of
8427 that DIE. */
8428 orig_parent = copy_declaration_context (unit, child);
8430 skeleton = generate_skeleton (child);
8431 if (skeleton == NULL)
8432 remove_child_with_prev (child, prev);
8433 else
8435 skeleton->comdat_type_p = true;
8436 skeleton->die_id.die_type_node = child->die_id.die_type_node;
8438 /* If the original DIE was a specification, we need to put
8439 the skeleton under the parent DIE of the declaration.
8440 This leaves the original declaration in the tree, but
8441 it will be pruned later since there are no longer any
8442 references to it. */
8443 if (orig_parent != NULL)
8445 remove_child_with_prev (child, prev);
8446 add_child_die (orig_parent, skeleton);
8448 else
8449 replace_child (child, skeleton, prev);
8452 return skeleton;
8455 static void
8456 copy_dwarf_procs_ref_in_attrs (dw_die_ref die,
8457 comdat_type_node *type_node,
8458 hash_map<dw_die_ref, dw_die_ref> &copied_dwarf_procs);
8460 /* Helper for copy_dwarf_procs_ref_in_dies. Make a copy of the DIE DWARF
8461 procedure, put it under TYPE_NODE and return the copy. Continue looking for
8462 DWARF procedure references in the DW_AT_location attribute. */
8464 static dw_die_ref
8465 copy_dwarf_procedure (dw_die_ref die,
8466 comdat_type_node *type_node,
8467 hash_map<dw_die_ref, dw_die_ref> &copied_dwarf_procs)
8469 gcc_assert (die->die_tag == DW_TAG_dwarf_procedure);
8471 /* DWARF procedures are not supposed to have children... */
8472 gcc_assert (die->die_child == NULL);
8474 /* ... and they are supposed to have only one attribute: DW_AT_location. */
8475 gcc_assert (vec_safe_length (die->die_attr) == 1
8476 && ((*die->die_attr)[0].dw_attr == DW_AT_location));
8478 /* Do not copy more than once DWARF procedures. */
8479 bool existed;
8480 dw_die_ref &die_copy = copied_dwarf_procs.get_or_insert (die, &existed);
8481 if (existed)
8482 return die_copy;
8484 die_copy = clone_die (die);
8485 add_child_die (type_node->root_die, die_copy);
8486 copy_dwarf_procs_ref_in_attrs (die_copy, type_node, copied_dwarf_procs);
8487 return die_copy;
8490 /* Helper for copy_dwarf_procs_ref_in_dies. Look for references to DWARF
8491 procedures in DIE's attributes. */
8493 static void
8494 copy_dwarf_procs_ref_in_attrs (dw_die_ref die,
8495 comdat_type_node *type_node,
8496 hash_map<dw_die_ref, dw_die_ref> &copied_dwarf_procs)
8498 dw_attr_node *a;
8499 unsigned i;
8501 FOR_EACH_VEC_SAFE_ELT (die->die_attr, i, a)
8503 dw_loc_descr_ref loc;
8505 if (a->dw_attr_val.val_class != dw_val_class_loc)
8506 continue;
8508 for (loc = a->dw_attr_val.v.val_loc; loc != NULL; loc = loc->dw_loc_next)
8510 switch (loc->dw_loc_opc)
8512 case DW_OP_call2:
8513 case DW_OP_call4:
8514 case DW_OP_call_ref:
8515 gcc_assert (loc->dw_loc_oprnd1.val_class
8516 == dw_val_class_die_ref);
8517 loc->dw_loc_oprnd1.v.val_die_ref.die
8518 = copy_dwarf_procedure (loc->dw_loc_oprnd1.v.val_die_ref.die,
8519 type_node,
8520 copied_dwarf_procs);
8522 default:
8523 break;
8529 /* Copy DWARF procedures that are referenced by the DIE tree to TREE_NODE and
8530 rewrite references to point to the copies.
8532 References are looked for in DIE's attributes and recursively in all its
8533 children attributes that are location descriptions. COPIED_DWARF_PROCS is a
8534 mapping from old DWARF procedures to their copy. It is used not to copy
8535 twice the same DWARF procedure under TYPE_NODE. */
8537 static void
8538 copy_dwarf_procs_ref_in_dies (dw_die_ref die,
8539 comdat_type_node *type_node,
8540 hash_map<dw_die_ref, dw_die_ref> &copied_dwarf_procs)
8542 dw_die_ref c;
8544 copy_dwarf_procs_ref_in_attrs (die, type_node, copied_dwarf_procs);
8545 FOR_EACH_CHILD (die, c, copy_dwarf_procs_ref_in_dies (c,
8546 type_node,
8547 copied_dwarf_procs));
8550 /* Traverse the DIE and set up additional .debug_types or .debug_info
8551 DW_UT_*type sections for each type worthy of being placed in a COMDAT
8552 section. */
8554 static void
8555 break_out_comdat_types (dw_die_ref die)
8557 dw_die_ref c;
8558 dw_die_ref first;
8559 dw_die_ref prev = NULL;
8560 dw_die_ref next = NULL;
8561 dw_die_ref unit = NULL;
8563 first = c = die->die_child;
8564 if (c)
8565 next = c->die_sib;
8566 if (c) do {
8567 if (prev == NULL || prev->die_sib == c)
8568 prev = c;
8569 c = next;
8570 next = (c == first ? NULL : c->die_sib);
8571 if (should_move_die_to_comdat (c))
8573 dw_die_ref replacement;
8574 comdat_type_node *type_node;
8576 /* Break out nested types into their own type units. */
8577 break_out_comdat_types (c);
8579 /* Create a new type unit DIE as the root for the new tree, and
8580 add it to the list of comdat types. */
8581 unit = new_die (DW_TAG_type_unit, NULL, NULL);
8582 add_AT_unsigned (unit, DW_AT_language,
8583 get_AT_unsigned (comp_unit_die (), DW_AT_language));
8584 type_node = ggc_cleared_alloc<comdat_type_node> ();
8585 type_node->root_die = unit;
8586 type_node->next = comdat_type_list;
8587 comdat_type_list = type_node;
8589 /* Generate the type signature. */
8590 generate_type_signature (c, type_node);
8592 /* Copy the declaration context, attributes, and children of the
8593 declaration into the new type unit DIE, then remove this DIE
8594 from the main CU (or replace it with a skeleton if necessary). */
8595 replacement = remove_child_or_replace_with_skeleton (unit, c, prev);
8596 type_node->skeleton_die = replacement;
8598 /* Add the DIE to the new compunit. */
8599 add_child_die (unit, c);
8601 /* Types can reference DWARF procedures for type size or data location
8602 expressions. Calls in DWARF expressions cannot target procedures
8603 that are not in the same section. So we must copy DWARF procedures
8604 along with this type and then rewrite references to them. */
8605 hash_map<dw_die_ref, dw_die_ref> copied_dwarf_procs;
8606 copy_dwarf_procs_ref_in_dies (c, type_node, copied_dwarf_procs);
8608 if (replacement != NULL)
8609 c = replacement;
8611 else if (c->die_tag == DW_TAG_namespace
8612 || c->die_tag == DW_TAG_class_type
8613 || c->die_tag == DW_TAG_structure_type
8614 || c->die_tag == DW_TAG_union_type)
8616 /* Look for nested types that can be broken out. */
8617 break_out_comdat_types (c);
8619 } while (next != NULL);
8622 /* Like clone_tree, but copy DW_TAG_subprogram DIEs as declarations.
8623 Enter all the cloned children into the hash table decl_table. */
8625 static dw_die_ref
8626 clone_tree_partial (dw_die_ref die, decl_hash_type *decl_table)
8628 dw_die_ref c;
8629 dw_die_ref clone;
8630 struct decl_table_entry *entry;
8631 decl_table_entry **slot;
8633 if (die->die_tag == DW_TAG_subprogram)
8634 clone = clone_as_declaration (die);
8635 else
8636 clone = clone_die (die);
8638 slot = decl_table->find_slot_with_hash (die,
8639 htab_hash_pointer (die), INSERT);
8641 /* Assert that DIE isn't in the hash table yet. If it would be there
8642 before, the ancestors would be necessarily there as well, therefore
8643 clone_tree_partial wouldn't be called. */
8644 gcc_assert (*slot == HTAB_EMPTY_ENTRY);
8646 entry = XCNEW (struct decl_table_entry);
8647 entry->orig = die;
8648 entry->copy = clone;
8649 *slot = entry;
8651 if (die->die_tag != DW_TAG_subprogram)
8652 FOR_EACH_CHILD (die, c,
8653 add_child_die (clone, clone_tree_partial (c, decl_table)));
8655 return clone;
8658 /* Walk the DIE and its children, looking for references to incomplete
8659 or trivial types that are unmarked (i.e., that are not in the current
8660 type_unit). */
8662 static void
8663 copy_decls_walk (dw_die_ref unit, dw_die_ref die, decl_hash_type *decl_table)
8665 dw_die_ref c;
8666 dw_attr_node *a;
8667 unsigned ix;
8669 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
8671 if (AT_class (a) == dw_val_class_die_ref)
8673 dw_die_ref targ = AT_ref (a);
8674 decl_table_entry **slot;
8675 struct decl_table_entry *entry;
8677 if (targ->die_mark != 0 || targ->comdat_type_p)
8678 continue;
8680 slot = decl_table->find_slot_with_hash (targ,
8681 htab_hash_pointer (targ),
8682 INSERT);
8684 if (*slot != HTAB_EMPTY_ENTRY)
8686 /* TARG has already been copied, so we just need to
8687 modify the reference to point to the copy. */
8688 entry = *slot;
8689 a->dw_attr_val.v.val_die_ref.die = entry->copy;
8691 else
8693 dw_die_ref parent = unit;
8694 dw_die_ref copy = clone_die (targ);
8696 /* Record in DECL_TABLE that TARG has been copied.
8697 Need to do this now, before the recursive call,
8698 because DECL_TABLE may be expanded and SLOT
8699 would no longer be a valid pointer. */
8700 entry = XCNEW (struct decl_table_entry);
8701 entry->orig = targ;
8702 entry->copy = copy;
8703 *slot = entry;
8705 /* If TARG is not a declaration DIE, we need to copy its
8706 children. */
8707 if (!is_declaration_die (targ))
8709 FOR_EACH_CHILD (
8710 targ, c,
8711 add_child_die (copy,
8712 clone_tree_partial (c, decl_table)));
8715 /* Make sure the cloned tree is marked as part of the
8716 type unit. */
8717 mark_dies (copy);
8719 /* If TARG has surrounding context, copy its ancestor tree
8720 into the new type unit. */
8721 if (targ->die_parent != NULL
8722 && !is_unit_die (targ->die_parent))
8723 parent = copy_ancestor_tree (unit, targ->die_parent,
8724 decl_table);
8726 add_child_die (parent, copy);
8727 a->dw_attr_val.v.val_die_ref.die = copy;
8729 /* Make sure the newly-copied DIE is walked. If it was
8730 installed in a previously-added context, it won't
8731 get visited otherwise. */
8732 if (parent != unit)
8734 /* Find the highest point of the newly-added tree,
8735 mark each node along the way, and walk from there. */
8736 parent->die_mark = 1;
8737 while (parent->die_parent
8738 && parent->die_parent->die_mark == 0)
8740 parent = parent->die_parent;
8741 parent->die_mark = 1;
8743 copy_decls_walk (unit, parent, decl_table);
8749 FOR_EACH_CHILD (die, c, copy_decls_walk (unit, c, decl_table));
8752 /* Collect skeleton dies in DIE created by break_out_comdat_types already
8753 and record them in DECL_TABLE. */
8755 static void
8756 collect_skeleton_dies (dw_die_ref die, decl_hash_type *decl_table)
8758 dw_die_ref c;
8760 if (dw_attr_node *a = get_AT (die, DW_AT_signature))
8762 dw_die_ref targ = AT_ref (a);
8763 gcc_assert (targ->die_mark == 0 && targ->comdat_type_p);
8764 decl_table_entry **slot
8765 = decl_table->find_slot_with_hash (targ,
8766 htab_hash_pointer (targ),
8767 INSERT);
8768 gcc_assert (*slot == HTAB_EMPTY_ENTRY);
8769 /* Record in DECL_TABLE that TARG has been already copied
8770 by remove_child_or_replace_with_skeleton. */
8771 decl_table_entry *entry = XCNEW (struct decl_table_entry);
8772 entry->orig = targ;
8773 entry->copy = die;
8774 *slot = entry;
8776 FOR_EACH_CHILD (die, c, collect_skeleton_dies (c, decl_table));
8779 /* Copy declarations for "unworthy" types into the new comdat section.
8780 Incomplete types, modified types, and certain other types aren't broken
8781 out into comdat sections of their own, so they don't have a signature,
8782 and we need to copy the declaration into the same section so that we
8783 don't have an external reference. */
8785 static void
8786 copy_decls_for_unworthy_types (dw_die_ref unit)
8788 mark_dies (unit);
8789 decl_hash_type decl_table (10);
8790 collect_skeleton_dies (unit, &decl_table);
8791 copy_decls_walk (unit, unit, &decl_table);
8792 unmark_dies (unit);
8795 /* Traverse the DIE and add a sibling attribute if it may have the
8796 effect of speeding up access to siblings. To save some space,
8797 avoid generating sibling attributes for DIE's without children. */
8799 static void
8800 add_sibling_attributes (dw_die_ref die)
8802 dw_die_ref c;
8804 if (! die->die_child)
8805 return;
8807 if (die->die_parent && die != die->die_parent->die_child)
8808 add_AT_die_ref (die, DW_AT_sibling, die->die_sib);
8810 FOR_EACH_CHILD (die, c, add_sibling_attributes (c));
8813 /* Output all location lists for the DIE and its children. */
8815 static void
8816 output_location_lists (dw_die_ref die)
8818 dw_die_ref c;
8819 dw_attr_node *a;
8820 unsigned ix;
8822 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
8823 if (AT_class (a) == dw_val_class_loc_list)
8824 output_loc_list (AT_loc_list (a));
8826 FOR_EACH_CHILD (die, c, output_location_lists (c));
8829 /* During assign_location_list_indexes and output_loclists_offset the
8830 current index, after it the number of assigned indexes (i.e. how
8831 large the .debug_loclists* offset table should be). */
8832 static unsigned int loc_list_idx;
8834 /* Output all location list offsets for the DIE and its children. */
8836 static void
8837 output_loclists_offsets (dw_die_ref die)
8839 dw_die_ref c;
8840 dw_attr_node *a;
8841 unsigned ix;
8843 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
8844 if (AT_class (a) == dw_val_class_loc_list)
8846 dw_loc_list_ref l = AT_loc_list (a);
8847 if (l->offset_emitted)
8848 continue;
8849 dw2_asm_output_delta (DWARF_OFFSET_SIZE, l->ll_symbol,
8850 loc_section_label, NULL);
8851 gcc_assert (l->hash == loc_list_idx);
8852 loc_list_idx++;
8853 l->offset_emitted = true;
8856 FOR_EACH_CHILD (die, c, output_loclists_offsets (c));
8859 /* Recursively set indexes of location lists. */
8861 static void
8862 assign_location_list_indexes (dw_die_ref die)
8864 dw_die_ref c;
8865 dw_attr_node *a;
8866 unsigned ix;
8868 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
8869 if (AT_class (a) == dw_val_class_loc_list)
8871 dw_loc_list_ref list = AT_loc_list (a);
8872 if (!list->num_assigned)
8874 list->num_assigned = true;
8875 list->hash = loc_list_idx++;
8879 FOR_EACH_CHILD (die, c, assign_location_list_indexes (c));
8882 /* We want to limit the number of external references, because they are
8883 larger than local references: a relocation takes multiple words, and
8884 even a sig8 reference is always eight bytes, whereas a local reference
8885 can be as small as one byte (though DW_FORM_ref is usually 4 in GCC).
8886 So if we encounter multiple external references to the same type DIE, we
8887 make a local typedef stub for it and redirect all references there.
8889 This is the element of the hash table for keeping track of these
8890 references. */
8892 struct external_ref
8894 dw_die_ref type;
8895 dw_die_ref stub;
8896 unsigned n_refs;
8899 /* Hashtable helpers. */
8901 struct external_ref_hasher : free_ptr_hash <external_ref>
8903 static inline hashval_t hash (const external_ref *);
8904 static inline bool equal (const external_ref *, const external_ref *);
8907 inline hashval_t
8908 external_ref_hasher::hash (const external_ref *r)
8910 dw_die_ref die = r->type;
8911 hashval_t h = 0;
8913 /* We can't use the address of the DIE for hashing, because
8914 that will make the order of the stub DIEs non-deterministic. */
8915 if (! die->comdat_type_p)
8916 /* We have a symbol; use it to compute a hash. */
8917 h = htab_hash_string (die->die_id.die_symbol);
8918 else
8920 /* We have a type signature; use a subset of the bits as the hash.
8921 The 8-byte signature is at least as large as hashval_t. */
8922 comdat_type_node *type_node = die->die_id.die_type_node;
8923 memcpy (&h, type_node->signature, sizeof (h));
8925 return h;
8928 inline bool
8929 external_ref_hasher::equal (const external_ref *r1, const external_ref *r2)
8931 return r1->type == r2->type;
8934 typedef hash_table<external_ref_hasher> external_ref_hash_type;
8936 /* Return a pointer to the external_ref for references to DIE. */
8938 static struct external_ref *
8939 lookup_external_ref (external_ref_hash_type *map, dw_die_ref die)
8941 struct external_ref ref, *ref_p;
8942 external_ref **slot;
8944 ref.type = die;
8945 slot = map->find_slot (&ref, INSERT);
8946 if (*slot != HTAB_EMPTY_ENTRY)
8947 return *slot;
8949 ref_p = XCNEW (struct external_ref);
8950 ref_p->type = die;
8951 *slot = ref_p;
8952 return ref_p;
8955 /* Subroutine of optimize_external_refs, below.
8957 If we see a type skeleton, record it as our stub. If we see external
8958 references, remember how many we've seen. */
8960 static void
8961 optimize_external_refs_1 (dw_die_ref die, external_ref_hash_type *map)
8963 dw_die_ref c;
8964 dw_attr_node *a;
8965 unsigned ix;
8966 struct external_ref *ref_p;
8968 if (is_type_die (die)
8969 && (c = get_AT_ref (die, DW_AT_signature)))
8971 /* This is a local skeleton; use it for local references. */
8972 ref_p = lookup_external_ref (map, c);
8973 ref_p->stub = die;
8976 /* Scan the DIE references, and remember any that refer to DIEs from
8977 other CUs (i.e. those which are not marked). */
8978 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
8979 if (AT_class (a) == dw_val_class_die_ref
8980 && (c = AT_ref (a))->die_mark == 0
8981 && is_type_die (c))
8983 ref_p = lookup_external_ref (map, c);
8984 ref_p->n_refs++;
8987 FOR_EACH_CHILD (die, c, optimize_external_refs_1 (c, map));
8990 /* htab_traverse callback function for optimize_external_refs, below. SLOT
8991 points to an external_ref, DATA is the CU we're processing. If we don't
8992 already have a local stub, and we have multiple refs, build a stub. */
8995 dwarf2_build_local_stub (external_ref **slot, dw_die_ref data)
8997 struct external_ref *ref_p = *slot;
8999 if (ref_p->stub == NULL && ref_p->n_refs > 1 && !dwarf_strict)
9001 /* We have multiple references to this type, so build a small stub.
9002 Both of these forms are a bit dodgy from the perspective of the
9003 DWARF standard, since technically they should have names. */
9004 dw_die_ref cu = data;
9005 dw_die_ref type = ref_p->type;
9006 dw_die_ref stub = NULL;
9008 if (type->comdat_type_p)
9010 /* If we refer to this type via sig8, use AT_signature. */
9011 stub = new_die (type->die_tag, cu, NULL_TREE);
9012 add_AT_die_ref (stub, DW_AT_signature, type);
9014 else
9016 /* Otherwise, use a typedef with no name. */
9017 stub = new_die (DW_TAG_typedef, cu, NULL_TREE);
9018 add_AT_die_ref (stub, DW_AT_type, type);
9021 stub->die_mark++;
9022 ref_p->stub = stub;
9024 return 1;
9027 /* DIE is a unit; look through all the DIE references to see if there are
9028 any external references to types, and if so, create local stubs for
9029 them which will be applied in build_abbrev_table. This is useful because
9030 references to local DIEs are smaller. */
9032 static external_ref_hash_type *
9033 optimize_external_refs (dw_die_ref die)
9035 external_ref_hash_type *map = new external_ref_hash_type (10);
9036 optimize_external_refs_1 (die, map);
9037 map->traverse <dw_die_ref, dwarf2_build_local_stub> (die);
9038 return map;
9041 /* The following 3 variables are temporaries that are computed only during the
9042 build_abbrev_table call and used and released during the following
9043 optimize_abbrev_table call. */
9045 /* First abbrev_id that can be optimized based on usage. */
9046 static unsigned int abbrev_opt_start;
9048 /* Maximum abbrev_id of a base type plus one (we can't optimize DIEs with
9049 abbrev_id smaller than this, because they must be already sized
9050 during build_abbrev_table). */
9051 static unsigned int abbrev_opt_base_type_end;
9053 /* Vector of usage counts during build_abbrev_table. Indexed by
9054 abbrev_id - abbrev_opt_start. */
9055 static vec<unsigned int> abbrev_usage_count;
9057 /* Vector of all DIEs added with die_abbrev >= abbrev_opt_start. */
9058 static vec<dw_die_ref> sorted_abbrev_dies;
9060 /* The format of each DIE (and its attribute value pairs) is encoded in an
9061 abbreviation table. This routine builds the abbreviation table and assigns
9062 a unique abbreviation id for each abbreviation entry. The children of each
9063 die are visited recursively. */
9065 static void
9066 build_abbrev_table (dw_die_ref die, external_ref_hash_type *extern_map)
9068 unsigned int abbrev_id = 0;
9069 dw_die_ref c;
9070 dw_attr_node *a;
9071 unsigned ix;
9072 dw_die_ref abbrev;
9074 /* Scan the DIE references, and replace any that refer to
9075 DIEs from other CUs (i.e. those which are not marked) with
9076 the local stubs we built in optimize_external_refs. */
9077 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
9078 if (AT_class (a) == dw_val_class_die_ref
9079 && (c = AT_ref (a))->die_mark == 0)
9081 struct external_ref *ref_p;
9082 gcc_assert (AT_ref (a)->comdat_type_p || AT_ref (a)->die_id.die_symbol);
9084 if (is_type_die (c)
9085 && (ref_p = lookup_external_ref (extern_map, c))
9086 && ref_p->stub && ref_p->stub != die)
9088 gcc_assert (a->dw_attr != DW_AT_signature);
9089 change_AT_die_ref (a, ref_p->stub);
9091 else
9092 /* We aren't changing this reference, so mark it external. */
9093 set_AT_ref_external (a, 1);
9096 FOR_EACH_VEC_SAFE_ELT (abbrev_die_table, abbrev_id, abbrev)
9098 dw_attr_node *die_a, *abbrev_a;
9099 unsigned ix;
9100 bool ok = true;
9102 if (abbrev_id == 0)
9103 continue;
9104 if (abbrev->die_tag != die->die_tag)
9105 continue;
9106 if ((abbrev->die_child != NULL) != (die->die_child != NULL))
9107 continue;
9109 if (vec_safe_length (abbrev->die_attr) != vec_safe_length (die->die_attr))
9110 continue;
9112 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, die_a)
9114 abbrev_a = &(*abbrev->die_attr)[ix];
9115 if ((abbrev_a->dw_attr != die_a->dw_attr)
9116 || (value_format (abbrev_a) != value_format (die_a)))
9118 ok = false;
9119 break;
9122 if (ok)
9123 break;
9126 if (abbrev_id >= vec_safe_length (abbrev_die_table))
9128 vec_safe_push (abbrev_die_table, die);
9129 if (abbrev_opt_start)
9130 abbrev_usage_count.safe_push (0);
9132 if (abbrev_opt_start && abbrev_id >= abbrev_opt_start)
9134 abbrev_usage_count[abbrev_id - abbrev_opt_start]++;
9135 sorted_abbrev_dies.safe_push (die);
9138 die->die_abbrev = abbrev_id;
9139 FOR_EACH_CHILD (die, c, build_abbrev_table (c, extern_map));
9142 /* Callback function for sorted_abbrev_dies vector sorting. We sort
9143 by die_abbrev's usage count, from the most commonly used
9144 abbreviation to the least. */
9146 static int
9147 die_abbrev_cmp (const void *p1, const void *p2)
9149 dw_die_ref die1 = *(const dw_die_ref *) p1;
9150 dw_die_ref die2 = *(const dw_die_ref *) p2;
9152 gcc_checking_assert (die1->die_abbrev >= abbrev_opt_start);
9153 gcc_checking_assert (die2->die_abbrev >= abbrev_opt_start);
9155 if (die1->die_abbrev >= abbrev_opt_base_type_end
9156 && die2->die_abbrev >= abbrev_opt_base_type_end)
9158 if (abbrev_usage_count[die1->die_abbrev - abbrev_opt_start]
9159 > abbrev_usage_count[die2->die_abbrev - abbrev_opt_start])
9160 return -1;
9161 if (abbrev_usage_count[die1->die_abbrev - abbrev_opt_start]
9162 < abbrev_usage_count[die2->die_abbrev - abbrev_opt_start])
9163 return 1;
9166 /* Stabilize the sort. */
9167 if (die1->die_abbrev < die2->die_abbrev)
9168 return -1;
9169 if (die1->die_abbrev > die2->die_abbrev)
9170 return 1;
9172 return 0;
9175 /* Convert dw_val_class_const and dw_val_class_unsigned_const class attributes
9176 of DIEs in between sorted_abbrev_dies[first_id] and abbrev_dies[end_id - 1]
9177 into dw_val_class_const_implicit or
9178 dw_val_class_unsigned_const_implicit. */
9180 static void
9181 optimize_implicit_const (unsigned int first_id, unsigned int end,
9182 vec<bool> &implicit_consts)
9184 /* It never makes sense if there is just one DIE using the abbreviation. */
9185 if (end < first_id + 2)
9186 return;
9188 dw_attr_node *a;
9189 unsigned ix, i;
9190 dw_die_ref die = sorted_abbrev_dies[first_id];
9191 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
9192 if (implicit_consts[ix])
9194 enum dw_val_class new_class = dw_val_class_none;
9195 switch (AT_class (a))
9197 case dw_val_class_unsigned_const:
9198 if ((HOST_WIDE_INT) AT_unsigned (a) < 0)
9199 continue;
9201 /* The .debug_abbrev section will grow by
9202 size_of_sleb128 (AT_unsigned (a)) and we avoid the constants
9203 in all the DIEs using that abbreviation. */
9204 if (constant_size (AT_unsigned (a)) * (end - first_id)
9205 <= (unsigned) size_of_sleb128 (AT_unsigned (a)))
9206 continue;
9208 new_class = dw_val_class_unsigned_const_implicit;
9209 break;
9211 case dw_val_class_const:
9212 new_class = dw_val_class_const_implicit;
9213 break;
9215 case dw_val_class_file:
9216 new_class = dw_val_class_file_implicit;
9217 break;
9219 default:
9220 continue;
9222 for (i = first_id; i < end; i++)
9223 (*sorted_abbrev_dies[i]->die_attr)[ix].dw_attr_val.val_class
9224 = new_class;
9228 /* Attempt to optimize abbreviation table from abbrev_opt_start
9229 abbreviation above. */
9231 static void
9232 optimize_abbrev_table (void)
9234 if (abbrev_opt_start
9235 && vec_safe_length (abbrev_die_table) > abbrev_opt_start
9236 && (dwarf_version >= 5 || vec_safe_length (abbrev_die_table) > 127))
9238 auto_vec<bool, 32> implicit_consts;
9239 sorted_abbrev_dies.qsort (die_abbrev_cmp);
9241 unsigned int abbrev_id = abbrev_opt_start - 1;
9242 unsigned int first_id = ~0U;
9243 unsigned int last_abbrev_id = 0;
9244 unsigned int i;
9245 dw_die_ref die;
9246 if (abbrev_opt_base_type_end > abbrev_opt_start)
9247 abbrev_id = abbrev_opt_base_type_end - 1;
9248 /* Reassign abbreviation ids from abbrev_opt_start above, so that
9249 most commonly used abbreviations come first. */
9250 FOR_EACH_VEC_ELT (sorted_abbrev_dies, i, die)
9252 dw_attr_node *a;
9253 unsigned ix;
9255 /* If calc_base_type_die_sizes has been called, the CU and
9256 base types after it can't be optimized, because we've already
9257 calculated their DIE offsets. We've sorted them first. */
9258 if (die->die_abbrev < abbrev_opt_base_type_end)
9259 continue;
9260 if (die->die_abbrev != last_abbrev_id)
9262 last_abbrev_id = die->die_abbrev;
9263 if (dwarf_version >= 5 && first_id != ~0U)
9264 optimize_implicit_const (first_id, i, implicit_consts);
9265 abbrev_id++;
9266 (*abbrev_die_table)[abbrev_id] = die;
9267 if (dwarf_version >= 5)
9269 first_id = i;
9270 implicit_consts.truncate (0);
9272 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
9273 switch (AT_class (a))
9275 case dw_val_class_const:
9276 case dw_val_class_unsigned_const:
9277 case dw_val_class_file:
9278 implicit_consts.safe_push (true);
9279 break;
9280 default:
9281 implicit_consts.safe_push (false);
9282 break;
9286 else if (dwarf_version >= 5)
9288 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
9289 if (!implicit_consts[ix])
9290 continue;
9291 else
9293 dw_attr_node *other_a
9294 = &(*(*abbrev_die_table)[abbrev_id]->die_attr)[ix];
9295 if (!dw_val_equal_p (&a->dw_attr_val,
9296 &other_a->dw_attr_val))
9297 implicit_consts[ix] = false;
9300 die->die_abbrev = abbrev_id;
9302 gcc_assert (abbrev_id == vec_safe_length (abbrev_die_table) - 1);
9303 if (dwarf_version >= 5 && first_id != ~0U)
9304 optimize_implicit_const (first_id, i, implicit_consts);
9307 abbrev_opt_start = 0;
9308 abbrev_opt_base_type_end = 0;
9309 abbrev_usage_count.release ();
9310 sorted_abbrev_dies.release ();
9313 /* Return the power-of-two number of bytes necessary to represent VALUE. */
9315 static int
9316 constant_size (unsigned HOST_WIDE_INT value)
9318 int log;
9320 if (value == 0)
9321 log = 0;
9322 else
9323 log = floor_log2 (value);
9325 log = log / 8;
9326 log = 1 << (floor_log2 (log) + 1);
9328 return log;
9331 /* Return the size of a DIE as it is represented in the
9332 .debug_info section. */
9334 static unsigned long
9335 size_of_die (dw_die_ref die)
9337 unsigned long size = 0;
9338 dw_attr_node *a;
9339 unsigned ix;
9340 enum dwarf_form form;
9342 size += size_of_uleb128 (die->die_abbrev);
9343 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
9345 switch (AT_class (a))
9347 case dw_val_class_addr:
9348 if (dwarf_split_debug_info && AT_index (a) != NOT_INDEXED)
9350 gcc_assert (AT_index (a) != NO_INDEX_ASSIGNED);
9351 size += size_of_uleb128 (AT_index (a));
9353 else
9354 size += DWARF2_ADDR_SIZE;
9355 break;
9356 case dw_val_class_offset:
9357 size += DWARF_OFFSET_SIZE;
9358 break;
9359 case dw_val_class_loc:
9361 unsigned long lsize = size_of_locs (AT_loc (a));
9363 /* Block length. */
9364 if (dwarf_version >= 4)
9365 size += size_of_uleb128 (lsize);
9366 else
9367 size += constant_size (lsize);
9368 size += lsize;
9370 break;
9371 case dw_val_class_loc_list:
9372 if (dwarf_split_debug_info && dwarf_version >= 5)
9374 gcc_assert (AT_loc_list (a)->num_assigned);
9375 size += size_of_uleb128 (AT_loc_list (a)->hash);
9377 else
9378 size += DWARF_OFFSET_SIZE;
9379 break;
9380 case dw_val_class_view_list:
9381 size += DWARF_OFFSET_SIZE;
9382 break;
9383 case dw_val_class_range_list:
9384 if (value_format (a) == DW_FORM_rnglistx)
9386 gcc_assert (rnglist_idx);
9387 dw_ranges *r = &(*ranges_table)[a->dw_attr_val.v.val_offset];
9388 size += size_of_uleb128 (r->idx);
9390 else
9391 size += DWARF_OFFSET_SIZE;
9392 break;
9393 case dw_val_class_const:
9394 size += size_of_sleb128 (AT_int (a));
9395 break;
9396 case dw_val_class_unsigned_const:
9398 int csize = constant_size (AT_unsigned (a));
9399 if (dwarf_version == 3
9400 && a->dw_attr == DW_AT_data_member_location
9401 && csize >= 4)
9402 size += size_of_uleb128 (AT_unsigned (a));
9403 else
9404 size += csize;
9406 break;
9407 case dw_val_class_symview:
9408 if (symview_upper_bound <= 0xff)
9409 size += 1;
9410 else if (symview_upper_bound <= 0xffff)
9411 size += 2;
9412 else if (symview_upper_bound <= 0xffffffff)
9413 size += 4;
9414 else
9415 size += 8;
9416 break;
9417 case dw_val_class_const_implicit:
9418 case dw_val_class_unsigned_const_implicit:
9419 case dw_val_class_file_implicit:
9420 /* These occupy no size in the DIE, just an extra sleb128 in
9421 .debug_abbrev. */
9422 break;
9423 case dw_val_class_const_double:
9424 size += HOST_BITS_PER_DOUBLE_INT / HOST_BITS_PER_CHAR;
9425 if (HOST_BITS_PER_WIDE_INT >= DWARF_LARGEST_DATA_FORM_BITS)
9426 size++; /* block */
9427 break;
9428 case dw_val_class_wide_int:
9429 size += (get_full_len (*a->dw_attr_val.v.val_wide)
9430 * HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR);
9431 if (get_full_len (*a->dw_attr_val.v.val_wide)
9432 * HOST_BITS_PER_WIDE_INT > DWARF_LARGEST_DATA_FORM_BITS)
9433 size++; /* block */
9434 break;
9435 case dw_val_class_vec:
9436 size += constant_size (a->dw_attr_val.v.val_vec.length
9437 * a->dw_attr_val.v.val_vec.elt_size)
9438 + a->dw_attr_val.v.val_vec.length
9439 * a->dw_attr_val.v.val_vec.elt_size; /* block */
9440 break;
9441 case dw_val_class_flag:
9442 if (dwarf_version >= 4)
9443 /* Currently all add_AT_flag calls pass in 1 as last argument,
9444 so DW_FORM_flag_present can be used. If that ever changes,
9445 we'll need to use DW_FORM_flag and have some optimization
9446 in build_abbrev_table that will change those to
9447 DW_FORM_flag_present if it is set to 1 in all DIEs using
9448 the same abbrev entry. */
9449 gcc_assert (a->dw_attr_val.v.val_flag == 1);
9450 else
9451 size += 1;
9452 break;
9453 case dw_val_class_die_ref:
9454 if (AT_ref_external (a))
9456 /* In DWARF4, we use DW_FORM_ref_sig8; for earlier versions
9457 we use DW_FORM_ref_addr. In DWARF2, DW_FORM_ref_addr
9458 is sized by target address length, whereas in DWARF3
9459 it's always sized as an offset. */
9460 if (AT_ref (a)->comdat_type_p)
9461 size += DWARF_TYPE_SIGNATURE_SIZE;
9462 else if (dwarf_version == 2)
9463 size += DWARF2_ADDR_SIZE;
9464 else
9465 size += DWARF_OFFSET_SIZE;
9467 else
9468 size += DWARF_OFFSET_SIZE;
9469 break;
9470 case dw_val_class_fde_ref:
9471 size += DWARF_OFFSET_SIZE;
9472 break;
9473 case dw_val_class_lbl_id:
9474 if (dwarf_split_debug_info && AT_index (a) != NOT_INDEXED)
9476 gcc_assert (AT_index (a) != NO_INDEX_ASSIGNED);
9477 size += size_of_uleb128 (AT_index (a));
9479 else
9480 size += DWARF2_ADDR_SIZE;
9481 break;
9482 case dw_val_class_lineptr:
9483 case dw_val_class_macptr:
9484 case dw_val_class_loclistsptr:
9485 size += DWARF_OFFSET_SIZE;
9486 break;
9487 case dw_val_class_str:
9488 form = AT_string_form (a);
9489 if (form == DW_FORM_strp || form == DW_FORM_line_strp)
9490 size += DWARF_OFFSET_SIZE;
9491 else if (form == dwarf_FORM (DW_FORM_strx))
9492 size += size_of_uleb128 (AT_index (a));
9493 else
9494 size += strlen (a->dw_attr_val.v.val_str->str) + 1;
9495 break;
9496 case dw_val_class_file:
9497 size += constant_size (maybe_emit_file (a->dw_attr_val.v.val_file));
9498 break;
9499 case dw_val_class_data8:
9500 size += 8;
9501 break;
9502 case dw_val_class_vms_delta:
9503 size += DWARF_OFFSET_SIZE;
9504 break;
9505 case dw_val_class_high_pc:
9506 size += DWARF2_ADDR_SIZE;
9507 break;
9508 case dw_val_class_discr_value:
9509 size += size_of_discr_value (&a->dw_attr_val.v.val_discr_value);
9510 break;
9511 case dw_val_class_discr_list:
9513 unsigned block_size = size_of_discr_list (AT_discr_list (a));
9515 /* This is a block, so we have the block length and then its
9516 data. */
9517 size += constant_size (block_size) + block_size;
9519 break;
9520 default:
9521 gcc_unreachable ();
9525 return size;
9528 /* Size the debugging information associated with a given DIE. Visits the
9529 DIE's children recursively. Updates the global variable next_die_offset, on
9530 each time through. Uses the current value of next_die_offset to update the
9531 die_offset field in each DIE. */
9533 static void
9534 calc_die_sizes (dw_die_ref die)
9536 dw_die_ref c;
9538 gcc_assert (die->die_offset == 0
9539 || (unsigned long int) die->die_offset == next_die_offset);
9540 die->die_offset = next_die_offset;
9541 next_die_offset += size_of_die (die);
9543 FOR_EACH_CHILD (die, c, calc_die_sizes (c));
9545 if (die->die_child != NULL)
9546 /* Count the null byte used to terminate sibling lists. */
9547 next_die_offset += 1;
9550 /* Size just the base type children at the start of the CU.
9551 This is needed because build_abbrev needs to size locs
9552 and sizing of type based stack ops needs to know die_offset
9553 values for the base types. */
9555 static void
9556 calc_base_type_die_sizes (void)
9558 unsigned long die_offset = (dwarf_split_debug_info
9559 ? DWARF_COMPILE_UNIT_SKELETON_HEADER_SIZE
9560 : DWARF_COMPILE_UNIT_HEADER_SIZE);
9561 unsigned int i;
9562 dw_die_ref base_type;
9563 #if ENABLE_ASSERT_CHECKING
9564 dw_die_ref prev = comp_unit_die ()->die_child;
9565 #endif
9567 die_offset += size_of_die (comp_unit_die ());
9568 for (i = 0; base_types.iterate (i, &base_type); i++)
9570 #if ENABLE_ASSERT_CHECKING
9571 gcc_assert (base_type->die_offset == 0
9572 && prev->die_sib == base_type
9573 && base_type->die_child == NULL
9574 && base_type->die_abbrev);
9575 prev = base_type;
9576 #endif
9577 if (abbrev_opt_start
9578 && base_type->die_abbrev >= abbrev_opt_base_type_end)
9579 abbrev_opt_base_type_end = base_type->die_abbrev + 1;
9580 base_type->die_offset = die_offset;
9581 die_offset += size_of_die (base_type);
9585 /* Set the marks for a die and its children. We do this so
9586 that we know whether or not a reference needs to use FORM_ref_addr; only
9587 DIEs in the same CU will be marked. We used to clear out the offset
9588 and use that as the flag, but ran into ordering problems. */
9590 static void
9591 mark_dies (dw_die_ref die)
9593 dw_die_ref c;
9595 gcc_assert (!die->die_mark);
9597 die->die_mark = 1;
9598 FOR_EACH_CHILD (die, c, mark_dies (c));
9601 /* Clear the marks for a die and its children. */
9603 static void
9604 unmark_dies (dw_die_ref die)
9606 dw_die_ref c;
9608 if (! use_debug_types)
9609 gcc_assert (die->die_mark);
9611 die->die_mark = 0;
9612 FOR_EACH_CHILD (die, c, unmark_dies (c));
9615 /* Clear the marks for a die, its children and referred dies. */
9617 static void
9618 unmark_all_dies (dw_die_ref die)
9620 dw_die_ref c;
9621 dw_attr_node *a;
9622 unsigned ix;
9624 if (!die->die_mark)
9625 return;
9626 die->die_mark = 0;
9628 FOR_EACH_CHILD (die, c, unmark_all_dies (c));
9630 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
9631 if (AT_class (a) == dw_val_class_die_ref)
9632 unmark_all_dies (AT_ref (a));
9635 /* Calculate if the entry should appear in the final output file. It may be
9636 from a pruned a type. */
9638 static bool
9639 include_pubname_in_output (vec<pubname_entry, va_gc> *table, pubname_entry *p)
9641 /* By limiting gnu pubnames to definitions only, gold can generate a
9642 gdb index without entries for declarations, which don't include
9643 enough information to be useful. */
9644 if (debug_generate_pub_sections == 2 && is_declaration_die (p->die))
9645 return false;
9647 if (table == pubname_table)
9649 /* Enumerator names are part of the pubname table, but the
9650 parent DW_TAG_enumeration_type die may have been pruned.
9651 Don't output them if that is the case. */
9652 if (p->die->die_tag == DW_TAG_enumerator &&
9653 (p->die->die_parent == NULL
9654 || !p->die->die_parent->die_perennial_p))
9655 return false;
9657 /* Everything else in the pubname table is included. */
9658 return true;
9661 /* The pubtypes table shouldn't include types that have been
9662 pruned. */
9663 return (p->die->die_offset != 0
9664 || !flag_eliminate_unused_debug_types);
9667 /* Return the size of the .debug_pubnames or .debug_pubtypes table
9668 generated for the compilation unit. */
9670 static unsigned long
9671 size_of_pubnames (vec<pubname_entry, va_gc> *names)
9673 unsigned long size;
9674 unsigned i;
9675 pubname_entry *p;
9676 int space_for_flags = (debug_generate_pub_sections == 2) ? 1 : 0;
9678 size = DWARF_PUBNAMES_HEADER_SIZE;
9679 FOR_EACH_VEC_ELT (*names, i, p)
9680 if (include_pubname_in_output (names, p))
9681 size += strlen (p->name) + DWARF_OFFSET_SIZE + 1 + space_for_flags;
9683 size += DWARF_OFFSET_SIZE;
9684 return size;
9687 /* Return the size of the information in the .debug_aranges section. */
9689 static unsigned long
9690 size_of_aranges (void)
9692 unsigned long size;
9694 size = DWARF_ARANGES_HEADER_SIZE;
9696 /* Count the address/length pair for this compilation unit. */
9697 if (text_section_used)
9698 size += 2 * DWARF2_ADDR_SIZE;
9699 if (cold_text_section_used)
9700 size += 2 * DWARF2_ADDR_SIZE;
9701 if (have_multiple_function_sections)
9703 unsigned fde_idx;
9704 dw_fde_ref fde;
9706 FOR_EACH_VEC_ELT (*fde_vec, fde_idx, fde)
9708 if (DECL_IGNORED_P (fde->decl))
9709 continue;
9710 if (!fde->in_std_section)
9711 size += 2 * DWARF2_ADDR_SIZE;
9712 if (fde->dw_fde_second_begin && !fde->second_in_std_section)
9713 size += 2 * DWARF2_ADDR_SIZE;
9717 /* Count the two zero words used to terminated the address range table. */
9718 size += 2 * DWARF2_ADDR_SIZE;
9719 return size;
9722 /* Select the encoding of an attribute value. */
9724 static enum dwarf_form
9725 value_format (dw_attr_node *a)
9727 switch (AT_class (a))
9729 case dw_val_class_addr:
9730 /* Only very few attributes allow DW_FORM_addr. */
9731 switch (a->dw_attr)
9733 case DW_AT_low_pc:
9734 case DW_AT_high_pc:
9735 case DW_AT_entry_pc:
9736 case DW_AT_trampoline:
9737 return (AT_index (a) == NOT_INDEXED
9738 ? DW_FORM_addr : dwarf_FORM (DW_FORM_addrx));
9739 default:
9740 break;
9742 switch (DWARF2_ADDR_SIZE)
9744 case 1:
9745 return DW_FORM_data1;
9746 case 2:
9747 return DW_FORM_data2;
9748 case 4:
9749 return DW_FORM_data4;
9750 case 8:
9751 return DW_FORM_data8;
9752 default:
9753 gcc_unreachable ();
9755 case dw_val_class_loc_list:
9756 if (dwarf_split_debug_info
9757 && dwarf_version >= 5
9758 && AT_loc_list (a)->num_assigned)
9759 return DW_FORM_loclistx;
9760 /* FALLTHRU */
9761 case dw_val_class_view_list:
9762 case dw_val_class_range_list:
9763 /* For range lists in DWARF 5, use DW_FORM_rnglistx from .debug_info.dwo
9764 but in .debug_info use DW_FORM_sec_offset, which is shorter if we
9765 care about sizes of .debug* sections in shared libraries and
9766 executables and don't take into account relocations that affect just
9767 relocatable objects - for DW_FORM_rnglistx we'd have to emit offset
9768 table in the .debug_rnglists section. */
9769 if (dwarf_split_debug_info
9770 && dwarf_version >= 5
9771 && AT_class (a) == dw_val_class_range_list
9772 && rnglist_idx
9773 && a->dw_attr_val.val_entry != RELOCATED_OFFSET)
9774 return DW_FORM_rnglistx;
9775 if (dwarf_version >= 4)
9776 return DW_FORM_sec_offset;
9777 /* FALLTHRU */
9778 case dw_val_class_vms_delta:
9779 case dw_val_class_offset:
9780 switch (DWARF_OFFSET_SIZE)
9782 case 4:
9783 return DW_FORM_data4;
9784 case 8:
9785 return DW_FORM_data8;
9786 default:
9787 gcc_unreachable ();
9789 case dw_val_class_loc:
9790 if (dwarf_version >= 4)
9791 return DW_FORM_exprloc;
9792 switch (constant_size (size_of_locs (AT_loc (a))))
9794 case 1:
9795 return DW_FORM_block1;
9796 case 2:
9797 return DW_FORM_block2;
9798 case 4:
9799 return DW_FORM_block4;
9800 default:
9801 gcc_unreachable ();
9803 case dw_val_class_const:
9804 return DW_FORM_sdata;
9805 case dw_val_class_unsigned_const:
9806 switch (constant_size (AT_unsigned (a)))
9808 case 1:
9809 return DW_FORM_data1;
9810 case 2:
9811 return DW_FORM_data2;
9812 case 4:
9813 /* In DWARF3 DW_AT_data_member_location with
9814 DW_FORM_data4 or DW_FORM_data8 is a loclistptr, not
9815 constant, so we need to use DW_FORM_udata if we need
9816 a large constant. */
9817 if (dwarf_version == 3 && a->dw_attr == DW_AT_data_member_location)
9818 return DW_FORM_udata;
9819 return DW_FORM_data4;
9820 case 8:
9821 if (dwarf_version == 3 && a->dw_attr == DW_AT_data_member_location)
9822 return DW_FORM_udata;
9823 return DW_FORM_data8;
9824 default:
9825 gcc_unreachable ();
9827 case dw_val_class_const_implicit:
9828 case dw_val_class_unsigned_const_implicit:
9829 case dw_val_class_file_implicit:
9830 return DW_FORM_implicit_const;
9831 case dw_val_class_const_double:
9832 switch (HOST_BITS_PER_WIDE_INT)
9834 case 8:
9835 return DW_FORM_data2;
9836 case 16:
9837 return DW_FORM_data4;
9838 case 32:
9839 return DW_FORM_data8;
9840 case 64:
9841 if (dwarf_version >= 5)
9842 return DW_FORM_data16;
9843 /* FALLTHRU */
9844 default:
9845 return DW_FORM_block1;
9847 case dw_val_class_wide_int:
9848 switch (get_full_len (*a->dw_attr_val.v.val_wide) * HOST_BITS_PER_WIDE_INT)
9850 case 8:
9851 return DW_FORM_data1;
9852 case 16:
9853 return DW_FORM_data2;
9854 case 32:
9855 return DW_FORM_data4;
9856 case 64:
9857 return DW_FORM_data8;
9858 case 128:
9859 if (dwarf_version >= 5)
9860 return DW_FORM_data16;
9861 /* FALLTHRU */
9862 default:
9863 return DW_FORM_block1;
9865 case dw_val_class_symview:
9866 /* ??? We might use uleb128, but then we'd have to compute
9867 .debug_info offsets in the assembler. */
9868 if (symview_upper_bound <= 0xff)
9869 return DW_FORM_data1;
9870 else if (symview_upper_bound <= 0xffff)
9871 return DW_FORM_data2;
9872 else if (symview_upper_bound <= 0xffffffff)
9873 return DW_FORM_data4;
9874 else
9875 return DW_FORM_data8;
9876 case dw_val_class_vec:
9877 switch (constant_size (a->dw_attr_val.v.val_vec.length
9878 * a->dw_attr_val.v.val_vec.elt_size))
9880 case 1:
9881 return DW_FORM_block1;
9882 case 2:
9883 return DW_FORM_block2;
9884 case 4:
9885 return DW_FORM_block4;
9886 default:
9887 gcc_unreachable ();
9889 case dw_val_class_flag:
9890 if (dwarf_version >= 4)
9892 /* Currently all add_AT_flag calls pass in 1 as last argument,
9893 so DW_FORM_flag_present can be used. If that ever changes,
9894 we'll need to use DW_FORM_flag and have some optimization
9895 in build_abbrev_table that will change those to
9896 DW_FORM_flag_present if it is set to 1 in all DIEs using
9897 the same abbrev entry. */
9898 gcc_assert (a->dw_attr_val.v.val_flag == 1);
9899 return DW_FORM_flag_present;
9901 return DW_FORM_flag;
9902 case dw_val_class_die_ref:
9903 if (AT_ref_external (a))
9905 if (AT_ref (a)->comdat_type_p)
9906 return DW_FORM_ref_sig8;
9907 else
9908 return DW_FORM_ref_addr;
9910 else
9911 return DW_FORM_ref;
9912 case dw_val_class_fde_ref:
9913 return DW_FORM_data;
9914 case dw_val_class_lbl_id:
9915 return (AT_index (a) == NOT_INDEXED
9916 ? DW_FORM_addr : dwarf_FORM (DW_FORM_addrx));
9917 case dw_val_class_lineptr:
9918 case dw_val_class_macptr:
9919 case dw_val_class_loclistsptr:
9920 return dwarf_version >= 4 ? DW_FORM_sec_offset : DW_FORM_data;
9921 case dw_val_class_str:
9922 return AT_string_form (a);
9923 case dw_val_class_file:
9924 switch (constant_size (maybe_emit_file (a->dw_attr_val.v.val_file)))
9926 case 1:
9927 return DW_FORM_data1;
9928 case 2:
9929 return DW_FORM_data2;
9930 case 4:
9931 return DW_FORM_data4;
9932 default:
9933 gcc_unreachable ();
9936 case dw_val_class_data8:
9937 return DW_FORM_data8;
9939 case dw_val_class_high_pc:
9940 switch (DWARF2_ADDR_SIZE)
9942 case 1:
9943 return DW_FORM_data1;
9944 case 2:
9945 return DW_FORM_data2;
9946 case 4:
9947 return DW_FORM_data4;
9948 case 8:
9949 return DW_FORM_data8;
9950 default:
9951 gcc_unreachable ();
9954 case dw_val_class_discr_value:
9955 return (a->dw_attr_val.v.val_discr_value.pos
9956 ? DW_FORM_udata
9957 : DW_FORM_sdata);
9958 case dw_val_class_discr_list:
9959 switch (constant_size (size_of_discr_list (AT_discr_list (a))))
9961 case 1:
9962 return DW_FORM_block1;
9963 case 2:
9964 return DW_FORM_block2;
9965 case 4:
9966 return DW_FORM_block4;
9967 default:
9968 gcc_unreachable ();
9971 default:
9972 gcc_unreachable ();
9976 /* Output the encoding of an attribute value. */
9978 static void
9979 output_value_format (dw_attr_node *a)
9981 enum dwarf_form form = value_format (a);
9983 dw2_asm_output_data_uleb128 (form, "(%s)", dwarf_form_name (form));
9986 /* Given a die and id, produce the appropriate abbreviations. */
9988 static void
9989 output_die_abbrevs (unsigned long abbrev_id, dw_die_ref abbrev)
9991 unsigned ix;
9992 dw_attr_node *a_attr;
9994 dw2_asm_output_data_uleb128 (abbrev_id, "(abbrev code)");
9995 dw2_asm_output_data_uleb128 (abbrev->die_tag, "(TAG: %s)",
9996 dwarf_tag_name (abbrev->die_tag));
9998 if (abbrev->die_child != NULL)
9999 dw2_asm_output_data (1, DW_children_yes, "DW_children_yes");
10000 else
10001 dw2_asm_output_data (1, DW_children_no, "DW_children_no");
10003 for (ix = 0; vec_safe_iterate (abbrev->die_attr, ix, &a_attr); ix++)
10005 dw2_asm_output_data_uleb128 (a_attr->dw_attr, "(%s)",
10006 dwarf_attr_name (a_attr->dw_attr));
10007 output_value_format (a_attr);
10008 if (value_format (a_attr) == DW_FORM_implicit_const)
10010 if (AT_class (a_attr) == dw_val_class_file_implicit)
10012 int f = maybe_emit_file (a_attr->dw_attr_val.v.val_file);
10013 const char *filename = a_attr->dw_attr_val.v.val_file->filename;
10014 dw2_asm_output_data_sleb128 (f, "(%s)", filename);
10016 else
10017 dw2_asm_output_data_sleb128 (a_attr->dw_attr_val.v.val_int, NULL);
10021 dw2_asm_output_data (1, 0, NULL);
10022 dw2_asm_output_data (1, 0, NULL);
10026 /* Output the .debug_abbrev section which defines the DIE abbreviation
10027 table. */
10029 static void
10030 output_abbrev_section (void)
10032 unsigned int abbrev_id;
10033 dw_die_ref abbrev;
10035 FOR_EACH_VEC_SAFE_ELT (abbrev_die_table, abbrev_id, abbrev)
10036 if (abbrev_id != 0)
10037 output_die_abbrevs (abbrev_id, abbrev);
10039 /* Terminate the table. */
10040 dw2_asm_output_data (1, 0, NULL);
10043 /* Return a new location list, given the begin and end range, and the
10044 expression. */
10046 static inline dw_loc_list_ref
10047 new_loc_list (dw_loc_descr_ref expr, const char *begin, var_loc_view vbegin,
10048 const char *end, var_loc_view vend,
10049 const char *section)
10051 dw_loc_list_ref retlist = ggc_cleared_alloc<dw_loc_list_node> ();
10053 retlist->begin = begin;
10054 retlist->begin_entry = NULL;
10055 retlist->end = end;
10056 retlist->expr = expr;
10057 retlist->section = section;
10058 retlist->vbegin = vbegin;
10059 retlist->vend = vend;
10061 return retlist;
10064 /* Return true iff there's any nonzero view number in the loc list.
10066 ??? When views are not enabled, we'll often extend a single range
10067 to the entire function, so that we emit a single location
10068 expression rather than a location list. With views, even with a
10069 single range, we'll output a list if start or end have a nonzero
10070 view. If we change this, we may want to stop splitting a single
10071 range in dw_loc_list just because of a nonzero view, even if it
10072 straddles across hot/cold partitions. */
10074 static bool
10075 loc_list_has_views (dw_loc_list_ref list)
10077 if (!debug_variable_location_views)
10078 return false;
10080 for (dw_loc_list_ref loc = list;
10081 loc != NULL; loc = loc->dw_loc_next)
10082 if (!ZERO_VIEW_P (loc->vbegin) || !ZERO_VIEW_P (loc->vend))
10083 return true;
10085 return false;
10088 /* Generate a new internal symbol for this location list node, if it
10089 hasn't got one yet. */
10091 static inline void
10092 gen_llsym (dw_loc_list_ref list)
10094 gcc_assert (!list->ll_symbol);
10095 list->ll_symbol = gen_internal_sym ("LLST");
10097 if (!loc_list_has_views (list))
10098 return;
10100 if (dwarf2out_locviews_in_attribute ())
10102 /* Use the same label_num for the view list. */
10103 label_num--;
10104 list->vl_symbol = gen_internal_sym ("LVUS");
10106 else
10107 list->vl_symbol = list->ll_symbol;
10110 /* Generate a symbol for the list, but only if we really want to emit
10111 it as a list. */
10113 static inline void
10114 maybe_gen_llsym (dw_loc_list_ref list)
10116 if (!list || (!list->dw_loc_next && !loc_list_has_views (list)))
10117 return;
10119 gen_llsym (list);
10122 /* Determine whether or not to skip loc_list entry CURR. If SIZEP is
10123 NULL, don't consider size of the location expression. If we're not
10124 to skip it, and SIZEP is non-null, store the size of CURR->expr's
10125 representation in *SIZEP. */
10127 static bool
10128 skip_loc_list_entry (dw_loc_list_ref curr, unsigned long *sizep = NULL)
10130 /* Don't output an entry that starts and ends at the same address. */
10131 if (strcmp (curr->begin, curr->end) == 0
10132 && curr->vbegin == curr->vend && !curr->force)
10133 return true;
10135 if (!sizep)
10136 return false;
10138 unsigned long size = size_of_locs (curr->expr);
10140 /* If the expression is too large, drop it on the floor. We could
10141 perhaps put it into DW_TAG_dwarf_procedure and refer to that
10142 in the expression, but >= 64KB expressions for a single value
10143 in a single range are unlikely very useful. */
10144 if (dwarf_version < 5 && size > 0xffff)
10145 return true;
10147 *sizep = size;
10149 return false;
10152 /* Output a view pair loclist entry for CURR, if it requires one. */
10154 static void
10155 dwarf2out_maybe_output_loclist_view_pair (dw_loc_list_ref curr)
10157 if (!dwarf2out_locviews_in_loclist ())
10158 return;
10160 if (ZERO_VIEW_P (curr->vbegin) && ZERO_VIEW_P (curr->vend))
10161 return;
10163 #ifdef DW_LLE_view_pair
10164 dw2_asm_output_data (1, DW_LLE_view_pair, "DW_LLE_view_pair");
10166 if (dwarf2out_as_locview_support)
10168 if (ZERO_VIEW_P (curr->vbegin))
10169 dw2_asm_output_data_uleb128 (0, "Location view begin");
10170 else
10172 char label[MAX_ARTIFICIAL_LABEL_BYTES];
10173 ASM_GENERATE_INTERNAL_LABEL (label, "LVU", curr->vbegin);
10174 dw2_asm_output_symname_uleb128 (label, "Location view begin");
10177 if (ZERO_VIEW_P (curr->vend))
10178 dw2_asm_output_data_uleb128 (0, "Location view end");
10179 else
10181 char label[MAX_ARTIFICIAL_LABEL_BYTES];
10182 ASM_GENERATE_INTERNAL_LABEL (label, "LVU", curr->vend);
10183 dw2_asm_output_symname_uleb128 (label, "Location view end");
10186 else
10188 dw2_asm_output_data_uleb128 (curr->vbegin, "Location view begin");
10189 dw2_asm_output_data_uleb128 (curr->vend, "Location view end");
10191 #endif /* DW_LLE_view_pair */
10193 return;
10196 /* Output the location list given to us. */
10198 static void
10199 output_loc_list (dw_loc_list_ref list_head)
10201 int vcount = 0, lcount = 0;
10203 if (list_head->emitted)
10204 return;
10205 list_head->emitted = true;
10207 if (list_head->vl_symbol && dwarf2out_locviews_in_attribute ())
10209 ASM_OUTPUT_LABEL (asm_out_file, list_head->vl_symbol);
10211 for (dw_loc_list_ref curr = list_head; curr != NULL;
10212 curr = curr->dw_loc_next)
10214 unsigned long size;
10216 if (skip_loc_list_entry (curr, &size))
10217 continue;
10219 vcount++;
10221 /* ?? dwarf_split_debug_info? */
10222 if (dwarf2out_as_locview_support)
10224 char label[MAX_ARTIFICIAL_LABEL_BYTES];
10226 if (!ZERO_VIEW_P (curr->vbegin))
10228 ASM_GENERATE_INTERNAL_LABEL (label, "LVU", curr->vbegin);
10229 dw2_asm_output_symname_uleb128 (label,
10230 "View list begin (%s)",
10231 list_head->vl_symbol);
10233 else
10234 dw2_asm_output_data_uleb128 (0,
10235 "View list begin (%s)",
10236 list_head->vl_symbol);
10238 if (!ZERO_VIEW_P (curr->vend))
10240 ASM_GENERATE_INTERNAL_LABEL (label, "LVU", curr->vend);
10241 dw2_asm_output_symname_uleb128 (label,
10242 "View list end (%s)",
10243 list_head->vl_symbol);
10245 else
10246 dw2_asm_output_data_uleb128 (0,
10247 "View list end (%s)",
10248 list_head->vl_symbol);
10250 else
10252 dw2_asm_output_data_uleb128 (curr->vbegin,
10253 "View list begin (%s)",
10254 list_head->vl_symbol);
10255 dw2_asm_output_data_uleb128 (curr->vend,
10256 "View list end (%s)",
10257 list_head->vl_symbol);
10262 ASM_OUTPUT_LABEL (asm_out_file, list_head->ll_symbol);
10264 const char *last_section = NULL;
10265 const char *base_label = NULL;
10267 /* Walk the location list, and output each range + expression. */
10268 for (dw_loc_list_ref curr = list_head; curr != NULL;
10269 curr = curr->dw_loc_next)
10271 unsigned long size;
10273 /* Skip this entry? If we skip it here, we must skip it in the
10274 view list above as well. */
10275 if (skip_loc_list_entry (curr, &size))
10276 continue;
10278 lcount++;
10280 if (dwarf_version >= 5)
10282 if (dwarf_split_debug_info)
10284 dwarf2out_maybe_output_loclist_view_pair (curr);
10285 /* For -gsplit-dwarf, emit DW_LLE_starx_length, which has
10286 uleb128 index into .debug_addr and uleb128 length. */
10287 dw2_asm_output_data (1, DW_LLE_startx_length,
10288 "DW_LLE_startx_length (%s)",
10289 list_head->ll_symbol);
10290 dw2_asm_output_data_uleb128 (curr->begin_entry->index,
10291 "Location list range start index "
10292 "(%s)", curr->begin);
10293 /* FIXME: This will ICE ifndef HAVE_AS_LEB128.
10294 For that case we probably need to emit DW_LLE_startx_endx,
10295 but we'd need 2 .debug_addr entries rather than just one. */
10296 dw2_asm_output_delta_uleb128 (curr->end, curr->begin,
10297 "Location list length (%s)",
10298 list_head->ll_symbol);
10300 else if (!have_multiple_function_sections && HAVE_AS_LEB128)
10302 dwarf2out_maybe_output_loclist_view_pair (curr);
10303 /* If all code is in .text section, the base address is
10304 already provided by the CU attributes. Use
10305 DW_LLE_offset_pair where both addresses are uleb128 encoded
10306 offsets against that base. */
10307 dw2_asm_output_data (1, DW_LLE_offset_pair,
10308 "DW_LLE_offset_pair (%s)",
10309 list_head->ll_symbol);
10310 dw2_asm_output_delta_uleb128 (curr->begin, curr->section,
10311 "Location list begin address (%s)",
10312 list_head->ll_symbol);
10313 dw2_asm_output_delta_uleb128 (curr->end, curr->section,
10314 "Location list end address (%s)",
10315 list_head->ll_symbol);
10317 else if (HAVE_AS_LEB128)
10319 /* Otherwise, find out how many consecutive entries could share
10320 the same base entry. If just one, emit DW_LLE_start_length,
10321 otherwise emit DW_LLE_base_address for the base address
10322 followed by a series of DW_LLE_offset_pair. */
10323 if (last_section == NULL || curr->section != last_section)
10325 dw_loc_list_ref curr2;
10326 for (curr2 = curr->dw_loc_next; curr2 != NULL;
10327 curr2 = curr2->dw_loc_next)
10329 if (strcmp (curr2->begin, curr2->end) == 0
10330 && !curr2->force)
10331 continue;
10332 break;
10334 if (curr2 == NULL || curr->section != curr2->section)
10335 last_section = NULL;
10336 else
10338 last_section = curr->section;
10339 base_label = curr->begin;
10340 dw2_asm_output_data (1, DW_LLE_base_address,
10341 "DW_LLE_base_address (%s)",
10342 list_head->ll_symbol);
10343 dw2_asm_output_addr (DWARF2_ADDR_SIZE, base_label,
10344 "Base address (%s)",
10345 list_head->ll_symbol);
10348 /* Only one entry with the same base address. Use
10349 DW_LLE_start_length with absolute address and uleb128
10350 length. */
10351 if (last_section == NULL)
10353 dwarf2out_maybe_output_loclist_view_pair (curr);
10354 dw2_asm_output_data (1, DW_LLE_start_length,
10355 "DW_LLE_start_length (%s)",
10356 list_head->ll_symbol);
10357 dw2_asm_output_addr (DWARF2_ADDR_SIZE, curr->begin,
10358 "Location list begin address (%s)",
10359 list_head->ll_symbol);
10360 dw2_asm_output_delta_uleb128 (curr->end, curr->begin,
10361 "Location list length "
10362 "(%s)", list_head->ll_symbol);
10364 /* Otherwise emit DW_LLE_offset_pair, relative to above emitted
10365 DW_LLE_base_address. */
10366 else
10368 dwarf2out_maybe_output_loclist_view_pair (curr);
10369 dw2_asm_output_data (1, DW_LLE_offset_pair,
10370 "DW_LLE_offset_pair (%s)",
10371 list_head->ll_symbol);
10372 dw2_asm_output_delta_uleb128 (curr->begin, base_label,
10373 "Location list begin address "
10374 "(%s)", list_head->ll_symbol);
10375 dw2_asm_output_delta_uleb128 (curr->end, base_label,
10376 "Location list end address "
10377 "(%s)", list_head->ll_symbol);
10380 /* The assembler does not support .uleb128 directive. Emit
10381 DW_LLE_start_end with a pair of absolute addresses. */
10382 else
10384 dwarf2out_maybe_output_loclist_view_pair (curr);
10385 dw2_asm_output_data (1, DW_LLE_start_end,
10386 "DW_LLE_start_end (%s)",
10387 list_head->ll_symbol);
10388 dw2_asm_output_addr (DWARF2_ADDR_SIZE, curr->begin,
10389 "Location list begin address (%s)",
10390 list_head->ll_symbol);
10391 dw2_asm_output_addr (DWARF2_ADDR_SIZE, curr->end,
10392 "Location list end address (%s)",
10393 list_head->ll_symbol);
10396 else if (dwarf_split_debug_info)
10398 /* For -gsplit-dwarf -gdwarf-{2,3,4} emit index into .debug_addr
10399 and 4 byte length. */
10400 dw2_asm_output_data (1, DW_LLE_GNU_start_length_entry,
10401 "Location list start/length entry (%s)",
10402 list_head->ll_symbol);
10403 dw2_asm_output_data_uleb128 (curr->begin_entry->index,
10404 "Location list range start index (%s)",
10405 curr->begin);
10406 /* The length field is 4 bytes. If we ever need to support
10407 an 8-byte length, we can add a new DW_LLE code or fall back
10408 to DW_LLE_GNU_start_end_entry. */
10409 dw2_asm_output_delta (4, curr->end, curr->begin,
10410 "Location list range length (%s)",
10411 list_head->ll_symbol);
10413 else if (!have_multiple_function_sections)
10415 /* Pair of relative addresses against start of text section. */
10416 dw2_asm_output_delta (DWARF2_ADDR_SIZE, curr->begin, curr->section,
10417 "Location list begin address (%s)",
10418 list_head->ll_symbol);
10419 dw2_asm_output_delta (DWARF2_ADDR_SIZE, curr->end, curr->section,
10420 "Location list end address (%s)",
10421 list_head->ll_symbol);
10423 else
10425 /* Pair of absolute addresses. */
10426 dw2_asm_output_addr (DWARF2_ADDR_SIZE, curr->begin,
10427 "Location list begin address (%s)",
10428 list_head->ll_symbol);
10429 dw2_asm_output_addr (DWARF2_ADDR_SIZE, curr->end,
10430 "Location list end address (%s)",
10431 list_head->ll_symbol);
10434 /* Output the block length for this list of location operations. */
10435 if (dwarf_version >= 5)
10436 dw2_asm_output_data_uleb128 (size, "Location expression size");
10437 else
10439 gcc_assert (size <= 0xffff);
10440 dw2_asm_output_data (2, size, "Location expression size");
10443 output_loc_sequence (curr->expr, -1);
10446 /* And finally list termination. */
10447 if (dwarf_version >= 5)
10448 dw2_asm_output_data (1, DW_LLE_end_of_list,
10449 "DW_LLE_end_of_list (%s)", list_head->ll_symbol);
10450 else if (dwarf_split_debug_info)
10451 dw2_asm_output_data (1, DW_LLE_GNU_end_of_list_entry,
10452 "Location list terminator (%s)",
10453 list_head->ll_symbol);
10454 else
10456 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0,
10457 "Location list terminator begin (%s)",
10458 list_head->ll_symbol);
10459 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0,
10460 "Location list terminator end (%s)",
10461 list_head->ll_symbol);
10464 gcc_assert (!list_head->vl_symbol
10465 || vcount == lcount * (dwarf2out_locviews_in_attribute () ? 1 : 0));
10468 /* Output a range_list offset into the .debug_ranges or .debug_rnglists
10469 section. Emit a relocated reference if val_entry is NULL, otherwise,
10470 emit an indirect reference. */
10472 static void
10473 output_range_list_offset (dw_attr_node *a)
10475 const char *name = dwarf_attr_name (a->dw_attr);
10477 if (a->dw_attr_val.val_entry == RELOCATED_OFFSET)
10479 if (dwarf_version >= 5)
10481 dw_ranges *r = &(*ranges_table)[a->dw_attr_val.v.val_offset];
10482 dw2_asm_output_offset (DWARF_OFFSET_SIZE, r->label,
10483 debug_ranges_section, "%s", name);
10485 else
10487 char *p = strchr (ranges_section_label, '\0');
10488 sprintf (p, "+" HOST_WIDE_INT_PRINT_HEX,
10489 a->dw_attr_val.v.val_offset * 2 * DWARF2_ADDR_SIZE);
10490 dw2_asm_output_offset (DWARF_OFFSET_SIZE, ranges_section_label,
10491 debug_ranges_section, "%s", name);
10492 *p = '\0';
10495 else if (dwarf_version >= 5)
10497 dw_ranges *r = &(*ranges_table)[a->dw_attr_val.v.val_offset];
10498 gcc_assert (rnglist_idx);
10499 dw2_asm_output_data_uleb128 (r->idx, "%s", name);
10501 else
10502 dw2_asm_output_data (DWARF_OFFSET_SIZE,
10503 a->dw_attr_val.v.val_offset * 2 * DWARF2_ADDR_SIZE,
10504 "%s (offset from %s)", name, ranges_section_label);
10507 /* Output the offset into the debug_loc section. */
10509 static void
10510 output_loc_list_offset (dw_attr_node *a)
10512 char *sym = AT_loc_list (a)->ll_symbol;
10514 gcc_assert (sym);
10515 if (!dwarf_split_debug_info)
10516 dw2_asm_output_offset (DWARF_OFFSET_SIZE, sym, debug_loc_section,
10517 "%s", dwarf_attr_name (a->dw_attr));
10518 else if (dwarf_version >= 5)
10520 gcc_assert (AT_loc_list (a)->num_assigned);
10521 dw2_asm_output_data_uleb128 (AT_loc_list (a)->hash, "%s (%s)",
10522 dwarf_attr_name (a->dw_attr),
10523 sym);
10525 else
10526 dw2_asm_output_delta (DWARF_OFFSET_SIZE, sym, loc_section_label,
10527 "%s", dwarf_attr_name (a->dw_attr));
10530 /* Output the offset into the debug_loc section. */
10532 static void
10533 output_view_list_offset (dw_attr_node *a)
10535 char *sym = (*AT_loc_list_ptr (a))->vl_symbol;
10537 gcc_assert (sym);
10538 if (dwarf_split_debug_info)
10539 dw2_asm_output_delta (DWARF_OFFSET_SIZE, sym, loc_section_label,
10540 "%s", dwarf_attr_name (a->dw_attr));
10541 else
10542 dw2_asm_output_offset (DWARF_OFFSET_SIZE, sym, debug_loc_section,
10543 "%s", dwarf_attr_name (a->dw_attr));
10546 /* Output an attribute's index or value appropriately. */
10548 static void
10549 output_attr_index_or_value (dw_attr_node *a)
10551 const char *name = dwarf_attr_name (a->dw_attr);
10553 if (dwarf_split_debug_info && AT_index (a) != NOT_INDEXED)
10555 dw2_asm_output_data_uleb128 (AT_index (a), "%s", name);
10556 return;
10558 switch (AT_class (a))
10560 case dw_val_class_addr:
10561 dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE, AT_addr (a), "%s", name);
10562 break;
10563 case dw_val_class_high_pc:
10564 case dw_val_class_lbl_id:
10565 dw2_asm_output_addr (DWARF2_ADDR_SIZE, AT_lbl (a), "%s", name);
10566 break;
10567 default:
10568 gcc_unreachable ();
10572 /* Output a type signature. */
10574 static inline void
10575 output_signature (const char *sig, const char *name)
10577 int i;
10579 for (i = 0; i < DWARF_TYPE_SIGNATURE_SIZE; i++)
10580 dw2_asm_output_data (1, sig[i], i == 0 ? "%s" : NULL, name);
10583 /* Output a discriminant value. */
10585 static inline void
10586 output_discr_value (dw_discr_value *discr_value, const char *name)
10588 if (discr_value->pos)
10589 dw2_asm_output_data_uleb128 (discr_value->v.uval, "%s", name);
10590 else
10591 dw2_asm_output_data_sleb128 (discr_value->v.sval, "%s", name);
10594 /* Output the DIE and its attributes. Called recursively to generate
10595 the definitions of each child DIE. */
10597 static void
10598 output_die (dw_die_ref die)
10600 dw_attr_node *a;
10601 dw_die_ref c;
10602 unsigned long size;
10603 unsigned ix;
10605 dw2_asm_output_data_uleb128 (die->die_abbrev, "(DIE (%#lx) %s)",
10606 (unsigned long)die->die_offset,
10607 dwarf_tag_name (die->die_tag));
10609 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
10611 const char *name = dwarf_attr_name (a->dw_attr);
10613 switch (AT_class (a))
10615 case dw_val_class_addr:
10616 output_attr_index_or_value (a);
10617 break;
10619 case dw_val_class_offset:
10620 dw2_asm_output_data (DWARF_OFFSET_SIZE, a->dw_attr_val.v.val_offset,
10621 "%s", name);
10622 break;
10624 case dw_val_class_range_list:
10625 output_range_list_offset (a);
10626 break;
10628 case dw_val_class_loc:
10629 size = size_of_locs (AT_loc (a));
10631 /* Output the block length for this list of location operations. */
10632 if (dwarf_version >= 4)
10633 dw2_asm_output_data_uleb128 (size, "%s", name);
10634 else
10635 dw2_asm_output_data (constant_size (size), size, "%s", name);
10637 output_loc_sequence (AT_loc (a), -1);
10638 break;
10640 case dw_val_class_const:
10641 /* ??? It would be slightly more efficient to use a scheme like is
10642 used for unsigned constants below, but gdb 4.x does not sign
10643 extend. Gdb 5.x does sign extend. */
10644 dw2_asm_output_data_sleb128 (AT_int (a), "%s", name);
10645 break;
10647 case dw_val_class_unsigned_const:
10649 int csize = constant_size (AT_unsigned (a));
10650 if (dwarf_version == 3
10651 && a->dw_attr == DW_AT_data_member_location
10652 && csize >= 4)
10653 dw2_asm_output_data_uleb128 (AT_unsigned (a), "%s", name);
10654 else
10655 dw2_asm_output_data (csize, AT_unsigned (a), "%s", name);
10657 break;
10659 case dw_val_class_symview:
10661 int vsize;
10662 if (symview_upper_bound <= 0xff)
10663 vsize = 1;
10664 else if (symview_upper_bound <= 0xffff)
10665 vsize = 2;
10666 else if (symview_upper_bound <= 0xffffffff)
10667 vsize = 4;
10668 else
10669 vsize = 8;
10670 dw2_asm_output_addr (vsize, a->dw_attr_val.v.val_symbolic_view,
10671 "%s", name);
10673 break;
10675 case dw_val_class_const_implicit:
10676 if (flag_debug_asm)
10677 fprintf (asm_out_file, "\t\t\t%s %s ("
10678 HOST_WIDE_INT_PRINT_DEC ")\n",
10679 ASM_COMMENT_START, name, AT_int (a));
10680 break;
10682 case dw_val_class_unsigned_const_implicit:
10683 if (flag_debug_asm)
10684 fprintf (asm_out_file, "\t\t\t%s %s ("
10685 HOST_WIDE_INT_PRINT_HEX ")\n",
10686 ASM_COMMENT_START, name, AT_unsigned (a));
10687 break;
10689 case dw_val_class_const_double:
10691 unsigned HOST_WIDE_INT first, second;
10693 if (HOST_BITS_PER_WIDE_INT >= DWARF_LARGEST_DATA_FORM_BITS)
10694 dw2_asm_output_data (1,
10695 HOST_BITS_PER_DOUBLE_INT
10696 / HOST_BITS_PER_CHAR,
10697 NULL);
10699 if (WORDS_BIG_ENDIAN)
10701 first = a->dw_attr_val.v.val_double.high;
10702 second = a->dw_attr_val.v.val_double.low;
10704 else
10706 first = a->dw_attr_val.v.val_double.low;
10707 second = a->dw_attr_val.v.val_double.high;
10710 dw2_asm_output_data (HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR,
10711 first, "%s", name);
10712 dw2_asm_output_data (HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR,
10713 second, NULL);
10715 break;
10717 case dw_val_class_wide_int:
10719 int i;
10720 int len = get_full_len (*a->dw_attr_val.v.val_wide);
10721 int l = HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR;
10722 if (len * HOST_BITS_PER_WIDE_INT > DWARF_LARGEST_DATA_FORM_BITS)
10723 dw2_asm_output_data (1, get_full_len (*a->dw_attr_val.v.val_wide)
10724 * l, NULL);
10726 if (WORDS_BIG_ENDIAN)
10727 for (i = len - 1; i >= 0; --i)
10729 dw2_asm_output_data (l, a->dw_attr_val.v.val_wide->elt (i),
10730 "%s", name);
10731 name = "";
10733 else
10734 for (i = 0; i < len; ++i)
10736 dw2_asm_output_data (l, a->dw_attr_val.v.val_wide->elt (i),
10737 "%s", name);
10738 name = "";
10741 break;
10743 case dw_val_class_vec:
10745 unsigned int elt_size = a->dw_attr_val.v.val_vec.elt_size;
10746 unsigned int len = a->dw_attr_val.v.val_vec.length;
10747 unsigned int i;
10748 unsigned char *p;
10750 dw2_asm_output_data (constant_size (len * elt_size),
10751 len * elt_size, "%s", name);
10752 if (elt_size > sizeof (HOST_WIDE_INT))
10754 elt_size /= 2;
10755 len *= 2;
10757 for (i = 0, p = (unsigned char *) a->dw_attr_val.v.val_vec.array;
10758 i < len;
10759 i++, p += elt_size)
10760 dw2_asm_output_data (elt_size, extract_int (p, elt_size),
10761 "fp or vector constant word %u", i);
10762 break;
10765 case dw_val_class_flag:
10766 if (dwarf_version >= 4)
10768 /* Currently all add_AT_flag calls pass in 1 as last argument,
10769 so DW_FORM_flag_present can be used. If that ever changes,
10770 we'll need to use DW_FORM_flag and have some optimization
10771 in build_abbrev_table that will change those to
10772 DW_FORM_flag_present if it is set to 1 in all DIEs using
10773 the same abbrev entry. */
10774 gcc_assert (AT_flag (a) == 1);
10775 if (flag_debug_asm)
10776 fprintf (asm_out_file, "\t\t\t%s %s\n",
10777 ASM_COMMENT_START, name);
10778 break;
10780 dw2_asm_output_data (1, AT_flag (a), "%s", name);
10781 break;
10783 case dw_val_class_loc_list:
10784 output_loc_list_offset (a);
10785 break;
10787 case dw_val_class_view_list:
10788 output_view_list_offset (a);
10789 break;
10791 case dw_val_class_die_ref:
10792 if (AT_ref_external (a))
10794 if (AT_ref (a)->comdat_type_p)
10796 comdat_type_node *type_node
10797 = AT_ref (a)->die_id.die_type_node;
10799 gcc_assert (type_node);
10800 output_signature (type_node->signature, name);
10802 else
10804 const char *sym = AT_ref (a)->die_id.die_symbol;
10805 int size;
10807 gcc_assert (sym);
10808 /* In DWARF2, DW_FORM_ref_addr is sized by target address
10809 length, whereas in DWARF3 it's always sized as an
10810 offset. */
10811 if (dwarf_version == 2)
10812 size = DWARF2_ADDR_SIZE;
10813 else
10814 size = DWARF_OFFSET_SIZE;
10815 /* ??? We cannot unconditionally output die_offset if
10816 non-zero - others might create references to those
10817 DIEs via symbols.
10818 And we do not clear its DIE offset after outputting it
10819 (and the label refers to the actual DIEs, not the
10820 DWARF CU unit header which is when using label + offset
10821 would be the correct thing to do).
10822 ??? This is the reason for the with_offset flag. */
10823 if (AT_ref (a)->with_offset)
10824 dw2_asm_output_offset (size, sym, AT_ref (a)->die_offset,
10825 debug_info_section, "%s", name);
10826 else
10827 dw2_asm_output_offset (size, sym, debug_info_section, "%s",
10828 name);
10831 else
10833 gcc_assert (AT_ref (a)->die_offset);
10834 dw2_asm_output_data (DWARF_OFFSET_SIZE, AT_ref (a)->die_offset,
10835 "%s", name);
10837 break;
10839 case dw_val_class_fde_ref:
10841 char l1[MAX_ARTIFICIAL_LABEL_BYTES];
10843 ASM_GENERATE_INTERNAL_LABEL (l1, FDE_LABEL,
10844 a->dw_attr_val.v.val_fde_index * 2);
10845 dw2_asm_output_offset (DWARF_OFFSET_SIZE, l1, debug_frame_section,
10846 "%s", name);
10848 break;
10850 case dw_val_class_vms_delta:
10851 #ifdef ASM_OUTPUT_DWARF_VMS_DELTA
10852 dw2_asm_output_vms_delta (DWARF_OFFSET_SIZE,
10853 AT_vms_delta2 (a), AT_vms_delta1 (a),
10854 "%s", name);
10855 #else
10856 dw2_asm_output_delta (DWARF_OFFSET_SIZE,
10857 AT_vms_delta2 (a), AT_vms_delta1 (a),
10858 "%s", name);
10859 #endif
10860 break;
10862 case dw_val_class_lbl_id:
10863 output_attr_index_or_value (a);
10864 break;
10866 case dw_val_class_lineptr:
10867 dw2_asm_output_offset (DWARF_OFFSET_SIZE, AT_lbl (a),
10868 debug_line_section, "%s", name);
10869 break;
10871 case dw_val_class_macptr:
10872 dw2_asm_output_offset (DWARF_OFFSET_SIZE, AT_lbl (a),
10873 debug_macinfo_section, "%s", name);
10874 break;
10876 case dw_val_class_loclistsptr:
10877 dw2_asm_output_offset (DWARF_OFFSET_SIZE, AT_lbl (a),
10878 debug_loc_section, "%s", name);
10879 break;
10881 case dw_val_class_str:
10882 if (a->dw_attr_val.v.val_str->form == DW_FORM_strp)
10883 dw2_asm_output_offset (DWARF_OFFSET_SIZE,
10884 a->dw_attr_val.v.val_str->label,
10885 debug_str_section,
10886 "%s: \"%s\"", name, AT_string (a));
10887 else if (a->dw_attr_val.v.val_str->form == DW_FORM_line_strp)
10888 dw2_asm_output_offset (DWARF_OFFSET_SIZE,
10889 a->dw_attr_val.v.val_str->label,
10890 debug_line_str_section,
10891 "%s: \"%s\"", name, AT_string (a));
10892 else if (a->dw_attr_val.v.val_str->form == dwarf_FORM (DW_FORM_strx))
10893 dw2_asm_output_data_uleb128 (AT_index (a),
10894 "%s: \"%s\"", name, AT_string (a));
10895 else
10896 dw2_asm_output_nstring (AT_string (a), -1, "%s", name);
10897 break;
10899 case dw_val_class_file:
10901 int f = maybe_emit_file (a->dw_attr_val.v.val_file);
10903 dw2_asm_output_data (constant_size (f), f, "%s (%s)", name,
10904 a->dw_attr_val.v.val_file->filename);
10905 break;
10908 case dw_val_class_file_implicit:
10909 if (flag_debug_asm)
10910 fprintf (asm_out_file, "\t\t\t%s %s (%d, %s)\n",
10911 ASM_COMMENT_START, name,
10912 maybe_emit_file (a->dw_attr_val.v.val_file),
10913 a->dw_attr_val.v.val_file->filename);
10914 break;
10916 case dw_val_class_data8:
10918 int i;
10920 for (i = 0; i < 8; i++)
10921 dw2_asm_output_data (1, a->dw_attr_val.v.val_data8[i],
10922 i == 0 ? "%s" : NULL, name);
10923 break;
10926 case dw_val_class_high_pc:
10927 dw2_asm_output_delta (DWARF2_ADDR_SIZE, AT_lbl (a),
10928 get_AT_low_pc (die), "DW_AT_high_pc");
10929 break;
10931 case dw_val_class_discr_value:
10932 output_discr_value (&a->dw_attr_val.v.val_discr_value, name);
10933 break;
10935 case dw_val_class_discr_list:
10937 dw_discr_list_ref list = AT_discr_list (a);
10938 const int size = size_of_discr_list (list);
10940 /* This is a block, so output its length first. */
10941 dw2_asm_output_data (constant_size (size), size,
10942 "%s: block size", name);
10944 for (; list != NULL; list = list->dw_discr_next)
10946 /* One byte for the discriminant value descriptor, and then as
10947 many LEB128 numbers as required. */
10948 if (list->dw_discr_range)
10949 dw2_asm_output_data (1, DW_DSC_range,
10950 "%s: DW_DSC_range", name);
10951 else
10952 dw2_asm_output_data (1, DW_DSC_label,
10953 "%s: DW_DSC_label", name);
10955 output_discr_value (&list->dw_discr_lower_bound, name);
10956 if (list->dw_discr_range)
10957 output_discr_value (&list->dw_discr_upper_bound, name);
10959 break;
10962 default:
10963 gcc_unreachable ();
10967 FOR_EACH_CHILD (die, c, output_die (c));
10969 /* Add null byte to terminate sibling list. */
10970 if (die->die_child != NULL)
10971 dw2_asm_output_data (1, 0, "end of children of DIE %#lx",
10972 (unsigned long) die->die_offset);
10975 /* Output the dwarf version number. */
10977 static void
10978 output_dwarf_version ()
10980 /* ??? For now, if -gdwarf-6 is specified, we output version 5 with
10981 views in loclist. That will change eventually. */
10982 if (dwarf_version == 6)
10984 static bool once;
10985 if (!once)
10987 warning (0, "%<-gdwarf-6%> is output as version 5 with "
10988 "incompatibilities");
10989 once = true;
10991 dw2_asm_output_data (2, 5, "DWARF version number");
10993 else
10994 dw2_asm_output_data (2, dwarf_version, "DWARF version number");
10997 /* Output the compilation unit that appears at the beginning of the
10998 .debug_info section, and precedes the DIE descriptions. */
11000 static void
11001 output_compilation_unit_header (enum dwarf_unit_type ut)
11003 if (!XCOFF_DEBUGGING_INFO)
11005 if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
11006 dw2_asm_output_data (4, 0xffffffff,
11007 "Initial length escape value indicating 64-bit DWARF extension");
11008 dw2_asm_output_data (DWARF_OFFSET_SIZE,
11009 next_die_offset - DWARF_INITIAL_LENGTH_SIZE,
11010 "Length of Compilation Unit Info");
11013 output_dwarf_version ();
11014 if (dwarf_version >= 5)
11016 const char *name;
11017 switch (ut)
11019 case DW_UT_compile: name = "DW_UT_compile"; break;
11020 case DW_UT_type: name = "DW_UT_type"; break;
11021 case DW_UT_split_compile: name = "DW_UT_split_compile"; break;
11022 case DW_UT_split_type: name = "DW_UT_split_type"; break;
11023 default: gcc_unreachable ();
11025 dw2_asm_output_data (1, ut, "%s", name);
11026 dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Pointer Size (in bytes)");
11028 dw2_asm_output_offset (DWARF_OFFSET_SIZE, abbrev_section_label,
11029 debug_abbrev_section,
11030 "Offset Into Abbrev. Section");
11031 if (dwarf_version < 5)
11032 dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Pointer Size (in bytes)");
11035 /* Output the compilation unit DIE and its children. */
11037 static void
11038 output_comp_unit (dw_die_ref die, int output_if_empty,
11039 const unsigned char *dwo_id)
11041 const char *secname, *oldsym;
11042 char *tmp;
11044 /* Unless we are outputting main CU, we may throw away empty ones. */
11045 if (!output_if_empty && die->die_child == NULL)
11046 return;
11048 /* Even if there are no children of this DIE, we must output the information
11049 about the compilation unit. Otherwise, on an empty translation unit, we
11050 will generate a present, but empty, .debug_info section. IRIX 6.5 `nm'
11051 will then complain when examining the file. First mark all the DIEs in
11052 this CU so we know which get local refs. */
11053 mark_dies (die);
11055 external_ref_hash_type *extern_map = optimize_external_refs (die);
11057 /* For now, optimize only the main CU, in order to optimize the rest
11058 we'd need to see all of them earlier. Leave the rest for post-linking
11059 tools like DWZ. */
11060 if (die == comp_unit_die ())
11061 abbrev_opt_start = vec_safe_length (abbrev_die_table);
11063 build_abbrev_table (die, extern_map);
11065 optimize_abbrev_table ();
11067 delete extern_map;
11069 /* Initialize the beginning DIE offset - and calculate sizes/offsets. */
11070 next_die_offset = (dwo_id
11071 ? DWARF_COMPILE_UNIT_SKELETON_HEADER_SIZE
11072 : DWARF_COMPILE_UNIT_HEADER_SIZE);
11073 calc_die_sizes (die);
11075 oldsym = die->die_id.die_symbol;
11076 if (oldsym && die->comdat_type_p)
11078 tmp = XALLOCAVEC (char, strlen (oldsym) + 24);
11080 sprintf (tmp, ".gnu.linkonce.wi.%s", oldsym);
11081 secname = tmp;
11082 die->die_id.die_symbol = NULL;
11083 switch_to_section (get_section (secname, SECTION_DEBUG, NULL));
11085 else
11087 switch_to_section (debug_info_section);
11088 ASM_OUTPUT_LABEL (asm_out_file, debug_info_section_label);
11089 info_section_emitted = true;
11092 /* For LTO cross unit DIE refs we want a symbol on the start of the
11093 debuginfo section, not on the CU DIE. */
11094 if ((flag_generate_lto || flag_generate_offload) && oldsym)
11096 /* ??? No way to get visibility assembled without a decl. */
11097 tree decl = build_decl (UNKNOWN_LOCATION, VAR_DECL,
11098 get_identifier (oldsym), char_type_node);
11099 TREE_PUBLIC (decl) = true;
11100 TREE_STATIC (decl) = true;
11101 DECL_ARTIFICIAL (decl) = true;
11102 DECL_VISIBILITY (decl) = VISIBILITY_HIDDEN;
11103 DECL_VISIBILITY_SPECIFIED (decl) = true;
11104 targetm.asm_out.assemble_visibility (decl, VISIBILITY_HIDDEN);
11105 #ifdef ASM_WEAKEN_LABEL
11106 /* We prefer a .weak because that handles duplicates from duplicate
11107 archive members in a graceful way. */
11108 ASM_WEAKEN_LABEL (asm_out_file, oldsym);
11109 #else
11110 targetm.asm_out.globalize_label (asm_out_file, oldsym);
11111 #endif
11112 ASM_OUTPUT_LABEL (asm_out_file, oldsym);
11115 /* Output debugging information. */
11116 output_compilation_unit_header (dwo_id
11117 ? DW_UT_split_compile : DW_UT_compile);
11118 if (dwarf_version >= 5)
11120 if (dwo_id != NULL)
11121 for (int i = 0; i < 8; i++)
11122 dw2_asm_output_data (1, dwo_id[i], i == 0 ? "DWO id" : NULL);
11124 output_die (die);
11126 /* Leave the marks on the main CU, so we can check them in
11127 output_pubnames. */
11128 if (oldsym)
11130 unmark_dies (die);
11131 die->die_id.die_symbol = oldsym;
11135 /* Whether to generate the DWARF accelerator tables in .debug_pubnames
11136 and .debug_pubtypes. This is configured per-target, but can be
11137 overridden by the -gpubnames or -gno-pubnames options. */
11139 static inline bool
11140 want_pubnames (void)
11142 if (debug_info_level <= DINFO_LEVEL_TERSE
11143 /* Names and types go to the early debug part only. */
11144 || in_lto_p)
11145 return false;
11146 if (debug_generate_pub_sections != -1)
11147 return debug_generate_pub_sections;
11148 return targetm.want_debug_pub_sections;
11151 /* Add the DW_AT_GNU_pubnames and DW_AT_GNU_pubtypes attributes. */
11153 static void
11154 add_AT_pubnames (dw_die_ref die)
11156 if (want_pubnames ())
11157 add_AT_flag (die, DW_AT_GNU_pubnames, 1);
11160 /* Add a string attribute value to a skeleton DIE. */
11162 static inline void
11163 add_skeleton_AT_string (dw_die_ref die, enum dwarf_attribute attr_kind,
11164 const char *str)
11166 dw_attr_node attr;
11167 struct indirect_string_node *node;
11169 if (! skeleton_debug_str_hash)
11170 skeleton_debug_str_hash
11171 = hash_table<indirect_string_hasher>::create_ggc (10);
11173 node = find_AT_string_in_table (str, skeleton_debug_str_hash);
11174 find_string_form (node);
11175 if (node->form == dwarf_FORM (DW_FORM_strx))
11176 node->form = DW_FORM_strp;
11178 attr.dw_attr = attr_kind;
11179 attr.dw_attr_val.val_class = dw_val_class_str;
11180 attr.dw_attr_val.val_entry = NULL;
11181 attr.dw_attr_val.v.val_str = node;
11182 add_dwarf_attr (die, &attr);
11185 /* Helper function to generate top-level dies for skeleton debug_info and
11186 debug_types. */
11188 static void
11189 add_top_level_skeleton_die_attrs (dw_die_ref die)
11191 const char *dwo_file_name = concat (aux_base_name, ".dwo", NULL);
11192 const char *comp_dir = comp_dir_string ();
11194 add_skeleton_AT_string (die, dwarf_AT (DW_AT_dwo_name), dwo_file_name);
11195 if (comp_dir != NULL)
11196 add_skeleton_AT_string (die, DW_AT_comp_dir, comp_dir);
11197 add_AT_pubnames (die);
11198 add_AT_lineptr (die, dwarf_AT (DW_AT_addr_base), debug_addr_section_label);
11201 /* Output skeleton debug sections that point to the dwo file. */
11203 static void
11204 output_skeleton_debug_sections (dw_die_ref comp_unit,
11205 const unsigned char *dwo_id)
11207 /* These attributes will be found in the full debug_info section. */
11208 remove_AT (comp_unit, DW_AT_producer);
11209 remove_AT (comp_unit, DW_AT_language);
11211 switch_to_section (debug_skeleton_info_section);
11212 ASM_OUTPUT_LABEL (asm_out_file, debug_skeleton_info_section_label);
11214 /* Produce the skeleton compilation-unit header. This one differs enough from
11215 a normal CU header that it's better not to call output_compilation_unit
11216 header. */
11217 if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
11218 dw2_asm_output_data (4, 0xffffffff,
11219 "Initial length escape value indicating 64-bit "
11220 "DWARF extension");
11222 dw2_asm_output_data (DWARF_OFFSET_SIZE,
11223 DWARF_COMPILE_UNIT_SKELETON_HEADER_SIZE
11224 - DWARF_INITIAL_LENGTH_SIZE
11225 + size_of_die (comp_unit),
11226 "Length of Compilation Unit Info");
11227 output_dwarf_version ();
11228 if (dwarf_version >= 5)
11230 dw2_asm_output_data (1, DW_UT_skeleton, "DW_UT_skeleton");
11231 dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Pointer Size (in bytes)");
11233 dw2_asm_output_offset (DWARF_OFFSET_SIZE, debug_skeleton_abbrev_section_label,
11234 debug_skeleton_abbrev_section,
11235 "Offset Into Abbrev. Section");
11236 if (dwarf_version < 5)
11237 dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Pointer Size (in bytes)");
11238 else
11239 for (int i = 0; i < 8; i++)
11240 dw2_asm_output_data (1, dwo_id[i], i == 0 ? "DWO id" : NULL);
11242 comp_unit->die_abbrev = SKELETON_COMP_DIE_ABBREV;
11243 output_die (comp_unit);
11245 /* Build the skeleton debug_abbrev section. */
11246 switch_to_section (debug_skeleton_abbrev_section);
11247 ASM_OUTPUT_LABEL (asm_out_file, debug_skeleton_abbrev_section_label);
11249 output_die_abbrevs (SKELETON_COMP_DIE_ABBREV, comp_unit);
11251 dw2_asm_output_data (1, 0, "end of skeleton .debug_abbrev");
11254 /* Output a comdat type unit DIE and its children. */
11256 static void
11257 output_comdat_type_unit (comdat_type_node *node,
11258 bool early_lto_debug ATTRIBUTE_UNUSED)
11260 const char *secname;
11261 char *tmp;
11262 int i;
11263 #if defined (OBJECT_FORMAT_ELF)
11264 tree comdat_key;
11265 #endif
11267 /* First mark all the DIEs in this CU so we know which get local refs. */
11268 mark_dies (node->root_die);
11270 external_ref_hash_type *extern_map = optimize_external_refs (node->root_die);
11272 build_abbrev_table (node->root_die, extern_map);
11274 delete extern_map;
11275 extern_map = NULL;
11277 /* Initialize the beginning DIE offset - and calculate sizes/offsets. */
11278 next_die_offset = DWARF_COMDAT_TYPE_UNIT_HEADER_SIZE;
11279 calc_die_sizes (node->root_die);
11281 #if defined (OBJECT_FORMAT_ELF)
11282 if (dwarf_version >= 5)
11284 if (!dwarf_split_debug_info)
11285 secname = early_lto_debug ? DEBUG_LTO_INFO_SECTION : DEBUG_INFO_SECTION;
11286 else
11287 secname = (early_lto_debug
11288 ? DEBUG_LTO_DWO_INFO_SECTION : DEBUG_DWO_INFO_SECTION);
11290 else if (!dwarf_split_debug_info)
11291 secname = early_lto_debug ? ".gnu.debuglto_.debug_types" : ".debug_types";
11292 else
11293 secname = (early_lto_debug
11294 ? ".gnu.debuglto_.debug_types.dwo" : ".debug_types.dwo");
11296 tmp = XALLOCAVEC (char, 4 + DWARF_TYPE_SIGNATURE_SIZE * 2);
11297 sprintf (tmp, dwarf_version >= 5 ? "wi." : "wt.");
11298 for (i = 0; i < DWARF_TYPE_SIGNATURE_SIZE; i++)
11299 sprintf (tmp + 3 + i * 2, "%02x", node->signature[i] & 0xff);
11300 comdat_key = get_identifier (tmp);
11301 targetm.asm_out.named_section (secname,
11302 SECTION_DEBUG | SECTION_LINKONCE,
11303 comdat_key);
11304 #else
11305 tmp = XALLOCAVEC (char, 18 + DWARF_TYPE_SIGNATURE_SIZE * 2);
11306 sprintf (tmp, (dwarf_version >= 5
11307 ? ".gnu.linkonce.wi." : ".gnu.linkonce.wt."));
11308 for (i = 0; i < DWARF_TYPE_SIGNATURE_SIZE; i++)
11309 sprintf (tmp + 17 + i * 2, "%02x", node->signature[i] & 0xff);
11310 secname = tmp;
11311 switch_to_section (get_section (secname, SECTION_DEBUG, NULL));
11312 #endif
11314 /* Output debugging information. */
11315 output_compilation_unit_header (dwarf_split_debug_info
11316 ? DW_UT_split_type : DW_UT_type);
11317 output_signature (node->signature, "Type Signature");
11318 dw2_asm_output_data (DWARF_OFFSET_SIZE, node->type_die->die_offset,
11319 "Offset to Type DIE");
11320 output_die (node->root_die);
11322 unmark_dies (node->root_die);
11325 /* Return the DWARF2/3 pubname associated with a decl. */
11327 static const char *
11328 dwarf2_name (tree decl, int scope)
11330 if (DECL_NAMELESS (decl))
11331 return NULL;
11332 return lang_hooks.dwarf_name (decl, scope ? 1 : 0);
11335 /* Add a new entry to .debug_pubnames if appropriate. */
11337 static void
11338 add_pubname_string (const char *str, dw_die_ref die)
11340 pubname_entry e;
11342 e.die = die;
11343 e.name = xstrdup (str);
11344 vec_safe_push (pubname_table, e);
11347 static void
11348 add_pubname (tree decl, dw_die_ref die)
11350 if (!want_pubnames ())
11351 return;
11353 /* Don't add items to the table when we expect that the consumer will have
11354 just read the enclosing die. For example, if the consumer is looking at a
11355 class_member, it will either be inside the class already, or will have just
11356 looked up the class to find the member. Either way, searching the class is
11357 faster than searching the index. */
11358 if ((TREE_PUBLIC (decl) && !class_scope_p (die->die_parent))
11359 || is_cu_die (die->die_parent) || is_namespace_die (die->die_parent))
11361 const char *name = dwarf2_name (decl, 1);
11363 if (name)
11364 add_pubname_string (name, die);
11368 /* Add an enumerator to the pubnames section. */
11370 static void
11371 add_enumerator_pubname (const char *scope_name, dw_die_ref die)
11373 pubname_entry e;
11375 gcc_assert (scope_name);
11376 e.name = concat (scope_name, get_AT_string (die, DW_AT_name), NULL);
11377 e.die = die;
11378 vec_safe_push (pubname_table, e);
11381 /* Add a new entry to .debug_pubtypes if appropriate. */
11383 static void
11384 add_pubtype (tree decl, dw_die_ref die)
11386 pubname_entry e;
11388 if (!want_pubnames ())
11389 return;
11391 if ((TREE_PUBLIC (decl)
11392 || is_cu_die (die->die_parent) || is_namespace_die (die->die_parent))
11393 && (die->die_tag == DW_TAG_typedef || COMPLETE_TYPE_P (decl)))
11395 tree scope = NULL;
11396 const char *scope_name = "";
11397 const char *sep = is_cxx () ? "::" : ".";
11398 const char *name;
11400 scope = TYPE_P (decl) ? TYPE_CONTEXT (decl) : NULL;
11401 if (scope && TREE_CODE (scope) == NAMESPACE_DECL)
11403 scope_name = lang_hooks.dwarf_name (scope, 1);
11404 if (scope_name != NULL && scope_name[0] != '\0')
11405 scope_name = concat (scope_name, sep, NULL);
11406 else
11407 scope_name = "";
11410 if (TYPE_P (decl))
11411 name = type_tag (decl);
11412 else
11413 name = lang_hooks.dwarf_name (decl, 1);
11415 /* If we don't have a name for the type, there's no point in adding
11416 it to the table. */
11417 if (name != NULL && name[0] != '\0')
11419 e.die = die;
11420 e.name = concat (scope_name, name, NULL);
11421 vec_safe_push (pubtype_table, e);
11424 /* Although it might be more consistent to add the pubinfo for the
11425 enumerators as their dies are created, they should only be added if the
11426 enum type meets the criteria above. So rather than re-check the parent
11427 enum type whenever an enumerator die is created, just output them all
11428 here. This isn't protected by the name conditional because anonymous
11429 enums don't have names. */
11430 if (die->die_tag == DW_TAG_enumeration_type)
11432 dw_die_ref c;
11434 FOR_EACH_CHILD (die, c, add_enumerator_pubname (scope_name, c));
11439 /* Output a single entry in the pubnames table. */
11441 static void
11442 output_pubname (dw_offset die_offset, pubname_entry *entry)
11444 dw_die_ref die = entry->die;
11445 int is_static = get_AT_flag (die, DW_AT_external) ? 0 : 1;
11447 dw2_asm_output_data (DWARF_OFFSET_SIZE, die_offset, "DIE offset");
11449 if (debug_generate_pub_sections == 2)
11451 /* This logic follows gdb's method for determining the value of the flag
11452 byte. */
11453 uint32_t flags = GDB_INDEX_SYMBOL_KIND_NONE;
11454 switch (die->die_tag)
11456 case DW_TAG_typedef:
11457 case DW_TAG_base_type:
11458 case DW_TAG_subrange_type:
11459 GDB_INDEX_SYMBOL_KIND_SET_VALUE(flags, GDB_INDEX_SYMBOL_KIND_TYPE);
11460 GDB_INDEX_SYMBOL_STATIC_SET_VALUE(flags, 1);
11461 break;
11462 case DW_TAG_enumerator:
11463 GDB_INDEX_SYMBOL_KIND_SET_VALUE(flags,
11464 GDB_INDEX_SYMBOL_KIND_VARIABLE);
11465 if (!is_cxx ())
11466 GDB_INDEX_SYMBOL_STATIC_SET_VALUE(flags, 1);
11467 break;
11468 case DW_TAG_subprogram:
11469 GDB_INDEX_SYMBOL_KIND_SET_VALUE(flags,
11470 GDB_INDEX_SYMBOL_KIND_FUNCTION);
11471 if (!is_ada ())
11472 GDB_INDEX_SYMBOL_STATIC_SET_VALUE(flags, is_static);
11473 break;
11474 case DW_TAG_constant:
11475 GDB_INDEX_SYMBOL_KIND_SET_VALUE(flags,
11476 GDB_INDEX_SYMBOL_KIND_VARIABLE);
11477 GDB_INDEX_SYMBOL_STATIC_SET_VALUE(flags, is_static);
11478 break;
11479 case DW_TAG_variable:
11480 GDB_INDEX_SYMBOL_KIND_SET_VALUE(flags,
11481 GDB_INDEX_SYMBOL_KIND_VARIABLE);
11482 GDB_INDEX_SYMBOL_STATIC_SET_VALUE(flags, is_static);
11483 break;
11484 case DW_TAG_namespace:
11485 case DW_TAG_imported_declaration:
11486 GDB_INDEX_SYMBOL_KIND_SET_VALUE(flags, GDB_INDEX_SYMBOL_KIND_TYPE);
11487 break;
11488 case DW_TAG_class_type:
11489 case DW_TAG_interface_type:
11490 case DW_TAG_structure_type:
11491 case DW_TAG_union_type:
11492 case DW_TAG_enumeration_type:
11493 GDB_INDEX_SYMBOL_KIND_SET_VALUE(flags, GDB_INDEX_SYMBOL_KIND_TYPE);
11494 if (!is_cxx ())
11495 GDB_INDEX_SYMBOL_STATIC_SET_VALUE(flags, 1);
11496 break;
11497 default:
11498 /* An unusual tag. Leave the flag-byte empty. */
11499 break;
11501 dw2_asm_output_data (1, flags >> GDB_INDEX_CU_BITSIZE,
11502 "GDB-index flags");
11505 dw2_asm_output_nstring (entry->name, -1, "external name");
11509 /* Output the public names table used to speed up access to externally
11510 visible names; or the public types table used to find type definitions. */
11512 static void
11513 output_pubnames (vec<pubname_entry, va_gc> *names)
11515 unsigned i;
11516 unsigned long pubnames_length = size_of_pubnames (names);
11517 pubname_entry *pub;
11519 if (!XCOFF_DEBUGGING_INFO)
11521 if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
11522 dw2_asm_output_data (4, 0xffffffff,
11523 "Initial length escape value indicating 64-bit DWARF extension");
11524 dw2_asm_output_data (DWARF_OFFSET_SIZE, pubnames_length,
11525 "Pub Info Length");
11528 /* Version number for pubnames/pubtypes is independent of dwarf version. */
11529 dw2_asm_output_data (2, 2, "DWARF pubnames/pubtypes version");
11531 if (dwarf_split_debug_info)
11532 dw2_asm_output_offset (DWARF_OFFSET_SIZE, debug_skeleton_info_section_label,
11533 debug_skeleton_info_section,
11534 "Offset of Compilation Unit Info");
11535 else
11536 dw2_asm_output_offset (DWARF_OFFSET_SIZE, debug_info_section_label,
11537 debug_info_section,
11538 "Offset of Compilation Unit Info");
11539 dw2_asm_output_data (DWARF_OFFSET_SIZE, next_die_offset,
11540 "Compilation Unit Length");
11542 FOR_EACH_VEC_ELT (*names, i, pub)
11544 if (include_pubname_in_output (names, pub))
11546 dw_offset die_offset = pub->die->die_offset;
11548 /* We shouldn't see pubnames for DIEs outside of the main CU. */
11549 if (names == pubname_table && pub->die->die_tag != DW_TAG_enumerator)
11550 gcc_assert (pub->die->die_mark);
11552 /* If we're putting types in their own .debug_types sections,
11553 the .debug_pubtypes table will still point to the compile
11554 unit (not the type unit), so we want to use the offset of
11555 the skeleton DIE (if there is one). */
11556 if (pub->die->comdat_type_p && names == pubtype_table)
11558 comdat_type_node *type_node = pub->die->die_id.die_type_node;
11560 if (type_node != NULL)
11561 die_offset = (type_node->skeleton_die != NULL
11562 ? type_node->skeleton_die->die_offset
11563 : comp_unit_die ()->die_offset);
11566 output_pubname (die_offset, pub);
11570 dw2_asm_output_data (DWARF_OFFSET_SIZE, 0, NULL);
11573 /* Output public names and types tables if necessary. */
11575 static void
11576 output_pubtables (void)
11578 if (!want_pubnames () || !info_section_emitted)
11579 return;
11581 switch_to_section (debug_pubnames_section);
11582 output_pubnames (pubname_table);
11583 /* ??? Only defined by DWARF3, but emitted by Darwin for DWARF2.
11584 It shouldn't hurt to emit it always, since pure DWARF2 consumers
11585 simply won't look for the section. */
11586 switch_to_section (debug_pubtypes_section);
11587 output_pubnames (pubtype_table);
11591 /* Output the information that goes into the .debug_aranges table.
11592 Namely, define the beginning and ending address range of the
11593 text section generated for this compilation unit. */
11595 static void
11596 output_aranges (void)
11598 unsigned i;
11599 unsigned long aranges_length = size_of_aranges ();
11601 if (!XCOFF_DEBUGGING_INFO)
11603 if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
11604 dw2_asm_output_data (4, 0xffffffff,
11605 "Initial length escape value indicating 64-bit DWARF extension");
11606 dw2_asm_output_data (DWARF_OFFSET_SIZE, aranges_length,
11607 "Length of Address Ranges Info");
11610 /* Version number for aranges is still 2, even up to DWARF5. */
11611 dw2_asm_output_data (2, 2, "DWARF aranges version");
11612 if (dwarf_split_debug_info)
11613 dw2_asm_output_offset (DWARF_OFFSET_SIZE, debug_skeleton_info_section_label,
11614 debug_skeleton_info_section,
11615 "Offset of Compilation Unit Info");
11616 else
11617 dw2_asm_output_offset (DWARF_OFFSET_SIZE, debug_info_section_label,
11618 debug_info_section,
11619 "Offset of Compilation Unit Info");
11620 dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Size of Address");
11621 dw2_asm_output_data (1, 0, "Size of Segment Descriptor");
11623 /* We need to align to twice the pointer size here. */
11624 if (DWARF_ARANGES_PAD_SIZE)
11626 /* Pad using a 2 byte words so that padding is correct for any
11627 pointer size. */
11628 dw2_asm_output_data (2, 0, "Pad to %d byte boundary",
11629 2 * DWARF2_ADDR_SIZE);
11630 for (i = 2; i < (unsigned) DWARF_ARANGES_PAD_SIZE; i += 2)
11631 dw2_asm_output_data (2, 0, NULL);
11634 /* It is necessary not to output these entries if the sections were
11635 not used; if the sections were not used, the length will be 0 and
11636 the address may end up as 0 if the section is discarded by ld
11637 --gc-sections, leaving an invalid (0, 0) entry that can be
11638 confused with the terminator. */
11639 if (text_section_used)
11641 dw2_asm_output_addr (DWARF2_ADDR_SIZE, text_section_label, "Address");
11642 dw2_asm_output_delta (DWARF2_ADDR_SIZE, text_end_label,
11643 text_section_label, "Length");
11645 if (cold_text_section_used)
11647 dw2_asm_output_addr (DWARF2_ADDR_SIZE, cold_text_section_label,
11648 "Address");
11649 dw2_asm_output_delta (DWARF2_ADDR_SIZE, cold_end_label,
11650 cold_text_section_label, "Length");
11653 if (have_multiple_function_sections)
11655 unsigned fde_idx;
11656 dw_fde_ref fde;
11658 FOR_EACH_VEC_ELT (*fde_vec, fde_idx, fde)
11660 if (DECL_IGNORED_P (fde->decl))
11661 continue;
11662 if (!fde->in_std_section)
11664 dw2_asm_output_addr (DWARF2_ADDR_SIZE, fde->dw_fde_begin,
11665 "Address");
11666 dw2_asm_output_delta (DWARF2_ADDR_SIZE, fde->dw_fde_end,
11667 fde->dw_fde_begin, "Length");
11669 if (fde->dw_fde_second_begin && !fde->second_in_std_section)
11671 dw2_asm_output_addr (DWARF2_ADDR_SIZE, fde->dw_fde_second_begin,
11672 "Address");
11673 dw2_asm_output_delta (DWARF2_ADDR_SIZE, fde->dw_fde_second_end,
11674 fde->dw_fde_second_begin, "Length");
11679 /* Output the terminator words. */
11680 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
11681 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
11684 /* Add a new entry to .debug_ranges. Return its index into
11685 ranges_table vector. */
11687 static unsigned int
11688 add_ranges_num (int num, bool maybe_new_sec)
11690 dw_ranges r = { NULL, num, 0, maybe_new_sec };
11691 vec_safe_push (ranges_table, r);
11692 return vec_safe_length (ranges_table) - 1;
11695 /* Add a new entry to .debug_ranges corresponding to a block, or a
11696 range terminator if BLOCK is NULL. MAYBE_NEW_SEC is true if
11697 this entry might be in a different section from previous range. */
11699 static unsigned int
11700 add_ranges (const_tree block, bool maybe_new_sec)
11702 return add_ranges_num (block ? BLOCK_NUMBER (block) : 0, maybe_new_sec);
11705 /* Note that (*rnglist_table)[offset] is either a head of a rnglist
11706 chain, or middle entry of a chain that will be directly referred to. */
11708 static void
11709 note_rnglist_head (unsigned int offset)
11711 if (dwarf_version < 5 || (*ranges_table)[offset].label)
11712 return;
11713 (*ranges_table)[offset].label = gen_internal_sym ("LLRL");
11716 /* Add a new entry to .debug_ranges corresponding to a pair of labels.
11717 When using dwarf_split_debug_info, address attributes in dies destined
11718 for the final executable should be direct references--setting the
11719 parameter force_direct ensures this behavior. */
11721 static void
11722 add_ranges_by_labels (dw_die_ref die, const char *begin, const char *end,
11723 bool *added, bool force_direct)
11725 unsigned int in_use = vec_safe_length (ranges_by_label);
11726 unsigned int offset;
11727 dw_ranges_by_label rbl = { begin, end };
11728 vec_safe_push (ranges_by_label, rbl);
11729 offset = add_ranges_num (-(int)in_use - 1, true);
11730 if (!*added)
11732 add_AT_range_list (die, DW_AT_ranges, offset, force_direct);
11733 *added = true;
11734 note_rnglist_head (offset);
11738 /* Emit .debug_ranges section. */
11740 static void
11741 output_ranges (void)
11743 unsigned i;
11744 static const char *const start_fmt = "Offset %#x";
11745 const char *fmt = start_fmt;
11746 dw_ranges *r;
11748 switch_to_section (debug_ranges_section);
11749 ASM_OUTPUT_LABEL (asm_out_file, ranges_section_label);
11750 FOR_EACH_VEC_SAFE_ELT (ranges_table, i, r)
11752 int block_num = r->num;
11754 if (block_num > 0)
11756 char blabel[MAX_ARTIFICIAL_LABEL_BYTES];
11757 char elabel[MAX_ARTIFICIAL_LABEL_BYTES];
11759 ASM_GENERATE_INTERNAL_LABEL (blabel, BLOCK_BEGIN_LABEL, block_num);
11760 ASM_GENERATE_INTERNAL_LABEL (elabel, BLOCK_END_LABEL, block_num);
11762 /* If all code is in the text section, then the compilation
11763 unit base address defaults to DW_AT_low_pc, which is the
11764 base of the text section. */
11765 if (!have_multiple_function_sections)
11767 dw2_asm_output_delta (DWARF2_ADDR_SIZE, blabel,
11768 text_section_label,
11769 fmt, i * 2 * DWARF2_ADDR_SIZE);
11770 dw2_asm_output_delta (DWARF2_ADDR_SIZE, elabel,
11771 text_section_label, NULL);
11774 /* Otherwise, the compilation unit base address is zero,
11775 which allows us to use absolute addresses, and not worry
11776 about whether the target supports cross-section
11777 arithmetic. */
11778 else
11780 dw2_asm_output_addr (DWARF2_ADDR_SIZE, blabel,
11781 fmt, i * 2 * DWARF2_ADDR_SIZE);
11782 dw2_asm_output_addr (DWARF2_ADDR_SIZE, elabel, NULL);
11785 fmt = NULL;
11788 /* Negative block_num stands for an index into ranges_by_label. */
11789 else if (block_num < 0)
11791 int lab_idx = - block_num - 1;
11793 if (!have_multiple_function_sections)
11795 gcc_unreachable ();
11796 #if 0
11797 /* If we ever use add_ranges_by_labels () for a single
11798 function section, all we have to do is to take out
11799 the #if 0 above. */
11800 dw2_asm_output_delta (DWARF2_ADDR_SIZE,
11801 (*ranges_by_label)[lab_idx].begin,
11802 text_section_label,
11803 fmt, i * 2 * DWARF2_ADDR_SIZE);
11804 dw2_asm_output_delta (DWARF2_ADDR_SIZE,
11805 (*ranges_by_label)[lab_idx].end,
11806 text_section_label, NULL);
11807 #endif
11809 else
11811 dw2_asm_output_addr (DWARF2_ADDR_SIZE,
11812 (*ranges_by_label)[lab_idx].begin,
11813 fmt, i * 2 * DWARF2_ADDR_SIZE);
11814 dw2_asm_output_addr (DWARF2_ADDR_SIZE,
11815 (*ranges_by_label)[lab_idx].end,
11816 NULL);
11819 else
11821 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
11822 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
11823 fmt = start_fmt;
11828 /* Non-zero if .debug_line_str should be used for .debug_line section
11829 strings or strings that are likely shareable with those. */
11830 #define DWARF5_USE_DEBUG_LINE_STR \
11831 (!DWARF2_INDIRECT_STRING_SUPPORT_MISSING_ON_TARGET \
11832 && (DEBUG_STR_SECTION_FLAGS & SECTION_MERGE) != 0 \
11833 /* FIXME: there is no .debug_line_str.dwo section, \
11834 for -gsplit-dwarf we should use DW_FORM_strx instead. */ \
11835 && !dwarf_split_debug_info)
11837 /* Assign .debug_rnglists indexes. */
11839 static void
11840 index_rnglists (void)
11842 unsigned i;
11843 dw_ranges *r;
11845 FOR_EACH_VEC_SAFE_ELT (ranges_table, i, r)
11846 if (r->label)
11847 r->idx = rnglist_idx++;
11850 /* Emit .debug_rnglists section. */
11852 static void
11853 output_rnglists (unsigned generation)
11855 unsigned i;
11856 dw_ranges *r;
11857 char l1[MAX_ARTIFICIAL_LABEL_BYTES];
11858 char l2[MAX_ARTIFICIAL_LABEL_BYTES];
11859 char basebuf[MAX_ARTIFICIAL_LABEL_BYTES];
11861 switch_to_section (debug_ranges_section);
11862 ASM_OUTPUT_LABEL (asm_out_file, ranges_section_label);
11863 /* There are up to 4 unique ranges labels per generation.
11864 See also init_sections_and_labels. */
11865 ASM_GENERATE_INTERNAL_LABEL (l1, DEBUG_RANGES_SECTION_LABEL,
11866 2 + generation * 4);
11867 ASM_GENERATE_INTERNAL_LABEL (l2, DEBUG_RANGES_SECTION_LABEL,
11868 3 + generation * 4);
11869 if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
11870 dw2_asm_output_data (4, 0xffffffff,
11871 "Initial length escape value indicating "
11872 "64-bit DWARF extension");
11873 dw2_asm_output_delta (DWARF_OFFSET_SIZE, l2, l1,
11874 "Length of Range Lists");
11875 ASM_OUTPUT_LABEL (asm_out_file, l1);
11876 output_dwarf_version ();
11877 dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Address Size");
11878 dw2_asm_output_data (1, 0, "Segment Size");
11879 /* Emit the offset table only for -gsplit-dwarf. If we don't care
11880 about relocation sizes and primarily care about the size of .debug*
11881 sections in linked shared libraries and executables, then
11882 the offset table plus corresponding DW_FORM_rnglistx uleb128 indexes
11883 into it are usually larger than just DW_FORM_sec_offset offsets
11884 into the .debug_rnglists section. */
11885 dw2_asm_output_data (4, dwarf_split_debug_info ? rnglist_idx : 0,
11886 "Offset Entry Count");
11887 if (dwarf_split_debug_info)
11889 ASM_OUTPUT_LABEL (asm_out_file, ranges_base_label);
11890 FOR_EACH_VEC_SAFE_ELT (ranges_table, i, r)
11891 if (r->label)
11892 dw2_asm_output_delta (DWARF_OFFSET_SIZE, r->label,
11893 ranges_base_label, NULL);
11896 const char *lab = "";
11897 unsigned int len = vec_safe_length (ranges_table);
11898 const char *base = NULL;
11899 FOR_EACH_VEC_SAFE_ELT (ranges_table, i, r)
11901 int block_num = r->num;
11903 if (r->label)
11905 ASM_OUTPUT_LABEL (asm_out_file, r->label);
11906 lab = r->label;
11908 if (HAVE_AS_LEB128 && (r->label || r->maybe_new_sec))
11909 base = NULL;
11910 if (block_num > 0)
11912 char blabel[MAX_ARTIFICIAL_LABEL_BYTES];
11913 char elabel[MAX_ARTIFICIAL_LABEL_BYTES];
11915 ASM_GENERATE_INTERNAL_LABEL (blabel, BLOCK_BEGIN_LABEL, block_num);
11916 ASM_GENERATE_INTERNAL_LABEL (elabel, BLOCK_END_LABEL, block_num);
11918 if (HAVE_AS_LEB128)
11920 /* If all code is in the text section, then the compilation
11921 unit base address defaults to DW_AT_low_pc, which is the
11922 base of the text section. */
11923 if (!have_multiple_function_sections)
11925 dw2_asm_output_data (1, DW_RLE_offset_pair,
11926 "DW_RLE_offset_pair (%s)", lab);
11927 dw2_asm_output_delta_uleb128 (blabel, text_section_label,
11928 "Range begin address (%s)", lab);
11929 dw2_asm_output_delta_uleb128 (elabel, text_section_label,
11930 "Range end address (%s)", lab);
11931 continue;
11933 if (base == NULL)
11935 dw_ranges *r2 = NULL;
11936 if (i < len - 1)
11937 r2 = &(*ranges_table)[i + 1];
11938 if (r2
11939 && r2->num != 0
11940 && r2->label == NULL
11941 && !r2->maybe_new_sec)
11943 dw2_asm_output_data (1, DW_RLE_base_address,
11944 "DW_RLE_base_address (%s)", lab);
11945 dw2_asm_output_addr (DWARF2_ADDR_SIZE, blabel,
11946 "Base address (%s)", lab);
11947 strcpy (basebuf, blabel);
11948 base = basebuf;
11951 if (base)
11953 dw2_asm_output_data (1, DW_RLE_offset_pair,
11954 "DW_RLE_offset_pair (%s)", lab);
11955 dw2_asm_output_delta_uleb128 (blabel, base,
11956 "Range begin address (%s)", lab);
11957 dw2_asm_output_delta_uleb128 (elabel, base,
11958 "Range end address (%s)", lab);
11959 continue;
11961 dw2_asm_output_data (1, DW_RLE_start_length,
11962 "DW_RLE_start_length (%s)", lab);
11963 dw2_asm_output_addr (DWARF2_ADDR_SIZE, blabel,
11964 "Range begin address (%s)", lab);
11965 dw2_asm_output_delta_uleb128 (elabel, blabel,
11966 "Range length (%s)", lab);
11968 else
11970 dw2_asm_output_data (1, DW_RLE_start_end,
11971 "DW_RLE_start_end (%s)", lab);
11972 dw2_asm_output_addr (DWARF2_ADDR_SIZE, blabel,
11973 "Range begin address (%s)", lab);
11974 dw2_asm_output_addr (DWARF2_ADDR_SIZE, elabel,
11975 "Range end address (%s)", lab);
11979 /* Negative block_num stands for an index into ranges_by_label. */
11980 else if (block_num < 0)
11982 int lab_idx = - block_num - 1;
11983 const char *blabel = (*ranges_by_label)[lab_idx].begin;
11984 const char *elabel = (*ranges_by_label)[lab_idx].end;
11986 if (!have_multiple_function_sections)
11987 gcc_unreachable ();
11988 if (HAVE_AS_LEB128)
11990 dw2_asm_output_data (1, DW_RLE_start_length,
11991 "DW_RLE_start_length (%s)", lab);
11992 dw2_asm_output_addr (DWARF2_ADDR_SIZE, blabel,
11993 "Range begin address (%s)", lab);
11994 dw2_asm_output_delta_uleb128 (elabel, blabel,
11995 "Range length (%s)", lab);
11997 else
11999 dw2_asm_output_data (1, DW_RLE_start_end,
12000 "DW_RLE_start_end (%s)", lab);
12001 dw2_asm_output_addr (DWARF2_ADDR_SIZE, blabel,
12002 "Range begin address (%s)", lab);
12003 dw2_asm_output_addr (DWARF2_ADDR_SIZE, elabel,
12004 "Range end address (%s)", lab);
12007 else
12008 dw2_asm_output_data (1, DW_RLE_end_of_list,
12009 "DW_RLE_end_of_list (%s)", lab);
12011 ASM_OUTPUT_LABEL (asm_out_file, l2);
12014 /* Data structure containing information about input files. */
12015 struct file_info
12017 const char *path; /* Complete file name. */
12018 const char *fname; /* File name part. */
12019 int length; /* Length of entire string. */
12020 struct dwarf_file_data * file_idx; /* Index in input file table. */
12021 int dir_idx; /* Index in directory table. */
12024 /* Data structure containing information about directories with source
12025 files. */
12026 struct dir_info
12028 const char *path; /* Path including directory name. */
12029 int length; /* Path length. */
12030 int prefix; /* Index of directory entry which is a prefix. */
12031 int count; /* Number of files in this directory. */
12032 int dir_idx; /* Index of directory used as base. */
12035 /* Callback function for file_info comparison. We sort by looking at
12036 the directories in the path. */
12038 static int
12039 file_info_cmp (const void *p1, const void *p2)
12041 const struct file_info *const s1 = (const struct file_info *) p1;
12042 const struct file_info *const s2 = (const struct file_info *) p2;
12043 const unsigned char *cp1;
12044 const unsigned char *cp2;
12046 /* Take care of file names without directories. We need to make sure that
12047 we return consistent values to qsort since some will get confused if
12048 we return the same value when identical operands are passed in opposite
12049 orders. So if neither has a directory, return 0 and otherwise return
12050 1 or -1 depending on which one has the directory. We want the one with
12051 the directory to sort after the one without, so all no directory files
12052 are at the start (normally only the compilation unit file). */
12053 if ((s1->path == s1->fname || s2->path == s2->fname))
12054 return (s2->path == s2->fname) - (s1->path == s1->fname);
12056 cp1 = (const unsigned char *) s1->path;
12057 cp2 = (const unsigned char *) s2->path;
12059 while (1)
12061 ++cp1;
12062 ++cp2;
12063 /* Reached the end of the first path? If so, handle like above,
12064 but now we want longer directory prefixes before shorter ones. */
12065 if ((cp1 == (const unsigned char *) s1->fname)
12066 || (cp2 == (const unsigned char *) s2->fname))
12067 return ((cp1 == (const unsigned char *) s1->fname)
12068 - (cp2 == (const unsigned char *) s2->fname));
12070 /* Character of current path component the same? */
12071 else if (*cp1 != *cp2)
12072 return *cp1 - *cp2;
12076 struct file_name_acquire_data
12078 struct file_info *files;
12079 int used_files;
12080 int max_files;
12083 /* Traversal function for the hash table. */
12086 file_name_acquire (dwarf_file_data **slot, file_name_acquire_data *fnad)
12088 struct dwarf_file_data *d = *slot;
12089 struct file_info *fi;
12090 const char *f;
12092 gcc_assert (fnad->max_files >= d->emitted_number);
12094 if (! d->emitted_number)
12095 return 1;
12097 gcc_assert (fnad->max_files != fnad->used_files);
12099 fi = fnad->files + fnad->used_files++;
12101 /* Skip all leading "./". */
12102 f = d->filename;
12103 while (f[0] == '.' && IS_DIR_SEPARATOR (f[1]))
12104 f += 2;
12106 /* Create a new array entry. */
12107 fi->path = f;
12108 fi->length = strlen (f);
12109 fi->file_idx = d;
12111 /* Search for the file name part. */
12112 f = strrchr (f, DIR_SEPARATOR);
12113 #if defined (DIR_SEPARATOR_2)
12115 char *g = strrchr (fi->path, DIR_SEPARATOR_2);
12117 if (g != NULL)
12119 if (f == NULL || f < g)
12120 f = g;
12123 #endif
12125 fi->fname = f == NULL ? fi->path : f + 1;
12126 return 1;
12129 /* Helper function for output_file_names. Emit a FORM encoded
12130 string STR, with assembly comment start ENTRY_KIND and
12131 index IDX */
12133 static void
12134 output_line_string (enum dwarf_form form, const char *str,
12135 const char *entry_kind, unsigned int idx)
12137 switch (form)
12139 case DW_FORM_string:
12140 dw2_asm_output_nstring (str, -1, "%s: %#x", entry_kind, idx);
12141 break;
12142 case DW_FORM_line_strp:
12143 if (!debug_line_str_hash)
12144 debug_line_str_hash
12145 = hash_table<indirect_string_hasher>::create_ggc (10);
12147 struct indirect_string_node *node;
12148 node = find_AT_string_in_table (str, debug_line_str_hash);
12149 set_indirect_string (node);
12150 node->form = form;
12151 dw2_asm_output_offset (DWARF_OFFSET_SIZE, node->label,
12152 debug_line_str_section, "%s: %#x: \"%s\"",
12153 entry_kind, 0, node->str);
12154 break;
12155 default:
12156 gcc_unreachable ();
12160 /* Output the directory table and the file name table. We try to minimize
12161 the total amount of memory needed. A heuristic is used to avoid large
12162 slowdowns with many input files. */
12164 static void
12165 output_file_names (void)
12167 struct file_name_acquire_data fnad;
12168 int numfiles;
12169 struct file_info *files;
12170 struct dir_info *dirs;
12171 int *saved;
12172 int *savehere;
12173 int *backmap;
12174 int ndirs;
12175 int idx_offset;
12176 int i;
12178 if (!last_emitted_file)
12180 if (dwarf_version >= 5)
12182 dw2_asm_output_data (1, 0, "Directory entry format count");
12183 dw2_asm_output_data_uleb128 (0, "Directories count");
12184 dw2_asm_output_data (1, 0, "File name entry format count");
12185 dw2_asm_output_data_uleb128 (0, "File names count");
12187 else
12189 dw2_asm_output_data (1, 0, "End directory table");
12190 dw2_asm_output_data (1, 0, "End file name table");
12192 return;
12195 numfiles = last_emitted_file->emitted_number;
12197 /* Allocate the various arrays we need. */
12198 files = XALLOCAVEC (struct file_info, numfiles);
12199 dirs = XALLOCAVEC (struct dir_info, numfiles);
12201 fnad.files = files;
12202 fnad.used_files = 0;
12203 fnad.max_files = numfiles;
12204 file_table->traverse<file_name_acquire_data *, file_name_acquire> (&fnad);
12205 gcc_assert (fnad.used_files == fnad.max_files);
12207 qsort (files, numfiles, sizeof (files[0]), file_info_cmp);
12209 /* Find all the different directories used. */
12210 dirs[0].path = files[0].path;
12211 dirs[0].length = files[0].fname - files[0].path;
12212 dirs[0].prefix = -1;
12213 dirs[0].count = 1;
12214 dirs[0].dir_idx = 0;
12215 files[0].dir_idx = 0;
12216 ndirs = 1;
12218 for (i = 1; i < numfiles; i++)
12219 if (files[i].fname - files[i].path == dirs[ndirs - 1].length
12220 && memcmp (dirs[ndirs - 1].path, files[i].path,
12221 dirs[ndirs - 1].length) == 0)
12223 /* Same directory as last entry. */
12224 files[i].dir_idx = ndirs - 1;
12225 ++dirs[ndirs - 1].count;
12227 else
12229 int j;
12231 /* This is a new directory. */
12232 dirs[ndirs].path = files[i].path;
12233 dirs[ndirs].length = files[i].fname - files[i].path;
12234 dirs[ndirs].count = 1;
12235 dirs[ndirs].dir_idx = ndirs;
12236 files[i].dir_idx = ndirs;
12238 /* Search for a prefix. */
12239 dirs[ndirs].prefix = -1;
12240 for (j = 0; j < ndirs; j++)
12241 if (dirs[j].length < dirs[ndirs].length
12242 && dirs[j].length > 1
12243 && (dirs[ndirs].prefix == -1
12244 || dirs[j].length > dirs[dirs[ndirs].prefix].length)
12245 && memcmp (dirs[j].path, dirs[ndirs].path, dirs[j].length) == 0)
12246 dirs[ndirs].prefix = j;
12248 ++ndirs;
12251 /* Now to the actual work. We have to find a subset of the directories which
12252 allow expressing the file name using references to the directory table
12253 with the least amount of characters. We do not do an exhaustive search
12254 where we would have to check out every combination of every single
12255 possible prefix. Instead we use a heuristic which provides nearly optimal
12256 results in most cases and never is much off. */
12257 saved = XALLOCAVEC (int, ndirs);
12258 savehere = XALLOCAVEC (int, ndirs);
12260 memset (saved, '\0', ndirs * sizeof (saved[0]));
12261 for (i = 0; i < ndirs; i++)
12263 int j;
12264 int total;
12266 /* We can always save some space for the current directory. But this
12267 does not mean it will be enough to justify adding the directory. */
12268 savehere[i] = dirs[i].length;
12269 total = (savehere[i] - saved[i]) * dirs[i].count;
12271 for (j = i + 1; j < ndirs; j++)
12273 savehere[j] = 0;
12274 if (saved[j] < dirs[i].length)
12276 /* Determine whether the dirs[i] path is a prefix of the
12277 dirs[j] path. */
12278 int k;
12280 k = dirs[j].prefix;
12281 while (k != -1 && k != (int) i)
12282 k = dirs[k].prefix;
12284 if (k == (int) i)
12286 /* Yes it is. We can possibly save some memory by
12287 writing the filenames in dirs[j] relative to
12288 dirs[i]. */
12289 savehere[j] = dirs[i].length;
12290 total += (savehere[j] - saved[j]) * dirs[j].count;
12295 /* Check whether we can save enough to justify adding the dirs[i]
12296 directory. */
12297 if (total > dirs[i].length + 1)
12299 /* It's worthwhile adding. */
12300 for (j = i; j < ndirs; j++)
12301 if (savehere[j] > 0)
12303 /* Remember how much we saved for this directory so far. */
12304 saved[j] = savehere[j];
12306 /* Remember the prefix directory. */
12307 dirs[j].dir_idx = i;
12312 /* Emit the directory name table. */
12313 idx_offset = dirs[0].length > 0 ? 1 : 0;
12314 enum dwarf_form str_form = DW_FORM_string;
12315 enum dwarf_form idx_form = DW_FORM_udata;
12316 if (dwarf_version >= 5)
12318 const char *comp_dir = comp_dir_string ();
12319 if (comp_dir == NULL)
12320 comp_dir = "";
12321 dw2_asm_output_data (1, 1, "Directory entry format count");
12322 if (DWARF5_USE_DEBUG_LINE_STR)
12323 str_form = DW_FORM_line_strp;
12324 dw2_asm_output_data_uleb128 (DW_LNCT_path, "DW_LNCT_path");
12325 dw2_asm_output_data_uleb128 (str_form, "%s",
12326 get_DW_FORM_name (str_form));
12327 dw2_asm_output_data_uleb128 (ndirs + idx_offset, "Directories count");
12328 if (str_form == DW_FORM_string)
12330 dw2_asm_output_nstring (comp_dir, -1, "Directory Entry: %#x", 0);
12331 for (i = 1 - idx_offset; i < ndirs; i++)
12332 dw2_asm_output_nstring (dirs[i].path,
12333 dirs[i].length
12334 - !DWARF2_DIR_SHOULD_END_WITH_SEPARATOR,
12335 "Directory Entry: %#x", i + idx_offset);
12337 else
12339 output_line_string (str_form, comp_dir, "Directory Entry", 0);
12340 for (i = 1 - idx_offset; i < ndirs; i++)
12342 const char *str
12343 = ggc_alloc_string (dirs[i].path,
12344 dirs[i].length
12345 - !DWARF2_DIR_SHOULD_END_WITH_SEPARATOR);
12346 output_line_string (str_form, str, "Directory Entry",
12347 (unsigned) i + idx_offset);
12351 else
12353 for (i = 1 - idx_offset; i < ndirs; i++)
12354 dw2_asm_output_nstring (dirs[i].path,
12355 dirs[i].length
12356 - !DWARF2_DIR_SHOULD_END_WITH_SEPARATOR,
12357 "Directory Entry: %#x", i + idx_offset);
12359 dw2_asm_output_data (1, 0, "End directory table");
12362 /* We have to emit them in the order of emitted_number since that's
12363 used in the debug info generation. To do this efficiently we
12364 generate a back-mapping of the indices first. */
12365 backmap = XALLOCAVEC (int, numfiles);
12366 for (i = 0; i < numfiles; i++)
12367 backmap[files[i].file_idx->emitted_number - 1] = i;
12369 if (dwarf_version >= 5)
12371 const char *filename0 = get_AT_string (comp_unit_die (), DW_AT_name);
12372 if (filename0 == NULL)
12373 filename0 = "";
12374 /* DW_LNCT_directory_index can use DW_FORM_udata, DW_FORM_data1 and
12375 DW_FORM_data2. Choose one based on the number of directories
12376 and how much space would they occupy in each encoding.
12377 If we have at most 256 directories, all indexes fit into
12378 a single byte, so DW_FORM_data1 is most compact (if there
12379 are at most 128 directories, DW_FORM_udata would be as
12380 compact as that, but not shorter and slower to decode). */
12381 if (ndirs + idx_offset <= 256)
12382 idx_form = DW_FORM_data1;
12383 /* If there are more than 65536 directories, we have to use
12384 DW_FORM_udata, DW_FORM_data2 can't refer to them.
12385 Otherwise, compute what space would occupy if all the indexes
12386 used DW_FORM_udata - sum - and compare that to how large would
12387 be DW_FORM_data2 encoding, and pick the more efficient one. */
12388 else if (ndirs + idx_offset <= 65536)
12390 unsigned HOST_WIDE_INT sum = 1;
12391 for (i = 0; i < numfiles; i++)
12393 int file_idx = backmap[i];
12394 int dir_idx = dirs[files[file_idx].dir_idx].dir_idx;
12395 sum += size_of_uleb128 (dir_idx);
12397 if (sum >= HOST_WIDE_INT_UC (2) * (numfiles + 1))
12398 idx_form = DW_FORM_data2;
12400 #ifdef VMS_DEBUGGING_INFO
12401 dw2_asm_output_data (1, 4, "File name entry format count");
12402 #else
12403 dw2_asm_output_data (1, 2, "File name entry format count");
12404 #endif
12405 dw2_asm_output_data_uleb128 (DW_LNCT_path, "DW_LNCT_path");
12406 dw2_asm_output_data_uleb128 (str_form, "%s",
12407 get_DW_FORM_name (str_form));
12408 dw2_asm_output_data_uleb128 (DW_LNCT_directory_index,
12409 "DW_LNCT_directory_index");
12410 dw2_asm_output_data_uleb128 (idx_form, "%s",
12411 get_DW_FORM_name (idx_form));
12412 #ifdef VMS_DEBUGGING_INFO
12413 dw2_asm_output_data_uleb128 (DW_LNCT_timestamp, "DW_LNCT_timestamp");
12414 dw2_asm_output_data_uleb128 (DW_FORM_udata, "DW_FORM_udata");
12415 dw2_asm_output_data_uleb128 (DW_LNCT_size, "DW_LNCT_size");
12416 dw2_asm_output_data_uleb128 (DW_FORM_udata, "DW_FORM_udata");
12417 #endif
12418 dw2_asm_output_data_uleb128 (numfiles + 1, "File names count");
12420 output_line_string (str_form, filename0, "File Entry", 0);
12422 /* Include directory index. */
12423 if (idx_form != DW_FORM_udata)
12424 dw2_asm_output_data (idx_form == DW_FORM_data1 ? 1 : 2,
12425 0, NULL);
12426 else
12427 dw2_asm_output_data_uleb128 (0, NULL);
12429 #ifdef VMS_DEBUGGING_INFO
12430 dw2_asm_output_data_uleb128 (0, NULL);
12431 dw2_asm_output_data_uleb128 (0, NULL);
12432 #endif
12435 /* Now write all the file names. */
12436 for (i = 0; i < numfiles; i++)
12438 int file_idx = backmap[i];
12439 int dir_idx = dirs[files[file_idx].dir_idx].dir_idx;
12441 #ifdef VMS_DEBUGGING_INFO
12442 #define MAX_VMS_VERSION_LEN 6 /* ";32768" */
12444 /* Setting these fields can lead to debugger miscomparisons,
12445 but VMS Debug requires them to be set correctly. */
12447 int ver;
12448 long long cdt;
12449 long siz;
12450 int maxfilelen = (strlen (files[file_idx].path)
12451 + dirs[dir_idx].length
12452 + MAX_VMS_VERSION_LEN + 1);
12453 char *filebuf = XALLOCAVEC (char, maxfilelen);
12455 vms_file_stats_name (files[file_idx].path, 0, 0, 0, &ver);
12456 snprintf (filebuf, maxfilelen, "%s;%d",
12457 files[file_idx].path + dirs[dir_idx].length, ver);
12459 output_line_string (str_form, filebuf, "File Entry", (unsigned) i + 1);
12461 /* Include directory index. */
12462 if (dwarf_version >= 5 && idx_form != DW_FORM_udata)
12463 dw2_asm_output_data (idx_form == DW_FORM_data1 ? 1 : 2,
12464 dir_idx + idx_offset, NULL);
12465 else
12466 dw2_asm_output_data_uleb128 (dir_idx + idx_offset, NULL);
12468 /* Modification time. */
12469 dw2_asm_output_data_uleb128 ((vms_file_stats_name (files[file_idx].path,
12470 &cdt, 0, 0, 0) == 0)
12471 ? cdt : 0, NULL);
12473 /* File length in bytes. */
12474 dw2_asm_output_data_uleb128 ((vms_file_stats_name (files[file_idx].path,
12475 0, &siz, 0, 0) == 0)
12476 ? siz : 0, NULL);
12477 #else
12478 output_line_string (str_form,
12479 files[file_idx].path + dirs[dir_idx].length,
12480 "File Entry", (unsigned) i + 1);
12482 /* Include directory index. */
12483 if (dwarf_version >= 5 && idx_form != DW_FORM_udata)
12484 dw2_asm_output_data (idx_form == DW_FORM_data1 ? 1 : 2,
12485 dir_idx + idx_offset, NULL);
12486 else
12487 dw2_asm_output_data_uleb128 (dir_idx + idx_offset, NULL);
12489 if (dwarf_version >= 5)
12490 continue;
12492 /* Modification time. */
12493 dw2_asm_output_data_uleb128 (0, NULL);
12495 /* File length in bytes. */
12496 dw2_asm_output_data_uleb128 (0, NULL);
12497 #endif /* VMS_DEBUGGING_INFO */
12500 if (dwarf_version < 5)
12501 dw2_asm_output_data (1, 0, "End file name table");
12505 /* Output one line number table into the .debug_line section. */
12507 static void
12508 output_one_line_info_table (dw_line_info_table *table)
12510 char line_label[MAX_ARTIFICIAL_LABEL_BYTES];
12511 unsigned int current_line = 1;
12512 bool current_is_stmt = DWARF_LINE_DEFAULT_IS_STMT_START;
12513 dw_line_info_entry *ent, *prev_addr;
12514 size_t i;
12515 unsigned int view;
12517 view = 0;
12519 FOR_EACH_VEC_SAFE_ELT (table->entries, i, ent)
12521 switch (ent->opcode)
12523 case LI_set_address:
12524 /* ??? Unfortunately, we have little choice here currently, and
12525 must always use the most general form. GCC does not know the
12526 address delta itself, so we can't use DW_LNS_advance_pc. Many
12527 ports do have length attributes which will give an upper bound
12528 on the address range. We could perhaps use length attributes
12529 to determine when it is safe to use DW_LNS_fixed_advance_pc. */
12530 ASM_GENERATE_INTERNAL_LABEL (line_label, LINE_CODE_LABEL, ent->val);
12532 view = 0;
12534 /* This can handle any delta. This takes
12535 4+DWARF2_ADDR_SIZE bytes. */
12536 dw2_asm_output_data (1, 0, "set address %s%s", line_label,
12537 debug_variable_location_views
12538 ? ", reset view to 0" : "");
12539 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
12540 dw2_asm_output_data (1, DW_LNE_set_address, NULL);
12541 dw2_asm_output_addr (DWARF2_ADDR_SIZE, line_label, NULL);
12543 prev_addr = ent;
12544 break;
12546 case LI_adv_address:
12548 ASM_GENERATE_INTERNAL_LABEL (line_label, LINE_CODE_LABEL, ent->val);
12549 char prev_label[MAX_ARTIFICIAL_LABEL_BYTES];
12550 ASM_GENERATE_INTERNAL_LABEL (prev_label, LINE_CODE_LABEL, prev_addr->val);
12552 view++;
12554 dw2_asm_output_data (1, DW_LNS_fixed_advance_pc, "fixed advance PC, increment view to %i", view);
12555 dw2_asm_output_delta (2, line_label, prev_label,
12556 "from %s to %s", prev_label, line_label);
12558 prev_addr = ent;
12559 break;
12562 case LI_set_line:
12563 if (ent->val == current_line)
12565 /* We still need to start a new row, so output a copy insn. */
12566 dw2_asm_output_data (1, DW_LNS_copy,
12567 "copy line %u", current_line);
12569 else
12571 int line_offset = ent->val - current_line;
12572 int line_delta = line_offset - DWARF_LINE_BASE;
12574 current_line = ent->val;
12575 if (line_delta >= 0 && line_delta < (DWARF_LINE_RANGE - 1))
12577 /* This can handle deltas from -10 to 234, using the current
12578 definitions of DWARF_LINE_BASE and DWARF_LINE_RANGE.
12579 This takes 1 byte. */
12580 dw2_asm_output_data (1, DWARF_LINE_OPCODE_BASE + line_delta,
12581 "line %u", current_line);
12583 else
12585 /* This can handle any delta. This takes at least 4 bytes,
12586 depending on the value being encoded. */
12587 dw2_asm_output_data (1, DW_LNS_advance_line,
12588 "advance to line %u", current_line);
12589 dw2_asm_output_data_sleb128 (line_offset, NULL);
12590 dw2_asm_output_data (1, DW_LNS_copy, NULL);
12593 break;
12595 case LI_set_file:
12596 dw2_asm_output_data (1, DW_LNS_set_file, "set file %u", ent->val);
12597 dw2_asm_output_data_uleb128 (ent->val, "%u", ent->val);
12598 break;
12600 case LI_set_column:
12601 dw2_asm_output_data (1, DW_LNS_set_column, "column %u", ent->val);
12602 dw2_asm_output_data_uleb128 (ent->val, "%u", ent->val);
12603 break;
12605 case LI_negate_stmt:
12606 current_is_stmt = !current_is_stmt;
12607 dw2_asm_output_data (1, DW_LNS_negate_stmt,
12608 "is_stmt %d", current_is_stmt);
12609 break;
12611 case LI_set_prologue_end:
12612 dw2_asm_output_data (1, DW_LNS_set_prologue_end,
12613 "set prologue end");
12614 break;
12616 case LI_set_epilogue_begin:
12617 dw2_asm_output_data (1, DW_LNS_set_epilogue_begin,
12618 "set epilogue begin");
12619 break;
12621 case LI_set_discriminator:
12622 dw2_asm_output_data (1, 0, "discriminator %u", ent->val);
12623 dw2_asm_output_data_uleb128 (1 + size_of_uleb128 (ent->val), NULL);
12624 dw2_asm_output_data (1, DW_LNE_set_discriminator, NULL);
12625 dw2_asm_output_data_uleb128 (ent->val, NULL);
12626 break;
12630 /* Emit debug info for the address of the end of the table. */
12631 dw2_asm_output_data (1, 0, "set address %s", table->end_label);
12632 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
12633 dw2_asm_output_data (1, DW_LNE_set_address, NULL);
12634 dw2_asm_output_addr (DWARF2_ADDR_SIZE, table->end_label, NULL);
12636 dw2_asm_output_data (1, 0, "end sequence");
12637 dw2_asm_output_data_uleb128 (1, NULL);
12638 dw2_asm_output_data (1, DW_LNE_end_sequence, NULL);
12641 /* Output the source line number correspondence information. This
12642 information goes into the .debug_line section. */
12644 static void
12645 output_line_info (bool prologue_only)
12647 static unsigned int generation;
12648 char l1[MAX_ARTIFICIAL_LABEL_BYTES], l2[MAX_ARTIFICIAL_LABEL_BYTES];
12649 char p1[MAX_ARTIFICIAL_LABEL_BYTES], p2[MAX_ARTIFICIAL_LABEL_BYTES];
12650 bool saw_one = false;
12651 int opc;
12653 ASM_GENERATE_INTERNAL_LABEL (l1, LINE_NUMBER_BEGIN_LABEL, generation);
12654 ASM_GENERATE_INTERNAL_LABEL (l2, LINE_NUMBER_END_LABEL, generation);
12655 ASM_GENERATE_INTERNAL_LABEL (p1, LN_PROLOG_AS_LABEL, generation);
12656 ASM_GENERATE_INTERNAL_LABEL (p2, LN_PROLOG_END_LABEL, generation++);
12658 if (!XCOFF_DEBUGGING_INFO)
12660 if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
12661 dw2_asm_output_data (4, 0xffffffff,
12662 "Initial length escape value indicating 64-bit DWARF extension");
12663 dw2_asm_output_delta (DWARF_OFFSET_SIZE, l2, l1,
12664 "Length of Source Line Info");
12667 ASM_OUTPUT_LABEL (asm_out_file, l1);
12669 output_dwarf_version ();
12670 if (dwarf_version >= 5)
12672 dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Address Size");
12673 dw2_asm_output_data (1, 0, "Segment Size");
12675 dw2_asm_output_delta (DWARF_OFFSET_SIZE, p2, p1, "Prolog Length");
12676 ASM_OUTPUT_LABEL (asm_out_file, p1);
12678 /* Define the architecture-dependent minimum instruction length (in bytes).
12679 In this implementation of DWARF, this field is used for information
12680 purposes only. Since GCC generates assembly language, we have no
12681 a priori knowledge of how many instruction bytes are generated for each
12682 source line, and therefore can use only the DW_LNE_set_address and
12683 DW_LNS_fixed_advance_pc line information commands. Accordingly, we fix
12684 this as '1', which is "correct enough" for all architectures,
12685 and don't let the target override. */
12686 dw2_asm_output_data (1, 1, "Minimum Instruction Length");
12688 if (dwarf_version >= 4)
12689 dw2_asm_output_data (1, DWARF_LINE_DEFAULT_MAX_OPS_PER_INSN,
12690 "Maximum Operations Per Instruction");
12691 dw2_asm_output_data (1, DWARF_LINE_DEFAULT_IS_STMT_START,
12692 "Default is_stmt_start flag");
12693 dw2_asm_output_data (1, DWARF_LINE_BASE,
12694 "Line Base Value (Special Opcodes)");
12695 dw2_asm_output_data (1, DWARF_LINE_RANGE,
12696 "Line Range Value (Special Opcodes)");
12697 dw2_asm_output_data (1, DWARF_LINE_OPCODE_BASE,
12698 "Special Opcode Base");
12700 for (opc = 1; opc < DWARF_LINE_OPCODE_BASE; opc++)
12702 int n_op_args;
12703 switch (opc)
12705 case DW_LNS_advance_pc:
12706 case DW_LNS_advance_line:
12707 case DW_LNS_set_file:
12708 case DW_LNS_set_column:
12709 case DW_LNS_fixed_advance_pc:
12710 case DW_LNS_set_isa:
12711 n_op_args = 1;
12712 break;
12713 default:
12714 n_op_args = 0;
12715 break;
12718 dw2_asm_output_data (1, n_op_args, "opcode: %#x has %d args",
12719 opc, n_op_args);
12722 /* Write out the information about the files we use. */
12723 output_file_names ();
12724 ASM_OUTPUT_LABEL (asm_out_file, p2);
12725 if (prologue_only)
12727 /* Output the marker for the end of the line number info. */
12728 ASM_OUTPUT_LABEL (asm_out_file, l2);
12729 return;
12732 if (separate_line_info)
12734 dw_line_info_table *table;
12735 size_t i;
12737 FOR_EACH_VEC_ELT (*separate_line_info, i, table)
12738 if (table->in_use)
12740 output_one_line_info_table (table);
12741 saw_one = true;
12744 if (cold_text_section_line_info && cold_text_section_line_info->in_use)
12746 output_one_line_info_table (cold_text_section_line_info);
12747 saw_one = true;
12750 /* ??? Some Darwin linkers crash on a .debug_line section with no
12751 sequences. Further, merely a DW_LNE_end_sequence entry is not
12752 sufficient -- the address column must also be initialized.
12753 Make sure to output at least one set_address/end_sequence pair,
12754 choosing .text since that section is always present. */
12755 if (text_section_line_info->in_use || !saw_one)
12756 output_one_line_info_table (text_section_line_info);
12758 /* Output the marker for the end of the line number info. */
12759 ASM_OUTPUT_LABEL (asm_out_file, l2);
12762 /* Return true if DW_AT_endianity should be emitted according to REVERSE. */
12764 static inline bool
12765 need_endianity_attribute_p (bool reverse)
12767 return reverse && (dwarf_version >= 3 || !dwarf_strict);
12770 /* Given a pointer to a tree node for some base type, return a pointer to
12771 a DIE that describes the given type. REVERSE is true if the type is
12772 to be interpreted in the reverse storage order wrt the target order.
12774 This routine must only be called for GCC type nodes that correspond to
12775 Dwarf base (fundamental) types. */
12777 static dw_die_ref
12778 base_type_die (tree type, bool reverse)
12780 dw_die_ref base_type_result;
12781 enum dwarf_type encoding;
12782 bool fpt_used = false;
12783 struct fixed_point_type_info fpt_info;
12784 tree type_bias = NULL_TREE;
12786 /* If this is a subtype that should not be emitted as a subrange type,
12787 use the base type. See subrange_type_for_debug_p. */
12788 if (TREE_CODE (type) == INTEGER_TYPE && TREE_TYPE (type) != NULL_TREE)
12789 type = TREE_TYPE (type);
12791 switch (TREE_CODE (type))
12793 case INTEGER_TYPE:
12794 if ((dwarf_version >= 4 || !dwarf_strict)
12795 && TYPE_NAME (type)
12796 && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
12797 && DECL_IS_BUILTIN (TYPE_NAME (type))
12798 && DECL_NAME (TYPE_NAME (type)))
12800 const char *name = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type)));
12801 if (strcmp (name, "char16_t") == 0
12802 || strcmp (name, "char32_t") == 0)
12804 encoding = DW_ATE_UTF;
12805 break;
12808 if ((dwarf_version >= 3 || !dwarf_strict)
12809 && lang_hooks.types.get_fixed_point_type_info)
12811 memset (&fpt_info, 0, sizeof (fpt_info));
12812 if (lang_hooks.types.get_fixed_point_type_info (type, &fpt_info))
12814 fpt_used = true;
12815 encoding = ((TYPE_UNSIGNED (type))
12816 ? DW_ATE_unsigned_fixed
12817 : DW_ATE_signed_fixed);
12818 break;
12821 if (TYPE_STRING_FLAG (type))
12823 if (TYPE_UNSIGNED (type))
12824 encoding = DW_ATE_unsigned_char;
12825 else
12826 encoding = DW_ATE_signed_char;
12828 else if (TYPE_UNSIGNED (type))
12829 encoding = DW_ATE_unsigned;
12830 else
12831 encoding = DW_ATE_signed;
12833 if (!dwarf_strict
12834 && lang_hooks.types.get_type_bias)
12835 type_bias = lang_hooks.types.get_type_bias (type);
12836 break;
12838 case REAL_TYPE:
12839 if (DECIMAL_FLOAT_MODE_P (TYPE_MODE (type)))
12841 if (dwarf_version >= 3 || !dwarf_strict)
12842 encoding = DW_ATE_decimal_float;
12843 else
12844 encoding = DW_ATE_lo_user;
12846 else
12847 encoding = DW_ATE_float;
12848 break;
12850 case FIXED_POINT_TYPE:
12851 if (!(dwarf_version >= 3 || !dwarf_strict))
12852 encoding = DW_ATE_lo_user;
12853 else if (TYPE_UNSIGNED (type))
12854 encoding = DW_ATE_unsigned_fixed;
12855 else
12856 encoding = DW_ATE_signed_fixed;
12857 break;
12859 /* Dwarf2 doesn't know anything about complex ints, so use
12860 a user defined type for it. */
12861 case COMPLEX_TYPE:
12862 if (TREE_CODE (TREE_TYPE (type)) == REAL_TYPE)
12863 encoding = DW_ATE_complex_float;
12864 else
12865 encoding = DW_ATE_lo_user;
12866 break;
12868 case BOOLEAN_TYPE:
12869 /* GNU FORTRAN/Ada/C++ BOOLEAN type. */
12870 encoding = DW_ATE_boolean;
12871 break;
12873 default:
12874 /* No other TREE_CODEs are Dwarf fundamental types. */
12875 gcc_unreachable ();
12878 base_type_result = new_die_raw (DW_TAG_base_type);
12880 add_AT_unsigned (base_type_result, DW_AT_byte_size,
12881 int_size_in_bytes (type));
12882 add_AT_unsigned (base_type_result, DW_AT_encoding, encoding);
12884 if (need_endianity_attribute_p (reverse))
12885 add_AT_unsigned (base_type_result, DW_AT_endianity,
12886 BYTES_BIG_ENDIAN ? DW_END_little : DW_END_big);
12888 add_alignment_attribute (base_type_result, type);
12890 if (fpt_used)
12892 switch (fpt_info.scale_factor_kind)
12894 case fixed_point_scale_factor_binary:
12895 add_AT_int (base_type_result, DW_AT_binary_scale,
12896 fpt_info.scale_factor.binary);
12897 break;
12899 case fixed_point_scale_factor_decimal:
12900 add_AT_int (base_type_result, DW_AT_decimal_scale,
12901 fpt_info.scale_factor.decimal);
12902 break;
12904 case fixed_point_scale_factor_arbitrary:
12905 /* Arbitrary scale factors cannot be described in standard DWARF,
12906 yet. */
12907 if (!dwarf_strict)
12909 /* Describe the scale factor as a rational constant. */
12910 const dw_die_ref scale_factor
12911 = new_die (DW_TAG_constant, comp_unit_die (), type);
12913 add_AT_unsigned (scale_factor, DW_AT_GNU_numerator,
12914 fpt_info.scale_factor.arbitrary.numerator);
12915 add_AT_int (scale_factor, DW_AT_GNU_denominator,
12916 fpt_info.scale_factor.arbitrary.denominator);
12918 add_AT_die_ref (base_type_result, DW_AT_small, scale_factor);
12920 break;
12922 default:
12923 gcc_unreachable ();
12927 if (type_bias)
12928 add_scalar_info (base_type_result, DW_AT_GNU_bias, type_bias,
12929 dw_scalar_form_constant
12930 | dw_scalar_form_exprloc
12931 | dw_scalar_form_reference,
12932 NULL);
12934 return base_type_result;
12937 /* A C++ function with deduced return type can have a TEMPLATE_TYPE_PARM
12938 named 'auto' in its type: return true for it, false otherwise. */
12940 static inline bool
12941 is_cxx_auto (tree type)
12943 if (is_cxx ())
12945 tree name = TYPE_IDENTIFIER (type);
12946 if (name == get_identifier ("auto")
12947 || name == get_identifier ("decltype(auto)"))
12948 return true;
12950 return false;
12953 /* Given a pointer to an arbitrary ..._TYPE tree node, return nonzero if the
12954 given input type is a Dwarf "fundamental" type. Otherwise return null. */
12956 static inline int
12957 is_base_type (tree type)
12959 switch (TREE_CODE (type))
12961 case INTEGER_TYPE:
12962 case REAL_TYPE:
12963 case FIXED_POINT_TYPE:
12964 case COMPLEX_TYPE:
12965 case BOOLEAN_TYPE:
12966 return 1;
12968 case VOID_TYPE:
12969 case ARRAY_TYPE:
12970 case RECORD_TYPE:
12971 case UNION_TYPE:
12972 case QUAL_UNION_TYPE:
12973 case ENUMERAL_TYPE:
12974 case FUNCTION_TYPE:
12975 case METHOD_TYPE:
12976 case POINTER_TYPE:
12977 case REFERENCE_TYPE:
12978 case NULLPTR_TYPE:
12979 case OFFSET_TYPE:
12980 case LANG_TYPE:
12981 case VECTOR_TYPE:
12982 return 0;
12984 default:
12985 if (is_cxx_auto (type))
12986 return 0;
12987 gcc_unreachable ();
12990 return 0;
12993 /* Given a pointer to a tree node, assumed to be some kind of a ..._TYPE
12994 node, return the size in bits for the type if it is a constant, or else
12995 return the alignment for the type if the type's size is not constant, or
12996 else return BITS_PER_WORD if the type actually turns out to be an
12997 ERROR_MARK node. */
12999 static inline unsigned HOST_WIDE_INT
13000 simple_type_size_in_bits (const_tree type)
13002 if (TREE_CODE (type) == ERROR_MARK)
13003 return BITS_PER_WORD;
13004 else if (TYPE_SIZE (type) == NULL_TREE)
13005 return 0;
13006 else if (tree_fits_uhwi_p (TYPE_SIZE (type)))
13007 return tree_to_uhwi (TYPE_SIZE (type));
13008 else
13009 return TYPE_ALIGN (type);
13012 /* Similarly, but return an offset_int instead of UHWI. */
13014 static inline offset_int
13015 offset_int_type_size_in_bits (const_tree type)
13017 if (TREE_CODE (type) == ERROR_MARK)
13018 return BITS_PER_WORD;
13019 else if (TYPE_SIZE (type) == NULL_TREE)
13020 return 0;
13021 else if (TREE_CODE (TYPE_SIZE (type)) == INTEGER_CST)
13022 return wi::to_offset (TYPE_SIZE (type));
13023 else
13024 return TYPE_ALIGN (type);
13027 /* Given a pointer to a tree node for a subrange type, return a pointer
13028 to a DIE that describes the given type. */
13030 static dw_die_ref
13031 subrange_type_die (tree type, tree low, tree high, tree bias,
13032 dw_die_ref context_die)
13034 dw_die_ref subrange_die;
13035 const HOST_WIDE_INT size_in_bytes = int_size_in_bytes (type);
13037 if (context_die == NULL)
13038 context_die = comp_unit_die ();
13040 subrange_die = new_die (DW_TAG_subrange_type, context_die, type);
13042 if (int_size_in_bytes (TREE_TYPE (type)) != size_in_bytes)
13044 /* The size of the subrange type and its base type do not match,
13045 so we need to generate a size attribute for the subrange type. */
13046 add_AT_unsigned (subrange_die, DW_AT_byte_size, size_in_bytes);
13049 add_alignment_attribute (subrange_die, type);
13051 if (low)
13052 add_bound_info (subrange_die, DW_AT_lower_bound, low, NULL);
13053 if (high)
13054 add_bound_info (subrange_die, DW_AT_upper_bound, high, NULL);
13055 if (bias && !dwarf_strict)
13056 add_scalar_info (subrange_die, DW_AT_GNU_bias, bias,
13057 dw_scalar_form_constant
13058 | dw_scalar_form_exprloc
13059 | dw_scalar_form_reference,
13060 NULL);
13062 return subrange_die;
13065 /* Returns the (const and/or volatile) cv_qualifiers associated with
13066 the decl node. This will normally be augmented with the
13067 cv_qualifiers of the underlying type in add_type_attribute. */
13069 static int
13070 decl_quals (const_tree decl)
13072 return ((TREE_READONLY (decl)
13073 /* The C++ front-end correctly marks reference-typed
13074 variables as readonly, but from a language (and debug
13075 info) standpoint they are not const-qualified. */
13076 && TREE_CODE (TREE_TYPE (decl)) != REFERENCE_TYPE
13077 ? TYPE_QUAL_CONST : TYPE_UNQUALIFIED)
13078 | (TREE_THIS_VOLATILE (decl)
13079 ? TYPE_QUAL_VOLATILE : TYPE_UNQUALIFIED));
13082 /* Determine the TYPE whose qualifiers match the largest strict subset
13083 of the given TYPE_QUALS, and return its qualifiers. Ignore all
13084 qualifiers outside QUAL_MASK. */
13086 static int
13087 get_nearest_type_subqualifiers (tree type, int type_quals, int qual_mask)
13089 tree t;
13090 int best_rank = 0, best_qual = 0, max_rank;
13092 type_quals &= qual_mask;
13093 max_rank = popcount_hwi (type_quals) - 1;
13095 for (t = TYPE_MAIN_VARIANT (type); t && best_rank < max_rank;
13096 t = TYPE_NEXT_VARIANT (t))
13098 int q = TYPE_QUALS (t) & qual_mask;
13100 if ((q & type_quals) == q && q != type_quals
13101 && check_base_type (t, type))
13103 int rank = popcount_hwi (q);
13105 if (rank > best_rank)
13107 best_rank = rank;
13108 best_qual = q;
13113 return best_qual;
13116 struct dwarf_qual_info_t { int q; enum dwarf_tag t; };
13117 static const dwarf_qual_info_t dwarf_qual_info[] =
13119 { TYPE_QUAL_CONST, DW_TAG_const_type },
13120 { TYPE_QUAL_VOLATILE, DW_TAG_volatile_type },
13121 { TYPE_QUAL_RESTRICT, DW_TAG_restrict_type },
13122 { TYPE_QUAL_ATOMIC, DW_TAG_atomic_type }
13124 static const unsigned int dwarf_qual_info_size
13125 = sizeof (dwarf_qual_info) / sizeof (dwarf_qual_info[0]);
13127 /* If DIE is a qualified DIE of some base DIE with the same parent,
13128 return the base DIE, otherwise return NULL. Set MASK to the
13129 qualifiers added compared to the returned DIE. */
13131 static dw_die_ref
13132 qualified_die_p (dw_die_ref die, int *mask, unsigned int depth)
13134 unsigned int i;
13135 for (i = 0; i < dwarf_qual_info_size; i++)
13136 if (die->die_tag == dwarf_qual_info[i].t)
13137 break;
13138 if (i == dwarf_qual_info_size)
13139 return NULL;
13140 if (vec_safe_length (die->die_attr) != 1)
13141 return NULL;
13142 dw_die_ref type = get_AT_ref (die, DW_AT_type);
13143 if (type == NULL || type->die_parent != die->die_parent)
13144 return NULL;
13145 *mask |= dwarf_qual_info[i].q;
13146 if (depth)
13148 dw_die_ref ret = qualified_die_p (type, mask, depth - 1);
13149 if (ret)
13150 return ret;
13152 return type;
13155 /* Given a pointer to an arbitrary ..._TYPE tree node, return a debugging
13156 entry that chains the modifiers specified by CV_QUALS in front of the
13157 given type. REVERSE is true if the type is to be interpreted in the
13158 reverse storage order wrt the target order. */
13160 static dw_die_ref
13161 modified_type_die (tree type, int cv_quals, bool reverse,
13162 dw_die_ref context_die)
13164 enum tree_code code = TREE_CODE (type);
13165 dw_die_ref mod_type_die;
13166 dw_die_ref sub_die = NULL;
13167 tree item_type = NULL;
13168 tree qualified_type;
13169 tree name, low, high;
13170 dw_die_ref mod_scope;
13171 /* Only these cv-qualifiers are currently handled. */
13172 const int cv_qual_mask = (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE
13173 | TYPE_QUAL_RESTRICT | TYPE_QUAL_ATOMIC |
13174 ENCODE_QUAL_ADDR_SPACE(~0U));
13175 const bool reverse_base_type
13176 = need_endianity_attribute_p (reverse) && is_base_type (type);
13178 if (code == ERROR_MARK)
13179 return NULL;
13181 if (lang_hooks.types.get_debug_type)
13183 tree debug_type = lang_hooks.types.get_debug_type (type);
13185 if (debug_type != NULL_TREE && debug_type != type)
13186 return modified_type_die (debug_type, cv_quals, reverse, context_die);
13189 cv_quals &= cv_qual_mask;
13191 /* Don't emit DW_TAG_restrict_type for DWARFv2, since it is a type
13192 tag modifier (and not an attribute) old consumers won't be able
13193 to handle it. */
13194 if (dwarf_version < 3)
13195 cv_quals &= ~TYPE_QUAL_RESTRICT;
13197 /* Likewise for DW_TAG_atomic_type for DWARFv5. */
13198 if (dwarf_version < 5)
13199 cv_quals &= ~TYPE_QUAL_ATOMIC;
13201 /* See if we already have the appropriately qualified variant of
13202 this type. */
13203 qualified_type = get_qualified_type (type, cv_quals);
13205 if (qualified_type == sizetype)
13207 /* Try not to expose the internal sizetype type's name. */
13208 if (TYPE_NAME (qualified_type)
13209 && TREE_CODE (TYPE_NAME (qualified_type)) == TYPE_DECL)
13211 tree t = TREE_TYPE (TYPE_NAME (qualified_type));
13213 gcc_checking_assert (TREE_CODE (t) == INTEGER_TYPE
13214 && (TYPE_PRECISION (t)
13215 == TYPE_PRECISION (qualified_type))
13216 && (TYPE_UNSIGNED (t)
13217 == TYPE_UNSIGNED (qualified_type)));
13218 qualified_type = t;
13220 else if (qualified_type == sizetype
13221 && TREE_CODE (sizetype) == TREE_CODE (size_type_node)
13222 && TYPE_PRECISION (sizetype) == TYPE_PRECISION (size_type_node)
13223 && TYPE_UNSIGNED (sizetype) == TYPE_UNSIGNED (size_type_node))
13224 qualified_type = size_type_node;
13225 if (type == sizetype)
13226 type = qualified_type;
13229 /* If we do, then we can just use its DIE, if it exists. */
13230 if (qualified_type)
13232 mod_type_die = lookup_type_die (qualified_type);
13234 /* DW_AT_endianity doesn't come from a qualifier on the type, so it is
13235 dealt with specially: the DIE with the attribute, if it exists, is
13236 placed immediately after the regular DIE for the same base type. */
13237 if (mod_type_die
13238 && (!reverse_base_type
13239 || ((mod_type_die = mod_type_die->die_sib) != NULL
13240 && get_AT_unsigned (mod_type_die, DW_AT_endianity))))
13241 return mod_type_die;
13244 name = qualified_type ? TYPE_NAME (qualified_type) : NULL;
13246 /* Handle C typedef types. */
13247 if (name
13248 && TREE_CODE (name) == TYPE_DECL
13249 && DECL_ORIGINAL_TYPE (name)
13250 && !DECL_ARTIFICIAL (name))
13252 tree dtype = TREE_TYPE (name);
13254 /* Skip the typedef for base types with DW_AT_endianity, no big deal. */
13255 if (qualified_type == dtype && !reverse_base_type)
13257 tree origin = decl_ultimate_origin (name);
13259 /* Typedef variants that have an abstract origin don't get their own
13260 type DIE (see gen_typedef_die), so fall back on the ultimate
13261 abstract origin instead. */
13262 if (origin != NULL && origin != name)
13263 return modified_type_die (TREE_TYPE (origin), cv_quals, reverse,
13264 context_die);
13266 /* For a named type, use the typedef. */
13267 gen_type_die (qualified_type, context_die);
13268 return lookup_type_die (qualified_type);
13270 else
13272 int dquals = TYPE_QUALS_NO_ADDR_SPACE (dtype);
13273 dquals &= cv_qual_mask;
13274 if ((dquals & ~cv_quals) != TYPE_UNQUALIFIED
13275 || (cv_quals == dquals && DECL_ORIGINAL_TYPE (name) != type))
13276 /* cv-unqualified version of named type. Just use
13277 the unnamed type to which it refers. */
13278 return modified_type_die (DECL_ORIGINAL_TYPE (name), cv_quals,
13279 reverse, context_die);
13280 /* Else cv-qualified version of named type; fall through. */
13284 mod_scope = scope_die_for (type, context_die);
13286 if (cv_quals)
13288 int sub_quals = 0, first_quals = 0;
13289 unsigned i;
13290 dw_die_ref first = NULL, last = NULL;
13292 /* Determine a lesser qualified type that most closely matches
13293 this one. Then generate DW_TAG_* entries for the remaining
13294 qualifiers. */
13295 sub_quals = get_nearest_type_subqualifiers (type, cv_quals,
13296 cv_qual_mask);
13297 if (sub_quals && use_debug_types)
13299 bool needed = false;
13300 /* If emitting type units, make sure the order of qualifiers
13301 is canonical. Thus, start from unqualified type if
13302 an earlier qualifier is missing in sub_quals, but some later
13303 one is present there. */
13304 for (i = 0; i < dwarf_qual_info_size; i++)
13305 if (dwarf_qual_info[i].q & cv_quals & ~sub_quals)
13306 needed = true;
13307 else if (needed && (dwarf_qual_info[i].q & cv_quals))
13309 sub_quals = 0;
13310 break;
13313 mod_type_die = modified_type_die (type, sub_quals, reverse, context_die);
13314 if (mod_scope && mod_type_die && mod_type_die->die_parent == mod_scope)
13316 /* As not all intermediate qualified DIEs have corresponding
13317 tree types, ensure that qualified DIEs in the same scope
13318 as their DW_AT_type are emitted after their DW_AT_type,
13319 only with other qualified DIEs for the same type possibly
13320 in between them. Determine the range of such qualified
13321 DIEs now (first being the base type, last being corresponding
13322 last qualified DIE for it). */
13323 unsigned int count = 0;
13324 first = qualified_die_p (mod_type_die, &first_quals,
13325 dwarf_qual_info_size);
13326 if (first == NULL)
13327 first = mod_type_die;
13328 gcc_assert ((first_quals & ~sub_quals) == 0);
13329 for (count = 0, last = first;
13330 count < (1U << dwarf_qual_info_size);
13331 count++, last = last->die_sib)
13333 int quals = 0;
13334 if (last == mod_scope->die_child)
13335 break;
13336 if (qualified_die_p (last->die_sib, &quals, dwarf_qual_info_size)
13337 != first)
13338 break;
13342 for (i = 0; i < dwarf_qual_info_size; i++)
13343 if (dwarf_qual_info[i].q & cv_quals & ~sub_quals)
13345 dw_die_ref d;
13346 if (first && first != last)
13348 for (d = first->die_sib; ; d = d->die_sib)
13350 int quals = 0;
13351 qualified_die_p (d, &quals, dwarf_qual_info_size);
13352 if (quals == (first_quals | dwarf_qual_info[i].q))
13353 break;
13354 if (d == last)
13356 d = NULL;
13357 break;
13360 if (d)
13362 mod_type_die = d;
13363 continue;
13366 if (first)
13368 d = new_die_raw (dwarf_qual_info[i].t);
13369 add_child_die_after (mod_scope, d, last);
13370 last = d;
13372 else
13373 d = new_die (dwarf_qual_info[i].t, mod_scope, type);
13374 if (mod_type_die)
13375 add_AT_die_ref (d, DW_AT_type, mod_type_die);
13376 mod_type_die = d;
13377 first_quals |= dwarf_qual_info[i].q;
13380 else if (code == POINTER_TYPE || code == REFERENCE_TYPE)
13382 dwarf_tag tag = DW_TAG_pointer_type;
13383 if (code == REFERENCE_TYPE)
13385 if (TYPE_REF_IS_RVALUE (type) && dwarf_version >= 4)
13386 tag = DW_TAG_rvalue_reference_type;
13387 else
13388 tag = DW_TAG_reference_type;
13390 mod_type_die = new_die (tag, mod_scope, type);
13392 add_AT_unsigned (mod_type_die, DW_AT_byte_size,
13393 simple_type_size_in_bits (type) / BITS_PER_UNIT);
13394 add_alignment_attribute (mod_type_die, type);
13395 item_type = TREE_TYPE (type);
13397 addr_space_t as = TYPE_ADDR_SPACE (item_type);
13398 if (!ADDR_SPACE_GENERIC_P (as))
13400 int action = targetm.addr_space.debug (as);
13401 if (action >= 0)
13403 /* Positive values indicate an address_class. */
13404 add_AT_unsigned (mod_type_die, DW_AT_address_class, action);
13406 else
13408 /* Negative values indicate an (inverted) segment base reg. */
13409 dw_loc_descr_ref d
13410 = one_reg_loc_descriptor (~action, VAR_INIT_STATUS_INITIALIZED);
13411 add_AT_loc (mod_type_die, DW_AT_segment, d);
13415 else if (code == INTEGER_TYPE
13416 && TREE_TYPE (type) != NULL_TREE
13417 && subrange_type_for_debug_p (type, &low, &high))
13419 tree bias = NULL_TREE;
13420 if (lang_hooks.types.get_type_bias)
13421 bias = lang_hooks.types.get_type_bias (type);
13422 mod_type_die = subrange_type_die (type, low, high, bias, context_die);
13423 item_type = TREE_TYPE (type);
13425 else if (is_base_type (type))
13427 mod_type_die = base_type_die (type, reverse);
13429 /* The DIE with DW_AT_endianity is placed right after the naked DIE. */
13430 if (reverse_base_type)
13432 dw_die_ref after_die
13433 = modified_type_die (type, cv_quals, false, context_die);
13434 add_child_die_after (comp_unit_die (), mod_type_die, after_die);
13436 else
13437 add_child_die (comp_unit_die (), mod_type_die);
13439 add_pubtype (type, mod_type_die);
13441 else
13443 gen_type_die (type, context_die);
13445 /* We have to get the type_main_variant here (and pass that to the
13446 `lookup_type_die' routine) because the ..._TYPE node we have
13447 might simply be a *copy* of some original type node (where the
13448 copy was created to help us keep track of typedef names) and
13449 that copy might have a different TYPE_UID from the original
13450 ..._TYPE node. */
13451 if (TREE_CODE (type) == FUNCTION_TYPE
13452 || TREE_CODE (type) == METHOD_TYPE)
13454 /* For function/method types, can't just use type_main_variant here,
13455 because that can have different ref-qualifiers for C++,
13456 but try to canonicalize. */
13457 tree main = TYPE_MAIN_VARIANT (type);
13458 for (tree t = main; t; t = TYPE_NEXT_VARIANT (t))
13459 if (TYPE_QUALS_NO_ADDR_SPACE (t) == 0
13460 && check_base_type (t, main)
13461 && check_lang_type (t, type))
13462 return lookup_type_die (t);
13463 return lookup_type_die (type);
13465 else if (TREE_CODE (type) != VECTOR_TYPE
13466 && TREE_CODE (type) != ARRAY_TYPE)
13467 return lookup_type_die (type_main_variant (type));
13468 else
13469 /* Vectors have the debugging information in the type,
13470 not the main variant. */
13471 return lookup_type_die (type);
13474 /* Builtin types don't have a DECL_ORIGINAL_TYPE. For those,
13475 don't output a DW_TAG_typedef, since there isn't one in the
13476 user's program; just attach a DW_AT_name to the type.
13477 Don't attach a DW_AT_name to DW_TAG_const_type or DW_TAG_volatile_type
13478 if the base type already has the same name. */
13479 if (name
13480 && ((TREE_CODE (name) != TYPE_DECL
13481 && (qualified_type == TYPE_MAIN_VARIANT (type)
13482 || (cv_quals == TYPE_UNQUALIFIED)))
13483 || (TREE_CODE (name) == TYPE_DECL
13484 && TREE_TYPE (name) == qualified_type
13485 && DECL_NAME (name))))
13487 if (TREE_CODE (name) == TYPE_DECL)
13488 /* Could just call add_name_and_src_coords_attributes here,
13489 but since this is a builtin type it doesn't have any
13490 useful source coordinates anyway. */
13491 name = DECL_NAME (name);
13492 add_name_attribute (mod_type_die, IDENTIFIER_POINTER (name));
13494 /* This probably indicates a bug. */
13495 else if (mod_type_die && mod_type_die->die_tag == DW_TAG_base_type)
13497 name = TYPE_IDENTIFIER (type);
13498 add_name_attribute (mod_type_die,
13499 name ? IDENTIFIER_POINTER (name) : "__unknown__");
13502 if (qualified_type && !reverse_base_type)
13503 equate_type_number_to_die (qualified_type, mod_type_die);
13505 if (item_type)
13506 /* We must do this after the equate_type_number_to_die call, in case
13507 this is a recursive type. This ensures that the modified_type_die
13508 recursion will terminate even if the type is recursive. Recursive
13509 types are possible in Ada. */
13510 sub_die = modified_type_die (item_type,
13511 TYPE_QUALS_NO_ADDR_SPACE (item_type),
13512 reverse,
13513 context_die);
13515 if (sub_die != NULL)
13516 add_AT_die_ref (mod_type_die, DW_AT_type, sub_die);
13518 add_gnat_descriptive_type_attribute (mod_type_die, type, context_die);
13519 if (TYPE_ARTIFICIAL (type))
13520 add_AT_flag (mod_type_die, DW_AT_artificial, 1);
13522 return mod_type_die;
13525 /* Generate DIEs for the generic parameters of T.
13526 T must be either a generic type or a generic function.
13527 See http://gcc.gnu.org/wiki/TemplateParmsDwarf for more. */
13529 static void
13530 gen_generic_params_dies (tree t)
13532 tree parms, args;
13533 int parms_num, i;
13534 dw_die_ref die = NULL;
13535 int non_default;
13537 if (!t || (TYPE_P (t) && !COMPLETE_TYPE_P (t)))
13538 return;
13540 if (TYPE_P (t))
13541 die = lookup_type_die (t);
13542 else if (DECL_P (t))
13543 die = lookup_decl_die (t);
13545 gcc_assert (die);
13547 parms = lang_hooks.get_innermost_generic_parms (t);
13548 if (!parms)
13549 /* T has no generic parameter. It means T is neither a generic type
13550 or function. End of story. */
13551 return;
13553 parms_num = TREE_VEC_LENGTH (parms);
13554 args = lang_hooks.get_innermost_generic_args (t);
13555 if (TREE_CHAIN (args) && TREE_CODE (TREE_CHAIN (args)) == INTEGER_CST)
13556 non_default = int_cst_value (TREE_CHAIN (args));
13557 else
13558 non_default = TREE_VEC_LENGTH (args);
13559 for (i = 0; i < parms_num; i++)
13561 tree parm, arg, arg_pack_elems;
13562 dw_die_ref parm_die;
13564 parm = TREE_VEC_ELT (parms, i);
13565 arg = TREE_VEC_ELT (args, i);
13566 arg_pack_elems = lang_hooks.types.get_argument_pack_elems (arg);
13567 gcc_assert (parm && TREE_VALUE (parm) && arg);
13569 if (parm && TREE_VALUE (parm) && arg)
13571 /* If PARM represents a template parameter pack,
13572 emit a DW_TAG_GNU_template_parameter_pack DIE, followed
13573 by DW_TAG_template_*_parameter DIEs for the argument
13574 pack elements of ARG. Note that ARG would then be
13575 an argument pack. */
13576 if (arg_pack_elems)
13577 parm_die = template_parameter_pack_die (TREE_VALUE (parm),
13578 arg_pack_elems,
13579 die);
13580 else
13581 parm_die = generic_parameter_die (TREE_VALUE (parm), arg,
13582 true /* emit name */, die);
13583 if (i >= non_default)
13584 add_AT_flag (parm_die, DW_AT_default_value, 1);
13589 /* Create and return a DIE for PARM which should be
13590 the representation of a generic type parameter.
13591 For instance, in the C++ front end, PARM would be a template parameter.
13592 ARG is the argument to PARM.
13593 EMIT_NAME_P if tree, the DIE will have DW_AT_name attribute set to the
13594 name of the PARM.
13595 PARENT_DIE is the parent DIE which the new created DIE should be added to,
13596 as a child node. */
13598 static dw_die_ref
13599 generic_parameter_die (tree parm, tree arg,
13600 bool emit_name_p,
13601 dw_die_ref parent_die)
13603 dw_die_ref tmpl_die = NULL;
13604 const char *name = NULL;
13606 /* C++2a accepts class literals as template parameters, and var
13607 decls with initializers represent them. The VAR_DECLs would be
13608 rejected, but we can take the DECL_INITIAL constructor and
13609 attempt to expand it. */
13610 if (arg && VAR_P (arg))
13611 arg = DECL_INITIAL (arg);
13613 if (!parm || !DECL_NAME (parm) || !arg)
13614 return NULL;
13616 /* We support non-type generic parameters and arguments,
13617 type generic parameters and arguments, as well as
13618 generic generic parameters (a.k.a. template template parameters in C++)
13619 and arguments. */
13620 if (TREE_CODE (parm) == PARM_DECL)
13621 /* PARM is a nontype generic parameter */
13622 tmpl_die = new_die (DW_TAG_template_value_param, parent_die, parm);
13623 else if (TREE_CODE (parm) == TYPE_DECL)
13624 /* PARM is a type generic parameter. */
13625 tmpl_die = new_die (DW_TAG_template_type_param, parent_die, parm);
13626 else if (lang_hooks.decls.generic_generic_parameter_decl_p (parm))
13627 /* PARM is a generic generic parameter.
13628 Its DIE is a GNU extension. It shall have a
13629 DW_AT_name attribute to represent the name of the template template
13630 parameter, and a DW_AT_GNU_template_name attribute to represent the
13631 name of the template template argument. */
13632 tmpl_die = new_die (DW_TAG_GNU_template_template_param,
13633 parent_die, parm);
13634 else
13635 gcc_unreachable ();
13637 if (tmpl_die)
13639 tree tmpl_type;
13641 /* If PARM is a generic parameter pack, it means we are
13642 emitting debug info for a template argument pack element.
13643 In other terms, ARG is a template argument pack element.
13644 In that case, we don't emit any DW_AT_name attribute for
13645 the die. */
13646 if (emit_name_p)
13648 name = IDENTIFIER_POINTER (DECL_NAME (parm));
13649 gcc_assert (name);
13650 add_AT_string (tmpl_die, DW_AT_name, name);
13653 if (!lang_hooks.decls.generic_generic_parameter_decl_p (parm))
13655 /* DWARF3, 5.6.8 says if PARM is a non-type generic parameter
13656 TMPL_DIE should have a child DW_AT_type attribute that is set
13657 to the type of the argument to PARM, which is ARG.
13658 If PARM is a type generic parameter, TMPL_DIE should have a
13659 child DW_AT_type that is set to ARG. */
13660 tmpl_type = TYPE_P (arg) ? arg : TREE_TYPE (arg);
13661 add_type_attribute (tmpl_die, tmpl_type,
13662 (TREE_THIS_VOLATILE (tmpl_type)
13663 ? TYPE_QUAL_VOLATILE : TYPE_UNQUALIFIED),
13664 false, parent_die);
13666 else
13668 /* So TMPL_DIE is a DIE representing a
13669 a generic generic template parameter, a.k.a template template
13670 parameter in C++ and arg is a template. */
13672 /* The DW_AT_GNU_template_name attribute of the DIE must be set
13673 to the name of the argument. */
13674 name = dwarf2_name (TYPE_P (arg) ? TYPE_NAME (arg) : arg, 1);
13675 if (name)
13676 add_AT_string (tmpl_die, DW_AT_GNU_template_name, name);
13679 if (TREE_CODE (parm) == PARM_DECL)
13680 /* So PARM is a non-type generic parameter.
13681 DWARF3 5.6.8 says we must set a DW_AT_const_value child
13682 attribute of TMPL_DIE which value represents the value
13683 of ARG.
13684 We must be careful here:
13685 The value of ARG might reference some function decls.
13686 We might currently be emitting debug info for a generic
13687 type and types are emitted before function decls, we don't
13688 know if the function decls referenced by ARG will actually be
13689 emitted after cgraph computations.
13690 So must defer the generation of the DW_AT_const_value to
13691 after cgraph is ready. */
13692 append_entry_to_tmpl_value_parm_die_table (tmpl_die, arg);
13695 return tmpl_die;
13698 /* Generate and return a DW_TAG_GNU_template_parameter_pack DIE representing.
13699 PARM_PACK must be a template parameter pack. The returned DIE
13700 will be child DIE of PARENT_DIE. */
13702 static dw_die_ref
13703 template_parameter_pack_die (tree parm_pack,
13704 tree parm_pack_args,
13705 dw_die_ref parent_die)
13707 dw_die_ref die;
13708 int j;
13710 gcc_assert (parent_die && parm_pack);
13712 die = new_die (DW_TAG_GNU_template_parameter_pack, parent_die, parm_pack);
13713 add_name_and_src_coords_attributes (die, parm_pack);
13714 for (j = 0; j < TREE_VEC_LENGTH (parm_pack_args); j++)
13715 generic_parameter_die (parm_pack,
13716 TREE_VEC_ELT (parm_pack_args, j),
13717 false /* Don't emit DW_AT_name */,
13718 die);
13719 return die;
13722 /* Return the DBX register number described by a given RTL node. */
13724 static unsigned int
13725 dbx_reg_number (const_rtx rtl)
13727 unsigned regno = REGNO (rtl);
13729 gcc_assert (regno < FIRST_PSEUDO_REGISTER);
13731 #ifdef LEAF_REG_REMAP
13732 if (crtl->uses_only_leaf_regs)
13734 int leaf_reg = LEAF_REG_REMAP (regno);
13735 if (leaf_reg != -1)
13736 regno = (unsigned) leaf_reg;
13738 #endif
13740 regno = DBX_REGISTER_NUMBER (regno);
13741 gcc_assert (regno != INVALID_REGNUM);
13742 return regno;
13745 /* Optionally add a DW_OP_piece term to a location description expression.
13746 DW_OP_piece is only added if the location description expression already
13747 doesn't end with DW_OP_piece. */
13749 static void
13750 add_loc_descr_op_piece (dw_loc_descr_ref *list_head, int size)
13752 dw_loc_descr_ref loc;
13754 if (*list_head != NULL)
13756 /* Find the end of the chain. */
13757 for (loc = *list_head; loc->dw_loc_next != NULL; loc = loc->dw_loc_next)
13760 if (loc->dw_loc_opc != DW_OP_piece)
13761 loc->dw_loc_next = new_loc_descr (DW_OP_piece, size, 0);
13765 /* Return a location descriptor that designates a machine register or
13766 zero if there is none. */
13768 static dw_loc_descr_ref
13769 reg_loc_descriptor (rtx rtl, enum var_init_status initialized)
13771 rtx regs;
13773 if (REGNO (rtl) >= FIRST_PSEUDO_REGISTER)
13774 return 0;
13776 /* We only use "frame base" when we're sure we're talking about the
13777 post-prologue local stack frame. We do this by *not* running
13778 register elimination until this point, and recognizing the special
13779 argument pointer and soft frame pointer rtx's.
13780 Use DW_OP_fbreg offset DW_OP_stack_value in this case. */
13781 if ((rtl == arg_pointer_rtx || rtl == frame_pointer_rtx)
13782 && eliminate_regs (rtl, VOIDmode, NULL_RTX) != rtl)
13784 dw_loc_descr_ref result = NULL;
13786 if (dwarf_version >= 4 || !dwarf_strict)
13788 result = mem_loc_descriptor (rtl, GET_MODE (rtl), VOIDmode,
13789 initialized);
13790 if (result)
13791 add_loc_descr (&result,
13792 new_loc_descr (DW_OP_stack_value, 0, 0));
13794 return result;
13797 regs = targetm.dwarf_register_span (rtl);
13799 if (REG_NREGS (rtl) > 1 || regs)
13800 return multiple_reg_loc_descriptor (rtl, regs, initialized);
13801 else
13803 unsigned int dbx_regnum = dbx_reg_number (rtl);
13804 if (dbx_regnum == IGNORED_DWARF_REGNUM)
13805 return 0;
13806 return one_reg_loc_descriptor (dbx_regnum, initialized);
13810 /* Return a location descriptor that designates a machine register for
13811 a given hard register number. */
13813 static dw_loc_descr_ref
13814 one_reg_loc_descriptor (unsigned int regno, enum var_init_status initialized)
13816 dw_loc_descr_ref reg_loc_descr;
13818 if (regno <= 31)
13819 reg_loc_descr
13820 = new_loc_descr ((enum dwarf_location_atom) (DW_OP_reg0 + regno), 0, 0);
13821 else
13822 reg_loc_descr = new_loc_descr (DW_OP_regx, regno, 0);
13824 if (initialized == VAR_INIT_STATUS_UNINITIALIZED)
13825 add_loc_descr (&reg_loc_descr, new_loc_descr (DW_OP_GNU_uninit, 0, 0));
13827 return reg_loc_descr;
13830 /* Given an RTL of a register, return a location descriptor that
13831 designates a value that spans more than one register. */
13833 static dw_loc_descr_ref
13834 multiple_reg_loc_descriptor (rtx rtl, rtx regs,
13835 enum var_init_status initialized)
13837 int size, i;
13838 dw_loc_descr_ref loc_result = NULL;
13840 /* Simple, contiguous registers. */
13841 if (regs == NULL_RTX)
13843 unsigned reg = REGNO (rtl);
13844 int nregs;
13846 #ifdef LEAF_REG_REMAP
13847 if (crtl->uses_only_leaf_regs)
13849 int leaf_reg = LEAF_REG_REMAP (reg);
13850 if (leaf_reg != -1)
13851 reg = (unsigned) leaf_reg;
13853 #endif
13855 gcc_assert ((unsigned) DBX_REGISTER_NUMBER (reg) == dbx_reg_number (rtl));
13856 nregs = REG_NREGS (rtl);
13858 /* At present we only track constant-sized pieces. */
13859 if (!GET_MODE_SIZE (GET_MODE (rtl)).is_constant (&size))
13860 return NULL;
13861 size /= nregs;
13863 loc_result = NULL;
13864 while (nregs--)
13866 dw_loc_descr_ref t;
13868 t = one_reg_loc_descriptor (DBX_REGISTER_NUMBER (reg),
13869 VAR_INIT_STATUS_INITIALIZED);
13870 add_loc_descr (&loc_result, t);
13871 add_loc_descr_op_piece (&loc_result, size);
13872 ++reg;
13874 return loc_result;
13877 /* Now onto stupid register sets in non contiguous locations. */
13879 gcc_assert (GET_CODE (regs) == PARALLEL);
13881 /* At present we only track constant-sized pieces. */
13882 if (!GET_MODE_SIZE (GET_MODE (XVECEXP (regs, 0, 0))).is_constant (&size))
13883 return NULL;
13884 loc_result = NULL;
13886 for (i = 0; i < XVECLEN (regs, 0); ++i)
13888 dw_loc_descr_ref t;
13890 t = one_reg_loc_descriptor (dbx_reg_number (XVECEXP (regs, 0, i)),
13891 VAR_INIT_STATUS_INITIALIZED);
13892 add_loc_descr (&loc_result, t);
13893 add_loc_descr_op_piece (&loc_result, size);
13896 if (loc_result && initialized == VAR_INIT_STATUS_UNINITIALIZED)
13897 add_loc_descr (&loc_result, new_loc_descr (DW_OP_GNU_uninit, 0, 0));
13898 return loc_result;
13901 static unsigned long size_of_int_loc_descriptor (HOST_WIDE_INT);
13903 /* Return a location descriptor that designates a constant i,
13904 as a compound operation from constant (i >> shift), constant shift
13905 and DW_OP_shl. */
13907 static dw_loc_descr_ref
13908 int_shift_loc_descriptor (HOST_WIDE_INT i, int shift)
13910 dw_loc_descr_ref ret = int_loc_descriptor (i >> shift);
13911 add_loc_descr (&ret, int_loc_descriptor (shift));
13912 add_loc_descr (&ret, new_loc_descr (DW_OP_shl, 0, 0));
13913 return ret;
13916 /* Return a location descriptor that designates constant POLY_I. */
13918 static dw_loc_descr_ref
13919 int_loc_descriptor (poly_int64 poly_i)
13921 enum dwarf_location_atom op;
13923 HOST_WIDE_INT i;
13924 if (!poly_i.is_constant (&i))
13926 /* Create location descriptions for the non-constant part and
13927 add any constant offset at the end. */
13928 dw_loc_descr_ref ret = NULL;
13929 HOST_WIDE_INT constant = poly_i.coeffs[0];
13930 for (unsigned int j = 1; j < NUM_POLY_INT_COEFFS; ++j)
13932 HOST_WIDE_INT coeff = poly_i.coeffs[j];
13933 if (coeff != 0)
13935 dw_loc_descr_ref start = ret;
13936 unsigned int factor;
13937 int bias;
13938 unsigned int regno = targetm.dwarf_poly_indeterminate_value
13939 (j, &factor, &bias);
13941 /* Add COEFF * ((REGNO / FACTOR) - BIAS) to the value:
13942 add COEFF * (REGNO / FACTOR) now and subtract
13943 COEFF * BIAS from the final constant part. */
13944 constant -= coeff * bias;
13945 add_loc_descr (&ret, new_reg_loc_descr (regno, 0));
13946 if (coeff % factor == 0)
13947 coeff /= factor;
13948 else
13950 int amount = exact_log2 (factor);
13951 gcc_assert (amount >= 0);
13952 add_loc_descr (&ret, int_loc_descriptor (amount));
13953 add_loc_descr (&ret, new_loc_descr (DW_OP_shr, 0, 0));
13955 if (coeff != 1)
13957 add_loc_descr (&ret, int_loc_descriptor (coeff));
13958 add_loc_descr (&ret, new_loc_descr (DW_OP_mul, 0, 0));
13960 if (start)
13961 add_loc_descr (&ret, new_loc_descr (DW_OP_plus, 0, 0));
13964 loc_descr_plus_const (&ret, constant);
13965 return ret;
13968 /* Pick the smallest representation of a constant, rather than just
13969 defaulting to the LEB encoding. */
13970 if (i >= 0)
13972 int clz = clz_hwi (i);
13973 int ctz = ctz_hwi (i);
13974 if (i <= 31)
13975 op = (enum dwarf_location_atom) (DW_OP_lit0 + i);
13976 else if (i <= 0xff)
13977 op = DW_OP_const1u;
13978 else if (i <= 0xffff)
13979 op = DW_OP_const2u;
13980 else if (clz + ctz >= HOST_BITS_PER_WIDE_INT - 5
13981 && clz + 5 + 255 >= HOST_BITS_PER_WIDE_INT)
13982 /* DW_OP_litX DW_OP_litY DW_OP_shl takes just 3 bytes and
13983 DW_OP_litX DW_OP_const1u Y DW_OP_shl takes just 4 bytes,
13984 while DW_OP_const4u is 5 bytes. */
13985 return int_shift_loc_descriptor (i, HOST_BITS_PER_WIDE_INT - clz - 5);
13986 else if (clz + ctz >= HOST_BITS_PER_WIDE_INT - 8
13987 && clz + 8 + 31 >= HOST_BITS_PER_WIDE_INT)
13988 /* DW_OP_const1u X DW_OP_litY DW_OP_shl takes just 4 bytes,
13989 while DW_OP_const4u is 5 bytes. */
13990 return int_shift_loc_descriptor (i, HOST_BITS_PER_WIDE_INT - clz - 8);
13992 else if (DWARF2_ADDR_SIZE == 4 && i > 0x7fffffff
13993 && size_of_int_loc_descriptor ((HOST_WIDE_INT) (int32_t) i)
13994 <= 4)
13996 /* As i >= 2**31, the double cast above will yield a negative number.
13997 Since wrapping is defined in DWARF expressions we can output big
13998 positive integers as small negative ones, regardless of the size
13999 of host wide ints.
14001 Here, since the evaluator will handle 32-bit values and since i >=
14002 2**31, we know it's going to be interpreted as a negative literal:
14003 store it this way if we can do better than 5 bytes this way. */
14004 return int_loc_descriptor ((HOST_WIDE_INT) (int32_t) i);
14006 else if (HOST_BITS_PER_WIDE_INT == 32 || i <= 0xffffffff)
14007 op = DW_OP_const4u;
14009 /* Past this point, i >= 0x100000000 and thus DW_OP_constu will take at
14010 least 6 bytes: see if we can do better before falling back to it. */
14011 else if (clz + ctz >= HOST_BITS_PER_WIDE_INT - 8
14012 && clz + 8 + 255 >= HOST_BITS_PER_WIDE_INT)
14013 /* DW_OP_const1u X DW_OP_const1u Y DW_OP_shl takes just 5 bytes. */
14014 return int_shift_loc_descriptor (i, HOST_BITS_PER_WIDE_INT - clz - 8);
14015 else if (clz + ctz >= HOST_BITS_PER_WIDE_INT - 16
14016 && clz + 16 + (size_of_uleb128 (i) > 5 ? 255 : 31)
14017 >= HOST_BITS_PER_WIDE_INT)
14018 /* DW_OP_const2u X DW_OP_litY DW_OP_shl takes just 5 bytes,
14019 DW_OP_const2u X DW_OP_const1u Y DW_OP_shl takes 6 bytes. */
14020 return int_shift_loc_descriptor (i, HOST_BITS_PER_WIDE_INT - clz - 16);
14021 else if (clz + ctz >= HOST_BITS_PER_WIDE_INT - 32
14022 && clz + 32 + 31 >= HOST_BITS_PER_WIDE_INT
14023 && size_of_uleb128 (i) > 6)
14024 /* DW_OP_const4u X DW_OP_litY DW_OP_shl takes just 7 bytes. */
14025 return int_shift_loc_descriptor (i, HOST_BITS_PER_WIDE_INT - clz - 32);
14026 else
14027 op = DW_OP_constu;
14029 else
14031 if (i >= -0x80)
14032 op = DW_OP_const1s;
14033 else if (i >= -0x8000)
14034 op = DW_OP_const2s;
14035 else if (HOST_BITS_PER_WIDE_INT == 32 || i >= -0x80000000)
14037 if (size_of_int_loc_descriptor (i) < 5)
14039 dw_loc_descr_ref ret = int_loc_descriptor (-i);
14040 add_loc_descr (&ret, new_loc_descr (DW_OP_neg, 0, 0));
14041 return ret;
14043 op = DW_OP_const4s;
14045 else
14047 if (size_of_int_loc_descriptor (i)
14048 < (unsigned long) 1 + size_of_sleb128 (i))
14050 dw_loc_descr_ref ret = int_loc_descriptor (-i);
14051 add_loc_descr (&ret, new_loc_descr (DW_OP_neg, 0, 0));
14052 return ret;
14054 op = DW_OP_consts;
14058 return new_loc_descr (op, i, 0);
14061 /* Likewise, for unsigned constants. */
14063 static dw_loc_descr_ref
14064 uint_loc_descriptor (unsigned HOST_WIDE_INT i)
14066 const unsigned HOST_WIDE_INT max_int = INTTYPE_MAXIMUM (HOST_WIDE_INT);
14067 const unsigned HOST_WIDE_INT max_uint
14068 = INTTYPE_MAXIMUM (unsigned HOST_WIDE_INT);
14070 /* If possible, use the clever signed constants handling. */
14071 if (i <= max_int)
14072 return int_loc_descriptor ((HOST_WIDE_INT) i);
14074 /* Here, we are left with positive numbers that cannot be represented as
14075 HOST_WIDE_INT, i.e.:
14076 max (HOST_WIDE_INT) < i <= max (unsigned HOST_WIDE_INT)
14078 Using DW_OP_const4/8/./u operation to encode them consumes a lot of bytes
14079 whereas may be better to output a negative integer: thanks to integer
14080 wrapping, we know that:
14081 x = x - 2 ** DWARF2_ADDR_SIZE
14082 = x - 2 * (max (HOST_WIDE_INT) + 1)
14083 So numbers close to max (unsigned HOST_WIDE_INT) could be represented as
14084 small negative integers. Let's try that in cases it will clearly improve
14085 the encoding: there is no gain turning DW_OP_const4u into
14086 DW_OP_const4s. */
14087 if (DWARF2_ADDR_SIZE * 8 == HOST_BITS_PER_WIDE_INT
14088 && ((DWARF2_ADDR_SIZE == 4 && i > max_uint - 0x8000)
14089 || (DWARF2_ADDR_SIZE == 8 && i > max_uint - 0x80000000)))
14091 const unsigned HOST_WIDE_INT first_shift = i - max_int - 1;
14093 /* Now, -1 < first_shift <= max (HOST_WIDE_INT)
14094 i.e. 0 <= first_shift <= max (HOST_WIDE_INT). */
14095 const HOST_WIDE_INT second_shift
14096 = (HOST_WIDE_INT) first_shift - (HOST_WIDE_INT) max_int - 1;
14098 /* So we finally have:
14099 -max (HOST_WIDE_INT) - 1 <= second_shift <= -1.
14100 i.e. min (HOST_WIDE_INT) <= second_shift < 0. */
14101 return int_loc_descriptor (second_shift);
14104 /* Last chance: fallback to a simple constant operation. */
14105 return new_loc_descr
14106 ((HOST_BITS_PER_WIDE_INT == 32 || i <= 0xffffffff)
14107 ? DW_OP_const4u
14108 : DW_OP_const8u,
14109 i, 0);
14112 /* Generate and return a location description that computes the unsigned
14113 comparison of the two stack top entries (a OP b where b is the top-most
14114 entry and a is the second one). The KIND of comparison can be LT_EXPR,
14115 LE_EXPR, GT_EXPR or GE_EXPR. */
14117 static dw_loc_descr_ref
14118 uint_comparison_loc_list (enum tree_code kind)
14120 enum dwarf_location_atom op, flip_op;
14121 dw_loc_descr_ref ret, bra_node, jmp_node, tmp;
14123 switch (kind)
14125 case LT_EXPR:
14126 op = DW_OP_lt;
14127 break;
14128 case LE_EXPR:
14129 op = DW_OP_le;
14130 break;
14131 case GT_EXPR:
14132 op = DW_OP_gt;
14133 break;
14134 case GE_EXPR:
14135 op = DW_OP_ge;
14136 break;
14137 default:
14138 gcc_unreachable ();
14141 bra_node = new_loc_descr (DW_OP_bra, 0, 0);
14142 jmp_node = new_loc_descr (DW_OP_skip, 0, 0);
14144 /* Until DWARFv4, operations all work on signed integers. It is nevertheless
14145 possible to perform unsigned comparisons: we just have to distinguish
14146 three cases:
14148 1. when a and b have the same sign (as signed integers); then we should
14149 return: a OP(signed) b;
14151 2. when a is a negative signed integer while b is a positive one, then a
14152 is a greater unsigned integer than b; likewise when a and b's roles
14153 are flipped.
14155 So first, compare the sign of the two operands. */
14156 ret = new_loc_descr (DW_OP_over, 0, 0);
14157 add_loc_descr (&ret, new_loc_descr (DW_OP_over, 0, 0));
14158 add_loc_descr (&ret, new_loc_descr (DW_OP_xor, 0, 0));
14159 /* If they have different signs (i.e. they have different sign bits), then
14160 the stack top value has now the sign bit set and thus it's smaller than
14161 zero. */
14162 add_loc_descr (&ret, new_loc_descr (DW_OP_lit0, 0, 0));
14163 add_loc_descr (&ret, new_loc_descr (DW_OP_lt, 0, 0));
14164 add_loc_descr (&ret, bra_node);
14166 /* We are in case 1. At this point, we know both operands have the same
14167 sign, to it's safe to use the built-in signed comparison. */
14168 add_loc_descr (&ret, new_loc_descr (op, 0, 0));
14169 add_loc_descr (&ret, jmp_node);
14171 /* We are in case 2. Here, we know both operands do not have the same sign,
14172 so we have to flip the signed comparison. */
14173 flip_op = (kind == LT_EXPR || kind == LE_EXPR) ? DW_OP_gt : DW_OP_lt;
14174 tmp = new_loc_descr (flip_op, 0, 0);
14175 bra_node->dw_loc_oprnd1.val_class = dw_val_class_loc;
14176 bra_node->dw_loc_oprnd1.v.val_loc = tmp;
14177 add_loc_descr (&ret, tmp);
14179 /* This dummy operation is necessary to make the two branches join. */
14180 tmp = new_loc_descr (DW_OP_nop, 0, 0);
14181 jmp_node->dw_loc_oprnd1.val_class = dw_val_class_loc;
14182 jmp_node->dw_loc_oprnd1.v.val_loc = tmp;
14183 add_loc_descr (&ret, tmp);
14185 return ret;
14188 /* Likewise, but takes the location description lists (might be destructive on
14189 them). Return NULL if either is NULL or if concatenation fails. */
14191 static dw_loc_list_ref
14192 loc_list_from_uint_comparison (dw_loc_list_ref left, dw_loc_list_ref right,
14193 enum tree_code kind)
14195 if (left == NULL || right == NULL)
14196 return NULL;
14198 add_loc_list (&left, right);
14199 if (left == NULL)
14200 return NULL;
14202 add_loc_descr_to_each (left, uint_comparison_loc_list (kind));
14203 return left;
14206 /* Return size_of_locs (int_shift_loc_descriptor (i, shift))
14207 without actually allocating it. */
14209 static unsigned long
14210 size_of_int_shift_loc_descriptor (HOST_WIDE_INT i, int shift)
14212 return size_of_int_loc_descriptor (i >> shift)
14213 + size_of_int_loc_descriptor (shift)
14214 + 1;
14217 /* Return size_of_locs (int_loc_descriptor (i)) without
14218 actually allocating it. */
14220 static unsigned long
14221 size_of_int_loc_descriptor (HOST_WIDE_INT i)
14223 unsigned long s;
14225 if (i >= 0)
14227 int clz, ctz;
14228 if (i <= 31)
14229 return 1;
14230 else if (i <= 0xff)
14231 return 2;
14232 else if (i <= 0xffff)
14233 return 3;
14234 clz = clz_hwi (i);
14235 ctz = ctz_hwi (i);
14236 if (clz + ctz >= HOST_BITS_PER_WIDE_INT - 5
14237 && clz + 5 + 255 >= HOST_BITS_PER_WIDE_INT)
14238 return size_of_int_shift_loc_descriptor (i, HOST_BITS_PER_WIDE_INT
14239 - clz - 5);
14240 else if (clz + ctz >= HOST_BITS_PER_WIDE_INT - 8
14241 && clz + 8 + 31 >= HOST_BITS_PER_WIDE_INT)
14242 return size_of_int_shift_loc_descriptor (i, HOST_BITS_PER_WIDE_INT
14243 - clz - 8);
14244 else if (DWARF2_ADDR_SIZE == 4 && i > 0x7fffffff
14245 && size_of_int_loc_descriptor ((HOST_WIDE_INT) (int32_t) i)
14246 <= 4)
14247 return size_of_int_loc_descriptor ((HOST_WIDE_INT) (int32_t) i);
14248 else if (HOST_BITS_PER_WIDE_INT == 32 || i <= 0xffffffff)
14249 return 5;
14250 s = size_of_uleb128 ((unsigned HOST_WIDE_INT) i);
14251 if (clz + ctz >= HOST_BITS_PER_WIDE_INT - 8
14252 && clz + 8 + 255 >= HOST_BITS_PER_WIDE_INT)
14253 return size_of_int_shift_loc_descriptor (i, HOST_BITS_PER_WIDE_INT
14254 - clz - 8);
14255 else if (clz + ctz >= HOST_BITS_PER_WIDE_INT - 16
14256 && clz + 16 + (s > 5 ? 255 : 31) >= HOST_BITS_PER_WIDE_INT)
14257 return size_of_int_shift_loc_descriptor (i, HOST_BITS_PER_WIDE_INT
14258 - clz - 16);
14259 else if (clz + ctz >= HOST_BITS_PER_WIDE_INT - 32
14260 && clz + 32 + 31 >= HOST_BITS_PER_WIDE_INT
14261 && s > 6)
14262 return size_of_int_shift_loc_descriptor (i, HOST_BITS_PER_WIDE_INT
14263 - clz - 32);
14264 else
14265 return 1 + s;
14267 else
14269 if (i >= -0x80)
14270 return 2;
14271 else if (i >= -0x8000)
14272 return 3;
14273 else if (HOST_BITS_PER_WIDE_INT == 32 || i >= -0x80000000)
14275 if (-(unsigned HOST_WIDE_INT) i != (unsigned HOST_WIDE_INT) i)
14277 s = size_of_int_loc_descriptor (-i) + 1;
14278 if (s < 5)
14279 return s;
14281 return 5;
14283 else
14285 unsigned long r = 1 + size_of_sleb128 (i);
14286 if (-(unsigned HOST_WIDE_INT) i != (unsigned HOST_WIDE_INT) i)
14288 s = size_of_int_loc_descriptor (-i) + 1;
14289 if (s < r)
14290 return s;
14292 return r;
14297 /* Return loc description representing "address" of integer value.
14298 This can appear only as toplevel expression. */
14300 static dw_loc_descr_ref
14301 address_of_int_loc_descriptor (int size, HOST_WIDE_INT i)
14303 int litsize;
14304 dw_loc_descr_ref loc_result = NULL;
14306 if (!(dwarf_version >= 4 || !dwarf_strict))
14307 return NULL;
14309 litsize = size_of_int_loc_descriptor (i);
14310 /* Determine if DW_OP_stack_value or DW_OP_implicit_value
14311 is more compact. For DW_OP_stack_value we need:
14312 litsize + 1 (DW_OP_stack_value)
14313 and for DW_OP_implicit_value:
14314 1 (DW_OP_implicit_value) + 1 (length) + size. */
14315 if ((int) DWARF2_ADDR_SIZE >= size && litsize + 1 <= 1 + 1 + size)
14317 loc_result = int_loc_descriptor (i);
14318 add_loc_descr (&loc_result,
14319 new_loc_descr (DW_OP_stack_value, 0, 0));
14320 return loc_result;
14323 loc_result = new_loc_descr (DW_OP_implicit_value,
14324 size, 0);
14325 loc_result->dw_loc_oprnd2.val_class = dw_val_class_const;
14326 loc_result->dw_loc_oprnd2.v.val_int = i;
14327 return loc_result;
14330 /* Return a location descriptor that designates a base+offset location. */
14332 static dw_loc_descr_ref
14333 based_loc_descr (rtx reg, poly_int64 offset,
14334 enum var_init_status initialized)
14336 unsigned int regno;
14337 dw_loc_descr_ref result;
14338 dw_fde_ref fde = cfun->fde;
14340 /* We only use "frame base" when we're sure we're talking about the
14341 post-prologue local stack frame. We do this by *not* running
14342 register elimination until this point, and recognizing the special
14343 argument pointer and soft frame pointer rtx's. */
14344 if (reg == arg_pointer_rtx || reg == frame_pointer_rtx)
14346 rtx elim = (ira_use_lra_p
14347 ? lra_eliminate_regs (reg, VOIDmode, NULL_RTX)
14348 : eliminate_regs (reg, VOIDmode, NULL_RTX));
14350 if (elim != reg)
14352 /* Allow hard frame pointer here even if frame pointer
14353 isn't used since hard frame pointer is encoded with
14354 DW_OP_fbreg which uses the DW_AT_frame_base attribute,
14355 not hard frame pointer directly. */
14356 elim = strip_offset_and_add (elim, &offset);
14357 gcc_assert (elim == hard_frame_pointer_rtx
14358 || elim == stack_pointer_rtx);
14360 /* If drap register is used to align stack, use frame
14361 pointer + offset to access stack variables. If stack
14362 is aligned without drap, use stack pointer + offset to
14363 access stack variables. */
14364 if (crtl->stack_realign_tried
14365 && reg == frame_pointer_rtx)
14367 int base_reg
14368 = DWARF_FRAME_REGNUM ((fde && fde->drap_reg != INVALID_REGNUM)
14369 ? HARD_FRAME_POINTER_REGNUM
14370 : REGNO (elim));
14371 return new_reg_loc_descr (base_reg, offset);
14374 gcc_assert (frame_pointer_fb_offset_valid);
14375 offset += frame_pointer_fb_offset;
14376 HOST_WIDE_INT const_offset;
14377 if (offset.is_constant (&const_offset))
14378 return new_loc_descr (DW_OP_fbreg, const_offset, 0);
14379 else
14381 dw_loc_descr_ref ret = new_loc_descr (DW_OP_fbreg, 0, 0);
14382 loc_descr_plus_const (&ret, offset);
14383 return ret;
14388 regno = REGNO (reg);
14389 #ifdef LEAF_REG_REMAP
14390 if (crtl->uses_only_leaf_regs)
14392 int leaf_reg = LEAF_REG_REMAP (regno);
14393 if (leaf_reg != -1)
14394 regno = (unsigned) leaf_reg;
14396 #endif
14397 regno = DWARF_FRAME_REGNUM (regno);
14399 HOST_WIDE_INT const_offset;
14400 if (!optimize && fde
14401 && (fde->drap_reg == regno || fde->vdrap_reg == regno)
14402 && offset.is_constant (&const_offset))
14404 /* Use cfa+offset to represent the location of arguments passed
14405 on the stack when drap is used to align stack.
14406 Only do this when not optimizing, for optimized code var-tracking
14407 is supposed to track where the arguments live and the register
14408 used as vdrap or drap in some spot might be used for something
14409 else in other part of the routine. */
14410 return new_loc_descr (DW_OP_fbreg, const_offset, 0);
14413 result = new_reg_loc_descr (regno, offset);
14415 if (initialized == VAR_INIT_STATUS_UNINITIALIZED)
14416 add_loc_descr (&result, new_loc_descr (DW_OP_GNU_uninit, 0, 0));
14418 return result;
14421 /* Return true if this RTL expression describes a base+offset calculation. */
14423 static inline int
14424 is_based_loc (const_rtx rtl)
14426 return (GET_CODE (rtl) == PLUS
14427 && ((REG_P (XEXP (rtl, 0))
14428 && REGNO (XEXP (rtl, 0)) < FIRST_PSEUDO_REGISTER
14429 && CONST_INT_P (XEXP (rtl, 1)))));
14432 /* Try to handle TLS MEMs, for which mem_loc_descriptor on XEXP (mem, 0)
14433 failed. */
14435 static dw_loc_descr_ref
14436 tls_mem_loc_descriptor (rtx mem)
14438 tree base;
14439 dw_loc_descr_ref loc_result;
14441 if (MEM_EXPR (mem) == NULL_TREE || !MEM_OFFSET_KNOWN_P (mem))
14442 return NULL;
14444 base = get_base_address (MEM_EXPR (mem));
14445 if (base == NULL
14446 || !VAR_P (base)
14447 || !DECL_THREAD_LOCAL_P (base))
14448 return NULL;
14450 loc_result = loc_descriptor_from_tree (MEM_EXPR (mem), 1, NULL);
14451 if (loc_result == NULL)
14452 return NULL;
14454 if (maybe_ne (MEM_OFFSET (mem), 0))
14455 loc_descr_plus_const (&loc_result, MEM_OFFSET (mem));
14457 return loc_result;
14460 /* Output debug info about reason why we failed to expand expression as dwarf
14461 expression. */
14463 static void
14464 expansion_failed (tree expr, rtx rtl, char const *reason)
14466 if (dump_file && (dump_flags & TDF_DETAILS))
14468 fprintf (dump_file, "Failed to expand as dwarf: ");
14469 if (expr)
14470 print_generic_expr (dump_file, expr, dump_flags);
14471 if (rtl)
14473 fprintf (dump_file, "\n");
14474 print_rtl (dump_file, rtl);
14476 fprintf (dump_file, "\nReason: %s\n", reason);
14480 /* Helper function for const_ok_for_output. */
14482 static bool
14483 const_ok_for_output_1 (rtx rtl)
14485 if (targetm.const_not_ok_for_debug_p (rtl))
14487 if (GET_CODE (rtl) != UNSPEC)
14489 expansion_failed (NULL_TREE, rtl,
14490 "Expression rejected for debug by the backend.\n");
14491 return false;
14494 /* If delegitimize_address couldn't do anything with the UNSPEC, and
14495 the target hook doesn't explicitly allow it in debug info, assume
14496 we can't express it in the debug info. */
14497 /* Don't complain about TLS UNSPECs, those are just too hard to
14498 delegitimize. Note this could be a non-decl SYMBOL_REF such as
14499 one in a constant pool entry, so testing SYMBOL_REF_TLS_MODEL
14500 rather than DECL_THREAD_LOCAL_P is not just an optimization. */
14501 if (flag_checking
14502 && (XVECLEN (rtl, 0) == 0
14503 || GET_CODE (XVECEXP (rtl, 0, 0)) != SYMBOL_REF
14504 || SYMBOL_REF_TLS_MODEL (XVECEXP (rtl, 0, 0)) == TLS_MODEL_NONE))
14505 inform (current_function_decl
14506 ? DECL_SOURCE_LOCATION (current_function_decl)
14507 : UNKNOWN_LOCATION,
14508 #if NUM_UNSPEC_VALUES > 0
14509 "non-delegitimized UNSPEC %s (%d) found in variable location",
14510 ((XINT (rtl, 1) >= 0 && XINT (rtl, 1) < NUM_UNSPEC_VALUES)
14511 ? unspec_strings[XINT (rtl, 1)] : "unknown"),
14512 XINT (rtl, 1));
14513 #else
14514 "non-delegitimized UNSPEC %d found in variable location",
14515 XINT (rtl, 1));
14516 #endif
14517 expansion_failed (NULL_TREE, rtl,
14518 "UNSPEC hasn't been delegitimized.\n");
14519 return false;
14522 if (CONST_POLY_INT_P (rtl))
14523 return false;
14525 /* FIXME: Refer to PR60655. It is possible for simplification
14526 of rtl expressions in var tracking to produce such expressions.
14527 We should really identify / validate expressions
14528 enclosed in CONST that can be handled by assemblers on various
14529 targets and only handle legitimate cases here. */
14530 switch (GET_CODE (rtl))
14532 case SYMBOL_REF:
14533 break;
14534 case NOT:
14535 case NEG:
14536 return false;
14537 case PLUS:
14539 /* Make sure SYMBOL_REFs/UNSPECs are at most in one of the
14540 operands. */
14541 subrtx_var_iterator::array_type array;
14542 bool first = false;
14543 FOR_EACH_SUBRTX_VAR (iter, array, XEXP (rtl, 0), ALL)
14544 if (SYMBOL_REF_P (*iter)
14545 || LABEL_P (*iter)
14546 || GET_CODE (*iter) == UNSPEC)
14548 first = true;
14549 break;
14551 if (!first)
14552 return true;
14553 FOR_EACH_SUBRTX_VAR (iter, array, XEXP (rtl, 1), ALL)
14554 if (SYMBOL_REF_P (*iter)
14555 || LABEL_P (*iter)
14556 || GET_CODE (*iter) == UNSPEC)
14557 return false;
14558 return true;
14560 case MINUS:
14562 /* Disallow negation of SYMBOL_REFs or UNSPECs when they
14563 appear in the second operand of MINUS. */
14564 subrtx_var_iterator::array_type array;
14565 FOR_EACH_SUBRTX_VAR (iter, array, XEXP (rtl, 1), ALL)
14566 if (SYMBOL_REF_P (*iter)
14567 || LABEL_P (*iter)
14568 || GET_CODE (*iter) == UNSPEC)
14569 return false;
14570 return true;
14572 default:
14573 return true;
14576 if (CONSTANT_POOL_ADDRESS_P (rtl))
14578 bool marked;
14579 get_pool_constant_mark (rtl, &marked);
14580 /* If all references to this pool constant were optimized away,
14581 it was not output and thus we can't represent it. */
14582 if (!marked)
14584 expansion_failed (NULL_TREE, rtl,
14585 "Constant was removed from constant pool.\n");
14586 return false;
14590 if (SYMBOL_REF_TLS_MODEL (rtl) != TLS_MODEL_NONE)
14591 return false;
14593 /* Avoid references to external symbols in debug info, on several targets
14594 the linker might even refuse to link when linking a shared library,
14595 and in many other cases the relocations for .debug_info/.debug_loc are
14596 dropped, so the address becomes zero anyway. Hidden symbols, guaranteed
14597 to be defined within the same shared library or executable are fine. */
14598 if (SYMBOL_REF_EXTERNAL_P (rtl))
14600 tree decl = SYMBOL_REF_DECL (rtl);
14602 if (decl == NULL || !targetm.binds_local_p (decl))
14604 expansion_failed (NULL_TREE, rtl,
14605 "Symbol not defined in current TU.\n");
14606 return false;
14610 return true;
14613 /* Return true if constant RTL can be emitted in DW_OP_addr or
14614 DW_AT_const_value. TLS SYMBOL_REFs, external SYMBOL_REFs or
14615 non-marked constant pool SYMBOL_REFs can't be referenced in it. */
14617 static bool
14618 const_ok_for_output (rtx rtl)
14620 if (GET_CODE (rtl) == SYMBOL_REF)
14621 return const_ok_for_output_1 (rtl);
14623 if (GET_CODE (rtl) == CONST)
14625 subrtx_var_iterator::array_type array;
14626 FOR_EACH_SUBRTX_VAR (iter, array, XEXP (rtl, 0), ALL)
14627 if (!const_ok_for_output_1 (*iter))
14628 return false;
14629 return true;
14632 return true;
14635 /* Return a reference to DW_TAG_base_type corresponding to MODE and UNSIGNEDP
14636 if possible, NULL otherwise. */
14638 static dw_die_ref
14639 base_type_for_mode (machine_mode mode, bool unsignedp)
14641 dw_die_ref type_die;
14642 tree type = lang_hooks.types.type_for_mode (mode, unsignedp);
14644 if (type == NULL)
14645 return NULL;
14646 switch (TREE_CODE (type))
14648 case INTEGER_TYPE:
14649 case REAL_TYPE:
14650 break;
14651 default:
14652 return NULL;
14654 type_die = lookup_type_die (type);
14655 if (!type_die)
14656 type_die = modified_type_die (type, TYPE_UNQUALIFIED, false,
14657 comp_unit_die ());
14658 if (type_die == NULL || type_die->die_tag != DW_TAG_base_type)
14659 return NULL;
14660 return type_die;
14663 /* For OP descriptor assumed to be in unsigned MODE, convert it to a unsigned
14664 type matching MODE, or, if MODE is narrower than or as wide as
14665 DWARF2_ADDR_SIZE, untyped. Return NULL if the conversion is not
14666 possible. */
14668 static dw_loc_descr_ref
14669 convert_descriptor_to_mode (scalar_int_mode mode, dw_loc_descr_ref op)
14671 machine_mode outer_mode = mode;
14672 dw_die_ref type_die;
14673 dw_loc_descr_ref cvt;
14675 if (GET_MODE_SIZE (mode) <= DWARF2_ADDR_SIZE)
14677 add_loc_descr (&op, new_loc_descr (dwarf_OP (DW_OP_convert), 0, 0));
14678 return op;
14680 type_die = base_type_for_mode (outer_mode, 1);
14681 if (type_die == NULL)
14682 return NULL;
14683 cvt = new_loc_descr (dwarf_OP (DW_OP_convert), 0, 0);
14684 cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
14685 cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die;
14686 cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
14687 add_loc_descr (&op, cvt);
14688 return op;
14691 /* Return location descriptor for comparison OP with operands OP0 and OP1. */
14693 static dw_loc_descr_ref
14694 compare_loc_descriptor (enum dwarf_location_atom op, dw_loc_descr_ref op0,
14695 dw_loc_descr_ref op1)
14697 dw_loc_descr_ref ret = op0;
14698 add_loc_descr (&ret, op1);
14699 add_loc_descr (&ret, new_loc_descr (op, 0, 0));
14700 if (STORE_FLAG_VALUE != 1)
14702 add_loc_descr (&ret, int_loc_descriptor (STORE_FLAG_VALUE));
14703 add_loc_descr (&ret, new_loc_descr (DW_OP_mul, 0, 0));
14705 return ret;
14708 /* Subroutine of scompare_loc_descriptor for the case in which we're
14709 comparing two scalar integer operands OP0 and OP1 that have mode OP_MODE,
14710 and in which OP_MODE is bigger than DWARF2_ADDR_SIZE. */
14712 static dw_loc_descr_ref
14713 scompare_loc_descriptor_wide (enum dwarf_location_atom op,
14714 scalar_int_mode op_mode,
14715 dw_loc_descr_ref op0, dw_loc_descr_ref op1)
14717 dw_die_ref type_die = base_type_for_mode (op_mode, 0);
14718 dw_loc_descr_ref cvt;
14720 if (type_die == NULL)
14721 return NULL;
14722 cvt = new_loc_descr (dwarf_OP (DW_OP_convert), 0, 0);
14723 cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
14724 cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die;
14725 cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
14726 add_loc_descr (&op0, cvt);
14727 cvt = new_loc_descr (dwarf_OP (DW_OP_convert), 0, 0);
14728 cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
14729 cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die;
14730 cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
14731 add_loc_descr (&op1, cvt);
14732 return compare_loc_descriptor (op, op0, op1);
14735 /* Subroutine of scompare_loc_descriptor for the case in which we're
14736 comparing two scalar integer operands OP0 and OP1 that have mode OP_MODE,
14737 and in which OP_MODE is smaller than DWARF2_ADDR_SIZE. */
14739 static dw_loc_descr_ref
14740 scompare_loc_descriptor_narrow (enum dwarf_location_atom op, rtx rtl,
14741 scalar_int_mode op_mode,
14742 dw_loc_descr_ref op0, dw_loc_descr_ref op1)
14744 int shift = (DWARF2_ADDR_SIZE - GET_MODE_SIZE (op_mode)) * BITS_PER_UNIT;
14745 /* For eq/ne, if the operands are known to be zero-extended,
14746 there is no need to do the fancy shifting up. */
14747 if (op == DW_OP_eq || op == DW_OP_ne)
14749 dw_loc_descr_ref last0, last1;
14750 for (last0 = op0; last0->dw_loc_next != NULL; last0 = last0->dw_loc_next)
14752 for (last1 = op1; last1->dw_loc_next != NULL; last1 = last1->dw_loc_next)
14754 /* deref_size zero extends, and for constants we can check
14755 whether they are zero extended or not. */
14756 if (((last0->dw_loc_opc == DW_OP_deref_size
14757 && last0->dw_loc_oprnd1.v.val_int <= GET_MODE_SIZE (op_mode))
14758 || (CONST_INT_P (XEXP (rtl, 0))
14759 && (unsigned HOST_WIDE_INT) INTVAL (XEXP (rtl, 0))
14760 == (INTVAL (XEXP (rtl, 0)) & GET_MODE_MASK (op_mode))))
14761 && ((last1->dw_loc_opc == DW_OP_deref_size
14762 && last1->dw_loc_oprnd1.v.val_int <= GET_MODE_SIZE (op_mode))
14763 || (CONST_INT_P (XEXP (rtl, 1))
14764 && (unsigned HOST_WIDE_INT) INTVAL (XEXP (rtl, 1))
14765 == (INTVAL (XEXP (rtl, 1)) & GET_MODE_MASK (op_mode)))))
14766 return compare_loc_descriptor (op, op0, op1);
14768 /* EQ/NE comparison against constant in narrower type than
14769 DWARF2_ADDR_SIZE can be performed either as
14770 DW_OP_const1u <shift> DW_OP_shl DW_OP_const* <cst << shift>
14771 DW_OP_{eq,ne}
14773 DW_OP_const*u <mode_mask> DW_OP_and DW_OP_const* <cst & mode_mask>
14774 DW_OP_{eq,ne}. Pick whatever is shorter. */
14775 if (CONST_INT_P (XEXP (rtl, 1))
14776 && GET_MODE_BITSIZE (op_mode) < HOST_BITS_PER_WIDE_INT
14777 && (size_of_int_loc_descriptor (shift) + 1
14778 + size_of_int_loc_descriptor (UINTVAL (XEXP (rtl, 1)) << shift)
14779 >= size_of_int_loc_descriptor (GET_MODE_MASK (op_mode)) + 1
14780 + size_of_int_loc_descriptor (INTVAL (XEXP (rtl, 1))
14781 & GET_MODE_MASK (op_mode))))
14783 add_loc_descr (&op0, int_loc_descriptor (GET_MODE_MASK (op_mode)));
14784 add_loc_descr (&op0, new_loc_descr (DW_OP_and, 0, 0));
14785 op1 = int_loc_descriptor (INTVAL (XEXP (rtl, 1))
14786 & GET_MODE_MASK (op_mode));
14787 return compare_loc_descriptor (op, op0, op1);
14790 add_loc_descr (&op0, int_loc_descriptor (shift));
14791 add_loc_descr (&op0, new_loc_descr (DW_OP_shl, 0, 0));
14792 if (CONST_INT_P (XEXP (rtl, 1)))
14793 op1 = int_loc_descriptor (UINTVAL (XEXP (rtl, 1)) << shift);
14794 else
14796 add_loc_descr (&op1, int_loc_descriptor (shift));
14797 add_loc_descr (&op1, new_loc_descr (DW_OP_shl, 0, 0));
14799 return compare_loc_descriptor (op, op0, op1);
14802 /* Return location descriptor for unsigned comparison OP RTL. */
14804 static dw_loc_descr_ref
14805 scompare_loc_descriptor (enum dwarf_location_atom op, rtx rtl,
14806 machine_mode mem_mode)
14808 machine_mode op_mode = GET_MODE (XEXP (rtl, 0));
14809 dw_loc_descr_ref op0, op1;
14811 if (op_mode == VOIDmode)
14812 op_mode = GET_MODE (XEXP (rtl, 1));
14813 if (op_mode == VOIDmode)
14814 return NULL;
14816 scalar_int_mode int_op_mode;
14817 if (dwarf_strict
14818 && dwarf_version < 5
14819 && (!is_a <scalar_int_mode> (op_mode, &int_op_mode)
14820 || GET_MODE_SIZE (int_op_mode) > DWARF2_ADDR_SIZE))
14821 return NULL;
14823 op0 = mem_loc_descriptor (XEXP (rtl, 0), op_mode, mem_mode,
14824 VAR_INIT_STATUS_INITIALIZED);
14825 op1 = mem_loc_descriptor (XEXP (rtl, 1), op_mode, mem_mode,
14826 VAR_INIT_STATUS_INITIALIZED);
14828 if (op0 == NULL || op1 == NULL)
14829 return NULL;
14831 if (is_a <scalar_int_mode> (op_mode, &int_op_mode))
14833 if (GET_MODE_SIZE (int_op_mode) < DWARF2_ADDR_SIZE)
14834 return scompare_loc_descriptor_narrow (op, rtl, int_op_mode, op0, op1);
14836 if (GET_MODE_SIZE (int_op_mode) > DWARF2_ADDR_SIZE)
14837 return scompare_loc_descriptor_wide (op, int_op_mode, op0, op1);
14839 return compare_loc_descriptor (op, op0, op1);
14842 /* Return location descriptor for unsigned comparison OP RTL. */
14844 static dw_loc_descr_ref
14845 ucompare_loc_descriptor (enum dwarf_location_atom op, rtx rtl,
14846 machine_mode mem_mode)
14848 dw_loc_descr_ref op0, op1;
14850 machine_mode test_op_mode = GET_MODE (XEXP (rtl, 0));
14851 if (test_op_mode == VOIDmode)
14852 test_op_mode = GET_MODE (XEXP (rtl, 1));
14854 scalar_int_mode op_mode;
14855 if (!is_a <scalar_int_mode> (test_op_mode, &op_mode))
14856 return NULL;
14858 if (dwarf_strict
14859 && dwarf_version < 5
14860 && GET_MODE_SIZE (op_mode) > DWARF2_ADDR_SIZE)
14861 return NULL;
14863 op0 = mem_loc_descriptor (XEXP (rtl, 0), op_mode, mem_mode,
14864 VAR_INIT_STATUS_INITIALIZED);
14865 op1 = mem_loc_descriptor (XEXP (rtl, 1), op_mode, mem_mode,
14866 VAR_INIT_STATUS_INITIALIZED);
14868 if (op0 == NULL || op1 == NULL)
14869 return NULL;
14871 if (GET_MODE_SIZE (op_mode) < DWARF2_ADDR_SIZE)
14873 HOST_WIDE_INT mask = GET_MODE_MASK (op_mode);
14874 dw_loc_descr_ref last0, last1;
14875 for (last0 = op0; last0->dw_loc_next != NULL; last0 = last0->dw_loc_next)
14877 for (last1 = op1; last1->dw_loc_next != NULL; last1 = last1->dw_loc_next)
14879 if (CONST_INT_P (XEXP (rtl, 0)))
14880 op0 = int_loc_descriptor (INTVAL (XEXP (rtl, 0)) & mask);
14881 /* deref_size zero extends, so no need to mask it again. */
14882 else if (last0->dw_loc_opc != DW_OP_deref_size
14883 || last0->dw_loc_oprnd1.v.val_int > GET_MODE_SIZE (op_mode))
14885 add_loc_descr (&op0, int_loc_descriptor (mask));
14886 add_loc_descr (&op0, new_loc_descr (DW_OP_and, 0, 0));
14888 if (CONST_INT_P (XEXP (rtl, 1)))
14889 op1 = int_loc_descriptor (INTVAL (XEXP (rtl, 1)) & mask);
14890 /* deref_size zero extends, so no need to mask it again. */
14891 else if (last1->dw_loc_opc != DW_OP_deref_size
14892 || last1->dw_loc_oprnd1.v.val_int > GET_MODE_SIZE (op_mode))
14894 add_loc_descr (&op1, int_loc_descriptor (mask));
14895 add_loc_descr (&op1, new_loc_descr (DW_OP_and, 0, 0));
14898 else if (GET_MODE_SIZE (op_mode) == DWARF2_ADDR_SIZE)
14900 HOST_WIDE_INT bias = 1;
14901 bias <<= (DWARF2_ADDR_SIZE * BITS_PER_UNIT - 1);
14902 add_loc_descr (&op0, new_loc_descr (DW_OP_plus_uconst, bias, 0));
14903 if (CONST_INT_P (XEXP (rtl, 1)))
14904 op1 = int_loc_descriptor ((unsigned HOST_WIDE_INT) bias
14905 + INTVAL (XEXP (rtl, 1)));
14906 else
14907 add_loc_descr (&op1, new_loc_descr (DW_OP_plus_uconst,
14908 bias, 0));
14910 return compare_loc_descriptor (op, op0, op1);
14913 /* Return location descriptor for {U,S}{MIN,MAX}. */
14915 static dw_loc_descr_ref
14916 minmax_loc_descriptor (rtx rtl, machine_mode mode,
14917 machine_mode mem_mode)
14919 enum dwarf_location_atom op;
14920 dw_loc_descr_ref op0, op1, ret;
14921 dw_loc_descr_ref bra_node, drop_node;
14923 scalar_int_mode int_mode;
14924 if (dwarf_strict
14925 && dwarf_version < 5
14926 && (!is_a <scalar_int_mode> (mode, &int_mode)
14927 || GET_MODE_SIZE (int_mode) > DWARF2_ADDR_SIZE))
14928 return NULL;
14930 op0 = mem_loc_descriptor (XEXP (rtl, 0), mode, mem_mode,
14931 VAR_INIT_STATUS_INITIALIZED);
14932 op1 = mem_loc_descriptor (XEXP (rtl, 1), mode, mem_mode,
14933 VAR_INIT_STATUS_INITIALIZED);
14935 if (op0 == NULL || op1 == NULL)
14936 return NULL;
14938 add_loc_descr (&op0, new_loc_descr (DW_OP_dup, 0, 0));
14939 add_loc_descr (&op1, new_loc_descr (DW_OP_swap, 0, 0));
14940 add_loc_descr (&op1, new_loc_descr (DW_OP_over, 0, 0));
14941 if (GET_CODE (rtl) == UMIN || GET_CODE (rtl) == UMAX)
14943 /* Checked by the caller. */
14944 int_mode = as_a <scalar_int_mode> (mode);
14945 if (GET_MODE_SIZE (int_mode) < DWARF2_ADDR_SIZE)
14947 HOST_WIDE_INT mask = GET_MODE_MASK (int_mode);
14948 add_loc_descr (&op0, int_loc_descriptor (mask));
14949 add_loc_descr (&op0, new_loc_descr (DW_OP_and, 0, 0));
14950 add_loc_descr (&op1, int_loc_descriptor (mask));
14951 add_loc_descr (&op1, new_loc_descr (DW_OP_and, 0, 0));
14953 else if (GET_MODE_SIZE (int_mode) == DWARF2_ADDR_SIZE)
14955 HOST_WIDE_INT bias = 1;
14956 bias <<= (DWARF2_ADDR_SIZE * BITS_PER_UNIT - 1);
14957 add_loc_descr (&op0, new_loc_descr (DW_OP_plus_uconst, bias, 0));
14958 add_loc_descr (&op1, new_loc_descr (DW_OP_plus_uconst, bias, 0));
14961 else if (is_a <scalar_int_mode> (mode, &int_mode)
14962 && GET_MODE_SIZE (int_mode) < DWARF2_ADDR_SIZE)
14964 int shift = (DWARF2_ADDR_SIZE - GET_MODE_SIZE (int_mode)) * BITS_PER_UNIT;
14965 add_loc_descr (&op0, int_loc_descriptor (shift));
14966 add_loc_descr (&op0, new_loc_descr (DW_OP_shl, 0, 0));
14967 add_loc_descr (&op1, int_loc_descriptor (shift));
14968 add_loc_descr (&op1, new_loc_descr (DW_OP_shl, 0, 0));
14970 else if (is_a <scalar_int_mode> (mode, &int_mode)
14971 && GET_MODE_SIZE (int_mode) > DWARF2_ADDR_SIZE)
14973 dw_die_ref type_die = base_type_for_mode (int_mode, 0);
14974 dw_loc_descr_ref cvt;
14975 if (type_die == NULL)
14976 return NULL;
14977 cvt = new_loc_descr (dwarf_OP (DW_OP_convert), 0, 0);
14978 cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
14979 cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die;
14980 cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
14981 add_loc_descr (&op0, cvt);
14982 cvt = new_loc_descr (dwarf_OP (DW_OP_convert), 0, 0);
14983 cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
14984 cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die;
14985 cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
14986 add_loc_descr (&op1, cvt);
14989 if (GET_CODE (rtl) == SMIN || GET_CODE (rtl) == UMIN)
14990 op = DW_OP_lt;
14991 else
14992 op = DW_OP_gt;
14993 ret = op0;
14994 add_loc_descr (&ret, op1);
14995 add_loc_descr (&ret, new_loc_descr (op, 0, 0));
14996 bra_node = new_loc_descr (DW_OP_bra, 0, 0);
14997 add_loc_descr (&ret, bra_node);
14998 add_loc_descr (&ret, new_loc_descr (DW_OP_swap, 0, 0));
14999 drop_node = new_loc_descr (DW_OP_drop, 0, 0);
15000 add_loc_descr (&ret, drop_node);
15001 bra_node->dw_loc_oprnd1.val_class = dw_val_class_loc;
15002 bra_node->dw_loc_oprnd1.v.val_loc = drop_node;
15003 if ((GET_CODE (rtl) == SMIN || GET_CODE (rtl) == SMAX)
15004 && is_a <scalar_int_mode> (mode, &int_mode)
15005 && GET_MODE_SIZE (int_mode) > DWARF2_ADDR_SIZE)
15006 ret = convert_descriptor_to_mode (int_mode, ret);
15007 return ret;
15010 /* Helper function for mem_loc_descriptor. Perform OP binary op,
15011 but after converting arguments to type_die, afterwards
15012 convert back to unsigned. */
15014 static dw_loc_descr_ref
15015 typed_binop (enum dwarf_location_atom op, rtx rtl, dw_die_ref type_die,
15016 scalar_int_mode mode, machine_mode mem_mode)
15018 dw_loc_descr_ref cvt, op0, op1;
15020 if (type_die == NULL)
15021 return NULL;
15022 op0 = mem_loc_descriptor (XEXP (rtl, 0), mode, mem_mode,
15023 VAR_INIT_STATUS_INITIALIZED);
15024 op1 = mem_loc_descriptor (XEXP (rtl, 1), mode, mem_mode,
15025 VAR_INIT_STATUS_INITIALIZED);
15026 if (op0 == NULL || op1 == NULL)
15027 return NULL;
15028 cvt = new_loc_descr (dwarf_OP (DW_OP_convert), 0, 0);
15029 cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
15030 cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die;
15031 cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
15032 add_loc_descr (&op0, cvt);
15033 cvt = new_loc_descr (dwarf_OP (DW_OP_convert), 0, 0);
15034 cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
15035 cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die;
15036 cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
15037 add_loc_descr (&op1, cvt);
15038 add_loc_descr (&op0, op1);
15039 add_loc_descr (&op0, new_loc_descr (op, 0, 0));
15040 return convert_descriptor_to_mode (mode, op0);
15043 /* CLZ (where constV is CLZ_DEFINED_VALUE_AT_ZERO computed value,
15044 const0 is DW_OP_lit0 or corresponding typed constant,
15045 const1 is DW_OP_lit1 or corresponding typed constant
15046 and constMSB is constant with just the MSB bit set
15047 for the mode):
15048 DW_OP_dup DW_OP_bra <L1> DW_OP_drop constV DW_OP_skip <L4>
15049 L1: const0 DW_OP_swap
15050 L2: DW_OP_dup constMSB DW_OP_and DW_OP_bra <L3> const1 DW_OP_shl
15051 DW_OP_swap DW_OP_plus_uconst <1> DW_OP_swap DW_OP_skip <L2>
15052 L3: DW_OP_drop
15053 L4: DW_OP_nop
15055 CTZ is similar:
15056 DW_OP_dup DW_OP_bra <L1> DW_OP_drop constV DW_OP_skip <L4>
15057 L1: const0 DW_OP_swap
15058 L2: DW_OP_dup const1 DW_OP_and DW_OP_bra <L3> const1 DW_OP_shr
15059 DW_OP_swap DW_OP_plus_uconst <1> DW_OP_swap DW_OP_skip <L2>
15060 L3: DW_OP_drop
15061 L4: DW_OP_nop
15063 FFS is similar:
15064 DW_OP_dup DW_OP_bra <L1> DW_OP_drop const0 DW_OP_skip <L4>
15065 L1: const1 DW_OP_swap
15066 L2: DW_OP_dup const1 DW_OP_and DW_OP_bra <L3> const1 DW_OP_shr
15067 DW_OP_swap DW_OP_plus_uconst <1> DW_OP_swap DW_OP_skip <L2>
15068 L3: DW_OP_drop
15069 L4: DW_OP_nop */
15071 static dw_loc_descr_ref
15072 clz_loc_descriptor (rtx rtl, scalar_int_mode mode,
15073 machine_mode mem_mode)
15075 dw_loc_descr_ref op0, ret, tmp;
15076 HOST_WIDE_INT valv;
15077 dw_loc_descr_ref l1jump, l1label;
15078 dw_loc_descr_ref l2jump, l2label;
15079 dw_loc_descr_ref l3jump, l3label;
15080 dw_loc_descr_ref l4jump, l4label;
15081 rtx msb;
15083 if (GET_MODE (XEXP (rtl, 0)) != mode)
15084 return NULL;
15086 op0 = mem_loc_descriptor (XEXP (rtl, 0), mode, mem_mode,
15087 VAR_INIT_STATUS_INITIALIZED);
15088 if (op0 == NULL)
15089 return NULL;
15090 ret = op0;
15091 if (GET_CODE (rtl) == CLZ)
15093 if (!CLZ_DEFINED_VALUE_AT_ZERO (mode, valv))
15094 valv = GET_MODE_BITSIZE (mode);
15096 else if (GET_CODE (rtl) == FFS)
15097 valv = 0;
15098 else if (!CTZ_DEFINED_VALUE_AT_ZERO (mode, valv))
15099 valv = GET_MODE_BITSIZE (mode);
15100 add_loc_descr (&ret, new_loc_descr (DW_OP_dup, 0, 0));
15101 l1jump = new_loc_descr (DW_OP_bra, 0, 0);
15102 add_loc_descr (&ret, l1jump);
15103 add_loc_descr (&ret, new_loc_descr (DW_OP_drop, 0, 0));
15104 tmp = mem_loc_descriptor (GEN_INT (valv), mode, mem_mode,
15105 VAR_INIT_STATUS_INITIALIZED);
15106 if (tmp == NULL)
15107 return NULL;
15108 add_loc_descr (&ret, tmp);
15109 l4jump = new_loc_descr (DW_OP_skip, 0, 0);
15110 add_loc_descr (&ret, l4jump);
15111 l1label = mem_loc_descriptor (GET_CODE (rtl) == FFS
15112 ? const1_rtx : const0_rtx,
15113 mode, mem_mode,
15114 VAR_INIT_STATUS_INITIALIZED);
15115 if (l1label == NULL)
15116 return NULL;
15117 add_loc_descr (&ret, l1label);
15118 add_loc_descr (&ret, new_loc_descr (DW_OP_swap, 0, 0));
15119 l2label = new_loc_descr (DW_OP_dup, 0, 0);
15120 add_loc_descr (&ret, l2label);
15121 if (GET_CODE (rtl) != CLZ)
15122 msb = const1_rtx;
15123 else if (GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT)
15124 msb = GEN_INT (HOST_WIDE_INT_1U
15125 << (GET_MODE_BITSIZE (mode) - 1));
15126 else
15127 msb = immed_wide_int_const
15128 (wi::set_bit_in_zero (GET_MODE_PRECISION (mode) - 1,
15129 GET_MODE_PRECISION (mode)), mode);
15130 if (GET_CODE (msb) == CONST_INT && INTVAL (msb) < 0)
15131 tmp = new_loc_descr (HOST_BITS_PER_WIDE_INT == 32
15132 ? DW_OP_const4u : HOST_BITS_PER_WIDE_INT == 64
15133 ? DW_OP_const8u : DW_OP_constu, INTVAL (msb), 0);
15134 else
15135 tmp = mem_loc_descriptor (msb, mode, mem_mode,
15136 VAR_INIT_STATUS_INITIALIZED);
15137 if (tmp == NULL)
15138 return NULL;
15139 add_loc_descr (&ret, tmp);
15140 add_loc_descr (&ret, new_loc_descr (DW_OP_and, 0, 0));
15141 l3jump = new_loc_descr (DW_OP_bra, 0, 0);
15142 add_loc_descr (&ret, l3jump);
15143 tmp = mem_loc_descriptor (const1_rtx, mode, mem_mode,
15144 VAR_INIT_STATUS_INITIALIZED);
15145 if (tmp == NULL)
15146 return NULL;
15147 add_loc_descr (&ret, tmp);
15148 add_loc_descr (&ret, new_loc_descr (GET_CODE (rtl) == CLZ
15149 ? DW_OP_shl : DW_OP_shr, 0, 0));
15150 add_loc_descr (&ret, new_loc_descr (DW_OP_swap, 0, 0));
15151 add_loc_descr (&ret, new_loc_descr (DW_OP_plus_uconst, 1, 0));
15152 add_loc_descr (&ret, new_loc_descr (DW_OP_swap, 0, 0));
15153 l2jump = new_loc_descr (DW_OP_skip, 0, 0);
15154 add_loc_descr (&ret, l2jump);
15155 l3label = new_loc_descr (DW_OP_drop, 0, 0);
15156 add_loc_descr (&ret, l3label);
15157 l4label = new_loc_descr (DW_OP_nop, 0, 0);
15158 add_loc_descr (&ret, l4label);
15159 l1jump->dw_loc_oprnd1.val_class = dw_val_class_loc;
15160 l1jump->dw_loc_oprnd1.v.val_loc = l1label;
15161 l2jump->dw_loc_oprnd1.val_class = dw_val_class_loc;
15162 l2jump->dw_loc_oprnd1.v.val_loc = l2label;
15163 l3jump->dw_loc_oprnd1.val_class = dw_val_class_loc;
15164 l3jump->dw_loc_oprnd1.v.val_loc = l3label;
15165 l4jump->dw_loc_oprnd1.val_class = dw_val_class_loc;
15166 l4jump->dw_loc_oprnd1.v.val_loc = l4label;
15167 return ret;
15170 /* POPCOUNT (const0 is DW_OP_lit0 or corresponding typed constant,
15171 const1 is DW_OP_lit1 or corresponding typed constant):
15172 const0 DW_OP_swap
15173 L1: DW_OP_dup DW_OP_bra <L2> DW_OP_dup DW_OP_rot const1 DW_OP_and
15174 DW_OP_plus DW_OP_swap const1 DW_OP_shr DW_OP_skip <L1>
15175 L2: DW_OP_drop
15177 PARITY is similar:
15178 L1: DW_OP_dup DW_OP_bra <L2> DW_OP_dup DW_OP_rot const1 DW_OP_and
15179 DW_OP_xor DW_OP_swap const1 DW_OP_shr DW_OP_skip <L1>
15180 L2: DW_OP_drop */
15182 static dw_loc_descr_ref
15183 popcount_loc_descriptor (rtx rtl, scalar_int_mode mode,
15184 machine_mode mem_mode)
15186 dw_loc_descr_ref op0, ret, tmp;
15187 dw_loc_descr_ref l1jump, l1label;
15188 dw_loc_descr_ref l2jump, l2label;
15190 if (GET_MODE (XEXP (rtl, 0)) != mode)
15191 return NULL;
15193 op0 = mem_loc_descriptor (XEXP (rtl, 0), mode, mem_mode,
15194 VAR_INIT_STATUS_INITIALIZED);
15195 if (op0 == NULL)
15196 return NULL;
15197 ret = op0;
15198 tmp = mem_loc_descriptor (const0_rtx, mode, mem_mode,
15199 VAR_INIT_STATUS_INITIALIZED);
15200 if (tmp == NULL)
15201 return NULL;
15202 add_loc_descr (&ret, tmp);
15203 add_loc_descr (&ret, new_loc_descr (DW_OP_swap, 0, 0));
15204 l1label = new_loc_descr (DW_OP_dup, 0, 0);
15205 add_loc_descr (&ret, l1label);
15206 l2jump = new_loc_descr (DW_OP_bra, 0, 0);
15207 add_loc_descr (&ret, l2jump);
15208 add_loc_descr (&ret, new_loc_descr (DW_OP_dup, 0, 0));
15209 add_loc_descr (&ret, new_loc_descr (DW_OP_rot, 0, 0));
15210 tmp = mem_loc_descriptor (const1_rtx, mode, mem_mode,
15211 VAR_INIT_STATUS_INITIALIZED);
15212 if (tmp == NULL)
15213 return NULL;
15214 add_loc_descr (&ret, tmp);
15215 add_loc_descr (&ret, new_loc_descr (DW_OP_and, 0, 0));
15216 add_loc_descr (&ret, new_loc_descr (GET_CODE (rtl) == POPCOUNT
15217 ? DW_OP_plus : DW_OP_xor, 0, 0));
15218 add_loc_descr (&ret, new_loc_descr (DW_OP_swap, 0, 0));
15219 tmp = mem_loc_descriptor (const1_rtx, mode, mem_mode,
15220 VAR_INIT_STATUS_INITIALIZED);
15221 add_loc_descr (&ret, tmp);
15222 add_loc_descr (&ret, new_loc_descr (DW_OP_shr, 0, 0));
15223 l1jump = new_loc_descr (DW_OP_skip, 0, 0);
15224 add_loc_descr (&ret, l1jump);
15225 l2label = new_loc_descr (DW_OP_drop, 0, 0);
15226 add_loc_descr (&ret, l2label);
15227 l1jump->dw_loc_oprnd1.val_class = dw_val_class_loc;
15228 l1jump->dw_loc_oprnd1.v.val_loc = l1label;
15229 l2jump->dw_loc_oprnd1.val_class = dw_val_class_loc;
15230 l2jump->dw_loc_oprnd1.v.val_loc = l2label;
15231 return ret;
15234 /* BSWAP (constS is initial shift count, either 56 or 24):
15235 constS const0
15236 L1: DW_OP_pick <2> constS DW_OP_pick <3> DW_OP_minus DW_OP_shr
15237 const255 DW_OP_and DW_OP_pick <2> DW_OP_shl DW_OP_or
15238 DW_OP_swap DW_OP_dup const0 DW_OP_eq DW_OP_bra <L2> const8
15239 DW_OP_minus DW_OP_swap DW_OP_skip <L1>
15240 L2: DW_OP_drop DW_OP_swap DW_OP_drop */
15242 static dw_loc_descr_ref
15243 bswap_loc_descriptor (rtx rtl, scalar_int_mode mode,
15244 machine_mode mem_mode)
15246 dw_loc_descr_ref op0, ret, tmp;
15247 dw_loc_descr_ref l1jump, l1label;
15248 dw_loc_descr_ref l2jump, l2label;
15250 if (BITS_PER_UNIT != 8
15251 || (GET_MODE_BITSIZE (mode) != 32
15252 && GET_MODE_BITSIZE (mode) != 64))
15253 return NULL;
15255 op0 = mem_loc_descriptor (XEXP (rtl, 0), mode, mem_mode,
15256 VAR_INIT_STATUS_INITIALIZED);
15257 if (op0 == NULL)
15258 return NULL;
15260 ret = op0;
15261 tmp = mem_loc_descriptor (GEN_INT (GET_MODE_BITSIZE (mode) - 8),
15262 mode, mem_mode,
15263 VAR_INIT_STATUS_INITIALIZED);
15264 if (tmp == NULL)
15265 return NULL;
15266 add_loc_descr (&ret, tmp);
15267 tmp = mem_loc_descriptor (const0_rtx, mode, mem_mode,
15268 VAR_INIT_STATUS_INITIALIZED);
15269 if (tmp == NULL)
15270 return NULL;
15271 add_loc_descr (&ret, tmp);
15272 l1label = new_loc_descr (DW_OP_pick, 2, 0);
15273 add_loc_descr (&ret, l1label);
15274 tmp = mem_loc_descriptor (GEN_INT (GET_MODE_BITSIZE (mode) - 8),
15275 mode, mem_mode,
15276 VAR_INIT_STATUS_INITIALIZED);
15277 add_loc_descr (&ret, tmp);
15278 add_loc_descr (&ret, new_loc_descr (DW_OP_pick, 3, 0));
15279 add_loc_descr (&ret, new_loc_descr (DW_OP_minus, 0, 0));
15280 add_loc_descr (&ret, new_loc_descr (DW_OP_shr, 0, 0));
15281 tmp = mem_loc_descriptor (GEN_INT (255), mode, mem_mode,
15282 VAR_INIT_STATUS_INITIALIZED);
15283 if (tmp == NULL)
15284 return NULL;
15285 add_loc_descr (&ret, tmp);
15286 add_loc_descr (&ret, new_loc_descr (DW_OP_and, 0, 0));
15287 add_loc_descr (&ret, new_loc_descr (DW_OP_pick, 2, 0));
15288 add_loc_descr (&ret, new_loc_descr (DW_OP_shl, 0, 0));
15289 add_loc_descr (&ret, new_loc_descr (DW_OP_or, 0, 0));
15290 add_loc_descr (&ret, new_loc_descr (DW_OP_swap, 0, 0));
15291 add_loc_descr (&ret, new_loc_descr (DW_OP_dup, 0, 0));
15292 tmp = mem_loc_descriptor (const0_rtx, mode, mem_mode,
15293 VAR_INIT_STATUS_INITIALIZED);
15294 add_loc_descr (&ret, tmp);
15295 add_loc_descr (&ret, new_loc_descr (DW_OP_eq, 0, 0));
15296 l2jump = new_loc_descr (DW_OP_bra, 0, 0);
15297 add_loc_descr (&ret, l2jump);
15298 tmp = mem_loc_descriptor (GEN_INT (8), mode, mem_mode,
15299 VAR_INIT_STATUS_INITIALIZED);
15300 add_loc_descr (&ret, tmp);
15301 add_loc_descr (&ret, new_loc_descr (DW_OP_minus, 0, 0));
15302 add_loc_descr (&ret, new_loc_descr (DW_OP_swap, 0, 0));
15303 l1jump = new_loc_descr (DW_OP_skip, 0, 0);
15304 add_loc_descr (&ret, l1jump);
15305 l2label = new_loc_descr (DW_OP_drop, 0, 0);
15306 add_loc_descr (&ret, l2label);
15307 add_loc_descr (&ret, new_loc_descr (DW_OP_swap, 0, 0));
15308 add_loc_descr (&ret, new_loc_descr (DW_OP_drop, 0, 0));
15309 l1jump->dw_loc_oprnd1.val_class = dw_val_class_loc;
15310 l1jump->dw_loc_oprnd1.v.val_loc = l1label;
15311 l2jump->dw_loc_oprnd1.val_class = dw_val_class_loc;
15312 l2jump->dw_loc_oprnd1.v.val_loc = l2label;
15313 return ret;
15316 /* ROTATE (constMASK is mode mask, BITSIZE is bitsize of mode):
15317 DW_OP_over DW_OP_over DW_OP_shl [ constMASK DW_OP_and ] DW_OP_rot
15318 [ DW_OP_swap constMASK DW_OP_and DW_OP_swap ] DW_OP_neg
15319 DW_OP_plus_uconst <BITSIZE> DW_OP_shr DW_OP_or
15321 ROTATERT is similar:
15322 DW_OP_over DW_OP_over DW_OP_neg DW_OP_plus_uconst <BITSIZE>
15323 DW_OP_shl [ constMASK DW_OP_and ] DW_OP_rot
15324 [ DW_OP_swap constMASK DW_OP_and DW_OP_swap ] DW_OP_shr DW_OP_or */
15326 static dw_loc_descr_ref
15327 rotate_loc_descriptor (rtx rtl, scalar_int_mode mode,
15328 machine_mode mem_mode)
15330 rtx rtlop1 = XEXP (rtl, 1);
15331 dw_loc_descr_ref op0, op1, ret, mask[2] = { NULL, NULL };
15332 int i;
15334 if (is_narrower_int_mode (GET_MODE (rtlop1), mode))
15335 rtlop1 = gen_rtx_ZERO_EXTEND (mode, rtlop1);
15336 op0 = mem_loc_descriptor (XEXP (rtl, 0), mode, mem_mode,
15337 VAR_INIT_STATUS_INITIALIZED);
15338 op1 = mem_loc_descriptor (rtlop1, mode, mem_mode,
15339 VAR_INIT_STATUS_INITIALIZED);
15340 if (op0 == NULL || op1 == NULL)
15341 return NULL;
15342 if (GET_MODE_SIZE (mode) < DWARF2_ADDR_SIZE)
15343 for (i = 0; i < 2; i++)
15345 if (GET_MODE_BITSIZE (mode) < HOST_BITS_PER_WIDE_INT)
15346 mask[i] = mem_loc_descriptor (GEN_INT (GET_MODE_MASK (mode)),
15347 mode, mem_mode,
15348 VAR_INIT_STATUS_INITIALIZED);
15349 else if (GET_MODE_BITSIZE (mode) == HOST_BITS_PER_WIDE_INT)
15350 mask[i] = new_loc_descr (HOST_BITS_PER_WIDE_INT == 32
15351 ? DW_OP_const4u
15352 : HOST_BITS_PER_WIDE_INT == 64
15353 ? DW_OP_const8u : DW_OP_constu,
15354 GET_MODE_MASK (mode), 0);
15355 else
15356 mask[i] = NULL;
15357 if (mask[i] == NULL)
15358 return NULL;
15359 add_loc_descr (&mask[i], new_loc_descr (DW_OP_and, 0, 0));
15361 ret = op0;
15362 add_loc_descr (&ret, op1);
15363 add_loc_descr (&ret, new_loc_descr (DW_OP_over, 0, 0));
15364 add_loc_descr (&ret, new_loc_descr (DW_OP_over, 0, 0));
15365 if (GET_CODE (rtl) == ROTATERT)
15367 add_loc_descr (&ret, new_loc_descr (DW_OP_neg, 0, 0));
15368 add_loc_descr (&ret, new_loc_descr (DW_OP_plus_uconst,
15369 GET_MODE_BITSIZE (mode), 0));
15371 add_loc_descr (&ret, new_loc_descr (DW_OP_shl, 0, 0));
15372 if (mask[0] != NULL)
15373 add_loc_descr (&ret, mask[0]);
15374 add_loc_descr (&ret, new_loc_descr (DW_OP_rot, 0, 0));
15375 if (mask[1] != NULL)
15377 add_loc_descr (&ret, new_loc_descr (DW_OP_swap, 0, 0));
15378 add_loc_descr (&ret, mask[1]);
15379 add_loc_descr (&ret, new_loc_descr (DW_OP_swap, 0, 0));
15381 if (GET_CODE (rtl) == ROTATE)
15383 add_loc_descr (&ret, new_loc_descr (DW_OP_neg, 0, 0));
15384 add_loc_descr (&ret, new_loc_descr (DW_OP_plus_uconst,
15385 GET_MODE_BITSIZE (mode), 0));
15387 add_loc_descr (&ret, new_loc_descr (DW_OP_shr, 0, 0));
15388 add_loc_descr (&ret, new_loc_descr (DW_OP_or, 0, 0));
15389 return ret;
15392 /* Helper function for mem_loc_descriptor. Return DW_OP_GNU_parameter_ref
15393 for DEBUG_PARAMETER_REF RTL. */
15395 static dw_loc_descr_ref
15396 parameter_ref_descriptor (rtx rtl)
15398 dw_loc_descr_ref ret;
15399 dw_die_ref ref;
15401 if (dwarf_strict)
15402 return NULL;
15403 gcc_assert (TREE_CODE (DEBUG_PARAMETER_REF_DECL (rtl)) == PARM_DECL);
15404 /* With LTO during LTRANS we get the late DIE that refers to the early
15405 DIE, thus we add another indirection here. This seems to confuse
15406 gdb enough to make gcc.dg/guality/pr68860-1.c FAIL with LTO. */
15407 ref = lookup_decl_die (DEBUG_PARAMETER_REF_DECL (rtl));
15408 ret = new_loc_descr (DW_OP_GNU_parameter_ref, 0, 0);
15409 if (ref)
15411 ret->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
15412 ret->dw_loc_oprnd1.v.val_die_ref.die = ref;
15413 ret->dw_loc_oprnd1.v.val_die_ref.external = 0;
15415 else
15417 ret->dw_loc_oprnd1.val_class = dw_val_class_decl_ref;
15418 ret->dw_loc_oprnd1.v.val_decl_ref = DEBUG_PARAMETER_REF_DECL (rtl);
15420 return ret;
15423 /* The following routine converts the RTL for a variable or parameter
15424 (resident in memory) into an equivalent Dwarf representation of a
15425 mechanism for getting the address of that same variable onto the top of a
15426 hypothetical "address evaluation" stack.
15428 When creating memory location descriptors, we are effectively transforming
15429 the RTL for a memory-resident object into its Dwarf postfix expression
15430 equivalent. This routine recursively descends an RTL tree, turning
15431 it into Dwarf postfix code as it goes.
15433 MODE is the mode that should be assumed for the rtl if it is VOIDmode.
15435 MEM_MODE is the mode of the memory reference, needed to handle some
15436 autoincrement addressing modes.
15438 Return 0 if we can't represent the location. */
15440 dw_loc_descr_ref
15441 mem_loc_descriptor (rtx rtl, machine_mode mode,
15442 machine_mode mem_mode,
15443 enum var_init_status initialized)
15445 dw_loc_descr_ref mem_loc_result = NULL;
15446 enum dwarf_location_atom op;
15447 dw_loc_descr_ref op0, op1;
15448 rtx inner = NULL_RTX;
15449 poly_int64 offset;
15451 if (mode == VOIDmode)
15452 mode = GET_MODE (rtl);
15454 /* Note that for a dynamically sized array, the location we will generate a
15455 description of here will be the lowest numbered location which is
15456 actually within the array. That's *not* necessarily the same as the
15457 zeroth element of the array. */
15459 rtl = targetm.delegitimize_address (rtl);
15461 if (mode != GET_MODE (rtl) && GET_MODE (rtl) != VOIDmode)
15462 return NULL;
15464 scalar_int_mode int_mode, inner_mode, op1_mode;
15465 switch (GET_CODE (rtl))
15467 case POST_INC:
15468 case POST_DEC:
15469 case POST_MODIFY:
15470 return mem_loc_descriptor (XEXP (rtl, 0), mode, mem_mode, initialized);
15472 case SUBREG:
15473 /* The case of a subreg may arise when we have a local (register)
15474 variable or a formal (register) parameter which doesn't quite fill
15475 up an entire register. For now, just assume that it is
15476 legitimate to make the Dwarf info refer to the whole register which
15477 contains the given subreg. */
15478 if (!subreg_lowpart_p (rtl))
15479 break;
15480 inner = SUBREG_REG (rtl);
15481 /* FALLTHRU */
15482 case TRUNCATE:
15483 if (inner == NULL_RTX)
15484 inner = XEXP (rtl, 0);
15485 if (is_a <scalar_int_mode> (mode, &int_mode)
15486 && is_a <scalar_int_mode> (GET_MODE (inner), &inner_mode)
15487 && (GET_MODE_SIZE (int_mode) <= DWARF2_ADDR_SIZE
15488 #ifdef POINTERS_EXTEND_UNSIGNED
15489 || (int_mode == Pmode && mem_mode != VOIDmode)
15490 #endif
15492 && GET_MODE_SIZE (inner_mode) <= DWARF2_ADDR_SIZE)
15494 mem_loc_result = mem_loc_descriptor (inner,
15495 inner_mode,
15496 mem_mode, initialized);
15497 break;
15499 if (dwarf_strict && dwarf_version < 5)
15500 break;
15501 if (is_a <scalar_int_mode> (mode, &int_mode)
15502 && is_a <scalar_int_mode> (GET_MODE (inner), &inner_mode)
15503 ? GET_MODE_SIZE (int_mode) <= GET_MODE_SIZE (inner_mode)
15504 : known_eq (GET_MODE_SIZE (mode), GET_MODE_SIZE (GET_MODE (inner))))
15506 dw_die_ref type_die;
15507 dw_loc_descr_ref cvt;
15509 mem_loc_result = mem_loc_descriptor (inner,
15510 GET_MODE (inner),
15511 mem_mode, initialized);
15512 if (mem_loc_result == NULL)
15513 break;
15514 type_die = base_type_for_mode (mode, SCALAR_INT_MODE_P (mode));
15515 if (type_die == NULL)
15517 mem_loc_result = NULL;
15518 break;
15520 if (maybe_ne (GET_MODE_SIZE (mode), GET_MODE_SIZE (GET_MODE (inner))))
15521 cvt = new_loc_descr (dwarf_OP (DW_OP_convert), 0, 0);
15522 else
15523 cvt = new_loc_descr (dwarf_OP (DW_OP_reinterpret), 0, 0);
15524 cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
15525 cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die;
15526 cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
15527 add_loc_descr (&mem_loc_result, cvt);
15528 if (is_a <scalar_int_mode> (mode, &int_mode)
15529 && GET_MODE_SIZE (int_mode) <= DWARF2_ADDR_SIZE)
15531 /* Convert it to untyped afterwards. */
15532 cvt = new_loc_descr (dwarf_OP (DW_OP_convert), 0, 0);
15533 add_loc_descr (&mem_loc_result, cvt);
15536 break;
15538 case REG:
15539 if (!is_a <scalar_int_mode> (mode, &int_mode)
15540 || (GET_MODE_SIZE (int_mode) > DWARF2_ADDR_SIZE
15541 && rtl != arg_pointer_rtx
15542 && rtl != frame_pointer_rtx
15543 #ifdef POINTERS_EXTEND_UNSIGNED
15544 && (int_mode != Pmode || mem_mode == VOIDmode)
15545 #endif
15548 dw_die_ref type_die;
15549 unsigned int dbx_regnum;
15551 if (dwarf_strict && dwarf_version < 5)
15552 break;
15553 if (REGNO (rtl) >= FIRST_PSEUDO_REGISTER)
15554 break;
15555 type_die = base_type_for_mode (mode, SCALAR_INT_MODE_P (mode));
15556 if (type_die == NULL)
15557 break;
15559 dbx_regnum = dbx_reg_number (rtl);
15560 if (dbx_regnum == IGNORED_DWARF_REGNUM)
15561 break;
15562 mem_loc_result = new_loc_descr (dwarf_OP (DW_OP_regval_type),
15563 dbx_regnum, 0);
15564 mem_loc_result->dw_loc_oprnd2.val_class = dw_val_class_die_ref;
15565 mem_loc_result->dw_loc_oprnd2.v.val_die_ref.die = type_die;
15566 mem_loc_result->dw_loc_oprnd2.v.val_die_ref.external = 0;
15567 break;
15569 /* Whenever a register number forms a part of the description of the
15570 method for calculating the (dynamic) address of a memory resident
15571 object, DWARF rules require the register number be referred to as
15572 a "base register". This distinction is not based in any way upon
15573 what category of register the hardware believes the given register
15574 belongs to. This is strictly DWARF terminology we're dealing with
15575 here. Note that in cases where the location of a memory-resident
15576 data object could be expressed as: OP_ADD (OP_BASEREG (basereg),
15577 OP_CONST (0)) the actual DWARF location descriptor that we generate
15578 may just be OP_BASEREG (basereg). This may look deceptively like
15579 the object in question was allocated to a register (rather than in
15580 memory) so DWARF consumers need to be aware of the subtle
15581 distinction between OP_REG and OP_BASEREG. */
15582 if (REGNO (rtl) < FIRST_PSEUDO_REGISTER)
15583 mem_loc_result = based_loc_descr (rtl, 0, VAR_INIT_STATUS_INITIALIZED);
15584 else if (stack_realign_drap
15585 && crtl->drap_reg
15586 && crtl->args.internal_arg_pointer == rtl
15587 && REGNO (crtl->drap_reg) < FIRST_PSEUDO_REGISTER)
15589 /* If RTL is internal_arg_pointer, which has been optimized
15590 out, use DRAP instead. */
15591 mem_loc_result = based_loc_descr (crtl->drap_reg, 0,
15592 VAR_INIT_STATUS_INITIALIZED);
15594 break;
15596 case SIGN_EXTEND:
15597 case ZERO_EXTEND:
15598 if (!is_a <scalar_int_mode> (mode, &int_mode)
15599 || !is_a <scalar_int_mode> (GET_MODE (XEXP (rtl, 0)), &inner_mode))
15600 break;
15601 op0 = mem_loc_descriptor (XEXP (rtl, 0), inner_mode,
15602 mem_mode, VAR_INIT_STATUS_INITIALIZED);
15603 if (op0 == 0)
15604 break;
15605 else if (GET_CODE (rtl) == ZERO_EXTEND
15606 && GET_MODE_SIZE (int_mode) <= DWARF2_ADDR_SIZE
15607 && GET_MODE_BITSIZE (inner_mode) < HOST_BITS_PER_WIDE_INT
15608 /* If DW_OP_const{1,2,4}u won't be used, it is shorter
15609 to expand zero extend as two shifts instead of
15610 masking. */
15611 && GET_MODE_SIZE (inner_mode) <= 4)
15613 mem_loc_result = op0;
15614 add_loc_descr (&mem_loc_result,
15615 int_loc_descriptor (GET_MODE_MASK (inner_mode)));
15616 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_and, 0, 0));
15618 else if (GET_MODE_SIZE (int_mode) <= DWARF2_ADDR_SIZE)
15620 int shift = DWARF2_ADDR_SIZE - GET_MODE_SIZE (inner_mode);
15621 shift *= BITS_PER_UNIT;
15622 if (GET_CODE (rtl) == SIGN_EXTEND)
15623 op = DW_OP_shra;
15624 else
15625 op = DW_OP_shr;
15626 mem_loc_result = op0;
15627 add_loc_descr (&mem_loc_result, int_loc_descriptor (shift));
15628 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_shl, 0, 0));
15629 add_loc_descr (&mem_loc_result, int_loc_descriptor (shift));
15630 add_loc_descr (&mem_loc_result, new_loc_descr (op, 0, 0));
15632 else if (!dwarf_strict || dwarf_version >= 5)
15634 dw_die_ref type_die1, type_die2;
15635 dw_loc_descr_ref cvt;
15637 type_die1 = base_type_for_mode (inner_mode,
15638 GET_CODE (rtl) == ZERO_EXTEND);
15639 if (type_die1 == NULL)
15640 break;
15641 type_die2 = base_type_for_mode (int_mode, 1);
15642 if (type_die2 == NULL)
15643 break;
15644 mem_loc_result = op0;
15645 cvt = new_loc_descr (dwarf_OP (DW_OP_convert), 0, 0);
15646 cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
15647 cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die1;
15648 cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
15649 add_loc_descr (&mem_loc_result, cvt);
15650 cvt = new_loc_descr (dwarf_OP (DW_OP_convert), 0, 0);
15651 cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
15652 cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die2;
15653 cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
15654 add_loc_descr (&mem_loc_result, cvt);
15656 break;
15658 case MEM:
15660 rtx new_rtl = avoid_constant_pool_reference (rtl);
15661 if (new_rtl != rtl)
15663 mem_loc_result = mem_loc_descriptor (new_rtl, mode, mem_mode,
15664 initialized);
15665 if (mem_loc_result != NULL)
15666 return mem_loc_result;
15669 mem_loc_result = mem_loc_descriptor (XEXP (rtl, 0),
15670 get_address_mode (rtl), mode,
15671 VAR_INIT_STATUS_INITIALIZED);
15672 if (mem_loc_result == NULL)
15673 mem_loc_result = tls_mem_loc_descriptor (rtl);
15674 if (mem_loc_result != NULL)
15676 if (!is_a <scalar_int_mode> (mode, &int_mode)
15677 || GET_MODE_SIZE (int_mode) > DWARF2_ADDR_SIZE)
15679 dw_die_ref type_die;
15680 dw_loc_descr_ref deref;
15681 HOST_WIDE_INT size;
15683 if (dwarf_strict && dwarf_version < 5)
15684 return NULL;
15685 if (!GET_MODE_SIZE (mode).is_constant (&size))
15686 return NULL;
15687 type_die
15688 = base_type_for_mode (mode, SCALAR_INT_MODE_P (mode));
15689 if (type_die == NULL)
15690 return NULL;
15691 deref = new_loc_descr (dwarf_OP (DW_OP_deref_type), size, 0);
15692 deref->dw_loc_oprnd2.val_class = dw_val_class_die_ref;
15693 deref->dw_loc_oprnd2.v.val_die_ref.die = type_die;
15694 deref->dw_loc_oprnd2.v.val_die_ref.external = 0;
15695 add_loc_descr (&mem_loc_result, deref);
15697 else if (GET_MODE_SIZE (int_mode) == DWARF2_ADDR_SIZE)
15698 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_deref, 0, 0));
15699 else
15700 add_loc_descr (&mem_loc_result,
15701 new_loc_descr (DW_OP_deref_size,
15702 GET_MODE_SIZE (int_mode), 0));
15704 break;
15706 case LO_SUM:
15707 return mem_loc_descriptor (XEXP (rtl, 1), mode, mem_mode, initialized);
15709 case LABEL_REF:
15710 /* Some ports can transform a symbol ref into a label ref, because
15711 the symbol ref is too far away and has to be dumped into a constant
15712 pool. */
15713 case CONST:
15714 case SYMBOL_REF:
15715 case UNSPEC:
15716 if (!is_a <scalar_int_mode> (mode, &int_mode)
15717 || (GET_MODE_SIZE (int_mode) > DWARF2_ADDR_SIZE
15718 #ifdef POINTERS_EXTEND_UNSIGNED
15719 && (int_mode != Pmode || mem_mode == VOIDmode)
15720 #endif
15722 break;
15724 if (GET_CODE (rtl) == UNSPEC)
15726 /* If delegitimize_address couldn't do anything with the UNSPEC, we
15727 can't express it in the debug info. This can happen e.g. with some
15728 TLS UNSPECs. Allow UNSPECs formerly from CONST that the backend
15729 approves. */
15730 bool not_ok = false;
15731 subrtx_var_iterator::array_type array;
15732 FOR_EACH_SUBRTX_VAR (iter, array, rtl, ALL)
15733 if (*iter != rtl && !CONSTANT_P (*iter))
15735 not_ok = true;
15736 break;
15739 if (not_ok)
15740 break;
15742 FOR_EACH_SUBRTX_VAR (iter, array, rtl, ALL)
15743 if (!const_ok_for_output_1 (*iter))
15745 not_ok = true;
15746 break;
15749 if (not_ok)
15750 break;
15752 rtl = gen_rtx_CONST (GET_MODE (rtl), rtl);
15753 goto symref;
15756 if (GET_CODE (rtl) == SYMBOL_REF
15757 && SYMBOL_REF_TLS_MODEL (rtl) != TLS_MODEL_NONE)
15759 dw_loc_descr_ref temp;
15761 /* If this is not defined, we have no way to emit the data. */
15762 if (!targetm.have_tls || !targetm.asm_out.output_dwarf_dtprel)
15763 break;
15765 temp = new_addr_loc_descr (rtl, dtprel_true);
15767 /* We check for DWARF 5 here because gdb did not implement
15768 DW_OP_form_tls_address until after 7.12. */
15769 mem_loc_result = new_loc_descr ((dwarf_version >= 5
15770 ? DW_OP_form_tls_address
15771 : DW_OP_GNU_push_tls_address),
15772 0, 0);
15773 add_loc_descr (&mem_loc_result, temp);
15775 break;
15778 if (!const_ok_for_output (rtl))
15780 if (GET_CODE (rtl) == CONST)
15781 switch (GET_CODE (XEXP (rtl, 0)))
15783 case NOT:
15784 op = DW_OP_not;
15785 goto try_const_unop;
15786 case NEG:
15787 op = DW_OP_neg;
15788 goto try_const_unop;
15789 try_const_unop:
15790 rtx arg;
15791 arg = XEXP (XEXP (rtl, 0), 0);
15792 if (!CONSTANT_P (arg))
15793 arg = gen_rtx_CONST (int_mode, arg);
15794 op0 = mem_loc_descriptor (arg, int_mode, mem_mode,
15795 initialized);
15796 if (op0)
15798 mem_loc_result = op0;
15799 add_loc_descr (&mem_loc_result, new_loc_descr (op, 0, 0));
15801 break;
15802 default:
15803 mem_loc_result = mem_loc_descriptor (XEXP (rtl, 0), int_mode,
15804 mem_mode, initialized);
15805 break;
15807 break;
15810 symref:
15811 mem_loc_result = new_addr_loc_descr (rtl, dtprel_false);
15812 vec_safe_push (used_rtx_array, rtl);
15813 break;
15815 case CONCAT:
15816 case CONCATN:
15817 case VAR_LOCATION:
15818 case DEBUG_IMPLICIT_PTR:
15819 expansion_failed (NULL_TREE, rtl,
15820 "CONCAT/CONCATN/VAR_LOCATION is handled only by loc_descriptor");
15821 return 0;
15823 case ENTRY_VALUE:
15824 if (dwarf_strict && dwarf_version < 5)
15825 return NULL;
15826 if (REG_P (ENTRY_VALUE_EXP (rtl)))
15828 if (!is_a <scalar_int_mode> (mode, &int_mode)
15829 || GET_MODE_SIZE (int_mode) > DWARF2_ADDR_SIZE)
15830 op0 = mem_loc_descriptor (ENTRY_VALUE_EXP (rtl), mode,
15831 VOIDmode, VAR_INIT_STATUS_INITIALIZED);
15832 else
15834 unsigned int dbx_regnum = dbx_reg_number (ENTRY_VALUE_EXP (rtl));
15835 if (dbx_regnum == IGNORED_DWARF_REGNUM)
15836 return NULL;
15837 op0 = one_reg_loc_descriptor (dbx_regnum,
15838 VAR_INIT_STATUS_INITIALIZED);
15841 else if (MEM_P (ENTRY_VALUE_EXP (rtl))
15842 && REG_P (XEXP (ENTRY_VALUE_EXP (rtl), 0)))
15844 op0 = mem_loc_descriptor (ENTRY_VALUE_EXP (rtl), mode,
15845 VOIDmode, VAR_INIT_STATUS_INITIALIZED);
15846 if (op0 && op0->dw_loc_opc == DW_OP_fbreg)
15847 return NULL;
15849 else
15850 gcc_unreachable ();
15851 if (op0 == NULL)
15852 return NULL;
15853 mem_loc_result = new_loc_descr (dwarf_OP (DW_OP_entry_value), 0, 0);
15854 mem_loc_result->dw_loc_oprnd1.val_class = dw_val_class_loc;
15855 mem_loc_result->dw_loc_oprnd1.v.val_loc = op0;
15856 break;
15858 case DEBUG_PARAMETER_REF:
15859 mem_loc_result = parameter_ref_descriptor (rtl);
15860 break;
15862 case PRE_MODIFY:
15863 /* Extract the PLUS expression nested inside and fall into
15864 PLUS code below. */
15865 rtl = XEXP (rtl, 1);
15866 goto plus;
15868 case PRE_INC:
15869 case PRE_DEC:
15870 /* Turn these into a PLUS expression and fall into the PLUS code
15871 below. */
15872 rtl = gen_rtx_PLUS (mode, XEXP (rtl, 0),
15873 gen_int_mode (GET_CODE (rtl) == PRE_INC
15874 ? GET_MODE_UNIT_SIZE (mem_mode)
15875 : -GET_MODE_UNIT_SIZE (mem_mode),
15876 mode));
15878 /* fall through */
15880 case PLUS:
15881 plus:
15882 if (is_based_loc (rtl)
15883 && is_a <scalar_int_mode> (mode, &int_mode)
15884 && (GET_MODE_SIZE (int_mode) <= DWARF2_ADDR_SIZE
15885 || XEXP (rtl, 0) == arg_pointer_rtx
15886 || XEXP (rtl, 0) == frame_pointer_rtx))
15887 mem_loc_result = based_loc_descr (XEXP (rtl, 0),
15888 INTVAL (XEXP (rtl, 1)),
15889 VAR_INIT_STATUS_INITIALIZED);
15890 else
15892 mem_loc_result = mem_loc_descriptor (XEXP (rtl, 0), mode, mem_mode,
15893 VAR_INIT_STATUS_INITIALIZED);
15894 if (mem_loc_result == 0)
15895 break;
15897 if (CONST_INT_P (XEXP (rtl, 1))
15898 && (GET_MODE_SIZE (as_a <scalar_int_mode> (mode))
15899 <= DWARF2_ADDR_SIZE))
15900 loc_descr_plus_const (&mem_loc_result, INTVAL (XEXP (rtl, 1)));
15901 else
15903 op1 = mem_loc_descriptor (XEXP (rtl, 1), mode, mem_mode,
15904 VAR_INIT_STATUS_INITIALIZED);
15905 if (op1 == 0)
15906 return NULL;
15907 add_loc_descr (&mem_loc_result, op1);
15908 add_loc_descr (&mem_loc_result,
15909 new_loc_descr (DW_OP_plus, 0, 0));
15912 break;
15914 /* If a pseudo-reg is optimized away, it is possible for it to
15915 be replaced with a MEM containing a multiply or shift. */
15916 case MINUS:
15917 op = DW_OP_minus;
15918 goto do_binop;
15920 case MULT:
15921 op = DW_OP_mul;
15922 goto do_binop;
15924 case DIV:
15925 if ((!dwarf_strict || dwarf_version >= 5)
15926 && is_a <scalar_int_mode> (mode, &int_mode)
15927 && GET_MODE_SIZE (int_mode) > DWARF2_ADDR_SIZE)
15929 mem_loc_result = typed_binop (DW_OP_div, rtl,
15930 base_type_for_mode (mode, 0),
15931 int_mode, mem_mode);
15932 break;
15934 op = DW_OP_div;
15935 goto do_binop;
15937 case UMOD:
15938 op = DW_OP_mod;
15939 goto do_binop;
15941 case ASHIFT:
15942 op = DW_OP_shl;
15943 goto do_shift;
15945 case ASHIFTRT:
15946 op = DW_OP_shra;
15947 goto do_shift;
15949 case LSHIFTRT:
15950 op = DW_OP_shr;
15951 goto do_shift;
15953 do_shift:
15954 if (!is_a <scalar_int_mode> (mode, &int_mode))
15955 break;
15956 op0 = mem_loc_descriptor (XEXP (rtl, 0), int_mode, mem_mode,
15957 VAR_INIT_STATUS_INITIALIZED);
15959 rtx rtlop1 = XEXP (rtl, 1);
15960 if (is_a <scalar_int_mode> (GET_MODE (rtlop1), &op1_mode)
15961 && GET_MODE_BITSIZE (op1_mode) < GET_MODE_BITSIZE (int_mode))
15962 rtlop1 = gen_rtx_ZERO_EXTEND (int_mode, rtlop1);
15963 op1 = mem_loc_descriptor (rtlop1, int_mode, mem_mode,
15964 VAR_INIT_STATUS_INITIALIZED);
15967 if (op0 == 0 || op1 == 0)
15968 break;
15970 mem_loc_result = op0;
15971 add_loc_descr (&mem_loc_result, op1);
15972 add_loc_descr (&mem_loc_result, new_loc_descr (op, 0, 0));
15973 break;
15975 case AND:
15976 op = DW_OP_and;
15977 goto do_binop;
15979 case IOR:
15980 op = DW_OP_or;
15981 goto do_binop;
15983 case XOR:
15984 op = DW_OP_xor;
15985 goto do_binop;
15987 do_binop:
15988 op0 = mem_loc_descriptor (XEXP (rtl, 0), mode, mem_mode,
15989 VAR_INIT_STATUS_INITIALIZED);
15990 op1 = mem_loc_descriptor (XEXP (rtl, 1), mode, mem_mode,
15991 VAR_INIT_STATUS_INITIALIZED);
15993 if (op0 == 0 || op1 == 0)
15994 break;
15996 mem_loc_result = op0;
15997 add_loc_descr (&mem_loc_result, op1);
15998 add_loc_descr (&mem_loc_result, new_loc_descr (op, 0, 0));
15999 break;
16001 case MOD:
16002 if ((!dwarf_strict || dwarf_version >= 5)
16003 && is_a <scalar_int_mode> (mode, &int_mode)
16004 && GET_MODE_SIZE (int_mode) > DWARF2_ADDR_SIZE)
16006 mem_loc_result = typed_binop (DW_OP_mod, rtl,
16007 base_type_for_mode (mode, 0),
16008 int_mode, mem_mode);
16009 break;
16012 op0 = mem_loc_descriptor (XEXP (rtl, 0), mode, mem_mode,
16013 VAR_INIT_STATUS_INITIALIZED);
16014 op1 = mem_loc_descriptor (XEXP (rtl, 1), mode, mem_mode,
16015 VAR_INIT_STATUS_INITIALIZED);
16017 if (op0 == 0 || op1 == 0)
16018 break;
16020 mem_loc_result = op0;
16021 add_loc_descr (&mem_loc_result, op1);
16022 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_over, 0, 0));
16023 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_over, 0, 0));
16024 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_div, 0, 0));
16025 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_mul, 0, 0));
16026 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_minus, 0, 0));
16027 break;
16029 case UDIV:
16030 if ((!dwarf_strict || dwarf_version >= 5)
16031 && is_a <scalar_int_mode> (mode, &int_mode))
16033 if (GET_MODE_SIZE (int_mode) > DWARF2_ADDR_SIZE)
16035 op = DW_OP_div;
16036 goto do_binop;
16038 mem_loc_result = typed_binop (DW_OP_div, rtl,
16039 base_type_for_mode (int_mode, 1),
16040 int_mode, mem_mode);
16042 break;
16044 case NOT:
16045 op = DW_OP_not;
16046 goto do_unop;
16048 case ABS:
16049 op = DW_OP_abs;
16050 goto do_unop;
16052 case NEG:
16053 op = DW_OP_neg;
16054 goto do_unop;
16056 do_unop:
16057 op0 = mem_loc_descriptor (XEXP (rtl, 0), mode, mem_mode,
16058 VAR_INIT_STATUS_INITIALIZED);
16060 if (op0 == 0)
16061 break;
16063 mem_loc_result = op0;
16064 add_loc_descr (&mem_loc_result, new_loc_descr (op, 0, 0));
16065 break;
16067 case CONST_INT:
16068 if (!is_a <scalar_int_mode> (mode, &int_mode)
16069 || GET_MODE_SIZE (int_mode) <= DWARF2_ADDR_SIZE
16070 #ifdef POINTERS_EXTEND_UNSIGNED
16071 || (int_mode == Pmode
16072 && mem_mode != VOIDmode
16073 && trunc_int_for_mode (INTVAL (rtl), ptr_mode) == INTVAL (rtl))
16074 #endif
16077 mem_loc_result = int_loc_descriptor (INTVAL (rtl));
16078 break;
16080 if ((!dwarf_strict || dwarf_version >= 5)
16081 && (GET_MODE_BITSIZE (int_mode) == HOST_BITS_PER_WIDE_INT
16082 || GET_MODE_BITSIZE (int_mode) == HOST_BITS_PER_DOUBLE_INT))
16084 dw_die_ref type_die = base_type_for_mode (int_mode, 1);
16085 scalar_int_mode amode;
16086 if (type_die == NULL)
16087 return NULL;
16088 if (INTVAL (rtl) >= 0
16089 && (int_mode_for_size (DWARF2_ADDR_SIZE * BITS_PER_UNIT, 0)
16090 .exists (&amode))
16091 && trunc_int_for_mode (INTVAL (rtl), amode) == INTVAL (rtl)
16092 /* const DW_OP_convert <XXX> vs.
16093 DW_OP_const_type <XXX, 1, const>. */
16094 && size_of_int_loc_descriptor (INTVAL (rtl)) + 1 + 1
16095 < (unsigned long) 1 + 1 + 1 + GET_MODE_SIZE (int_mode))
16097 mem_loc_result = int_loc_descriptor (INTVAL (rtl));
16098 op0 = new_loc_descr (dwarf_OP (DW_OP_convert), 0, 0);
16099 op0->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
16100 op0->dw_loc_oprnd1.v.val_die_ref.die = type_die;
16101 op0->dw_loc_oprnd1.v.val_die_ref.external = 0;
16102 add_loc_descr (&mem_loc_result, op0);
16103 return mem_loc_result;
16105 mem_loc_result = new_loc_descr (dwarf_OP (DW_OP_const_type), 0,
16106 INTVAL (rtl));
16107 mem_loc_result->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
16108 mem_loc_result->dw_loc_oprnd1.v.val_die_ref.die = type_die;
16109 mem_loc_result->dw_loc_oprnd1.v.val_die_ref.external = 0;
16110 if (GET_MODE_BITSIZE (int_mode) == HOST_BITS_PER_WIDE_INT)
16111 mem_loc_result->dw_loc_oprnd2.val_class = dw_val_class_const;
16112 else
16114 mem_loc_result->dw_loc_oprnd2.val_class
16115 = dw_val_class_const_double;
16116 mem_loc_result->dw_loc_oprnd2.v.val_double
16117 = double_int::from_shwi (INTVAL (rtl));
16120 break;
16122 case CONST_DOUBLE:
16123 if (!dwarf_strict || dwarf_version >= 5)
16125 dw_die_ref type_die;
16127 /* Note that if TARGET_SUPPORTS_WIDE_INT == 0, a
16128 CONST_DOUBLE rtx could represent either a large integer
16129 or a floating-point constant. If TARGET_SUPPORTS_WIDE_INT != 0,
16130 the value is always a floating point constant.
16132 When it is an integer, a CONST_DOUBLE is used whenever
16133 the constant requires 2 HWIs to be adequately represented.
16134 We output CONST_DOUBLEs as blocks. */
16135 if (mode == VOIDmode
16136 || (GET_MODE (rtl) == VOIDmode
16137 && maybe_ne (GET_MODE_BITSIZE (mode),
16138 HOST_BITS_PER_DOUBLE_INT)))
16139 break;
16140 type_die = base_type_for_mode (mode, SCALAR_INT_MODE_P (mode));
16141 if (type_die == NULL)
16142 return NULL;
16143 mem_loc_result = new_loc_descr (dwarf_OP (DW_OP_const_type), 0, 0);
16144 mem_loc_result->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
16145 mem_loc_result->dw_loc_oprnd1.v.val_die_ref.die = type_die;
16146 mem_loc_result->dw_loc_oprnd1.v.val_die_ref.external = 0;
16147 #if TARGET_SUPPORTS_WIDE_INT == 0
16148 if (!SCALAR_FLOAT_MODE_P (mode))
16150 mem_loc_result->dw_loc_oprnd2.val_class
16151 = dw_val_class_const_double;
16152 mem_loc_result->dw_loc_oprnd2.v.val_double
16153 = rtx_to_double_int (rtl);
16155 else
16156 #endif
16158 scalar_float_mode float_mode = as_a <scalar_float_mode> (mode);
16159 unsigned int length = GET_MODE_SIZE (float_mode);
16160 unsigned char *array = ggc_vec_alloc<unsigned char> (length);
16162 insert_float (rtl, array);
16163 mem_loc_result->dw_loc_oprnd2.val_class = dw_val_class_vec;
16164 mem_loc_result->dw_loc_oprnd2.v.val_vec.length = length / 4;
16165 mem_loc_result->dw_loc_oprnd2.v.val_vec.elt_size = 4;
16166 mem_loc_result->dw_loc_oprnd2.v.val_vec.array = array;
16169 break;
16171 case CONST_WIDE_INT:
16172 if (!dwarf_strict || dwarf_version >= 5)
16174 dw_die_ref type_die;
16176 type_die = base_type_for_mode (mode, SCALAR_INT_MODE_P (mode));
16177 if (type_die == NULL)
16178 return NULL;
16179 mem_loc_result = new_loc_descr (dwarf_OP (DW_OP_const_type), 0, 0);
16180 mem_loc_result->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
16181 mem_loc_result->dw_loc_oprnd1.v.val_die_ref.die = type_die;
16182 mem_loc_result->dw_loc_oprnd1.v.val_die_ref.external = 0;
16183 mem_loc_result->dw_loc_oprnd2.val_class
16184 = dw_val_class_wide_int;
16185 mem_loc_result->dw_loc_oprnd2.v.val_wide = ggc_alloc<wide_int> ();
16186 *mem_loc_result->dw_loc_oprnd2.v.val_wide = rtx_mode_t (rtl, mode);
16188 break;
16190 case CONST_POLY_INT:
16191 mem_loc_result = int_loc_descriptor (rtx_to_poly_int64 (rtl));
16192 break;
16194 case EQ:
16195 mem_loc_result = scompare_loc_descriptor (DW_OP_eq, rtl, mem_mode);
16196 break;
16198 case GE:
16199 mem_loc_result = scompare_loc_descriptor (DW_OP_ge, rtl, mem_mode);
16200 break;
16202 case GT:
16203 mem_loc_result = scompare_loc_descriptor (DW_OP_gt, rtl, mem_mode);
16204 break;
16206 case LE:
16207 mem_loc_result = scompare_loc_descriptor (DW_OP_le, rtl, mem_mode);
16208 break;
16210 case LT:
16211 mem_loc_result = scompare_loc_descriptor (DW_OP_lt, rtl, mem_mode);
16212 break;
16214 case NE:
16215 mem_loc_result = scompare_loc_descriptor (DW_OP_ne, rtl, mem_mode);
16216 break;
16218 case GEU:
16219 mem_loc_result = ucompare_loc_descriptor (DW_OP_ge, rtl, mem_mode);
16220 break;
16222 case GTU:
16223 mem_loc_result = ucompare_loc_descriptor (DW_OP_gt, rtl, mem_mode);
16224 break;
16226 case LEU:
16227 mem_loc_result = ucompare_loc_descriptor (DW_OP_le, rtl, mem_mode);
16228 break;
16230 case LTU:
16231 mem_loc_result = ucompare_loc_descriptor (DW_OP_lt, rtl, mem_mode);
16232 break;
16234 case UMIN:
16235 case UMAX:
16236 if (!SCALAR_INT_MODE_P (mode))
16237 break;
16238 /* FALLTHRU */
16239 case SMIN:
16240 case SMAX:
16241 mem_loc_result = minmax_loc_descriptor (rtl, mode, mem_mode);
16242 break;
16244 case ZERO_EXTRACT:
16245 case SIGN_EXTRACT:
16246 if (CONST_INT_P (XEXP (rtl, 1))
16247 && CONST_INT_P (XEXP (rtl, 2))
16248 && is_a <scalar_int_mode> (mode, &int_mode)
16249 && is_a <scalar_int_mode> (GET_MODE (XEXP (rtl, 0)), &inner_mode)
16250 && GET_MODE_SIZE (int_mode) <= DWARF2_ADDR_SIZE
16251 && GET_MODE_SIZE (inner_mode) <= DWARF2_ADDR_SIZE
16252 && ((unsigned) INTVAL (XEXP (rtl, 1))
16253 + (unsigned) INTVAL (XEXP (rtl, 2))
16254 <= GET_MODE_BITSIZE (int_mode)))
16256 int shift, size;
16257 op0 = mem_loc_descriptor (XEXP (rtl, 0), inner_mode,
16258 mem_mode, VAR_INIT_STATUS_INITIALIZED);
16259 if (op0 == 0)
16260 break;
16261 if (GET_CODE (rtl) == SIGN_EXTRACT)
16262 op = DW_OP_shra;
16263 else
16264 op = DW_OP_shr;
16265 mem_loc_result = op0;
16266 size = INTVAL (XEXP (rtl, 1));
16267 shift = INTVAL (XEXP (rtl, 2));
16268 if (BITS_BIG_ENDIAN)
16269 shift = GET_MODE_BITSIZE (inner_mode) - shift - size;
16270 if (shift + size != (int) DWARF2_ADDR_SIZE)
16272 add_loc_descr (&mem_loc_result,
16273 int_loc_descriptor (DWARF2_ADDR_SIZE
16274 - shift - size));
16275 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_shl, 0, 0));
16277 if (size != (int) DWARF2_ADDR_SIZE)
16279 add_loc_descr (&mem_loc_result,
16280 int_loc_descriptor (DWARF2_ADDR_SIZE - size));
16281 add_loc_descr (&mem_loc_result, new_loc_descr (op, 0, 0));
16284 break;
16286 case IF_THEN_ELSE:
16288 dw_loc_descr_ref op2, bra_node, drop_node;
16289 op0 = mem_loc_descriptor (XEXP (rtl, 0),
16290 GET_MODE (XEXP (rtl, 0)) == VOIDmode
16291 ? word_mode : GET_MODE (XEXP (rtl, 0)),
16292 mem_mode, VAR_INIT_STATUS_INITIALIZED);
16293 op1 = mem_loc_descriptor (XEXP (rtl, 1), mode, mem_mode,
16294 VAR_INIT_STATUS_INITIALIZED);
16295 op2 = mem_loc_descriptor (XEXP (rtl, 2), mode, mem_mode,
16296 VAR_INIT_STATUS_INITIALIZED);
16297 if (op0 == NULL || op1 == NULL || op2 == NULL)
16298 break;
16300 mem_loc_result = op1;
16301 add_loc_descr (&mem_loc_result, op2);
16302 add_loc_descr (&mem_loc_result, op0);
16303 bra_node = new_loc_descr (DW_OP_bra, 0, 0);
16304 add_loc_descr (&mem_loc_result, bra_node);
16305 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_swap, 0, 0));
16306 drop_node = new_loc_descr (DW_OP_drop, 0, 0);
16307 add_loc_descr (&mem_loc_result, drop_node);
16308 bra_node->dw_loc_oprnd1.val_class = dw_val_class_loc;
16309 bra_node->dw_loc_oprnd1.v.val_loc = drop_node;
16311 break;
16313 case FLOAT_EXTEND:
16314 case FLOAT_TRUNCATE:
16315 case FLOAT:
16316 case UNSIGNED_FLOAT:
16317 case FIX:
16318 case UNSIGNED_FIX:
16319 if (!dwarf_strict || dwarf_version >= 5)
16321 dw_die_ref type_die;
16322 dw_loc_descr_ref cvt;
16324 op0 = mem_loc_descriptor (XEXP (rtl, 0), GET_MODE (XEXP (rtl, 0)),
16325 mem_mode, VAR_INIT_STATUS_INITIALIZED);
16326 if (op0 == NULL)
16327 break;
16328 if (is_a <scalar_int_mode> (GET_MODE (XEXP (rtl, 0)), &int_mode)
16329 && (GET_CODE (rtl) == FLOAT
16330 || GET_MODE_SIZE (int_mode) <= DWARF2_ADDR_SIZE))
16332 type_die = base_type_for_mode (int_mode,
16333 GET_CODE (rtl) == UNSIGNED_FLOAT);
16334 if (type_die == NULL)
16335 break;
16336 cvt = new_loc_descr (dwarf_OP (DW_OP_convert), 0, 0);
16337 cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
16338 cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die;
16339 cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
16340 add_loc_descr (&op0, cvt);
16342 type_die = base_type_for_mode (mode, GET_CODE (rtl) == UNSIGNED_FIX);
16343 if (type_die == NULL)
16344 break;
16345 cvt = new_loc_descr (dwarf_OP (DW_OP_convert), 0, 0);
16346 cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
16347 cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die;
16348 cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
16349 add_loc_descr (&op0, cvt);
16350 if (is_a <scalar_int_mode> (mode, &int_mode)
16351 && (GET_CODE (rtl) == FIX
16352 || GET_MODE_SIZE (int_mode) < DWARF2_ADDR_SIZE))
16354 op0 = convert_descriptor_to_mode (int_mode, op0);
16355 if (op0 == NULL)
16356 break;
16358 mem_loc_result = op0;
16360 break;
16362 case CLZ:
16363 case CTZ:
16364 case FFS:
16365 if (is_a <scalar_int_mode> (mode, &int_mode))
16366 mem_loc_result = clz_loc_descriptor (rtl, int_mode, mem_mode);
16367 break;
16369 case POPCOUNT:
16370 case PARITY:
16371 if (is_a <scalar_int_mode> (mode, &int_mode))
16372 mem_loc_result = popcount_loc_descriptor (rtl, int_mode, mem_mode);
16373 break;
16375 case BSWAP:
16376 if (is_a <scalar_int_mode> (mode, &int_mode))
16377 mem_loc_result = bswap_loc_descriptor (rtl, int_mode, mem_mode);
16378 break;
16380 case ROTATE:
16381 case ROTATERT:
16382 if (is_a <scalar_int_mode> (mode, &int_mode))
16383 mem_loc_result = rotate_loc_descriptor (rtl, int_mode, mem_mode);
16384 break;
16386 case COMPARE:
16387 /* In theory, we could implement the above. */
16388 /* DWARF cannot represent the unsigned compare operations
16389 natively. */
16390 case SS_MULT:
16391 case US_MULT:
16392 case SS_DIV:
16393 case US_DIV:
16394 case SS_PLUS:
16395 case US_PLUS:
16396 case SS_MINUS:
16397 case US_MINUS:
16398 case SS_NEG:
16399 case US_NEG:
16400 case SS_ABS:
16401 case SS_ASHIFT:
16402 case US_ASHIFT:
16403 case SS_TRUNCATE:
16404 case US_TRUNCATE:
16405 case UNORDERED:
16406 case ORDERED:
16407 case UNEQ:
16408 case UNGE:
16409 case UNGT:
16410 case UNLE:
16411 case UNLT:
16412 case LTGT:
16413 case FRACT_CONVERT:
16414 case UNSIGNED_FRACT_CONVERT:
16415 case SAT_FRACT:
16416 case UNSIGNED_SAT_FRACT:
16417 case SQRT:
16418 case ASM_OPERANDS:
16419 case VEC_MERGE:
16420 case VEC_SELECT:
16421 case VEC_CONCAT:
16422 case VEC_DUPLICATE:
16423 case VEC_SERIES:
16424 case HIGH:
16425 case FMA:
16426 case STRICT_LOW_PART:
16427 case CONST_VECTOR:
16428 case CONST_FIXED:
16429 case CLRSB:
16430 case CLOBBER:
16431 case CLOBBER_HIGH:
16432 break;
16434 case CONST_STRING:
16435 resolve_one_addr (&rtl);
16436 goto symref;
16438 /* RTL sequences inside PARALLEL record a series of DWARF operations for
16439 the expression. An UNSPEC rtx represents a raw DWARF operation,
16440 new_loc_descr is called for it to build the operation directly.
16441 Otherwise mem_loc_descriptor is called recursively. */
16442 case PARALLEL:
16444 int index = 0;
16445 dw_loc_descr_ref exp_result = NULL;
16447 for (; index < XVECLEN (rtl, 0); index++)
16449 rtx elem = XVECEXP (rtl, 0, index);
16450 if (GET_CODE (elem) == UNSPEC)
16452 /* Each DWARF operation UNSPEC contain two operands, if
16453 one operand is not used for the operation, const0_rtx is
16454 passed. */
16455 gcc_assert (XVECLEN (elem, 0) == 2);
16457 HOST_WIDE_INT dw_op = XINT (elem, 1);
16458 HOST_WIDE_INT oprnd1 = INTVAL (XVECEXP (elem, 0, 0));
16459 HOST_WIDE_INT oprnd2 = INTVAL (XVECEXP (elem, 0, 1));
16460 exp_result
16461 = new_loc_descr ((enum dwarf_location_atom) dw_op, oprnd1,
16462 oprnd2);
16464 else
16465 exp_result
16466 = mem_loc_descriptor (elem, mode, mem_mode,
16467 VAR_INIT_STATUS_INITIALIZED);
16469 if (!mem_loc_result)
16470 mem_loc_result = exp_result;
16471 else
16472 add_loc_descr (&mem_loc_result, exp_result);
16475 break;
16478 default:
16479 if (flag_checking)
16481 print_rtl (stderr, rtl);
16482 gcc_unreachable ();
16484 break;
16487 if (mem_loc_result && initialized == VAR_INIT_STATUS_UNINITIALIZED)
16488 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_GNU_uninit, 0, 0));
16490 return mem_loc_result;
16493 /* Return a descriptor that describes the concatenation of two locations.
16494 This is typically a complex variable. */
16496 static dw_loc_descr_ref
16497 concat_loc_descriptor (rtx x0, rtx x1, enum var_init_status initialized)
16499 /* At present we only track constant-sized pieces. */
16500 unsigned int size0, size1;
16501 if (!GET_MODE_SIZE (GET_MODE (x0)).is_constant (&size0)
16502 || !GET_MODE_SIZE (GET_MODE (x1)).is_constant (&size1))
16503 return 0;
16505 dw_loc_descr_ref cc_loc_result = NULL;
16506 dw_loc_descr_ref x0_ref
16507 = loc_descriptor (x0, VOIDmode, VAR_INIT_STATUS_INITIALIZED);
16508 dw_loc_descr_ref x1_ref
16509 = loc_descriptor (x1, VOIDmode, VAR_INIT_STATUS_INITIALIZED);
16511 if (x0_ref == 0 || x1_ref == 0)
16512 return 0;
16514 cc_loc_result = x0_ref;
16515 add_loc_descr_op_piece (&cc_loc_result, size0);
16517 add_loc_descr (&cc_loc_result, x1_ref);
16518 add_loc_descr_op_piece (&cc_loc_result, size1);
16520 if (initialized == VAR_INIT_STATUS_UNINITIALIZED)
16521 add_loc_descr (&cc_loc_result, new_loc_descr (DW_OP_GNU_uninit, 0, 0));
16523 return cc_loc_result;
16526 /* Return a descriptor that describes the concatenation of N
16527 locations. */
16529 static dw_loc_descr_ref
16530 concatn_loc_descriptor (rtx concatn, enum var_init_status initialized)
16532 unsigned int i;
16533 dw_loc_descr_ref cc_loc_result = NULL;
16534 unsigned int n = XVECLEN (concatn, 0);
16535 unsigned int size;
16537 for (i = 0; i < n; ++i)
16539 dw_loc_descr_ref ref;
16540 rtx x = XVECEXP (concatn, 0, i);
16542 /* At present we only track constant-sized pieces. */
16543 if (!GET_MODE_SIZE (GET_MODE (x)).is_constant (&size))
16544 return NULL;
16546 ref = loc_descriptor (x, VOIDmode, VAR_INIT_STATUS_INITIALIZED);
16547 if (ref == NULL)
16548 return NULL;
16550 add_loc_descr (&cc_loc_result, ref);
16551 add_loc_descr_op_piece (&cc_loc_result, size);
16554 if (cc_loc_result && initialized == VAR_INIT_STATUS_UNINITIALIZED)
16555 add_loc_descr (&cc_loc_result, new_loc_descr (DW_OP_GNU_uninit, 0, 0));
16557 return cc_loc_result;
16560 /* Helper function for loc_descriptor. Return DW_OP_implicit_pointer
16561 for DEBUG_IMPLICIT_PTR RTL. */
16563 static dw_loc_descr_ref
16564 implicit_ptr_descriptor (rtx rtl, HOST_WIDE_INT offset)
16566 dw_loc_descr_ref ret;
16567 dw_die_ref ref;
16569 if (dwarf_strict && dwarf_version < 5)
16570 return NULL;
16571 gcc_assert (TREE_CODE (DEBUG_IMPLICIT_PTR_DECL (rtl)) == VAR_DECL
16572 || TREE_CODE (DEBUG_IMPLICIT_PTR_DECL (rtl)) == PARM_DECL
16573 || TREE_CODE (DEBUG_IMPLICIT_PTR_DECL (rtl)) == RESULT_DECL);
16574 ref = lookup_decl_die (DEBUG_IMPLICIT_PTR_DECL (rtl));
16575 ret = new_loc_descr (dwarf_OP (DW_OP_implicit_pointer), 0, offset);
16576 ret->dw_loc_oprnd2.val_class = dw_val_class_const;
16577 if (ref)
16579 ret->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
16580 ret->dw_loc_oprnd1.v.val_die_ref.die = ref;
16581 ret->dw_loc_oprnd1.v.val_die_ref.external = 0;
16583 else
16585 ret->dw_loc_oprnd1.val_class = dw_val_class_decl_ref;
16586 ret->dw_loc_oprnd1.v.val_decl_ref = DEBUG_IMPLICIT_PTR_DECL (rtl);
16588 return ret;
16591 /* Output a proper Dwarf location descriptor for a variable or parameter
16592 which is either allocated in a register or in a memory location. For a
16593 register, we just generate an OP_REG and the register number. For a
16594 memory location we provide a Dwarf postfix expression describing how to
16595 generate the (dynamic) address of the object onto the address stack.
16597 MODE is mode of the decl if this loc_descriptor is going to be used in
16598 .debug_loc section where DW_OP_stack_value and DW_OP_implicit_value are
16599 allowed, VOIDmode otherwise.
16601 If we don't know how to describe it, return 0. */
16603 static dw_loc_descr_ref
16604 loc_descriptor (rtx rtl, machine_mode mode,
16605 enum var_init_status initialized)
16607 dw_loc_descr_ref loc_result = NULL;
16608 scalar_int_mode int_mode;
16610 switch (GET_CODE (rtl))
16612 case SUBREG:
16613 /* The case of a subreg may arise when we have a local (register)
16614 variable or a formal (register) parameter which doesn't quite fill
16615 up an entire register. For now, just assume that it is
16616 legitimate to make the Dwarf info refer to the whole register which
16617 contains the given subreg. */
16618 if (REG_P (SUBREG_REG (rtl)) && subreg_lowpart_p (rtl))
16619 loc_result = loc_descriptor (SUBREG_REG (rtl),
16620 GET_MODE (SUBREG_REG (rtl)), initialized);
16621 else
16622 goto do_default;
16623 break;
16625 case REG:
16626 loc_result = reg_loc_descriptor (rtl, initialized);
16627 break;
16629 case MEM:
16630 loc_result = mem_loc_descriptor (XEXP (rtl, 0), get_address_mode (rtl),
16631 GET_MODE (rtl), initialized);
16632 if (loc_result == NULL)
16633 loc_result = tls_mem_loc_descriptor (rtl);
16634 if (loc_result == NULL)
16636 rtx new_rtl = avoid_constant_pool_reference (rtl);
16637 if (new_rtl != rtl)
16638 loc_result = loc_descriptor (new_rtl, mode, initialized);
16640 break;
16642 case CONCAT:
16643 loc_result = concat_loc_descriptor (XEXP (rtl, 0), XEXP (rtl, 1),
16644 initialized);
16645 break;
16647 case CONCATN:
16648 loc_result = concatn_loc_descriptor (rtl, initialized);
16649 break;
16651 case VAR_LOCATION:
16652 /* Single part. */
16653 if (GET_CODE (PAT_VAR_LOCATION_LOC (rtl)) != PARALLEL)
16655 rtx loc = PAT_VAR_LOCATION_LOC (rtl);
16656 if (GET_CODE (loc) == EXPR_LIST)
16657 loc = XEXP (loc, 0);
16658 loc_result = loc_descriptor (loc, mode, initialized);
16659 break;
16662 rtl = XEXP (rtl, 1);
16663 /* FALLTHRU */
16665 case PARALLEL:
16667 rtvec par_elems = XVEC (rtl, 0);
16668 int num_elem = GET_NUM_ELEM (par_elems);
16669 machine_mode mode;
16670 int i, size;
16672 /* Create the first one, so we have something to add to. */
16673 loc_result = loc_descriptor (XEXP (RTVEC_ELT (par_elems, 0), 0),
16674 VOIDmode, initialized);
16675 if (loc_result == NULL)
16676 return NULL;
16677 mode = GET_MODE (XEXP (RTVEC_ELT (par_elems, 0), 0));
16678 /* At present we only track constant-sized pieces. */
16679 if (!GET_MODE_SIZE (mode).is_constant (&size))
16680 return NULL;
16681 add_loc_descr_op_piece (&loc_result, size);
16682 for (i = 1; i < num_elem; i++)
16684 dw_loc_descr_ref temp;
16686 temp = loc_descriptor (XEXP (RTVEC_ELT (par_elems, i), 0),
16687 VOIDmode, initialized);
16688 if (temp == NULL)
16689 return NULL;
16690 add_loc_descr (&loc_result, temp);
16691 mode = GET_MODE (XEXP (RTVEC_ELT (par_elems, i), 0));
16692 /* At present we only track constant-sized pieces. */
16693 if (!GET_MODE_SIZE (mode).is_constant (&size))
16694 return NULL;
16695 add_loc_descr_op_piece (&loc_result, size);
16698 break;
16700 case CONST_INT:
16701 if (mode != VOIDmode && mode != BLKmode)
16703 int_mode = as_a <scalar_int_mode> (mode);
16704 loc_result = address_of_int_loc_descriptor (GET_MODE_SIZE (int_mode),
16705 INTVAL (rtl));
16707 break;
16709 case CONST_DOUBLE:
16710 if (mode == VOIDmode)
16711 mode = GET_MODE (rtl);
16713 if (mode != VOIDmode && (dwarf_version >= 4 || !dwarf_strict))
16715 gcc_assert (mode == GET_MODE (rtl) || VOIDmode == GET_MODE (rtl));
16717 /* Note that a CONST_DOUBLE rtx could represent either an integer
16718 or a floating-point constant. A CONST_DOUBLE is used whenever
16719 the constant requires more than one word in order to be
16720 adequately represented. We output CONST_DOUBLEs as blocks. */
16721 scalar_mode smode = as_a <scalar_mode> (mode);
16722 loc_result = new_loc_descr (DW_OP_implicit_value,
16723 GET_MODE_SIZE (smode), 0);
16724 #if TARGET_SUPPORTS_WIDE_INT == 0
16725 if (!SCALAR_FLOAT_MODE_P (smode))
16727 loc_result->dw_loc_oprnd2.val_class = dw_val_class_const_double;
16728 loc_result->dw_loc_oprnd2.v.val_double
16729 = rtx_to_double_int (rtl);
16731 else
16732 #endif
16734 unsigned int length = GET_MODE_SIZE (smode);
16735 unsigned char *array = ggc_vec_alloc<unsigned char> (length);
16737 insert_float (rtl, array);
16738 loc_result->dw_loc_oprnd2.val_class = dw_val_class_vec;
16739 loc_result->dw_loc_oprnd2.v.val_vec.length = length / 4;
16740 loc_result->dw_loc_oprnd2.v.val_vec.elt_size = 4;
16741 loc_result->dw_loc_oprnd2.v.val_vec.array = array;
16744 break;
16746 case CONST_WIDE_INT:
16747 if (mode == VOIDmode)
16748 mode = GET_MODE (rtl);
16750 if (mode != VOIDmode && (dwarf_version >= 4 || !dwarf_strict))
16752 int_mode = as_a <scalar_int_mode> (mode);
16753 loc_result = new_loc_descr (DW_OP_implicit_value,
16754 GET_MODE_SIZE (int_mode), 0);
16755 loc_result->dw_loc_oprnd2.val_class = dw_val_class_wide_int;
16756 loc_result->dw_loc_oprnd2.v.val_wide = ggc_alloc<wide_int> ();
16757 *loc_result->dw_loc_oprnd2.v.val_wide = rtx_mode_t (rtl, int_mode);
16759 break;
16761 case CONST_VECTOR:
16762 if (mode == VOIDmode)
16763 mode = GET_MODE (rtl);
16765 if (mode != VOIDmode && (dwarf_version >= 4 || !dwarf_strict))
16767 unsigned int length;
16768 if (!CONST_VECTOR_NUNITS (rtl).is_constant (&length))
16769 return NULL;
16771 unsigned int elt_size = GET_MODE_UNIT_SIZE (GET_MODE (rtl));
16772 unsigned char *array
16773 = ggc_vec_alloc<unsigned char> (length * elt_size);
16774 unsigned int i;
16775 unsigned char *p;
16776 machine_mode imode = GET_MODE_INNER (mode);
16778 gcc_assert (mode == GET_MODE (rtl) || VOIDmode == GET_MODE (rtl));
16779 switch (GET_MODE_CLASS (mode))
16781 case MODE_VECTOR_INT:
16782 for (i = 0, p = array; i < length; i++, p += elt_size)
16784 rtx elt = CONST_VECTOR_ELT (rtl, i);
16785 insert_wide_int (rtx_mode_t (elt, imode), p, elt_size);
16787 break;
16789 case MODE_VECTOR_FLOAT:
16790 for (i = 0, p = array; i < length; i++, p += elt_size)
16792 rtx elt = CONST_VECTOR_ELT (rtl, i);
16793 insert_float (elt, p);
16795 break;
16797 default:
16798 gcc_unreachable ();
16801 loc_result = new_loc_descr (DW_OP_implicit_value,
16802 length * elt_size, 0);
16803 loc_result->dw_loc_oprnd2.val_class = dw_val_class_vec;
16804 loc_result->dw_loc_oprnd2.v.val_vec.length = length;
16805 loc_result->dw_loc_oprnd2.v.val_vec.elt_size = elt_size;
16806 loc_result->dw_loc_oprnd2.v.val_vec.array = array;
16808 break;
16810 case CONST:
16811 if (mode == VOIDmode
16812 || CONST_SCALAR_INT_P (XEXP (rtl, 0))
16813 || CONST_DOUBLE_AS_FLOAT_P (XEXP (rtl, 0))
16814 || GET_CODE (XEXP (rtl, 0)) == CONST_VECTOR)
16816 loc_result = loc_descriptor (XEXP (rtl, 0), mode, initialized);
16817 break;
16819 /* FALLTHROUGH */
16820 case SYMBOL_REF:
16821 if (!const_ok_for_output (rtl))
16822 break;
16823 /* FALLTHROUGH */
16824 case LABEL_REF:
16825 if (is_a <scalar_int_mode> (mode, &int_mode)
16826 && GET_MODE_SIZE (int_mode) == DWARF2_ADDR_SIZE
16827 && (dwarf_version >= 4 || !dwarf_strict))
16829 loc_result = new_addr_loc_descr (rtl, dtprel_false);
16830 add_loc_descr (&loc_result, new_loc_descr (DW_OP_stack_value, 0, 0));
16831 vec_safe_push (used_rtx_array, rtl);
16833 break;
16835 case DEBUG_IMPLICIT_PTR:
16836 loc_result = implicit_ptr_descriptor (rtl, 0);
16837 break;
16839 case PLUS:
16840 if (GET_CODE (XEXP (rtl, 0)) == DEBUG_IMPLICIT_PTR
16841 && CONST_INT_P (XEXP (rtl, 1)))
16843 loc_result
16844 = implicit_ptr_descriptor (XEXP (rtl, 0), INTVAL (XEXP (rtl, 1)));
16845 break;
16847 /* FALLTHRU */
16848 do_default:
16849 default:
16850 if ((is_a <scalar_int_mode> (mode, &int_mode)
16851 && GET_MODE (rtl) == int_mode
16852 && GET_MODE_SIZE (int_mode) <= DWARF2_ADDR_SIZE
16853 && dwarf_version >= 4)
16854 || (!dwarf_strict && mode != VOIDmode && mode != BLKmode))
16856 /* Value expression. */
16857 loc_result = mem_loc_descriptor (rtl, mode, VOIDmode, initialized);
16858 if (loc_result)
16859 add_loc_descr (&loc_result,
16860 new_loc_descr (DW_OP_stack_value, 0, 0));
16862 break;
16865 return loc_result;
16868 /* We need to figure out what section we should use as the base for the
16869 address ranges where a given location is valid.
16870 1. If this particular DECL has a section associated with it, use that.
16871 2. If this function has a section associated with it, use that.
16872 3. Otherwise, use the text section.
16873 XXX: If you split a variable across multiple sections, we won't notice. */
16875 static const char *
16876 secname_for_decl (const_tree decl)
16878 const char *secname;
16880 if (VAR_OR_FUNCTION_DECL_P (decl)
16881 && (DECL_EXTERNAL (decl) || TREE_PUBLIC (decl) || TREE_STATIC (decl))
16882 && DECL_SECTION_NAME (decl))
16883 secname = DECL_SECTION_NAME (decl);
16884 else if (current_function_decl && DECL_SECTION_NAME (current_function_decl))
16886 if (in_cold_section_p)
16888 section *sec = current_function_section ();
16889 if (sec->common.flags & SECTION_NAMED)
16890 return sec->named.name;
16892 secname = DECL_SECTION_NAME (current_function_decl);
16894 else if (cfun && in_cold_section_p)
16895 secname = crtl->subsections.cold_section_label;
16896 else
16897 secname = text_section_label;
16899 return secname;
16902 /* Return true when DECL_BY_REFERENCE is defined and set for DECL. */
16904 static bool
16905 decl_by_reference_p (tree decl)
16907 return ((TREE_CODE (decl) == PARM_DECL || TREE_CODE (decl) == RESULT_DECL
16908 || VAR_P (decl))
16909 && DECL_BY_REFERENCE (decl));
16912 /* Helper function for dw_loc_list. Compute proper Dwarf location descriptor
16913 for VARLOC. */
16915 static dw_loc_descr_ref
16916 dw_loc_list_1 (tree loc, rtx varloc, int want_address,
16917 enum var_init_status initialized)
16919 int have_address = 0;
16920 dw_loc_descr_ref descr;
16921 machine_mode mode;
16923 if (want_address != 2)
16925 gcc_assert (GET_CODE (varloc) == VAR_LOCATION);
16926 /* Single part. */
16927 if (GET_CODE (PAT_VAR_LOCATION_LOC (varloc)) != PARALLEL)
16929 varloc = PAT_VAR_LOCATION_LOC (varloc);
16930 if (GET_CODE (varloc) == EXPR_LIST)
16931 varloc = XEXP (varloc, 0);
16932 mode = GET_MODE (varloc);
16933 if (MEM_P (varloc))
16935 rtx addr = XEXP (varloc, 0);
16936 descr = mem_loc_descriptor (addr, get_address_mode (varloc),
16937 mode, initialized);
16938 if (descr)
16939 have_address = 1;
16940 else
16942 rtx x = avoid_constant_pool_reference (varloc);
16943 if (x != varloc)
16944 descr = mem_loc_descriptor (x, mode, VOIDmode,
16945 initialized);
16948 else
16949 descr = mem_loc_descriptor (varloc, mode, VOIDmode, initialized);
16951 else
16952 return 0;
16954 else
16956 if (GET_CODE (varloc) == VAR_LOCATION)
16957 mode = DECL_MODE (PAT_VAR_LOCATION_DECL (varloc));
16958 else
16959 mode = DECL_MODE (loc);
16960 descr = loc_descriptor (varloc, mode, initialized);
16961 have_address = 1;
16964 if (!descr)
16965 return 0;
16967 if (want_address == 2 && !have_address
16968 && (dwarf_version >= 4 || !dwarf_strict))
16970 if (int_size_in_bytes (TREE_TYPE (loc)) > DWARF2_ADDR_SIZE)
16972 expansion_failed (loc, NULL_RTX,
16973 "DWARF address size mismatch");
16974 return 0;
16976 add_loc_descr (&descr, new_loc_descr (DW_OP_stack_value, 0, 0));
16977 have_address = 1;
16979 /* Show if we can't fill the request for an address. */
16980 if (want_address && !have_address)
16982 expansion_failed (loc, NULL_RTX,
16983 "Want address and only have value");
16984 return 0;
16987 /* If we've got an address and don't want one, dereference. */
16988 if (!want_address && have_address)
16990 HOST_WIDE_INT size = int_size_in_bytes (TREE_TYPE (loc));
16991 enum dwarf_location_atom op;
16993 if (size > DWARF2_ADDR_SIZE || size == -1)
16995 expansion_failed (loc, NULL_RTX,
16996 "DWARF address size mismatch");
16997 return 0;
16999 else if (size == DWARF2_ADDR_SIZE)
17000 op = DW_OP_deref;
17001 else
17002 op = DW_OP_deref_size;
17004 add_loc_descr (&descr, new_loc_descr (op, size, 0));
17007 return descr;
17010 /* Create a DW_OP_piece or DW_OP_bit_piece for bitsize, or return NULL
17011 if it is not possible. */
17013 static dw_loc_descr_ref
17014 new_loc_descr_op_bit_piece (HOST_WIDE_INT bitsize, HOST_WIDE_INT offset)
17016 if ((bitsize % BITS_PER_UNIT) == 0 && offset == 0)
17017 return new_loc_descr (DW_OP_piece, bitsize / BITS_PER_UNIT, 0);
17018 else if (dwarf_version >= 3 || !dwarf_strict)
17019 return new_loc_descr (DW_OP_bit_piece, bitsize, offset);
17020 else
17021 return NULL;
17024 /* Helper function for dw_loc_list. Compute proper Dwarf location descriptor
17025 for VAR_LOC_NOTE for variable DECL that has been optimized by SRA. */
17027 static dw_loc_descr_ref
17028 dw_sra_loc_expr (tree decl, rtx loc)
17030 rtx p;
17031 unsigned HOST_WIDE_INT padsize = 0;
17032 dw_loc_descr_ref descr, *descr_tail;
17033 unsigned HOST_WIDE_INT decl_size;
17034 rtx varloc;
17035 enum var_init_status initialized;
17037 if (DECL_SIZE (decl) == NULL
17038 || !tree_fits_uhwi_p (DECL_SIZE (decl)))
17039 return NULL;
17041 decl_size = tree_to_uhwi (DECL_SIZE (decl));
17042 descr = NULL;
17043 descr_tail = &descr;
17045 for (p = loc; p; p = XEXP (p, 1))
17047 unsigned HOST_WIDE_INT bitsize = decl_piece_bitsize (p);
17048 rtx loc_note = *decl_piece_varloc_ptr (p);
17049 dw_loc_descr_ref cur_descr;
17050 dw_loc_descr_ref *tail, last = NULL;
17051 unsigned HOST_WIDE_INT opsize = 0;
17053 if (loc_note == NULL_RTX
17054 || NOTE_VAR_LOCATION_LOC (loc_note) == NULL_RTX)
17056 padsize += bitsize;
17057 continue;
17059 initialized = NOTE_VAR_LOCATION_STATUS (loc_note);
17060 varloc = NOTE_VAR_LOCATION (loc_note);
17061 cur_descr = dw_loc_list_1 (decl, varloc, 2, initialized);
17062 if (cur_descr == NULL)
17064 padsize += bitsize;
17065 continue;
17068 /* Check that cur_descr either doesn't use
17069 DW_OP_*piece operations, or their sum is equal
17070 to bitsize. Otherwise we can't embed it. */
17071 for (tail = &cur_descr; *tail != NULL;
17072 tail = &(*tail)->dw_loc_next)
17073 if ((*tail)->dw_loc_opc == DW_OP_piece)
17075 opsize += (*tail)->dw_loc_oprnd1.v.val_unsigned
17076 * BITS_PER_UNIT;
17077 last = *tail;
17079 else if ((*tail)->dw_loc_opc == DW_OP_bit_piece)
17081 opsize += (*tail)->dw_loc_oprnd1.v.val_unsigned;
17082 last = *tail;
17085 if (last != NULL && opsize != bitsize)
17087 padsize += bitsize;
17088 /* Discard the current piece of the descriptor and release any
17089 addr_table entries it uses. */
17090 remove_loc_list_addr_table_entries (cur_descr);
17091 continue;
17094 /* If there is a hole, add DW_OP_*piece after empty DWARF
17095 expression, which means that those bits are optimized out. */
17096 if (padsize)
17098 if (padsize > decl_size)
17100 remove_loc_list_addr_table_entries (cur_descr);
17101 goto discard_descr;
17103 decl_size -= padsize;
17104 *descr_tail = new_loc_descr_op_bit_piece (padsize, 0);
17105 if (*descr_tail == NULL)
17107 remove_loc_list_addr_table_entries (cur_descr);
17108 goto discard_descr;
17110 descr_tail = &(*descr_tail)->dw_loc_next;
17111 padsize = 0;
17113 *descr_tail = cur_descr;
17114 descr_tail = tail;
17115 if (bitsize > decl_size)
17116 goto discard_descr;
17117 decl_size -= bitsize;
17118 if (last == NULL)
17120 HOST_WIDE_INT offset = 0;
17121 if (GET_CODE (varloc) == VAR_LOCATION
17122 && GET_CODE (PAT_VAR_LOCATION_LOC (varloc)) != PARALLEL)
17124 varloc = PAT_VAR_LOCATION_LOC (varloc);
17125 if (GET_CODE (varloc) == EXPR_LIST)
17126 varloc = XEXP (varloc, 0);
17130 if (GET_CODE (varloc) == CONST
17131 || GET_CODE (varloc) == SIGN_EXTEND
17132 || GET_CODE (varloc) == ZERO_EXTEND)
17133 varloc = XEXP (varloc, 0);
17134 else if (GET_CODE (varloc) == SUBREG)
17135 varloc = SUBREG_REG (varloc);
17136 else
17137 break;
17139 while (1);
17140 /* DW_OP_bit_size offset should be zero for register
17141 or implicit location descriptions and empty location
17142 descriptions, but for memory addresses needs big endian
17143 adjustment. */
17144 if (MEM_P (varloc))
17146 unsigned HOST_WIDE_INT memsize;
17147 if (!poly_uint64 (MEM_SIZE (varloc)).is_constant (&memsize))
17148 goto discard_descr;
17149 memsize *= BITS_PER_UNIT;
17150 if (memsize != bitsize)
17152 if (BYTES_BIG_ENDIAN != WORDS_BIG_ENDIAN
17153 && (memsize > BITS_PER_WORD || bitsize > BITS_PER_WORD))
17154 goto discard_descr;
17155 if (memsize < bitsize)
17156 goto discard_descr;
17157 if (BITS_BIG_ENDIAN)
17158 offset = memsize - bitsize;
17162 *descr_tail = new_loc_descr_op_bit_piece (bitsize, offset);
17163 if (*descr_tail == NULL)
17164 goto discard_descr;
17165 descr_tail = &(*descr_tail)->dw_loc_next;
17169 /* If there were any non-empty expressions, add padding till the end of
17170 the decl. */
17171 if (descr != NULL && decl_size != 0)
17173 *descr_tail = new_loc_descr_op_bit_piece (decl_size, 0);
17174 if (*descr_tail == NULL)
17175 goto discard_descr;
17177 return descr;
17179 discard_descr:
17180 /* Discard the descriptor and release any addr_table entries it uses. */
17181 remove_loc_list_addr_table_entries (descr);
17182 return NULL;
17185 /* Return the dwarf representation of the location list LOC_LIST of
17186 DECL. WANT_ADDRESS has the same meaning as in loc_list_from_tree
17187 function. */
17189 static dw_loc_list_ref
17190 dw_loc_list (var_loc_list *loc_list, tree decl, int want_address)
17192 const char *endname, *secname;
17193 var_loc_view endview;
17194 rtx varloc;
17195 enum var_init_status initialized;
17196 struct var_loc_node *node;
17197 dw_loc_descr_ref descr;
17198 char label_id[MAX_ARTIFICIAL_LABEL_BYTES];
17199 dw_loc_list_ref list = NULL;
17200 dw_loc_list_ref *listp = &list;
17202 /* Now that we know what section we are using for a base,
17203 actually construct the list of locations.
17204 The first location information is what is passed to the
17205 function that creates the location list, and the remaining
17206 locations just get added on to that list.
17207 Note that we only know the start address for a location
17208 (IE location changes), so to build the range, we use
17209 the range [current location start, next location start].
17210 This means we have to special case the last node, and generate
17211 a range of [last location start, end of function label]. */
17213 if (cfun && crtl->has_bb_partition)
17215 bool save_in_cold_section_p = in_cold_section_p;
17216 in_cold_section_p = first_function_block_is_cold;
17217 if (loc_list->last_before_switch == NULL)
17218 in_cold_section_p = !in_cold_section_p;
17219 secname = secname_for_decl (decl);
17220 in_cold_section_p = save_in_cold_section_p;
17222 else
17223 secname = secname_for_decl (decl);
17225 for (node = loc_list->first; node; node = node->next)
17227 bool range_across_switch = false;
17228 if (GET_CODE (node->loc) == EXPR_LIST
17229 || NOTE_VAR_LOCATION_LOC (node->loc) != NULL_RTX)
17231 if (GET_CODE (node->loc) == EXPR_LIST)
17233 descr = NULL;
17234 /* This requires DW_OP_{,bit_}piece, which is not usable
17235 inside DWARF expressions. */
17236 if (want_address == 2)
17237 descr = dw_sra_loc_expr (decl, node->loc);
17239 else
17241 initialized = NOTE_VAR_LOCATION_STATUS (node->loc);
17242 varloc = NOTE_VAR_LOCATION (node->loc);
17243 descr = dw_loc_list_1 (decl, varloc, want_address, initialized);
17245 if (descr)
17247 /* If section switch happens in between node->label
17248 and node->next->label (or end of function) and
17249 we can't emit it as a single entry list,
17250 emit two ranges, first one ending at the end
17251 of first partition and second one starting at the
17252 beginning of second partition. */
17253 if (node == loc_list->last_before_switch
17254 && (node != loc_list->first || loc_list->first->next
17255 /* If we are to emit a view number, we will emit
17256 a loclist rather than a single location
17257 expression for the entire function (see
17258 loc_list_has_views), so we have to split the
17259 range that straddles across partitions. */
17260 || !ZERO_VIEW_P (node->view))
17261 && current_function_decl)
17263 endname = cfun->fde->dw_fde_end;
17264 endview = 0;
17265 range_across_switch = true;
17267 /* The variable has a location between NODE->LABEL and
17268 NODE->NEXT->LABEL. */
17269 else if (node->next)
17270 endname = node->next->label, endview = node->next->view;
17271 /* If the variable has a location at the last label
17272 it keeps its location until the end of function. */
17273 else if (!current_function_decl)
17274 endname = text_end_label, endview = 0;
17275 else
17277 ASM_GENERATE_INTERNAL_LABEL (label_id, FUNC_END_LABEL,
17278 current_function_funcdef_no);
17279 endname = ggc_strdup (label_id);
17280 endview = 0;
17283 *listp = new_loc_list (descr, node->label, node->view,
17284 endname, endview, secname);
17285 if (TREE_CODE (decl) == PARM_DECL
17286 && node == loc_list->first
17287 && NOTE_P (node->loc)
17288 && strcmp (node->label, endname) == 0)
17289 (*listp)->force = true;
17290 listp = &(*listp)->dw_loc_next;
17294 if (cfun
17295 && crtl->has_bb_partition
17296 && node == loc_list->last_before_switch)
17298 bool save_in_cold_section_p = in_cold_section_p;
17299 in_cold_section_p = !first_function_block_is_cold;
17300 secname = secname_for_decl (decl);
17301 in_cold_section_p = save_in_cold_section_p;
17304 if (range_across_switch)
17306 if (GET_CODE (node->loc) == EXPR_LIST)
17307 descr = dw_sra_loc_expr (decl, node->loc);
17308 else
17310 initialized = NOTE_VAR_LOCATION_STATUS (node->loc);
17311 varloc = NOTE_VAR_LOCATION (node->loc);
17312 descr = dw_loc_list_1 (decl, varloc, want_address,
17313 initialized);
17315 gcc_assert (descr);
17316 /* The variable has a location between NODE->LABEL and
17317 NODE->NEXT->LABEL. */
17318 if (node->next)
17319 endname = node->next->label, endview = node->next->view;
17320 else
17321 endname = cfun->fde->dw_fde_second_end, endview = 0;
17322 *listp = new_loc_list (descr, cfun->fde->dw_fde_second_begin, 0,
17323 endname, endview, secname);
17324 listp = &(*listp)->dw_loc_next;
17328 /* Try to avoid the overhead of a location list emitting a location
17329 expression instead, but only if we didn't have more than one
17330 location entry in the first place. If some entries were not
17331 representable, we don't want to pretend a single entry that was
17332 applies to the entire scope in which the variable is
17333 available. */
17334 if (list && loc_list->first->next)
17335 gen_llsym (list);
17336 else
17337 maybe_gen_llsym (list);
17339 return list;
17342 /* Return if the loc_list has only single element and thus can be represented
17343 as location description. */
17345 static bool
17346 single_element_loc_list_p (dw_loc_list_ref list)
17348 gcc_assert (!list->dw_loc_next || list->ll_symbol);
17349 return !list->ll_symbol;
17352 /* Duplicate a single element of location list. */
17354 static inline dw_loc_descr_ref
17355 copy_loc_descr (dw_loc_descr_ref ref)
17357 dw_loc_descr_ref copy = ggc_alloc<dw_loc_descr_node> ();
17358 memcpy (copy, ref, sizeof (dw_loc_descr_node));
17359 return copy;
17362 /* To each location in list LIST append loc descr REF. */
17364 static void
17365 add_loc_descr_to_each (dw_loc_list_ref list, dw_loc_descr_ref ref)
17367 dw_loc_descr_ref copy;
17368 add_loc_descr (&list->expr, ref);
17369 list = list->dw_loc_next;
17370 while (list)
17372 copy = copy_loc_descr (ref);
17373 add_loc_descr (&list->expr, copy);
17374 while (copy->dw_loc_next)
17375 copy = copy->dw_loc_next = copy_loc_descr (copy->dw_loc_next);
17376 list = list->dw_loc_next;
17380 /* To each location in list LIST prepend loc descr REF. */
17382 static void
17383 prepend_loc_descr_to_each (dw_loc_list_ref list, dw_loc_descr_ref ref)
17385 dw_loc_descr_ref copy;
17386 dw_loc_descr_ref ref_end = list->expr;
17387 add_loc_descr (&ref, list->expr);
17388 list->expr = ref;
17389 list = list->dw_loc_next;
17390 while (list)
17392 dw_loc_descr_ref end = list->expr;
17393 list->expr = copy = copy_loc_descr (ref);
17394 while (copy->dw_loc_next != ref_end)
17395 copy = copy->dw_loc_next = copy_loc_descr (copy->dw_loc_next);
17396 copy->dw_loc_next = end;
17397 list = list->dw_loc_next;
17401 /* Given two lists RET and LIST
17402 produce location list that is result of adding expression in LIST
17403 to expression in RET on each position in program.
17404 Might be destructive on both RET and LIST.
17406 TODO: We handle only simple cases of RET or LIST having at most one
17407 element. General case would involve sorting the lists in program order
17408 and merging them that will need some additional work.
17409 Adding that will improve quality of debug info especially for SRA-ed
17410 structures. */
17412 static void
17413 add_loc_list (dw_loc_list_ref *ret, dw_loc_list_ref list)
17415 if (!list)
17416 return;
17417 if (!*ret)
17419 *ret = list;
17420 return;
17422 if (!list->dw_loc_next)
17424 add_loc_descr_to_each (*ret, list->expr);
17425 return;
17427 if (!(*ret)->dw_loc_next)
17429 prepend_loc_descr_to_each (list, (*ret)->expr);
17430 *ret = list;
17431 return;
17433 expansion_failed (NULL_TREE, NULL_RTX,
17434 "Don't know how to merge two non-trivial"
17435 " location lists.\n");
17436 *ret = NULL;
17437 return;
17440 /* LOC is constant expression. Try a luck, look it up in constant
17441 pool and return its loc_descr of its address. */
17443 static dw_loc_descr_ref
17444 cst_pool_loc_descr (tree loc)
17446 /* Get an RTL for this, if something has been emitted. */
17447 rtx rtl = lookup_constant_def (loc);
17449 if (!rtl || !MEM_P (rtl))
17451 gcc_assert (!rtl);
17452 return 0;
17454 gcc_assert (GET_CODE (XEXP (rtl, 0)) == SYMBOL_REF);
17456 /* TODO: We might get more coverage if we was actually delaying expansion
17457 of all expressions till end of compilation when constant pools are fully
17458 populated. */
17459 if (!TREE_ASM_WRITTEN (SYMBOL_REF_DECL (XEXP (rtl, 0))))
17461 expansion_failed (loc, NULL_RTX,
17462 "CST value in contant pool but not marked.");
17463 return 0;
17465 return mem_loc_descriptor (XEXP (rtl, 0), get_address_mode (rtl),
17466 GET_MODE (rtl), VAR_INIT_STATUS_INITIALIZED);
17469 /* Return dw_loc_list representing address of addr_expr LOC
17470 by looking for inner INDIRECT_REF expression and turning
17471 it into simple arithmetics.
17473 See loc_list_from_tree for the meaning of CONTEXT. */
17475 static dw_loc_list_ref
17476 loc_list_for_address_of_addr_expr_of_indirect_ref (tree loc, bool toplev,
17477 loc_descr_context *context)
17479 tree obj, offset;
17480 poly_int64 bitsize, bitpos, bytepos;
17481 machine_mode mode;
17482 int unsignedp, reversep, volatilep = 0;
17483 dw_loc_list_ref list_ret = NULL, list_ret1 = NULL;
17485 obj = get_inner_reference (TREE_OPERAND (loc, 0),
17486 &bitsize, &bitpos, &offset, &mode,
17487 &unsignedp, &reversep, &volatilep);
17488 STRIP_NOPS (obj);
17489 if (!multiple_p (bitpos, BITS_PER_UNIT, &bytepos))
17491 expansion_failed (loc, NULL_RTX, "bitfield access");
17492 return 0;
17494 if (!INDIRECT_REF_P (obj))
17496 expansion_failed (obj,
17497 NULL_RTX, "no indirect ref in inner refrence");
17498 return 0;
17500 if (!offset && known_eq (bitpos, 0))
17501 list_ret = loc_list_from_tree (TREE_OPERAND (obj, 0), toplev ? 2 : 1,
17502 context);
17503 else if (toplev
17504 && int_size_in_bytes (TREE_TYPE (loc)) <= DWARF2_ADDR_SIZE
17505 && (dwarf_version >= 4 || !dwarf_strict))
17507 list_ret = loc_list_from_tree (TREE_OPERAND (obj, 0), 0, context);
17508 if (!list_ret)
17509 return 0;
17510 if (offset)
17512 /* Variable offset. */
17513 list_ret1 = loc_list_from_tree (offset, 0, context);
17514 if (list_ret1 == 0)
17515 return 0;
17516 add_loc_list (&list_ret, list_ret1);
17517 if (!list_ret)
17518 return 0;
17519 add_loc_descr_to_each (list_ret,
17520 new_loc_descr (DW_OP_plus, 0, 0));
17522 HOST_WIDE_INT value;
17523 if (bytepos.is_constant (&value) && value > 0)
17524 add_loc_descr_to_each (list_ret,
17525 new_loc_descr (DW_OP_plus_uconst, value, 0));
17526 else if (maybe_ne (bytepos, 0))
17527 loc_list_plus_const (list_ret, bytepos);
17528 add_loc_descr_to_each (list_ret,
17529 new_loc_descr (DW_OP_stack_value, 0, 0));
17531 return list_ret;
17534 /* Set LOC to the next operation that is not a DW_OP_nop operation. In the case
17535 all operations from LOC are nops, move to the last one. Insert in NOPS all
17536 operations that are skipped. */
17538 static void
17539 loc_descr_to_next_no_nop (dw_loc_descr_ref &loc,
17540 hash_set<dw_loc_descr_ref> &nops)
17542 while (loc->dw_loc_next != NULL && loc->dw_loc_opc == DW_OP_nop)
17544 nops.add (loc);
17545 loc = loc->dw_loc_next;
17549 /* Helper for loc_descr_without_nops: free the location description operation
17550 P. */
17552 bool
17553 free_loc_descr (const dw_loc_descr_ref &loc, void *data ATTRIBUTE_UNUSED)
17555 ggc_free (loc);
17556 return true;
17559 /* Remove all DW_OP_nop operations from LOC except, if it exists, the one that
17560 finishes LOC. */
17562 static void
17563 loc_descr_without_nops (dw_loc_descr_ref &loc)
17565 if (loc->dw_loc_opc == DW_OP_nop && loc->dw_loc_next == NULL)
17566 return;
17568 /* Set of all DW_OP_nop operations we remove. */
17569 hash_set<dw_loc_descr_ref> nops;
17571 /* First, strip all prefix NOP operations in order to keep the head of the
17572 operations list. */
17573 loc_descr_to_next_no_nop (loc, nops);
17575 for (dw_loc_descr_ref cur = loc; cur != NULL;)
17577 /* For control flow operations: strip "prefix" nops in destination
17578 labels. */
17579 if (cur->dw_loc_oprnd1.val_class == dw_val_class_loc)
17580 loc_descr_to_next_no_nop (cur->dw_loc_oprnd1.v.val_loc, nops);
17581 if (cur->dw_loc_oprnd2.val_class == dw_val_class_loc)
17582 loc_descr_to_next_no_nop (cur->dw_loc_oprnd2.v.val_loc, nops);
17584 /* Do the same for the operations that follow, then move to the next
17585 iteration. */
17586 if (cur->dw_loc_next != NULL)
17587 loc_descr_to_next_no_nop (cur->dw_loc_next, nops);
17588 cur = cur->dw_loc_next;
17591 nops.traverse<void *, free_loc_descr> (NULL);
17595 struct dwarf_procedure_info;
17597 /* Helper structure for location descriptions generation. */
17598 struct loc_descr_context
17600 /* The type that is implicitly referenced by DW_OP_push_object_address, or
17601 NULL_TREE if DW_OP_push_object_address in invalid for this location
17602 description. This is used when processing PLACEHOLDER_EXPR nodes. */
17603 tree context_type;
17604 /* The ..._DECL node that should be translated as a
17605 DW_OP_push_object_address operation. */
17606 tree base_decl;
17607 /* Information about the DWARF procedure we are currently generating. NULL if
17608 we are not generating a DWARF procedure. */
17609 struct dwarf_procedure_info *dpi;
17610 /* True if integral PLACEHOLDER_EXPR stands for the first argument passed
17611 by consumer. Used for DW_TAG_generic_subrange attributes. */
17612 bool placeholder_arg;
17613 /* True if PLACEHOLDER_EXPR has been seen. */
17614 bool placeholder_seen;
17617 /* DWARF procedures generation
17619 DWARF expressions (aka. location descriptions) are used to encode variable
17620 things such as sizes or offsets. Such computations can have redundant parts
17621 that can be factorized in order to reduce the size of the output debug
17622 information. This is the whole point of DWARF procedures.
17624 Thanks to stor-layout.c, size and offset expressions in GENERIC trees are
17625 already factorized into functions ("size functions") in order to handle very
17626 big and complex types. Such functions are quite simple: they have integral
17627 arguments, they return an integral result and their body contains only a
17628 return statement with arithmetic expressions. This is the only kind of
17629 function we are interested in translating into DWARF procedures, here.
17631 DWARF expressions and DWARF procedure are executed using a stack, so we have
17632 to define some calling convention for them to interact. Let's say that:
17634 - Before calling a DWARF procedure, DWARF expressions must push on the stack
17635 all arguments in reverse order (right-to-left) so that when the DWARF
17636 procedure execution starts, the first argument is the top of the stack.
17638 - Then, when returning, the DWARF procedure must have consumed all arguments
17639 on the stack, must have pushed the result and touched nothing else.
17641 - Each integral argument and the result are integral types can be hold in a
17642 single stack slot.
17644 - We call "frame offset" the number of stack slots that are "under DWARF
17645 procedure control": it includes the arguments slots, the temporaries and
17646 the result slot. Thus, it is equal to the number of arguments when the
17647 procedure execution starts and must be equal to one (the result) when it
17648 returns. */
17650 /* Helper structure used when generating operations for a DWARF procedure. */
17651 struct dwarf_procedure_info
17653 /* The FUNCTION_DECL node corresponding to the DWARF procedure that is
17654 currently translated. */
17655 tree fndecl;
17656 /* The number of arguments FNDECL takes. */
17657 unsigned args_count;
17660 /* Return a pointer to a newly created DIE node for a DWARF procedure. Add
17661 LOCATION as its DW_AT_location attribute. If FNDECL is not NULL_TREE,
17662 equate it to this DIE. */
17664 static dw_die_ref
17665 new_dwarf_proc_die (dw_loc_descr_ref location, tree fndecl,
17666 dw_die_ref parent_die)
17668 dw_die_ref dwarf_proc_die;
17670 if ((dwarf_version < 3 && dwarf_strict)
17671 || location == NULL)
17672 return NULL;
17674 dwarf_proc_die = new_die (DW_TAG_dwarf_procedure, parent_die, fndecl);
17675 if (fndecl)
17676 equate_decl_number_to_die (fndecl, dwarf_proc_die);
17677 add_AT_loc (dwarf_proc_die, DW_AT_location, location);
17678 return dwarf_proc_die;
17681 /* Return whether TYPE is a supported type as a DWARF procedure argument
17682 type or return type (we handle only scalar types and pointer types that
17683 aren't wider than the DWARF expression evaluation stack. */
17685 static bool
17686 is_handled_procedure_type (tree type)
17688 return ((INTEGRAL_TYPE_P (type)
17689 || TREE_CODE (type) == OFFSET_TYPE
17690 || TREE_CODE (type) == POINTER_TYPE)
17691 && int_size_in_bytes (type) <= DWARF2_ADDR_SIZE);
17694 /* Helper for resolve_args_picking: do the same but stop when coming across
17695 visited nodes. For each node we visit, register in FRAME_OFFSETS the frame
17696 offset *before* evaluating the corresponding operation. */
17698 static bool
17699 resolve_args_picking_1 (dw_loc_descr_ref loc, unsigned initial_frame_offset,
17700 struct dwarf_procedure_info *dpi,
17701 hash_map<dw_loc_descr_ref, unsigned> &frame_offsets)
17703 /* The "frame_offset" identifier is already used to name a macro... */
17704 unsigned frame_offset_ = initial_frame_offset;
17705 dw_loc_descr_ref l;
17707 for (l = loc; l != NULL;)
17709 bool existed;
17710 unsigned &l_frame_offset = frame_offsets.get_or_insert (l, &existed);
17712 /* If we already met this node, there is nothing to compute anymore. */
17713 if (existed)
17715 /* Make sure that the stack size is consistent wherever the execution
17716 flow comes from. */
17717 gcc_assert ((unsigned) l_frame_offset == frame_offset_);
17718 break;
17720 l_frame_offset = frame_offset_;
17722 /* If needed, relocate the picking offset with respect to the frame
17723 offset. */
17724 if (l->frame_offset_rel)
17726 unsigned HOST_WIDE_INT off;
17727 switch (l->dw_loc_opc)
17729 case DW_OP_pick:
17730 off = l->dw_loc_oprnd1.v.val_unsigned;
17731 break;
17732 case DW_OP_dup:
17733 off = 0;
17734 break;
17735 case DW_OP_over:
17736 off = 1;
17737 break;
17738 default:
17739 gcc_unreachable ();
17741 /* frame_offset_ is the size of the current stack frame, including
17742 incoming arguments. Besides, the arguments are pushed
17743 right-to-left. Thus, in order to access the Nth argument from
17744 this operation node, the picking has to skip temporaries *plus*
17745 one stack slot per argument (0 for the first one, 1 for the second
17746 one, etc.).
17748 The targetted argument number (N) is already set as the operand,
17749 and the number of temporaries can be computed with:
17750 frame_offsets_ - dpi->args_count */
17751 off += frame_offset_ - dpi->args_count;
17753 /* DW_OP_pick handles only offsets from 0 to 255 (inclusive)... */
17754 if (off > 255)
17755 return false;
17757 if (off == 0)
17759 l->dw_loc_opc = DW_OP_dup;
17760 l->dw_loc_oprnd1.v.val_unsigned = 0;
17762 else if (off == 1)
17764 l->dw_loc_opc = DW_OP_over;
17765 l->dw_loc_oprnd1.v.val_unsigned = 0;
17767 else
17769 l->dw_loc_opc = DW_OP_pick;
17770 l->dw_loc_oprnd1.v.val_unsigned = off;
17774 /* Update frame_offset according to the effect the current operation has
17775 on the stack. */
17776 switch (l->dw_loc_opc)
17778 case DW_OP_deref:
17779 case DW_OP_swap:
17780 case DW_OP_rot:
17781 case DW_OP_abs:
17782 case DW_OP_neg:
17783 case DW_OP_not:
17784 case DW_OP_plus_uconst:
17785 case DW_OP_skip:
17786 case DW_OP_reg0:
17787 case DW_OP_reg1:
17788 case DW_OP_reg2:
17789 case DW_OP_reg3:
17790 case DW_OP_reg4:
17791 case DW_OP_reg5:
17792 case DW_OP_reg6:
17793 case DW_OP_reg7:
17794 case DW_OP_reg8:
17795 case DW_OP_reg9:
17796 case DW_OP_reg10:
17797 case DW_OP_reg11:
17798 case DW_OP_reg12:
17799 case DW_OP_reg13:
17800 case DW_OP_reg14:
17801 case DW_OP_reg15:
17802 case DW_OP_reg16:
17803 case DW_OP_reg17:
17804 case DW_OP_reg18:
17805 case DW_OP_reg19:
17806 case DW_OP_reg20:
17807 case DW_OP_reg21:
17808 case DW_OP_reg22:
17809 case DW_OP_reg23:
17810 case DW_OP_reg24:
17811 case DW_OP_reg25:
17812 case DW_OP_reg26:
17813 case DW_OP_reg27:
17814 case DW_OP_reg28:
17815 case DW_OP_reg29:
17816 case DW_OP_reg30:
17817 case DW_OP_reg31:
17818 case DW_OP_bregx:
17819 case DW_OP_piece:
17820 case DW_OP_deref_size:
17821 case DW_OP_nop:
17822 case DW_OP_bit_piece:
17823 case DW_OP_implicit_value:
17824 case DW_OP_stack_value:
17825 break;
17827 case DW_OP_addr:
17828 case DW_OP_const1u:
17829 case DW_OP_const1s:
17830 case DW_OP_const2u:
17831 case DW_OP_const2s:
17832 case DW_OP_const4u:
17833 case DW_OP_const4s:
17834 case DW_OP_const8u:
17835 case DW_OP_const8s:
17836 case DW_OP_constu:
17837 case DW_OP_consts:
17838 case DW_OP_dup:
17839 case DW_OP_over:
17840 case DW_OP_pick:
17841 case DW_OP_lit0:
17842 case DW_OP_lit1:
17843 case DW_OP_lit2:
17844 case DW_OP_lit3:
17845 case DW_OP_lit4:
17846 case DW_OP_lit5:
17847 case DW_OP_lit6:
17848 case DW_OP_lit7:
17849 case DW_OP_lit8:
17850 case DW_OP_lit9:
17851 case DW_OP_lit10:
17852 case DW_OP_lit11:
17853 case DW_OP_lit12:
17854 case DW_OP_lit13:
17855 case DW_OP_lit14:
17856 case DW_OP_lit15:
17857 case DW_OP_lit16:
17858 case DW_OP_lit17:
17859 case DW_OP_lit18:
17860 case DW_OP_lit19:
17861 case DW_OP_lit20:
17862 case DW_OP_lit21:
17863 case DW_OP_lit22:
17864 case DW_OP_lit23:
17865 case DW_OP_lit24:
17866 case DW_OP_lit25:
17867 case DW_OP_lit26:
17868 case DW_OP_lit27:
17869 case DW_OP_lit28:
17870 case DW_OP_lit29:
17871 case DW_OP_lit30:
17872 case DW_OP_lit31:
17873 case DW_OP_breg0:
17874 case DW_OP_breg1:
17875 case DW_OP_breg2:
17876 case DW_OP_breg3:
17877 case DW_OP_breg4:
17878 case DW_OP_breg5:
17879 case DW_OP_breg6:
17880 case DW_OP_breg7:
17881 case DW_OP_breg8:
17882 case DW_OP_breg9:
17883 case DW_OP_breg10:
17884 case DW_OP_breg11:
17885 case DW_OP_breg12:
17886 case DW_OP_breg13:
17887 case DW_OP_breg14:
17888 case DW_OP_breg15:
17889 case DW_OP_breg16:
17890 case DW_OP_breg17:
17891 case DW_OP_breg18:
17892 case DW_OP_breg19:
17893 case DW_OP_breg20:
17894 case DW_OP_breg21:
17895 case DW_OP_breg22:
17896 case DW_OP_breg23:
17897 case DW_OP_breg24:
17898 case DW_OP_breg25:
17899 case DW_OP_breg26:
17900 case DW_OP_breg27:
17901 case DW_OP_breg28:
17902 case DW_OP_breg29:
17903 case DW_OP_breg30:
17904 case DW_OP_breg31:
17905 case DW_OP_fbreg:
17906 case DW_OP_push_object_address:
17907 case DW_OP_call_frame_cfa:
17908 case DW_OP_GNU_variable_value:
17909 ++frame_offset_;
17910 break;
17912 case DW_OP_drop:
17913 case DW_OP_xderef:
17914 case DW_OP_and:
17915 case DW_OP_div:
17916 case DW_OP_minus:
17917 case DW_OP_mod:
17918 case DW_OP_mul:
17919 case DW_OP_or:
17920 case DW_OP_plus:
17921 case DW_OP_shl:
17922 case DW_OP_shr:
17923 case DW_OP_shra:
17924 case DW_OP_xor:
17925 case DW_OP_bra:
17926 case DW_OP_eq:
17927 case DW_OP_ge:
17928 case DW_OP_gt:
17929 case DW_OP_le:
17930 case DW_OP_lt:
17931 case DW_OP_ne:
17932 case DW_OP_regx:
17933 case DW_OP_xderef_size:
17934 --frame_offset_;
17935 break;
17937 case DW_OP_call2:
17938 case DW_OP_call4:
17939 case DW_OP_call_ref:
17941 dw_die_ref dwarf_proc = l->dw_loc_oprnd1.v.val_die_ref.die;
17942 int *stack_usage = dwarf_proc_stack_usage_map->get (dwarf_proc);
17944 if (stack_usage == NULL)
17945 return false;
17946 frame_offset_ += *stack_usage;
17947 break;
17950 case DW_OP_implicit_pointer:
17951 case DW_OP_entry_value:
17952 case DW_OP_const_type:
17953 case DW_OP_regval_type:
17954 case DW_OP_deref_type:
17955 case DW_OP_convert:
17956 case DW_OP_reinterpret:
17957 case DW_OP_form_tls_address:
17958 case DW_OP_GNU_push_tls_address:
17959 case DW_OP_GNU_uninit:
17960 case DW_OP_GNU_encoded_addr:
17961 case DW_OP_GNU_implicit_pointer:
17962 case DW_OP_GNU_entry_value:
17963 case DW_OP_GNU_const_type:
17964 case DW_OP_GNU_regval_type:
17965 case DW_OP_GNU_deref_type:
17966 case DW_OP_GNU_convert:
17967 case DW_OP_GNU_reinterpret:
17968 case DW_OP_GNU_parameter_ref:
17969 /* loc_list_from_tree will probably not output these operations for
17970 size functions, so assume they will not appear here. */
17971 /* Fall through... */
17973 default:
17974 gcc_unreachable ();
17977 /* Now, follow the control flow (except subroutine calls). */
17978 switch (l->dw_loc_opc)
17980 case DW_OP_bra:
17981 if (!resolve_args_picking_1 (l->dw_loc_next, frame_offset_, dpi,
17982 frame_offsets))
17983 return false;
17984 /* Fall through. */
17986 case DW_OP_skip:
17987 l = l->dw_loc_oprnd1.v.val_loc;
17988 break;
17990 case DW_OP_stack_value:
17991 return true;
17993 default:
17994 l = l->dw_loc_next;
17995 break;
17999 return true;
18002 /* Make a DFS over operations reachable through LOC (i.e. follow branch
18003 operations) in order to resolve the operand of DW_OP_pick operations that
18004 target DWARF procedure arguments (DPI). INITIAL_FRAME_OFFSET is the frame
18005 offset *before* LOC is executed. Return if all relocations were
18006 successful. */
18008 static bool
18009 resolve_args_picking (dw_loc_descr_ref loc, unsigned initial_frame_offset,
18010 struct dwarf_procedure_info *dpi)
18012 /* Associate to all visited operations the frame offset *before* evaluating
18013 this operation. */
18014 hash_map<dw_loc_descr_ref, unsigned> frame_offsets;
18016 return resolve_args_picking_1 (loc, initial_frame_offset, dpi,
18017 frame_offsets);
18020 /* Try to generate a DWARF procedure that computes the same result as FNDECL.
18021 Return NULL if it is not possible. */
18023 static dw_die_ref
18024 function_to_dwarf_procedure (tree fndecl)
18026 struct loc_descr_context ctx;
18027 struct dwarf_procedure_info dpi;
18028 dw_die_ref dwarf_proc_die;
18029 tree tree_body = DECL_SAVED_TREE (fndecl);
18030 dw_loc_descr_ref loc_body, epilogue;
18032 tree cursor;
18033 unsigned i;
18035 /* Do not generate multiple DWARF procedures for the same function
18036 declaration. */
18037 dwarf_proc_die = lookup_decl_die (fndecl);
18038 if (dwarf_proc_die != NULL)
18039 return dwarf_proc_die;
18041 /* DWARF procedures are available starting with the DWARFv3 standard. */
18042 if (dwarf_version < 3 && dwarf_strict)
18043 return NULL;
18045 /* We handle only functions for which we still have a body, that return a
18046 supported type and that takes arguments with supported types. Note that
18047 there is no point translating functions that return nothing. */
18048 if (tree_body == NULL_TREE
18049 || DECL_RESULT (fndecl) == NULL_TREE
18050 || !is_handled_procedure_type (TREE_TYPE (DECL_RESULT (fndecl))))
18051 return NULL;
18053 for (cursor = DECL_ARGUMENTS (fndecl);
18054 cursor != NULL_TREE;
18055 cursor = TREE_CHAIN (cursor))
18056 if (!is_handled_procedure_type (TREE_TYPE (cursor)))
18057 return NULL;
18059 /* Match only "expr" in: RETURN_EXPR (MODIFY_EXPR (RESULT_DECL, expr)). */
18060 if (TREE_CODE (tree_body) != RETURN_EXPR)
18061 return NULL;
18062 tree_body = TREE_OPERAND (tree_body, 0);
18063 if (TREE_CODE (tree_body) != MODIFY_EXPR
18064 || TREE_OPERAND (tree_body, 0) != DECL_RESULT (fndecl))
18065 return NULL;
18066 tree_body = TREE_OPERAND (tree_body, 1);
18068 /* Try to translate the body expression itself. Note that this will probably
18069 cause an infinite recursion if its call graph has a cycle. This is very
18070 unlikely for size functions, however, so don't bother with such things at
18071 the moment. */
18072 ctx.context_type = NULL_TREE;
18073 ctx.base_decl = NULL_TREE;
18074 ctx.dpi = &dpi;
18075 ctx.placeholder_arg = false;
18076 ctx.placeholder_seen = false;
18077 dpi.fndecl = fndecl;
18078 dpi.args_count = list_length (DECL_ARGUMENTS (fndecl));
18079 loc_body = loc_descriptor_from_tree (tree_body, 0, &ctx);
18080 if (!loc_body)
18081 return NULL;
18083 /* After evaluating all operands in "loc_body", we should still have on the
18084 stack all arguments plus the desired function result (top of the stack).
18085 Generate code in order to keep only the result in our stack frame. */
18086 epilogue = NULL;
18087 for (i = 0; i < dpi.args_count; ++i)
18089 dw_loc_descr_ref op_couple = new_loc_descr (DW_OP_swap, 0, 0);
18090 op_couple->dw_loc_next = new_loc_descr (DW_OP_drop, 0, 0);
18091 op_couple->dw_loc_next->dw_loc_next = epilogue;
18092 epilogue = op_couple;
18094 add_loc_descr (&loc_body, epilogue);
18095 if (!resolve_args_picking (loc_body, dpi.args_count, &dpi))
18096 return NULL;
18098 /* Trailing nops from loc_descriptor_from_tree (if any) cannot be removed
18099 because they are considered useful. Now there is an epilogue, they are
18100 not anymore, so give it another try. */
18101 loc_descr_without_nops (loc_body);
18103 /* fndecl may be used both as a regular DW_TAG_subprogram DIE and as
18104 a DW_TAG_dwarf_procedure, so we may have a conflict, here. It's unlikely,
18105 though, given that size functions do not come from source, so they should
18106 not have a dedicated DW_TAG_subprogram DIE. */
18107 dwarf_proc_die
18108 = new_dwarf_proc_die (loc_body, fndecl,
18109 get_context_die (DECL_CONTEXT (fndecl)));
18111 /* The called DWARF procedure consumes one stack slot per argument and
18112 returns one stack slot. */
18113 dwarf_proc_stack_usage_map->put (dwarf_proc_die, 1 - dpi.args_count);
18115 return dwarf_proc_die;
18119 /* Generate Dwarf location list representing LOC.
18120 If WANT_ADDRESS is false, expression computing LOC will be computed
18121 If WANT_ADDRESS is 1, expression computing address of LOC will be returned
18122 if WANT_ADDRESS is 2, expression computing address useable in location
18123 will be returned (i.e. DW_OP_reg can be used
18124 to refer to register values).
18126 CONTEXT provides information to customize the location descriptions
18127 generation. Its context_type field specifies what type is implicitly
18128 referenced by DW_OP_push_object_address. If it is NULL_TREE, this operation
18129 will not be generated.
18131 Its DPI field determines whether we are generating a DWARF expression for a
18132 DWARF procedure, so PARM_DECL references are processed specifically.
18134 If CONTEXT is NULL, the behavior is the same as if context_type, base_decl
18135 and dpi fields were null. */
18137 static dw_loc_list_ref
18138 loc_list_from_tree_1 (tree loc, int want_address,
18139 struct loc_descr_context *context)
18141 dw_loc_descr_ref ret = NULL, ret1 = NULL;
18142 dw_loc_list_ref list_ret = NULL, list_ret1 = NULL;
18143 int have_address = 0;
18144 enum dwarf_location_atom op;
18146 /* ??? Most of the time we do not take proper care for sign/zero
18147 extending the values properly. Hopefully this won't be a real
18148 problem... */
18150 if (context != NULL
18151 && context->base_decl == loc
18152 && want_address == 0)
18154 if (dwarf_version >= 3 || !dwarf_strict)
18155 return new_loc_list (new_loc_descr (DW_OP_push_object_address, 0, 0),
18156 NULL, 0, NULL, 0, NULL);
18157 else
18158 return NULL;
18161 switch (TREE_CODE (loc))
18163 case ERROR_MARK:
18164 expansion_failed (loc, NULL_RTX, "ERROR_MARK");
18165 return 0;
18167 case PLACEHOLDER_EXPR:
18168 /* This case involves extracting fields from an object to determine the
18169 position of other fields. It is supposed to appear only as the first
18170 operand of COMPONENT_REF nodes and to reference precisely the type
18171 that the context allows. */
18172 if (context != NULL
18173 && TREE_TYPE (loc) == context->context_type
18174 && want_address >= 1)
18176 if (dwarf_version >= 3 || !dwarf_strict)
18178 ret = new_loc_descr (DW_OP_push_object_address, 0, 0);
18179 have_address = 1;
18180 break;
18182 else
18183 return NULL;
18185 /* For DW_TAG_generic_subrange attributes, PLACEHOLDER_EXPR stands for
18186 the single argument passed by consumer. */
18187 else if (context != NULL
18188 && context->placeholder_arg
18189 && INTEGRAL_TYPE_P (TREE_TYPE (loc))
18190 && want_address == 0)
18192 ret = new_loc_descr (DW_OP_pick, 0, 0);
18193 ret->frame_offset_rel = 1;
18194 context->placeholder_seen = true;
18195 break;
18197 else
18198 expansion_failed (loc, NULL_RTX,
18199 "PLACEHOLDER_EXPR for an unexpected type");
18200 break;
18202 case CALL_EXPR:
18204 const int nargs = call_expr_nargs (loc);
18205 tree callee = get_callee_fndecl (loc);
18206 int i;
18207 dw_die_ref dwarf_proc;
18209 if (callee == NULL_TREE)
18210 goto call_expansion_failed;
18212 /* We handle only functions that return an integer. */
18213 if (!is_handled_procedure_type (TREE_TYPE (TREE_TYPE (callee))))
18214 goto call_expansion_failed;
18216 dwarf_proc = function_to_dwarf_procedure (callee);
18217 if (dwarf_proc == NULL)
18218 goto call_expansion_failed;
18220 /* Evaluate arguments right-to-left so that the first argument will
18221 be the top-most one on the stack. */
18222 for (i = nargs - 1; i >= 0; --i)
18224 dw_loc_descr_ref loc_descr
18225 = loc_descriptor_from_tree (CALL_EXPR_ARG (loc, i), 0,
18226 context);
18228 if (loc_descr == NULL)
18229 goto call_expansion_failed;
18231 add_loc_descr (&ret, loc_descr);
18234 ret1 = new_loc_descr (DW_OP_call4, 0, 0);
18235 ret1->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
18236 ret1->dw_loc_oprnd1.v.val_die_ref.die = dwarf_proc;
18237 ret1->dw_loc_oprnd1.v.val_die_ref.external = 0;
18238 add_loc_descr (&ret, ret1);
18239 break;
18241 call_expansion_failed:
18242 expansion_failed (loc, NULL_RTX, "CALL_EXPR");
18243 /* There are no opcodes for these operations. */
18244 return 0;
18247 case PREINCREMENT_EXPR:
18248 case PREDECREMENT_EXPR:
18249 case POSTINCREMENT_EXPR:
18250 case POSTDECREMENT_EXPR:
18251 expansion_failed (loc, NULL_RTX, "PRE/POST INDCREMENT/DECREMENT");
18252 /* There are no opcodes for these operations. */
18253 return 0;
18255 case ADDR_EXPR:
18256 /* If we already want an address, see if there is INDIRECT_REF inside
18257 e.g. for &this->field. */
18258 if (want_address)
18260 list_ret = loc_list_for_address_of_addr_expr_of_indirect_ref
18261 (loc, want_address == 2, context);
18262 if (list_ret)
18263 have_address = 1;
18264 else if (decl_address_ip_invariant_p (TREE_OPERAND (loc, 0))
18265 && (ret = cst_pool_loc_descr (loc)))
18266 have_address = 1;
18268 /* Otherwise, process the argument and look for the address. */
18269 if (!list_ret && !ret)
18270 list_ret = loc_list_from_tree_1 (TREE_OPERAND (loc, 0), 1, context);
18271 else
18273 if (want_address)
18274 expansion_failed (loc, NULL_RTX, "need address of ADDR_EXPR");
18275 return NULL;
18277 break;
18279 case VAR_DECL:
18280 if (DECL_THREAD_LOCAL_P (loc))
18282 rtx rtl;
18283 enum dwarf_location_atom tls_op;
18284 enum dtprel_bool dtprel = dtprel_false;
18286 if (targetm.have_tls)
18288 /* If this is not defined, we have no way to emit the
18289 data. */
18290 if (!targetm.asm_out.output_dwarf_dtprel)
18291 return 0;
18293 /* The way DW_OP_GNU_push_tls_address is specified, we
18294 can only look up addresses of objects in the current
18295 module. We used DW_OP_addr as first op, but that's
18296 wrong, because DW_OP_addr is relocated by the debug
18297 info consumer, while DW_OP_GNU_push_tls_address
18298 operand shouldn't be. */
18299 if (DECL_EXTERNAL (loc) && !targetm.binds_local_p (loc))
18300 return 0;
18301 dtprel = dtprel_true;
18302 /* We check for DWARF 5 here because gdb did not implement
18303 DW_OP_form_tls_address until after 7.12. */
18304 tls_op = (dwarf_version >= 5 ? DW_OP_form_tls_address
18305 : DW_OP_GNU_push_tls_address);
18307 else
18309 if (!targetm.emutls.debug_form_tls_address
18310 || !(dwarf_version >= 3 || !dwarf_strict))
18311 return 0;
18312 /* We stuffed the control variable into the DECL_VALUE_EXPR
18313 to signal (via DECL_HAS_VALUE_EXPR_P) that the decl should
18314 no longer appear in gimple code. We used the control
18315 variable in specific so that we could pick it up here. */
18316 loc = DECL_VALUE_EXPR (loc);
18317 tls_op = DW_OP_form_tls_address;
18320 rtl = rtl_for_decl_location (loc);
18321 if (rtl == NULL_RTX)
18322 return 0;
18324 if (!MEM_P (rtl))
18325 return 0;
18326 rtl = XEXP (rtl, 0);
18327 if (! CONSTANT_P (rtl))
18328 return 0;
18330 ret = new_addr_loc_descr (rtl, dtprel);
18331 ret1 = new_loc_descr (tls_op, 0, 0);
18332 add_loc_descr (&ret, ret1);
18334 have_address = 1;
18335 break;
18337 /* FALLTHRU */
18339 case PARM_DECL:
18340 if (context != NULL && context->dpi != NULL
18341 && DECL_CONTEXT (loc) == context->dpi->fndecl)
18343 /* We are generating code for a DWARF procedure and we want to access
18344 one of its arguments: find the appropriate argument offset and let
18345 the resolve_args_picking pass compute the offset that complies
18346 with the stack frame size. */
18347 unsigned i = 0;
18348 tree cursor;
18350 for (cursor = DECL_ARGUMENTS (context->dpi->fndecl);
18351 cursor != NULL_TREE && cursor != loc;
18352 cursor = TREE_CHAIN (cursor), ++i)
18354 /* If we are translating a DWARF procedure, all referenced parameters
18355 must belong to the current function. */
18356 gcc_assert (cursor != NULL_TREE);
18358 ret = new_loc_descr (DW_OP_pick, i, 0);
18359 ret->frame_offset_rel = 1;
18360 break;
18362 /* FALLTHRU */
18364 case RESULT_DECL:
18365 if (DECL_HAS_VALUE_EXPR_P (loc))
18366 return loc_list_from_tree_1 (DECL_VALUE_EXPR (loc),
18367 want_address, context);
18368 /* FALLTHRU */
18370 case FUNCTION_DECL:
18372 rtx rtl;
18373 var_loc_list *loc_list = lookup_decl_loc (loc);
18375 if (loc_list && loc_list->first)
18377 list_ret = dw_loc_list (loc_list, loc, want_address);
18378 have_address = want_address != 0;
18379 break;
18381 rtl = rtl_for_decl_location (loc);
18382 if (rtl == NULL_RTX)
18384 if (TREE_CODE (loc) != FUNCTION_DECL
18385 && early_dwarf
18386 && current_function_decl
18387 && want_address != 1
18388 && ! DECL_IGNORED_P (loc)
18389 && (INTEGRAL_TYPE_P (TREE_TYPE (loc))
18390 || POINTER_TYPE_P (TREE_TYPE (loc)))
18391 && DECL_CONTEXT (loc) == current_function_decl
18392 && (GET_MODE_SIZE (SCALAR_INT_TYPE_MODE (TREE_TYPE (loc)))
18393 <= DWARF2_ADDR_SIZE))
18395 dw_die_ref ref = lookup_decl_die (loc);
18396 ret = new_loc_descr (DW_OP_GNU_variable_value, 0, 0);
18397 if (ref)
18399 ret->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
18400 ret->dw_loc_oprnd1.v.val_die_ref.die = ref;
18401 ret->dw_loc_oprnd1.v.val_die_ref.external = 0;
18403 else
18405 ret->dw_loc_oprnd1.val_class = dw_val_class_decl_ref;
18406 ret->dw_loc_oprnd1.v.val_decl_ref = loc;
18408 break;
18410 expansion_failed (loc, NULL_RTX, "DECL has no RTL");
18411 return 0;
18413 else if (CONST_INT_P (rtl))
18415 HOST_WIDE_INT val = INTVAL (rtl);
18416 if (TYPE_UNSIGNED (TREE_TYPE (loc)))
18417 val &= GET_MODE_MASK (DECL_MODE (loc));
18418 ret = int_loc_descriptor (val);
18420 else if (GET_CODE (rtl) == CONST_STRING)
18422 expansion_failed (loc, NULL_RTX, "CONST_STRING");
18423 return 0;
18425 else if (CONSTANT_P (rtl) && const_ok_for_output (rtl))
18426 ret = new_addr_loc_descr (rtl, dtprel_false);
18427 else
18429 machine_mode mode, mem_mode;
18431 /* Certain constructs can only be represented at top-level. */
18432 if (want_address == 2)
18434 ret = loc_descriptor (rtl, VOIDmode,
18435 VAR_INIT_STATUS_INITIALIZED);
18436 have_address = 1;
18438 else
18440 mode = GET_MODE (rtl);
18441 mem_mode = VOIDmode;
18442 if (MEM_P (rtl))
18444 mem_mode = mode;
18445 mode = get_address_mode (rtl);
18446 rtl = XEXP (rtl, 0);
18447 have_address = 1;
18449 ret = mem_loc_descriptor (rtl, mode, mem_mode,
18450 VAR_INIT_STATUS_INITIALIZED);
18452 if (!ret)
18453 expansion_failed (loc, rtl,
18454 "failed to produce loc descriptor for rtl");
18457 break;
18459 case MEM_REF:
18460 if (!integer_zerop (TREE_OPERAND (loc, 1)))
18462 have_address = 1;
18463 goto do_plus;
18465 /* Fallthru. */
18466 case INDIRECT_REF:
18467 list_ret = loc_list_from_tree_1 (TREE_OPERAND (loc, 0), 0, context);
18468 have_address = 1;
18469 break;
18471 case TARGET_MEM_REF:
18472 case SSA_NAME:
18473 case DEBUG_EXPR_DECL:
18474 return NULL;
18476 case COMPOUND_EXPR:
18477 return loc_list_from_tree_1 (TREE_OPERAND (loc, 1), want_address,
18478 context);
18480 CASE_CONVERT:
18481 case VIEW_CONVERT_EXPR:
18482 case SAVE_EXPR:
18483 case MODIFY_EXPR:
18484 case NON_LVALUE_EXPR:
18485 return loc_list_from_tree_1 (TREE_OPERAND (loc, 0), want_address,
18486 context);
18488 case COMPONENT_REF:
18489 case BIT_FIELD_REF:
18490 case ARRAY_REF:
18491 case ARRAY_RANGE_REF:
18492 case REALPART_EXPR:
18493 case IMAGPART_EXPR:
18495 tree obj, offset;
18496 poly_int64 bitsize, bitpos, bytepos;
18497 machine_mode mode;
18498 int unsignedp, reversep, volatilep = 0;
18500 obj = get_inner_reference (loc, &bitsize, &bitpos, &offset, &mode,
18501 &unsignedp, &reversep, &volatilep);
18503 gcc_assert (obj != loc);
18505 list_ret = loc_list_from_tree_1 (obj,
18506 want_address == 2
18507 && known_eq (bitpos, 0)
18508 && !offset ? 2 : 1,
18509 context);
18510 /* TODO: We can extract value of the small expression via shifting even
18511 for nonzero bitpos. */
18512 if (list_ret == 0)
18513 return 0;
18514 if (!multiple_p (bitpos, BITS_PER_UNIT, &bytepos)
18515 || !multiple_p (bitsize, BITS_PER_UNIT))
18517 expansion_failed (loc, NULL_RTX,
18518 "bitfield access");
18519 return 0;
18522 if (offset != NULL_TREE)
18524 /* Variable offset. */
18525 list_ret1 = loc_list_from_tree_1 (offset, 0, context);
18526 if (list_ret1 == 0)
18527 return 0;
18528 add_loc_list (&list_ret, list_ret1);
18529 if (!list_ret)
18530 return 0;
18531 add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_plus, 0, 0));
18534 HOST_WIDE_INT value;
18535 if (bytepos.is_constant (&value) && value > 0)
18536 add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_plus_uconst,
18537 value, 0));
18538 else if (maybe_ne (bytepos, 0))
18539 loc_list_plus_const (list_ret, bytepos);
18541 have_address = 1;
18542 break;
18545 case INTEGER_CST:
18546 if ((want_address || !tree_fits_shwi_p (loc))
18547 && (ret = cst_pool_loc_descr (loc)))
18548 have_address = 1;
18549 else if (want_address == 2
18550 && tree_fits_shwi_p (loc)
18551 && (ret = address_of_int_loc_descriptor
18552 (int_size_in_bytes (TREE_TYPE (loc)),
18553 tree_to_shwi (loc))))
18554 have_address = 1;
18555 else if (tree_fits_shwi_p (loc))
18556 ret = int_loc_descriptor (tree_to_shwi (loc));
18557 else if (tree_fits_uhwi_p (loc))
18558 ret = uint_loc_descriptor (tree_to_uhwi (loc));
18559 else
18561 expansion_failed (loc, NULL_RTX,
18562 "Integer operand is not host integer");
18563 return 0;
18565 break;
18567 case CONSTRUCTOR:
18568 case REAL_CST:
18569 case STRING_CST:
18570 case COMPLEX_CST:
18571 if ((ret = cst_pool_loc_descr (loc)))
18572 have_address = 1;
18573 else if (TREE_CODE (loc) == CONSTRUCTOR)
18575 tree type = TREE_TYPE (loc);
18576 unsigned HOST_WIDE_INT size = int_size_in_bytes (type);
18577 unsigned HOST_WIDE_INT offset = 0;
18578 unsigned HOST_WIDE_INT cnt;
18579 constructor_elt *ce;
18581 if (TREE_CODE (type) == RECORD_TYPE)
18583 /* This is very limited, but it's enough to output
18584 pointers to member functions, as long as the
18585 referenced function is defined in the current
18586 translation unit. */
18587 FOR_EACH_VEC_SAFE_ELT (CONSTRUCTOR_ELTS (loc), cnt, ce)
18589 tree val = ce->value;
18591 tree field = ce->index;
18593 if (val)
18594 STRIP_NOPS (val);
18596 if (!field || DECL_BIT_FIELD (field))
18598 expansion_failed (loc, NULL_RTX,
18599 "bitfield in record type constructor");
18600 size = offset = (unsigned HOST_WIDE_INT)-1;
18601 ret = NULL;
18602 break;
18605 HOST_WIDE_INT fieldsize = tree_to_shwi (DECL_SIZE_UNIT (field));
18606 unsigned HOST_WIDE_INT pos = int_byte_position (field);
18607 gcc_assert (pos + fieldsize <= size);
18608 if (pos < offset)
18610 expansion_failed (loc, NULL_RTX,
18611 "out-of-order fields in record constructor");
18612 size = offset = (unsigned HOST_WIDE_INT)-1;
18613 ret = NULL;
18614 break;
18616 if (pos > offset)
18618 ret1 = new_loc_descr (DW_OP_piece, pos - offset, 0);
18619 add_loc_descr (&ret, ret1);
18620 offset = pos;
18622 if (val && fieldsize != 0)
18624 ret1 = loc_descriptor_from_tree (val, want_address, context);
18625 if (!ret1)
18627 expansion_failed (loc, NULL_RTX,
18628 "unsupported expression in field");
18629 size = offset = (unsigned HOST_WIDE_INT)-1;
18630 ret = NULL;
18631 break;
18633 add_loc_descr (&ret, ret1);
18635 if (fieldsize)
18637 ret1 = new_loc_descr (DW_OP_piece, fieldsize, 0);
18638 add_loc_descr (&ret, ret1);
18639 offset = pos + fieldsize;
18643 if (offset != size)
18645 ret1 = new_loc_descr (DW_OP_piece, size - offset, 0);
18646 add_loc_descr (&ret, ret1);
18647 offset = size;
18650 have_address = !!want_address;
18652 else
18653 expansion_failed (loc, NULL_RTX,
18654 "constructor of non-record type");
18656 else
18657 /* We can construct small constants here using int_loc_descriptor. */
18658 expansion_failed (loc, NULL_RTX,
18659 "constructor or constant not in constant pool");
18660 break;
18662 case TRUTH_AND_EXPR:
18663 case TRUTH_ANDIF_EXPR:
18664 case BIT_AND_EXPR:
18665 op = DW_OP_and;
18666 goto do_binop;
18668 case TRUTH_XOR_EXPR:
18669 case BIT_XOR_EXPR:
18670 op = DW_OP_xor;
18671 goto do_binop;
18673 case TRUTH_OR_EXPR:
18674 case TRUTH_ORIF_EXPR:
18675 case BIT_IOR_EXPR:
18676 op = DW_OP_or;
18677 goto do_binop;
18679 case FLOOR_DIV_EXPR:
18680 case CEIL_DIV_EXPR:
18681 case ROUND_DIV_EXPR:
18682 case TRUNC_DIV_EXPR:
18683 case EXACT_DIV_EXPR:
18684 if (TYPE_UNSIGNED (TREE_TYPE (loc)))
18685 return 0;
18686 op = DW_OP_div;
18687 goto do_binop;
18689 case MINUS_EXPR:
18690 op = DW_OP_minus;
18691 goto do_binop;
18693 case FLOOR_MOD_EXPR:
18694 case CEIL_MOD_EXPR:
18695 case ROUND_MOD_EXPR:
18696 case TRUNC_MOD_EXPR:
18697 if (TYPE_UNSIGNED (TREE_TYPE (loc)))
18699 op = DW_OP_mod;
18700 goto do_binop;
18702 list_ret = loc_list_from_tree_1 (TREE_OPERAND (loc, 0), 0, context);
18703 list_ret1 = loc_list_from_tree_1 (TREE_OPERAND (loc, 1), 0, context);
18704 if (list_ret == 0 || list_ret1 == 0)
18705 return 0;
18707 add_loc_list (&list_ret, list_ret1);
18708 if (list_ret == 0)
18709 return 0;
18710 add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_over, 0, 0));
18711 add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_over, 0, 0));
18712 add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_div, 0, 0));
18713 add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_mul, 0, 0));
18714 add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_minus, 0, 0));
18715 break;
18717 case MULT_EXPR:
18718 op = DW_OP_mul;
18719 goto do_binop;
18721 case LSHIFT_EXPR:
18722 op = DW_OP_shl;
18723 goto do_binop;
18725 case RSHIFT_EXPR:
18726 op = (TYPE_UNSIGNED (TREE_TYPE (loc)) ? DW_OP_shr : DW_OP_shra);
18727 goto do_binop;
18729 case POINTER_PLUS_EXPR:
18730 case PLUS_EXPR:
18731 do_plus:
18732 if (tree_fits_shwi_p (TREE_OPERAND (loc, 1)))
18734 /* Big unsigned numbers can fit in HOST_WIDE_INT but it may be
18735 smarter to encode their opposite. The DW_OP_plus_uconst operation
18736 takes 1 + X bytes, X being the size of the ULEB128 addend. On the
18737 other hand, a "<push literal>; DW_OP_minus" pattern takes 1 + Y
18738 bytes, Y being the size of the operation that pushes the opposite
18739 of the addend. So let's choose the smallest representation. */
18740 const tree tree_addend = TREE_OPERAND (loc, 1);
18741 offset_int wi_addend;
18742 HOST_WIDE_INT shwi_addend;
18743 dw_loc_descr_ref loc_naddend;
18745 list_ret = loc_list_from_tree_1 (TREE_OPERAND (loc, 0), 0, context);
18746 if (list_ret == 0)
18747 return 0;
18749 /* Try to get the literal to push. It is the opposite of the addend,
18750 so as we rely on wrapping during DWARF evaluation, first decode
18751 the literal as a "DWARF-sized" signed number. */
18752 wi_addend = wi::to_offset (tree_addend);
18753 wi_addend = wi::sext (wi_addend, DWARF2_ADDR_SIZE * 8);
18754 shwi_addend = wi_addend.to_shwi ();
18755 loc_naddend = (shwi_addend != INTTYPE_MINIMUM (HOST_WIDE_INT))
18756 ? int_loc_descriptor (-shwi_addend)
18757 : NULL;
18759 if (loc_naddend != NULL
18760 && ((unsigned) size_of_uleb128 (shwi_addend)
18761 > size_of_loc_descr (loc_naddend)))
18763 add_loc_descr_to_each (list_ret, loc_naddend);
18764 add_loc_descr_to_each (list_ret,
18765 new_loc_descr (DW_OP_minus, 0, 0));
18767 else
18769 for (dw_loc_descr_ref loc_cur = loc_naddend; loc_cur != NULL; )
18771 loc_naddend = loc_cur;
18772 loc_cur = loc_cur->dw_loc_next;
18773 ggc_free (loc_naddend);
18775 loc_list_plus_const (list_ret, wi_addend.to_shwi ());
18777 break;
18780 op = DW_OP_plus;
18781 goto do_binop;
18783 case LE_EXPR:
18784 op = DW_OP_le;
18785 goto do_comp_binop;
18787 case GE_EXPR:
18788 op = DW_OP_ge;
18789 goto do_comp_binop;
18791 case LT_EXPR:
18792 op = DW_OP_lt;
18793 goto do_comp_binop;
18795 case GT_EXPR:
18796 op = DW_OP_gt;
18797 goto do_comp_binop;
18799 do_comp_binop:
18800 if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc, 0))))
18802 list_ret = loc_list_from_tree (TREE_OPERAND (loc, 0), 0, context);
18803 list_ret1 = loc_list_from_tree (TREE_OPERAND (loc, 1), 0, context);
18804 list_ret = loc_list_from_uint_comparison (list_ret, list_ret1,
18805 TREE_CODE (loc));
18806 break;
18808 else
18809 goto do_binop;
18811 case EQ_EXPR:
18812 op = DW_OP_eq;
18813 goto do_binop;
18815 case NE_EXPR:
18816 op = DW_OP_ne;
18817 goto do_binop;
18819 do_binop:
18820 list_ret = loc_list_from_tree_1 (TREE_OPERAND (loc, 0), 0, context);
18821 list_ret1 = loc_list_from_tree_1 (TREE_OPERAND (loc, 1), 0, context);
18822 if (list_ret == 0 || list_ret1 == 0)
18823 return 0;
18825 add_loc_list (&list_ret, list_ret1);
18826 if (list_ret == 0)
18827 return 0;
18828 add_loc_descr_to_each (list_ret, new_loc_descr (op, 0, 0));
18829 break;
18831 case TRUTH_NOT_EXPR:
18832 case BIT_NOT_EXPR:
18833 op = DW_OP_not;
18834 goto do_unop;
18836 case ABS_EXPR:
18837 op = DW_OP_abs;
18838 goto do_unop;
18840 case NEGATE_EXPR:
18841 op = DW_OP_neg;
18842 goto do_unop;
18844 do_unop:
18845 list_ret = loc_list_from_tree_1 (TREE_OPERAND (loc, 0), 0, context);
18846 if (list_ret == 0)
18847 return 0;
18849 add_loc_descr_to_each (list_ret, new_loc_descr (op, 0, 0));
18850 break;
18852 case MIN_EXPR:
18853 case MAX_EXPR:
18855 const enum tree_code code =
18856 TREE_CODE (loc) == MIN_EXPR ? GT_EXPR : LT_EXPR;
18858 loc = build3 (COND_EXPR, TREE_TYPE (loc),
18859 build2 (code, integer_type_node,
18860 TREE_OPERAND (loc, 0), TREE_OPERAND (loc, 1)),
18861 TREE_OPERAND (loc, 1), TREE_OPERAND (loc, 0));
18864 /* fall through */
18866 case COND_EXPR:
18868 dw_loc_descr_ref lhs
18869 = loc_descriptor_from_tree (TREE_OPERAND (loc, 1), 0, context);
18870 dw_loc_list_ref rhs
18871 = loc_list_from_tree_1 (TREE_OPERAND (loc, 2), 0, context);
18872 dw_loc_descr_ref bra_node, jump_node, tmp;
18874 list_ret = loc_list_from_tree_1 (TREE_OPERAND (loc, 0), 0, context);
18875 if (list_ret == 0 || lhs == 0 || rhs == 0)
18876 return 0;
18878 bra_node = new_loc_descr (DW_OP_bra, 0, 0);
18879 add_loc_descr_to_each (list_ret, bra_node);
18881 add_loc_list (&list_ret, rhs);
18882 jump_node = new_loc_descr (DW_OP_skip, 0, 0);
18883 add_loc_descr_to_each (list_ret, jump_node);
18885 add_loc_descr_to_each (list_ret, lhs);
18886 bra_node->dw_loc_oprnd1.val_class = dw_val_class_loc;
18887 bra_node->dw_loc_oprnd1.v.val_loc = lhs;
18889 /* ??? Need a node to point the skip at. Use a nop. */
18890 tmp = new_loc_descr (DW_OP_nop, 0, 0);
18891 add_loc_descr_to_each (list_ret, tmp);
18892 jump_node->dw_loc_oprnd1.val_class = dw_val_class_loc;
18893 jump_node->dw_loc_oprnd1.v.val_loc = tmp;
18895 break;
18897 case FIX_TRUNC_EXPR:
18898 return 0;
18900 default:
18901 /* Leave front-end specific codes as simply unknown. This comes
18902 up, for instance, with the C STMT_EXPR. */
18903 if ((unsigned int) TREE_CODE (loc)
18904 >= (unsigned int) LAST_AND_UNUSED_TREE_CODE)
18906 expansion_failed (loc, NULL_RTX,
18907 "language specific tree node");
18908 return 0;
18911 /* Otherwise this is a generic code; we should just lists all of
18912 these explicitly. We forgot one. */
18913 if (flag_checking)
18914 gcc_unreachable ();
18916 /* In a release build, we want to degrade gracefully: better to
18917 generate incomplete debugging information than to crash. */
18918 return NULL;
18921 if (!ret && !list_ret)
18922 return 0;
18924 if (want_address == 2 && !have_address
18925 && (dwarf_version >= 4 || !dwarf_strict))
18927 if (int_size_in_bytes (TREE_TYPE (loc)) > DWARF2_ADDR_SIZE)
18929 expansion_failed (loc, NULL_RTX,
18930 "DWARF address size mismatch");
18931 return 0;
18933 if (ret)
18934 add_loc_descr (&ret, new_loc_descr (DW_OP_stack_value, 0, 0));
18935 else
18936 add_loc_descr_to_each (list_ret,
18937 new_loc_descr (DW_OP_stack_value, 0, 0));
18938 have_address = 1;
18940 /* Show if we can't fill the request for an address. */
18941 if (want_address && !have_address)
18943 expansion_failed (loc, NULL_RTX,
18944 "Want address and only have value");
18945 return 0;
18948 gcc_assert (!ret || !list_ret);
18950 /* If we've got an address and don't want one, dereference. */
18951 if (!want_address && have_address)
18953 HOST_WIDE_INT size = int_size_in_bytes (TREE_TYPE (loc));
18955 if (size > DWARF2_ADDR_SIZE || size == -1)
18957 expansion_failed (loc, NULL_RTX,
18958 "DWARF address size mismatch");
18959 return 0;
18961 else if (size == DWARF2_ADDR_SIZE)
18962 op = DW_OP_deref;
18963 else
18964 op = DW_OP_deref_size;
18966 if (ret)
18967 add_loc_descr (&ret, new_loc_descr (op, size, 0));
18968 else
18969 add_loc_descr_to_each (list_ret, new_loc_descr (op, size, 0));
18971 if (ret)
18972 list_ret = new_loc_list (ret, NULL, 0, NULL, 0, NULL);
18974 return list_ret;
18977 /* Likewise, but strip useless DW_OP_nop operations in the resulting
18978 expressions. */
18980 static dw_loc_list_ref
18981 loc_list_from_tree (tree loc, int want_address,
18982 struct loc_descr_context *context)
18984 dw_loc_list_ref result = loc_list_from_tree_1 (loc, want_address, context);
18986 for (dw_loc_list_ref loc_cur = result;
18987 loc_cur != NULL; loc_cur = loc_cur->dw_loc_next)
18988 loc_descr_without_nops (loc_cur->expr);
18989 return result;
18992 /* Same as above but return only single location expression. */
18993 static dw_loc_descr_ref
18994 loc_descriptor_from_tree (tree loc, int want_address,
18995 struct loc_descr_context *context)
18997 dw_loc_list_ref ret = loc_list_from_tree (loc, want_address, context);
18998 if (!ret)
18999 return NULL;
19000 if (ret->dw_loc_next)
19002 expansion_failed (loc, NULL_RTX,
19003 "Location list where only loc descriptor needed");
19004 return NULL;
19006 return ret->expr;
19009 /* Given a pointer to what is assumed to be a FIELD_DECL node, return a
19010 pointer to the declared type for the relevant field variable, or return
19011 `integer_type_node' if the given node turns out to be an
19012 ERROR_MARK node. */
19014 static inline tree
19015 field_type (const_tree decl)
19017 tree type;
19019 if (TREE_CODE (decl) == ERROR_MARK)
19020 return integer_type_node;
19022 type = DECL_BIT_FIELD_TYPE (decl);
19023 if (type == NULL_TREE)
19024 type = TREE_TYPE (decl);
19026 return type;
19029 /* Given a pointer to a tree node, return the alignment in bits for
19030 it, or else return BITS_PER_WORD if the node actually turns out to
19031 be an ERROR_MARK node. */
19033 static inline unsigned
19034 simple_type_align_in_bits (const_tree type)
19036 return (TREE_CODE (type) != ERROR_MARK) ? TYPE_ALIGN (type) : BITS_PER_WORD;
19039 static inline unsigned
19040 simple_decl_align_in_bits (const_tree decl)
19042 return (TREE_CODE (decl) != ERROR_MARK) ? DECL_ALIGN (decl) : BITS_PER_WORD;
19045 /* Return the result of rounding T up to ALIGN. */
19047 static inline offset_int
19048 round_up_to_align (const offset_int &t, unsigned int align)
19050 return wi::udiv_trunc (t + align - 1, align) * align;
19053 /* Compute the size of TYPE in bytes. If possible, return NULL and store the
19054 size as an integer constant in CST_SIZE. Otherwise, if possible, return a
19055 DWARF expression that computes the size. Return NULL and set CST_SIZE to -1
19056 if we fail to return the size in one of these two forms. */
19058 static dw_loc_descr_ref
19059 type_byte_size (const_tree type, HOST_WIDE_INT *cst_size)
19061 tree tree_size;
19062 struct loc_descr_context ctx;
19064 /* Return a constant integer in priority, if possible. */
19065 *cst_size = int_size_in_bytes (type);
19066 if (*cst_size != -1)
19067 return NULL;
19069 ctx.context_type = const_cast<tree> (type);
19070 ctx.base_decl = NULL_TREE;
19071 ctx.dpi = NULL;
19072 ctx.placeholder_arg = false;
19073 ctx.placeholder_seen = false;
19075 type = TYPE_MAIN_VARIANT (type);
19076 tree_size = TYPE_SIZE_UNIT (type);
19077 return ((tree_size != NULL_TREE)
19078 ? loc_descriptor_from_tree (tree_size, 0, &ctx)
19079 : NULL);
19082 /* Helper structure for RECORD_TYPE processing. */
19083 struct vlr_context
19085 /* Root RECORD_TYPE. It is needed to generate data member location
19086 descriptions in variable-length records (VLR), but also to cope with
19087 variants, which are composed of nested structures multiplexed with
19088 QUAL_UNION_TYPE nodes. Each time such a structure is passed to a
19089 function processing a FIELD_DECL, it is required to be non null. */
19090 tree struct_type;
19091 /* When generating a variant part in a RECORD_TYPE (i.e. a nested
19092 QUAL_UNION_TYPE), this holds an expression that computes the offset for
19093 this variant part as part of the root record (in storage units). For
19094 regular records, it must be NULL_TREE. */
19095 tree variant_part_offset;
19098 /* Given a pointer to a FIELD_DECL, compute the byte offset of the lowest
19099 addressed byte of the "containing object" for the given FIELD_DECL. If
19100 possible, return a native constant through CST_OFFSET (in which case NULL is
19101 returned); otherwise return a DWARF expression that computes the offset.
19103 Set *CST_OFFSET to 0 and return NULL if we are unable to determine what
19104 that offset is, either because the argument turns out to be a pointer to an
19105 ERROR_MARK node, or because the offset expression is too complex for us.
19107 CTX is required: see the comment for VLR_CONTEXT. */
19109 static dw_loc_descr_ref
19110 field_byte_offset (const_tree decl, struct vlr_context *ctx,
19111 HOST_WIDE_INT *cst_offset)
19113 tree tree_result;
19114 dw_loc_list_ref loc_result;
19116 *cst_offset = 0;
19118 if (TREE_CODE (decl) == ERROR_MARK)
19119 return NULL;
19120 else
19121 gcc_assert (TREE_CODE (decl) == FIELD_DECL);
19123 /* We cannot handle variable bit offsets at the moment, so abort if it's the
19124 case. */
19125 if (TREE_CODE (DECL_FIELD_BIT_OFFSET (decl)) != INTEGER_CST)
19126 return NULL;
19128 /* We used to handle only constant offsets in all cases. Now, we handle
19129 properly dynamic byte offsets only when PCC bitfield type doesn't
19130 matter. */
19131 if (PCC_BITFIELD_TYPE_MATTERS
19132 && TREE_CODE (DECL_FIELD_OFFSET (decl)) == INTEGER_CST)
19134 offset_int object_offset_in_bits;
19135 offset_int object_offset_in_bytes;
19136 offset_int bitpos_int;
19137 tree type;
19138 tree field_size_tree;
19139 offset_int deepest_bitpos;
19140 offset_int field_size_in_bits;
19141 unsigned int type_align_in_bits;
19142 unsigned int decl_align_in_bits;
19143 offset_int type_size_in_bits;
19145 bitpos_int = wi::to_offset (bit_position (decl));
19146 type = field_type (decl);
19147 type_size_in_bits = offset_int_type_size_in_bits (type);
19148 type_align_in_bits = simple_type_align_in_bits (type);
19150 field_size_tree = DECL_SIZE (decl);
19152 /* The size could be unspecified if there was an error, or for
19153 a flexible array member. */
19154 if (!field_size_tree)
19155 field_size_tree = bitsize_zero_node;
19157 /* If the size of the field is not constant, use the type size. */
19158 if (TREE_CODE (field_size_tree) == INTEGER_CST)
19159 field_size_in_bits = wi::to_offset (field_size_tree);
19160 else
19161 field_size_in_bits = type_size_in_bits;
19163 decl_align_in_bits = simple_decl_align_in_bits (decl);
19165 /* The GCC front-end doesn't make any attempt to keep track of the
19166 starting bit offset (relative to the start of the containing
19167 structure type) of the hypothetical "containing object" for a
19168 bit-field. Thus, when computing the byte offset value for the
19169 start of the "containing object" of a bit-field, we must deduce
19170 this information on our own. This can be rather tricky to do in
19171 some cases. For example, handling the following structure type
19172 definition when compiling for an i386/i486 target (which only
19173 aligns long long's to 32-bit boundaries) can be very tricky:
19175 struct S { int field1; long long field2:31; };
19177 Fortunately, there is a simple rule-of-thumb which can be used
19178 in such cases. When compiling for an i386/i486, GCC will
19179 allocate 8 bytes for the structure shown above. It decides to
19180 do this based upon one simple rule for bit-field allocation.
19181 GCC allocates each "containing object" for each bit-field at
19182 the first (i.e. lowest addressed) legitimate alignment boundary
19183 (based upon the required minimum alignment for the declared
19184 type of the field) which it can possibly use, subject to the
19185 condition that there is still enough available space remaining
19186 in the containing object (when allocated at the selected point)
19187 to fully accommodate all of the bits of the bit-field itself.
19189 This simple rule makes it obvious why GCC allocates 8 bytes for
19190 each object of the structure type shown above. When looking
19191 for a place to allocate the "containing object" for `field2',
19192 the compiler simply tries to allocate a 64-bit "containing
19193 object" at each successive 32-bit boundary (starting at zero)
19194 until it finds a place to allocate that 64- bit field such that
19195 at least 31 contiguous (and previously unallocated) bits remain
19196 within that selected 64 bit field. (As it turns out, for the
19197 example above, the compiler finds it is OK to allocate the
19198 "containing object" 64-bit field at bit-offset zero within the
19199 structure type.)
19201 Here we attempt to work backwards from the limited set of facts
19202 we're given, and we try to deduce from those facts, where GCC
19203 must have believed that the containing object started (within
19204 the structure type). The value we deduce is then used (by the
19205 callers of this routine) to generate DW_AT_location and
19206 DW_AT_bit_offset attributes for fields (both bit-fields and, in
19207 the case of DW_AT_location, regular fields as well). */
19209 /* Figure out the bit-distance from the start of the structure to
19210 the "deepest" bit of the bit-field. */
19211 deepest_bitpos = bitpos_int + field_size_in_bits;
19213 /* This is the tricky part. Use some fancy footwork to deduce
19214 where the lowest addressed bit of the containing object must
19215 be. */
19216 object_offset_in_bits = deepest_bitpos - type_size_in_bits;
19218 /* Round up to type_align by default. This works best for
19219 bitfields. */
19220 object_offset_in_bits
19221 = round_up_to_align (object_offset_in_bits, type_align_in_bits);
19223 if (wi::gtu_p (object_offset_in_bits, bitpos_int))
19225 object_offset_in_bits = deepest_bitpos - type_size_in_bits;
19227 /* Round up to decl_align instead. */
19228 object_offset_in_bits
19229 = round_up_to_align (object_offset_in_bits, decl_align_in_bits);
19232 object_offset_in_bytes
19233 = wi::lrshift (object_offset_in_bits, LOG2_BITS_PER_UNIT);
19234 if (ctx->variant_part_offset == NULL_TREE)
19236 *cst_offset = object_offset_in_bytes.to_shwi ();
19237 return NULL;
19239 tree_result = wide_int_to_tree (sizetype, object_offset_in_bytes);
19241 else
19242 tree_result = byte_position (decl);
19244 if (ctx->variant_part_offset != NULL_TREE)
19245 tree_result = fold_build2 (PLUS_EXPR, TREE_TYPE (tree_result),
19246 ctx->variant_part_offset, tree_result);
19248 /* If the byte offset is a constant, it's simplier to handle a native
19249 constant rather than a DWARF expression. */
19250 if (TREE_CODE (tree_result) == INTEGER_CST)
19252 *cst_offset = wi::to_offset (tree_result).to_shwi ();
19253 return NULL;
19255 struct loc_descr_context loc_ctx = {
19256 ctx->struct_type, /* context_type */
19257 NULL_TREE, /* base_decl */
19258 NULL, /* dpi */
19259 false, /* placeholder_arg */
19260 false /* placeholder_seen */
19262 loc_result = loc_list_from_tree (tree_result, 0, &loc_ctx);
19264 /* We want a DWARF expression: abort if we only have a location list with
19265 multiple elements. */
19266 if (!loc_result || !single_element_loc_list_p (loc_result))
19267 return NULL;
19268 else
19269 return loc_result->expr;
19272 /* The following routines define various Dwarf attributes and any data
19273 associated with them. */
19275 /* Add a location description attribute value to a DIE.
19277 This emits location attributes suitable for whole variables and
19278 whole parameters. Note that the location attributes for struct fields are
19279 generated by the routine `data_member_location_attribute' below. */
19281 static inline void
19282 add_AT_location_description (dw_die_ref die, enum dwarf_attribute attr_kind,
19283 dw_loc_list_ref descr)
19285 bool check_no_locviews = true;
19286 if (descr == 0)
19287 return;
19288 if (single_element_loc_list_p (descr))
19289 add_AT_loc (die, attr_kind, descr->expr);
19290 else
19292 add_AT_loc_list (die, attr_kind, descr);
19293 gcc_assert (descr->ll_symbol);
19294 if (attr_kind == DW_AT_location && descr->vl_symbol
19295 && dwarf2out_locviews_in_attribute ())
19297 add_AT_view_list (die, DW_AT_GNU_locviews);
19298 check_no_locviews = false;
19302 if (check_no_locviews)
19303 gcc_assert (!get_AT (die, DW_AT_GNU_locviews));
19306 /* Add DW_AT_accessibility attribute to DIE if needed. */
19308 static void
19309 add_accessibility_attribute (dw_die_ref die, tree decl)
19311 /* In DWARF3+ the default is DW_ACCESS_private only in DW_TAG_class_type
19312 children, otherwise the default is DW_ACCESS_public. In DWARF2
19313 the default has always been DW_ACCESS_public. */
19314 if (TREE_PROTECTED (decl))
19315 add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_protected);
19316 else if (TREE_PRIVATE (decl))
19318 if (dwarf_version == 2
19319 || die->die_parent == NULL
19320 || die->die_parent->die_tag != DW_TAG_class_type)
19321 add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_private);
19323 else if (dwarf_version > 2
19324 && die->die_parent
19325 && die->die_parent->die_tag == DW_TAG_class_type)
19326 add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_public);
19329 /* Attach the specialized form of location attribute used for data members of
19330 struct and union types. In the special case of a FIELD_DECL node which
19331 represents a bit-field, the "offset" part of this special location
19332 descriptor must indicate the distance in bytes from the lowest-addressed
19333 byte of the containing struct or union type to the lowest-addressed byte of
19334 the "containing object" for the bit-field. (See the `field_byte_offset'
19335 function above).
19337 For any given bit-field, the "containing object" is a hypothetical object
19338 (of some integral or enum type) within which the given bit-field lives. The
19339 type of this hypothetical "containing object" is always the same as the
19340 declared type of the individual bit-field itself (for GCC anyway... the
19341 DWARF spec doesn't actually mandate this). Note that it is the size (in
19342 bytes) of the hypothetical "containing object" which will be given in the
19343 DW_AT_byte_size attribute for this bit-field. (See the
19344 `byte_size_attribute' function below.) It is also used when calculating the
19345 value of the DW_AT_bit_offset attribute. (See the `bit_offset_attribute'
19346 function below.)
19348 CTX is required: see the comment for VLR_CONTEXT. */
19350 static void
19351 add_data_member_location_attribute (dw_die_ref die,
19352 tree decl,
19353 struct vlr_context *ctx)
19355 HOST_WIDE_INT offset;
19356 dw_loc_descr_ref loc_descr = 0;
19358 if (TREE_CODE (decl) == TREE_BINFO)
19360 /* We're working on the TAG_inheritance for a base class. */
19361 if (BINFO_VIRTUAL_P (decl) && is_cxx ())
19363 /* For C++ virtual bases we can't just use BINFO_OFFSET, as they
19364 aren't at a fixed offset from all (sub)objects of the same
19365 type. We need to extract the appropriate offset from our
19366 vtable. The following dwarf expression means
19368 BaseAddr = ObAddr + *((*ObAddr) - Offset)
19370 This is specific to the V3 ABI, of course. */
19372 dw_loc_descr_ref tmp;
19374 /* Make a copy of the object address. */
19375 tmp = new_loc_descr (DW_OP_dup, 0, 0);
19376 add_loc_descr (&loc_descr, tmp);
19378 /* Extract the vtable address. */
19379 tmp = new_loc_descr (DW_OP_deref, 0, 0);
19380 add_loc_descr (&loc_descr, tmp);
19382 /* Calculate the address of the offset. */
19383 offset = tree_to_shwi (BINFO_VPTR_FIELD (decl));
19384 gcc_assert (offset < 0);
19386 tmp = int_loc_descriptor (-offset);
19387 add_loc_descr (&loc_descr, tmp);
19388 tmp = new_loc_descr (DW_OP_minus, 0, 0);
19389 add_loc_descr (&loc_descr, tmp);
19391 /* Extract the offset. */
19392 tmp = new_loc_descr (DW_OP_deref, 0, 0);
19393 add_loc_descr (&loc_descr, tmp);
19395 /* Add it to the object address. */
19396 tmp = new_loc_descr (DW_OP_plus, 0, 0);
19397 add_loc_descr (&loc_descr, tmp);
19399 else
19400 offset = tree_to_shwi (BINFO_OFFSET (decl));
19402 else
19404 loc_descr = field_byte_offset (decl, ctx, &offset);
19406 /* If loc_descr is available then we know the field offset is dynamic.
19407 However, GDB does not handle dynamic field offsets very well at the
19408 moment. */
19409 if (loc_descr != NULL && gnat_encodings != DWARF_GNAT_ENCODINGS_MINIMAL)
19411 loc_descr = NULL;
19412 offset = 0;
19415 /* Data member location evalutation starts with the base address on the
19416 stack. Compute the field offset and add it to this base address. */
19417 else if (loc_descr != NULL)
19418 add_loc_descr (&loc_descr, new_loc_descr (DW_OP_plus, 0, 0));
19421 if (! loc_descr)
19423 /* While DW_AT_data_bit_offset has been added already in DWARF4,
19424 e.g. GDB only added support to it in November 2016. For DWARF5
19425 we need newer debug info consumers anyway. We might change this
19426 to dwarf_version >= 4 once most consumers catched up. */
19427 if (dwarf_version >= 5
19428 && TREE_CODE (decl) == FIELD_DECL
19429 && DECL_BIT_FIELD_TYPE (decl))
19431 tree off = bit_position (decl);
19432 if (tree_fits_uhwi_p (off) && get_AT (die, DW_AT_bit_size))
19434 remove_AT (die, DW_AT_byte_size);
19435 remove_AT (die, DW_AT_bit_offset);
19436 add_AT_unsigned (die, DW_AT_data_bit_offset, tree_to_uhwi (off));
19437 return;
19440 if (dwarf_version > 2)
19442 /* Don't need to output a location expression, just the constant. */
19443 if (offset < 0)
19444 add_AT_int (die, DW_AT_data_member_location, offset);
19445 else
19446 add_AT_unsigned (die, DW_AT_data_member_location, offset);
19447 return;
19449 else
19451 enum dwarf_location_atom op;
19453 /* The DWARF2 standard says that we should assume that the structure
19454 address is already on the stack, so we can specify a structure
19455 field address by using DW_OP_plus_uconst. */
19456 op = DW_OP_plus_uconst;
19457 loc_descr = new_loc_descr (op, offset, 0);
19461 add_AT_loc (die, DW_AT_data_member_location, loc_descr);
19464 /* Writes integer values to dw_vec_const array. */
19466 static void
19467 insert_int (HOST_WIDE_INT val, unsigned int size, unsigned char *dest)
19469 while (size != 0)
19471 *dest++ = val & 0xff;
19472 val >>= 8;
19473 --size;
19477 /* Reads integers from dw_vec_const array. Inverse of insert_int. */
19479 static HOST_WIDE_INT
19480 extract_int (const unsigned char *src, unsigned int size)
19482 HOST_WIDE_INT val = 0;
19484 src += size;
19485 while (size != 0)
19487 val <<= 8;
19488 val |= *--src & 0xff;
19489 --size;
19491 return val;
19494 /* Writes wide_int values to dw_vec_const array. */
19496 static void
19497 insert_wide_int (const wide_int &val, unsigned char *dest, int elt_size)
19499 int i;
19501 if (elt_size <= HOST_BITS_PER_WIDE_INT/BITS_PER_UNIT)
19503 insert_int ((HOST_WIDE_INT) val.elt (0), elt_size, dest);
19504 return;
19507 /* We'd have to extend this code to support odd sizes. */
19508 gcc_assert (elt_size % (HOST_BITS_PER_WIDE_INT / BITS_PER_UNIT) == 0);
19510 int n = elt_size / (HOST_BITS_PER_WIDE_INT / BITS_PER_UNIT);
19512 if (WORDS_BIG_ENDIAN)
19513 for (i = n - 1; i >= 0; i--)
19515 insert_int ((HOST_WIDE_INT) val.elt (i), sizeof (HOST_WIDE_INT), dest);
19516 dest += sizeof (HOST_WIDE_INT);
19518 else
19519 for (i = 0; i < n; i++)
19521 insert_int ((HOST_WIDE_INT) val.elt (i), sizeof (HOST_WIDE_INT), dest);
19522 dest += sizeof (HOST_WIDE_INT);
19526 /* Writes floating point values to dw_vec_const array. */
19528 static void
19529 insert_float (const_rtx rtl, unsigned char *array)
19531 long val[4];
19532 int i;
19533 scalar_float_mode mode = as_a <scalar_float_mode> (GET_MODE (rtl));
19535 real_to_target (val, CONST_DOUBLE_REAL_VALUE (rtl), mode);
19537 /* real_to_target puts 32-bit pieces in each long. Pack them. */
19538 for (i = 0; i < GET_MODE_SIZE (mode) / 4; i++)
19540 insert_int (val[i], 4, array);
19541 array += 4;
19545 /* Attach a DW_AT_const_value attribute for a variable or a parameter which
19546 does not have a "location" either in memory or in a register. These
19547 things can arise in GNU C when a constant is passed as an actual parameter
19548 to an inlined function. They can also arise in C++ where declared
19549 constants do not necessarily get memory "homes". */
19551 static bool
19552 add_const_value_attribute (dw_die_ref die, rtx rtl)
19554 switch (GET_CODE (rtl))
19556 case CONST_INT:
19558 HOST_WIDE_INT val = INTVAL (rtl);
19560 if (val < 0)
19561 add_AT_int (die, DW_AT_const_value, val);
19562 else
19563 add_AT_unsigned (die, DW_AT_const_value, (unsigned HOST_WIDE_INT) val);
19565 return true;
19567 case CONST_WIDE_INT:
19569 wide_int w1 = rtx_mode_t (rtl, MAX_MODE_INT);
19570 unsigned int prec = MIN (wi::min_precision (w1, UNSIGNED),
19571 (unsigned int)CONST_WIDE_INT_NUNITS (rtl) * HOST_BITS_PER_WIDE_INT);
19572 wide_int w = wi::zext (w1, prec);
19573 add_AT_wide (die, DW_AT_const_value, w);
19575 return true;
19577 case CONST_DOUBLE:
19578 /* Note that a CONST_DOUBLE rtx could represent either an integer or a
19579 floating-point constant. A CONST_DOUBLE is used whenever the
19580 constant requires more than one word in order to be adequately
19581 represented. */
19582 if (TARGET_SUPPORTS_WIDE_INT == 0
19583 && !SCALAR_FLOAT_MODE_P (GET_MODE (rtl)))
19584 add_AT_double (die, DW_AT_const_value,
19585 CONST_DOUBLE_HIGH (rtl), CONST_DOUBLE_LOW (rtl));
19586 else
19588 scalar_float_mode mode = as_a <scalar_float_mode> (GET_MODE (rtl));
19589 unsigned int length = GET_MODE_SIZE (mode);
19590 unsigned char *array = ggc_vec_alloc<unsigned char> (length);
19592 insert_float (rtl, array);
19593 add_AT_vec (die, DW_AT_const_value, length / 4, 4, array);
19595 return true;
19597 case CONST_VECTOR:
19599 unsigned int length;
19600 if (!CONST_VECTOR_NUNITS (rtl).is_constant (&length))
19601 return false;
19603 machine_mode mode = GET_MODE (rtl);
19604 unsigned int elt_size = GET_MODE_UNIT_SIZE (mode);
19605 unsigned char *array
19606 = ggc_vec_alloc<unsigned char> (length * elt_size);
19607 unsigned int i;
19608 unsigned char *p;
19609 machine_mode imode = GET_MODE_INNER (mode);
19611 switch (GET_MODE_CLASS (mode))
19613 case MODE_VECTOR_INT:
19614 for (i = 0, p = array; i < length; i++, p += elt_size)
19616 rtx elt = CONST_VECTOR_ELT (rtl, i);
19617 insert_wide_int (rtx_mode_t (elt, imode), p, elt_size);
19619 break;
19621 case MODE_VECTOR_FLOAT:
19622 for (i = 0, p = array; i < length; i++, p += elt_size)
19624 rtx elt = CONST_VECTOR_ELT (rtl, i);
19625 insert_float (elt, p);
19627 break;
19629 default:
19630 gcc_unreachable ();
19633 add_AT_vec (die, DW_AT_const_value, length, elt_size, array);
19635 return true;
19637 case CONST_STRING:
19638 if (dwarf_version >= 4 || !dwarf_strict)
19640 dw_loc_descr_ref loc_result;
19641 resolve_one_addr (&rtl);
19642 rtl_addr:
19643 loc_result = new_addr_loc_descr (rtl, dtprel_false);
19644 add_loc_descr (&loc_result, new_loc_descr (DW_OP_stack_value, 0, 0));
19645 add_AT_loc (die, DW_AT_location, loc_result);
19646 vec_safe_push (used_rtx_array, rtl);
19647 return true;
19649 return false;
19651 case CONST:
19652 if (CONSTANT_P (XEXP (rtl, 0)))
19653 return add_const_value_attribute (die, XEXP (rtl, 0));
19654 /* FALLTHROUGH */
19655 case SYMBOL_REF:
19656 if (!const_ok_for_output (rtl))
19657 return false;
19658 /* FALLTHROUGH */
19659 case LABEL_REF:
19660 if (dwarf_version >= 4 || !dwarf_strict)
19661 goto rtl_addr;
19662 return false;
19664 case PLUS:
19665 /* In cases where an inlined instance of an inline function is passed
19666 the address of an `auto' variable (which is local to the caller) we
19667 can get a situation where the DECL_RTL of the artificial local
19668 variable (for the inlining) which acts as a stand-in for the
19669 corresponding formal parameter (of the inline function) will look
19670 like (plus:SI (reg:SI FRAME_PTR) (const_int ...)). This is not
19671 exactly a compile-time constant expression, but it isn't the address
19672 of the (artificial) local variable either. Rather, it represents the
19673 *value* which the artificial local variable always has during its
19674 lifetime. We currently have no way to represent such quasi-constant
19675 values in Dwarf, so for now we just punt and generate nothing. */
19676 return false;
19678 case HIGH:
19679 case CONST_FIXED:
19680 case MINUS:
19681 case SIGN_EXTEND:
19682 case ZERO_EXTEND:
19683 return false;
19685 case MEM:
19686 if (GET_CODE (XEXP (rtl, 0)) == CONST_STRING
19687 && MEM_READONLY_P (rtl)
19688 && GET_MODE (rtl) == BLKmode)
19690 add_AT_string (die, DW_AT_const_value, XSTR (XEXP (rtl, 0), 0));
19691 return true;
19693 return false;
19695 default:
19696 /* No other kinds of rtx should be possible here. */
19697 gcc_unreachable ();
19699 return false;
19702 /* Determine whether the evaluation of EXPR references any variables
19703 or functions which aren't otherwise used (and therefore may not be
19704 output). */
19705 static tree
19706 reference_to_unused (tree * tp, int * walk_subtrees,
19707 void * data ATTRIBUTE_UNUSED)
19709 if (! EXPR_P (*tp) && ! CONSTANT_CLASS_P (*tp))
19710 *walk_subtrees = 0;
19712 if (DECL_P (*tp) && ! TREE_PUBLIC (*tp) && ! TREE_USED (*tp)
19713 && ! TREE_ASM_WRITTEN (*tp))
19714 return *tp;
19715 /* ??? The C++ FE emits debug information for using decls, so
19716 putting gcc_unreachable here falls over. See PR31899. For now
19717 be conservative. */
19718 else if (!symtab->global_info_ready && VAR_OR_FUNCTION_DECL_P (*tp))
19719 return *tp;
19720 else if (VAR_P (*tp))
19722 varpool_node *node = varpool_node::get (*tp);
19723 if (!node || !node->definition)
19724 return *tp;
19726 else if (TREE_CODE (*tp) == FUNCTION_DECL
19727 && (!DECL_EXTERNAL (*tp) || DECL_DECLARED_INLINE_P (*tp)))
19729 /* The call graph machinery must have finished analyzing,
19730 optimizing and gimplifying the CU by now.
19731 So if *TP has no call graph node associated
19732 to it, it means *TP will not be emitted. */
19733 if (!cgraph_node::get (*tp))
19734 return *tp;
19736 else if (TREE_CODE (*tp) == STRING_CST && !TREE_ASM_WRITTEN (*tp))
19737 return *tp;
19739 return NULL_TREE;
19742 /* Generate an RTL constant from a decl initializer INIT with decl type TYPE,
19743 for use in a later add_const_value_attribute call. */
19745 static rtx
19746 rtl_for_decl_init (tree init, tree type)
19748 rtx rtl = NULL_RTX;
19750 STRIP_NOPS (init);
19752 /* If a variable is initialized with a string constant without embedded
19753 zeros, build CONST_STRING. */
19754 if (TREE_CODE (init) == STRING_CST && TREE_CODE (type) == ARRAY_TYPE)
19756 tree enttype = TREE_TYPE (type);
19757 tree domain = TYPE_DOMAIN (type);
19758 scalar_int_mode mode;
19760 if (is_int_mode (TYPE_MODE (enttype), &mode)
19761 && GET_MODE_SIZE (mode) == 1
19762 && domain
19763 && TYPE_MAX_VALUE (domain)
19764 && TREE_CODE (TYPE_MAX_VALUE (domain)) == INTEGER_CST
19765 && integer_zerop (TYPE_MIN_VALUE (domain))
19766 && compare_tree_int (TYPE_MAX_VALUE (domain),
19767 TREE_STRING_LENGTH (init) - 1) == 0
19768 && ((size_t) TREE_STRING_LENGTH (init)
19769 == strlen (TREE_STRING_POINTER (init)) + 1))
19771 rtl = gen_rtx_CONST_STRING (VOIDmode,
19772 ggc_strdup (TREE_STRING_POINTER (init)));
19773 rtl = gen_rtx_MEM (BLKmode, rtl);
19774 MEM_READONLY_P (rtl) = 1;
19777 /* Other aggregates, and complex values, could be represented using
19778 CONCAT: FIXME! */
19779 else if (AGGREGATE_TYPE_P (type)
19780 || (TREE_CODE (init) == VIEW_CONVERT_EXPR
19781 && AGGREGATE_TYPE_P (TREE_TYPE (TREE_OPERAND (init, 0))))
19782 || TREE_CODE (type) == COMPLEX_TYPE)
19784 /* Vectors only work if their mode is supported by the target.
19785 FIXME: generic vectors ought to work too. */
19786 else if (TREE_CODE (type) == VECTOR_TYPE
19787 && !VECTOR_MODE_P (TYPE_MODE (type)))
19789 /* If the initializer is something that we know will expand into an
19790 immediate RTL constant, expand it now. We must be careful not to
19791 reference variables which won't be output. */
19792 else if (initializer_constant_valid_p (init, type)
19793 && ! walk_tree (&init, reference_to_unused, NULL, NULL))
19795 /* Convert vector CONSTRUCTOR initializers to VECTOR_CST if
19796 possible. */
19797 if (TREE_CODE (type) == VECTOR_TYPE)
19798 switch (TREE_CODE (init))
19800 case VECTOR_CST:
19801 break;
19802 case CONSTRUCTOR:
19803 if (TREE_CONSTANT (init))
19805 vec<constructor_elt, va_gc> *elts = CONSTRUCTOR_ELTS (init);
19806 bool constant_p = true;
19807 tree value;
19808 unsigned HOST_WIDE_INT ix;
19810 /* Even when ctor is constant, it might contain non-*_CST
19811 elements (e.g. { 1.0/0.0 - 1.0/0.0, 0.0 }) and those don't
19812 belong into VECTOR_CST nodes. */
19813 FOR_EACH_CONSTRUCTOR_VALUE (elts, ix, value)
19814 if (!CONSTANT_CLASS_P (value))
19816 constant_p = false;
19817 break;
19820 if (constant_p)
19822 init = build_vector_from_ctor (type, elts);
19823 break;
19826 /* FALLTHRU */
19828 default:
19829 return NULL;
19832 rtl = expand_expr (init, NULL_RTX, VOIDmode, EXPAND_INITIALIZER);
19834 /* If expand_expr returns a MEM, it wasn't immediate. */
19835 gcc_assert (!rtl || !MEM_P (rtl));
19838 return rtl;
19841 /* Generate RTL for the variable DECL to represent its location. */
19843 static rtx
19844 rtl_for_decl_location (tree decl)
19846 rtx rtl;
19848 /* Here we have to decide where we are going to say the parameter "lives"
19849 (as far as the debugger is concerned). We only have a couple of
19850 choices. GCC provides us with DECL_RTL and with DECL_INCOMING_RTL.
19852 DECL_RTL normally indicates where the parameter lives during most of the
19853 activation of the function. If optimization is enabled however, this
19854 could be either NULL or else a pseudo-reg. Both of those cases indicate
19855 that the parameter doesn't really live anywhere (as far as the code
19856 generation parts of GCC are concerned) during most of the function's
19857 activation. That will happen (for example) if the parameter is never
19858 referenced within the function.
19860 We could just generate a location descriptor here for all non-NULL
19861 non-pseudo values of DECL_RTL and ignore all of the rest, but we can be
19862 a little nicer than that if we also consider DECL_INCOMING_RTL in cases
19863 where DECL_RTL is NULL or is a pseudo-reg.
19865 Note however that we can only get away with using DECL_INCOMING_RTL as
19866 a backup substitute for DECL_RTL in certain limited cases. In cases
19867 where DECL_ARG_TYPE (decl) indicates the same type as TREE_TYPE (decl),
19868 we can be sure that the parameter was passed using the same type as it is
19869 declared to have within the function, and that its DECL_INCOMING_RTL
19870 points us to a place where a value of that type is passed.
19872 In cases where DECL_ARG_TYPE (decl) and TREE_TYPE (decl) are different,
19873 we cannot (in general) use DECL_INCOMING_RTL as a substitute for DECL_RTL
19874 because in these cases DECL_INCOMING_RTL points us to a value of some
19875 type which is *different* from the type of the parameter itself. Thus,
19876 if we tried to use DECL_INCOMING_RTL to generate a location attribute in
19877 such cases, the debugger would end up (for example) trying to fetch a
19878 `float' from a place which actually contains the first part of a
19879 `double'. That would lead to really incorrect and confusing
19880 output at debug-time.
19882 So, in general, we *do not* use DECL_INCOMING_RTL as a backup for DECL_RTL
19883 in cases where DECL_ARG_TYPE (decl) != TREE_TYPE (decl). There
19884 are a couple of exceptions however. On little-endian machines we can
19885 get away with using DECL_INCOMING_RTL even when DECL_ARG_TYPE (decl) is
19886 not the same as TREE_TYPE (decl), but only when DECL_ARG_TYPE (decl) is
19887 an integral type that is smaller than TREE_TYPE (decl). These cases arise
19888 when (on a little-endian machine) a non-prototyped function has a
19889 parameter declared to be of type `short' or `char'. In such cases,
19890 TREE_TYPE (decl) will be `short' or `char', DECL_ARG_TYPE (decl) will
19891 be `int', and DECL_INCOMING_RTL will point to the lowest-order byte of the
19892 passed `int' value. If the debugger then uses that address to fetch
19893 a `short' or a `char' (on a little-endian machine) the result will be
19894 the correct data, so we allow for such exceptional cases below.
19896 Note that our goal here is to describe the place where the given formal
19897 parameter lives during most of the function's activation (i.e. between the
19898 end of the prologue and the start of the epilogue). We'll do that as best
19899 as we can. Note however that if the given formal parameter is modified
19900 sometime during the execution of the function, then a stack backtrace (at
19901 debug-time) will show the function as having been called with the *new*
19902 value rather than the value which was originally passed in. This happens
19903 rarely enough that it is not a major problem, but it *is* a problem, and
19904 I'd like to fix it.
19906 A future version of dwarf2out.c may generate two additional attributes for
19907 any given DW_TAG_formal_parameter DIE which will describe the "passed
19908 type" and the "passed location" for the given formal parameter in addition
19909 to the attributes we now generate to indicate the "declared type" and the
19910 "active location" for each parameter. This additional set of attributes
19911 could be used by debuggers for stack backtraces. Separately, note that
19912 sometimes DECL_RTL can be NULL and DECL_INCOMING_RTL can be NULL also.
19913 This happens (for example) for inlined-instances of inline function formal
19914 parameters which are never referenced. This really shouldn't be
19915 happening. All PARM_DECL nodes should get valid non-NULL
19916 DECL_INCOMING_RTL values. FIXME. */
19918 /* Use DECL_RTL as the "location" unless we find something better. */
19919 rtl = DECL_RTL_IF_SET (decl);
19921 /* When generating abstract instances, ignore everything except
19922 constants, symbols living in memory, and symbols living in
19923 fixed registers. */
19924 if (! reload_completed)
19926 if (rtl
19927 && (CONSTANT_P (rtl)
19928 || (MEM_P (rtl)
19929 && CONSTANT_P (XEXP (rtl, 0)))
19930 || (REG_P (rtl)
19931 && VAR_P (decl)
19932 && TREE_STATIC (decl))))
19934 rtl = targetm.delegitimize_address (rtl);
19935 return rtl;
19937 rtl = NULL_RTX;
19939 else if (TREE_CODE (decl) == PARM_DECL)
19941 if (rtl == NULL_RTX
19942 || is_pseudo_reg (rtl)
19943 || (MEM_P (rtl)
19944 && is_pseudo_reg (XEXP (rtl, 0))
19945 && DECL_INCOMING_RTL (decl)
19946 && MEM_P (DECL_INCOMING_RTL (decl))
19947 && GET_MODE (rtl) == GET_MODE (DECL_INCOMING_RTL (decl))))
19949 tree declared_type = TREE_TYPE (decl);
19950 tree passed_type = DECL_ARG_TYPE (decl);
19951 machine_mode dmode = TYPE_MODE (declared_type);
19952 machine_mode pmode = TYPE_MODE (passed_type);
19954 /* This decl represents a formal parameter which was optimized out.
19955 Note that DECL_INCOMING_RTL may be NULL in here, but we handle
19956 all cases where (rtl == NULL_RTX) just below. */
19957 if (dmode == pmode)
19958 rtl = DECL_INCOMING_RTL (decl);
19959 else if ((rtl == NULL_RTX || is_pseudo_reg (rtl))
19960 && SCALAR_INT_MODE_P (dmode)
19961 && known_le (GET_MODE_SIZE (dmode), GET_MODE_SIZE (pmode))
19962 && DECL_INCOMING_RTL (decl))
19964 rtx inc = DECL_INCOMING_RTL (decl);
19965 if (REG_P (inc))
19966 rtl = inc;
19967 else if (MEM_P (inc))
19969 if (BYTES_BIG_ENDIAN)
19970 rtl = adjust_address_nv (inc, dmode,
19971 GET_MODE_SIZE (pmode)
19972 - GET_MODE_SIZE (dmode));
19973 else
19974 rtl = inc;
19979 /* If the parm was passed in registers, but lives on the stack, then
19980 make a big endian correction if the mode of the type of the
19981 parameter is not the same as the mode of the rtl. */
19982 /* ??? This is the same series of checks that are made in dbxout.c before
19983 we reach the big endian correction code there. It isn't clear if all
19984 of these checks are necessary here, but keeping them all is the safe
19985 thing to do. */
19986 else if (MEM_P (rtl)
19987 && XEXP (rtl, 0) != const0_rtx
19988 && ! CONSTANT_P (XEXP (rtl, 0))
19989 /* Not passed in memory. */
19990 && !MEM_P (DECL_INCOMING_RTL (decl))
19991 /* Not passed by invisible reference. */
19992 && (!REG_P (XEXP (rtl, 0))
19993 || REGNO (XEXP (rtl, 0)) == HARD_FRAME_POINTER_REGNUM
19994 || REGNO (XEXP (rtl, 0)) == STACK_POINTER_REGNUM
19995 #if !HARD_FRAME_POINTER_IS_ARG_POINTER
19996 || REGNO (XEXP (rtl, 0)) == ARG_POINTER_REGNUM
19997 #endif
19999 /* Big endian correction check. */
20000 && BYTES_BIG_ENDIAN
20001 && TYPE_MODE (TREE_TYPE (decl)) != GET_MODE (rtl)
20002 && known_lt (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl))),
20003 UNITS_PER_WORD))
20005 machine_mode addr_mode = get_address_mode (rtl);
20006 poly_int64 offset = (UNITS_PER_WORD
20007 - GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl))));
20009 rtl = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (decl)),
20010 plus_constant (addr_mode, XEXP (rtl, 0), offset));
20013 else if (VAR_P (decl)
20014 && rtl
20015 && MEM_P (rtl)
20016 && GET_MODE (rtl) != TYPE_MODE (TREE_TYPE (decl)))
20018 machine_mode addr_mode = get_address_mode (rtl);
20019 poly_int64 offset = byte_lowpart_offset (TYPE_MODE (TREE_TYPE (decl)),
20020 GET_MODE (rtl));
20022 /* If a variable is declared "register" yet is smaller than
20023 a register, then if we store the variable to memory, it
20024 looks like we're storing a register-sized value, when in
20025 fact we are not. We need to adjust the offset of the
20026 storage location to reflect the actual value's bytes,
20027 else gdb will not be able to display it. */
20028 if (maybe_ne (offset, 0))
20029 rtl = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (decl)),
20030 plus_constant (addr_mode, XEXP (rtl, 0), offset));
20033 /* A variable with no DECL_RTL but a DECL_INITIAL is a compile-time constant,
20034 and will have been substituted directly into all expressions that use it.
20035 C does not have such a concept, but C++ and other languages do. */
20036 if (!rtl && VAR_P (decl) && DECL_INITIAL (decl))
20037 rtl = rtl_for_decl_init (DECL_INITIAL (decl), TREE_TYPE (decl));
20039 if (rtl)
20040 rtl = targetm.delegitimize_address (rtl);
20042 /* If we don't look past the constant pool, we risk emitting a
20043 reference to a constant pool entry that isn't referenced from
20044 code, and thus is not emitted. */
20045 if (rtl)
20046 rtl = avoid_constant_pool_reference (rtl);
20048 /* Try harder to get a rtl. If this symbol ends up not being emitted
20049 in the current CU, resolve_addr will remove the expression referencing
20050 it. */
20051 if (rtl == NULL_RTX
20052 && !(early_dwarf && (flag_generate_lto || flag_generate_offload))
20053 && VAR_P (decl)
20054 && !DECL_EXTERNAL (decl)
20055 && TREE_STATIC (decl)
20056 && DECL_NAME (decl)
20057 && !DECL_HARD_REGISTER (decl)
20058 && DECL_MODE (decl) != VOIDmode)
20060 rtl = make_decl_rtl_for_debug (decl);
20061 if (!MEM_P (rtl)
20062 || GET_CODE (XEXP (rtl, 0)) != SYMBOL_REF
20063 || SYMBOL_REF_DECL (XEXP (rtl, 0)) != decl)
20064 rtl = NULL_RTX;
20067 return rtl;
20070 /* Check whether decl is a Fortran COMMON symbol. If not, NULL_TREE is
20071 returned. If so, the decl for the COMMON block is returned, and the
20072 value is the offset into the common block for the symbol. */
20074 static tree
20075 fortran_common (tree decl, HOST_WIDE_INT *value)
20077 tree val_expr, cvar;
20078 machine_mode mode;
20079 poly_int64 bitsize, bitpos;
20080 tree offset;
20081 HOST_WIDE_INT cbitpos;
20082 int unsignedp, reversep, volatilep = 0;
20084 /* If the decl isn't a VAR_DECL, or if it isn't static, or if
20085 it does not have a value (the offset into the common area), or if it
20086 is thread local (as opposed to global) then it isn't common, and shouldn't
20087 be handled as such. */
20088 if (!VAR_P (decl)
20089 || !TREE_STATIC (decl)
20090 || !DECL_HAS_VALUE_EXPR_P (decl)
20091 || !is_fortran ())
20092 return NULL_TREE;
20094 val_expr = DECL_VALUE_EXPR (decl);
20095 if (TREE_CODE (val_expr) != COMPONENT_REF)
20096 return NULL_TREE;
20098 cvar = get_inner_reference (val_expr, &bitsize, &bitpos, &offset, &mode,
20099 &unsignedp, &reversep, &volatilep);
20101 if (cvar == NULL_TREE
20102 || !VAR_P (cvar)
20103 || DECL_ARTIFICIAL (cvar)
20104 || !TREE_PUBLIC (cvar)
20105 /* We don't expect to have to cope with variable offsets,
20106 since at present all static data must have a constant size. */
20107 || !bitpos.is_constant (&cbitpos))
20108 return NULL_TREE;
20110 *value = 0;
20111 if (offset != NULL)
20113 if (!tree_fits_shwi_p (offset))
20114 return NULL_TREE;
20115 *value = tree_to_shwi (offset);
20117 if (cbitpos != 0)
20118 *value += cbitpos / BITS_PER_UNIT;
20120 return cvar;
20123 /* Generate *either* a DW_AT_location attribute or else a DW_AT_const_value
20124 data attribute for a variable or a parameter. We generate the
20125 DW_AT_const_value attribute only in those cases where the given variable
20126 or parameter does not have a true "location" either in memory or in a
20127 register. This can happen (for example) when a constant is passed as an
20128 actual argument in a call to an inline function. (It's possible that
20129 these things can crop up in other ways also.) Note that one type of
20130 constant value which can be passed into an inlined function is a constant
20131 pointer. This can happen for example if an actual argument in an inlined
20132 function call evaluates to a compile-time constant address.
20134 CACHE_P is true if it is worth caching the location list for DECL,
20135 so that future calls can reuse it rather than regenerate it from scratch.
20136 This is true for BLOCK_NONLOCALIZED_VARS in inlined subroutines,
20137 since we will need to refer to them each time the function is inlined. */
20139 static bool
20140 add_location_or_const_value_attribute (dw_die_ref die, tree decl, bool cache_p)
20142 rtx rtl;
20143 dw_loc_list_ref list;
20144 var_loc_list *loc_list;
20145 cached_dw_loc_list *cache;
20147 if (early_dwarf)
20148 return false;
20150 if (TREE_CODE (decl) == ERROR_MARK)
20151 return false;
20153 if (get_AT (die, DW_AT_location)
20154 || get_AT (die, DW_AT_const_value))
20155 return true;
20157 gcc_assert (VAR_P (decl) || TREE_CODE (decl) == PARM_DECL
20158 || TREE_CODE (decl) == RESULT_DECL);
20160 /* Try to get some constant RTL for this decl, and use that as the value of
20161 the location. */
20163 rtl = rtl_for_decl_location (decl);
20164 if (rtl && (CONSTANT_P (rtl) || GET_CODE (rtl) == CONST_STRING)
20165 && add_const_value_attribute (die, rtl))
20166 return true;
20168 /* See if we have single element location list that is equivalent to
20169 a constant value. That way we are better to use add_const_value_attribute
20170 rather than expanding constant value equivalent. */
20171 loc_list = lookup_decl_loc (decl);
20172 if (loc_list
20173 && loc_list->first
20174 && loc_list->first->next == NULL
20175 && NOTE_P (loc_list->first->loc)
20176 && NOTE_VAR_LOCATION (loc_list->first->loc)
20177 && NOTE_VAR_LOCATION_LOC (loc_list->first->loc))
20179 struct var_loc_node *node;
20181 node = loc_list->first;
20182 rtl = NOTE_VAR_LOCATION_LOC (node->loc);
20183 if (GET_CODE (rtl) == EXPR_LIST)
20184 rtl = XEXP (rtl, 0);
20185 if ((CONSTANT_P (rtl) || GET_CODE (rtl) == CONST_STRING)
20186 && add_const_value_attribute (die, rtl))
20187 return true;
20189 /* If this decl is from BLOCK_NONLOCALIZED_VARS, we might need its
20190 list several times. See if we've already cached the contents. */
20191 list = NULL;
20192 if (loc_list == NULL || cached_dw_loc_list_table == NULL)
20193 cache_p = false;
20194 if (cache_p)
20196 cache = cached_dw_loc_list_table->find_with_hash (decl, DECL_UID (decl));
20197 if (cache)
20198 list = cache->loc_list;
20200 if (list == NULL)
20202 list = loc_list_from_tree (decl, decl_by_reference_p (decl) ? 0 : 2,
20203 NULL);
20204 /* It is usually worth caching this result if the decl is from
20205 BLOCK_NONLOCALIZED_VARS and if the list has at least two elements. */
20206 if (cache_p && list && list->dw_loc_next)
20208 cached_dw_loc_list **slot
20209 = cached_dw_loc_list_table->find_slot_with_hash (decl,
20210 DECL_UID (decl),
20211 INSERT);
20212 cache = ggc_cleared_alloc<cached_dw_loc_list> ();
20213 cache->decl_id = DECL_UID (decl);
20214 cache->loc_list = list;
20215 *slot = cache;
20218 if (list)
20220 add_AT_location_description (die, DW_AT_location, list);
20221 return true;
20223 /* None of that worked, so it must not really have a location;
20224 try adding a constant value attribute from the DECL_INITIAL. */
20225 return tree_add_const_value_attribute_for_decl (die, decl);
20228 /* Helper function for tree_add_const_value_attribute. Natively encode
20229 initializer INIT into an array. Return true if successful. */
20231 static bool
20232 native_encode_initializer (tree init, unsigned char *array, int size)
20234 tree type;
20236 if (init == NULL_TREE)
20237 return false;
20239 STRIP_NOPS (init);
20240 switch (TREE_CODE (init))
20242 case STRING_CST:
20243 type = TREE_TYPE (init);
20244 if (TREE_CODE (type) == ARRAY_TYPE)
20246 tree enttype = TREE_TYPE (type);
20247 scalar_int_mode mode;
20249 if (!is_int_mode (TYPE_MODE (enttype), &mode)
20250 || GET_MODE_SIZE (mode) != 1)
20251 return false;
20252 if (int_size_in_bytes (type) != size)
20253 return false;
20254 if (size > TREE_STRING_LENGTH (init))
20256 memcpy (array, TREE_STRING_POINTER (init),
20257 TREE_STRING_LENGTH (init));
20258 memset (array + TREE_STRING_LENGTH (init),
20259 '\0', size - TREE_STRING_LENGTH (init));
20261 else
20262 memcpy (array, TREE_STRING_POINTER (init), size);
20263 return true;
20265 return false;
20266 case CONSTRUCTOR:
20267 type = TREE_TYPE (init);
20268 if (int_size_in_bytes (type) != size)
20269 return false;
20270 if (TREE_CODE (type) == ARRAY_TYPE)
20272 HOST_WIDE_INT min_index;
20273 unsigned HOST_WIDE_INT cnt;
20274 int curpos = 0, fieldsize;
20275 constructor_elt *ce;
20277 if (TYPE_DOMAIN (type) == NULL_TREE
20278 || !tree_fits_shwi_p (TYPE_MIN_VALUE (TYPE_DOMAIN (type))))
20279 return false;
20281 fieldsize = int_size_in_bytes (TREE_TYPE (type));
20282 if (fieldsize <= 0)
20283 return false;
20285 min_index = tree_to_shwi (TYPE_MIN_VALUE (TYPE_DOMAIN (type)));
20286 memset (array, '\0', size);
20287 FOR_EACH_VEC_SAFE_ELT (CONSTRUCTOR_ELTS (init), cnt, ce)
20289 tree val = ce->value;
20290 tree index = ce->index;
20291 int pos = curpos;
20292 if (index && TREE_CODE (index) == RANGE_EXPR)
20293 pos = (tree_to_shwi (TREE_OPERAND (index, 0)) - min_index)
20294 * fieldsize;
20295 else if (index)
20296 pos = (tree_to_shwi (index) - min_index) * fieldsize;
20298 if (val)
20300 STRIP_NOPS (val);
20301 if (!native_encode_initializer (val, array + pos, fieldsize))
20302 return false;
20304 curpos = pos + fieldsize;
20305 if (index && TREE_CODE (index) == RANGE_EXPR)
20307 int count = tree_to_shwi (TREE_OPERAND (index, 1))
20308 - tree_to_shwi (TREE_OPERAND (index, 0));
20309 while (count-- > 0)
20311 if (val)
20312 memcpy (array + curpos, array + pos, fieldsize);
20313 curpos += fieldsize;
20316 gcc_assert (curpos <= size);
20318 return true;
20320 else if (TREE_CODE (type) == RECORD_TYPE
20321 || TREE_CODE (type) == UNION_TYPE)
20323 tree field = NULL_TREE;
20324 unsigned HOST_WIDE_INT cnt;
20325 constructor_elt *ce;
20327 if (int_size_in_bytes (type) != size)
20328 return false;
20330 if (TREE_CODE (type) == RECORD_TYPE)
20331 field = TYPE_FIELDS (type);
20333 FOR_EACH_VEC_SAFE_ELT (CONSTRUCTOR_ELTS (init), cnt, ce)
20335 tree val = ce->value;
20336 int pos, fieldsize;
20338 if (ce->index != 0)
20339 field = ce->index;
20341 if (val)
20342 STRIP_NOPS (val);
20344 if (field == NULL_TREE || DECL_BIT_FIELD (field))
20345 return false;
20347 if (TREE_CODE (TREE_TYPE (field)) == ARRAY_TYPE
20348 && TYPE_DOMAIN (TREE_TYPE (field))
20349 && ! TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (field))))
20350 return false;
20351 else if (DECL_SIZE_UNIT (field) == NULL_TREE
20352 || !tree_fits_shwi_p (DECL_SIZE_UNIT (field)))
20353 return false;
20354 fieldsize = tree_to_shwi (DECL_SIZE_UNIT (field));
20355 pos = int_byte_position (field);
20356 gcc_assert (pos + fieldsize <= size);
20357 if (val && fieldsize != 0
20358 && !native_encode_initializer (val, array + pos, fieldsize))
20359 return false;
20361 return true;
20363 return false;
20364 case VIEW_CONVERT_EXPR:
20365 case NON_LVALUE_EXPR:
20366 return native_encode_initializer (TREE_OPERAND (init, 0), array, size);
20367 default:
20368 return native_encode_expr (init, array, size) == size;
20372 /* Attach a DW_AT_const_value attribute to DIE. The value of the
20373 attribute is the const value T. */
20375 static bool
20376 tree_add_const_value_attribute (dw_die_ref die, tree t)
20378 tree init;
20379 tree type = TREE_TYPE (t);
20380 rtx rtl;
20382 if (!t || !TREE_TYPE (t) || TREE_TYPE (t) == error_mark_node)
20383 return false;
20385 init = t;
20386 gcc_assert (!DECL_P (init));
20388 if (TREE_CODE (init) == INTEGER_CST)
20390 if (tree_fits_uhwi_p (init))
20392 add_AT_unsigned (die, DW_AT_const_value, tree_to_uhwi (init));
20393 return true;
20395 if (tree_fits_shwi_p (init))
20397 add_AT_int (die, DW_AT_const_value, tree_to_shwi (init));
20398 return true;
20401 if (! early_dwarf)
20403 rtl = rtl_for_decl_init (init, type);
20404 if (rtl)
20405 return add_const_value_attribute (die, rtl);
20407 /* If the host and target are sane, try harder. */
20408 if (CHAR_BIT == 8 && BITS_PER_UNIT == 8
20409 && initializer_constant_valid_p (init, type))
20411 HOST_WIDE_INT size = int_size_in_bytes (TREE_TYPE (init));
20412 if (size > 0 && (int) size == size)
20414 unsigned char *array = ggc_cleared_vec_alloc<unsigned char> (size);
20416 if (native_encode_initializer (init, array, size))
20418 add_AT_vec (die, DW_AT_const_value, size, 1, array);
20419 return true;
20421 ggc_free (array);
20424 return false;
20427 /* Attach a DW_AT_const_value attribute to VAR_DIE. The value of the
20428 attribute is the const value of T, where T is an integral constant
20429 variable with static storage duration
20430 (so it can't be a PARM_DECL or a RESULT_DECL). */
20432 static bool
20433 tree_add_const_value_attribute_for_decl (dw_die_ref var_die, tree decl)
20436 if (!decl
20437 || (!VAR_P (decl) && TREE_CODE (decl) != CONST_DECL)
20438 || (VAR_P (decl) && !TREE_STATIC (decl)))
20439 return false;
20441 if (TREE_READONLY (decl)
20442 && ! TREE_THIS_VOLATILE (decl)
20443 && DECL_INITIAL (decl))
20444 /* OK */;
20445 else
20446 return false;
20448 /* Don't add DW_AT_const_value if abstract origin already has one. */
20449 if (get_AT (var_die, DW_AT_const_value))
20450 return false;
20452 return tree_add_const_value_attribute (var_die, DECL_INITIAL (decl));
20455 /* Convert the CFI instructions for the current function into a
20456 location list. This is used for DW_AT_frame_base when we targeting
20457 a dwarf2 consumer that does not support the dwarf3
20458 DW_OP_call_frame_cfa. OFFSET is a constant to be added to all CFA
20459 expressions. */
20461 static dw_loc_list_ref
20462 convert_cfa_to_fb_loc_list (HOST_WIDE_INT offset)
20464 int ix;
20465 dw_fde_ref fde;
20466 dw_loc_list_ref list, *list_tail;
20467 dw_cfi_ref cfi;
20468 dw_cfa_location last_cfa, next_cfa;
20469 const char *start_label, *last_label, *section;
20470 dw_cfa_location remember;
20472 fde = cfun->fde;
20473 gcc_assert (fde != NULL);
20475 section = secname_for_decl (current_function_decl);
20476 list_tail = &list;
20477 list = NULL;
20479 memset (&next_cfa, 0, sizeof (next_cfa));
20480 next_cfa.reg = INVALID_REGNUM;
20481 remember = next_cfa;
20483 start_label = fde->dw_fde_begin;
20485 /* ??? Bald assumption that the CIE opcode list does not contain
20486 advance opcodes. */
20487 FOR_EACH_VEC_ELT (*cie_cfi_vec, ix, cfi)
20488 lookup_cfa_1 (cfi, &next_cfa, &remember);
20490 last_cfa = next_cfa;
20491 last_label = start_label;
20493 if (fde->dw_fde_second_begin && fde->dw_fde_switch_cfi_index == 0)
20495 /* If the first partition contained no CFI adjustments, the
20496 CIE opcodes apply to the whole first partition. */
20497 *list_tail = new_loc_list (build_cfa_loc (&last_cfa, offset),
20498 fde->dw_fde_begin, 0, fde->dw_fde_end, 0, section);
20499 list_tail =&(*list_tail)->dw_loc_next;
20500 start_label = last_label = fde->dw_fde_second_begin;
20503 FOR_EACH_VEC_SAFE_ELT (fde->dw_fde_cfi, ix, cfi)
20505 switch (cfi->dw_cfi_opc)
20507 case DW_CFA_set_loc:
20508 case DW_CFA_advance_loc1:
20509 case DW_CFA_advance_loc2:
20510 case DW_CFA_advance_loc4:
20511 if (!cfa_equal_p (&last_cfa, &next_cfa))
20513 *list_tail = new_loc_list (build_cfa_loc (&last_cfa, offset),
20514 start_label, 0, last_label, 0, section);
20516 list_tail = &(*list_tail)->dw_loc_next;
20517 last_cfa = next_cfa;
20518 start_label = last_label;
20520 last_label = cfi->dw_cfi_oprnd1.dw_cfi_addr;
20521 break;
20523 case DW_CFA_advance_loc:
20524 /* The encoding is complex enough that we should never emit this. */
20525 gcc_unreachable ();
20527 default:
20528 lookup_cfa_1 (cfi, &next_cfa, &remember);
20529 break;
20531 if (ix + 1 == fde->dw_fde_switch_cfi_index)
20533 if (!cfa_equal_p (&last_cfa, &next_cfa))
20535 *list_tail = new_loc_list (build_cfa_loc (&last_cfa, offset),
20536 start_label, 0, last_label, 0, section);
20538 list_tail = &(*list_tail)->dw_loc_next;
20539 last_cfa = next_cfa;
20540 start_label = last_label;
20542 *list_tail = new_loc_list (build_cfa_loc (&last_cfa, offset),
20543 start_label, 0, fde->dw_fde_end, 0, section);
20544 list_tail = &(*list_tail)->dw_loc_next;
20545 start_label = last_label = fde->dw_fde_second_begin;
20549 if (!cfa_equal_p (&last_cfa, &next_cfa))
20551 *list_tail = new_loc_list (build_cfa_loc (&last_cfa, offset),
20552 start_label, 0, last_label, 0, section);
20553 list_tail = &(*list_tail)->dw_loc_next;
20554 start_label = last_label;
20557 *list_tail = new_loc_list (build_cfa_loc (&next_cfa, offset),
20558 start_label, 0,
20559 fde->dw_fde_second_begin
20560 ? fde->dw_fde_second_end : fde->dw_fde_end, 0,
20561 section);
20563 maybe_gen_llsym (list);
20565 return list;
20568 /* Compute a displacement from the "steady-state frame pointer" to the
20569 frame base (often the same as the CFA), and store it in
20570 frame_pointer_fb_offset. OFFSET is added to the displacement
20571 before the latter is negated. */
20573 static void
20574 compute_frame_pointer_to_fb_displacement (poly_int64 offset)
20576 rtx reg, elim;
20578 #ifdef FRAME_POINTER_CFA_OFFSET
20579 reg = frame_pointer_rtx;
20580 offset += FRAME_POINTER_CFA_OFFSET (current_function_decl);
20581 #else
20582 reg = arg_pointer_rtx;
20583 offset += ARG_POINTER_CFA_OFFSET (current_function_decl);
20584 #endif
20586 elim = (ira_use_lra_p
20587 ? lra_eliminate_regs (reg, VOIDmode, NULL_RTX)
20588 : eliminate_regs (reg, VOIDmode, NULL_RTX));
20589 elim = strip_offset_and_add (elim, &offset);
20591 frame_pointer_fb_offset = -offset;
20593 /* ??? AVR doesn't set up valid eliminations when there is no stack frame
20594 in which to eliminate. This is because it's stack pointer isn't
20595 directly accessible as a register within the ISA. To work around
20596 this, assume that while we cannot provide a proper value for
20597 frame_pointer_fb_offset, we won't need one either. We can use
20598 hard frame pointer in debug info even if frame pointer isn't used
20599 since hard frame pointer in debug info is encoded with DW_OP_fbreg
20600 which uses the DW_AT_frame_base attribute, not hard frame pointer
20601 directly. */
20602 frame_pointer_fb_offset_valid
20603 = (elim == hard_frame_pointer_rtx || elim == stack_pointer_rtx);
20606 /* Generate a DW_AT_name attribute given some string value to be included as
20607 the value of the attribute. */
20609 static void
20610 add_name_attribute (dw_die_ref die, const char *name_string)
20612 if (name_string != NULL && *name_string != 0)
20614 if (demangle_name_func)
20615 name_string = (*demangle_name_func) (name_string);
20617 add_AT_string (die, DW_AT_name, name_string);
20621 /* Generate a DW_AT_description attribute given some string value to be included
20622 as the value of the attribute. */
20624 static void
20625 add_desc_attribute (dw_die_ref die, const char *name_string)
20627 if (!flag_describe_dies || (dwarf_version < 3 && dwarf_strict))
20628 return;
20630 if (name_string == NULL || *name_string == 0)
20631 return;
20633 if (demangle_name_func)
20634 name_string = (*demangle_name_func) (name_string);
20636 add_AT_string (die, DW_AT_description, name_string);
20639 /* Generate a DW_AT_description attribute given some decl to be included
20640 as the value of the attribute. */
20642 static void
20643 add_desc_attribute (dw_die_ref die, tree decl)
20645 tree decl_name;
20647 if (!flag_describe_dies || (dwarf_version < 3 && dwarf_strict))
20648 return;
20650 if (decl == NULL_TREE || !DECL_P (decl))
20651 return;
20652 decl_name = DECL_NAME (decl);
20654 if (decl_name != NULL && IDENTIFIER_POINTER (decl_name) != NULL)
20656 const char *name = dwarf2_name (decl, 0);
20657 add_desc_attribute (die, name ? name : IDENTIFIER_POINTER (decl_name));
20659 else
20661 char *desc = print_generic_expr_to_str (decl);
20662 add_desc_attribute (die, desc);
20663 free (desc);
20667 /* Retrieve the descriptive type of TYPE, if any, make sure it has a
20668 DIE and attach a DW_AT_GNAT_descriptive_type attribute to the DIE
20669 of TYPE accordingly.
20671 ??? This is a temporary measure until after we're able to generate
20672 regular DWARF for the complex Ada type system. */
20674 static void
20675 add_gnat_descriptive_type_attribute (dw_die_ref die, tree type,
20676 dw_die_ref context_die)
20678 tree dtype;
20679 dw_die_ref dtype_die;
20681 if (!lang_hooks.types.descriptive_type)
20682 return;
20684 dtype = lang_hooks.types.descriptive_type (type);
20685 if (!dtype)
20686 return;
20688 dtype_die = lookup_type_die (dtype);
20689 if (!dtype_die)
20691 gen_type_die (dtype, context_die);
20692 dtype_die = lookup_type_die (dtype);
20693 gcc_assert (dtype_die);
20696 add_AT_die_ref (die, DW_AT_GNAT_descriptive_type, dtype_die);
20699 /* Retrieve the comp_dir string suitable for use with DW_AT_comp_dir. */
20701 static const char *
20702 comp_dir_string (void)
20704 const char *wd;
20705 char *wd1;
20706 static const char *cached_wd = NULL;
20708 if (cached_wd != NULL)
20709 return cached_wd;
20711 wd = get_src_pwd ();
20712 if (wd == NULL)
20713 return NULL;
20715 if (DWARF2_DIR_SHOULD_END_WITH_SEPARATOR)
20717 int wdlen;
20719 wdlen = strlen (wd);
20720 wd1 = ggc_vec_alloc<char> (wdlen + 2);
20721 strcpy (wd1, wd);
20722 wd1 [wdlen] = DIR_SEPARATOR;
20723 wd1 [wdlen + 1] = 0;
20724 wd = wd1;
20727 cached_wd = remap_debug_filename (wd);
20728 return cached_wd;
20731 /* Generate a DW_AT_comp_dir attribute for DIE. */
20733 static void
20734 add_comp_dir_attribute (dw_die_ref die)
20736 const char * wd = comp_dir_string ();
20737 if (wd != NULL)
20738 add_AT_string (die, DW_AT_comp_dir, wd);
20741 /* Given a tree node VALUE describing a scalar attribute ATTR (i.e. a bound, a
20742 pointer computation, ...), output a representation for that bound according
20743 to the accepted FORMS (see enum dw_scalar_form) and add it to DIE. See
20744 loc_list_from_tree for the meaning of CONTEXT. */
20746 static void
20747 add_scalar_info (dw_die_ref die, enum dwarf_attribute attr, tree value,
20748 int forms, struct loc_descr_context *context)
20750 dw_die_ref context_die, decl_die = NULL;
20751 dw_loc_list_ref list;
20752 bool strip_conversions = true;
20753 bool placeholder_seen = false;
20755 while (strip_conversions)
20756 switch (TREE_CODE (value))
20758 case ERROR_MARK:
20759 case SAVE_EXPR:
20760 return;
20762 CASE_CONVERT:
20763 case VIEW_CONVERT_EXPR:
20764 value = TREE_OPERAND (value, 0);
20765 break;
20767 default:
20768 strip_conversions = false;
20769 break;
20772 /* If possible and permitted, output the attribute as a constant. */
20773 if ((forms & dw_scalar_form_constant) != 0
20774 && TREE_CODE (value) == INTEGER_CST)
20776 unsigned int prec = simple_type_size_in_bits (TREE_TYPE (value));
20778 /* If HOST_WIDE_INT is big enough then represent the bound as
20779 a constant value. We need to choose a form based on
20780 whether the type is signed or unsigned. We cannot just
20781 call add_AT_unsigned if the value itself is positive
20782 (add_AT_unsigned might add the unsigned value encoded as
20783 DW_FORM_data[1248]). Some DWARF consumers will lookup the
20784 bounds type and then sign extend any unsigned values found
20785 for signed types. This is needed only for
20786 DW_AT_{lower,upper}_bound, since for most other attributes,
20787 consumers will treat DW_FORM_data[1248] as unsigned values,
20788 regardless of the underlying type. */
20789 if (prec <= HOST_BITS_PER_WIDE_INT
20790 || tree_fits_uhwi_p (value))
20792 if (TYPE_UNSIGNED (TREE_TYPE (value)))
20793 add_AT_unsigned (die, attr, TREE_INT_CST_LOW (value));
20794 else
20795 add_AT_int (die, attr, TREE_INT_CST_LOW (value));
20797 else
20798 /* Otherwise represent the bound as an unsigned value with
20799 the precision of its type. The precision and signedness
20800 of the type will be necessary to re-interpret it
20801 unambiguously. */
20802 add_AT_wide (die, attr, wi::to_wide (value));
20803 return;
20806 /* Otherwise, if it's possible and permitted too, output a reference to
20807 another DIE. */
20808 if ((forms & dw_scalar_form_reference) != 0)
20810 tree decl = NULL_TREE;
20812 /* Some type attributes reference an outer type. For instance, the upper
20813 bound of an array may reference an embedding record (this happens in
20814 Ada). */
20815 if (TREE_CODE (value) == COMPONENT_REF
20816 && TREE_CODE (TREE_OPERAND (value, 0)) == PLACEHOLDER_EXPR
20817 && TREE_CODE (TREE_OPERAND (value, 1)) == FIELD_DECL)
20818 decl = TREE_OPERAND (value, 1);
20820 else if (VAR_P (value)
20821 || TREE_CODE (value) == PARM_DECL
20822 || TREE_CODE (value) == RESULT_DECL)
20823 decl = value;
20825 if (decl != NULL_TREE)
20827 decl_die = lookup_decl_die (decl);
20829 /* ??? Can this happen, or should the variable have been bound
20830 first? Probably it can, since I imagine that we try to create
20831 the types of parameters in the order in which they exist in
20832 the list, and won't have created a forward reference to a
20833 later parameter. */
20834 if (decl_die != NULL)
20836 if (get_AT (decl_die, DW_AT_location)
20837 || get_AT (decl_die, DW_AT_const_value))
20839 add_AT_die_ref (die, attr, decl_die);
20840 return;
20846 /* Last chance: try to create a stack operation procedure to evaluate the
20847 value. Do nothing if even that is not possible or permitted. */
20848 if ((forms & dw_scalar_form_exprloc) == 0)
20849 return;
20851 list = loc_list_from_tree (value, 2, context);
20852 if (context && context->placeholder_arg)
20854 placeholder_seen = context->placeholder_seen;
20855 context->placeholder_seen = false;
20857 if (list == NULL || single_element_loc_list_p (list))
20859 /* If this attribute is not a reference nor constant, it is
20860 a DWARF expression rather than location description. For that
20861 loc_list_from_tree (value, 0, &context) is needed. */
20862 dw_loc_list_ref list2 = loc_list_from_tree (value, 0, context);
20863 if (list2 && single_element_loc_list_p (list2))
20865 if (placeholder_seen)
20867 struct dwarf_procedure_info dpi;
20868 dpi.fndecl = NULL_TREE;
20869 dpi.args_count = 1;
20870 if (!resolve_args_picking (list2->expr, 1, &dpi))
20871 return;
20873 add_AT_loc (die, attr, list2->expr);
20874 return;
20878 /* If that failed to give a single element location list, fall back to
20879 outputting this as a reference... still if permitted. */
20880 if (list == NULL
20881 || (forms & dw_scalar_form_reference) == 0
20882 || placeholder_seen)
20883 return;
20885 if (!decl_die)
20887 if (current_function_decl == 0)
20888 context_die = comp_unit_die ();
20889 else
20890 context_die = lookup_decl_die (current_function_decl);
20892 decl_die = new_die (DW_TAG_variable, context_die, value);
20893 add_AT_flag (decl_die, DW_AT_artificial, 1);
20894 add_type_attribute (decl_die, TREE_TYPE (value), TYPE_QUAL_CONST, false,
20895 context_die);
20898 add_AT_location_description (decl_die, DW_AT_location, list);
20899 add_AT_die_ref (die, attr, decl_die);
20902 /* Return the default for DW_AT_lower_bound, or -1 if there is not any
20903 default. */
20905 static int
20906 lower_bound_default (void)
20908 switch (get_AT_unsigned (comp_unit_die (), DW_AT_language))
20910 case DW_LANG_C:
20911 case DW_LANG_C89:
20912 case DW_LANG_C99:
20913 case DW_LANG_C11:
20914 case DW_LANG_C_plus_plus:
20915 case DW_LANG_C_plus_plus_11:
20916 case DW_LANG_C_plus_plus_14:
20917 case DW_LANG_ObjC:
20918 case DW_LANG_ObjC_plus_plus:
20919 return 0;
20920 case DW_LANG_Fortran77:
20921 case DW_LANG_Fortran90:
20922 case DW_LANG_Fortran95:
20923 case DW_LANG_Fortran03:
20924 case DW_LANG_Fortran08:
20925 return 1;
20926 case DW_LANG_UPC:
20927 case DW_LANG_D:
20928 case DW_LANG_Python:
20929 return dwarf_version >= 4 ? 0 : -1;
20930 case DW_LANG_Ada95:
20931 case DW_LANG_Ada83:
20932 case DW_LANG_Cobol74:
20933 case DW_LANG_Cobol85:
20934 case DW_LANG_Modula2:
20935 case DW_LANG_PLI:
20936 return dwarf_version >= 4 ? 1 : -1;
20937 default:
20938 return -1;
20942 /* Given a tree node describing an array bound (either lower or upper) output
20943 a representation for that bound. */
20945 static void
20946 add_bound_info (dw_die_ref subrange_die, enum dwarf_attribute bound_attr,
20947 tree bound, struct loc_descr_context *context)
20949 int dflt;
20951 while (1)
20952 switch (TREE_CODE (bound))
20954 /* Strip all conversions. */
20955 CASE_CONVERT:
20956 case VIEW_CONVERT_EXPR:
20957 bound = TREE_OPERAND (bound, 0);
20958 break;
20960 /* All fixed-bounds are represented by INTEGER_CST nodes. Lower bounds
20961 are even omitted when they are the default. */
20962 case INTEGER_CST:
20963 /* If the value for this bound is the default one, we can even omit the
20964 attribute. */
20965 if (bound_attr == DW_AT_lower_bound
20966 && tree_fits_shwi_p (bound)
20967 && (dflt = lower_bound_default ()) != -1
20968 && tree_to_shwi (bound) == dflt)
20969 return;
20971 /* FALLTHRU */
20973 default:
20974 /* Because of the complex interaction there can be with other GNAT
20975 encodings, GDB isn't ready yet to handle proper DWARF description
20976 for self-referencial subrange bounds: let GNAT encodings do the
20977 magic in such a case. */
20978 if (is_ada ()
20979 && gnat_encodings != DWARF_GNAT_ENCODINGS_MINIMAL
20980 && contains_placeholder_p (bound))
20981 return;
20983 add_scalar_info (subrange_die, bound_attr, bound,
20984 dw_scalar_form_constant
20985 | dw_scalar_form_exprloc
20986 | dw_scalar_form_reference,
20987 context);
20988 return;
20992 /* Add subscript info to TYPE_DIE, describing an array TYPE, collapsing
20993 possibly nested array subscripts in a flat sequence if COLLAPSE_P is true.
20994 Note that the block of subscript information for an array type also
20995 includes information about the element type of the given array type.
20997 This function reuses previously set type and bound information if
20998 available. */
21000 static void
21001 add_subscript_info (dw_die_ref type_die, tree type, bool collapse_p)
21003 unsigned dimension_number;
21004 tree lower, upper;
21005 dw_die_ref child = type_die->die_child;
21007 for (dimension_number = 0;
21008 TREE_CODE (type) == ARRAY_TYPE && (dimension_number == 0 || collapse_p);
21009 type = TREE_TYPE (type), dimension_number++)
21011 tree domain = TYPE_DOMAIN (type);
21013 if (TYPE_STRING_FLAG (type) && is_fortran () && dimension_number > 0)
21014 break;
21016 /* Arrays come in three flavors: Unspecified bounds, fixed bounds,
21017 and (in GNU C only) variable bounds. Handle all three forms
21018 here. */
21020 /* Find and reuse a previously generated DW_TAG_subrange_type if
21021 available.
21023 For multi-dimensional arrays, as we iterate through the
21024 various dimensions in the enclosing for loop above, we also
21025 iterate through the DIE children and pick at each
21026 DW_TAG_subrange_type previously generated (if available).
21027 Each child DW_TAG_subrange_type DIE describes the range of
21028 the current dimension. At this point we should have as many
21029 DW_TAG_subrange_type's as we have dimensions in the
21030 array. */
21031 dw_die_ref subrange_die = NULL;
21032 if (child)
21033 while (1)
21035 child = child->die_sib;
21036 if (child->die_tag == DW_TAG_subrange_type)
21037 subrange_die = child;
21038 if (child == type_die->die_child)
21040 /* If we wrapped around, stop looking next time. */
21041 child = NULL;
21042 break;
21044 if (child->die_tag == DW_TAG_subrange_type)
21045 break;
21047 if (!subrange_die)
21048 subrange_die = new_die (DW_TAG_subrange_type, type_die, NULL);
21050 if (domain)
21052 /* We have an array type with specified bounds. */
21053 lower = TYPE_MIN_VALUE (domain);
21054 upper = TYPE_MAX_VALUE (domain);
21056 /* Define the index type. */
21057 if (TREE_TYPE (domain)
21058 && !get_AT (subrange_die, DW_AT_type))
21060 /* ??? This is probably an Ada unnamed subrange type. Ignore the
21061 TREE_TYPE field. We can't emit debug info for this
21062 because it is an unnamed integral type. */
21063 if (TREE_CODE (domain) == INTEGER_TYPE
21064 && TYPE_NAME (domain) == NULL_TREE
21065 && TREE_CODE (TREE_TYPE (domain)) == INTEGER_TYPE
21066 && TYPE_NAME (TREE_TYPE (domain)) == NULL_TREE)
21068 else
21069 add_type_attribute (subrange_die, TREE_TYPE (domain),
21070 TYPE_UNQUALIFIED, false, type_die);
21073 /* ??? If upper is NULL, the array has unspecified length,
21074 but it does have a lower bound. This happens with Fortran
21075 dimension arr(N:*)
21076 Since the debugger is definitely going to need to know N
21077 to produce useful results, go ahead and output the lower
21078 bound solo, and hope the debugger can cope. */
21080 if (!get_AT (subrange_die, DW_AT_lower_bound))
21081 add_bound_info (subrange_die, DW_AT_lower_bound, lower, NULL);
21082 if (!get_AT (subrange_die, DW_AT_upper_bound)
21083 && !get_AT (subrange_die, DW_AT_count))
21085 if (upper)
21086 add_bound_info (subrange_die, DW_AT_upper_bound, upper, NULL);
21087 else if ((is_c () || is_cxx ()) && COMPLETE_TYPE_P (type))
21088 /* Zero-length array. */
21089 add_bound_info (subrange_die, DW_AT_count,
21090 build_int_cst (TREE_TYPE (lower), 0), NULL);
21094 /* Otherwise we have an array type with an unspecified length. The
21095 DWARF-2 spec does not say how to handle this; let's just leave out the
21096 bounds. */
21100 /* Add a DW_AT_byte_size attribute to DIE with TREE_NODE's size. */
21102 static void
21103 add_byte_size_attribute (dw_die_ref die, tree tree_node)
21105 dw_die_ref decl_die;
21106 HOST_WIDE_INT size;
21107 dw_loc_descr_ref size_expr = NULL;
21109 switch (TREE_CODE (tree_node))
21111 case ERROR_MARK:
21112 size = 0;
21113 break;
21114 case ENUMERAL_TYPE:
21115 case RECORD_TYPE:
21116 case UNION_TYPE:
21117 case QUAL_UNION_TYPE:
21118 if (TREE_CODE (TYPE_SIZE_UNIT (tree_node)) == VAR_DECL
21119 && (decl_die = lookup_decl_die (TYPE_SIZE_UNIT (tree_node))))
21121 add_AT_die_ref (die, DW_AT_byte_size, decl_die);
21122 return;
21124 size_expr = type_byte_size (tree_node, &size);
21125 break;
21126 case FIELD_DECL:
21127 /* For a data member of a struct or union, the DW_AT_byte_size is
21128 generally given as the number of bytes normally allocated for an
21129 object of the *declared* type of the member itself. This is true
21130 even for bit-fields. */
21131 size = int_size_in_bytes (field_type (tree_node));
21132 break;
21133 default:
21134 gcc_unreachable ();
21137 /* Support for dynamically-sized objects was introduced by DWARFv3.
21138 At the moment, GDB does not handle variable byte sizes very well,
21139 though. */
21140 if ((dwarf_version >= 3 || !dwarf_strict)
21141 && gnat_encodings == DWARF_GNAT_ENCODINGS_MINIMAL
21142 && size_expr != NULL)
21143 add_AT_loc (die, DW_AT_byte_size, size_expr);
21145 /* Note that `size' might be -1 when we get to this point. If it is, that
21146 indicates that the byte size of the entity in question is variable and
21147 that we could not generate a DWARF expression that computes it. */
21148 if (size >= 0)
21149 add_AT_unsigned (die, DW_AT_byte_size, size);
21152 /* Add a DW_AT_alignment attribute to DIE with TREE_NODE's non-default
21153 alignment. */
21155 static void
21156 add_alignment_attribute (dw_die_ref die, tree tree_node)
21158 if (dwarf_version < 5 && dwarf_strict)
21159 return;
21161 unsigned align;
21163 if (DECL_P (tree_node))
21165 if (!DECL_USER_ALIGN (tree_node))
21166 return;
21168 align = DECL_ALIGN_UNIT (tree_node);
21170 else if (TYPE_P (tree_node))
21172 if (!TYPE_USER_ALIGN (tree_node))
21173 return;
21175 align = TYPE_ALIGN_UNIT (tree_node);
21177 else
21178 gcc_unreachable ();
21180 add_AT_unsigned (die, DW_AT_alignment, align);
21183 /* For a FIELD_DECL node which represents a bit-field, output an attribute
21184 which specifies the distance in bits from the highest order bit of the
21185 "containing object" for the bit-field to the highest order bit of the
21186 bit-field itself.
21188 For any given bit-field, the "containing object" is a hypothetical object
21189 (of some integral or enum type) within which the given bit-field lives. The
21190 type of this hypothetical "containing object" is always the same as the
21191 declared type of the individual bit-field itself. The determination of the
21192 exact location of the "containing object" for a bit-field is rather
21193 complicated. It's handled by the `field_byte_offset' function (above).
21195 CTX is required: see the comment for VLR_CONTEXT.
21197 Note that it is the size (in bytes) of the hypothetical "containing object"
21198 which will be given in the DW_AT_byte_size attribute for this bit-field.
21199 (See `byte_size_attribute' above). */
21201 static inline void
21202 add_bit_offset_attribute (dw_die_ref die, tree decl, struct vlr_context *ctx)
21204 HOST_WIDE_INT object_offset_in_bytes;
21205 tree original_type = DECL_BIT_FIELD_TYPE (decl);
21206 HOST_WIDE_INT bitpos_int;
21207 HOST_WIDE_INT highest_order_object_bit_offset;
21208 HOST_WIDE_INT highest_order_field_bit_offset;
21209 HOST_WIDE_INT bit_offset;
21211 field_byte_offset (decl, ctx, &object_offset_in_bytes);
21213 /* Must be a field and a bit field. */
21214 gcc_assert (original_type && TREE_CODE (decl) == FIELD_DECL);
21216 /* We can't yet handle bit-fields whose offsets are variable, so if we
21217 encounter such things, just return without generating any attribute
21218 whatsoever. Likewise for variable or too large size. */
21219 if (! tree_fits_shwi_p (bit_position (decl))
21220 || ! tree_fits_uhwi_p (DECL_SIZE (decl)))
21221 return;
21223 bitpos_int = int_bit_position (decl);
21225 /* Note that the bit offset is always the distance (in bits) from the
21226 highest-order bit of the "containing object" to the highest-order bit of
21227 the bit-field itself. Since the "high-order end" of any object or field
21228 is different on big-endian and little-endian machines, the computation
21229 below must take account of these differences. */
21230 highest_order_object_bit_offset = object_offset_in_bytes * BITS_PER_UNIT;
21231 highest_order_field_bit_offset = bitpos_int;
21233 if (! BYTES_BIG_ENDIAN)
21235 highest_order_field_bit_offset += tree_to_shwi (DECL_SIZE (decl));
21236 highest_order_object_bit_offset +=
21237 simple_type_size_in_bits (original_type);
21240 bit_offset
21241 = (! BYTES_BIG_ENDIAN
21242 ? highest_order_object_bit_offset - highest_order_field_bit_offset
21243 : highest_order_field_bit_offset - highest_order_object_bit_offset);
21245 if (bit_offset < 0)
21246 add_AT_int (die, DW_AT_bit_offset, bit_offset);
21247 else
21248 add_AT_unsigned (die, DW_AT_bit_offset, (unsigned HOST_WIDE_INT) bit_offset);
21251 /* For a FIELD_DECL node which represents a bit field, output an attribute
21252 which specifies the length in bits of the given field. */
21254 static inline void
21255 add_bit_size_attribute (dw_die_ref die, tree decl)
21257 /* Must be a field and a bit field. */
21258 gcc_assert (TREE_CODE (decl) == FIELD_DECL
21259 && DECL_BIT_FIELD_TYPE (decl));
21261 if (tree_fits_uhwi_p (DECL_SIZE (decl)))
21262 add_AT_unsigned (die, DW_AT_bit_size, tree_to_uhwi (DECL_SIZE (decl)));
21265 /* If the compiled language is ANSI C, then add a 'prototyped'
21266 attribute, if arg types are given for the parameters of a function. */
21268 static inline void
21269 add_prototyped_attribute (dw_die_ref die, tree func_type)
21271 switch (get_AT_unsigned (comp_unit_die (), DW_AT_language))
21273 case DW_LANG_C:
21274 case DW_LANG_C89:
21275 case DW_LANG_C99:
21276 case DW_LANG_C11:
21277 case DW_LANG_ObjC:
21278 if (prototype_p (func_type))
21279 add_AT_flag (die, DW_AT_prototyped, 1);
21280 break;
21281 default:
21282 break;
21286 /* Add an 'abstract_origin' attribute below a given DIE. The DIE is found
21287 by looking in the type declaration, the object declaration equate table or
21288 the block mapping. */
21290 static inline void
21291 add_abstract_origin_attribute (dw_die_ref die, tree origin)
21293 dw_die_ref origin_die = NULL;
21295 /* For late LTO debug output we want to refer directly to the abstract
21296 DIE in the early debug rather to the possibly existing concrete
21297 instance and avoid creating that just for this purpose. */
21298 sym_off_pair *desc;
21299 if (in_lto_p
21300 && external_die_map
21301 && (desc = external_die_map->get (origin)))
21303 add_AT_external_die_ref (die, DW_AT_abstract_origin,
21304 desc->sym, desc->off);
21305 return;
21308 if (DECL_P (origin))
21309 origin_die = lookup_decl_die (origin);
21310 else if (TYPE_P (origin))
21311 origin_die = lookup_type_die (origin);
21312 else if (TREE_CODE (origin) == BLOCK)
21313 origin_die = lookup_block_die (origin);
21315 /* XXX: Functions that are never lowered don't always have correct block
21316 trees (in the case of java, they simply have no block tree, in some other
21317 languages). For these functions, there is nothing we can really do to
21318 output correct debug info for inlined functions in all cases. Rather
21319 than die, we'll just produce deficient debug info now, in that we will
21320 have variables without a proper abstract origin. In the future, when all
21321 functions are lowered, we should re-add a gcc_assert (origin_die)
21322 here. */
21324 if (origin_die)
21325 add_AT_die_ref (die, DW_AT_abstract_origin, origin_die);
21328 /* We do not currently support the pure_virtual attribute. */
21330 static inline void
21331 add_pure_or_virtual_attribute (dw_die_ref die, tree func_decl)
21333 if (DECL_VINDEX (func_decl))
21335 add_AT_unsigned (die, DW_AT_virtuality, DW_VIRTUALITY_virtual);
21337 if (tree_fits_shwi_p (DECL_VINDEX (func_decl)))
21338 add_AT_loc (die, DW_AT_vtable_elem_location,
21339 new_loc_descr (DW_OP_constu,
21340 tree_to_shwi (DECL_VINDEX (func_decl)),
21341 0));
21343 /* GNU extension: Record what type this method came from originally. */
21344 if (debug_info_level > DINFO_LEVEL_TERSE
21345 && DECL_CONTEXT (func_decl))
21346 add_AT_die_ref (die, DW_AT_containing_type,
21347 lookup_type_die (DECL_CONTEXT (func_decl)));
21351 /* Add a DW_AT_linkage_name or DW_AT_MIPS_linkage_name attribute for the
21352 given decl. This used to be a vendor extension until after DWARF 4
21353 standardized it. */
21355 static void
21356 add_linkage_attr (dw_die_ref die, tree decl)
21358 const char *name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
21360 /* Mimic what assemble_name_raw does with a leading '*'. */
21361 if (name[0] == '*')
21362 name = &name[1];
21364 if (dwarf_version >= 4)
21365 add_AT_string (die, DW_AT_linkage_name, name);
21366 else
21367 add_AT_string (die, DW_AT_MIPS_linkage_name, name);
21370 /* Add source coordinate attributes for the given decl. */
21372 static void
21373 add_src_coords_attributes (dw_die_ref die, tree decl)
21375 expanded_location s;
21377 if (LOCATION_LOCUS (DECL_SOURCE_LOCATION (decl)) == UNKNOWN_LOCATION)
21378 return;
21379 s = expand_location (DECL_SOURCE_LOCATION (decl));
21380 add_AT_file (die, DW_AT_decl_file, lookup_filename (s.file));
21381 add_AT_unsigned (die, DW_AT_decl_line, s.line);
21382 if (debug_column_info && s.column)
21383 add_AT_unsigned (die, DW_AT_decl_column, s.column);
21386 /* Add DW_AT_{,MIPS_}linkage_name attribute for the given decl. */
21388 static void
21389 add_linkage_name_raw (dw_die_ref die, tree decl)
21391 /* Defer until we have an assembler name set. */
21392 if (!DECL_ASSEMBLER_NAME_SET_P (decl))
21394 limbo_die_node *asm_name;
21396 asm_name = ggc_cleared_alloc<limbo_die_node> ();
21397 asm_name->die = die;
21398 asm_name->created_for = decl;
21399 asm_name->next = deferred_asm_name;
21400 deferred_asm_name = asm_name;
21402 else if (DECL_ASSEMBLER_NAME (decl) != DECL_NAME (decl))
21403 add_linkage_attr (die, decl);
21406 /* Add DW_AT_{,MIPS_}linkage_name attribute for the given decl if desired. */
21408 static void
21409 add_linkage_name (dw_die_ref die, tree decl)
21411 if (debug_info_level > DINFO_LEVEL_NONE
21412 && VAR_OR_FUNCTION_DECL_P (decl)
21413 && TREE_PUBLIC (decl)
21414 && !(VAR_P (decl) && DECL_REGISTER (decl))
21415 && die->die_tag != DW_TAG_member)
21416 add_linkage_name_raw (die, decl);
21419 /* Add a DW_AT_name attribute and source coordinate attribute for the
21420 given decl, but only if it actually has a name. */
21422 static void
21423 add_name_and_src_coords_attributes (dw_die_ref die, tree decl,
21424 bool no_linkage_name)
21426 tree decl_name;
21428 decl_name = DECL_NAME (decl);
21429 if (decl_name != NULL && IDENTIFIER_POINTER (decl_name) != NULL)
21431 const char *name = dwarf2_name (decl, 0);
21432 if (name)
21433 add_name_attribute (die, name);
21434 else
21435 add_desc_attribute (die, decl);
21437 if (! DECL_ARTIFICIAL (decl))
21438 add_src_coords_attributes (die, decl);
21440 if (!no_linkage_name)
21441 add_linkage_name (die, decl);
21443 else
21444 add_desc_attribute (die, decl);
21446 #ifdef VMS_DEBUGGING_INFO
21447 /* Get the function's name, as described by its RTL. This may be different
21448 from the DECL_NAME name used in the source file. */
21449 if (TREE_CODE (decl) == FUNCTION_DECL && TREE_ASM_WRITTEN (decl))
21451 add_AT_addr (die, DW_AT_VMS_rtnbeg_pd_address,
21452 XEXP (DECL_RTL (decl), 0), false);
21453 vec_safe_push (used_rtx_array, XEXP (DECL_RTL (decl), 0));
21455 #endif /* VMS_DEBUGGING_INFO */
21458 /* Add VALUE as a DW_AT_discr_value attribute to DIE. */
21460 static void
21461 add_discr_value (dw_die_ref die, dw_discr_value *value)
21463 dw_attr_node attr;
21465 attr.dw_attr = DW_AT_discr_value;
21466 attr.dw_attr_val.val_class = dw_val_class_discr_value;
21467 attr.dw_attr_val.val_entry = NULL;
21468 attr.dw_attr_val.v.val_discr_value.pos = value->pos;
21469 if (value->pos)
21470 attr.dw_attr_val.v.val_discr_value.v.uval = value->v.uval;
21471 else
21472 attr.dw_attr_val.v.val_discr_value.v.sval = value->v.sval;
21473 add_dwarf_attr (die, &attr);
21476 /* Add DISCR_LIST as a DW_AT_discr_list to DIE. */
21478 static void
21479 add_discr_list (dw_die_ref die, dw_discr_list_ref discr_list)
21481 dw_attr_node attr;
21483 attr.dw_attr = DW_AT_discr_list;
21484 attr.dw_attr_val.val_class = dw_val_class_discr_list;
21485 attr.dw_attr_val.val_entry = NULL;
21486 attr.dw_attr_val.v.val_discr_list = discr_list;
21487 add_dwarf_attr (die, &attr);
21490 static inline dw_discr_list_ref
21491 AT_discr_list (dw_attr_node *attr)
21493 return attr->dw_attr_val.v.val_discr_list;
21496 #ifdef VMS_DEBUGGING_INFO
21497 /* Output the debug main pointer die for VMS */
21499 void
21500 dwarf2out_vms_debug_main_pointer (void)
21502 char label[MAX_ARTIFICIAL_LABEL_BYTES];
21503 dw_die_ref die;
21505 /* Allocate the VMS debug main subprogram die. */
21506 die = new_die_raw (DW_TAG_subprogram);
21507 add_name_attribute (die, VMS_DEBUG_MAIN_POINTER);
21508 ASM_GENERATE_INTERNAL_LABEL (label, PROLOGUE_END_LABEL,
21509 current_function_funcdef_no);
21510 add_AT_lbl_id (die, DW_AT_entry_pc, label);
21512 /* Make it the first child of comp_unit_die (). */
21513 die->die_parent = comp_unit_die ();
21514 if (comp_unit_die ()->die_child)
21516 die->die_sib = comp_unit_die ()->die_child->die_sib;
21517 comp_unit_die ()->die_child->die_sib = die;
21519 else
21521 die->die_sib = die;
21522 comp_unit_die ()->die_child = die;
21525 #endif /* VMS_DEBUGGING_INFO */
21527 /* walk_tree helper function for uses_local_type, below. */
21529 static tree
21530 uses_local_type_r (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
21532 if (!TYPE_P (*tp))
21533 *walk_subtrees = 0;
21534 else
21536 tree name = TYPE_NAME (*tp);
21537 if (name && DECL_P (name) && decl_function_context (name))
21538 return *tp;
21540 return NULL_TREE;
21543 /* If TYPE involves a function-local type (including a local typedef to a
21544 non-local type), returns that type; otherwise returns NULL_TREE. */
21546 static tree
21547 uses_local_type (tree type)
21549 tree used = walk_tree_without_duplicates (&type, uses_local_type_r, NULL);
21550 return used;
21553 /* Return the DIE for the scope that immediately contains this type.
21554 Non-named types that do not involve a function-local type get global
21555 scope. Named types nested in namespaces or other types get their
21556 containing scope. All other types (i.e. function-local named types) get
21557 the current active scope. */
21559 static dw_die_ref
21560 scope_die_for (tree t, dw_die_ref context_die)
21562 dw_die_ref scope_die = NULL;
21563 tree containing_scope;
21565 /* Non-types always go in the current scope. */
21566 gcc_assert (TYPE_P (t));
21568 /* Use the scope of the typedef, rather than the scope of the type
21569 it refers to. */
21570 if (TYPE_NAME (t) && DECL_P (TYPE_NAME (t)))
21571 containing_scope = DECL_CONTEXT (TYPE_NAME (t));
21572 else
21573 containing_scope = TYPE_CONTEXT (t);
21575 /* Use the containing namespace if there is one. */
21576 if (containing_scope && TREE_CODE (containing_scope) == NAMESPACE_DECL)
21578 if (context_die == lookup_decl_die (containing_scope))
21579 /* OK */;
21580 else if (debug_info_level > DINFO_LEVEL_TERSE)
21581 context_die = get_context_die (containing_scope);
21582 else
21583 containing_scope = NULL_TREE;
21586 /* Ignore function type "scopes" from the C frontend. They mean that
21587 a tagged type is local to a parmlist of a function declarator, but
21588 that isn't useful to DWARF. */
21589 if (containing_scope && TREE_CODE (containing_scope) == FUNCTION_TYPE)
21590 containing_scope = NULL_TREE;
21592 if (SCOPE_FILE_SCOPE_P (containing_scope))
21594 /* If T uses a local type keep it local as well, to avoid references
21595 to function-local DIEs from outside the function. */
21596 if (current_function_decl && uses_local_type (t))
21597 scope_die = context_die;
21598 else
21599 scope_die = comp_unit_die ();
21601 else if (TYPE_P (containing_scope))
21603 /* For types, we can just look up the appropriate DIE. */
21604 if (debug_info_level > DINFO_LEVEL_TERSE)
21605 scope_die = get_context_die (containing_scope);
21606 else
21608 scope_die = lookup_type_die_strip_naming_typedef (containing_scope);
21609 if (scope_die == NULL)
21610 scope_die = comp_unit_die ();
21613 else
21614 scope_die = context_die;
21616 return scope_die;
21619 /* Returns nonzero if CONTEXT_DIE is internal to a function. */
21621 static inline int
21622 local_scope_p (dw_die_ref context_die)
21624 for (; context_die; context_die = context_die->die_parent)
21625 if (context_die->die_tag == DW_TAG_inlined_subroutine
21626 || context_die->die_tag == DW_TAG_subprogram)
21627 return 1;
21629 return 0;
21632 /* Returns nonzero if CONTEXT_DIE is a class. */
21634 static inline int
21635 class_scope_p (dw_die_ref context_die)
21637 return (context_die
21638 && (context_die->die_tag == DW_TAG_structure_type
21639 || context_die->die_tag == DW_TAG_class_type
21640 || context_die->die_tag == DW_TAG_interface_type
21641 || context_die->die_tag == DW_TAG_union_type));
21644 /* Returns nonzero if CONTEXT_DIE is a class or namespace, for deciding
21645 whether or not to treat a DIE in this context as a declaration. */
21647 static inline int
21648 class_or_namespace_scope_p (dw_die_ref context_die)
21650 return (class_scope_p (context_die)
21651 || (context_die && context_die->die_tag == DW_TAG_namespace));
21654 /* Many forms of DIEs require a "type description" attribute. This
21655 routine locates the proper "type descriptor" die for the type given
21656 by 'type' plus any additional qualifiers given by 'cv_quals', and
21657 adds a DW_AT_type attribute below the given die. */
21659 static void
21660 add_type_attribute (dw_die_ref object_die, tree type, int cv_quals,
21661 bool reverse, dw_die_ref context_die)
21663 enum tree_code code = TREE_CODE (type);
21664 dw_die_ref type_die = NULL;
21666 /* ??? If this type is an unnamed subrange type of an integral, floating-point
21667 or fixed-point type, use the inner type. This is because we have no
21668 support for unnamed types in base_type_die. This can happen if this is
21669 an Ada subrange type. Correct solution is emit a subrange type die. */
21670 if ((code == INTEGER_TYPE || code == REAL_TYPE || code == FIXED_POINT_TYPE)
21671 && TREE_TYPE (type) != 0 && TYPE_NAME (type) == 0)
21672 type = TREE_TYPE (type), code = TREE_CODE (type);
21674 if (code == ERROR_MARK
21675 /* Handle a special case. For functions whose return type is void, we
21676 generate *no* type attribute. (Note that no object may have type
21677 `void', so this only applies to function return types). */
21678 || code == VOID_TYPE)
21679 return;
21681 type_die = modified_type_die (type,
21682 cv_quals | TYPE_QUALS (type),
21683 reverse,
21684 context_die);
21686 if (type_die != NULL)
21687 add_AT_die_ref (object_die, DW_AT_type, type_die);
21690 /* Given an object die, add the calling convention attribute for the
21691 function call type. */
21692 static void
21693 add_calling_convention_attribute (dw_die_ref subr_die, tree decl)
21695 enum dwarf_calling_convention value = DW_CC_normal;
21697 value = ((enum dwarf_calling_convention)
21698 targetm.dwarf_calling_convention (TREE_TYPE (decl)));
21700 if (is_fortran ()
21701 && id_equal (DECL_ASSEMBLER_NAME (decl), "MAIN__"))
21703 /* DWARF 2 doesn't provide a way to identify a program's source-level
21704 entry point. DW_AT_calling_convention attributes are only meant
21705 to describe functions' calling conventions. However, lacking a
21706 better way to signal the Fortran main program, we used this for
21707 a long time, following existing custom. Now, DWARF 4 has
21708 DW_AT_main_subprogram, which we add below, but some tools still
21709 rely on the old way, which we thus keep. */
21710 value = DW_CC_program;
21712 if (dwarf_version >= 4 || !dwarf_strict)
21713 add_AT_flag (subr_die, DW_AT_main_subprogram, 1);
21716 /* Only add the attribute if the backend requests it, and
21717 is not DW_CC_normal. */
21718 if (value && (value != DW_CC_normal))
21719 add_AT_unsigned (subr_die, DW_AT_calling_convention, value);
21722 /* Given a tree pointer to a struct, class, union, or enum type node, return
21723 a pointer to the (string) tag name for the given type, or zero if the type
21724 was declared without a tag. */
21726 static const char *
21727 type_tag (const_tree type)
21729 const char *name = 0;
21731 if (TYPE_NAME (type) != 0)
21733 tree t = 0;
21735 /* Find the IDENTIFIER_NODE for the type name. */
21736 if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE
21737 && !TYPE_NAMELESS (type))
21738 t = TYPE_NAME (type);
21740 /* The g++ front end makes the TYPE_NAME of *each* tagged type point to
21741 a TYPE_DECL node, regardless of whether or not a `typedef' was
21742 involved. */
21743 else if (TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
21744 && ! DECL_IGNORED_P (TYPE_NAME (type)))
21746 /* We want to be extra verbose. Don't call dwarf_name if
21747 DECL_NAME isn't set. The default hook for decl_printable_name
21748 doesn't like that, and in this context it's correct to return
21749 0, instead of "<anonymous>" or the like. */
21750 if (DECL_NAME (TYPE_NAME (type))
21751 && !DECL_NAMELESS (TYPE_NAME (type)))
21752 name = lang_hooks.dwarf_name (TYPE_NAME (type), 2);
21755 /* Now get the name as a string, or invent one. */
21756 if (!name && t != 0)
21757 name = IDENTIFIER_POINTER (t);
21760 return (name == 0 || *name == '\0') ? 0 : name;
21763 /* Return the type associated with a data member, make a special check
21764 for bit field types. */
21766 static inline tree
21767 member_declared_type (const_tree member)
21769 return (DECL_BIT_FIELD_TYPE (member)
21770 ? DECL_BIT_FIELD_TYPE (member) : TREE_TYPE (member));
21773 /* Get the decl's label, as described by its RTL. This may be different
21774 from the DECL_NAME name used in the source file. */
21776 #if 0
21777 static const char *
21778 decl_start_label (tree decl)
21780 rtx x;
21781 const char *fnname;
21783 x = DECL_RTL (decl);
21784 gcc_assert (MEM_P (x));
21786 x = XEXP (x, 0);
21787 gcc_assert (GET_CODE (x) == SYMBOL_REF);
21789 fnname = XSTR (x, 0);
21790 return fnname;
21792 #endif
21794 /* For variable-length arrays that have been previously generated, but
21795 may be incomplete due to missing subscript info, fill the subscript
21796 info. Return TRUE if this is one of those cases. */
21797 static bool
21798 fill_variable_array_bounds (tree type)
21800 if (TREE_ASM_WRITTEN (type)
21801 && TREE_CODE (type) == ARRAY_TYPE
21802 && variably_modified_type_p (type, NULL))
21804 dw_die_ref array_die = lookup_type_die (type);
21805 if (!array_die)
21806 return false;
21807 add_subscript_info (array_die, type, !is_ada ());
21808 return true;
21810 return false;
21813 /* These routines generate the internal representation of the DIE's for
21814 the compilation unit. Debugging information is collected by walking
21815 the declaration trees passed in from dwarf2out_decl(). */
21817 static void
21818 gen_array_type_die (tree type, dw_die_ref context_die)
21820 dw_die_ref array_die;
21822 /* GNU compilers represent multidimensional array types as sequences of one
21823 dimensional array types whose element types are themselves array types.
21824 We sometimes squish that down to a single array_type DIE with multiple
21825 subscripts in the Dwarf debugging info. The draft Dwarf specification
21826 say that we are allowed to do this kind of compression in C, because
21827 there is no difference between an array of arrays and a multidimensional
21828 array. We don't do this for Ada to remain as close as possible to the
21829 actual representation, which is especially important against the language
21830 flexibilty wrt arrays of variable size. */
21832 bool collapse_nested_arrays = !is_ada ();
21834 if (fill_variable_array_bounds (type))
21835 return;
21837 dw_die_ref scope_die = scope_die_for (type, context_die);
21838 tree element_type;
21840 /* Emit DW_TAG_string_type for Fortran character types (with kind 1 only, as
21841 DW_TAG_string_type doesn't have DW_AT_type attribute). */
21842 if (TYPE_STRING_FLAG (type)
21843 && TREE_CODE (type) == ARRAY_TYPE
21844 && is_fortran ()
21845 && TYPE_MODE (TREE_TYPE (type)) == TYPE_MODE (char_type_node))
21847 HOST_WIDE_INT size;
21849 array_die = new_die (DW_TAG_string_type, scope_die, type);
21850 add_name_attribute (array_die, type_tag (type));
21851 equate_type_number_to_die (type, array_die);
21852 size = int_size_in_bytes (type);
21853 if (size >= 0)
21854 add_AT_unsigned (array_die, DW_AT_byte_size, size);
21855 /* ??? We can't annotate types late, but for LTO we may not
21856 generate a location early either (gfortran.dg/save_6.f90). */
21857 else if (! (early_dwarf && (flag_generate_lto || flag_generate_offload))
21858 && TYPE_DOMAIN (type) != NULL_TREE
21859 && TYPE_MAX_VALUE (TYPE_DOMAIN (type)) != NULL_TREE)
21861 tree szdecl = TYPE_MAX_VALUE (TYPE_DOMAIN (type));
21862 tree rszdecl = szdecl;
21864 size = int_size_in_bytes (TREE_TYPE (szdecl));
21865 if (!DECL_P (szdecl))
21867 if (TREE_CODE (szdecl) == INDIRECT_REF
21868 && DECL_P (TREE_OPERAND (szdecl, 0)))
21870 rszdecl = TREE_OPERAND (szdecl, 0);
21871 if (int_size_in_bytes (TREE_TYPE (rszdecl))
21872 != DWARF2_ADDR_SIZE)
21873 size = 0;
21875 else
21876 size = 0;
21878 if (size > 0)
21880 dw_loc_list_ref loc
21881 = loc_list_from_tree (rszdecl, szdecl == rszdecl ? 2 : 0,
21882 NULL);
21883 if (loc)
21885 add_AT_location_description (array_die, DW_AT_string_length,
21886 loc);
21887 if (size != DWARF2_ADDR_SIZE)
21888 add_AT_unsigned (array_die, dwarf_version >= 5
21889 ? DW_AT_string_length_byte_size
21890 : DW_AT_byte_size, size);
21894 return;
21897 array_die = new_die (DW_TAG_array_type, scope_die, type);
21898 add_name_attribute (array_die, type_tag (type));
21899 equate_type_number_to_die (type, array_die);
21901 if (TREE_CODE (type) == VECTOR_TYPE)
21902 add_AT_flag (array_die, DW_AT_GNU_vector, 1);
21904 /* For Fortran multidimensional arrays use DW_ORD_col_major ordering. */
21905 if (is_fortran ()
21906 && TREE_CODE (type) == ARRAY_TYPE
21907 && TREE_CODE (TREE_TYPE (type)) == ARRAY_TYPE
21908 && !TYPE_STRING_FLAG (TREE_TYPE (type)))
21909 add_AT_unsigned (array_die, DW_AT_ordering, DW_ORD_col_major);
21911 #if 0
21912 /* We default the array ordering. Debuggers will probably do the right
21913 things even if DW_AT_ordering is not present. It's not even an issue
21914 until we start to get into multidimensional arrays anyway. If a debugger
21915 is ever caught doing the Wrong Thing for multi-dimensional arrays,
21916 then we'll have to put the DW_AT_ordering attribute back in. (But if
21917 and when we find out that we need to put these in, we will only do so
21918 for multidimensional arrays. */
21919 add_AT_unsigned (array_die, DW_AT_ordering, DW_ORD_row_major);
21920 #endif
21922 if (TREE_CODE (type) == VECTOR_TYPE)
21924 /* For VECTOR_TYPEs we use an array die with appropriate bounds. */
21925 dw_die_ref subrange_die = new_die (DW_TAG_subrange_type, array_die, NULL);
21926 add_bound_info (subrange_die, DW_AT_lower_bound, size_zero_node, NULL);
21927 add_bound_info (subrange_die, DW_AT_upper_bound,
21928 size_int (TYPE_VECTOR_SUBPARTS (type) - 1), NULL);
21930 else
21931 add_subscript_info (array_die, type, collapse_nested_arrays);
21933 /* Add representation of the type of the elements of this array type and
21934 emit the corresponding DIE if we haven't done it already. */
21935 element_type = TREE_TYPE (type);
21936 if (collapse_nested_arrays)
21937 while (TREE_CODE (element_type) == ARRAY_TYPE)
21939 if (TYPE_STRING_FLAG (element_type) && is_fortran ())
21940 break;
21941 element_type = TREE_TYPE (element_type);
21944 add_type_attribute (array_die, element_type, TYPE_UNQUALIFIED,
21945 TREE_CODE (type) == ARRAY_TYPE
21946 && TYPE_REVERSE_STORAGE_ORDER (type),
21947 context_die);
21949 add_gnat_descriptive_type_attribute (array_die, type, context_die);
21950 if (TYPE_ARTIFICIAL (type))
21951 add_AT_flag (array_die, DW_AT_artificial, 1);
21953 if (get_AT (array_die, DW_AT_name))
21954 add_pubtype (type, array_die);
21956 add_alignment_attribute (array_die, type);
21959 /* This routine generates DIE for array with hidden descriptor, details
21960 are filled into *info by a langhook. */
21962 static void
21963 gen_descr_array_type_die (tree type, struct array_descr_info *info,
21964 dw_die_ref context_die)
21966 const dw_die_ref scope_die = scope_die_for (type, context_die);
21967 const dw_die_ref array_die = new_die (DW_TAG_array_type, scope_die, type);
21968 struct loc_descr_context context = { type, info->base_decl, NULL,
21969 false, false };
21970 enum dwarf_tag subrange_tag = DW_TAG_subrange_type;
21971 int dim;
21973 add_name_attribute (array_die, type_tag (type));
21974 equate_type_number_to_die (type, array_die);
21976 if (info->ndimensions > 1)
21977 switch (info->ordering)
21979 case array_descr_ordering_row_major:
21980 add_AT_unsigned (array_die, DW_AT_ordering, DW_ORD_row_major);
21981 break;
21982 case array_descr_ordering_column_major:
21983 add_AT_unsigned (array_die, DW_AT_ordering, DW_ORD_col_major);
21984 break;
21985 default:
21986 break;
21989 if (dwarf_version >= 3 || !dwarf_strict)
21991 if (info->data_location)
21992 add_scalar_info (array_die, DW_AT_data_location, info->data_location,
21993 dw_scalar_form_exprloc, &context);
21994 if (info->associated)
21995 add_scalar_info (array_die, DW_AT_associated, info->associated,
21996 dw_scalar_form_constant
21997 | dw_scalar_form_exprloc
21998 | dw_scalar_form_reference, &context);
21999 if (info->allocated)
22000 add_scalar_info (array_die, DW_AT_allocated, info->allocated,
22001 dw_scalar_form_constant
22002 | dw_scalar_form_exprloc
22003 | dw_scalar_form_reference, &context);
22004 if (info->stride)
22006 const enum dwarf_attribute attr
22007 = (info->stride_in_bits) ? DW_AT_bit_stride : DW_AT_byte_stride;
22008 const int forms
22009 = (info->stride_in_bits)
22010 ? dw_scalar_form_constant
22011 : (dw_scalar_form_constant
22012 | dw_scalar_form_exprloc
22013 | dw_scalar_form_reference);
22015 add_scalar_info (array_die, attr, info->stride, forms, &context);
22018 if (dwarf_version >= 5)
22020 if (info->rank)
22022 add_scalar_info (array_die, DW_AT_rank, info->rank,
22023 dw_scalar_form_constant
22024 | dw_scalar_form_exprloc, &context);
22025 subrange_tag = DW_TAG_generic_subrange;
22026 context.placeholder_arg = true;
22030 add_gnat_descriptive_type_attribute (array_die, type, context_die);
22032 for (dim = 0; dim < info->ndimensions; dim++)
22034 dw_die_ref subrange_die = new_die (subrange_tag, array_die, NULL);
22036 if (info->dimen[dim].bounds_type)
22037 add_type_attribute (subrange_die,
22038 info->dimen[dim].bounds_type, TYPE_UNQUALIFIED,
22039 false, context_die);
22040 if (info->dimen[dim].lower_bound)
22041 add_bound_info (subrange_die, DW_AT_lower_bound,
22042 info->dimen[dim].lower_bound, &context);
22043 if (info->dimen[dim].upper_bound)
22044 add_bound_info (subrange_die, DW_AT_upper_bound,
22045 info->dimen[dim].upper_bound, &context);
22046 if ((dwarf_version >= 3 || !dwarf_strict) && info->dimen[dim].stride)
22047 add_scalar_info (subrange_die, DW_AT_byte_stride,
22048 info->dimen[dim].stride,
22049 dw_scalar_form_constant
22050 | dw_scalar_form_exprloc
22051 | dw_scalar_form_reference,
22052 &context);
22055 gen_type_die (info->element_type, context_die);
22056 add_type_attribute (array_die, info->element_type, TYPE_UNQUALIFIED,
22057 TREE_CODE (type) == ARRAY_TYPE
22058 && TYPE_REVERSE_STORAGE_ORDER (type),
22059 context_die);
22061 if (get_AT (array_die, DW_AT_name))
22062 add_pubtype (type, array_die);
22064 add_alignment_attribute (array_die, type);
22067 #if 0
22068 static void
22069 gen_entry_point_die (tree decl, dw_die_ref context_die)
22071 tree origin = decl_ultimate_origin (decl);
22072 dw_die_ref decl_die = new_die (DW_TAG_entry_point, context_die, decl);
22074 if (origin != NULL)
22075 add_abstract_origin_attribute (decl_die, origin);
22076 else
22078 add_name_and_src_coords_attributes (decl_die, decl);
22079 add_type_attribute (decl_die, TREE_TYPE (TREE_TYPE (decl)),
22080 TYPE_UNQUALIFIED, false, context_die);
22083 if (DECL_ABSTRACT_P (decl))
22084 equate_decl_number_to_die (decl, decl_die);
22085 else
22086 add_AT_lbl_id (decl_die, DW_AT_low_pc, decl_start_label (decl));
22088 #endif
22090 /* Walk through the list of incomplete types again, trying once more to
22091 emit full debugging info for them. */
22093 static void
22094 retry_incomplete_types (void)
22096 set_early_dwarf s;
22097 int i;
22099 for (i = vec_safe_length (incomplete_types) - 1; i >= 0; i--)
22100 if (should_emit_struct_debug ((*incomplete_types)[i], DINFO_USAGE_DIR_USE))
22101 gen_type_die ((*incomplete_types)[i], comp_unit_die ());
22102 vec_safe_truncate (incomplete_types, 0);
22105 /* Determine what tag to use for a record type. */
22107 static enum dwarf_tag
22108 record_type_tag (tree type)
22110 if (! lang_hooks.types.classify_record)
22111 return DW_TAG_structure_type;
22113 switch (lang_hooks.types.classify_record (type))
22115 case RECORD_IS_STRUCT:
22116 return DW_TAG_structure_type;
22118 case RECORD_IS_CLASS:
22119 return DW_TAG_class_type;
22121 case RECORD_IS_INTERFACE:
22122 if (dwarf_version >= 3 || !dwarf_strict)
22123 return DW_TAG_interface_type;
22124 return DW_TAG_structure_type;
22126 default:
22127 gcc_unreachable ();
22131 /* Generate a DIE to represent an enumeration type. Note that these DIEs
22132 include all of the information about the enumeration values also. Each
22133 enumerated type name/value is listed as a child of the enumerated type
22134 DIE. */
22136 static dw_die_ref
22137 gen_enumeration_type_die (tree type, dw_die_ref context_die)
22139 dw_die_ref type_die = lookup_type_die (type);
22140 dw_die_ref orig_type_die = type_die;
22142 if (type_die == NULL)
22144 type_die = new_die (DW_TAG_enumeration_type,
22145 scope_die_for (type, context_die), type);
22146 equate_type_number_to_die (type, type_die);
22147 add_name_attribute (type_die, type_tag (type));
22148 if ((dwarf_version >= 4 || !dwarf_strict)
22149 && ENUM_IS_SCOPED (type))
22150 add_AT_flag (type_die, DW_AT_enum_class, 1);
22151 if (ENUM_IS_OPAQUE (type) && TYPE_SIZE (type))
22152 add_AT_flag (type_die, DW_AT_declaration, 1);
22153 if (!dwarf_strict)
22154 add_AT_unsigned (type_die, DW_AT_encoding,
22155 TYPE_UNSIGNED (type)
22156 ? DW_ATE_unsigned
22157 : DW_ATE_signed);
22159 else if (! TYPE_SIZE (type) || ENUM_IS_OPAQUE (type))
22160 return type_die;
22161 else
22162 remove_AT (type_die, DW_AT_declaration);
22164 /* Handle a GNU C/C++ extension, i.e. incomplete enum types. If the
22165 given enum type is incomplete, do not generate the DW_AT_byte_size
22166 attribute or the DW_AT_element_list attribute. */
22167 if (TYPE_SIZE (type))
22169 tree link;
22171 if (!ENUM_IS_OPAQUE (type))
22172 TREE_ASM_WRITTEN (type) = 1;
22173 if (!orig_type_die || !get_AT (type_die, DW_AT_byte_size))
22174 add_byte_size_attribute (type_die, type);
22175 if (!orig_type_die || !get_AT (type_die, DW_AT_alignment))
22176 add_alignment_attribute (type_die, type);
22177 if ((dwarf_version >= 3 || !dwarf_strict)
22178 && (!orig_type_die || !get_AT (type_die, DW_AT_type)))
22180 tree underlying = lang_hooks.types.enum_underlying_base_type (type);
22181 add_type_attribute (type_die, underlying, TYPE_UNQUALIFIED, false,
22182 context_die);
22184 if (TYPE_STUB_DECL (type) != NULL_TREE)
22186 if (!orig_type_die || !get_AT (type_die, DW_AT_decl_file))
22187 add_src_coords_attributes (type_die, TYPE_STUB_DECL (type));
22188 if (!orig_type_die || !get_AT (type_die, DW_AT_accessibility))
22189 add_accessibility_attribute (type_die, TYPE_STUB_DECL (type));
22192 /* If the first reference to this type was as the return type of an
22193 inline function, then it may not have a parent. Fix this now. */
22194 if (type_die->die_parent == NULL)
22195 add_child_die (scope_die_for (type, context_die), type_die);
22197 for (link = TYPE_VALUES (type);
22198 link != NULL; link = TREE_CHAIN (link))
22200 dw_die_ref enum_die = new_die (DW_TAG_enumerator, type_die, link);
22201 tree value = TREE_VALUE (link);
22203 gcc_assert (!ENUM_IS_OPAQUE (type));
22204 add_name_attribute (enum_die,
22205 IDENTIFIER_POINTER (TREE_PURPOSE (link)));
22207 if (TREE_CODE (value) == CONST_DECL)
22208 value = DECL_INITIAL (value);
22210 if (simple_type_size_in_bits (TREE_TYPE (value))
22211 <= HOST_BITS_PER_WIDE_INT || tree_fits_shwi_p (value))
22213 /* For constant forms created by add_AT_unsigned DWARF
22214 consumers (GDB, elfutils, etc.) always zero extend
22215 the value. Only when the actual value is negative
22216 do we need to use add_AT_int to generate a constant
22217 form that can represent negative values. */
22218 HOST_WIDE_INT val = TREE_INT_CST_LOW (value);
22219 if (TYPE_UNSIGNED (TREE_TYPE (value)) || val >= 0)
22220 add_AT_unsigned (enum_die, DW_AT_const_value,
22221 (unsigned HOST_WIDE_INT) val);
22222 else
22223 add_AT_int (enum_die, DW_AT_const_value, val);
22225 else
22226 /* Enumeration constants may be wider than HOST_WIDE_INT. Handle
22227 that here. TODO: This should be re-worked to use correct
22228 signed/unsigned double tags for all cases. */
22229 add_AT_wide (enum_die, DW_AT_const_value, wi::to_wide (value));
22232 add_gnat_descriptive_type_attribute (type_die, type, context_die);
22233 if (TYPE_ARTIFICIAL (type)
22234 && (!orig_type_die || !get_AT (type_die, DW_AT_artificial)))
22235 add_AT_flag (type_die, DW_AT_artificial, 1);
22237 else
22238 add_AT_flag (type_die, DW_AT_declaration, 1);
22240 add_pubtype (type, type_die);
22242 return type_die;
22245 /* Generate a DIE to represent either a real live formal parameter decl or to
22246 represent just the type of some formal parameter position in some function
22247 type.
22249 Note that this routine is a bit unusual because its argument may be a
22250 ..._DECL node (i.e. either a PARM_DECL or perhaps a VAR_DECL which
22251 represents an inlining of some PARM_DECL) or else some sort of a ..._TYPE
22252 node. If it's the former then this function is being called to output a
22253 DIE to represent a formal parameter object (or some inlining thereof). If
22254 it's the latter, then this function is only being called to output a
22255 DW_TAG_formal_parameter DIE to stand as a placeholder for some formal
22256 argument type of some subprogram type.
22257 If EMIT_NAME_P is true, name and source coordinate attributes
22258 are emitted. */
22260 static dw_die_ref
22261 gen_formal_parameter_die (tree node, tree origin, bool emit_name_p,
22262 dw_die_ref context_die)
22264 tree node_or_origin = node ? node : origin;
22265 tree ultimate_origin;
22266 dw_die_ref parm_die = NULL;
22268 if (DECL_P (node_or_origin))
22270 parm_die = lookup_decl_die (node);
22272 /* If the contexts differ, we may not be talking about the same
22273 thing.
22274 ??? When in LTO the DIE parent is the "abstract" copy and the
22275 context_die is the specification "copy". But this whole block
22276 should eventually be no longer needed. */
22277 if (parm_die && parm_die->die_parent != context_die && !in_lto_p)
22279 if (!DECL_ABSTRACT_P (node))
22281 /* This can happen when creating an inlined instance, in
22282 which case we need to create a new DIE that will get
22283 annotated with DW_AT_abstract_origin. */
22284 parm_die = NULL;
22286 else
22287 gcc_unreachable ();
22290 if (parm_die && parm_die->die_parent == NULL)
22292 /* Check that parm_die already has the right attributes that
22293 we would have added below. If any attributes are
22294 missing, fall through to add them. */
22295 if (! DECL_ABSTRACT_P (node_or_origin)
22296 && !get_AT (parm_die, DW_AT_location)
22297 && !get_AT (parm_die, DW_AT_const_value))
22298 /* We are missing location info, and are about to add it. */
22300 else
22302 add_child_die (context_die, parm_die);
22303 return parm_die;
22308 /* If we have a previously generated DIE, use it, unless this is an
22309 concrete instance (origin != NULL), in which case we need a new
22310 DIE with a corresponding DW_AT_abstract_origin. */
22311 bool reusing_die;
22312 if (parm_die && origin == NULL)
22313 reusing_die = true;
22314 else
22316 parm_die = new_die (DW_TAG_formal_parameter, context_die, node);
22317 reusing_die = false;
22320 switch (TREE_CODE_CLASS (TREE_CODE (node_or_origin)))
22322 case tcc_declaration:
22323 ultimate_origin = decl_ultimate_origin (node_or_origin);
22324 if (node || ultimate_origin)
22325 origin = ultimate_origin;
22327 if (reusing_die)
22328 goto add_location;
22330 if (origin != NULL)
22331 add_abstract_origin_attribute (parm_die, origin);
22332 else if (emit_name_p)
22333 add_name_and_src_coords_attributes (parm_die, node);
22334 if (origin == NULL
22335 || (! DECL_ABSTRACT_P (node_or_origin)
22336 && variably_modified_type_p (TREE_TYPE (node_or_origin),
22337 decl_function_context
22338 (node_or_origin))))
22340 tree type = TREE_TYPE (node_or_origin);
22341 if (decl_by_reference_p (node_or_origin))
22342 add_type_attribute (parm_die, TREE_TYPE (type),
22343 TYPE_UNQUALIFIED,
22344 false, context_die);
22345 else
22346 add_type_attribute (parm_die, type,
22347 decl_quals (node_or_origin),
22348 false, context_die);
22350 if (origin == NULL && DECL_ARTIFICIAL (node))
22351 add_AT_flag (parm_die, DW_AT_artificial, 1);
22352 add_location:
22353 if (node && node != origin)
22354 equate_decl_number_to_die (node, parm_die);
22355 if (! DECL_ABSTRACT_P (node_or_origin))
22356 add_location_or_const_value_attribute (parm_die, node_or_origin,
22357 node == NULL);
22359 break;
22361 case tcc_type:
22362 /* We were called with some kind of a ..._TYPE node. */
22363 add_type_attribute (parm_die, node_or_origin, TYPE_UNQUALIFIED, false,
22364 context_die);
22365 break;
22367 default:
22368 gcc_unreachable ();
22371 return parm_die;
22374 /* Generate and return a DW_TAG_GNU_formal_parameter_pack. Also generate
22375 children DW_TAG_formal_parameter DIEs representing the arguments of the
22376 parameter pack.
22378 PARM_PACK must be a function parameter pack.
22379 PACK_ARG is the first argument of the parameter pack. Its TREE_CHAIN
22380 must point to the subsequent arguments of the function PACK_ARG belongs to.
22381 SUBR_DIE is the DIE of the function PACK_ARG belongs to.
22382 If NEXT_ARG is non NULL, *NEXT_ARG is set to the function argument
22383 following the last one for which a DIE was generated. */
22385 static dw_die_ref
22386 gen_formal_parameter_pack_die (tree parm_pack,
22387 tree pack_arg,
22388 dw_die_ref subr_die,
22389 tree *next_arg)
22391 tree arg;
22392 dw_die_ref parm_pack_die;
22394 gcc_assert (parm_pack
22395 && lang_hooks.function_parameter_pack_p (parm_pack)
22396 && subr_die);
22398 parm_pack_die = new_die (DW_TAG_GNU_formal_parameter_pack, subr_die, parm_pack);
22399 add_src_coords_attributes (parm_pack_die, parm_pack);
22401 for (arg = pack_arg; arg; arg = DECL_CHAIN (arg))
22403 if (! lang_hooks.decls.function_parm_expanded_from_pack_p (arg,
22404 parm_pack))
22405 break;
22406 gen_formal_parameter_die (arg, NULL,
22407 false /* Don't emit name attribute. */,
22408 parm_pack_die);
22410 if (next_arg)
22411 *next_arg = arg;
22412 return parm_pack_die;
22415 /* Generate a special type of DIE used as a stand-in for a trailing ellipsis
22416 at the end of an (ANSI prototyped) formal parameters list. */
22418 static void
22419 gen_unspecified_parameters_die (tree decl_or_type, dw_die_ref context_die)
22421 new_die (DW_TAG_unspecified_parameters, context_die, decl_or_type);
22424 /* Generate a list of nameless DW_TAG_formal_parameter DIEs (and perhaps a
22425 DW_TAG_unspecified_parameters DIE) to represent the types of the formal
22426 parameters as specified in some function type specification (except for
22427 those which appear as part of a function *definition*). */
22429 static void
22430 gen_formal_types_die (tree function_or_method_type, dw_die_ref context_die)
22432 tree link;
22433 tree formal_type = NULL;
22434 tree first_parm_type;
22435 tree arg;
22437 if (TREE_CODE (function_or_method_type) == FUNCTION_DECL)
22439 arg = DECL_ARGUMENTS (function_or_method_type);
22440 function_or_method_type = TREE_TYPE (function_or_method_type);
22442 else
22443 arg = NULL_TREE;
22445 first_parm_type = TYPE_ARG_TYPES (function_or_method_type);
22447 /* Make our first pass over the list of formal parameter types and output a
22448 DW_TAG_formal_parameter DIE for each one. */
22449 for (link = first_parm_type; link; )
22451 dw_die_ref parm_die;
22453 formal_type = TREE_VALUE (link);
22454 if (formal_type == void_type_node)
22455 break;
22457 /* Output a (nameless) DIE to represent the formal parameter itself. */
22458 parm_die = gen_formal_parameter_die (formal_type, NULL,
22459 true /* Emit name attribute. */,
22460 context_die);
22461 if (TREE_CODE (function_or_method_type) == METHOD_TYPE
22462 && link == first_parm_type)
22464 add_AT_flag (parm_die, DW_AT_artificial, 1);
22465 if (dwarf_version >= 3 || !dwarf_strict)
22466 add_AT_die_ref (context_die, DW_AT_object_pointer, parm_die);
22468 else if (arg && DECL_ARTIFICIAL (arg))
22469 add_AT_flag (parm_die, DW_AT_artificial, 1);
22471 link = TREE_CHAIN (link);
22472 if (arg)
22473 arg = DECL_CHAIN (arg);
22476 /* If this function type has an ellipsis, add a
22477 DW_TAG_unspecified_parameters DIE to the end of the parameter list. */
22478 if (formal_type != void_type_node)
22479 gen_unspecified_parameters_die (function_or_method_type, context_die);
22481 /* Make our second (and final) pass over the list of formal parameter types
22482 and output DIEs to represent those types (as necessary). */
22483 for (link = TYPE_ARG_TYPES (function_or_method_type);
22484 link && TREE_VALUE (link);
22485 link = TREE_CHAIN (link))
22486 gen_type_die (TREE_VALUE (link), context_die);
22489 /* We want to generate the DIE for TYPE so that we can generate the
22490 die for MEMBER, which has been defined; we will need to refer back
22491 to the member declaration nested within TYPE. If we're trying to
22492 generate minimal debug info for TYPE, processing TYPE won't do the
22493 trick; we need to attach the member declaration by hand. */
22495 static void
22496 gen_type_die_for_member (tree type, tree member, dw_die_ref context_die)
22498 gen_type_die (type, context_die);
22500 /* If we're trying to avoid duplicate debug info, we may not have
22501 emitted the member decl for this function. Emit it now. */
22502 if (TYPE_STUB_DECL (type)
22503 && TYPE_DECL_SUPPRESS_DEBUG (TYPE_STUB_DECL (type))
22504 && ! lookup_decl_die (member))
22506 dw_die_ref type_die;
22507 gcc_assert (!decl_ultimate_origin (member));
22509 type_die = lookup_type_die_strip_naming_typedef (type);
22510 if (TREE_CODE (member) == FUNCTION_DECL)
22511 gen_subprogram_die (member, type_die);
22512 else if (TREE_CODE (member) == FIELD_DECL)
22514 /* Ignore the nameless fields that are used to skip bits but handle
22515 C++ anonymous unions and structs. */
22516 if (DECL_NAME (member) != NULL_TREE
22517 || TREE_CODE (TREE_TYPE (member)) == UNION_TYPE
22518 || TREE_CODE (TREE_TYPE (member)) == RECORD_TYPE)
22520 struct vlr_context vlr_ctx = {
22521 DECL_CONTEXT (member), /* struct_type */
22522 NULL_TREE /* variant_part_offset */
22524 gen_type_die (member_declared_type (member), type_die);
22525 gen_field_die (member, &vlr_ctx, type_die);
22528 else
22529 gen_variable_die (member, NULL_TREE, type_die);
22533 /* Forward declare these functions, because they are mutually recursive
22534 with their set_block_* pairing functions. */
22535 static void set_decl_origin_self (tree);
22537 /* Given a pointer to some BLOCK node, if the BLOCK_ABSTRACT_ORIGIN for the
22538 given BLOCK node is NULL, set the BLOCK_ABSTRACT_ORIGIN for the node so
22539 that it points to the node itself, thus indicating that the node is its
22540 own (abstract) origin. Additionally, if the BLOCK_ABSTRACT_ORIGIN for
22541 the given node is NULL, recursively descend the decl/block tree which
22542 it is the root of, and for each other ..._DECL or BLOCK node contained
22543 therein whose DECL_ABSTRACT_ORIGINs or BLOCK_ABSTRACT_ORIGINs are also
22544 still NULL, set *their* DECL_ABSTRACT_ORIGIN or BLOCK_ABSTRACT_ORIGIN
22545 values to point to themselves. */
22547 static void
22548 set_block_origin_self (tree stmt)
22550 if (BLOCK_ABSTRACT_ORIGIN (stmt) == NULL_TREE)
22552 BLOCK_ABSTRACT_ORIGIN (stmt) = stmt;
22555 tree local_decl;
22557 for (local_decl = BLOCK_VARS (stmt);
22558 local_decl != NULL_TREE;
22559 local_decl = DECL_CHAIN (local_decl))
22560 /* Do not recurse on nested functions since the inlining status
22561 of parent and child can be different as per the DWARF spec. */
22562 if (TREE_CODE (local_decl) != FUNCTION_DECL
22563 && !DECL_EXTERNAL (local_decl))
22564 set_decl_origin_self (local_decl);
22568 tree subblock;
22570 for (subblock = BLOCK_SUBBLOCKS (stmt);
22571 subblock != NULL_TREE;
22572 subblock = BLOCK_CHAIN (subblock))
22573 set_block_origin_self (subblock); /* Recurse. */
22578 /* Given a pointer to some ..._DECL node, if the DECL_ABSTRACT_ORIGIN for
22579 the given ..._DECL node is NULL, set the DECL_ABSTRACT_ORIGIN for the
22580 node to so that it points to the node itself, thus indicating that the
22581 node represents its own (abstract) origin. Additionally, if the
22582 DECL_ABSTRACT_ORIGIN for the given node is NULL, recursively descend
22583 the decl/block tree of which the given node is the root of, and for
22584 each other ..._DECL or BLOCK node contained therein whose
22585 DECL_ABSTRACT_ORIGINs or BLOCK_ABSTRACT_ORIGINs are also still NULL,
22586 set *their* DECL_ABSTRACT_ORIGIN or BLOCK_ABSTRACT_ORIGIN values to
22587 point to themselves. */
22589 static void
22590 set_decl_origin_self (tree decl)
22592 if (DECL_ABSTRACT_ORIGIN (decl) == NULL_TREE)
22594 DECL_ABSTRACT_ORIGIN (decl) = decl;
22595 if (TREE_CODE (decl) == FUNCTION_DECL)
22597 tree arg;
22599 for (arg = DECL_ARGUMENTS (decl); arg; arg = DECL_CHAIN (arg))
22600 DECL_ABSTRACT_ORIGIN (arg) = arg;
22601 if (DECL_INITIAL (decl) != NULL_TREE
22602 && DECL_INITIAL (decl) != error_mark_node)
22603 set_block_origin_self (DECL_INITIAL (decl));
22608 /* Mark the early DIE for DECL as the abstract instance. */
22610 static void
22611 dwarf2out_abstract_function (tree decl)
22613 dw_die_ref old_die;
22615 /* Make sure we have the actual abstract inline, not a clone. */
22616 decl = DECL_ORIGIN (decl);
22618 if (DECL_IGNORED_P (decl))
22619 return;
22621 /* In LTO we're all set. We already created abstract instances
22622 early and we want to avoid creating a concrete instance of that
22623 if we don't output it. */
22624 if (in_lto_p)
22625 return;
22627 old_die = lookup_decl_die (decl);
22628 gcc_assert (old_die != NULL);
22629 if (get_AT (old_die, DW_AT_inline))
22630 /* We've already generated the abstract instance. */
22631 return;
22633 /* Go ahead and put DW_AT_inline on the DIE. */
22634 if (DECL_DECLARED_INLINE_P (decl))
22636 if (cgraph_function_possibly_inlined_p (decl))
22637 add_AT_unsigned (old_die, DW_AT_inline, DW_INL_declared_inlined);
22638 else
22639 add_AT_unsigned (old_die, DW_AT_inline, DW_INL_declared_not_inlined);
22641 else
22643 if (cgraph_function_possibly_inlined_p (decl))
22644 add_AT_unsigned (old_die, DW_AT_inline, DW_INL_inlined);
22645 else
22646 add_AT_unsigned (old_die, DW_AT_inline, DW_INL_not_inlined);
22649 if (DECL_DECLARED_INLINE_P (decl)
22650 && lookup_attribute ("artificial", DECL_ATTRIBUTES (decl)))
22651 add_AT_flag (old_die, DW_AT_artificial, 1);
22653 set_decl_origin_self (decl);
22656 /* Helper function of premark_used_types() which gets called through
22657 htab_traverse.
22659 Marks the DIE of a given type in *SLOT as perennial, so it never gets
22660 marked as unused by prune_unused_types. */
22662 bool
22663 premark_used_types_helper (tree const &type, void *)
22665 dw_die_ref die;
22667 die = lookup_type_die (type);
22668 if (die != NULL)
22669 die->die_perennial_p = 1;
22670 return true;
22673 /* Helper function of premark_types_used_by_global_vars which gets called
22674 through htab_traverse.
22676 Marks the DIE of a given type in *SLOT as perennial, so it never gets
22677 marked as unused by prune_unused_types. The DIE of the type is marked
22678 only if the global variable using the type will actually be emitted. */
22681 premark_types_used_by_global_vars_helper (types_used_by_vars_entry **slot,
22682 void *)
22684 struct types_used_by_vars_entry *entry;
22685 dw_die_ref die;
22687 entry = (struct types_used_by_vars_entry *) *slot;
22688 gcc_assert (entry->type != NULL
22689 && entry->var_decl != NULL);
22690 die = lookup_type_die (entry->type);
22691 if (die)
22693 /* Ask cgraph if the global variable really is to be emitted.
22694 If yes, then we'll keep the DIE of ENTRY->TYPE. */
22695 varpool_node *node = varpool_node::get (entry->var_decl);
22696 if (node && node->definition)
22698 die->die_perennial_p = 1;
22699 /* Keep the parent DIEs as well. */
22700 while ((die = die->die_parent) && die->die_perennial_p == 0)
22701 die->die_perennial_p = 1;
22704 return 1;
22707 /* Mark all members of used_types_hash as perennial. */
22709 static void
22710 premark_used_types (struct function *fun)
22712 if (fun && fun->used_types_hash)
22713 fun->used_types_hash->traverse<void *, premark_used_types_helper> (NULL);
22716 /* Mark all members of types_used_by_vars_entry as perennial. */
22718 static void
22719 premark_types_used_by_global_vars (void)
22721 if (types_used_by_vars_hash)
22722 types_used_by_vars_hash
22723 ->traverse<void *, premark_types_used_by_global_vars_helper> (NULL);
22726 /* Generate a DW_TAG_call_site DIE in function DECL under SUBR_DIE
22727 for CA_LOC call arg loc node. */
22729 static dw_die_ref
22730 gen_call_site_die (tree decl, dw_die_ref subr_die,
22731 struct call_arg_loc_node *ca_loc)
22733 dw_die_ref stmt_die = NULL, die;
22734 tree block = ca_loc->block;
22736 while (block
22737 && block != DECL_INITIAL (decl)
22738 && TREE_CODE (block) == BLOCK)
22740 stmt_die = lookup_block_die (block);
22741 if (stmt_die)
22742 break;
22743 block = BLOCK_SUPERCONTEXT (block);
22745 if (stmt_die == NULL)
22746 stmt_die = subr_die;
22747 die = new_die (dwarf_TAG (DW_TAG_call_site), stmt_die, NULL_TREE);
22748 add_AT_lbl_id (die, dwarf_AT (DW_AT_call_return_pc), ca_loc->label);
22749 if (ca_loc->tail_call_p)
22750 add_AT_flag (die, dwarf_AT (DW_AT_call_tail_call), 1);
22751 if (ca_loc->symbol_ref)
22753 dw_die_ref tdie = lookup_decl_die (SYMBOL_REF_DECL (ca_loc->symbol_ref));
22754 if (tdie)
22755 add_AT_die_ref (die, dwarf_AT (DW_AT_call_origin), tdie);
22756 else
22757 add_AT_addr (die, dwarf_AT (DW_AT_call_origin), ca_loc->symbol_ref,
22758 false);
22760 return die;
22763 /* Generate a DIE to represent a declared function (either file-scope or
22764 block-local). */
22766 static void
22767 gen_subprogram_die (tree decl, dw_die_ref context_die)
22769 tree origin = decl_ultimate_origin (decl);
22770 dw_die_ref subr_die;
22771 dw_die_ref old_die = lookup_decl_die (decl);
22773 /* This function gets called multiple times for different stages of
22774 the debug process. For example, for func() in this code:
22776 namespace S
22778 void func() { ... }
22781 ...we get called 4 times. Twice in early debug and twice in
22782 late debug:
22784 Early debug
22785 -----------
22787 1. Once while generating func() within the namespace. This is
22788 the declaration. The declaration bit below is set, as the
22789 context is the namespace.
22791 A new DIE will be generated with DW_AT_declaration set.
22793 2. Once for func() itself. This is the specification. The
22794 declaration bit below is clear as the context is the CU.
22796 We will use the cached DIE from (1) to create a new DIE with
22797 DW_AT_specification pointing to the declaration in (1).
22799 Late debug via rest_of_handle_final()
22800 -------------------------------------
22802 3. Once generating func() within the namespace. This is also the
22803 declaration, as in (1), but this time we will early exit below
22804 as we have a cached DIE and a declaration needs no additional
22805 annotations (no locations), as the source declaration line
22806 info is enough.
22808 4. Once for func() itself. As in (2), this is the specification,
22809 but this time we will re-use the cached DIE, and just annotate
22810 it with the location information that should now be available.
22812 For something without namespaces, but with abstract instances, we
22813 are also called a multiple times:
22815 class Base
22817 public:
22818 Base (); // constructor declaration (1)
22821 Base::Base () { } // constructor specification (2)
22823 Early debug
22824 -----------
22826 1. Once for the Base() constructor by virtue of it being a
22827 member of the Base class. This is done via
22828 rest_of_type_compilation.
22830 This is a declaration, so a new DIE will be created with
22831 DW_AT_declaration.
22833 2. Once for the Base() constructor definition, but this time
22834 while generating the abstract instance of the base
22835 constructor (__base_ctor) which is being generated via early
22836 debug of reachable functions.
22838 Even though we have a cached version of the declaration (1),
22839 we will create a DW_AT_specification of the declaration DIE
22840 in (1).
22842 3. Once for the __base_ctor itself, but this time, we generate
22843 an DW_AT_abstract_origin version of the DW_AT_specification in
22844 (2).
22846 Late debug via rest_of_handle_final
22847 -----------------------------------
22849 4. One final time for the __base_ctor (which will have a cached
22850 DIE with DW_AT_abstract_origin created in (3). This time,
22851 we will just annotate the location information now
22852 available.
22854 int declaration = (current_function_decl != decl
22855 || class_or_namespace_scope_p (context_die));
22857 /* A declaration that has been previously dumped needs no
22858 additional information. */
22859 if (old_die && declaration)
22860 return;
22862 /* Now that the C++ front end lazily declares artificial member fns, we
22863 might need to retrofit the declaration into its class. */
22864 if (!declaration && !origin && !old_die
22865 && DECL_CONTEXT (decl) && TYPE_P (DECL_CONTEXT (decl))
22866 && !class_or_namespace_scope_p (context_die)
22867 && debug_info_level > DINFO_LEVEL_TERSE)
22868 old_die = force_decl_die (decl);
22870 /* A concrete instance, tag a new DIE with DW_AT_abstract_origin. */
22871 if (origin != NULL)
22873 gcc_assert (!declaration || local_scope_p (context_die));
22875 /* Fixup die_parent for the abstract instance of a nested
22876 inline function. */
22877 if (old_die && old_die->die_parent == NULL)
22878 add_child_die (context_die, old_die);
22880 if (old_die && get_AT_ref (old_die, DW_AT_abstract_origin))
22882 /* If we have a DW_AT_abstract_origin we have a working
22883 cached version. */
22884 subr_die = old_die;
22886 else
22888 subr_die = new_die (DW_TAG_subprogram, context_die, decl);
22889 add_abstract_origin_attribute (subr_die, origin);
22890 /* This is where the actual code for a cloned function is.
22891 Let's emit linkage name attribute for it. This helps
22892 debuggers to e.g, set breakpoints into
22893 constructors/destructors when the user asks "break
22894 K::K". */
22895 add_linkage_name (subr_die, decl);
22898 /* A cached copy, possibly from early dwarf generation. Reuse as
22899 much as possible. */
22900 else if (old_die)
22902 if (!get_AT_flag (old_die, DW_AT_declaration)
22903 /* We can have a normal definition following an inline one in the
22904 case of redefinition of GNU C extern inlines.
22905 It seems reasonable to use AT_specification in this case. */
22906 && !get_AT (old_die, DW_AT_inline))
22908 /* Detect and ignore this case, where we are trying to output
22909 something we have already output. */
22910 if (get_AT (old_die, DW_AT_low_pc)
22911 || get_AT (old_die, DW_AT_ranges))
22912 return;
22914 /* If we have no location information, this must be a
22915 partially generated DIE from early dwarf generation.
22916 Fall through and generate it. */
22919 /* If the definition comes from the same place as the declaration,
22920 maybe use the old DIE. We always want the DIE for this function
22921 that has the *_pc attributes to be under comp_unit_die so the
22922 debugger can find it. We also need to do this for abstract
22923 instances of inlines, since the spec requires the out-of-line copy
22924 to have the same parent. For local class methods, this doesn't
22925 apply; we just use the old DIE. */
22926 expanded_location s = expand_location (DECL_SOURCE_LOCATION (decl));
22927 struct dwarf_file_data * file_index = lookup_filename (s.file);
22928 if (((is_unit_die (old_die->die_parent)
22929 /* This condition fixes the inconsistency/ICE with the
22930 following Fortran test (or some derivative thereof) while
22931 building libgfortran:
22933 module some_m
22934 contains
22935 logical function funky (FLAG)
22936 funky = .true.
22937 end function
22938 end module
22940 || (old_die->die_parent
22941 && old_die->die_parent->die_tag == DW_TAG_module)
22942 || local_scope_p (old_die->die_parent)
22943 || context_die == NULL)
22944 && (DECL_ARTIFICIAL (decl)
22945 || (get_AT_file (old_die, DW_AT_decl_file) == file_index
22946 && (get_AT_unsigned (old_die, DW_AT_decl_line)
22947 == (unsigned) s.line)
22948 && (!debug_column_info
22949 || s.column == 0
22950 || (get_AT_unsigned (old_die, DW_AT_decl_column)
22951 == (unsigned) s.column)))))
22952 /* With LTO if there's an abstract instance for
22953 the old DIE, this is a concrete instance and
22954 thus re-use the DIE. */
22955 || get_AT (old_die, DW_AT_abstract_origin))
22957 subr_die = old_die;
22959 /* Clear out the declaration attribute, but leave the
22960 parameters so they can be augmented with location
22961 information later. Unless this was a declaration, in
22962 which case, wipe out the nameless parameters and recreate
22963 them further down. */
22964 if (remove_AT (subr_die, DW_AT_declaration))
22967 remove_AT (subr_die, DW_AT_object_pointer);
22968 remove_child_TAG (subr_die, DW_TAG_formal_parameter);
22971 /* Make a specification pointing to the previously built
22972 declaration. */
22973 else
22975 subr_die = new_die (DW_TAG_subprogram, context_die, decl);
22976 add_AT_specification (subr_die, old_die);
22977 add_pubname (decl, subr_die);
22978 if (get_AT_file (old_die, DW_AT_decl_file) != file_index)
22979 add_AT_file (subr_die, DW_AT_decl_file, file_index);
22980 if (get_AT_unsigned (old_die, DW_AT_decl_line) != (unsigned) s.line)
22981 add_AT_unsigned (subr_die, DW_AT_decl_line, s.line);
22982 if (debug_column_info
22983 && s.column
22984 && (get_AT_unsigned (old_die, DW_AT_decl_column)
22985 != (unsigned) s.column))
22986 add_AT_unsigned (subr_die, DW_AT_decl_column, s.column);
22988 /* If the prototype had an 'auto' or 'decltype(auto)' return type,
22989 emit the real type on the definition die. */
22990 if (is_cxx () && debug_info_level > DINFO_LEVEL_TERSE)
22992 dw_die_ref die = get_AT_ref (old_die, DW_AT_type);
22993 if (die == auto_die || die == decltype_auto_die)
22994 add_type_attribute (subr_die, TREE_TYPE (TREE_TYPE (decl)),
22995 TYPE_UNQUALIFIED, false, context_die);
22998 /* When we process the method declaration, we haven't seen
22999 the out-of-class defaulted definition yet, so we have to
23000 recheck now. */
23001 if ((dwarf_version >= 5 || ! dwarf_strict)
23002 && !get_AT (subr_die, DW_AT_defaulted))
23004 int defaulted
23005 = lang_hooks.decls.decl_dwarf_attribute (decl,
23006 DW_AT_defaulted);
23007 if (defaulted != -1)
23009 /* Other values must have been handled before. */
23010 gcc_assert (defaulted == DW_DEFAULTED_out_of_class);
23011 add_AT_unsigned (subr_die, DW_AT_defaulted, defaulted);
23016 /* Create a fresh DIE for anything else. */
23017 else
23019 subr_die = new_die (DW_TAG_subprogram, context_die, decl);
23021 if (TREE_PUBLIC (decl))
23022 add_AT_flag (subr_die, DW_AT_external, 1);
23024 add_name_and_src_coords_attributes (subr_die, decl);
23025 add_pubname (decl, subr_die);
23026 if (debug_info_level > DINFO_LEVEL_TERSE)
23028 add_prototyped_attribute (subr_die, TREE_TYPE (decl));
23029 add_type_attribute (subr_die, TREE_TYPE (TREE_TYPE (decl)),
23030 TYPE_UNQUALIFIED, false, context_die);
23033 add_pure_or_virtual_attribute (subr_die, decl);
23034 if (DECL_ARTIFICIAL (decl))
23035 add_AT_flag (subr_die, DW_AT_artificial, 1);
23037 if (TREE_THIS_VOLATILE (decl) && (dwarf_version >= 5 || !dwarf_strict))
23038 add_AT_flag (subr_die, DW_AT_noreturn, 1);
23040 add_alignment_attribute (subr_die, decl);
23042 add_accessibility_attribute (subr_die, decl);
23045 /* Unless we have an existing non-declaration DIE, equate the new
23046 DIE. */
23047 if (!old_die || is_declaration_die (old_die))
23048 equate_decl_number_to_die (decl, subr_die);
23050 if (declaration)
23052 if (!old_die || !get_AT (old_die, DW_AT_inline))
23054 add_AT_flag (subr_die, DW_AT_declaration, 1);
23056 /* If this is an explicit function declaration then generate
23057 a DW_AT_explicit attribute. */
23058 if ((dwarf_version >= 3 || !dwarf_strict)
23059 && lang_hooks.decls.decl_dwarf_attribute (decl,
23060 DW_AT_explicit) == 1)
23061 add_AT_flag (subr_die, DW_AT_explicit, 1);
23063 /* If this is a C++11 deleted special function member then generate
23064 a DW_AT_deleted attribute. */
23065 if ((dwarf_version >= 5 || !dwarf_strict)
23066 && lang_hooks.decls.decl_dwarf_attribute (decl,
23067 DW_AT_deleted) == 1)
23068 add_AT_flag (subr_die, DW_AT_deleted, 1);
23070 /* If this is a C++11 defaulted special function member then
23071 generate a DW_AT_defaulted attribute. */
23072 if (dwarf_version >= 5 || !dwarf_strict)
23074 int defaulted
23075 = lang_hooks.decls.decl_dwarf_attribute (decl,
23076 DW_AT_defaulted);
23077 if (defaulted != -1)
23078 add_AT_unsigned (subr_die, DW_AT_defaulted, defaulted);
23081 /* If this is a C++11 non-static member function with & ref-qualifier
23082 then generate a DW_AT_reference attribute. */
23083 if ((dwarf_version >= 5 || !dwarf_strict)
23084 && lang_hooks.decls.decl_dwarf_attribute (decl,
23085 DW_AT_reference) == 1)
23086 add_AT_flag (subr_die, DW_AT_reference, 1);
23088 /* If this is a C++11 non-static member function with &&
23089 ref-qualifier then generate a DW_AT_reference attribute. */
23090 if ((dwarf_version >= 5 || !dwarf_strict)
23091 && lang_hooks.decls.decl_dwarf_attribute (decl,
23092 DW_AT_rvalue_reference)
23093 == 1)
23094 add_AT_flag (subr_die, DW_AT_rvalue_reference, 1);
23097 /* For non DECL_EXTERNALs, if range information is available, fill
23098 the DIE with it. */
23099 else if (!DECL_EXTERNAL (decl) && !early_dwarf)
23101 HOST_WIDE_INT cfa_fb_offset;
23103 struct function *fun = DECL_STRUCT_FUNCTION (decl);
23105 if (!crtl->has_bb_partition)
23107 dw_fde_ref fde = fun->fde;
23108 if (fde->dw_fde_begin)
23110 /* We have already generated the labels. */
23111 add_AT_low_high_pc (subr_die, fde->dw_fde_begin,
23112 fde->dw_fde_end, false);
23114 else
23116 /* Create start/end labels and add the range. */
23117 char label_id_low[MAX_ARTIFICIAL_LABEL_BYTES];
23118 char label_id_high[MAX_ARTIFICIAL_LABEL_BYTES];
23119 ASM_GENERATE_INTERNAL_LABEL (label_id_low, FUNC_BEGIN_LABEL,
23120 current_function_funcdef_no);
23121 ASM_GENERATE_INTERNAL_LABEL (label_id_high, FUNC_END_LABEL,
23122 current_function_funcdef_no);
23123 add_AT_low_high_pc (subr_die, label_id_low, label_id_high,
23124 false);
23127 #if VMS_DEBUGGING_INFO
23128 /* HP OpenVMS Industry Standard 64: DWARF Extensions
23129 Section 2.3 Prologue and Epilogue Attributes:
23130 When a breakpoint is set on entry to a function, it is generally
23131 desirable for execution to be suspended, not on the very first
23132 instruction of the function, but rather at a point after the
23133 function's frame has been set up, after any language defined local
23134 declaration processing has been completed, and before execution of
23135 the first statement of the function begins. Debuggers generally
23136 cannot properly determine where this point is. Similarly for a
23137 breakpoint set on exit from a function. The prologue and epilogue
23138 attributes allow a compiler to communicate the location(s) to use. */
23141 if (fde->dw_fde_vms_end_prologue)
23142 add_AT_vms_delta (subr_die, DW_AT_HP_prologue,
23143 fde->dw_fde_begin, fde->dw_fde_vms_end_prologue);
23145 if (fde->dw_fde_vms_begin_epilogue)
23146 add_AT_vms_delta (subr_die, DW_AT_HP_epilogue,
23147 fde->dw_fde_begin, fde->dw_fde_vms_begin_epilogue);
23149 #endif
23152 else
23154 /* Generate pubnames entries for the split function code ranges. */
23155 dw_fde_ref fde = fun->fde;
23157 if (fde->dw_fde_second_begin)
23159 if (dwarf_version >= 3 || !dwarf_strict)
23161 /* We should use ranges for non-contiguous code section
23162 addresses. Use the actual code range for the initial
23163 section, since the HOT/COLD labels might precede an
23164 alignment offset. */
23165 bool range_list_added = false;
23166 add_ranges_by_labels (subr_die, fde->dw_fde_begin,
23167 fde->dw_fde_end, &range_list_added,
23168 false);
23169 add_ranges_by_labels (subr_die, fde->dw_fde_second_begin,
23170 fde->dw_fde_second_end,
23171 &range_list_added, false);
23172 if (range_list_added)
23173 add_ranges (NULL);
23175 else
23177 /* There is no real support in DW2 for this .. so we make
23178 a work-around. First, emit the pub name for the segment
23179 containing the function label. Then make and emit a
23180 simplified subprogram DIE for the second segment with the
23181 name pre-fixed by __hot/cold_sect_of_. We use the same
23182 linkage name for the second die so that gdb will find both
23183 sections when given "b foo". */
23184 const char *name = NULL;
23185 tree decl_name = DECL_NAME (decl);
23186 dw_die_ref seg_die;
23188 /* Do the 'primary' section. */
23189 add_AT_low_high_pc (subr_die, fde->dw_fde_begin,
23190 fde->dw_fde_end, false);
23192 /* Build a minimal DIE for the secondary section. */
23193 seg_die = new_die (DW_TAG_subprogram,
23194 subr_die->die_parent, decl);
23196 if (TREE_PUBLIC (decl))
23197 add_AT_flag (seg_die, DW_AT_external, 1);
23199 if (decl_name != NULL
23200 && IDENTIFIER_POINTER (decl_name) != NULL)
23202 name = dwarf2_name (decl, 1);
23203 if (! DECL_ARTIFICIAL (decl))
23204 add_src_coords_attributes (seg_die, decl);
23206 add_linkage_name (seg_die, decl);
23208 gcc_assert (name != NULL);
23209 add_pure_or_virtual_attribute (seg_die, decl);
23210 if (DECL_ARTIFICIAL (decl))
23211 add_AT_flag (seg_die, DW_AT_artificial, 1);
23213 name = concat ("__second_sect_of_", name, NULL);
23214 add_AT_low_high_pc (seg_die, fde->dw_fde_second_begin,
23215 fde->dw_fde_second_end, false);
23216 add_name_attribute (seg_die, name);
23217 if (want_pubnames ())
23218 add_pubname_string (name, seg_die);
23221 else
23222 add_AT_low_high_pc (subr_die, fde->dw_fde_begin, fde->dw_fde_end,
23223 false);
23226 cfa_fb_offset = CFA_FRAME_BASE_OFFSET (decl);
23228 /* We define the "frame base" as the function's CFA. This is more
23229 convenient for several reasons: (1) It's stable across the prologue
23230 and epilogue, which makes it better than just a frame pointer,
23231 (2) With dwarf3, there exists a one-byte encoding that allows us
23232 to reference the .debug_frame data by proxy, but failing that,
23233 (3) We can at least reuse the code inspection and interpretation
23234 code that determines the CFA position at various points in the
23235 function. */
23236 if (dwarf_version >= 3 && targetm.debug_unwind_info () == UI_DWARF2)
23238 dw_loc_descr_ref op = new_loc_descr (DW_OP_call_frame_cfa, 0, 0);
23239 add_AT_loc (subr_die, DW_AT_frame_base, op);
23241 else
23243 dw_loc_list_ref list = convert_cfa_to_fb_loc_list (cfa_fb_offset);
23244 if (list->dw_loc_next)
23245 add_AT_loc_list (subr_die, DW_AT_frame_base, list);
23246 else
23247 add_AT_loc (subr_die, DW_AT_frame_base, list->expr);
23250 /* Compute a displacement from the "steady-state frame pointer" to
23251 the CFA. The former is what all stack slots and argument slots
23252 will reference in the rtl; the latter is what we've told the
23253 debugger about. We'll need to adjust all frame_base references
23254 by this displacement. */
23255 compute_frame_pointer_to_fb_displacement (cfa_fb_offset);
23257 if (fun->static_chain_decl)
23259 /* DWARF requires here a location expression that computes the
23260 address of the enclosing subprogram's frame base. The machinery
23261 in tree-nested.c is supposed to store this specific address in the
23262 last field of the FRAME record. */
23263 const tree frame_type
23264 = TREE_TYPE (TREE_TYPE (fun->static_chain_decl));
23265 const tree fb_decl = tree_last (TYPE_FIELDS (frame_type));
23267 tree fb_expr
23268 = build1 (INDIRECT_REF, frame_type, fun->static_chain_decl);
23269 fb_expr = build3 (COMPONENT_REF, TREE_TYPE (fb_decl),
23270 fb_expr, fb_decl, NULL_TREE);
23272 add_AT_location_description (subr_die, DW_AT_static_link,
23273 loc_list_from_tree (fb_expr, 0, NULL));
23276 resolve_variable_values ();
23279 /* Generate child dies for template paramaters. */
23280 if (early_dwarf && debug_info_level > DINFO_LEVEL_TERSE)
23281 gen_generic_params_dies (decl);
23283 /* Now output descriptions of the arguments for this function. This gets
23284 (unnecessarily?) complex because of the fact that the DECL_ARGUMENT list
23285 for a FUNCTION_DECL doesn't indicate cases where there was a trailing
23286 `...' at the end of the formal parameter list. In order to find out if
23287 there was a trailing ellipsis or not, we must instead look at the type
23288 associated with the FUNCTION_DECL. This will be a node of type
23289 FUNCTION_TYPE. If the chain of type nodes hanging off of this
23290 FUNCTION_TYPE node ends with a void_type_node then there should *not* be
23291 an ellipsis at the end. */
23293 /* In the case where we are describing a mere function declaration, all we
23294 need to do here (and all we *can* do here) is to describe the *types* of
23295 its formal parameters. */
23296 if (debug_info_level <= DINFO_LEVEL_TERSE)
23298 else if (declaration)
23299 gen_formal_types_die (decl, subr_die);
23300 else
23302 /* Generate DIEs to represent all known formal parameters. */
23303 tree parm = DECL_ARGUMENTS (decl);
23304 tree generic_decl = early_dwarf
23305 ? lang_hooks.decls.get_generic_function_decl (decl) : NULL;
23306 tree generic_decl_parm = generic_decl
23307 ? DECL_ARGUMENTS (generic_decl)
23308 : NULL;
23310 /* Now we want to walk the list of parameters of the function and
23311 emit their relevant DIEs.
23313 We consider the case of DECL being an instance of a generic function
23314 as well as it being a normal function.
23316 If DECL is an instance of a generic function we walk the
23317 parameters of the generic function declaration _and_ the parameters of
23318 DECL itself. This is useful because we want to emit specific DIEs for
23319 function parameter packs and those are declared as part of the
23320 generic function declaration. In that particular case,
23321 the parameter pack yields a DW_TAG_GNU_formal_parameter_pack DIE.
23322 That DIE has children DIEs representing the set of arguments
23323 of the pack. Note that the set of pack arguments can be empty.
23324 In that case, the DW_TAG_GNU_formal_parameter_pack DIE will not have any
23325 children DIE.
23327 Otherwise, we just consider the parameters of DECL. */
23328 while (generic_decl_parm || parm)
23330 if (generic_decl_parm
23331 && lang_hooks.function_parameter_pack_p (generic_decl_parm))
23332 gen_formal_parameter_pack_die (generic_decl_parm,
23333 parm, subr_die,
23334 &parm);
23335 else if (parm)
23337 dw_die_ref parm_die = gen_decl_die (parm, NULL, NULL, subr_die);
23339 if (early_dwarf
23340 && parm == DECL_ARGUMENTS (decl)
23341 && TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE
23342 && parm_die
23343 && (dwarf_version >= 3 || !dwarf_strict))
23344 add_AT_die_ref (subr_die, DW_AT_object_pointer, parm_die);
23346 parm = DECL_CHAIN (parm);
23349 if (generic_decl_parm)
23350 generic_decl_parm = DECL_CHAIN (generic_decl_parm);
23353 /* Decide whether we need an unspecified_parameters DIE at the end.
23354 There are 2 more cases to do this for: 1) the ansi ... declaration -
23355 this is detectable when the end of the arg list is not a
23356 void_type_node 2) an unprototyped function declaration (not a
23357 definition). This just means that we have no info about the
23358 parameters at all. */
23359 if (early_dwarf)
23361 if (prototype_p (TREE_TYPE (decl)))
23363 /* This is the prototyped case, check for.... */
23364 if (stdarg_p (TREE_TYPE (decl)))
23365 gen_unspecified_parameters_die (decl, subr_die);
23367 else if (DECL_INITIAL (decl) == NULL_TREE)
23368 gen_unspecified_parameters_die (decl, subr_die);
23372 if (subr_die != old_die)
23373 /* Add the calling convention attribute if requested. */
23374 add_calling_convention_attribute (subr_die, decl);
23376 /* Output Dwarf info for all of the stuff within the body of the function
23377 (if it has one - it may be just a declaration).
23379 OUTER_SCOPE is a pointer to the outermost BLOCK node created to represent
23380 a function. This BLOCK actually represents the outermost binding contour
23381 for the function, i.e. the contour in which the function's formal
23382 parameters and labels get declared. Curiously, it appears that the front
23383 end doesn't actually put the PARM_DECL nodes for the current function onto
23384 the BLOCK_VARS list for this outer scope, but are strung off of the
23385 DECL_ARGUMENTS list for the function instead.
23387 The BLOCK_VARS list for the `outer_scope' does provide us with a list of
23388 the LABEL_DECL nodes for the function however, and we output DWARF info
23389 for those in decls_for_scope. Just within the `outer_scope' there will be
23390 a BLOCK node representing the function's outermost pair of curly braces,
23391 and any blocks used for the base and member initializers of a C++
23392 constructor function. */
23393 tree outer_scope = DECL_INITIAL (decl);
23394 if (! declaration && outer_scope && TREE_CODE (outer_scope) != ERROR_MARK)
23396 int call_site_note_count = 0;
23397 int tail_call_site_note_count = 0;
23399 /* Emit a DW_TAG_variable DIE for a named return value. */
23400 if (DECL_NAME (DECL_RESULT (decl)))
23401 gen_decl_die (DECL_RESULT (decl), NULL, NULL, subr_die);
23403 /* The first time through decls_for_scope we will generate the
23404 DIEs for the locals. The second time, we fill in the
23405 location info. */
23406 decls_for_scope (outer_scope, subr_die);
23408 if (call_arg_locations && (!dwarf_strict || dwarf_version >= 5))
23410 struct call_arg_loc_node *ca_loc;
23411 for (ca_loc = call_arg_locations; ca_loc; ca_loc = ca_loc->next)
23413 dw_die_ref die = NULL;
23414 rtx tloc = NULL_RTX, tlocc = NULL_RTX;
23415 rtx arg, next_arg;
23416 tree arg_decl = NULL_TREE;
23418 for (arg = (ca_loc->call_arg_loc_note != NULL_RTX
23419 ? XEXP (ca_loc->call_arg_loc_note, 0)
23420 : NULL_RTX);
23421 arg; arg = next_arg)
23423 dw_loc_descr_ref reg, val;
23424 machine_mode mode = GET_MODE (XEXP (XEXP (arg, 0), 1));
23425 dw_die_ref cdie, tdie = NULL;
23427 next_arg = XEXP (arg, 1);
23428 if (REG_P (XEXP (XEXP (arg, 0), 0))
23429 && next_arg
23430 && MEM_P (XEXP (XEXP (next_arg, 0), 0))
23431 && REG_P (XEXP (XEXP (XEXP (next_arg, 0), 0), 0))
23432 && REGNO (XEXP (XEXP (arg, 0), 0))
23433 == REGNO (XEXP (XEXP (XEXP (next_arg, 0), 0), 0)))
23434 next_arg = XEXP (next_arg, 1);
23435 if (mode == VOIDmode)
23437 mode = GET_MODE (XEXP (XEXP (arg, 0), 0));
23438 if (mode == VOIDmode)
23439 mode = GET_MODE (XEXP (arg, 0));
23441 if (mode == VOIDmode || mode == BLKmode)
23442 continue;
23443 /* Get dynamic information about call target only if we
23444 have no static information: we cannot generate both
23445 DW_AT_call_origin and DW_AT_call_target
23446 attributes. */
23447 if (ca_loc->symbol_ref == NULL_RTX)
23449 if (XEXP (XEXP (arg, 0), 0) == pc_rtx)
23451 tloc = XEXP (XEXP (arg, 0), 1);
23452 continue;
23454 else if (GET_CODE (XEXP (XEXP (arg, 0), 0)) == CLOBBER
23455 && XEXP (XEXP (XEXP (arg, 0), 0), 0) == pc_rtx)
23457 tlocc = XEXP (XEXP (arg, 0), 1);
23458 continue;
23461 reg = NULL;
23462 if (REG_P (XEXP (XEXP (arg, 0), 0)))
23463 reg = reg_loc_descriptor (XEXP (XEXP (arg, 0), 0),
23464 VAR_INIT_STATUS_INITIALIZED);
23465 else if (MEM_P (XEXP (XEXP (arg, 0), 0)))
23467 rtx mem = XEXP (XEXP (arg, 0), 0);
23468 reg = mem_loc_descriptor (XEXP (mem, 0),
23469 get_address_mode (mem),
23470 GET_MODE (mem),
23471 VAR_INIT_STATUS_INITIALIZED);
23473 else if (GET_CODE (XEXP (XEXP (arg, 0), 0))
23474 == DEBUG_PARAMETER_REF)
23476 tree tdecl
23477 = DEBUG_PARAMETER_REF_DECL (XEXP (XEXP (arg, 0), 0));
23478 tdie = lookup_decl_die (tdecl);
23479 if (tdie == NULL)
23480 continue;
23481 arg_decl = tdecl;
23483 else
23484 continue;
23485 if (reg == NULL
23486 && GET_CODE (XEXP (XEXP (arg, 0), 0))
23487 != DEBUG_PARAMETER_REF)
23488 continue;
23489 val = mem_loc_descriptor (XEXP (XEXP (arg, 0), 1), mode,
23490 VOIDmode,
23491 VAR_INIT_STATUS_INITIALIZED);
23492 if (val == NULL)
23493 continue;
23494 if (die == NULL)
23495 die = gen_call_site_die (decl, subr_die, ca_loc);
23496 cdie = new_die (dwarf_TAG (DW_TAG_call_site_parameter), die,
23497 NULL_TREE);
23498 add_desc_attribute (cdie, arg_decl);
23499 if (reg != NULL)
23500 add_AT_loc (cdie, DW_AT_location, reg);
23501 else if (tdie != NULL)
23502 add_AT_die_ref (cdie, dwarf_AT (DW_AT_call_parameter),
23503 tdie);
23504 add_AT_loc (cdie, dwarf_AT (DW_AT_call_value), val);
23505 if (next_arg != XEXP (arg, 1))
23507 mode = GET_MODE (XEXP (XEXP (XEXP (arg, 1), 0), 1));
23508 if (mode == VOIDmode)
23509 mode = GET_MODE (XEXP (XEXP (XEXP (arg, 1), 0), 0));
23510 val = mem_loc_descriptor (XEXP (XEXP (XEXP (arg, 1),
23511 0), 1),
23512 mode, VOIDmode,
23513 VAR_INIT_STATUS_INITIALIZED);
23514 if (val != NULL)
23515 add_AT_loc (cdie, dwarf_AT (DW_AT_call_data_value),
23516 val);
23519 if (die == NULL
23520 && (ca_loc->symbol_ref || tloc))
23521 die = gen_call_site_die (decl, subr_die, ca_loc);
23522 if (die != NULL && (tloc != NULL_RTX || tlocc != NULL_RTX))
23524 dw_loc_descr_ref tval = NULL;
23526 if (tloc != NULL_RTX)
23527 tval = mem_loc_descriptor (tloc,
23528 GET_MODE (tloc) == VOIDmode
23529 ? Pmode : GET_MODE (tloc),
23530 VOIDmode,
23531 VAR_INIT_STATUS_INITIALIZED);
23532 if (tval)
23533 add_AT_loc (die, dwarf_AT (DW_AT_call_target), tval);
23534 else if (tlocc != NULL_RTX)
23536 tval = mem_loc_descriptor (tlocc,
23537 GET_MODE (tlocc) == VOIDmode
23538 ? Pmode : GET_MODE (tlocc),
23539 VOIDmode,
23540 VAR_INIT_STATUS_INITIALIZED);
23541 if (tval)
23542 add_AT_loc (die,
23543 dwarf_AT (DW_AT_call_target_clobbered),
23544 tval);
23547 if (die != NULL)
23549 call_site_note_count++;
23550 if (ca_loc->tail_call_p)
23551 tail_call_site_note_count++;
23555 call_arg_locations = NULL;
23556 call_arg_loc_last = NULL;
23557 if (tail_call_site_count >= 0
23558 && tail_call_site_count == tail_call_site_note_count
23559 && (!dwarf_strict || dwarf_version >= 5))
23561 if (call_site_count >= 0
23562 && call_site_count == call_site_note_count)
23563 add_AT_flag (subr_die, dwarf_AT (DW_AT_call_all_calls), 1);
23564 else
23565 add_AT_flag (subr_die, dwarf_AT (DW_AT_call_all_tail_calls), 1);
23567 call_site_count = -1;
23568 tail_call_site_count = -1;
23571 /* Mark used types after we have created DIEs for the functions scopes. */
23572 premark_used_types (DECL_STRUCT_FUNCTION (decl));
23575 /* Returns a hash value for X (which really is a die_struct). */
23577 hashval_t
23578 block_die_hasher::hash (die_struct *d)
23580 return (hashval_t) d->decl_id ^ htab_hash_pointer (d->die_parent);
23583 /* Return nonzero if decl_id and die_parent of die_struct X is the same
23584 as decl_id and die_parent of die_struct Y. */
23586 bool
23587 block_die_hasher::equal (die_struct *x, die_struct *y)
23589 return x->decl_id == y->decl_id && x->die_parent == y->die_parent;
23592 /* Hold information about markers for inlined entry points. */
23593 struct GTY ((for_user)) inline_entry_data
23595 /* The block that's the inlined_function_outer_scope for an inlined
23596 function. */
23597 tree block;
23599 /* The label at the inlined entry point. */
23600 const char *label_pfx;
23601 unsigned int label_num;
23603 /* The view number to be used as the inlined entry point. */
23604 var_loc_view view;
23607 struct inline_entry_data_hasher : ggc_ptr_hash <inline_entry_data>
23609 typedef tree compare_type;
23610 static inline hashval_t hash (const inline_entry_data *);
23611 static inline bool equal (const inline_entry_data *, const_tree);
23614 /* Hash table routines for inline_entry_data. */
23616 inline hashval_t
23617 inline_entry_data_hasher::hash (const inline_entry_data *data)
23619 return htab_hash_pointer (data->block);
23622 inline bool
23623 inline_entry_data_hasher::equal (const inline_entry_data *data,
23624 const_tree block)
23626 return data->block == block;
23629 /* Inlined entry points pending DIE creation in this compilation unit. */
23631 static GTY(()) hash_table<inline_entry_data_hasher> *inline_entry_data_table;
23634 /* Return TRUE if DECL, which may have been previously generated as
23635 OLD_DIE, is a candidate for a DW_AT_specification. DECLARATION is
23636 true if decl (or its origin) is either an extern declaration or a
23637 class/namespace scoped declaration.
23639 The declare_in_namespace support causes us to get two DIEs for one
23640 variable, both of which are declarations. We want to avoid
23641 considering one to be a specification, so we must test for
23642 DECLARATION and DW_AT_declaration. */
23643 static inline bool
23644 decl_will_get_specification_p (dw_die_ref old_die, tree decl, bool declaration)
23646 return (old_die && TREE_STATIC (decl) && !declaration
23647 && get_AT_flag (old_die, DW_AT_declaration) == 1);
23650 /* Return true if DECL is a local static. */
23652 static inline bool
23653 local_function_static (tree decl)
23655 gcc_assert (VAR_P (decl));
23656 return TREE_STATIC (decl)
23657 && DECL_CONTEXT (decl)
23658 && TREE_CODE (DECL_CONTEXT (decl)) == FUNCTION_DECL;
23661 /* Generate a DIE to represent a declared data object.
23662 Either DECL or ORIGIN must be non-null. */
23664 static void
23665 gen_variable_die (tree decl, tree origin, dw_die_ref context_die)
23667 HOST_WIDE_INT off = 0;
23668 tree com_decl;
23669 tree decl_or_origin = decl ? decl : origin;
23670 tree ultimate_origin;
23671 dw_die_ref var_die;
23672 dw_die_ref old_die = decl ? lookup_decl_die (decl) : NULL;
23673 bool declaration = (DECL_EXTERNAL (decl_or_origin)
23674 || class_or_namespace_scope_p (context_die));
23675 bool specialization_p = false;
23676 bool no_linkage_name = false;
23678 /* While C++ inline static data members have definitions inside of the
23679 class, force the first DIE to be a declaration, then let gen_member_die
23680 reparent it to the class context and call gen_variable_die again
23681 to create the outside of the class DIE for the definition. */
23682 if (!declaration
23683 && old_die == NULL
23684 && decl
23685 && DECL_CONTEXT (decl)
23686 && TYPE_P (DECL_CONTEXT (decl))
23687 && lang_hooks.decls.decl_dwarf_attribute (decl, DW_AT_inline) != -1)
23689 declaration = true;
23690 if (dwarf_version < 5)
23691 no_linkage_name = true;
23694 ultimate_origin = decl_ultimate_origin (decl_or_origin);
23695 if (decl || ultimate_origin)
23696 origin = ultimate_origin;
23697 com_decl = fortran_common (decl_or_origin, &off);
23699 /* Symbol in common gets emitted as a child of the common block, in the form
23700 of a data member. */
23701 if (com_decl)
23703 dw_die_ref com_die;
23704 dw_loc_list_ref loc = NULL;
23705 die_node com_die_arg;
23707 var_die = lookup_decl_die (decl_or_origin);
23708 if (var_die)
23710 if (! early_dwarf && get_AT (var_die, DW_AT_location) == NULL)
23712 loc = loc_list_from_tree (com_decl, off ? 1 : 2, NULL);
23713 if (loc)
23715 if (off)
23717 /* Optimize the common case. */
23718 if (single_element_loc_list_p (loc)
23719 && loc->expr->dw_loc_opc == DW_OP_addr
23720 && loc->expr->dw_loc_next == NULL
23721 && GET_CODE (loc->expr->dw_loc_oprnd1.v.val_addr)
23722 == SYMBOL_REF)
23724 rtx x = loc->expr->dw_loc_oprnd1.v.val_addr;
23725 loc->expr->dw_loc_oprnd1.v.val_addr
23726 = plus_constant (GET_MODE (x), x , off);
23728 else
23729 loc_list_plus_const (loc, off);
23731 add_AT_location_description (var_die, DW_AT_location, loc);
23732 remove_AT (var_die, DW_AT_declaration);
23735 return;
23738 if (common_block_die_table == NULL)
23739 common_block_die_table = hash_table<block_die_hasher>::create_ggc (10);
23741 com_die_arg.decl_id = DECL_UID (com_decl);
23742 com_die_arg.die_parent = context_die;
23743 com_die = common_block_die_table->find (&com_die_arg);
23744 if (! early_dwarf)
23745 loc = loc_list_from_tree (com_decl, 2, NULL);
23746 if (com_die == NULL)
23748 const char *cnam
23749 = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (com_decl));
23750 die_node **slot;
23752 com_die = new_die (DW_TAG_common_block, context_die, decl);
23753 add_name_and_src_coords_attributes (com_die, com_decl);
23754 if (loc)
23756 add_AT_location_description (com_die, DW_AT_location, loc);
23757 /* Avoid sharing the same loc descriptor between
23758 DW_TAG_common_block and DW_TAG_variable. */
23759 loc = loc_list_from_tree (com_decl, 2, NULL);
23761 else if (DECL_EXTERNAL (decl_or_origin))
23762 add_AT_flag (com_die, DW_AT_declaration, 1);
23763 if (want_pubnames ())
23764 add_pubname_string (cnam, com_die); /* ??? needed? */
23765 com_die->decl_id = DECL_UID (com_decl);
23766 slot = common_block_die_table->find_slot (com_die, INSERT);
23767 *slot = com_die;
23769 else if (get_AT (com_die, DW_AT_location) == NULL && loc)
23771 add_AT_location_description (com_die, DW_AT_location, loc);
23772 loc = loc_list_from_tree (com_decl, 2, NULL);
23773 remove_AT (com_die, DW_AT_declaration);
23775 var_die = new_die (DW_TAG_variable, com_die, decl);
23776 add_name_and_src_coords_attributes (var_die, decl_or_origin);
23777 add_type_attribute (var_die, TREE_TYPE (decl_or_origin),
23778 decl_quals (decl_or_origin), false,
23779 context_die);
23780 add_alignment_attribute (var_die, decl);
23781 add_AT_flag (var_die, DW_AT_external, 1);
23782 if (loc)
23784 if (off)
23786 /* Optimize the common case. */
23787 if (single_element_loc_list_p (loc)
23788 && loc->expr->dw_loc_opc == DW_OP_addr
23789 && loc->expr->dw_loc_next == NULL
23790 && GET_CODE (loc->expr->dw_loc_oprnd1.v.val_addr) == SYMBOL_REF)
23792 rtx x = loc->expr->dw_loc_oprnd1.v.val_addr;
23793 loc->expr->dw_loc_oprnd1.v.val_addr
23794 = plus_constant (GET_MODE (x), x, off);
23796 else
23797 loc_list_plus_const (loc, off);
23799 add_AT_location_description (var_die, DW_AT_location, loc);
23801 else if (DECL_EXTERNAL (decl_or_origin))
23802 add_AT_flag (var_die, DW_AT_declaration, 1);
23803 if (decl)
23804 equate_decl_number_to_die (decl, var_die);
23805 return;
23808 if (old_die)
23810 if (declaration)
23812 /* A declaration that has been previously dumped, needs no
23813 further annotations, since it doesn't need location on
23814 the second pass. */
23815 return;
23817 else if (decl_will_get_specification_p (old_die, decl, declaration)
23818 && !get_AT (old_die, DW_AT_specification))
23820 /* Fall-thru so we can make a new variable die along with a
23821 DW_AT_specification. */
23823 else if (origin && old_die->die_parent != context_die)
23825 /* If we will be creating an inlined instance, we need a
23826 new DIE that will get annotated with
23827 DW_AT_abstract_origin. */
23828 gcc_assert (!DECL_ABSTRACT_P (decl));
23830 else
23832 /* If a DIE was dumped early, it still needs location info.
23833 Skip to where we fill the location bits. */
23834 var_die = old_die;
23836 /* ??? In LTRANS we cannot annotate early created variably
23837 modified type DIEs without copying them and adjusting all
23838 references to them. Thus we dumped them again. Also add a
23839 reference to them but beware of -g0 compile and -g link
23840 in which case the reference will be already present. */
23841 tree type = TREE_TYPE (decl_or_origin);
23842 if (in_lto_p
23843 && ! get_AT (var_die, DW_AT_type)
23844 && variably_modified_type_p
23845 (type, decl_function_context (decl_or_origin)))
23847 if (decl_by_reference_p (decl_or_origin))
23848 add_type_attribute (var_die, TREE_TYPE (type),
23849 TYPE_UNQUALIFIED, false, context_die);
23850 else
23851 add_type_attribute (var_die, type, decl_quals (decl_or_origin),
23852 false, context_die);
23855 goto gen_variable_die_location;
23859 /* For static data members, the declaration in the class is supposed
23860 to have DW_TAG_member tag in DWARF{3,4} and we emit it for compatibility
23861 also in DWARF2; the specification should still be DW_TAG_variable
23862 referencing the DW_TAG_member DIE. */
23863 if (declaration && class_scope_p (context_die) && dwarf_version < 5)
23864 var_die = new_die (DW_TAG_member, context_die, decl);
23865 else
23866 var_die = new_die (DW_TAG_variable, context_die, decl);
23868 if (origin != NULL)
23869 add_abstract_origin_attribute (var_die, origin);
23871 /* Loop unrolling can create multiple blocks that refer to the same
23872 static variable, so we must test for the DW_AT_declaration flag.
23874 ??? Loop unrolling/reorder_blocks should perhaps be rewritten to
23875 copy decls and set the DECL_ABSTRACT_P flag on them instead of
23876 sharing them.
23878 ??? Duplicated blocks have been rewritten to use .debug_ranges. */
23879 else if (decl_will_get_specification_p (old_die, decl, declaration))
23881 /* This is a definition of a C++ class level static. */
23882 add_AT_specification (var_die, old_die);
23883 specialization_p = true;
23884 if (DECL_NAME (decl))
23886 expanded_location s = expand_location (DECL_SOURCE_LOCATION (decl));
23887 struct dwarf_file_data * file_index = lookup_filename (s.file);
23889 if (get_AT_file (old_die, DW_AT_decl_file) != file_index)
23890 add_AT_file (var_die, DW_AT_decl_file, file_index);
23892 if (get_AT_unsigned (old_die, DW_AT_decl_line) != (unsigned) s.line)
23893 add_AT_unsigned (var_die, DW_AT_decl_line, s.line);
23895 if (debug_column_info
23896 && s.column
23897 && (get_AT_unsigned (old_die, DW_AT_decl_column)
23898 != (unsigned) s.column))
23899 add_AT_unsigned (var_die, DW_AT_decl_column, s.column);
23901 if (old_die->die_tag == DW_TAG_member)
23902 add_linkage_name (var_die, decl);
23905 else
23906 add_name_and_src_coords_attributes (var_die, decl, no_linkage_name);
23908 if ((origin == NULL && !specialization_p)
23909 || (origin != NULL
23910 && !DECL_ABSTRACT_P (decl_or_origin)
23911 && variably_modified_type_p (TREE_TYPE (decl_or_origin),
23912 decl_function_context
23913 (decl_or_origin))))
23915 tree type = TREE_TYPE (decl_or_origin);
23917 if (decl_by_reference_p (decl_or_origin))
23918 add_type_attribute (var_die, TREE_TYPE (type), TYPE_UNQUALIFIED, false,
23919 context_die);
23920 else
23921 add_type_attribute (var_die, type, decl_quals (decl_or_origin), false,
23922 context_die);
23925 if (origin == NULL && !specialization_p)
23927 if (TREE_PUBLIC (decl))
23928 add_AT_flag (var_die, DW_AT_external, 1);
23930 if (DECL_ARTIFICIAL (decl))
23931 add_AT_flag (var_die, DW_AT_artificial, 1);
23933 add_alignment_attribute (var_die, decl);
23935 add_accessibility_attribute (var_die, decl);
23938 if (declaration)
23939 add_AT_flag (var_die, DW_AT_declaration, 1);
23941 if (decl && (DECL_ABSTRACT_P (decl)
23942 || !old_die || is_declaration_die (old_die)))
23943 equate_decl_number_to_die (decl, var_die);
23945 gen_variable_die_location:
23946 if (! declaration
23947 && (! DECL_ABSTRACT_P (decl_or_origin)
23948 /* Local static vars are shared between all clones/inlines,
23949 so emit DW_AT_location on the abstract DIE if DECL_RTL is
23950 already set. */
23951 || (VAR_P (decl_or_origin)
23952 && TREE_STATIC (decl_or_origin)
23953 && DECL_RTL_SET_P (decl_or_origin))))
23955 if (early_dwarf)
23956 add_pubname (decl_or_origin, var_die);
23957 else
23958 add_location_or_const_value_attribute (var_die, decl_or_origin,
23959 decl == NULL);
23961 else
23962 tree_add_const_value_attribute_for_decl (var_die, decl_or_origin);
23964 if ((dwarf_version >= 4 || !dwarf_strict)
23965 && lang_hooks.decls.decl_dwarf_attribute (decl_or_origin,
23966 DW_AT_const_expr) == 1
23967 && !get_AT (var_die, DW_AT_const_expr)
23968 && !specialization_p)
23969 add_AT_flag (var_die, DW_AT_const_expr, 1);
23971 if (!dwarf_strict)
23973 int inl = lang_hooks.decls.decl_dwarf_attribute (decl_or_origin,
23974 DW_AT_inline);
23975 if (inl != -1
23976 && !get_AT (var_die, DW_AT_inline)
23977 && !specialization_p)
23978 add_AT_unsigned (var_die, DW_AT_inline, inl);
23982 /* Generate a DIE to represent a named constant. */
23984 static void
23985 gen_const_die (tree decl, dw_die_ref context_die)
23987 dw_die_ref const_die;
23988 tree type = TREE_TYPE (decl);
23990 const_die = lookup_decl_die (decl);
23991 if (const_die)
23992 return;
23994 const_die = new_die (DW_TAG_constant, context_die, decl);
23995 equate_decl_number_to_die (decl, const_die);
23996 add_name_and_src_coords_attributes (const_die, decl);
23997 add_type_attribute (const_die, type, TYPE_QUAL_CONST, false, context_die);
23998 if (TREE_PUBLIC (decl))
23999 add_AT_flag (const_die, DW_AT_external, 1);
24000 if (DECL_ARTIFICIAL (decl))
24001 add_AT_flag (const_die, DW_AT_artificial, 1);
24002 tree_add_const_value_attribute_for_decl (const_die, decl);
24005 /* Generate a DIE to represent a label identifier. */
24007 static void
24008 gen_label_die (tree decl, dw_die_ref context_die)
24010 tree origin = decl_ultimate_origin (decl);
24011 dw_die_ref lbl_die = lookup_decl_die (decl);
24012 rtx insn;
24013 char label[MAX_ARTIFICIAL_LABEL_BYTES];
24015 if (!lbl_die)
24017 lbl_die = new_die (DW_TAG_label, context_die, decl);
24018 equate_decl_number_to_die (decl, lbl_die);
24020 if (origin != NULL)
24021 add_abstract_origin_attribute (lbl_die, origin);
24022 else
24023 add_name_and_src_coords_attributes (lbl_die, decl);
24026 if (DECL_ABSTRACT_P (decl))
24027 equate_decl_number_to_die (decl, lbl_die);
24028 else if (! early_dwarf)
24030 insn = DECL_RTL_IF_SET (decl);
24032 /* Deleted labels are programmer specified labels which have been
24033 eliminated because of various optimizations. We still emit them
24034 here so that it is possible to put breakpoints on them. */
24035 if (insn
24036 && (LABEL_P (insn)
24037 || ((NOTE_P (insn)
24038 && NOTE_KIND (insn) == NOTE_INSN_DELETED_LABEL))))
24040 /* When optimization is enabled (via -O) some parts of the compiler
24041 (e.g. jump.c and cse.c) may try to delete CODE_LABEL insns which
24042 represent source-level labels which were explicitly declared by
24043 the user. This really shouldn't be happening though, so catch
24044 it if it ever does happen. */
24045 gcc_assert (!as_a<rtx_insn *> (insn)->deleted ());
24047 ASM_GENERATE_INTERNAL_LABEL (label, "L", CODE_LABEL_NUMBER (insn));
24048 add_AT_lbl_id (lbl_die, DW_AT_low_pc, label);
24050 else if (insn
24051 && NOTE_P (insn)
24052 && NOTE_KIND (insn) == NOTE_INSN_DELETED_DEBUG_LABEL
24053 && CODE_LABEL_NUMBER (insn) != -1)
24055 ASM_GENERATE_INTERNAL_LABEL (label, "LDL", CODE_LABEL_NUMBER (insn));
24056 add_AT_lbl_id (lbl_die, DW_AT_low_pc, label);
24061 /* A helper function for gen_inlined_subroutine_die. Add source coordinate
24062 attributes to the DIE for a block STMT, to describe where the inlined
24063 function was called from. This is similar to add_src_coords_attributes. */
24065 static inline void
24066 add_call_src_coords_attributes (tree stmt, dw_die_ref die)
24068 /* We can end up with BUILTINS_LOCATION here. */
24069 if (RESERVED_LOCATION_P (BLOCK_SOURCE_LOCATION (stmt)))
24070 return;
24072 expanded_location s = expand_location (BLOCK_SOURCE_LOCATION (stmt));
24074 if (dwarf_version >= 3 || !dwarf_strict)
24076 add_AT_file (die, DW_AT_call_file, lookup_filename (s.file));
24077 add_AT_unsigned (die, DW_AT_call_line, s.line);
24078 if (debug_column_info && s.column)
24079 add_AT_unsigned (die, DW_AT_call_column, s.column);
24084 /* A helper function for gen_lexical_block_die and gen_inlined_subroutine_die.
24085 Add low_pc and high_pc attributes to the DIE for a block STMT. */
24087 static inline void
24088 add_high_low_attributes (tree stmt, dw_die_ref die)
24090 char label[MAX_ARTIFICIAL_LABEL_BYTES];
24092 if (inline_entry_data **iedp
24093 = !inline_entry_data_table ? NULL
24094 : inline_entry_data_table->find_slot_with_hash (stmt,
24095 htab_hash_pointer (stmt),
24096 NO_INSERT))
24098 inline_entry_data *ied = *iedp;
24099 gcc_assert (MAY_HAVE_DEBUG_MARKER_INSNS);
24100 gcc_assert (debug_inline_points);
24101 gcc_assert (inlined_function_outer_scope_p (stmt));
24103 ASM_GENERATE_INTERNAL_LABEL (label, ied->label_pfx, ied->label_num);
24104 add_AT_lbl_id (die, DW_AT_entry_pc, label);
24106 if (debug_variable_location_views && !ZERO_VIEW_P (ied->view)
24107 && !dwarf_strict)
24109 if (!output_asm_line_debug_info ())
24110 add_AT_unsigned (die, DW_AT_GNU_entry_view, ied->view);
24111 else
24113 ASM_GENERATE_INTERNAL_LABEL (label, "LVU", ied->view);
24114 /* FIXME: this will resolve to a small number. Could we
24115 possibly emit smaller data? Ideally we'd emit a
24116 uleb128, but that would make the size of DIEs
24117 impossible for the compiler to compute, since it's
24118 the assembler that computes the value of the view
24119 label in this case. Ideally, we'd have a single form
24120 encompassing both the address and the view, and
24121 indirecting them through a table might make things
24122 easier, but even that would be more wasteful,
24123 space-wise, than what we have now. */
24124 add_AT_symview (die, DW_AT_GNU_entry_view, label);
24128 inline_entry_data_table->clear_slot (iedp);
24131 if (BLOCK_FRAGMENT_CHAIN (stmt)
24132 && (dwarf_version >= 3 || !dwarf_strict))
24134 tree chain, superblock = NULL_TREE;
24135 dw_die_ref pdie;
24136 dw_attr_node *attr = NULL;
24138 if (!debug_inline_points && inlined_function_outer_scope_p (stmt))
24140 ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_BEGIN_LABEL,
24141 BLOCK_NUMBER (stmt));
24142 add_AT_lbl_id (die, DW_AT_entry_pc, label);
24145 /* Optimize duplicate .debug_ranges lists or even tails of
24146 lists. If this BLOCK has same ranges as its supercontext,
24147 lookup DW_AT_ranges attribute in the supercontext (and
24148 recursively so), verify that the ranges_table contains the
24149 right values and use it instead of adding a new .debug_range. */
24150 for (chain = stmt, pdie = die;
24151 BLOCK_SAME_RANGE (chain);
24152 chain = BLOCK_SUPERCONTEXT (chain))
24154 dw_attr_node *new_attr;
24156 pdie = pdie->die_parent;
24157 if (pdie == NULL)
24158 break;
24159 if (BLOCK_SUPERCONTEXT (chain) == NULL_TREE)
24160 break;
24161 new_attr = get_AT (pdie, DW_AT_ranges);
24162 if (new_attr == NULL
24163 || new_attr->dw_attr_val.val_class != dw_val_class_range_list)
24164 break;
24165 attr = new_attr;
24166 superblock = BLOCK_SUPERCONTEXT (chain);
24168 if (attr != NULL
24169 && ((*ranges_table)[attr->dw_attr_val.v.val_offset].num
24170 == (int)BLOCK_NUMBER (superblock))
24171 && BLOCK_FRAGMENT_CHAIN (superblock))
24173 unsigned long off = attr->dw_attr_val.v.val_offset;
24174 unsigned long supercnt = 0, thiscnt = 0;
24175 for (chain = BLOCK_FRAGMENT_CHAIN (superblock);
24176 chain; chain = BLOCK_FRAGMENT_CHAIN (chain))
24178 ++supercnt;
24179 gcc_checking_assert ((*ranges_table)[off + supercnt].num
24180 == (int)BLOCK_NUMBER (chain));
24182 gcc_checking_assert ((*ranges_table)[off + supercnt + 1].num == 0);
24183 for (chain = BLOCK_FRAGMENT_CHAIN (stmt);
24184 chain; chain = BLOCK_FRAGMENT_CHAIN (chain))
24185 ++thiscnt;
24186 gcc_assert (supercnt >= thiscnt);
24187 add_AT_range_list (die, DW_AT_ranges, off + supercnt - thiscnt,
24188 false);
24189 note_rnglist_head (off + supercnt - thiscnt);
24190 return;
24193 unsigned int offset = add_ranges (stmt, true);
24194 add_AT_range_list (die, DW_AT_ranges, offset, false);
24195 note_rnglist_head (offset);
24197 bool prev_in_cold = BLOCK_IN_COLD_SECTION_P (stmt);
24198 chain = BLOCK_FRAGMENT_CHAIN (stmt);
24201 add_ranges (chain, prev_in_cold != BLOCK_IN_COLD_SECTION_P (chain));
24202 prev_in_cold = BLOCK_IN_COLD_SECTION_P (chain);
24203 chain = BLOCK_FRAGMENT_CHAIN (chain);
24205 while (chain);
24206 add_ranges (NULL);
24208 else
24210 char label_high[MAX_ARTIFICIAL_LABEL_BYTES];
24211 ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_BEGIN_LABEL,
24212 BLOCK_NUMBER (stmt));
24213 ASM_GENERATE_INTERNAL_LABEL (label_high, BLOCK_END_LABEL,
24214 BLOCK_NUMBER (stmt));
24215 add_AT_low_high_pc (die, label, label_high, false);
24219 /* Generate a DIE for a lexical block. */
24221 static void
24222 gen_lexical_block_die (tree stmt, dw_die_ref context_die)
24224 dw_die_ref old_die = lookup_block_die (stmt);
24225 dw_die_ref stmt_die = NULL;
24226 if (!old_die)
24228 stmt_die = new_die (DW_TAG_lexical_block, context_die, stmt);
24229 equate_block_to_die (stmt, stmt_die);
24232 if (BLOCK_ABSTRACT_ORIGIN (stmt))
24234 /* If this is an inlined or conrecte instance, create a new lexical
24235 die for anything below to attach DW_AT_abstract_origin to. */
24236 if (old_die)
24237 stmt_die = new_die (DW_TAG_lexical_block, context_die, stmt);
24239 tree origin = block_ultimate_origin (stmt);
24240 if (origin != NULL_TREE && (origin != stmt || old_die))
24241 add_abstract_origin_attribute (stmt_die, origin);
24243 old_die = NULL;
24246 if (old_die)
24247 stmt_die = old_die;
24249 /* A non abstract block whose blocks have already been reordered
24250 should have the instruction range for this block. If so, set the
24251 high/low attributes. */
24252 if (!early_dwarf && TREE_ASM_WRITTEN (stmt))
24254 gcc_assert (stmt_die);
24255 add_high_low_attributes (stmt, stmt_die);
24258 decls_for_scope (stmt, stmt_die);
24261 /* Generate a DIE for an inlined subprogram. */
24263 static void
24264 gen_inlined_subroutine_die (tree stmt, dw_die_ref context_die)
24266 tree decl = block_ultimate_origin (stmt);
24268 /* Make sure any inlined functions are known to be inlineable. */
24269 gcc_checking_assert (DECL_ABSTRACT_P (decl)
24270 || cgraph_function_possibly_inlined_p (decl));
24272 dw_die_ref subr_die = new_die (DW_TAG_inlined_subroutine, context_die, stmt);
24274 if (call_arg_locations || debug_inline_points)
24275 equate_block_to_die (stmt, subr_die);
24276 add_abstract_origin_attribute (subr_die, decl);
24277 if (TREE_ASM_WRITTEN (stmt))
24278 add_high_low_attributes (stmt, subr_die);
24279 add_call_src_coords_attributes (stmt, subr_die);
24281 /* The inliner creates an extra BLOCK for the parameter setup,
24282 we want to merge that with the actual outermost BLOCK of the
24283 inlined function to avoid duplicate locals in consumers.
24284 Do that by doing the recursion to subblocks on the single subblock
24285 of STMT. */
24286 bool unwrap_one = false;
24287 if (BLOCK_SUBBLOCKS (stmt) && !BLOCK_CHAIN (BLOCK_SUBBLOCKS (stmt)))
24289 tree origin = block_ultimate_origin (BLOCK_SUBBLOCKS (stmt));
24290 if (origin
24291 && TREE_CODE (origin) == BLOCK
24292 && BLOCK_SUPERCONTEXT (origin) == decl)
24293 unwrap_one = true;
24295 decls_for_scope (stmt, subr_die, !unwrap_one);
24296 if (unwrap_one)
24297 decls_for_scope (BLOCK_SUBBLOCKS (stmt), subr_die);
24300 /* Generate a DIE for a field in a record, or structure. CTX is required: see
24301 the comment for VLR_CONTEXT. */
24303 static void
24304 gen_field_die (tree decl, struct vlr_context *ctx, dw_die_ref context_die)
24306 dw_die_ref decl_die;
24308 if (TREE_TYPE (decl) == error_mark_node)
24309 return;
24311 decl_die = new_die (DW_TAG_member, context_die, decl);
24312 add_name_and_src_coords_attributes (decl_die, decl);
24313 add_type_attribute (decl_die, member_declared_type (decl), decl_quals (decl),
24314 TYPE_REVERSE_STORAGE_ORDER (DECL_FIELD_CONTEXT (decl)),
24315 context_die);
24317 if (DECL_BIT_FIELD_TYPE (decl))
24319 add_byte_size_attribute (decl_die, decl);
24320 add_bit_size_attribute (decl_die, decl);
24321 add_bit_offset_attribute (decl_die, decl, ctx);
24324 add_alignment_attribute (decl_die, decl);
24326 /* If we have a variant part offset, then we are supposed to process a member
24327 of a QUAL_UNION_TYPE, which is how we represent variant parts in
24328 trees. */
24329 gcc_assert (ctx->variant_part_offset == NULL_TREE
24330 || TREE_CODE (DECL_FIELD_CONTEXT (decl)) != QUAL_UNION_TYPE);
24331 if (TREE_CODE (DECL_FIELD_CONTEXT (decl)) != UNION_TYPE)
24332 add_data_member_location_attribute (decl_die, decl, ctx);
24334 if (DECL_ARTIFICIAL (decl))
24335 add_AT_flag (decl_die, DW_AT_artificial, 1);
24337 add_accessibility_attribute (decl_die, decl);
24339 /* Equate decl number to die, so that we can look up this decl later on. */
24340 equate_decl_number_to_die (decl, decl_die);
24343 /* Generate a DIE for a pointer to a member type. TYPE can be an
24344 OFFSET_TYPE, for a pointer to data member, or a RECORD_TYPE, for a
24345 pointer to member function. */
24347 static void
24348 gen_ptr_to_mbr_type_die (tree type, dw_die_ref context_die)
24350 if (lookup_type_die (type))
24351 return;
24353 dw_die_ref ptr_die = new_die (DW_TAG_ptr_to_member_type,
24354 scope_die_for (type, context_die), type);
24356 equate_type_number_to_die (type, ptr_die);
24357 add_AT_die_ref (ptr_die, DW_AT_containing_type,
24358 lookup_type_die (TYPE_OFFSET_BASETYPE (type)));
24359 add_type_attribute (ptr_die, TREE_TYPE (type), TYPE_UNQUALIFIED, false,
24360 context_die);
24361 add_alignment_attribute (ptr_die, type);
24363 if (TREE_CODE (TREE_TYPE (type)) != FUNCTION_TYPE
24364 && TREE_CODE (TREE_TYPE (type)) != METHOD_TYPE)
24366 dw_loc_descr_ref op = new_loc_descr (DW_OP_plus, 0, 0);
24367 add_AT_loc (ptr_die, DW_AT_use_location, op);
24371 static char *producer_string;
24373 /* Return a heap allocated producer string including command line options
24374 if -grecord-gcc-switches. */
24376 static char *
24377 gen_producer_string (void)
24379 size_t j;
24380 auto_vec<const char *> switches;
24381 const char *language_string = lang_hooks.name;
24382 char *producer, *tail;
24383 const char *p;
24384 size_t len = dwarf_record_gcc_switches ? 0 : 3;
24385 size_t plen = strlen (language_string) + 1 + strlen (version_string);
24387 for (j = 1; dwarf_record_gcc_switches && j < save_decoded_options_count; j++)
24388 switch (save_decoded_options[j].opt_index)
24390 case OPT_o:
24391 case OPT_d:
24392 case OPT_dumpbase:
24393 case OPT_dumpdir:
24394 case OPT_auxbase:
24395 case OPT_auxbase_strip:
24396 case OPT_quiet:
24397 case OPT_version:
24398 case OPT_v:
24399 case OPT_w:
24400 case OPT_L:
24401 case OPT_D:
24402 case OPT_I:
24403 case OPT_U:
24404 case OPT_SPECIAL_unknown:
24405 case OPT_SPECIAL_ignore:
24406 case OPT_SPECIAL_deprecated:
24407 case OPT_SPECIAL_program_name:
24408 case OPT_SPECIAL_input_file:
24409 case OPT_grecord_gcc_switches:
24410 case OPT__output_pch_:
24411 case OPT_fdiagnostics_show_location_:
24412 case OPT_fdiagnostics_show_option:
24413 case OPT_fdiagnostics_show_caret:
24414 case OPT_fdiagnostics_show_labels:
24415 case OPT_fdiagnostics_show_line_numbers:
24416 case OPT_fdiagnostics_color_:
24417 case OPT_fdiagnostics_format_:
24418 case OPT_fverbose_asm:
24419 case OPT____:
24420 case OPT__sysroot_:
24421 case OPT_nostdinc:
24422 case OPT_nostdinc__:
24423 case OPT_fpreprocessed:
24424 case OPT_fltrans_output_list_:
24425 case OPT_fresolution_:
24426 case OPT_fdebug_prefix_map_:
24427 case OPT_fmacro_prefix_map_:
24428 case OPT_ffile_prefix_map_:
24429 case OPT_fcompare_debug:
24430 case OPT_fchecking:
24431 case OPT_fchecking_:
24432 /* Ignore these. */
24433 continue;
24434 default:
24435 if (cl_options[save_decoded_options[j].opt_index].flags
24436 & CL_NO_DWARF_RECORD)
24437 continue;
24438 gcc_checking_assert (save_decoded_options[j].canonical_option[0][0]
24439 == '-');
24440 switch (save_decoded_options[j].canonical_option[0][1])
24442 case 'M':
24443 case 'i':
24444 case 'W':
24445 continue;
24446 case 'f':
24447 if (strncmp (save_decoded_options[j].canonical_option[0] + 2,
24448 "dump", 4) == 0)
24449 continue;
24450 break;
24451 default:
24452 break;
24454 switches.safe_push (save_decoded_options[j].orig_option_with_args_text);
24455 len += strlen (save_decoded_options[j].orig_option_with_args_text) + 1;
24456 break;
24459 producer = XNEWVEC (char, plen + 1 + len + 1);
24460 tail = producer;
24461 sprintf (tail, "%s %s", language_string, version_string);
24462 tail += plen;
24464 FOR_EACH_VEC_ELT (switches, j, p)
24466 len = strlen (p);
24467 *tail = ' ';
24468 memcpy (tail + 1, p, len);
24469 tail += len + 1;
24472 *tail = '\0';
24473 return producer;
24476 /* Given a C and/or C++ language/version string return the "highest".
24477 C++ is assumed to be "higher" than C in this case. Used for merging
24478 LTO translation unit languages. */
24479 static const char *
24480 highest_c_language (const char *lang1, const char *lang2)
24482 if (strcmp ("GNU C++17", lang1) == 0 || strcmp ("GNU C++17", lang2) == 0)
24483 return "GNU C++17";
24484 if (strcmp ("GNU C++14", lang1) == 0 || strcmp ("GNU C++14", lang2) == 0)
24485 return "GNU C++14";
24486 if (strcmp ("GNU C++11", lang1) == 0 || strcmp ("GNU C++11", lang2) == 0)
24487 return "GNU C++11";
24488 if (strcmp ("GNU C++98", lang1) == 0 || strcmp ("GNU C++98", lang2) == 0)
24489 return "GNU C++98";
24491 if (strcmp ("GNU C2X", lang1) == 0 || strcmp ("GNU C2X", lang2) == 0)
24492 return "GNU C2X";
24493 if (strcmp ("GNU C17", lang1) == 0 || strcmp ("GNU C17", lang2) == 0)
24494 return "GNU C17";
24495 if (strcmp ("GNU C11", lang1) == 0 || strcmp ("GNU C11", lang2) == 0)
24496 return "GNU C11";
24497 if (strcmp ("GNU C99", lang1) == 0 || strcmp ("GNU C99", lang2) == 0)
24498 return "GNU C99";
24499 if (strcmp ("GNU C89", lang1) == 0 || strcmp ("GNU C89", lang2) == 0)
24500 return "GNU C89";
24502 gcc_unreachable ();
24506 /* Generate the DIE for the compilation unit. */
24508 static dw_die_ref
24509 gen_compile_unit_die (const char *filename)
24511 dw_die_ref die;
24512 const char *language_string = lang_hooks.name;
24513 int language;
24515 die = new_die (DW_TAG_compile_unit, NULL, NULL);
24517 if (filename)
24519 add_name_attribute (die, filename);
24520 /* Don't add cwd for <built-in>. */
24521 if (filename[0] != '<')
24522 add_comp_dir_attribute (die);
24525 add_AT_string (die, DW_AT_producer, producer_string ? producer_string : "");
24527 /* If our producer is LTO try to figure out a common language to use
24528 from the global list of translation units. */
24529 if (strcmp (language_string, "GNU GIMPLE") == 0)
24531 unsigned i;
24532 tree t;
24533 const char *common_lang = NULL;
24535 FOR_EACH_VEC_SAFE_ELT (all_translation_units, i, t)
24537 if (!TRANSLATION_UNIT_LANGUAGE (t))
24538 continue;
24539 if (!common_lang)
24540 common_lang = TRANSLATION_UNIT_LANGUAGE (t);
24541 else if (strcmp (common_lang, TRANSLATION_UNIT_LANGUAGE (t)) == 0)
24543 else if (strncmp (common_lang, "GNU C", 5) == 0
24544 && strncmp (TRANSLATION_UNIT_LANGUAGE (t), "GNU C", 5) == 0)
24545 /* Mixing C and C++ is ok, use C++ in that case. */
24546 common_lang = highest_c_language (common_lang,
24547 TRANSLATION_UNIT_LANGUAGE (t));
24548 else
24550 /* Fall back to C. */
24551 common_lang = NULL;
24552 break;
24556 if (common_lang)
24557 language_string = common_lang;
24560 language = DW_LANG_C;
24561 if (strncmp (language_string, "GNU C", 5) == 0
24562 && ISDIGIT (language_string[5]))
24564 language = DW_LANG_C89;
24565 if (dwarf_version >= 3 || !dwarf_strict)
24567 if (strcmp (language_string, "GNU C89") != 0)
24568 language = DW_LANG_C99;
24570 if (dwarf_version >= 5 /* || !dwarf_strict */)
24571 if (strcmp (language_string, "GNU C11") == 0
24572 || strcmp (language_string, "GNU C17") == 0
24573 || strcmp (language_string, "GNU C2X"))
24574 language = DW_LANG_C11;
24577 else if (strncmp (language_string, "GNU C++", 7) == 0)
24579 language = DW_LANG_C_plus_plus;
24580 if (dwarf_version >= 5 /* || !dwarf_strict */)
24582 if (strcmp (language_string, "GNU C++11") == 0)
24583 language = DW_LANG_C_plus_plus_11;
24584 else if (strcmp (language_string, "GNU C++14") == 0)
24585 language = DW_LANG_C_plus_plus_14;
24586 else if (strcmp (language_string, "GNU C++17") == 0)
24587 /* For now. */
24588 language = DW_LANG_C_plus_plus_14;
24591 else if (strcmp (language_string, "GNU F77") == 0)
24592 language = DW_LANG_Fortran77;
24593 else if (dwarf_version >= 3 || !dwarf_strict)
24595 if (strcmp (language_string, "GNU Ada") == 0)
24596 language = DW_LANG_Ada95;
24597 else if (strncmp (language_string, "GNU Fortran", 11) == 0)
24599 language = DW_LANG_Fortran95;
24600 if (dwarf_version >= 5 /* || !dwarf_strict */)
24602 if (strcmp (language_string, "GNU Fortran2003") == 0)
24603 language = DW_LANG_Fortran03;
24604 else if (strcmp (language_string, "GNU Fortran2008") == 0)
24605 language = DW_LANG_Fortran08;
24608 else if (strcmp (language_string, "GNU Objective-C") == 0)
24609 language = DW_LANG_ObjC;
24610 else if (strcmp (language_string, "GNU Objective-C++") == 0)
24611 language = DW_LANG_ObjC_plus_plus;
24612 else if (strcmp (language_string, "GNU D") == 0)
24613 language = DW_LANG_D;
24614 else if (dwarf_version >= 5 || !dwarf_strict)
24616 if (strcmp (language_string, "GNU Go") == 0)
24617 language = DW_LANG_Go;
24620 /* Use a degraded Fortran setting in strict DWARF2 so is_fortran works. */
24621 else if (strncmp (language_string, "GNU Fortran", 11) == 0)
24622 language = DW_LANG_Fortran90;
24623 /* Likewise for Ada. */
24624 else if (strcmp (language_string, "GNU Ada") == 0)
24625 language = DW_LANG_Ada83;
24627 add_AT_unsigned (die, DW_AT_language, language);
24629 switch (language)
24631 case DW_LANG_Fortran77:
24632 case DW_LANG_Fortran90:
24633 case DW_LANG_Fortran95:
24634 case DW_LANG_Fortran03:
24635 case DW_LANG_Fortran08:
24636 /* Fortran has case insensitive identifiers and the front-end
24637 lowercases everything. */
24638 add_AT_unsigned (die, DW_AT_identifier_case, DW_ID_down_case);
24639 break;
24640 default:
24641 /* The default DW_ID_case_sensitive doesn't need to be specified. */
24642 break;
24644 return die;
24647 /* Generate the DIE for a base class. */
24649 static void
24650 gen_inheritance_die (tree binfo, tree access, tree type,
24651 dw_die_ref context_die)
24653 dw_die_ref die = new_die (DW_TAG_inheritance, context_die, binfo);
24654 struct vlr_context ctx = { type, NULL };
24656 add_type_attribute (die, BINFO_TYPE (binfo), TYPE_UNQUALIFIED, false,
24657 context_die);
24658 add_data_member_location_attribute (die, binfo, &ctx);
24660 if (BINFO_VIRTUAL_P (binfo))
24661 add_AT_unsigned (die, DW_AT_virtuality, DW_VIRTUALITY_virtual);
24663 /* In DWARF3+ the default is DW_ACCESS_private only in DW_TAG_class_type
24664 children, otherwise the default is DW_ACCESS_public. In DWARF2
24665 the default has always been DW_ACCESS_private. */
24666 if (access == access_public_node)
24668 if (dwarf_version == 2
24669 || context_die->die_tag == DW_TAG_class_type)
24670 add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_public);
24672 else if (access == access_protected_node)
24673 add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_protected);
24674 else if (dwarf_version > 2
24675 && context_die->die_tag != DW_TAG_class_type)
24676 add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_private);
24679 /* Return whether DECL is a FIELD_DECL that represents the variant part of a
24680 structure. */
24682 static bool
24683 is_variant_part (tree decl)
24685 return (TREE_CODE (decl) == FIELD_DECL
24686 && TREE_CODE (TREE_TYPE (decl)) == QUAL_UNION_TYPE);
24689 /* Check that OPERAND is a reference to a field in STRUCT_TYPE. If it is,
24690 return the FIELD_DECL. Return NULL_TREE otherwise. */
24692 static tree
24693 analyze_discr_in_predicate (tree operand, tree struct_type)
24695 while (CONVERT_EXPR_P (operand))
24696 operand = TREE_OPERAND (operand, 0);
24698 /* Match field access to members of struct_type only. */
24699 if (TREE_CODE (operand) == COMPONENT_REF
24700 && TREE_CODE (TREE_OPERAND (operand, 0)) == PLACEHOLDER_EXPR
24701 && TREE_TYPE (TREE_OPERAND (operand, 0)) == struct_type
24702 && TREE_CODE (TREE_OPERAND (operand, 1)) == FIELD_DECL)
24703 return TREE_OPERAND (operand, 1);
24704 else
24705 return NULL_TREE;
24708 /* Check that SRC is a constant integer that can be represented as a native
24709 integer constant (either signed or unsigned). If so, store it into DEST and
24710 return true. Return false otherwise. */
24712 static bool
24713 get_discr_value (tree src, dw_discr_value *dest)
24715 tree discr_type = TREE_TYPE (src);
24717 if (lang_hooks.types.get_debug_type)
24719 tree debug_type = lang_hooks.types.get_debug_type (discr_type);
24720 if (debug_type != NULL)
24721 discr_type = debug_type;
24724 if (TREE_CODE (src) != INTEGER_CST || !INTEGRAL_TYPE_P (discr_type))
24725 return false;
24727 /* Signedness can vary between the original type and the debug type. This
24728 can happen for character types in Ada for instance: the character type
24729 used for code generation can be signed, to be compatible with the C one,
24730 but from a debugger point of view, it must be unsigned. */
24731 bool is_orig_unsigned = TYPE_UNSIGNED (TREE_TYPE (src));
24732 bool is_debug_unsigned = TYPE_UNSIGNED (discr_type);
24734 if (is_orig_unsigned != is_debug_unsigned)
24735 src = fold_convert (discr_type, src);
24737 if (!(is_debug_unsigned ? tree_fits_uhwi_p (src) : tree_fits_shwi_p (src)))
24738 return false;
24740 dest->pos = is_debug_unsigned;
24741 if (is_debug_unsigned)
24742 dest->v.uval = tree_to_uhwi (src);
24743 else
24744 dest->v.sval = tree_to_shwi (src);
24746 return true;
24749 /* Try to extract synthetic properties out of VARIANT_PART_DECL, which is a
24750 FIELD_DECL in STRUCT_TYPE that represents a variant part. If unsuccessful,
24751 store NULL_TREE in DISCR_DECL. Otherwise:
24753 - store the discriminant field in STRUCT_TYPE that controls the variant
24754 part to *DISCR_DECL
24756 - put in *DISCR_LISTS_P an array where for each variant, the item
24757 represents the corresponding matching list of discriminant values.
24759 - put in *DISCR_LISTS_LENGTH the number of variants, which is the size of
24760 the above array.
24762 Note that when the array is allocated (i.e. when the analysis is
24763 successful), it is up to the caller to free the array. */
24765 static void
24766 analyze_variants_discr (tree variant_part_decl,
24767 tree struct_type,
24768 tree *discr_decl,
24769 dw_discr_list_ref **discr_lists_p,
24770 unsigned *discr_lists_length)
24772 tree variant_part_type = TREE_TYPE (variant_part_decl);
24773 tree variant;
24774 dw_discr_list_ref *discr_lists;
24775 unsigned i;
24777 /* Compute how many variants there are in this variant part. */
24778 *discr_lists_length = 0;
24779 for (variant = TYPE_FIELDS (variant_part_type);
24780 variant != NULL_TREE;
24781 variant = DECL_CHAIN (variant))
24782 ++*discr_lists_length;
24784 *discr_decl = NULL_TREE;
24785 *discr_lists_p
24786 = (dw_discr_list_ref *) xcalloc (*discr_lists_length,
24787 sizeof (**discr_lists_p));
24788 discr_lists = *discr_lists_p;
24790 /* And then analyze all variants to extract discriminant information for all
24791 of them. This analysis is conservative: as soon as we detect something we
24792 do not support, abort everything and pretend we found nothing. */
24793 for (variant = TYPE_FIELDS (variant_part_type), i = 0;
24794 variant != NULL_TREE;
24795 variant = DECL_CHAIN (variant), ++i)
24797 tree match_expr = DECL_QUALIFIER (variant);
24799 /* Now, try to analyze the predicate and deduce a discriminant for
24800 it. */
24801 if (match_expr == boolean_true_node)
24802 /* Typically happens for the default variant: it matches all cases that
24803 previous variants rejected. Don't output any matching value for
24804 this one. */
24805 continue;
24807 /* The following loop tries to iterate over each discriminant
24808 possibility: single values or ranges. */
24809 while (match_expr != NULL_TREE)
24811 tree next_round_match_expr;
24812 tree candidate_discr = NULL_TREE;
24813 dw_discr_list_ref new_node = NULL;
24815 /* Possibilities are matched one after the other by nested
24816 TRUTH_ORIF_EXPR expressions. Process the current possibility and
24817 continue with the rest at next iteration. */
24818 if (TREE_CODE (match_expr) == TRUTH_ORIF_EXPR)
24820 next_round_match_expr = TREE_OPERAND (match_expr, 0);
24821 match_expr = TREE_OPERAND (match_expr, 1);
24823 else
24824 next_round_match_expr = NULL_TREE;
24826 if (match_expr == boolean_false_node)
24827 /* This sub-expression matches nothing: just wait for the next
24828 one. */
24831 else if (TREE_CODE (match_expr) == EQ_EXPR)
24833 /* We are matching: <discr_field> == <integer_cst>
24834 This sub-expression matches a single value. */
24835 tree integer_cst = TREE_OPERAND (match_expr, 1);
24837 candidate_discr
24838 = analyze_discr_in_predicate (TREE_OPERAND (match_expr, 0),
24839 struct_type);
24841 new_node = ggc_cleared_alloc<dw_discr_list_node> ();
24842 if (!get_discr_value (integer_cst,
24843 &new_node->dw_discr_lower_bound))
24844 goto abort;
24845 new_node->dw_discr_range = false;
24848 else if (TREE_CODE (match_expr) == TRUTH_ANDIF_EXPR)
24850 /* We are matching:
24851 <discr_field> > <integer_cst>
24852 && <discr_field> < <integer_cst>.
24853 This sub-expression matches the range of values between the
24854 two matched integer constants. Note that comparisons can be
24855 inclusive or exclusive. */
24856 tree candidate_discr_1, candidate_discr_2;
24857 tree lower_cst, upper_cst;
24858 bool lower_cst_included, upper_cst_included;
24859 tree lower_op = TREE_OPERAND (match_expr, 0);
24860 tree upper_op = TREE_OPERAND (match_expr, 1);
24862 /* When the comparison is exclusive, the integer constant is not
24863 the discriminant range bound we are looking for: we will have
24864 to increment or decrement it. */
24865 if (TREE_CODE (lower_op) == GE_EXPR)
24866 lower_cst_included = true;
24867 else if (TREE_CODE (lower_op) == GT_EXPR)
24868 lower_cst_included = false;
24869 else
24870 goto abort;
24872 if (TREE_CODE (upper_op) == LE_EXPR)
24873 upper_cst_included = true;
24874 else if (TREE_CODE (upper_op) == LT_EXPR)
24875 upper_cst_included = false;
24876 else
24877 goto abort;
24879 /* Extract the discriminant from the first operand and check it
24880 is consistant with the same analysis in the second
24881 operand. */
24882 candidate_discr_1
24883 = analyze_discr_in_predicate (TREE_OPERAND (lower_op, 0),
24884 struct_type);
24885 candidate_discr_2
24886 = analyze_discr_in_predicate (TREE_OPERAND (upper_op, 0),
24887 struct_type);
24888 if (candidate_discr_1 == candidate_discr_2)
24889 candidate_discr = candidate_discr_1;
24890 else
24891 goto abort;
24893 /* Extract bounds from both. */
24894 new_node = ggc_cleared_alloc<dw_discr_list_node> ();
24895 lower_cst = TREE_OPERAND (lower_op, 1);
24896 upper_cst = TREE_OPERAND (upper_op, 1);
24898 if (!lower_cst_included)
24899 lower_cst
24900 = fold_build2 (PLUS_EXPR, TREE_TYPE (lower_cst), lower_cst,
24901 build_int_cst (TREE_TYPE (lower_cst), 1));
24902 if (!upper_cst_included)
24903 upper_cst
24904 = fold_build2 (MINUS_EXPR, TREE_TYPE (upper_cst), upper_cst,
24905 build_int_cst (TREE_TYPE (upper_cst), 1));
24907 if (!get_discr_value (lower_cst,
24908 &new_node->dw_discr_lower_bound)
24909 || !get_discr_value (upper_cst,
24910 &new_node->dw_discr_upper_bound))
24911 goto abort;
24913 new_node->dw_discr_range = true;
24916 else if ((candidate_discr
24917 = analyze_discr_in_predicate (match_expr, struct_type))
24918 && TREE_TYPE (candidate_discr) == boolean_type_node)
24920 /* We are matching: <discr_field> for a boolean discriminant.
24921 This sub-expression matches boolean_true_node. */
24922 new_node = ggc_cleared_alloc<dw_discr_list_node> ();
24923 if (!get_discr_value (boolean_true_node,
24924 &new_node->dw_discr_lower_bound))
24925 goto abort;
24926 new_node->dw_discr_range = false;
24929 else
24930 /* Unsupported sub-expression: we cannot determine the set of
24931 matching discriminant values. Abort everything. */
24932 goto abort;
24934 /* If the discriminant info is not consistant with what we saw so
24935 far, consider the analysis failed and abort everything. */
24936 if (candidate_discr == NULL_TREE
24937 || (*discr_decl != NULL_TREE && candidate_discr != *discr_decl))
24938 goto abort;
24939 else
24940 *discr_decl = candidate_discr;
24942 if (new_node != NULL)
24944 new_node->dw_discr_next = discr_lists[i];
24945 discr_lists[i] = new_node;
24947 match_expr = next_round_match_expr;
24951 /* If we reach this point, we could match everything we were interested
24952 in. */
24953 return;
24955 abort:
24956 /* Clean all data structure and return no result. */
24957 free (*discr_lists_p);
24958 *discr_lists_p = NULL;
24959 *discr_decl = NULL_TREE;
24962 /* Generate a DIE to represent VARIANT_PART_DECL, a variant part that is part
24963 of STRUCT_TYPE, a record type. This new DIE is emitted as the next child
24964 under CONTEXT_DIE.
24966 Variant parts are supposed to be implemented as a FIELD_DECL whose type is a
24967 QUAL_UNION_TYPE: this is the VARIANT_PART_DECL parameter. The members for
24968 this type, which are record types, represent the available variants and each
24969 has a DECL_QUALIFIER attribute. The discriminant and the discriminant
24970 values are inferred from these attributes.
24972 In trees, the offsets for the fields inside these sub-records are relative
24973 to the variant part itself, whereas the corresponding DIEs should have
24974 offset attributes that are relative to the embedding record base address.
24975 This is why the caller must provide a VARIANT_PART_OFFSET expression: it
24976 must be an expression that computes the offset of the variant part to
24977 describe in DWARF. */
24979 static void
24980 gen_variant_part (tree variant_part_decl, struct vlr_context *vlr_ctx,
24981 dw_die_ref context_die)
24983 const tree variant_part_type = TREE_TYPE (variant_part_decl);
24984 tree variant_part_offset = vlr_ctx->variant_part_offset;
24985 struct loc_descr_context ctx = {
24986 vlr_ctx->struct_type, /* context_type */
24987 NULL_TREE, /* base_decl */
24988 NULL, /* dpi */
24989 false, /* placeholder_arg */
24990 false /* placeholder_seen */
24993 /* The FIELD_DECL node in STRUCT_TYPE that acts as the discriminant, or
24994 NULL_TREE if there is no such field. */
24995 tree discr_decl = NULL_TREE;
24996 dw_discr_list_ref *discr_lists;
24997 unsigned discr_lists_length = 0;
24998 unsigned i;
25000 dw_die_ref dwarf_proc_die = NULL;
25001 dw_die_ref variant_part_die
25002 = new_die (DW_TAG_variant_part, context_die, variant_part_type);
25004 equate_decl_number_to_die (variant_part_decl, variant_part_die);
25006 analyze_variants_discr (variant_part_decl, vlr_ctx->struct_type,
25007 &discr_decl, &discr_lists, &discr_lists_length);
25009 if (discr_decl != NULL_TREE)
25011 dw_die_ref discr_die = lookup_decl_die (discr_decl);
25013 if (discr_die)
25014 add_AT_die_ref (variant_part_die, DW_AT_discr, discr_die);
25015 else
25016 /* We have no DIE for the discriminant, so just discard all
25017 discrimimant information in the output. */
25018 discr_decl = NULL_TREE;
25021 /* If the offset for this variant part is more complex than a constant,
25022 create a DWARF procedure for it so that we will not have to generate DWARF
25023 expressions for it for each member. */
25024 if (TREE_CODE (variant_part_offset) != INTEGER_CST
25025 && (dwarf_version >= 3 || !dwarf_strict))
25027 const tree dwarf_proc_fndecl
25028 = build_decl (UNKNOWN_LOCATION, FUNCTION_DECL, NULL_TREE,
25029 build_function_type (TREE_TYPE (variant_part_offset),
25030 NULL_TREE));
25031 const tree dwarf_proc_call = build_call_expr (dwarf_proc_fndecl, 0);
25032 const dw_loc_descr_ref dwarf_proc_body
25033 = loc_descriptor_from_tree (variant_part_offset, 0, &ctx);
25035 dwarf_proc_die = new_dwarf_proc_die (dwarf_proc_body,
25036 dwarf_proc_fndecl, context_die);
25037 if (dwarf_proc_die != NULL)
25038 variant_part_offset = dwarf_proc_call;
25041 /* Output DIEs for all variants. */
25042 i = 0;
25043 for (tree variant = TYPE_FIELDS (variant_part_type);
25044 variant != NULL_TREE;
25045 variant = DECL_CHAIN (variant), ++i)
25047 tree variant_type = TREE_TYPE (variant);
25048 dw_die_ref variant_die;
25050 /* All variants (i.e. members of a variant part) are supposed to be
25051 encoded as structures. Sub-variant parts are QUAL_UNION_TYPE fields
25052 under these records. */
25053 gcc_assert (TREE_CODE (variant_type) == RECORD_TYPE);
25055 variant_die = new_die (DW_TAG_variant, variant_part_die, variant_type);
25056 equate_decl_number_to_die (variant, variant_die);
25058 /* Output discriminant values this variant matches, if any. */
25059 if (discr_decl == NULL || discr_lists[i] == NULL)
25060 /* In the case we have discriminant information at all, this is
25061 probably the default variant: as the standard says, don't
25062 output any discriminant value/list attribute. */
25064 else if (discr_lists[i]->dw_discr_next == NULL
25065 && !discr_lists[i]->dw_discr_range)
25066 /* If there is only one accepted value, don't bother outputting a
25067 list. */
25068 add_discr_value (variant_die, &discr_lists[i]->dw_discr_lower_bound);
25069 else
25070 add_discr_list (variant_die, discr_lists[i]);
25072 for (tree member = TYPE_FIELDS (variant_type);
25073 member != NULL_TREE;
25074 member = DECL_CHAIN (member))
25076 struct vlr_context vlr_sub_ctx = {
25077 vlr_ctx->struct_type, /* struct_type */
25078 NULL /* variant_part_offset */
25080 if (is_variant_part (member))
25082 /* All offsets for fields inside variant parts are relative to
25083 the top-level embedding RECORD_TYPE's base address. On the
25084 other hand, offsets in GCC's types are relative to the
25085 nested-most variant part. So we have to sum offsets each time
25086 we recurse. */
25088 vlr_sub_ctx.variant_part_offset
25089 = fold_build2 (PLUS_EXPR, TREE_TYPE (variant_part_offset),
25090 variant_part_offset, byte_position (member));
25091 gen_variant_part (member, &vlr_sub_ctx, variant_die);
25093 else
25095 vlr_sub_ctx.variant_part_offset = variant_part_offset;
25096 gen_decl_die (member, NULL, &vlr_sub_ctx, variant_die);
25101 free (discr_lists);
25104 /* Generate a DIE for a class member. */
25106 static void
25107 gen_member_die (tree type, dw_die_ref context_die)
25109 tree member;
25110 tree binfo = TYPE_BINFO (type);
25112 gcc_assert (TYPE_MAIN_VARIANT (type) == type);
25114 /* If this is not an incomplete type, output descriptions of each of its
25115 members. Note that as we output the DIEs necessary to represent the
25116 members of this record or union type, we will also be trying to output
25117 DIEs to represent the *types* of those members. However the `type'
25118 function (above) will specifically avoid generating type DIEs for member
25119 types *within* the list of member DIEs for this (containing) type except
25120 for those types (of members) which are explicitly marked as also being
25121 members of this (containing) type themselves. The g++ front- end can
25122 force any given type to be treated as a member of some other (containing)
25123 type by setting the TYPE_CONTEXT of the given (member) type to point to
25124 the TREE node representing the appropriate (containing) type. */
25126 /* First output info about the base classes. */
25127 if (binfo && early_dwarf)
25129 vec<tree, va_gc> *accesses = BINFO_BASE_ACCESSES (binfo);
25130 int i;
25131 tree base;
25133 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base); i++)
25134 gen_inheritance_die (base,
25135 (accesses ? (*accesses)[i] : access_public_node),
25136 type,
25137 context_die);
25140 /* Now output info about the data members and type members. */
25141 for (member = TYPE_FIELDS (type); member; member = DECL_CHAIN (member))
25143 struct vlr_context vlr_ctx = { type, NULL_TREE };
25144 bool static_inline_p
25145 = (TREE_STATIC (member)
25146 && (lang_hooks.decls.decl_dwarf_attribute (member, DW_AT_inline)
25147 != -1));
25149 /* Ignore clones. */
25150 if (DECL_ABSTRACT_ORIGIN (member))
25151 continue;
25153 /* If we thought we were generating minimal debug info for TYPE
25154 and then changed our minds, some of the member declarations
25155 may have already been defined. Don't define them again, but
25156 do put them in the right order. */
25158 if (dw_die_ref child = lookup_decl_die (member))
25160 /* Handle inline static data members, which only have in-class
25161 declarations. */
25162 dw_die_ref ref = NULL;
25163 if (child->die_tag == DW_TAG_variable
25164 && child->die_parent == comp_unit_die ())
25166 ref = get_AT_ref (child, DW_AT_specification);
25167 /* For C++17 inline static data members followed by redundant
25168 out of class redeclaration, we might get here with
25169 child being the DIE created for the out of class
25170 redeclaration and with its DW_AT_specification being
25171 the DIE created for in-class definition. We want to
25172 reparent the latter, and don't want to create another
25173 DIE with DW_AT_specification in that case, because
25174 we already have one. */
25175 if (ref
25176 && static_inline_p
25177 && ref->die_tag == DW_TAG_variable
25178 && ref->die_parent == comp_unit_die ()
25179 && get_AT (ref, DW_AT_specification) == NULL)
25181 child = ref;
25182 ref = NULL;
25183 static_inline_p = false;
25187 if (child->die_tag == DW_TAG_variable
25188 && child->die_parent == comp_unit_die ()
25189 && ref == NULL)
25191 reparent_child (child, context_die);
25192 if (dwarf_version < 5)
25193 child->die_tag = DW_TAG_member;
25195 else
25196 splice_child_die (context_die, child);
25199 /* Do not generate standard DWARF for variant parts if we are generating
25200 the corresponding GNAT encodings: DIEs generated for both would
25201 conflict in our mappings. */
25202 else if (is_variant_part (member)
25203 && gnat_encodings == DWARF_GNAT_ENCODINGS_MINIMAL)
25205 vlr_ctx.variant_part_offset = byte_position (member);
25206 gen_variant_part (member, &vlr_ctx, context_die);
25208 else
25210 vlr_ctx.variant_part_offset = NULL_TREE;
25211 gen_decl_die (member, NULL, &vlr_ctx, context_die);
25214 /* For C++ inline static data members emit immediately a DW_TAG_variable
25215 DIE that will refer to that DW_TAG_member/DW_TAG_variable through
25216 DW_AT_specification. */
25217 if (static_inline_p)
25219 int old_extern = DECL_EXTERNAL (member);
25220 DECL_EXTERNAL (member) = 0;
25221 gen_decl_die (member, NULL, NULL, comp_unit_die ());
25222 DECL_EXTERNAL (member) = old_extern;
25227 /* Generate a DIE for a structure or union type. If TYPE_DECL_SUPPRESS_DEBUG
25228 is set, we pretend that the type was never defined, so we only get the
25229 member DIEs needed by later specification DIEs. */
25231 static void
25232 gen_struct_or_union_type_die (tree type, dw_die_ref context_die,
25233 enum debug_info_usage usage)
25235 if (TREE_ASM_WRITTEN (type))
25237 /* Fill in the bound of variable-length fields in late dwarf if
25238 still incomplete. */
25239 if (!early_dwarf && variably_modified_type_p (type, NULL))
25240 for (tree member = TYPE_FIELDS (type);
25241 member;
25242 member = DECL_CHAIN (member))
25243 fill_variable_array_bounds (TREE_TYPE (member));
25244 return;
25247 dw_die_ref type_die = lookup_type_die (type);
25248 dw_die_ref scope_die = 0;
25249 int nested = 0;
25250 int complete = (TYPE_SIZE (type)
25251 && (! TYPE_STUB_DECL (type)
25252 || ! TYPE_DECL_SUPPRESS_DEBUG (TYPE_STUB_DECL (type))));
25253 int ns_decl = (context_die && context_die->die_tag == DW_TAG_namespace);
25254 complete = complete && should_emit_struct_debug (type, usage);
25256 if (type_die && ! complete)
25257 return;
25259 if (TYPE_CONTEXT (type) != NULL_TREE
25260 && (AGGREGATE_TYPE_P (TYPE_CONTEXT (type))
25261 || TREE_CODE (TYPE_CONTEXT (type)) == NAMESPACE_DECL))
25262 nested = 1;
25264 scope_die = scope_die_for (type, context_die);
25266 /* Generate child dies for template paramaters. */
25267 if (!type_die && debug_info_level > DINFO_LEVEL_TERSE)
25268 schedule_generic_params_dies_gen (type);
25270 if (! type_die || (nested && is_cu_die (scope_die)))
25271 /* First occurrence of type or toplevel definition of nested class. */
25273 dw_die_ref old_die = type_die;
25275 type_die = new_die (TREE_CODE (type) == RECORD_TYPE
25276 ? record_type_tag (type) : DW_TAG_union_type,
25277 scope_die, type);
25278 equate_type_number_to_die (type, type_die);
25279 if (old_die)
25280 add_AT_specification (type_die, old_die);
25281 else
25282 add_name_attribute (type_die, type_tag (type));
25284 else
25285 remove_AT (type_die, DW_AT_declaration);
25287 /* If this type has been completed, then give it a byte_size attribute and
25288 then give a list of members. */
25289 if (complete && !ns_decl)
25291 /* Prevent infinite recursion in cases where the type of some member of
25292 this type is expressed in terms of this type itself. */
25293 TREE_ASM_WRITTEN (type) = 1;
25294 add_byte_size_attribute (type_die, type);
25295 add_alignment_attribute (type_die, type);
25296 if (TYPE_STUB_DECL (type) != NULL_TREE)
25298 add_src_coords_attributes (type_die, TYPE_STUB_DECL (type));
25299 add_accessibility_attribute (type_die, TYPE_STUB_DECL (type));
25302 /* If the first reference to this type was as the return type of an
25303 inline function, then it may not have a parent. Fix this now. */
25304 if (type_die->die_parent == NULL)
25305 add_child_die (scope_die, type_die);
25307 gen_member_die (type, type_die);
25309 add_gnat_descriptive_type_attribute (type_die, type, context_die);
25310 if (TYPE_ARTIFICIAL (type))
25311 add_AT_flag (type_die, DW_AT_artificial, 1);
25313 /* GNU extension: Record what type our vtable lives in. */
25314 if (TYPE_VFIELD (type))
25316 tree vtype = DECL_FCONTEXT (TYPE_VFIELD (type));
25318 gen_type_die (vtype, context_die);
25319 add_AT_die_ref (type_die, DW_AT_containing_type,
25320 lookup_type_die (vtype));
25323 else
25325 add_AT_flag (type_die, DW_AT_declaration, 1);
25327 /* We don't need to do this for function-local types. */
25328 if (TYPE_STUB_DECL (type)
25329 && ! decl_function_context (TYPE_STUB_DECL (type)))
25330 vec_safe_push (incomplete_types, type);
25333 if (get_AT (type_die, DW_AT_name))
25334 add_pubtype (type, type_die);
25337 /* Generate a DIE for a subroutine _type_. */
25339 static void
25340 gen_subroutine_type_die (tree type, dw_die_ref context_die)
25342 tree return_type = TREE_TYPE (type);
25343 dw_die_ref subr_die
25344 = new_die (DW_TAG_subroutine_type,
25345 scope_die_for (type, context_die), type);
25347 equate_type_number_to_die (type, subr_die);
25348 add_prototyped_attribute (subr_die, type);
25349 add_type_attribute (subr_die, return_type, TYPE_UNQUALIFIED, false,
25350 context_die);
25351 add_alignment_attribute (subr_die, type);
25352 gen_formal_types_die (type, subr_die);
25354 if (get_AT (subr_die, DW_AT_name))
25355 add_pubtype (type, subr_die);
25356 if ((dwarf_version >= 5 || !dwarf_strict)
25357 && lang_hooks.types.type_dwarf_attribute (type, DW_AT_reference) != -1)
25358 add_AT_flag (subr_die, DW_AT_reference, 1);
25359 if ((dwarf_version >= 5 || !dwarf_strict)
25360 && lang_hooks.types.type_dwarf_attribute (type,
25361 DW_AT_rvalue_reference) != -1)
25362 add_AT_flag (subr_die, DW_AT_rvalue_reference, 1);
25365 /* Generate a DIE for a type definition. */
25367 static void
25368 gen_typedef_die (tree decl, dw_die_ref context_die)
25370 dw_die_ref type_die;
25371 tree type;
25373 if (TREE_ASM_WRITTEN (decl))
25375 if (DECL_ORIGINAL_TYPE (decl))
25376 fill_variable_array_bounds (DECL_ORIGINAL_TYPE (decl));
25377 return;
25380 /* As we avoid creating DIEs for local typedefs (see decl_ultimate_origin
25381 checks in process_scope_var and modified_type_die), this should be called
25382 only for original types. */
25383 gcc_assert (decl_ultimate_origin (decl) == NULL
25384 || decl_ultimate_origin (decl) == decl);
25386 TREE_ASM_WRITTEN (decl) = 1;
25387 type_die = new_die (DW_TAG_typedef, context_die, decl);
25389 add_name_and_src_coords_attributes (type_die, decl);
25390 if (DECL_ORIGINAL_TYPE (decl))
25392 type = DECL_ORIGINAL_TYPE (decl);
25393 if (type == error_mark_node)
25394 return;
25396 gcc_assert (type != TREE_TYPE (decl));
25397 equate_type_number_to_die (TREE_TYPE (decl), type_die);
25399 else
25401 type = TREE_TYPE (decl);
25402 if (type == error_mark_node)
25403 return;
25405 if (is_naming_typedef_decl (TYPE_NAME (type)))
25407 /* Here, we are in the case of decl being a typedef naming
25408 an anonymous type, e.g:
25409 typedef struct {...} foo;
25410 In that case TREE_TYPE (decl) is not a typedef variant
25411 type and TYPE_NAME of the anonymous type is set to the
25412 TYPE_DECL of the typedef. This construct is emitted by
25413 the C++ FE.
25415 TYPE is the anonymous struct named by the typedef
25416 DECL. As we need the DW_AT_type attribute of the
25417 DW_TAG_typedef to point to the DIE of TYPE, let's
25418 generate that DIE right away. add_type_attribute
25419 called below will then pick (via lookup_type_die) that
25420 anonymous struct DIE. */
25421 if (!TREE_ASM_WRITTEN (type))
25422 gen_tagged_type_die (type, context_die, DINFO_USAGE_DIR_USE);
25424 /* This is a GNU Extension. We are adding a
25425 DW_AT_linkage_name attribute to the DIE of the
25426 anonymous struct TYPE. The value of that attribute
25427 is the name of the typedef decl naming the anonymous
25428 struct. This greatly eases the work of consumers of
25429 this debug info. */
25430 add_linkage_name_raw (lookup_type_die (type), decl);
25434 add_type_attribute (type_die, type, decl_quals (decl), false,
25435 context_die);
25437 if (is_naming_typedef_decl (decl))
25438 /* We want that all subsequent calls to lookup_type_die with
25439 TYPE in argument yield the DW_TAG_typedef we have just
25440 created. */
25441 equate_type_number_to_die (type, type_die);
25443 add_alignment_attribute (type_die, TREE_TYPE (decl));
25445 add_accessibility_attribute (type_die, decl);
25447 if (DECL_ABSTRACT_P (decl))
25448 equate_decl_number_to_die (decl, type_die);
25450 if (get_AT (type_die, DW_AT_name))
25451 add_pubtype (decl, type_die);
25454 /* Generate a DIE for a struct, class, enum or union type. */
25456 static void
25457 gen_tagged_type_die (tree type,
25458 dw_die_ref context_die,
25459 enum debug_info_usage usage)
25461 if (type == NULL_TREE
25462 || !is_tagged_type (type))
25463 return;
25465 if (TREE_ASM_WRITTEN (type))
25467 /* If this is a nested type whose containing class hasn't been written
25468 out yet, writing it out will cover this one, too. This does not apply
25469 to instantiations of member class templates; they need to be added to
25470 the containing class as they are generated. FIXME: This hurts the
25471 idea of combining type decls from multiple TUs, since we can't predict
25472 what set of template instantiations we'll get. */
25473 else if (TYPE_CONTEXT (type)
25474 && AGGREGATE_TYPE_P (TYPE_CONTEXT (type))
25475 && ! TREE_ASM_WRITTEN (TYPE_CONTEXT (type)))
25477 gen_type_die_with_usage (TYPE_CONTEXT (type), context_die, usage);
25479 if (TREE_ASM_WRITTEN (type))
25480 return;
25482 /* If that failed, attach ourselves to the stub. */
25483 context_die = lookup_type_die (TYPE_CONTEXT (type));
25485 else if (TYPE_CONTEXT (type) != NULL_TREE
25486 && (TREE_CODE (TYPE_CONTEXT (type)) == FUNCTION_DECL))
25488 /* If this type is local to a function that hasn't been written
25489 out yet, use a NULL context for now; it will be fixed up in
25490 decls_for_scope. */
25491 context_die = lookup_decl_die (TYPE_CONTEXT (type));
25492 /* A declaration DIE doesn't count; nested types need to go in the
25493 specification. */
25494 if (context_die && is_declaration_die (context_die))
25495 context_die = NULL;
25497 else
25498 context_die = declare_in_namespace (type, context_die);
25500 if (TREE_CODE (type) == ENUMERAL_TYPE)
25502 /* This might have been written out by the call to
25503 declare_in_namespace. */
25504 if (!TREE_ASM_WRITTEN (type))
25505 gen_enumeration_type_die (type, context_die);
25507 else
25508 gen_struct_or_union_type_die (type, context_die, usage);
25510 /* Don't set TREE_ASM_WRITTEN on an incomplete struct; we want to fix
25511 it up if it is ever completed. gen_*_type_die will set it for us
25512 when appropriate. */
25515 /* Generate a type description DIE. */
25517 static void
25518 gen_type_die_with_usage (tree type, dw_die_ref context_die,
25519 enum debug_info_usage usage)
25521 struct array_descr_info info;
25523 if (type == NULL_TREE || type == error_mark_node)
25524 return;
25526 if (flag_checking && type)
25527 verify_type (type);
25529 if (TYPE_NAME (type) != NULL_TREE
25530 && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
25531 && is_redundant_typedef (TYPE_NAME (type))
25532 && DECL_ORIGINAL_TYPE (TYPE_NAME (type)))
25533 /* The DECL of this type is a typedef we don't want to emit debug
25534 info for but we want debug info for its underlying typedef.
25535 This can happen for e.g, the injected-class-name of a C++
25536 type. */
25537 type = DECL_ORIGINAL_TYPE (TYPE_NAME (type));
25539 /* If TYPE is a typedef type variant, let's generate debug info
25540 for the parent typedef which TYPE is a type of. */
25541 if (typedef_variant_p (type))
25543 if (TREE_ASM_WRITTEN (type))
25544 return;
25546 tree name = TYPE_NAME (type);
25547 tree origin = decl_ultimate_origin (name);
25548 if (origin != NULL && origin != name)
25550 gen_decl_die (origin, NULL, NULL, context_die);
25551 return;
25554 /* Prevent broken recursion; we can't hand off to the same type. */
25555 gcc_assert (DECL_ORIGINAL_TYPE (name) != type);
25557 /* Give typedefs the right scope. */
25558 context_die = scope_die_for (type, context_die);
25560 TREE_ASM_WRITTEN (type) = 1;
25562 gen_decl_die (name, NULL, NULL, context_die);
25563 return;
25566 /* If type is an anonymous tagged type named by a typedef, let's
25567 generate debug info for the typedef. */
25568 if (is_naming_typedef_decl (TYPE_NAME (type)))
25570 /* Give typedefs the right scope. */
25571 context_die = scope_die_for (type, context_die);
25573 gen_decl_die (TYPE_NAME (type), NULL, NULL, context_die);
25574 return;
25577 if (lang_hooks.types.get_debug_type)
25579 tree debug_type = lang_hooks.types.get_debug_type (type);
25581 if (debug_type != NULL_TREE && debug_type != type)
25583 gen_type_die_with_usage (debug_type, context_die, usage);
25584 return;
25588 /* We are going to output a DIE to represent the unqualified version
25589 of this type (i.e. without any const or volatile qualifiers) so
25590 get the main variant (i.e. the unqualified version) of this type
25591 now. (Vectors and arrays are special because the debugging info is in the
25592 cloned type itself. Similarly function/method types can contain extra
25593 ref-qualification). */
25594 if (TREE_CODE (type) == FUNCTION_TYPE
25595 || TREE_CODE (type) == METHOD_TYPE)
25597 /* For function/method types, can't use type_main_variant here,
25598 because that can have different ref-qualifiers for C++,
25599 but try to canonicalize. */
25600 tree main = TYPE_MAIN_VARIANT (type);
25601 for (tree t = main; t; t = TYPE_NEXT_VARIANT (t))
25602 if (TYPE_QUALS_NO_ADDR_SPACE (t) == 0
25603 && check_base_type (t, main)
25604 && check_lang_type (t, type))
25606 type = t;
25607 break;
25610 else if (TREE_CODE (type) != VECTOR_TYPE
25611 && TREE_CODE (type) != ARRAY_TYPE)
25612 type = type_main_variant (type);
25614 /* If this is an array type with hidden descriptor, handle it first. */
25615 if (!TREE_ASM_WRITTEN (type)
25616 && lang_hooks.types.get_array_descr_info)
25618 memset (&info, 0, sizeof (info));
25619 if (lang_hooks.types.get_array_descr_info (type, &info))
25621 /* Fortran sometimes emits array types with no dimension. */
25622 gcc_assert (info.ndimensions >= 0
25623 && (info.ndimensions
25624 <= DWARF2OUT_ARRAY_DESCR_INFO_MAX_DIMEN));
25625 gen_descr_array_type_die (type, &info, context_die);
25626 TREE_ASM_WRITTEN (type) = 1;
25627 return;
25631 if (TREE_ASM_WRITTEN (type))
25633 /* Variable-length types may be incomplete even if
25634 TREE_ASM_WRITTEN. For such types, fall through to
25635 gen_array_type_die() and possibly fill in
25636 DW_AT_{upper,lower}_bound attributes. */
25637 if ((TREE_CODE (type) != ARRAY_TYPE
25638 && TREE_CODE (type) != RECORD_TYPE
25639 && TREE_CODE (type) != UNION_TYPE
25640 && TREE_CODE (type) != QUAL_UNION_TYPE)
25641 || !variably_modified_type_p (type, NULL))
25642 return;
25645 switch (TREE_CODE (type))
25647 case ERROR_MARK:
25648 break;
25650 case POINTER_TYPE:
25651 case REFERENCE_TYPE:
25652 /* We must set TREE_ASM_WRITTEN in case this is a recursive type. This
25653 ensures that the gen_type_die recursion will terminate even if the
25654 type is recursive. Recursive types are possible in Ada. */
25655 /* ??? We could perhaps do this for all types before the switch
25656 statement. */
25657 TREE_ASM_WRITTEN (type) = 1;
25659 /* For these types, all that is required is that we output a DIE (or a
25660 set of DIEs) to represent the "basis" type. */
25661 gen_type_die_with_usage (TREE_TYPE (type), context_die,
25662 DINFO_USAGE_IND_USE);
25663 break;
25665 case OFFSET_TYPE:
25666 /* This code is used for C++ pointer-to-data-member types.
25667 Output a description of the relevant class type. */
25668 gen_type_die_with_usage (TYPE_OFFSET_BASETYPE (type), context_die,
25669 DINFO_USAGE_IND_USE);
25671 /* Output a description of the type of the object pointed to. */
25672 gen_type_die_with_usage (TREE_TYPE (type), context_die,
25673 DINFO_USAGE_IND_USE);
25675 /* Now output a DIE to represent this pointer-to-data-member type
25676 itself. */
25677 gen_ptr_to_mbr_type_die (type, context_die);
25678 break;
25680 case FUNCTION_TYPE:
25681 /* Force out return type (in case it wasn't forced out already). */
25682 gen_type_die_with_usage (TREE_TYPE (type), context_die,
25683 DINFO_USAGE_DIR_USE);
25684 gen_subroutine_type_die (type, context_die);
25685 break;
25687 case METHOD_TYPE:
25688 /* Force out return type (in case it wasn't forced out already). */
25689 gen_type_die_with_usage (TREE_TYPE (type), context_die,
25690 DINFO_USAGE_DIR_USE);
25691 gen_subroutine_type_die (type, context_die);
25692 break;
25694 case ARRAY_TYPE:
25695 case VECTOR_TYPE:
25696 gen_array_type_die (type, context_die);
25697 break;
25699 case ENUMERAL_TYPE:
25700 case RECORD_TYPE:
25701 case UNION_TYPE:
25702 case QUAL_UNION_TYPE:
25703 gen_tagged_type_die (type, context_die, usage);
25704 return;
25706 case VOID_TYPE:
25707 case INTEGER_TYPE:
25708 case REAL_TYPE:
25709 case FIXED_POINT_TYPE:
25710 case COMPLEX_TYPE:
25711 case BOOLEAN_TYPE:
25712 /* No DIEs needed for fundamental types. */
25713 break;
25715 case NULLPTR_TYPE:
25716 case LANG_TYPE:
25717 /* Just use DW_TAG_unspecified_type. */
25719 dw_die_ref type_die = lookup_type_die (type);
25720 if (type_die == NULL)
25722 tree name = TYPE_IDENTIFIER (type);
25723 type_die = new_die (DW_TAG_unspecified_type, comp_unit_die (),
25724 type);
25725 add_name_attribute (type_die, IDENTIFIER_POINTER (name));
25726 equate_type_number_to_die (type, type_die);
25729 break;
25731 default:
25732 if (is_cxx_auto (type))
25734 tree name = TYPE_IDENTIFIER (type);
25735 dw_die_ref *die = (name == get_identifier ("auto")
25736 ? &auto_die : &decltype_auto_die);
25737 if (!*die)
25739 *die = new_die (DW_TAG_unspecified_type,
25740 comp_unit_die (), NULL_TREE);
25741 add_name_attribute (*die, IDENTIFIER_POINTER (name));
25743 equate_type_number_to_die (type, *die);
25744 break;
25746 gcc_unreachable ();
25749 TREE_ASM_WRITTEN (type) = 1;
25752 static void
25753 gen_type_die (tree type, dw_die_ref context_die)
25755 if (type != error_mark_node)
25757 gen_type_die_with_usage (type, context_die, DINFO_USAGE_DIR_USE);
25758 if (flag_checking)
25760 dw_die_ref die = lookup_type_die (type);
25761 if (die)
25762 check_die (die);
25767 /* Generate a DW_TAG_lexical_block DIE followed by DIEs to represent all of the
25768 things which are local to the given block. */
25770 static void
25771 gen_block_die (tree stmt, dw_die_ref context_die)
25773 int must_output_die = 0;
25774 bool inlined_func;
25776 /* Ignore blocks that are NULL. */
25777 if (stmt == NULL_TREE)
25778 return;
25780 inlined_func = inlined_function_outer_scope_p (stmt);
25782 /* If the block is one fragment of a non-contiguous block, do not
25783 process the variables, since they will have been done by the
25784 origin block. Do process subblocks. */
25785 if (BLOCK_FRAGMENT_ORIGIN (stmt))
25787 tree sub;
25789 for (sub = BLOCK_SUBBLOCKS (stmt); sub; sub = BLOCK_CHAIN (sub))
25790 gen_block_die (sub, context_die);
25792 return;
25795 /* Determine if we need to output any Dwarf DIEs at all to represent this
25796 block. */
25797 if (inlined_func)
25798 /* The outer scopes for inlinings *must* always be represented. We
25799 generate DW_TAG_inlined_subroutine DIEs for them. (See below.) */
25800 must_output_die = 1;
25801 else if (lookup_block_die (stmt))
25802 /* If we already have a DIE then it was filled early. Meanwhile
25803 we might have pruned all BLOCK_VARS as optimized out but we
25804 still want to generate high/low PC attributes so output it. */
25805 must_output_die = 1;
25806 else if (TREE_USED (stmt)
25807 || TREE_ASM_WRITTEN (stmt))
25809 /* Determine if this block directly contains any "significant"
25810 local declarations which we will need to output DIEs for. */
25811 if (debug_info_level > DINFO_LEVEL_TERSE)
25813 /* We are not in terse mode so any local declaration that
25814 is not ignored for debug purposes counts as being a
25815 "significant" one. */
25816 if (BLOCK_NUM_NONLOCALIZED_VARS (stmt))
25817 must_output_die = 1;
25818 else
25819 for (tree var = BLOCK_VARS (stmt); var; var = DECL_CHAIN (var))
25820 if (!DECL_IGNORED_P (var))
25822 must_output_die = 1;
25823 break;
25826 else if (!dwarf2out_ignore_block (stmt))
25827 must_output_die = 1;
25830 /* It would be a waste of space to generate a Dwarf DW_TAG_lexical_block
25831 DIE for any block which contains no significant local declarations at
25832 all. Rather, in such cases we just call `decls_for_scope' so that any
25833 needed Dwarf info for any sub-blocks will get properly generated. Note
25834 that in terse mode, our definition of what constitutes a "significant"
25835 local declaration gets restricted to include only inlined function
25836 instances and local (nested) function definitions. */
25837 if (must_output_die)
25839 if (inlined_func)
25840 gen_inlined_subroutine_die (stmt, context_die);
25841 else
25842 gen_lexical_block_die (stmt, context_die);
25844 else
25845 decls_for_scope (stmt, context_die);
25848 /* Process variable DECL (or variable with origin ORIGIN) within
25849 block STMT and add it to CONTEXT_DIE. */
25850 static void
25851 process_scope_var (tree stmt, tree decl, tree origin, dw_die_ref context_die)
25853 dw_die_ref die;
25854 tree decl_or_origin = decl ? decl : origin;
25856 if (TREE_CODE (decl_or_origin) == FUNCTION_DECL)
25857 die = lookup_decl_die (decl_or_origin);
25858 else if (TREE_CODE (decl_or_origin) == TYPE_DECL)
25860 if (TYPE_DECL_IS_STUB (decl_or_origin))
25861 die = lookup_type_die (TREE_TYPE (decl_or_origin));
25862 else
25863 die = lookup_decl_die (decl_or_origin);
25864 /* Avoid re-creating the DIE late if it was optimized as unused early. */
25865 if (! die && ! early_dwarf)
25866 return;
25868 else
25869 die = NULL;
25871 /* Avoid creating DIEs for local typedefs and concrete static variables that
25872 will only be pruned later. */
25873 if ((origin || decl_ultimate_origin (decl))
25874 && (TREE_CODE (decl_or_origin) == TYPE_DECL
25875 || (VAR_P (decl_or_origin) && TREE_STATIC (decl_or_origin))))
25877 origin = decl_ultimate_origin (decl_or_origin);
25878 if (decl && VAR_P (decl) && die != NULL)
25880 die = lookup_decl_die (origin);
25881 if (die != NULL)
25882 equate_decl_number_to_die (decl, die);
25884 return;
25887 if (die != NULL && die->die_parent == NULL)
25888 add_child_die (context_die, die);
25889 else if (TREE_CODE (decl_or_origin) == IMPORTED_DECL)
25891 if (early_dwarf)
25892 dwarf2out_imported_module_or_decl_1 (decl_or_origin, DECL_NAME (decl_or_origin),
25893 stmt, context_die);
25895 else
25897 if (decl && DECL_P (decl))
25899 die = lookup_decl_die (decl);
25901 /* Early created DIEs do not have a parent as the decls refer
25902 to the function as DECL_CONTEXT rather than the BLOCK. */
25903 if (die && die->die_parent == NULL)
25905 gcc_assert (in_lto_p);
25906 add_child_die (context_die, die);
25910 gen_decl_die (decl, origin, NULL, context_die);
25914 /* Generate all of the decls declared within a given scope and (recursively)
25915 all of its sub-blocks. */
25917 static void
25918 decls_for_scope (tree stmt, dw_die_ref context_die, bool recurse)
25920 tree decl;
25921 unsigned int i;
25922 tree subblocks;
25924 /* Ignore NULL blocks. */
25925 if (stmt == NULL_TREE)
25926 return;
25928 /* Output the DIEs to represent all of the data objects and typedefs
25929 declared directly within this block but not within any nested
25930 sub-blocks. Also, nested function and tag DIEs have been
25931 generated with a parent of NULL; fix that up now. We don't
25932 have to do this if we're at -g1. */
25933 if (debug_info_level > DINFO_LEVEL_TERSE)
25935 for (decl = BLOCK_VARS (stmt); decl != NULL; decl = DECL_CHAIN (decl))
25936 process_scope_var (stmt, decl, NULL_TREE, context_die);
25937 /* BLOCK_NONLOCALIZED_VARs simply generate DIE stubs with abstract
25938 origin - avoid doing this twice as we have no good way to see
25939 if we've done it once already. */
25940 if (! early_dwarf)
25941 for (i = 0; i < BLOCK_NUM_NONLOCALIZED_VARS (stmt); i++)
25943 decl = BLOCK_NONLOCALIZED_VAR (stmt, i);
25944 if (decl == current_function_decl)
25945 /* Ignore declarations of the current function, while they
25946 are declarations, gen_subprogram_die would treat them
25947 as definitions again, because they are equal to
25948 current_function_decl and endlessly recurse. */;
25949 else if (TREE_CODE (decl) == FUNCTION_DECL)
25950 process_scope_var (stmt, decl, NULL_TREE, context_die);
25951 else
25952 process_scope_var (stmt, NULL_TREE, decl, context_die);
25956 /* Even if we're at -g1, we need to process the subblocks in order to get
25957 inlined call information. */
25959 /* Output the DIEs to represent all sub-blocks (and the items declared
25960 therein) of this block. */
25961 if (recurse)
25962 for (subblocks = BLOCK_SUBBLOCKS (stmt);
25963 subblocks != NULL;
25964 subblocks = BLOCK_CHAIN (subblocks))
25965 gen_block_die (subblocks, context_die);
25968 /* Is this a typedef we can avoid emitting? */
25970 static bool
25971 is_redundant_typedef (const_tree decl)
25973 if (TYPE_DECL_IS_STUB (decl))
25974 return true;
25976 if (DECL_ARTIFICIAL (decl)
25977 && DECL_CONTEXT (decl)
25978 && is_tagged_type (DECL_CONTEXT (decl))
25979 && TREE_CODE (TYPE_NAME (DECL_CONTEXT (decl))) == TYPE_DECL
25980 && DECL_NAME (decl) == DECL_NAME (TYPE_NAME (DECL_CONTEXT (decl))))
25981 /* Also ignore the artificial member typedef for the class name. */
25982 return true;
25984 return false;
25987 /* Return TRUE if TYPE is a typedef that names a type for linkage
25988 purposes. This kind of typedefs is produced by the C++ FE for
25989 constructs like:
25991 typedef struct {...} foo;
25993 In that case, there is no typedef variant type produced for foo.
25994 Rather, the TREE_TYPE of the TYPE_DECL of foo is the anonymous
25995 struct type. */
25997 static bool
25998 is_naming_typedef_decl (const_tree decl)
26000 if (decl == NULL_TREE
26001 || TREE_CODE (decl) != TYPE_DECL
26002 || DECL_NAMELESS (decl)
26003 || !is_tagged_type (TREE_TYPE (decl))
26004 || DECL_IS_BUILTIN (decl)
26005 || is_redundant_typedef (decl)
26006 /* It looks like Ada produces TYPE_DECLs that are very similar
26007 to C++ naming typedefs but that have different
26008 semantics. Let's be specific to c++ for now. */
26009 || !is_cxx (decl))
26010 return FALSE;
26012 return (DECL_ORIGINAL_TYPE (decl) == NULL_TREE
26013 && TYPE_NAME (TREE_TYPE (decl)) == decl
26014 && (TYPE_STUB_DECL (TREE_TYPE (decl))
26015 != TYPE_NAME (TREE_TYPE (decl))));
26018 /* Looks up the DIE for a context. */
26020 static inline dw_die_ref
26021 lookup_context_die (tree context)
26023 if (context)
26025 /* Find die that represents this context. */
26026 if (TYPE_P (context))
26028 context = TYPE_MAIN_VARIANT (context);
26029 dw_die_ref ctx = lookup_type_die (context);
26030 if (!ctx)
26031 return NULL;
26032 return strip_naming_typedef (context, ctx);
26034 else
26035 return lookup_decl_die (context);
26037 return comp_unit_die ();
26040 /* Returns the DIE for a context. */
26042 static inline dw_die_ref
26043 get_context_die (tree context)
26045 if (context)
26047 /* Find die that represents this context. */
26048 if (TYPE_P (context))
26050 context = TYPE_MAIN_VARIANT (context);
26051 return strip_naming_typedef (context, force_type_die (context));
26053 else
26054 return force_decl_die (context);
26056 return comp_unit_die ();
26059 /* Returns the DIE for decl. A DIE will always be returned. */
26061 static dw_die_ref
26062 force_decl_die (tree decl)
26064 dw_die_ref decl_die;
26065 unsigned saved_external_flag;
26066 tree save_fn = NULL_TREE;
26067 decl_die = lookup_decl_die (decl);
26068 if (!decl_die)
26070 dw_die_ref context_die = get_context_die (DECL_CONTEXT (decl));
26072 decl_die = lookup_decl_die (decl);
26073 if (decl_die)
26074 return decl_die;
26076 switch (TREE_CODE (decl))
26078 case FUNCTION_DECL:
26079 /* Clear current_function_decl, so that gen_subprogram_die thinks
26080 that this is a declaration. At this point, we just want to force
26081 declaration die. */
26082 save_fn = current_function_decl;
26083 current_function_decl = NULL_TREE;
26084 gen_subprogram_die (decl, context_die);
26085 current_function_decl = save_fn;
26086 break;
26088 case VAR_DECL:
26089 /* Set external flag to force declaration die. Restore it after
26090 gen_decl_die() call. */
26091 saved_external_flag = DECL_EXTERNAL (decl);
26092 DECL_EXTERNAL (decl) = 1;
26093 gen_decl_die (decl, NULL, NULL, context_die);
26094 DECL_EXTERNAL (decl) = saved_external_flag;
26095 break;
26097 case NAMESPACE_DECL:
26098 if (dwarf_version >= 3 || !dwarf_strict)
26099 dwarf2out_decl (decl);
26100 else
26101 /* DWARF2 has neither DW_TAG_module, nor DW_TAG_namespace. */
26102 decl_die = comp_unit_die ();
26103 break;
26105 case TRANSLATION_UNIT_DECL:
26106 decl_die = comp_unit_die ();
26107 break;
26109 default:
26110 gcc_unreachable ();
26113 /* We should be able to find the DIE now. */
26114 if (!decl_die)
26115 decl_die = lookup_decl_die (decl);
26116 gcc_assert (decl_die);
26119 return decl_die;
26122 /* Returns the DIE for TYPE, that must not be a base type. A DIE is
26123 always returned. */
26125 static dw_die_ref
26126 force_type_die (tree type)
26128 dw_die_ref type_die;
26130 type_die = lookup_type_die (type);
26131 if (!type_die)
26133 dw_die_ref context_die = get_context_die (TYPE_CONTEXT (type));
26135 type_die = modified_type_die (type, TYPE_QUALS_NO_ADDR_SPACE (type),
26136 false, context_die);
26137 gcc_assert (type_die);
26139 return type_die;
26142 /* Force out any required namespaces to be able to output DECL,
26143 and return the new context_die for it, if it's changed. */
26145 static dw_die_ref
26146 setup_namespace_context (tree thing, dw_die_ref context_die)
26148 tree context = (DECL_P (thing)
26149 ? DECL_CONTEXT (thing) : TYPE_CONTEXT (thing));
26150 if (context && TREE_CODE (context) == NAMESPACE_DECL)
26151 /* Force out the namespace. */
26152 context_die = force_decl_die (context);
26154 return context_die;
26157 /* Emit a declaration DIE for THING (which is either a DECL or a tagged
26158 type) within its namespace, if appropriate.
26160 For compatibility with older debuggers, namespace DIEs only contain
26161 declarations; all definitions are emitted at CU scope, with
26162 DW_AT_specification pointing to the declaration (like with class
26163 members). */
26165 static dw_die_ref
26166 declare_in_namespace (tree thing, dw_die_ref context_die)
26168 dw_die_ref ns_context;
26170 if (debug_info_level <= DINFO_LEVEL_TERSE)
26171 return context_die;
26173 /* External declarations in the local scope only need to be emitted
26174 once, not once in the namespace and once in the scope.
26176 This avoids declaring the `extern' below in the
26177 namespace DIE as well as in the innermost scope:
26179 namespace S
26181 int i=5;
26182 int foo()
26184 int i=8;
26185 extern int i;
26186 return i;
26190 if (DECL_P (thing) && DECL_EXTERNAL (thing) && local_scope_p (context_die))
26191 return context_die;
26193 /* If this decl is from an inlined function, then don't try to emit it in its
26194 namespace, as we will get confused. It would have already been emitted
26195 when the abstract instance of the inline function was emitted anyways. */
26196 if (DECL_P (thing) && DECL_ABSTRACT_ORIGIN (thing))
26197 return context_die;
26199 ns_context = setup_namespace_context (thing, context_die);
26201 if (ns_context != context_die)
26203 if (is_fortran () || is_dlang ())
26204 return ns_context;
26205 if (DECL_P (thing))
26206 gen_decl_die (thing, NULL, NULL, ns_context);
26207 else
26208 gen_type_die (thing, ns_context);
26210 return context_die;
26213 /* Generate a DIE for a namespace or namespace alias. */
26215 static void
26216 gen_namespace_die (tree decl, dw_die_ref context_die)
26218 dw_die_ref namespace_die;
26220 /* Namespace aliases have a DECL_ABSTRACT_ORIGIN of the namespace
26221 they are an alias of. */
26222 if (DECL_ABSTRACT_ORIGIN (decl) == NULL)
26224 /* Output a real namespace or module. */
26225 context_die = setup_namespace_context (decl, comp_unit_die ());
26226 namespace_die = new_die (is_fortran () || is_dlang ()
26227 ? DW_TAG_module : DW_TAG_namespace,
26228 context_die, decl);
26229 /* For Fortran modules defined in different CU don't add src coords. */
26230 if (namespace_die->die_tag == DW_TAG_module && DECL_EXTERNAL (decl))
26232 const char *name = dwarf2_name (decl, 0);
26233 if (name)
26234 add_name_attribute (namespace_die, name);
26236 else
26237 add_name_and_src_coords_attributes (namespace_die, decl);
26238 if (DECL_EXTERNAL (decl))
26239 add_AT_flag (namespace_die, DW_AT_declaration, 1);
26240 equate_decl_number_to_die (decl, namespace_die);
26242 else
26244 /* Output a namespace alias. */
26246 /* Force out the namespace we are an alias of, if necessary. */
26247 dw_die_ref origin_die
26248 = force_decl_die (DECL_ABSTRACT_ORIGIN (decl));
26250 if (DECL_FILE_SCOPE_P (decl)
26251 || TREE_CODE (DECL_CONTEXT (decl)) == NAMESPACE_DECL)
26252 context_die = setup_namespace_context (decl, comp_unit_die ());
26253 /* Now create the namespace alias DIE. */
26254 namespace_die = new_die (DW_TAG_imported_declaration, context_die, decl);
26255 add_name_and_src_coords_attributes (namespace_die, decl);
26256 add_AT_die_ref (namespace_die, DW_AT_import, origin_die);
26257 equate_decl_number_to_die (decl, namespace_die);
26259 if ((dwarf_version >= 5 || !dwarf_strict)
26260 && lang_hooks.decls.decl_dwarf_attribute (decl,
26261 DW_AT_export_symbols) == 1)
26262 add_AT_flag (namespace_die, DW_AT_export_symbols, 1);
26264 /* Bypass dwarf2_name's check for DECL_NAMELESS. */
26265 if (want_pubnames ())
26266 add_pubname_string (lang_hooks.dwarf_name (decl, 1), namespace_die);
26269 /* Generate Dwarf debug information for a decl described by DECL.
26270 The return value is currently only meaningful for PARM_DECLs,
26271 for all other decls it returns NULL.
26273 If DECL is a FIELD_DECL, CTX is required: see the comment for VLR_CONTEXT.
26274 It can be NULL otherwise. */
26276 static dw_die_ref
26277 gen_decl_die (tree decl, tree origin, struct vlr_context *ctx,
26278 dw_die_ref context_die)
26280 tree decl_or_origin = decl ? decl : origin;
26281 tree class_origin = NULL, ultimate_origin;
26283 if (DECL_P (decl_or_origin) && DECL_IGNORED_P (decl_or_origin))
26284 return NULL;
26286 switch (TREE_CODE (decl_or_origin))
26288 case ERROR_MARK:
26289 break;
26291 case CONST_DECL:
26292 if (!is_fortran () && !is_ada () && !is_dlang ())
26294 /* The individual enumerators of an enum type get output when we output
26295 the Dwarf representation of the relevant enum type itself. */
26296 break;
26299 /* Emit its type. */
26300 gen_type_die (TREE_TYPE (decl), context_die);
26302 /* And its containing namespace. */
26303 context_die = declare_in_namespace (decl, context_die);
26305 gen_const_die (decl, context_die);
26306 break;
26308 case FUNCTION_DECL:
26309 #if 0
26310 /* FIXME */
26311 /* This doesn't work because the C frontend sets DECL_ABSTRACT_ORIGIN
26312 on local redeclarations of global functions. That seems broken. */
26313 if (current_function_decl != decl)
26314 /* This is only a declaration. */;
26315 #endif
26317 /* We should have abstract copies already and should not generate
26318 stray type DIEs in late LTO dumping. */
26319 if (! early_dwarf)
26322 /* If we're emitting a clone, emit info for the abstract instance. */
26323 else if (origin || DECL_ORIGIN (decl) != decl)
26324 dwarf2out_abstract_function (origin
26325 ? DECL_ORIGIN (origin)
26326 : DECL_ABSTRACT_ORIGIN (decl));
26328 /* If we're emitting a possibly inlined function emit it as
26329 abstract instance. */
26330 else if (cgraph_function_possibly_inlined_p (decl)
26331 && ! DECL_ABSTRACT_P (decl)
26332 && ! class_or_namespace_scope_p (context_die)
26333 /* dwarf2out_abstract_function won't emit a die if this is just
26334 a declaration. We must avoid setting DECL_ABSTRACT_ORIGIN in
26335 that case, because that works only if we have a die. */
26336 && DECL_INITIAL (decl) != NULL_TREE)
26337 dwarf2out_abstract_function (decl);
26339 /* Otherwise we're emitting the primary DIE for this decl. */
26340 else if (debug_info_level > DINFO_LEVEL_TERSE)
26342 /* Before we describe the FUNCTION_DECL itself, make sure that we
26343 have its containing type. */
26344 if (!origin)
26345 origin = decl_class_context (decl);
26346 if (origin != NULL_TREE)
26347 gen_type_die (origin, context_die);
26349 /* And its return type. */
26350 gen_type_die (TREE_TYPE (TREE_TYPE (decl)), context_die);
26352 /* And its virtual context. */
26353 if (DECL_VINDEX (decl) != NULL_TREE)
26354 gen_type_die (DECL_CONTEXT (decl), context_die);
26356 /* Make sure we have a member DIE for decl. */
26357 if (origin != NULL_TREE)
26358 gen_type_die_for_member (origin, decl, context_die);
26360 /* And its containing namespace. */
26361 context_die = declare_in_namespace (decl, context_die);
26364 /* Now output a DIE to represent the function itself. */
26365 if (decl)
26366 gen_subprogram_die (decl, context_die);
26367 break;
26369 case TYPE_DECL:
26370 /* If we are in terse mode, don't generate any DIEs to represent any
26371 actual typedefs. */
26372 if (debug_info_level <= DINFO_LEVEL_TERSE)
26373 break;
26375 /* In the special case of a TYPE_DECL node representing the declaration
26376 of some type tag, if the given TYPE_DECL is marked as having been
26377 instantiated from some other (original) TYPE_DECL node (e.g. one which
26378 was generated within the original definition of an inline function) we
26379 used to generate a special (abbreviated) DW_TAG_structure_type,
26380 DW_TAG_union_type, or DW_TAG_enumeration_type DIE here. But nothing
26381 should be actually referencing those DIEs, as variable DIEs with that
26382 type would be emitted already in the abstract origin, so it was always
26383 removed during unused type prunning. Don't add anything in this
26384 case. */
26385 if (TYPE_DECL_IS_STUB (decl) && decl_ultimate_origin (decl) != NULL_TREE)
26386 break;
26388 if (is_redundant_typedef (decl))
26389 gen_type_die (TREE_TYPE (decl), context_die);
26390 else
26391 /* Output a DIE to represent the typedef itself. */
26392 gen_typedef_die (decl, context_die);
26393 break;
26395 case LABEL_DECL:
26396 if (debug_info_level >= DINFO_LEVEL_NORMAL)
26397 gen_label_die (decl, context_die);
26398 break;
26400 case VAR_DECL:
26401 case RESULT_DECL:
26402 /* If we are in terse mode, don't generate any DIEs to represent any
26403 variable declarations or definitions. */
26404 if (debug_info_level <= DINFO_LEVEL_TERSE)
26405 break;
26407 /* Avoid generating stray type DIEs during late dwarf dumping.
26408 All types have been dumped early. */
26409 if (early_dwarf
26410 /* ??? But in LTRANS we cannot annotate early created variably
26411 modified type DIEs without copying them and adjusting all
26412 references to them. Dump them again as happens for inlining
26413 which copies both the decl and the types. */
26414 /* ??? And even non-LTO needs to re-visit type DIEs to fill
26415 in VLA bound information for example. */
26416 || (decl && variably_modified_type_p (TREE_TYPE (decl),
26417 current_function_decl)))
26419 /* Output any DIEs that are needed to specify the type of this data
26420 object. */
26421 if (decl_by_reference_p (decl_or_origin))
26422 gen_type_die (TREE_TYPE (TREE_TYPE (decl_or_origin)), context_die);
26423 else
26424 gen_type_die (TREE_TYPE (decl_or_origin), context_die);
26427 if (early_dwarf)
26429 /* And its containing type. */
26430 class_origin = decl_class_context (decl_or_origin);
26431 if (class_origin != NULL_TREE)
26432 gen_type_die_for_member (class_origin, decl_or_origin, context_die);
26434 /* And its containing namespace. */
26435 context_die = declare_in_namespace (decl_or_origin, context_die);
26438 /* Now output the DIE to represent the data object itself. This gets
26439 complicated because of the possibility that the VAR_DECL really
26440 represents an inlined instance of a formal parameter for an inline
26441 function. */
26442 ultimate_origin = decl_ultimate_origin (decl_or_origin);
26443 if (ultimate_origin != NULL_TREE
26444 && TREE_CODE (ultimate_origin) == PARM_DECL)
26445 gen_formal_parameter_die (decl, origin,
26446 true /* Emit name attribute. */,
26447 context_die);
26448 else
26449 gen_variable_die (decl, origin, context_die);
26450 break;
26452 case FIELD_DECL:
26453 gcc_assert (ctx != NULL && ctx->struct_type != NULL);
26454 /* Ignore the nameless fields that are used to skip bits but handle C++
26455 anonymous unions and structs. */
26456 if (DECL_NAME (decl) != NULL_TREE
26457 || TREE_CODE (TREE_TYPE (decl)) == UNION_TYPE
26458 || TREE_CODE (TREE_TYPE (decl)) == RECORD_TYPE)
26460 gen_type_die (member_declared_type (decl), context_die);
26461 gen_field_die (decl, ctx, context_die);
26463 break;
26465 case PARM_DECL:
26466 /* Avoid generating stray type DIEs during late dwarf dumping.
26467 All types have been dumped early. */
26468 if (early_dwarf
26469 /* ??? But in LTRANS we cannot annotate early created variably
26470 modified type DIEs without copying them and adjusting all
26471 references to them. Dump them again as happens for inlining
26472 which copies both the decl and the types. */
26473 /* ??? And even non-LTO needs to re-visit type DIEs to fill
26474 in VLA bound information for example. */
26475 || (decl && variably_modified_type_p (TREE_TYPE (decl),
26476 current_function_decl)))
26478 if (DECL_BY_REFERENCE (decl_or_origin))
26479 gen_type_die (TREE_TYPE (TREE_TYPE (decl_or_origin)), context_die);
26480 else
26481 gen_type_die (TREE_TYPE (decl_or_origin), context_die);
26483 return gen_formal_parameter_die (decl, origin,
26484 true /* Emit name attribute. */,
26485 context_die);
26487 case NAMESPACE_DECL:
26488 if (dwarf_version >= 3 || !dwarf_strict)
26489 gen_namespace_die (decl, context_die);
26490 break;
26492 case IMPORTED_DECL:
26493 dwarf2out_imported_module_or_decl_1 (decl, DECL_NAME (decl),
26494 DECL_CONTEXT (decl), context_die);
26495 break;
26497 case NAMELIST_DECL:
26498 gen_namelist_decl (DECL_NAME (decl), context_die,
26499 NAMELIST_DECL_ASSOCIATED_DECL (decl));
26500 break;
26502 default:
26503 /* Probably some frontend-internal decl. Assume we don't care. */
26504 gcc_assert ((int)TREE_CODE (decl) > NUM_TREE_CODES);
26505 break;
26508 return NULL;
26511 /* Output initial debug information for global DECL. Called at the
26512 end of the parsing process.
26514 This is the initial debug generation process. As such, the DIEs
26515 generated may be incomplete. A later debug generation pass
26516 (dwarf2out_late_global_decl) will augment the information generated
26517 in this pass (e.g., with complete location info). */
26519 static void
26520 dwarf2out_early_global_decl (tree decl)
26522 set_early_dwarf s;
26524 /* gen_decl_die() will set DECL_ABSTRACT because
26525 cgraph_function_possibly_inlined_p() returns true. This is in
26526 turn will cause DW_AT_inline attributes to be set.
26528 This happens because at early dwarf generation, there is no
26529 cgraph information, causing cgraph_function_possibly_inlined_p()
26530 to return true. Trick cgraph_function_possibly_inlined_p()
26531 while we generate dwarf early. */
26532 bool save = symtab->global_info_ready;
26533 symtab->global_info_ready = true;
26535 /* We don't handle TYPE_DECLs. If required, they'll be reached via
26536 other DECLs and they can point to template types or other things
26537 that dwarf2out can't handle when done via dwarf2out_decl. */
26538 if (TREE_CODE (decl) != TYPE_DECL
26539 && TREE_CODE (decl) != PARM_DECL)
26541 if (TREE_CODE (decl) == FUNCTION_DECL)
26543 tree save_fndecl = current_function_decl;
26545 /* For nested functions, make sure we have DIEs for the parents first
26546 so that all nested DIEs are generated at the proper scope in the
26547 first shot. */
26548 tree context = decl_function_context (decl);
26549 if (context != NULL)
26551 dw_die_ref context_die = lookup_decl_die (context);
26552 current_function_decl = context;
26554 /* Avoid emitting DIEs multiple times, but still process CONTEXT
26555 enough so that it lands in its own context. This avoids type
26556 pruning issues later on. */
26557 if (context_die == NULL || is_declaration_die (context_die))
26558 dwarf2out_early_global_decl (context);
26561 /* Emit an abstract origin of a function first. This happens
26562 with C++ constructor clones for example and makes
26563 dwarf2out_abstract_function happy which requires the early
26564 DIE of the abstract instance to be present. */
26565 tree origin = DECL_ABSTRACT_ORIGIN (decl);
26566 dw_die_ref origin_die;
26567 if (origin != NULL
26568 /* Do not emit the DIE multiple times but make sure to
26569 process it fully here in case we just saw a declaration. */
26570 && ((origin_die = lookup_decl_die (origin)) == NULL
26571 || is_declaration_die (origin_die)))
26573 current_function_decl = origin;
26574 dwarf2out_decl (origin);
26577 /* Emit the DIE for decl but avoid doing that multiple times. */
26578 dw_die_ref old_die;
26579 if ((old_die = lookup_decl_die (decl)) == NULL
26580 || is_declaration_die (old_die))
26582 current_function_decl = decl;
26583 dwarf2out_decl (decl);
26586 current_function_decl = save_fndecl;
26588 else
26589 dwarf2out_decl (decl);
26591 symtab->global_info_ready = save;
26594 /* Return whether EXPR is an expression with the following pattern:
26595 INDIRECT_REF (NOP_EXPR (INTEGER_CST)). */
26597 static bool
26598 is_trivial_indirect_ref (tree expr)
26600 if (expr == NULL_TREE || TREE_CODE (expr) != INDIRECT_REF)
26601 return false;
26603 tree nop = TREE_OPERAND (expr, 0);
26604 if (nop == NULL_TREE || TREE_CODE (nop) != NOP_EXPR)
26605 return false;
26607 tree int_cst = TREE_OPERAND (nop, 0);
26608 return int_cst != NULL_TREE && TREE_CODE (int_cst) == INTEGER_CST;
26611 /* Output debug information for global decl DECL. Called from
26612 toplev.c after compilation proper has finished. */
26614 static void
26615 dwarf2out_late_global_decl (tree decl)
26617 /* Fill-in any location information we were unable to determine
26618 on the first pass. */
26619 if (VAR_P (decl))
26621 dw_die_ref die = lookup_decl_die (decl);
26623 /* We may have to generate early debug late for LTO in case debug
26624 was not enabled at compile-time or the target doesn't support
26625 the LTO early debug scheme. */
26626 if (! die && in_lto_p)
26628 dwarf2out_decl (decl);
26629 die = lookup_decl_die (decl);
26632 if (die)
26634 /* We get called via the symtab code invoking late_global_decl
26635 for symbols that are optimized out.
26637 Do not add locations for those, except if they have a
26638 DECL_VALUE_EXPR, in which case they are relevant for debuggers.
26639 Still don't add a location if the DECL_VALUE_EXPR is not a trivial
26640 INDIRECT_REF expression, as this could generate relocations to
26641 text symbols in LTO object files, which is invalid. */
26642 varpool_node *node = varpool_node::get (decl);
26643 if ((! node || ! node->definition)
26644 && ! (DECL_HAS_VALUE_EXPR_P (decl)
26645 && is_trivial_indirect_ref (DECL_VALUE_EXPR (decl))))
26646 tree_add_const_value_attribute_for_decl (die, decl);
26647 else
26648 add_location_or_const_value_attribute (die, decl, false);
26653 /* Output debug information for type decl DECL. Called from toplev.c
26654 and from language front ends (to record built-in types). */
26655 static void
26656 dwarf2out_type_decl (tree decl, int local)
26658 if (!local)
26660 set_early_dwarf s;
26661 dwarf2out_decl (decl);
26665 /* Output debug information for imported module or decl DECL.
26666 NAME is non-NULL name in the lexical block if the decl has been renamed.
26667 LEXICAL_BLOCK is the lexical block (which TREE_CODE is a BLOCK)
26668 that DECL belongs to.
26669 LEXICAL_BLOCK_DIE is the DIE of LEXICAL_BLOCK. */
26670 static void
26671 dwarf2out_imported_module_or_decl_1 (tree decl,
26672 tree name,
26673 tree lexical_block,
26674 dw_die_ref lexical_block_die)
26676 expanded_location xloc;
26677 dw_die_ref imported_die = NULL;
26678 dw_die_ref at_import_die;
26680 if (TREE_CODE (decl) == IMPORTED_DECL)
26682 xloc = expand_location (DECL_SOURCE_LOCATION (decl));
26683 decl = IMPORTED_DECL_ASSOCIATED_DECL (decl);
26684 gcc_assert (decl);
26686 else
26687 xloc = expand_location (input_location);
26689 if (TREE_CODE (decl) == TYPE_DECL || TREE_CODE (decl) == CONST_DECL)
26691 at_import_die = force_type_die (TREE_TYPE (decl));
26692 /* For namespace N { typedef void T; } using N::T; base_type_die
26693 returns NULL, but DW_TAG_imported_declaration requires
26694 the DW_AT_import tag. Force creation of DW_TAG_typedef. */
26695 if (!at_import_die)
26697 gcc_assert (TREE_CODE (decl) == TYPE_DECL);
26698 gen_typedef_die (decl, get_context_die (DECL_CONTEXT (decl)));
26699 at_import_die = lookup_type_die (TREE_TYPE (decl));
26700 gcc_assert (at_import_die);
26703 else
26705 at_import_die = lookup_decl_die (decl);
26706 if (!at_import_die)
26708 /* If we're trying to avoid duplicate debug info, we may not have
26709 emitted the member decl for this field. Emit it now. */
26710 if (TREE_CODE (decl) == FIELD_DECL)
26712 tree type = DECL_CONTEXT (decl);
26714 if (TYPE_CONTEXT (type)
26715 && TYPE_P (TYPE_CONTEXT (type))
26716 && !should_emit_struct_debug (TYPE_CONTEXT (type),
26717 DINFO_USAGE_DIR_USE))
26718 return;
26719 gen_type_die_for_member (type, decl,
26720 get_context_die (TYPE_CONTEXT (type)));
26722 if (TREE_CODE (decl) == NAMELIST_DECL)
26723 at_import_die = gen_namelist_decl (DECL_NAME (decl),
26724 get_context_die (DECL_CONTEXT (decl)),
26725 NULL_TREE);
26726 else
26727 at_import_die = force_decl_die (decl);
26731 if (TREE_CODE (decl) == NAMESPACE_DECL)
26733 if (dwarf_version >= 3 || !dwarf_strict)
26734 imported_die = new_die (DW_TAG_imported_module,
26735 lexical_block_die,
26736 lexical_block);
26737 else
26738 return;
26740 else
26741 imported_die = new_die (DW_TAG_imported_declaration,
26742 lexical_block_die,
26743 lexical_block);
26745 add_AT_file (imported_die, DW_AT_decl_file, lookup_filename (xloc.file));
26746 add_AT_unsigned (imported_die, DW_AT_decl_line, xloc.line);
26747 if (debug_column_info && xloc.column)
26748 add_AT_unsigned (imported_die, DW_AT_decl_column, xloc.column);
26749 if (name)
26750 add_AT_string (imported_die, DW_AT_name,
26751 IDENTIFIER_POINTER (name));
26752 add_AT_die_ref (imported_die, DW_AT_import, at_import_die);
26755 /* Output debug information for imported module or decl DECL.
26756 NAME is non-NULL name in context if the decl has been renamed.
26757 CHILD is true if decl is one of the renamed decls as part of
26758 importing whole module.
26759 IMPLICIT is set if this hook is called for an implicit import
26760 such as inline namespace. */
26762 static void
26763 dwarf2out_imported_module_or_decl (tree decl, tree name, tree context,
26764 bool child, bool implicit)
26766 /* dw_die_ref at_import_die; */
26767 dw_die_ref scope_die;
26769 if (debug_info_level <= DINFO_LEVEL_TERSE)
26770 return;
26772 gcc_assert (decl);
26774 /* For DWARF5, just DW_AT_export_symbols on the DW_TAG_namespace
26775 should be enough, for DWARF4 and older even if we emit as extension
26776 DW_AT_export_symbols add the implicit DW_TAG_imported_module anyway
26777 for the benefit of consumers unaware of DW_AT_export_symbols. */
26778 if (implicit
26779 && dwarf_version >= 5
26780 && lang_hooks.decls.decl_dwarf_attribute (decl,
26781 DW_AT_export_symbols) == 1)
26782 return;
26784 set_early_dwarf s;
26786 /* To emit DW_TAG_imported_module or DW_TAG_imported_decl, we need two DIEs.
26787 We need decl DIE for reference and scope die. First, get DIE for the decl
26788 itself. */
26790 /* Get the scope die for decl context. Use comp_unit_die for global module
26791 or decl. If die is not found for non globals, force new die. */
26792 if (context
26793 && TYPE_P (context)
26794 && !should_emit_struct_debug (context, DINFO_USAGE_DIR_USE))
26795 return;
26797 scope_die = get_context_die (context);
26799 if (child)
26801 /* DW_TAG_imported_module was introduced in the DWARFv3 specification, so
26802 there is nothing we can do, here. */
26803 if (dwarf_version < 3 && dwarf_strict)
26804 return;
26806 gcc_assert (scope_die->die_child);
26807 gcc_assert (scope_die->die_child->die_tag == DW_TAG_imported_module);
26808 gcc_assert (TREE_CODE (decl) != NAMESPACE_DECL);
26809 scope_die = scope_die->die_child;
26812 /* OK, now we have DIEs for decl as well as scope. Emit imported die. */
26813 dwarf2out_imported_module_or_decl_1 (decl, name, context, scope_die);
26816 /* Output debug information for namelists. */
26818 static dw_die_ref
26819 gen_namelist_decl (tree name, dw_die_ref scope_die, tree item_decls)
26821 dw_die_ref nml_die, nml_item_die, nml_item_ref_die;
26822 tree value;
26823 unsigned i;
26825 if (debug_info_level <= DINFO_LEVEL_TERSE)
26826 return NULL;
26828 gcc_assert (scope_die != NULL);
26829 nml_die = new_die (DW_TAG_namelist, scope_die, NULL);
26830 add_AT_string (nml_die, DW_AT_name, IDENTIFIER_POINTER (name));
26832 /* If there are no item_decls, we have a nondefining namelist, e.g.
26833 with USE association; hence, set DW_AT_declaration. */
26834 if (item_decls == NULL_TREE)
26836 add_AT_flag (nml_die, DW_AT_declaration, 1);
26837 return nml_die;
26840 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (item_decls), i, value)
26842 nml_item_ref_die = lookup_decl_die (value);
26843 if (!nml_item_ref_die)
26844 nml_item_ref_die = force_decl_die (value);
26846 nml_item_die = new_die (DW_TAG_namelist_item, nml_die, NULL);
26847 add_AT_die_ref (nml_item_die, DW_AT_namelist_items, nml_item_ref_die);
26849 return nml_die;
26853 /* Write the debugging output for DECL and return the DIE. */
26855 static void
26856 dwarf2out_decl (tree decl)
26858 dw_die_ref context_die = comp_unit_die ();
26860 switch (TREE_CODE (decl))
26862 case ERROR_MARK:
26863 return;
26865 case FUNCTION_DECL:
26866 /* If we're a nested function, initially use a parent of NULL; if we're
26867 a plain function, this will be fixed up in decls_for_scope. If
26868 we're a method, it will be ignored, since we already have a DIE.
26869 Avoid doing this late though since clones of class methods may
26870 otherwise end up in limbo and create type DIEs late. */
26871 if (early_dwarf
26872 && decl_function_context (decl)
26873 /* But if we're in terse mode, we don't care about scope. */
26874 && debug_info_level > DINFO_LEVEL_TERSE)
26875 context_die = NULL;
26876 break;
26878 case VAR_DECL:
26879 /* For local statics lookup proper context die. */
26880 if (local_function_static (decl))
26881 context_die = lookup_decl_die (DECL_CONTEXT (decl));
26883 /* If we are in terse mode, don't generate any DIEs to represent any
26884 variable declarations or definitions. */
26885 if (debug_info_level <= DINFO_LEVEL_TERSE)
26886 return;
26887 break;
26889 case CONST_DECL:
26890 if (debug_info_level <= DINFO_LEVEL_TERSE)
26891 return;
26892 if (!is_fortran () && !is_ada () && !is_dlang ())
26893 return;
26894 if (TREE_STATIC (decl) && decl_function_context (decl))
26895 context_die = lookup_decl_die (DECL_CONTEXT (decl));
26896 break;
26898 case NAMESPACE_DECL:
26899 case IMPORTED_DECL:
26900 if (debug_info_level <= DINFO_LEVEL_TERSE)
26901 return;
26902 if (lookup_decl_die (decl) != NULL)
26903 return;
26904 break;
26906 case TYPE_DECL:
26907 /* Don't emit stubs for types unless they are needed by other DIEs. */
26908 if (TYPE_DECL_SUPPRESS_DEBUG (decl))
26909 return;
26911 /* Don't bother trying to generate any DIEs to represent any of the
26912 normal built-in types for the language we are compiling. */
26913 if (DECL_IS_BUILTIN (decl))
26914 return;
26916 /* If we are in terse mode, don't generate any DIEs for types. */
26917 if (debug_info_level <= DINFO_LEVEL_TERSE)
26918 return;
26920 /* If we're a function-scope tag, initially use a parent of NULL;
26921 this will be fixed up in decls_for_scope. */
26922 if (decl_function_context (decl))
26923 context_die = NULL;
26925 break;
26927 case NAMELIST_DECL:
26928 break;
26930 default:
26931 return;
26934 gen_decl_die (decl, NULL, NULL, context_die);
26936 if (flag_checking)
26938 dw_die_ref die = lookup_decl_die (decl);
26939 if (die)
26940 check_die (die);
26944 /* Write the debugging output for DECL. */
26946 static void
26947 dwarf2out_function_decl (tree decl)
26949 dwarf2out_decl (decl);
26950 call_arg_locations = NULL;
26951 call_arg_loc_last = NULL;
26952 call_site_count = -1;
26953 tail_call_site_count = -1;
26954 decl_loc_table->empty ();
26955 cached_dw_loc_list_table->empty ();
26958 /* Output a marker (i.e. a label) for the beginning of the generated code for
26959 a lexical block. */
26961 static void
26962 dwarf2out_begin_block (unsigned int line ATTRIBUTE_UNUSED,
26963 unsigned int blocknum)
26965 switch_to_section (current_function_section ());
26966 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, BLOCK_BEGIN_LABEL, blocknum);
26969 /* Output a marker (i.e. a label) for the end of the generated code for a
26970 lexical block. */
26972 static void
26973 dwarf2out_end_block (unsigned int line ATTRIBUTE_UNUSED, unsigned int blocknum)
26975 switch_to_section (current_function_section ());
26976 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, BLOCK_END_LABEL, blocknum);
26979 /* Returns nonzero if it is appropriate not to emit any debugging
26980 information for BLOCK, because it doesn't contain any instructions.
26982 Don't allow this for blocks with nested functions or local classes
26983 as we would end up with orphans, and in the presence of scheduling
26984 we may end up calling them anyway. */
26986 static bool
26987 dwarf2out_ignore_block (const_tree block)
26989 tree decl;
26990 unsigned int i;
26992 for (decl = BLOCK_VARS (block); decl; decl = DECL_CHAIN (decl))
26993 if (TREE_CODE (decl) == FUNCTION_DECL
26994 || (TREE_CODE (decl) == TYPE_DECL && TYPE_DECL_IS_STUB (decl)))
26995 return 0;
26996 for (i = 0; i < BLOCK_NUM_NONLOCALIZED_VARS (block); i++)
26998 decl = BLOCK_NONLOCALIZED_VAR (block, i);
26999 if (TREE_CODE (decl) == FUNCTION_DECL
27000 || (TREE_CODE (decl) == TYPE_DECL && TYPE_DECL_IS_STUB (decl)))
27001 return 0;
27004 return 1;
27007 /* Hash table routines for file_hash. */
27009 bool
27010 dwarf_file_hasher::equal (dwarf_file_data *p1, const char *p2)
27012 return filename_cmp (p1->filename, p2) == 0;
27015 hashval_t
27016 dwarf_file_hasher::hash (dwarf_file_data *p)
27018 return htab_hash_string (p->filename);
27021 /* Lookup FILE_NAME (in the list of filenames that we know about here in
27022 dwarf2out.c) and return its "index". The index of each (known) filename is
27023 just a unique number which is associated with only that one filename. We
27024 need such numbers for the sake of generating labels (in the .debug_sfnames
27025 section) and references to those files numbers (in the .debug_srcinfo
27026 and .debug_macinfo sections). If the filename given as an argument is not
27027 found in our current list, add it to the list and assign it the next
27028 available unique index number. */
27030 static struct dwarf_file_data *
27031 lookup_filename (const char *file_name)
27033 struct dwarf_file_data * created;
27035 if (!file_name)
27036 return NULL;
27038 dwarf_file_data **slot
27039 = file_table->find_slot_with_hash (file_name, htab_hash_string (file_name),
27040 INSERT);
27041 if (*slot)
27042 return *slot;
27044 created = ggc_alloc<dwarf_file_data> ();
27045 created->filename = file_name;
27046 created->emitted_number = 0;
27047 *slot = created;
27048 return created;
27051 /* If the assembler will construct the file table, then translate the compiler
27052 internal file table number into the assembler file table number, and emit
27053 a .file directive if we haven't already emitted one yet. The file table
27054 numbers are different because we prune debug info for unused variables and
27055 types, which may include filenames. */
27057 static int
27058 maybe_emit_file (struct dwarf_file_data * fd)
27060 if (! fd->emitted_number)
27062 if (last_emitted_file)
27063 fd->emitted_number = last_emitted_file->emitted_number + 1;
27064 else
27065 fd->emitted_number = 1;
27066 last_emitted_file = fd;
27068 if (output_asm_line_debug_info ())
27070 fprintf (asm_out_file, "\t.file %u ", fd->emitted_number);
27071 output_quoted_string (asm_out_file,
27072 remap_debug_filename (fd->filename));
27073 fputc ('\n', asm_out_file);
27077 return fd->emitted_number;
27080 /* Schedule generation of a DW_AT_const_value attribute to DIE.
27081 That generation should happen after function debug info has been
27082 generated. The value of the attribute is the constant value of ARG. */
27084 static void
27085 append_entry_to_tmpl_value_parm_die_table (dw_die_ref die, tree arg)
27087 die_arg_entry entry;
27089 if (!die || !arg)
27090 return;
27092 gcc_assert (early_dwarf);
27094 if (!tmpl_value_parm_die_table)
27095 vec_alloc (tmpl_value_parm_die_table, 32);
27097 entry.die = die;
27098 entry.arg = arg;
27099 vec_safe_push (tmpl_value_parm_die_table, entry);
27102 /* Return TRUE if T is an instance of generic type, FALSE
27103 otherwise. */
27105 static bool
27106 generic_type_p (tree t)
27108 if (t == NULL_TREE || !TYPE_P (t))
27109 return false;
27110 return lang_hooks.get_innermost_generic_parms (t) != NULL_TREE;
27113 /* Schedule the generation of the generic parameter dies for the
27114 instance of generic type T. The proper generation itself is later
27115 done by gen_scheduled_generic_parms_dies. */
27117 static void
27118 schedule_generic_params_dies_gen (tree t)
27120 if (!generic_type_p (t))
27121 return;
27123 gcc_assert (early_dwarf);
27125 if (!generic_type_instances)
27126 vec_alloc (generic_type_instances, 256);
27128 vec_safe_push (generic_type_instances, t);
27131 /* Add a DW_AT_const_value attribute to DIEs that were scheduled
27132 by append_entry_to_tmpl_value_parm_die_table. This function must
27133 be called after function DIEs have been generated. */
27135 static void
27136 gen_remaining_tmpl_value_param_die_attribute (void)
27138 if (tmpl_value_parm_die_table)
27140 unsigned i, j;
27141 die_arg_entry *e;
27143 /* We do this in two phases - first get the cases we can
27144 handle during early-finish, preserving those we cannot
27145 (containing symbolic constants where we don't yet know
27146 whether we are going to output the referenced symbols).
27147 For those we try again at late-finish. */
27148 j = 0;
27149 FOR_EACH_VEC_ELT (*tmpl_value_parm_die_table, i, e)
27151 if (!e->die->removed
27152 && !tree_add_const_value_attribute (e->die, e->arg))
27154 dw_loc_descr_ref loc = NULL;
27155 if (! early_dwarf
27156 && (dwarf_version >= 5 || !dwarf_strict))
27157 loc = loc_descriptor_from_tree (e->arg, 2, NULL);
27158 if (loc)
27159 add_AT_loc (e->die, DW_AT_location, loc);
27160 else
27161 (*tmpl_value_parm_die_table)[j++] = *e;
27164 tmpl_value_parm_die_table->truncate (j);
27168 /* Generate generic parameters DIEs for instances of generic types
27169 that have been previously scheduled by
27170 schedule_generic_params_dies_gen. This function must be called
27171 after all the types of the CU have been laid out. */
27173 static void
27174 gen_scheduled_generic_parms_dies (void)
27176 unsigned i;
27177 tree t;
27179 if (!generic_type_instances)
27180 return;
27182 FOR_EACH_VEC_ELT (*generic_type_instances, i, t)
27183 if (COMPLETE_TYPE_P (t))
27184 gen_generic_params_dies (t);
27186 generic_type_instances = NULL;
27190 /* Replace DW_AT_name for the decl with name. */
27192 static void
27193 dwarf2out_set_name (tree decl, tree name)
27195 dw_die_ref die;
27196 dw_attr_node *attr;
27197 const char *dname;
27199 die = TYPE_SYMTAB_DIE (decl);
27200 if (!die)
27201 return;
27203 dname = dwarf2_name (name, 0);
27204 if (!dname)
27205 return;
27207 attr = get_AT (die, DW_AT_name);
27208 if (attr)
27210 struct indirect_string_node *node;
27212 node = find_AT_string (dname);
27213 /* replace the string. */
27214 attr->dw_attr_val.v.val_str = node;
27217 else
27218 add_name_attribute (die, dname);
27221 /* True if before or during processing of the first function being emitted. */
27222 static bool in_first_function_p = true;
27223 /* True if loc_note during dwarf2out_var_location call might still be
27224 before first real instruction at address equal to .Ltext0. */
27225 static bool maybe_at_text_label_p = true;
27226 /* One above highest N where .LVLN label might be equal to .Ltext0 label. */
27227 static unsigned int first_loclabel_num_not_at_text_label;
27229 /* Look ahead for a real insn, or for a begin stmt marker. */
27231 static rtx_insn *
27232 dwarf2out_next_real_insn (rtx_insn *loc_note)
27234 rtx_insn *next_real = NEXT_INSN (loc_note);
27236 while (next_real)
27237 if (INSN_P (next_real))
27238 break;
27239 else
27240 next_real = NEXT_INSN (next_real);
27242 return next_real;
27245 /* Called by the final INSN scan whenever we see a var location. We
27246 use it to drop labels in the right places, and throw the location in
27247 our lookup table. */
27249 static void
27250 dwarf2out_var_location (rtx_insn *loc_note)
27252 char loclabel[MAX_ARTIFICIAL_LABEL_BYTES + 2];
27253 struct var_loc_node *newloc;
27254 rtx_insn *next_real, *next_note;
27255 rtx_insn *call_insn = NULL;
27256 static const char *last_label;
27257 static const char *last_postcall_label;
27258 static bool last_in_cold_section_p;
27259 static rtx_insn *expected_next_loc_note;
27260 tree decl;
27261 bool var_loc_p;
27262 var_loc_view view = 0;
27264 if (!NOTE_P (loc_note))
27266 if (CALL_P (loc_note))
27268 maybe_reset_location_view (loc_note, cur_line_info_table);
27269 call_site_count++;
27270 if (SIBLING_CALL_P (loc_note))
27271 tail_call_site_count++;
27272 if (find_reg_note (loc_note, REG_CALL_ARG_LOCATION, NULL_RTX))
27274 call_insn = loc_note;
27275 loc_note = NULL;
27276 var_loc_p = false;
27278 next_real = dwarf2out_next_real_insn (call_insn);
27279 next_note = NULL;
27280 cached_next_real_insn = NULL;
27281 goto create_label;
27283 if (optimize == 0 && !flag_var_tracking)
27285 /* When the var-tracking pass is not running, there is no note
27286 for indirect calls whose target is compile-time known. In this
27287 case, process such calls specifically so that we generate call
27288 sites for them anyway. */
27289 rtx x = PATTERN (loc_note);
27290 if (GET_CODE (x) == PARALLEL)
27291 x = XVECEXP (x, 0, 0);
27292 if (GET_CODE (x) == SET)
27293 x = SET_SRC (x);
27294 if (GET_CODE (x) == CALL)
27295 x = XEXP (x, 0);
27296 if (!MEM_P (x)
27297 || GET_CODE (XEXP (x, 0)) != SYMBOL_REF
27298 || !SYMBOL_REF_DECL (XEXP (x, 0))
27299 || (TREE_CODE (SYMBOL_REF_DECL (XEXP (x, 0)))
27300 != FUNCTION_DECL))
27302 call_insn = loc_note;
27303 loc_note = NULL;
27304 var_loc_p = false;
27306 next_real = dwarf2out_next_real_insn (call_insn);
27307 next_note = NULL;
27308 cached_next_real_insn = NULL;
27309 goto create_label;
27313 else if (!debug_variable_location_views)
27314 gcc_unreachable ();
27315 else
27316 maybe_reset_location_view (loc_note, cur_line_info_table);
27318 return;
27321 var_loc_p = NOTE_KIND (loc_note) == NOTE_INSN_VAR_LOCATION;
27322 if (var_loc_p && !DECL_P (NOTE_VAR_LOCATION_DECL (loc_note)))
27323 return;
27325 /* Optimize processing a large consecutive sequence of location
27326 notes so we don't spend too much time in next_real_insn. If the
27327 next insn is another location note, remember the next_real_insn
27328 calculation for next time. */
27329 next_real = cached_next_real_insn;
27330 if (next_real)
27332 if (expected_next_loc_note != loc_note)
27333 next_real = NULL;
27336 next_note = NEXT_INSN (loc_note);
27337 if (! next_note
27338 || next_note->deleted ()
27339 || ! NOTE_P (next_note)
27340 || (NOTE_KIND (next_note) != NOTE_INSN_VAR_LOCATION
27341 && NOTE_KIND (next_note) != NOTE_INSN_BEGIN_STMT
27342 && NOTE_KIND (next_note) != NOTE_INSN_INLINE_ENTRY))
27343 next_note = NULL;
27345 if (! next_real)
27346 next_real = dwarf2out_next_real_insn (loc_note);
27348 if (next_note)
27350 expected_next_loc_note = next_note;
27351 cached_next_real_insn = next_real;
27353 else
27354 cached_next_real_insn = NULL;
27356 /* If there are no instructions which would be affected by this note,
27357 don't do anything. */
27358 if (var_loc_p
27359 && next_real == NULL_RTX
27360 && !NOTE_DURING_CALL_P (loc_note))
27361 return;
27363 create_label:
27365 if (next_real == NULL_RTX)
27366 next_real = get_last_insn ();
27368 /* If there were any real insns between note we processed last time
27369 and this note (or if it is the first note), clear
27370 last_{,postcall_}label so that they are not reused this time. */
27371 if (last_var_location_insn == NULL_RTX
27372 || last_var_location_insn != next_real
27373 || last_in_cold_section_p != in_cold_section_p)
27375 last_label = NULL;
27376 last_postcall_label = NULL;
27379 if (var_loc_p)
27381 const char *label
27382 = NOTE_DURING_CALL_P (loc_note) ? last_postcall_label : last_label;
27383 view = cur_line_info_table->view;
27384 decl = NOTE_VAR_LOCATION_DECL (loc_note);
27385 newloc = add_var_loc_to_decl (decl, loc_note, label, view);
27386 if (newloc == NULL)
27387 return;
27389 else
27391 decl = NULL_TREE;
27392 newloc = NULL;
27395 /* If there were no real insns between note we processed last time
27396 and this note, use the label we emitted last time. Otherwise
27397 create a new label and emit it. */
27398 if (last_label == NULL)
27400 ASM_GENERATE_INTERNAL_LABEL (loclabel, "LVL", loclabel_num);
27401 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, "LVL", loclabel_num);
27402 loclabel_num++;
27403 last_label = ggc_strdup (loclabel);
27404 /* See if loclabel might be equal to .Ltext0. If yes,
27405 bump first_loclabel_num_not_at_text_label. */
27406 if (!have_multiple_function_sections
27407 && in_first_function_p
27408 && maybe_at_text_label_p)
27410 static rtx_insn *last_start;
27411 rtx_insn *insn;
27412 for (insn = loc_note; insn; insn = previous_insn (insn))
27413 if (insn == last_start)
27414 break;
27415 else if (!NONDEBUG_INSN_P (insn))
27416 continue;
27417 else
27419 rtx body = PATTERN (insn);
27420 if (GET_CODE (body) == USE || GET_CODE (body) == CLOBBER)
27421 continue;
27422 /* Inline asm could occupy zero bytes. */
27423 else if (GET_CODE (body) == ASM_INPUT
27424 || asm_noperands (body) >= 0)
27425 continue;
27426 #ifdef HAVE_ATTR_length /* ??? We don't include insn-attr.h. */
27427 else if (HAVE_ATTR_length && get_attr_min_length (insn) == 0)
27428 continue;
27429 #endif
27430 else
27432 /* Assume insn has non-zero length. */
27433 maybe_at_text_label_p = false;
27434 break;
27437 if (maybe_at_text_label_p)
27439 last_start = loc_note;
27440 first_loclabel_num_not_at_text_label = loclabel_num;
27445 gcc_assert ((loc_note == NULL_RTX && call_insn != NULL_RTX)
27446 || (loc_note != NULL_RTX && call_insn == NULL_RTX));
27448 if (!var_loc_p)
27450 struct call_arg_loc_node *ca_loc
27451 = ggc_cleared_alloc<call_arg_loc_node> ();
27452 rtx_insn *prev = call_insn;
27454 ca_loc->call_arg_loc_note
27455 = find_reg_note (call_insn, REG_CALL_ARG_LOCATION, NULL_RTX);
27456 ca_loc->next = NULL;
27457 ca_loc->label = last_label;
27458 gcc_assert (prev
27459 && (CALL_P (prev)
27460 || (NONJUMP_INSN_P (prev)
27461 && GET_CODE (PATTERN (prev)) == SEQUENCE
27462 && CALL_P (XVECEXP (PATTERN (prev), 0, 0)))));
27463 if (!CALL_P (prev))
27464 prev = as_a <rtx_sequence *> (PATTERN (prev))->insn (0);
27465 ca_loc->tail_call_p = SIBLING_CALL_P (prev);
27467 /* Look for a SYMBOL_REF in the "prev" instruction. */
27468 rtx x = get_call_rtx_from (PATTERN (prev));
27469 if (x)
27471 /* Try to get the call symbol, if any. */
27472 if (MEM_P (XEXP (x, 0)))
27473 x = XEXP (x, 0);
27474 /* First, look for a memory access to a symbol_ref. */
27475 if (GET_CODE (XEXP (x, 0)) == SYMBOL_REF
27476 && SYMBOL_REF_DECL (XEXP (x, 0))
27477 && TREE_CODE (SYMBOL_REF_DECL (XEXP (x, 0))) == FUNCTION_DECL)
27478 ca_loc->symbol_ref = XEXP (x, 0);
27479 /* Otherwise, look at a compile-time known user-level function
27480 declaration. */
27481 else if (MEM_P (x)
27482 && MEM_EXPR (x)
27483 && TREE_CODE (MEM_EXPR (x)) == FUNCTION_DECL)
27484 ca_loc->symbol_ref = XEXP (DECL_RTL (MEM_EXPR (x)), 0);
27487 ca_loc->block = insn_scope (prev);
27488 if (call_arg_locations)
27489 call_arg_loc_last->next = ca_loc;
27490 else
27491 call_arg_locations = ca_loc;
27492 call_arg_loc_last = ca_loc;
27494 else if (loc_note != NULL_RTX && !NOTE_DURING_CALL_P (loc_note))
27496 newloc->label = last_label;
27497 newloc->view = view;
27499 else
27501 if (!last_postcall_label)
27503 sprintf (loclabel, "%s-1", last_label);
27504 last_postcall_label = ggc_strdup (loclabel);
27506 newloc->label = last_postcall_label;
27507 /* ??? This view is at last_label, not last_label-1, but we
27508 could only assume view at last_label-1 is zero if we could
27509 assume calls always have length greater than one. This is
27510 probably true in general, though there might be a rare
27511 exception to this rule, e.g. if a call insn is optimized out
27512 by target magic. Then, even the -1 in the label will be
27513 wrong, which might invalidate the range. Anyway, using view,
27514 though technically possibly incorrect, will work as far as
27515 ranges go: since L-1 is in the middle of the call insn,
27516 (L-1).0 and (L-1).V shouldn't make any difference, and having
27517 the loclist entry refer to the .loc entry might be useful, so
27518 leave it like this. */
27519 newloc->view = view;
27522 if (var_loc_p && flag_debug_asm)
27524 const char *name, *sep, *patstr;
27525 if (decl && DECL_NAME (decl))
27526 name = IDENTIFIER_POINTER (DECL_NAME (decl));
27527 else
27528 name = "";
27529 if (NOTE_VAR_LOCATION_LOC (loc_note))
27531 sep = " => ";
27532 patstr = str_pattern_slim (NOTE_VAR_LOCATION_LOC (loc_note));
27534 else
27536 sep = " ";
27537 patstr = "RESET";
27539 fprintf (asm_out_file, "\t%s DEBUG %s%s%s\n", ASM_COMMENT_START,
27540 name, sep, patstr);
27543 last_var_location_insn = next_real;
27544 last_in_cold_section_p = in_cold_section_p;
27547 /* Check whether BLOCK, a lexical block, is nested within OUTER, or is
27548 OUTER itself. If BOTHWAYS, check not only that BLOCK can reach
27549 OUTER through BLOCK_SUPERCONTEXT links, but also that there is a
27550 path from OUTER to BLOCK through BLOCK_SUBBLOCKs and
27551 BLOCK_FRAGMENT_ORIGIN links. */
27552 static bool
27553 block_within_block_p (tree block, tree outer, bool bothways)
27555 if (block == outer)
27556 return true;
27558 /* Quickly check that OUTER is up BLOCK's supercontext chain. */
27559 for (tree context = BLOCK_SUPERCONTEXT (block);
27560 context != outer;
27561 context = BLOCK_SUPERCONTEXT (context))
27562 if (!context || TREE_CODE (context) != BLOCK)
27563 return false;
27565 if (!bothways)
27566 return true;
27568 /* Now check that each block is actually referenced by its
27569 parent. */
27570 for (tree context = BLOCK_SUPERCONTEXT (block); ;
27571 context = BLOCK_SUPERCONTEXT (context))
27573 if (BLOCK_FRAGMENT_ORIGIN (context))
27575 gcc_assert (!BLOCK_SUBBLOCKS (context));
27576 context = BLOCK_FRAGMENT_ORIGIN (context);
27578 for (tree sub = BLOCK_SUBBLOCKS (context);
27579 sub != block;
27580 sub = BLOCK_CHAIN (sub))
27581 if (!sub)
27582 return false;
27583 if (context == outer)
27584 return true;
27585 else
27586 block = context;
27590 /* Called during final while assembling the marker of the entry point
27591 for an inlined function. */
27593 static void
27594 dwarf2out_inline_entry (tree block)
27596 gcc_assert (debug_inline_points);
27598 /* If we can't represent it, don't bother. */
27599 if (!(dwarf_version >= 3 || !dwarf_strict))
27600 return;
27602 gcc_assert (DECL_P (block_ultimate_origin (block)));
27604 /* Sanity check the block tree. This would catch a case in which
27605 BLOCK got removed from the tree reachable from the outermost
27606 lexical block, but got retained in markers. It would still link
27607 back to its parents, but some ancestor would be missing a link
27608 down the path to the sub BLOCK. If the block got removed, its
27609 BLOCK_NUMBER will not be a usable value. */
27610 if (flag_checking)
27611 gcc_assert (block_within_block_p (block,
27612 DECL_INITIAL (current_function_decl),
27613 true));
27615 gcc_assert (inlined_function_outer_scope_p (block));
27616 gcc_assert (!lookup_block_die (block));
27618 if (BLOCK_FRAGMENT_ORIGIN (block))
27619 block = BLOCK_FRAGMENT_ORIGIN (block);
27620 /* Can the entry point ever not be at the beginning of an
27621 unfragmented lexical block? */
27622 else if (!(BLOCK_FRAGMENT_CHAIN (block)
27623 || (cur_line_info_table
27624 && !ZERO_VIEW_P (cur_line_info_table->view))))
27625 return;
27627 if (!inline_entry_data_table)
27628 inline_entry_data_table
27629 = hash_table<inline_entry_data_hasher>::create_ggc (10);
27632 inline_entry_data **iedp
27633 = inline_entry_data_table->find_slot_with_hash (block,
27634 htab_hash_pointer (block),
27635 INSERT);
27636 if (*iedp)
27637 /* ??? Ideally, we'd record all entry points for the same inlined
27638 function (some may have been duplicated by e.g. unrolling), but
27639 we have no way to represent that ATM. */
27640 return;
27642 inline_entry_data *ied = *iedp = ggc_cleared_alloc<inline_entry_data> ();
27643 ied->block = block;
27644 ied->label_pfx = BLOCK_INLINE_ENTRY_LABEL;
27645 ied->label_num = BLOCK_NUMBER (block);
27646 if (cur_line_info_table)
27647 ied->view = cur_line_info_table->view;
27649 char label[MAX_ARTIFICIAL_LABEL_BYTES];
27651 ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_INLINE_ENTRY_LABEL,
27652 BLOCK_NUMBER (block));
27653 ASM_OUTPUT_LABEL (asm_out_file, label);
27656 /* Called from finalize_size_functions for size functions so that their body
27657 can be encoded in the debug info to describe the layout of variable-length
27658 structures. */
27660 static void
27661 dwarf2out_size_function (tree decl)
27663 function_to_dwarf_procedure (decl);
27666 /* Note in one location list that text section has changed. */
27669 var_location_switch_text_section_1 (var_loc_list **slot, void *)
27671 var_loc_list *list = *slot;
27672 if (list->first)
27673 list->last_before_switch
27674 = list->last->next ? list->last->next : list->last;
27675 return 1;
27678 /* Note in all location lists that text section has changed. */
27680 static void
27681 var_location_switch_text_section (void)
27683 if (decl_loc_table == NULL)
27684 return;
27686 decl_loc_table->traverse<void *, var_location_switch_text_section_1> (NULL);
27689 /* Create a new line number table. */
27691 static dw_line_info_table *
27692 new_line_info_table (void)
27694 dw_line_info_table *table;
27696 table = ggc_cleared_alloc<dw_line_info_table> ();
27697 table->file_num = 1;
27698 table->line_num = 1;
27699 table->is_stmt = DWARF_LINE_DEFAULT_IS_STMT_START;
27700 FORCE_RESET_NEXT_VIEW (table->view);
27701 table->symviews_since_reset = 0;
27703 return table;
27706 /* Lookup the "current" table into which we emit line info, so
27707 that we don't have to do it for every source line. */
27709 static void
27710 set_cur_line_info_table (section *sec)
27712 dw_line_info_table *table;
27714 if (sec == text_section)
27715 table = text_section_line_info;
27716 else if (sec == cold_text_section)
27718 table = cold_text_section_line_info;
27719 if (!table)
27721 cold_text_section_line_info = table = new_line_info_table ();
27722 table->end_label = cold_end_label;
27725 else
27727 const char *end_label;
27729 if (crtl->has_bb_partition)
27731 if (in_cold_section_p)
27732 end_label = crtl->subsections.cold_section_end_label;
27733 else
27734 end_label = crtl->subsections.hot_section_end_label;
27736 else
27738 char label[MAX_ARTIFICIAL_LABEL_BYTES];
27739 ASM_GENERATE_INTERNAL_LABEL (label, FUNC_END_LABEL,
27740 current_function_funcdef_no);
27741 end_label = ggc_strdup (label);
27744 table = new_line_info_table ();
27745 table->end_label = end_label;
27747 vec_safe_push (separate_line_info, table);
27750 if (output_asm_line_debug_info ())
27751 table->is_stmt = (cur_line_info_table
27752 ? cur_line_info_table->is_stmt
27753 : DWARF_LINE_DEFAULT_IS_STMT_START);
27754 cur_line_info_table = table;
27758 /* We need to reset the locations at the beginning of each
27759 function. We can't do this in the end_function hook, because the
27760 declarations that use the locations won't have been output when
27761 that hook is called. Also compute have_multiple_function_sections here. */
27763 static void
27764 dwarf2out_begin_function (tree fun)
27766 section *sec = function_section (fun);
27768 if (sec != text_section)
27769 have_multiple_function_sections = true;
27771 if (crtl->has_bb_partition && !cold_text_section)
27773 gcc_assert (current_function_decl == fun);
27774 cold_text_section = unlikely_text_section ();
27775 switch_to_section (cold_text_section);
27776 ASM_OUTPUT_LABEL (asm_out_file, cold_text_section_label);
27777 switch_to_section (sec);
27780 dwarf2out_note_section_used ();
27781 call_site_count = 0;
27782 tail_call_site_count = 0;
27784 set_cur_line_info_table (sec);
27785 FORCE_RESET_NEXT_VIEW (cur_line_info_table->view);
27788 /* Helper function of dwarf2out_end_function, called only after emitting
27789 the very first function into assembly. Check if some .debug_loc range
27790 might end with a .LVL* label that could be equal to .Ltext0.
27791 In that case we must force using absolute addresses in .debug_loc ranges,
27792 because this range could be .LVLN-.Ltext0 .. .LVLM-.Ltext0 for
27793 .LVLN == .LVLM == .Ltext0, thus 0 .. 0, which is a .debug_loc
27794 list terminator.
27795 Set have_multiple_function_sections to true in that case and
27796 terminate htab traversal. */
27799 find_empty_loc_ranges_at_text_label (var_loc_list **slot, int)
27801 var_loc_list *entry = *slot;
27802 struct var_loc_node *node;
27804 node = entry->first;
27805 if (node && node->next && node->next->label)
27807 unsigned int i;
27808 const char *label = node->next->label;
27809 char loclabel[MAX_ARTIFICIAL_LABEL_BYTES];
27811 for (i = 0; i < first_loclabel_num_not_at_text_label; i++)
27813 ASM_GENERATE_INTERNAL_LABEL (loclabel, "LVL", i);
27814 if (strcmp (label, loclabel) == 0)
27816 have_multiple_function_sections = true;
27817 return 0;
27821 return 1;
27824 /* Hook called after emitting a function into assembly.
27825 This does something only for the very first function emitted. */
27827 static void
27828 dwarf2out_end_function (unsigned int)
27830 if (in_first_function_p
27831 && !have_multiple_function_sections
27832 && first_loclabel_num_not_at_text_label
27833 && decl_loc_table)
27834 decl_loc_table->traverse<int, find_empty_loc_ranges_at_text_label> (0);
27835 in_first_function_p = false;
27836 maybe_at_text_label_p = false;
27839 /* Temporary holder for dwarf2out_register_main_translation_unit. Used to let
27840 front-ends register a translation unit even before dwarf2out_init is
27841 called. */
27842 static tree main_translation_unit = NULL_TREE;
27844 /* Hook called by front-ends after they built their main translation unit.
27845 Associate comp_unit_die to UNIT. */
27847 static void
27848 dwarf2out_register_main_translation_unit (tree unit)
27850 gcc_assert (TREE_CODE (unit) == TRANSLATION_UNIT_DECL
27851 && main_translation_unit == NULL_TREE);
27852 main_translation_unit = unit;
27853 /* If dwarf2out_init has not been called yet, it will perform the association
27854 itself looking at main_translation_unit. */
27855 if (decl_die_table != NULL)
27856 equate_decl_number_to_die (unit, comp_unit_die ());
27859 /* Add OPCODE+VAL as an entry at the end of the opcode array in TABLE. */
27861 static void
27862 push_dw_line_info_entry (dw_line_info_table *table,
27863 enum dw_line_info_opcode opcode, unsigned int val)
27865 dw_line_info_entry e;
27866 e.opcode = opcode;
27867 e.val = val;
27868 vec_safe_push (table->entries, e);
27871 /* Output a label to mark the beginning of a source code line entry
27872 and record information relating to this source line, in
27873 'line_info_table' for later output of the .debug_line section. */
27874 /* ??? The discriminator parameter ought to be unsigned. */
27876 static void
27877 dwarf2out_source_line (unsigned int line, unsigned int column,
27878 const char *filename,
27879 int discriminator, bool is_stmt)
27881 unsigned int file_num;
27882 dw_line_info_table *table;
27883 static var_loc_view lvugid;
27885 if (debug_info_level < DINFO_LEVEL_TERSE)
27886 return;
27888 table = cur_line_info_table;
27890 if (line == 0)
27892 if (debug_variable_location_views
27893 && output_asm_line_debug_info ()
27894 && table && !RESETTING_VIEW_P (table->view))
27896 /* If we're using the assembler to compute view numbers, we
27897 can't issue a .loc directive for line zero, so we can't
27898 get a view number at this point. We might attempt to
27899 compute it from the previous view, or equate it to a
27900 subsequent view (though it might not be there!), but
27901 since we're omitting the line number entry, we might as
27902 well omit the view number as well. That means pretending
27903 it's a view number zero, which might very well turn out
27904 to be correct. ??? Extend the assembler so that the
27905 compiler could emit e.g. ".locview .LVU#", to output a
27906 view without changing line number information. We'd then
27907 have to count it in symviews_since_reset; when it's omitted,
27908 it doesn't count. */
27909 if (!zero_view_p)
27910 zero_view_p = BITMAP_GGC_ALLOC ();
27911 bitmap_set_bit (zero_view_p, table->view);
27912 if (flag_debug_asm)
27914 char label[MAX_ARTIFICIAL_LABEL_BYTES];
27915 ASM_GENERATE_INTERNAL_LABEL (label, "LVU", table->view);
27916 fprintf (asm_out_file, "\t%s line 0, omitted view ",
27917 ASM_COMMENT_START);
27918 assemble_name (asm_out_file, label);
27919 putc ('\n', asm_out_file);
27921 table->view = ++lvugid;
27923 return;
27926 /* The discriminator column was added in dwarf4. Simplify the below
27927 by simply removing it if we're not supposed to output it. */
27928 if (dwarf_version < 4 && dwarf_strict)
27929 discriminator = 0;
27931 if (!debug_column_info)
27932 column = 0;
27934 file_num = maybe_emit_file (lookup_filename (filename));
27936 /* ??? TODO: Elide duplicate line number entries. Traditionally,
27937 the debugger has used the second (possibly duplicate) line number
27938 at the beginning of the function to mark the end of the prologue.
27939 We could eliminate any other duplicates within the function. For
27940 Dwarf3, we ought to include the DW_LNS_set_prologue_end mark in
27941 that second line number entry. */
27942 /* Recall that this end-of-prologue indication is *not* the same thing
27943 as the end_prologue debug hook. The NOTE_INSN_PROLOGUE_END note,
27944 to which the hook corresponds, follows the last insn that was
27945 emitted by gen_prologue. What we need is to precede the first insn
27946 that had been emitted after NOTE_INSN_FUNCTION_BEG, i.e. the first
27947 insn that corresponds to something the user wrote. These may be
27948 very different locations once scheduling is enabled. */
27950 if (0 && file_num == table->file_num
27951 && line == table->line_num
27952 && column == table->column_num
27953 && discriminator == table->discrim_num
27954 && is_stmt == table->is_stmt)
27955 return;
27957 switch_to_section (current_function_section ());
27959 /* If requested, emit something human-readable. */
27960 if (flag_debug_asm)
27962 if (debug_column_info)
27963 fprintf (asm_out_file, "\t%s %s:%d:%d\n", ASM_COMMENT_START,
27964 filename, line, column);
27965 else
27966 fprintf (asm_out_file, "\t%s %s:%d\n", ASM_COMMENT_START,
27967 filename, line);
27970 if (output_asm_line_debug_info ())
27972 /* Emit the .loc directive understood by GNU as. */
27973 /* "\t.loc %u %u 0 is_stmt %u discriminator %u",
27974 file_num, line, is_stmt, discriminator */
27975 fputs ("\t.loc ", asm_out_file);
27976 fprint_ul (asm_out_file, file_num);
27977 putc (' ', asm_out_file);
27978 fprint_ul (asm_out_file, line);
27979 putc (' ', asm_out_file);
27980 fprint_ul (asm_out_file, column);
27982 if (is_stmt != table->is_stmt)
27984 #if HAVE_GAS_LOC_STMT
27985 fputs (" is_stmt ", asm_out_file);
27986 putc (is_stmt ? '1' : '0', asm_out_file);
27987 #endif
27989 if (SUPPORTS_DISCRIMINATOR && discriminator != 0)
27991 gcc_assert (discriminator > 0);
27992 fputs (" discriminator ", asm_out_file);
27993 fprint_ul (asm_out_file, (unsigned long) discriminator);
27995 if (debug_variable_location_views)
27997 if (!RESETTING_VIEW_P (table->view))
27999 table->symviews_since_reset++;
28000 if (table->symviews_since_reset > symview_upper_bound)
28001 symview_upper_bound = table->symviews_since_reset;
28002 /* When we're using the assembler to compute view
28003 numbers, we output symbolic labels after "view" in
28004 .loc directives, and the assembler will set them for
28005 us, so that we can refer to the view numbers in
28006 location lists. The only exceptions are when we know
28007 a view will be zero: "-0" is a forced reset, used
28008 e.g. in the beginning of functions, whereas "0" tells
28009 the assembler to check that there was a PC change
28010 since the previous view, in a way that implicitly
28011 resets the next view. */
28012 fputs (" view ", asm_out_file);
28013 char label[MAX_ARTIFICIAL_LABEL_BYTES];
28014 ASM_GENERATE_INTERNAL_LABEL (label, "LVU", table->view);
28015 assemble_name (asm_out_file, label);
28016 table->view = ++lvugid;
28018 else
28020 table->symviews_since_reset = 0;
28021 if (FORCE_RESETTING_VIEW_P (table->view))
28022 fputs (" view -0", asm_out_file);
28023 else
28024 fputs (" view 0", asm_out_file);
28025 /* Mark the present view as a zero view. Earlier debug
28026 binds may have already added its id to loclists to be
28027 emitted later, so we can't reuse the id for something
28028 else. However, it's good to know whether a view is
28029 known to be zero, because then we may be able to
28030 optimize out locviews that are all zeros, so take
28031 note of it in zero_view_p. */
28032 if (!zero_view_p)
28033 zero_view_p = BITMAP_GGC_ALLOC ();
28034 bitmap_set_bit (zero_view_p, lvugid);
28035 table->view = ++lvugid;
28038 putc ('\n', asm_out_file);
28040 else
28042 unsigned int label_num = ++line_info_label_num;
28044 targetm.asm_out.internal_label (asm_out_file, LINE_CODE_LABEL, label_num);
28046 if (debug_variable_location_views && !RESETTING_VIEW_P (table->view))
28047 push_dw_line_info_entry (table, LI_adv_address, label_num);
28048 else
28049 push_dw_line_info_entry (table, LI_set_address, label_num);
28050 if (debug_variable_location_views)
28052 bool resetting = FORCE_RESETTING_VIEW_P (table->view);
28053 if (resetting)
28054 table->view = 0;
28056 if (flag_debug_asm)
28057 fprintf (asm_out_file, "\t%s view %s%d\n",
28058 ASM_COMMENT_START,
28059 resetting ? "-" : "",
28060 table->view);
28062 table->view++;
28064 if (file_num != table->file_num)
28065 push_dw_line_info_entry (table, LI_set_file, file_num);
28066 if (discriminator != table->discrim_num)
28067 push_dw_line_info_entry (table, LI_set_discriminator, discriminator);
28068 if (is_stmt != table->is_stmt)
28069 push_dw_line_info_entry (table, LI_negate_stmt, 0);
28070 push_dw_line_info_entry (table, LI_set_line, line);
28071 if (debug_column_info)
28072 push_dw_line_info_entry (table, LI_set_column, column);
28075 table->file_num = file_num;
28076 table->line_num = line;
28077 table->column_num = column;
28078 table->discrim_num = discriminator;
28079 table->is_stmt = is_stmt;
28080 table->in_use = true;
28083 /* Record the beginning of a new source file. */
28085 static void
28086 dwarf2out_start_source_file (unsigned int lineno, const char *filename)
28088 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
28090 macinfo_entry e;
28091 e.code = DW_MACINFO_start_file;
28092 e.lineno = lineno;
28093 e.info = ggc_strdup (filename);
28094 vec_safe_push (macinfo_table, e);
28098 /* Record the end of a source file. */
28100 static void
28101 dwarf2out_end_source_file (unsigned int lineno ATTRIBUTE_UNUSED)
28103 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
28105 macinfo_entry e;
28106 e.code = DW_MACINFO_end_file;
28107 e.lineno = lineno;
28108 e.info = NULL;
28109 vec_safe_push (macinfo_table, e);
28113 /* Called from debug_define in toplev.c. The `buffer' parameter contains
28114 the tail part of the directive line, i.e. the part which is past the
28115 initial whitespace, #, whitespace, directive-name, whitespace part. */
28117 static void
28118 dwarf2out_define (unsigned int lineno ATTRIBUTE_UNUSED,
28119 const char *buffer ATTRIBUTE_UNUSED)
28121 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
28123 macinfo_entry e;
28124 /* Insert a dummy first entry to be able to optimize the whole
28125 predefined macro block using DW_MACRO_import. */
28126 if (macinfo_table->is_empty () && lineno <= 1)
28128 e.code = 0;
28129 e.lineno = 0;
28130 e.info = NULL;
28131 vec_safe_push (macinfo_table, e);
28133 e.code = DW_MACINFO_define;
28134 e.lineno = lineno;
28135 e.info = ggc_strdup (buffer);
28136 vec_safe_push (macinfo_table, e);
28140 /* Called from debug_undef in toplev.c. The `buffer' parameter contains
28141 the tail part of the directive line, i.e. the part which is past the
28142 initial whitespace, #, whitespace, directive-name, whitespace part. */
28144 static void
28145 dwarf2out_undef (unsigned int lineno ATTRIBUTE_UNUSED,
28146 const char *buffer ATTRIBUTE_UNUSED)
28148 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
28150 macinfo_entry e;
28151 /* Insert a dummy first entry to be able to optimize the whole
28152 predefined macro block using DW_MACRO_import. */
28153 if (macinfo_table->is_empty () && lineno <= 1)
28155 e.code = 0;
28156 e.lineno = 0;
28157 e.info = NULL;
28158 vec_safe_push (macinfo_table, e);
28160 e.code = DW_MACINFO_undef;
28161 e.lineno = lineno;
28162 e.info = ggc_strdup (buffer);
28163 vec_safe_push (macinfo_table, e);
28167 /* Helpers to manipulate hash table of CUs. */
28169 struct macinfo_entry_hasher : nofree_ptr_hash <macinfo_entry>
28171 static inline hashval_t hash (const macinfo_entry *);
28172 static inline bool equal (const macinfo_entry *, const macinfo_entry *);
28175 inline hashval_t
28176 macinfo_entry_hasher::hash (const macinfo_entry *entry)
28178 return htab_hash_string (entry->info);
28181 inline bool
28182 macinfo_entry_hasher::equal (const macinfo_entry *entry1,
28183 const macinfo_entry *entry2)
28185 return !strcmp (entry1->info, entry2->info);
28188 typedef hash_table<macinfo_entry_hasher> macinfo_hash_type;
28190 /* Output a single .debug_macinfo entry. */
28192 static void
28193 output_macinfo_op (macinfo_entry *ref)
28195 int file_num;
28196 size_t len;
28197 struct indirect_string_node *node;
28198 char label[MAX_ARTIFICIAL_LABEL_BYTES];
28199 struct dwarf_file_data *fd;
28201 switch (ref->code)
28203 case DW_MACINFO_start_file:
28204 fd = lookup_filename (ref->info);
28205 file_num = maybe_emit_file (fd);
28206 dw2_asm_output_data (1, DW_MACINFO_start_file, "Start new file");
28207 dw2_asm_output_data_uleb128 (ref->lineno,
28208 "Included from line number %lu",
28209 (unsigned long) ref->lineno);
28210 dw2_asm_output_data_uleb128 (file_num, "file %s", ref->info);
28211 break;
28212 case DW_MACINFO_end_file:
28213 dw2_asm_output_data (1, DW_MACINFO_end_file, "End file");
28214 break;
28215 case DW_MACINFO_define:
28216 case DW_MACINFO_undef:
28217 len = strlen (ref->info) + 1;
28218 if (!dwarf_strict
28219 && len > DWARF_OFFSET_SIZE
28220 && !DWARF2_INDIRECT_STRING_SUPPORT_MISSING_ON_TARGET
28221 && (debug_str_section->common.flags & SECTION_MERGE) != 0)
28223 ref->code = ref->code == DW_MACINFO_define
28224 ? DW_MACRO_define_strp : DW_MACRO_undef_strp;
28225 output_macinfo_op (ref);
28226 return;
28228 dw2_asm_output_data (1, ref->code,
28229 ref->code == DW_MACINFO_define
28230 ? "Define macro" : "Undefine macro");
28231 dw2_asm_output_data_uleb128 (ref->lineno, "At line number %lu",
28232 (unsigned long) ref->lineno);
28233 dw2_asm_output_nstring (ref->info, -1, "The macro");
28234 break;
28235 case DW_MACRO_define_strp:
28236 case DW_MACRO_undef_strp:
28237 /* NB: dwarf2out_finish performs:
28238 1. save_macinfo_strings
28239 2. hash table traverse of index_string
28240 3. output_macinfo -> output_macinfo_op
28241 4. output_indirect_strings
28242 -> hash table traverse of output_index_string
28244 When output_macinfo_op is called, all index strings have been
28245 added to hash table by save_macinfo_strings and we can't pass
28246 INSERT to find_slot_with_hash which may expand hash table, even
28247 if no insertion is needed, and change hash table traverse order
28248 between index_string and output_index_string. */
28249 node = find_AT_string (ref->info, NO_INSERT);
28250 gcc_assert (node
28251 && (node->form == DW_FORM_strp
28252 || node->form == dwarf_FORM (DW_FORM_strx)));
28253 dw2_asm_output_data (1, ref->code,
28254 ref->code == DW_MACRO_define_strp
28255 ? "Define macro strp"
28256 : "Undefine macro strp");
28257 dw2_asm_output_data_uleb128 (ref->lineno, "At line number %lu",
28258 (unsigned long) ref->lineno);
28259 if (node->form == DW_FORM_strp)
28260 dw2_asm_output_offset (DWARF_OFFSET_SIZE, node->label,
28261 debug_str_section, "The macro: \"%s\"",
28262 ref->info);
28263 else
28264 dw2_asm_output_data_uleb128 (node->index, "The macro: \"%s\"",
28265 ref->info);
28266 break;
28267 case DW_MACRO_import:
28268 dw2_asm_output_data (1, ref->code, "Import");
28269 ASM_GENERATE_INTERNAL_LABEL (label,
28270 DEBUG_MACRO_SECTION_LABEL,
28271 ref->lineno + macinfo_label_base);
28272 dw2_asm_output_offset (DWARF_OFFSET_SIZE, label, NULL, NULL);
28273 break;
28274 default:
28275 fprintf (asm_out_file, "%s unrecognized macinfo code %lu\n",
28276 ASM_COMMENT_START, (unsigned long) ref->code);
28277 break;
28281 /* Attempt to make a sequence of define/undef macinfo ops shareable with
28282 other compilation unit .debug_macinfo sections. IDX is the first
28283 index of a define/undef, return the number of ops that should be
28284 emitted in a comdat .debug_macinfo section and emit
28285 a DW_MACRO_import entry referencing it.
28286 If the define/undef entry should be emitted normally, return 0. */
28288 static unsigned
28289 optimize_macinfo_range (unsigned int idx, vec<macinfo_entry, va_gc> *files,
28290 macinfo_hash_type **macinfo_htab)
28292 macinfo_entry *first, *second, *cur, *inc;
28293 char linebuf[sizeof (HOST_WIDE_INT) * 3 + 1];
28294 unsigned char checksum[16];
28295 struct md5_ctx ctx;
28296 char *grp_name, *tail;
28297 const char *base;
28298 unsigned int i, count, encoded_filename_len, linebuf_len;
28299 macinfo_entry **slot;
28301 first = &(*macinfo_table)[idx];
28302 second = &(*macinfo_table)[idx + 1];
28304 /* Optimize only if there are at least two consecutive define/undef ops,
28305 and either all of them are before first DW_MACINFO_start_file
28306 with lineno {0,1} (i.e. predefined macro block), or all of them are
28307 in some included header file. */
28308 if (second->code != DW_MACINFO_define && second->code != DW_MACINFO_undef)
28309 return 0;
28310 if (vec_safe_is_empty (files))
28312 if (first->lineno > 1 || second->lineno > 1)
28313 return 0;
28315 else if (first->lineno == 0)
28316 return 0;
28318 /* Find the last define/undef entry that can be grouped together
28319 with first and at the same time compute md5 checksum of their
28320 codes, linenumbers and strings. */
28321 md5_init_ctx (&ctx);
28322 for (i = idx; macinfo_table->iterate (i, &cur); i++)
28323 if (cur->code != DW_MACINFO_define && cur->code != DW_MACINFO_undef)
28324 break;
28325 else if (vec_safe_is_empty (files) && cur->lineno > 1)
28326 break;
28327 else
28329 unsigned char code = cur->code;
28330 md5_process_bytes (&code, 1, &ctx);
28331 checksum_uleb128 (cur->lineno, &ctx);
28332 md5_process_bytes (cur->info, strlen (cur->info) + 1, &ctx);
28334 md5_finish_ctx (&ctx, checksum);
28335 count = i - idx;
28337 /* From the containing include filename (if any) pick up just
28338 usable characters from its basename. */
28339 if (vec_safe_is_empty (files))
28340 base = "";
28341 else
28342 base = lbasename (files->last ().info);
28343 for (encoded_filename_len = 0, i = 0; base[i]; i++)
28344 if (ISIDNUM (base[i]) || base[i] == '.')
28345 encoded_filename_len++;
28346 /* Count . at the end. */
28347 if (encoded_filename_len)
28348 encoded_filename_len++;
28350 sprintf (linebuf, HOST_WIDE_INT_PRINT_UNSIGNED, first->lineno);
28351 linebuf_len = strlen (linebuf);
28353 /* The group name format is: wmN.[<encoded filename>.]<lineno>.<md5sum> */
28354 grp_name = XALLOCAVEC (char, 4 + encoded_filename_len + linebuf_len + 1
28355 + 16 * 2 + 1);
28356 memcpy (grp_name, DWARF_OFFSET_SIZE == 4 ? "wm4." : "wm8.", 4);
28357 tail = grp_name + 4;
28358 if (encoded_filename_len)
28360 for (i = 0; base[i]; i++)
28361 if (ISIDNUM (base[i]) || base[i] == '.')
28362 *tail++ = base[i];
28363 *tail++ = '.';
28365 memcpy (tail, linebuf, linebuf_len);
28366 tail += linebuf_len;
28367 *tail++ = '.';
28368 for (i = 0; i < 16; i++)
28369 sprintf (tail + i * 2, "%02x", checksum[i] & 0xff);
28371 /* Construct a macinfo_entry for DW_MACRO_import
28372 in the empty vector entry before the first define/undef. */
28373 inc = &(*macinfo_table)[idx - 1];
28374 inc->code = DW_MACRO_import;
28375 inc->lineno = 0;
28376 inc->info = ggc_strdup (grp_name);
28377 if (!*macinfo_htab)
28378 *macinfo_htab = new macinfo_hash_type (10);
28379 /* Avoid emitting duplicates. */
28380 slot = (*macinfo_htab)->find_slot (inc, INSERT);
28381 if (*slot != NULL)
28383 inc->code = 0;
28384 inc->info = NULL;
28385 /* If such an entry has been used before, just emit
28386 a DW_MACRO_import op. */
28387 inc = *slot;
28388 output_macinfo_op (inc);
28389 /* And clear all macinfo_entry in the range to avoid emitting them
28390 in the second pass. */
28391 for (i = idx; macinfo_table->iterate (i, &cur) && i < idx + count; i++)
28393 cur->code = 0;
28394 cur->info = NULL;
28397 else
28399 *slot = inc;
28400 inc->lineno = (*macinfo_htab)->elements ();
28401 output_macinfo_op (inc);
28403 return count;
28406 /* Save any strings needed by the macinfo table in the debug str
28407 table. All strings must be collected into the table by the time
28408 index_string is called. */
28410 static void
28411 save_macinfo_strings (void)
28413 unsigned len;
28414 unsigned i;
28415 macinfo_entry *ref;
28417 for (i = 0; macinfo_table && macinfo_table->iterate (i, &ref); i++)
28419 switch (ref->code)
28421 /* Match the logic in output_macinfo_op to decide on
28422 indirect strings. */
28423 case DW_MACINFO_define:
28424 case DW_MACINFO_undef:
28425 len = strlen (ref->info) + 1;
28426 if (!dwarf_strict
28427 && len > DWARF_OFFSET_SIZE
28428 && !DWARF2_INDIRECT_STRING_SUPPORT_MISSING_ON_TARGET
28429 && (debug_str_section->common.flags & SECTION_MERGE) != 0)
28430 set_indirect_string (find_AT_string (ref->info));
28431 break;
28432 case DW_MACINFO_start_file:
28433 /* -gsplit-dwarf -g3 will also output filename as indirect
28434 string. */
28435 if (!dwarf_split_debug_info)
28436 break;
28437 /* Fall through. */
28438 case DW_MACRO_define_strp:
28439 case DW_MACRO_undef_strp:
28440 set_indirect_string (find_AT_string (ref->info));
28441 break;
28442 default:
28443 break;
28448 /* Output macinfo section(s). */
28450 static void
28451 output_macinfo (const char *debug_line_label, bool early_lto_debug)
28453 unsigned i;
28454 unsigned long length = vec_safe_length (macinfo_table);
28455 macinfo_entry *ref;
28456 vec<macinfo_entry, va_gc> *files = NULL;
28457 macinfo_hash_type *macinfo_htab = NULL;
28458 char dl_section_ref[MAX_ARTIFICIAL_LABEL_BYTES];
28460 if (! length)
28461 return;
28463 /* output_macinfo* uses these interchangeably. */
28464 gcc_assert ((int) DW_MACINFO_define == (int) DW_MACRO_define
28465 && (int) DW_MACINFO_undef == (int) DW_MACRO_undef
28466 && (int) DW_MACINFO_start_file == (int) DW_MACRO_start_file
28467 && (int) DW_MACINFO_end_file == (int) DW_MACRO_end_file);
28469 /* AIX Assembler inserts the length, so adjust the reference to match the
28470 offset expected by debuggers. */
28471 strcpy (dl_section_ref, debug_line_label);
28472 if (XCOFF_DEBUGGING_INFO)
28473 strcat (dl_section_ref, DWARF_INITIAL_LENGTH_SIZE_STR);
28475 /* For .debug_macro emit the section header. */
28476 if (!dwarf_strict || dwarf_version >= 5)
28478 dw2_asm_output_data (2, dwarf_version >= 5 ? 5 : 4,
28479 "DWARF macro version number");
28480 if (DWARF_OFFSET_SIZE == 8)
28481 dw2_asm_output_data (1, 3, "Flags: 64-bit, lineptr present");
28482 else
28483 dw2_asm_output_data (1, 2, "Flags: 32-bit, lineptr present");
28484 dw2_asm_output_offset (DWARF_OFFSET_SIZE, debug_line_label,
28485 debug_line_section, NULL);
28488 /* In the first loop, it emits the primary .debug_macinfo section
28489 and after each emitted op the macinfo_entry is cleared.
28490 If a longer range of define/undef ops can be optimized using
28491 DW_MACRO_import, the DW_MACRO_import op is emitted and kept in
28492 the vector before the first define/undef in the range and the
28493 whole range of define/undef ops is not emitted and kept. */
28494 for (i = 0; macinfo_table->iterate (i, &ref); i++)
28496 switch (ref->code)
28498 case DW_MACINFO_start_file:
28499 vec_safe_push (files, *ref);
28500 break;
28501 case DW_MACINFO_end_file:
28502 if (!vec_safe_is_empty (files))
28503 files->pop ();
28504 break;
28505 case DW_MACINFO_define:
28506 case DW_MACINFO_undef:
28507 if ((!dwarf_strict || dwarf_version >= 5)
28508 && HAVE_COMDAT_GROUP
28509 && vec_safe_length (files) != 1
28510 && i > 0
28511 && i + 1 < length
28512 && (*macinfo_table)[i - 1].code == 0)
28514 unsigned count = optimize_macinfo_range (i, files, &macinfo_htab);
28515 if (count)
28517 i += count - 1;
28518 continue;
28521 break;
28522 case 0:
28523 /* A dummy entry may be inserted at the beginning to be able
28524 to optimize the whole block of predefined macros. */
28525 if (i == 0)
28526 continue;
28527 default:
28528 break;
28530 output_macinfo_op (ref);
28531 ref->info = NULL;
28532 ref->code = 0;
28535 if (!macinfo_htab)
28536 return;
28538 /* Save the number of transparent includes so we can adjust the
28539 label number for the fat LTO object DWARF. */
28540 unsigned macinfo_label_base_adj = macinfo_htab->elements ();
28542 delete macinfo_htab;
28543 macinfo_htab = NULL;
28545 /* If any DW_MACRO_import were used, on those DW_MACRO_import entries
28546 terminate the current chain and switch to a new comdat .debug_macinfo
28547 section and emit the define/undef entries within it. */
28548 for (i = 0; macinfo_table->iterate (i, &ref); i++)
28549 switch (ref->code)
28551 case 0:
28552 continue;
28553 case DW_MACRO_import:
28555 char label[MAX_ARTIFICIAL_LABEL_BYTES];
28556 tree comdat_key = get_identifier (ref->info);
28557 /* Terminate the previous .debug_macinfo section. */
28558 dw2_asm_output_data (1, 0, "End compilation unit");
28559 targetm.asm_out.named_section (debug_macinfo_section_name,
28560 SECTION_DEBUG
28561 | SECTION_LINKONCE
28562 | (early_lto_debug
28563 ? SECTION_EXCLUDE : 0),
28564 comdat_key);
28565 ASM_GENERATE_INTERNAL_LABEL (label,
28566 DEBUG_MACRO_SECTION_LABEL,
28567 ref->lineno + macinfo_label_base);
28568 ASM_OUTPUT_LABEL (asm_out_file, label);
28569 ref->code = 0;
28570 ref->info = NULL;
28571 dw2_asm_output_data (2, dwarf_version >= 5 ? 5 : 4,
28572 "DWARF macro version number");
28573 if (DWARF_OFFSET_SIZE == 8)
28574 dw2_asm_output_data (1, 1, "Flags: 64-bit");
28575 else
28576 dw2_asm_output_data (1, 0, "Flags: 32-bit");
28578 break;
28579 case DW_MACINFO_define:
28580 case DW_MACINFO_undef:
28581 output_macinfo_op (ref);
28582 ref->code = 0;
28583 ref->info = NULL;
28584 break;
28585 default:
28586 gcc_unreachable ();
28589 macinfo_label_base += macinfo_label_base_adj;
28592 /* Initialize the various sections and labels for dwarf output and prefix
28593 them with PREFIX if non-NULL. Returns the generation (zero based
28594 number of times function was called). */
28596 static unsigned
28597 init_sections_and_labels (bool early_lto_debug)
28599 /* As we may get called multiple times have a generation count for
28600 labels. */
28601 static unsigned generation = 0;
28603 if (early_lto_debug)
28605 if (!dwarf_split_debug_info)
28607 debug_info_section = get_section (DEBUG_LTO_INFO_SECTION,
28608 SECTION_DEBUG | SECTION_EXCLUDE,
28609 NULL);
28610 debug_abbrev_section = get_section (DEBUG_LTO_ABBREV_SECTION,
28611 SECTION_DEBUG | SECTION_EXCLUDE,
28612 NULL);
28613 debug_macinfo_section_name
28614 = ((dwarf_strict && dwarf_version < 5)
28615 ? DEBUG_LTO_MACINFO_SECTION : DEBUG_LTO_MACRO_SECTION);
28616 debug_macinfo_section = get_section (debug_macinfo_section_name,
28617 SECTION_DEBUG
28618 | SECTION_EXCLUDE, NULL);
28620 else
28622 /* ??? Which of the following do we need early? */
28623 debug_info_section = get_section (DEBUG_LTO_DWO_INFO_SECTION,
28624 SECTION_DEBUG | SECTION_EXCLUDE,
28625 NULL);
28626 debug_abbrev_section = get_section (DEBUG_LTO_DWO_ABBREV_SECTION,
28627 SECTION_DEBUG | SECTION_EXCLUDE,
28628 NULL);
28629 debug_skeleton_info_section = get_section (DEBUG_LTO_INFO_SECTION,
28630 SECTION_DEBUG
28631 | SECTION_EXCLUDE, NULL);
28632 debug_skeleton_abbrev_section
28633 = get_section (DEBUG_LTO_ABBREV_SECTION,
28634 SECTION_DEBUG | SECTION_EXCLUDE, NULL);
28635 ASM_GENERATE_INTERNAL_LABEL (debug_skeleton_abbrev_section_label,
28636 DEBUG_SKELETON_ABBREV_SECTION_LABEL,
28637 generation);
28639 /* Somewhat confusing detail: The skeleton_[abbrev|info] sections
28640 stay in the main .o, but the skeleton_line goes into the split
28641 off dwo. */
28642 debug_skeleton_line_section
28643 = get_section (DEBUG_LTO_LINE_SECTION,
28644 SECTION_DEBUG | SECTION_EXCLUDE, NULL);
28645 ASM_GENERATE_INTERNAL_LABEL (debug_skeleton_line_section_label,
28646 DEBUG_SKELETON_LINE_SECTION_LABEL,
28647 generation);
28648 debug_str_offsets_section
28649 = get_section (DEBUG_LTO_DWO_STR_OFFSETS_SECTION,
28650 SECTION_DEBUG | SECTION_EXCLUDE,
28651 NULL);
28652 ASM_GENERATE_INTERNAL_LABEL (debug_skeleton_info_section_label,
28653 DEBUG_SKELETON_INFO_SECTION_LABEL,
28654 generation);
28655 debug_str_dwo_section = get_section (DEBUG_LTO_STR_DWO_SECTION,
28656 DEBUG_STR_DWO_SECTION_FLAGS,
28657 NULL);
28658 debug_macinfo_section_name
28659 = ((dwarf_strict && dwarf_version < 5)
28660 ? DEBUG_LTO_DWO_MACINFO_SECTION : DEBUG_LTO_DWO_MACRO_SECTION);
28661 debug_macinfo_section = get_section (debug_macinfo_section_name,
28662 SECTION_DEBUG | SECTION_EXCLUDE,
28663 NULL);
28665 /* For macro info and the file table we have to refer to a
28666 debug_line section. */
28667 debug_line_section = get_section (DEBUG_LTO_LINE_SECTION,
28668 SECTION_DEBUG | SECTION_EXCLUDE, NULL);
28669 ASM_GENERATE_INTERNAL_LABEL (debug_line_section_label,
28670 DEBUG_LINE_SECTION_LABEL, generation);
28672 debug_str_section = get_section (DEBUG_LTO_STR_SECTION,
28673 DEBUG_STR_SECTION_FLAGS
28674 | SECTION_EXCLUDE, NULL);
28675 if (!dwarf_split_debug_info)
28676 debug_line_str_section
28677 = get_section (DEBUG_LTO_LINE_STR_SECTION,
28678 DEBUG_STR_SECTION_FLAGS | SECTION_EXCLUDE, NULL);
28680 else
28682 if (!dwarf_split_debug_info)
28684 debug_info_section = get_section (DEBUG_INFO_SECTION,
28685 SECTION_DEBUG, NULL);
28686 debug_abbrev_section = get_section (DEBUG_ABBREV_SECTION,
28687 SECTION_DEBUG, NULL);
28688 debug_loc_section = get_section (dwarf_version >= 5
28689 ? DEBUG_LOCLISTS_SECTION
28690 : DEBUG_LOC_SECTION,
28691 SECTION_DEBUG, NULL);
28692 debug_macinfo_section_name
28693 = ((dwarf_strict && dwarf_version < 5)
28694 ? DEBUG_MACINFO_SECTION : DEBUG_MACRO_SECTION);
28695 debug_macinfo_section = get_section (debug_macinfo_section_name,
28696 SECTION_DEBUG, NULL);
28698 else
28700 debug_info_section = get_section (DEBUG_DWO_INFO_SECTION,
28701 SECTION_DEBUG | SECTION_EXCLUDE,
28702 NULL);
28703 debug_abbrev_section = get_section (DEBUG_DWO_ABBREV_SECTION,
28704 SECTION_DEBUG | SECTION_EXCLUDE,
28705 NULL);
28706 debug_addr_section = get_section (DEBUG_ADDR_SECTION,
28707 SECTION_DEBUG, NULL);
28708 debug_skeleton_info_section = get_section (DEBUG_INFO_SECTION,
28709 SECTION_DEBUG, NULL);
28710 debug_skeleton_abbrev_section = get_section (DEBUG_ABBREV_SECTION,
28711 SECTION_DEBUG, NULL);
28712 ASM_GENERATE_INTERNAL_LABEL (debug_skeleton_abbrev_section_label,
28713 DEBUG_SKELETON_ABBREV_SECTION_LABEL,
28714 generation);
28716 /* Somewhat confusing detail: The skeleton_[abbrev|info] sections
28717 stay in the main .o, but the skeleton_line goes into the
28718 split off dwo. */
28719 debug_skeleton_line_section
28720 = get_section (DEBUG_DWO_LINE_SECTION,
28721 SECTION_DEBUG | SECTION_EXCLUDE, NULL);
28722 ASM_GENERATE_INTERNAL_LABEL (debug_skeleton_line_section_label,
28723 DEBUG_SKELETON_LINE_SECTION_LABEL,
28724 generation);
28725 debug_str_offsets_section
28726 = get_section (DEBUG_DWO_STR_OFFSETS_SECTION,
28727 SECTION_DEBUG | SECTION_EXCLUDE, NULL);
28728 ASM_GENERATE_INTERNAL_LABEL (debug_skeleton_info_section_label,
28729 DEBUG_SKELETON_INFO_SECTION_LABEL,
28730 generation);
28731 debug_loc_section = get_section (dwarf_version >= 5
28732 ? DEBUG_DWO_LOCLISTS_SECTION
28733 : DEBUG_DWO_LOC_SECTION,
28734 SECTION_DEBUG | SECTION_EXCLUDE,
28735 NULL);
28736 debug_str_dwo_section = get_section (DEBUG_STR_DWO_SECTION,
28737 DEBUG_STR_DWO_SECTION_FLAGS,
28738 NULL);
28739 debug_macinfo_section_name
28740 = ((dwarf_strict && dwarf_version < 5)
28741 ? DEBUG_DWO_MACINFO_SECTION : DEBUG_DWO_MACRO_SECTION);
28742 debug_macinfo_section = get_section (debug_macinfo_section_name,
28743 SECTION_DEBUG | SECTION_EXCLUDE,
28744 NULL);
28746 debug_aranges_section = get_section (DEBUG_ARANGES_SECTION,
28747 SECTION_DEBUG, NULL);
28748 debug_line_section = get_section (DEBUG_LINE_SECTION,
28749 SECTION_DEBUG, NULL);
28750 debug_pubnames_section = get_section (DEBUG_PUBNAMES_SECTION,
28751 SECTION_DEBUG, NULL);
28752 debug_pubtypes_section = get_section (DEBUG_PUBTYPES_SECTION,
28753 SECTION_DEBUG, NULL);
28754 debug_str_section = get_section (DEBUG_STR_SECTION,
28755 DEBUG_STR_SECTION_FLAGS, NULL);
28756 if (!dwarf_split_debug_info && !output_asm_line_debug_info ())
28757 debug_line_str_section = get_section (DEBUG_LINE_STR_SECTION,
28758 DEBUG_STR_SECTION_FLAGS, NULL);
28760 debug_ranges_section = get_section (dwarf_version >= 5
28761 ? DEBUG_RNGLISTS_SECTION
28762 : DEBUG_RANGES_SECTION,
28763 SECTION_DEBUG, NULL);
28764 debug_frame_section = get_section (DEBUG_FRAME_SECTION,
28765 SECTION_DEBUG, NULL);
28768 ASM_GENERATE_INTERNAL_LABEL (abbrev_section_label,
28769 DEBUG_ABBREV_SECTION_LABEL, generation);
28770 ASM_GENERATE_INTERNAL_LABEL (debug_info_section_label,
28771 DEBUG_INFO_SECTION_LABEL, generation);
28772 info_section_emitted = false;
28773 ASM_GENERATE_INTERNAL_LABEL (debug_line_section_label,
28774 DEBUG_LINE_SECTION_LABEL, generation);
28775 /* There are up to 4 unique ranges labels per generation.
28776 See also output_rnglists. */
28777 ASM_GENERATE_INTERNAL_LABEL (ranges_section_label,
28778 DEBUG_RANGES_SECTION_LABEL, generation * 4);
28779 if (dwarf_version >= 5 && dwarf_split_debug_info)
28780 ASM_GENERATE_INTERNAL_LABEL (ranges_base_label,
28781 DEBUG_RANGES_SECTION_LABEL,
28782 1 + generation * 4);
28783 ASM_GENERATE_INTERNAL_LABEL (debug_addr_section_label,
28784 DEBUG_ADDR_SECTION_LABEL, generation);
28785 ASM_GENERATE_INTERNAL_LABEL (macinfo_section_label,
28786 (dwarf_strict && dwarf_version < 5)
28787 ? DEBUG_MACINFO_SECTION_LABEL
28788 : DEBUG_MACRO_SECTION_LABEL, generation);
28789 ASM_GENERATE_INTERNAL_LABEL (loc_section_label, DEBUG_LOC_SECTION_LABEL,
28790 generation);
28792 ++generation;
28793 return generation - 1;
28796 /* Set up for Dwarf output at the start of compilation. */
28798 static void
28799 dwarf2out_init (const char *filename ATTRIBUTE_UNUSED)
28801 /* Allocate the file_table. */
28802 file_table = hash_table<dwarf_file_hasher>::create_ggc (50);
28804 #ifndef DWARF2_LINENO_DEBUGGING_INFO
28805 /* Allocate the decl_die_table. */
28806 decl_die_table = hash_table<decl_die_hasher>::create_ggc (10);
28808 /* Allocate the decl_loc_table. */
28809 decl_loc_table = hash_table<decl_loc_hasher>::create_ggc (10);
28811 /* Allocate the cached_dw_loc_list_table. */
28812 cached_dw_loc_list_table = hash_table<dw_loc_list_hasher>::create_ggc (10);
28814 /* Allocate the initial hunk of the abbrev_die_table. */
28815 vec_alloc (abbrev_die_table, 256);
28816 /* Zero-th entry is allocated, but unused. */
28817 abbrev_die_table->quick_push (NULL);
28819 /* Allocate the dwarf_proc_stack_usage_map. */
28820 dwarf_proc_stack_usage_map = new hash_map<dw_die_ref, int>;
28822 /* Allocate the pubtypes and pubnames vectors. */
28823 vec_alloc (pubname_table, 32);
28824 vec_alloc (pubtype_table, 32);
28826 vec_alloc (incomplete_types, 64);
28828 vec_alloc (used_rtx_array, 32);
28830 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
28831 vec_alloc (macinfo_table, 64);
28832 #endif
28834 /* If front-ends already registered a main translation unit but we were not
28835 ready to perform the association, do this now. */
28836 if (main_translation_unit != NULL_TREE)
28837 equate_decl_number_to_die (main_translation_unit, comp_unit_die ());
28840 /* Called before compile () starts outputtting functions, variables
28841 and toplevel asms into assembly. */
28843 static void
28844 dwarf2out_assembly_start (void)
28846 if (text_section_line_info)
28847 return;
28849 #ifndef DWARF2_LINENO_DEBUGGING_INFO
28850 ASM_GENERATE_INTERNAL_LABEL (text_section_label, TEXT_SECTION_LABEL, 0);
28851 ASM_GENERATE_INTERNAL_LABEL (text_end_label, TEXT_END_LABEL, 0);
28852 ASM_GENERATE_INTERNAL_LABEL (cold_text_section_label,
28853 COLD_TEXT_SECTION_LABEL, 0);
28854 ASM_GENERATE_INTERNAL_LABEL (cold_end_label, COLD_END_LABEL, 0);
28856 switch_to_section (text_section);
28857 ASM_OUTPUT_LABEL (asm_out_file, text_section_label);
28858 #endif
28860 /* Make sure the line number table for .text always exists. */
28861 text_section_line_info = new_line_info_table ();
28862 text_section_line_info->end_label = text_end_label;
28864 #ifdef DWARF2_LINENO_DEBUGGING_INFO
28865 cur_line_info_table = text_section_line_info;
28866 #endif
28868 if (HAVE_GAS_CFI_SECTIONS_DIRECTIVE
28869 && dwarf2out_do_cfi_asm ()
28870 && !dwarf2out_do_eh_frame ())
28871 fprintf (asm_out_file, "\t.cfi_sections\t.debug_frame\n");
28874 /* A helper function for dwarf2out_finish called through
28875 htab_traverse. Assign a string its index. All strings must be
28876 collected into the table by the time index_string is called,
28877 because the indexing code relies on htab_traverse to traverse nodes
28878 in the same order for each run. */
28881 index_string (indirect_string_node **h, unsigned int *index)
28883 indirect_string_node *node = *h;
28885 find_string_form (node);
28886 if (node->form == dwarf_FORM (DW_FORM_strx) && node->refcount > 0)
28888 gcc_assert (node->index == NO_INDEX_ASSIGNED);
28889 node->index = *index;
28890 *index += 1;
28892 return 1;
28895 /* A helper function for output_indirect_strings called through
28896 htab_traverse. Output the offset to a string and update the
28897 current offset. */
28900 output_index_string_offset (indirect_string_node **h, unsigned int *offset)
28902 indirect_string_node *node = *h;
28904 if (node->form == dwarf_FORM (DW_FORM_strx) && node->refcount > 0)
28906 /* Assert that this node has been assigned an index. */
28907 gcc_assert (node->index != NO_INDEX_ASSIGNED
28908 && node->index != NOT_INDEXED);
28909 dw2_asm_output_data (DWARF_OFFSET_SIZE, *offset,
28910 "indexed string 0x%x: %s", node->index, node->str);
28911 *offset += strlen (node->str) + 1;
28913 return 1;
28916 /* A helper function for dwarf2out_finish called through
28917 htab_traverse. Output the indexed string. */
28920 output_index_string (indirect_string_node **h, unsigned int *cur_idx)
28922 struct indirect_string_node *node = *h;
28924 if (node->form == dwarf_FORM (DW_FORM_strx) && node->refcount > 0)
28926 /* Assert that the strings are output in the same order as their
28927 indexes were assigned. */
28928 gcc_assert (*cur_idx == node->index);
28929 assemble_string (node->str, strlen (node->str) + 1);
28930 *cur_idx += 1;
28932 return 1;
28935 /* A helper function for output_indirect_strings. Counts the number
28936 of index strings offsets. Must match the logic of the functions
28937 output_index_string[_offsets] above. */
28939 count_index_strings (indirect_string_node **h, unsigned int *last_idx)
28941 struct indirect_string_node *node = *h;
28943 if (node->form == dwarf_FORM (DW_FORM_strx) && node->refcount > 0)
28944 *last_idx += 1;
28945 return 1;
28948 /* A helper function for dwarf2out_finish called through
28949 htab_traverse. Emit one queued .debug_str string. */
28952 output_indirect_string (indirect_string_node **h, enum dwarf_form form)
28954 struct indirect_string_node *node = *h;
28956 node->form = find_string_form (node);
28957 if (node->form == form && node->refcount > 0)
28959 ASM_OUTPUT_LABEL (asm_out_file, node->label);
28960 assemble_string (node->str, strlen (node->str) + 1);
28963 return 1;
28966 /* Output the indexed string table. */
28968 static void
28969 output_indirect_strings (void)
28971 switch_to_section (debug_str_section);
28972 if (!dwarf_split_debug_info)
28973 debug_str_hash->traverse<enum dwarf_form,
28974 output_indirect_string> (DW_FORM_strp);
28975 else
28977 unsigned int offset = 0;
28978 unsigned int cur_idx = 0;
28980 if (skeleton_debug_str_hash)
28981 skeleton_debug_str_hash->traverse<enum dwarf_form,
28982 output_indirect_string> (DW_FORM_strp);
28984 switch_to_section (debug_str_offsets_section);
28985 /* For DWARF5 the .debug_str_offsets[.dwo] section needs a unit
28986 header. Note that we don't need to generate a label to the
28987 actual index table following the header here, because this is
28988 for the split dwarf case only. In an .dwo file there is only
28989 one string offsets table (and one debug info section). But
28990 if we would start using string offset tables for the main (or
28991 skeleton) unit, then we have to add a DW_AT_str_offsets_base
28992 pointing to the actual index after the header. Split dwarf
28993 units will never have a string offsets base attribute. When
28994 a split unit is moved into a .dwp file the string offsets can
28995 be found through the .debug_cu_index section table. */
28996 if (dwarf_version >= 5)
28998 unsigned int last_idx = 0;
28999 unsigned long str_offsets_length;
29001 debug_str_hash->traverse_noresize
29002 <unsigned int *, count_index_strings> (&last_idx);
29003 str_offsets_length = last_idx * DWARF_OFFSET_SIZE + 4;
29004 if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
29005 dw2_asm_output_data (4, 0xffffffff,
29006 "Escape value for 64-bit DWARF extension");
29007 dw2_asm_output_data (DWARF_OFFSET_SIZE, str_offsets_length,
29008 "Length of string offsets unit");
29009 dw2_asm_output_data (2, 5, "DWARF string offsets version");
29010 dw2_asm_output_data (2, 0, "Header zero padding");
29012 debug_str_hash->traverse_noresize
29013 <unsigned int *, output_index_string_offset> (&offset);
29014 switch_to_section (debug_str_dwo_section);
29015 debug_str_hash->traverse_noresize<unsigned int *, output_index_string>
29016 (&cur_idx);
29020 /* Callback for htab_traverse to assign an index to an entry in the
29021 table, and to write that entry to the .debug_addr section. */
29024 output_addr_table_entry (addr_table_entry **slot, unsigned int *cur_index)
29026 addr_table_entry *entry = *slot;
29028 if (entry->refcount == 0)
29030 gcc_assert (entry->index == NO_INDEX_ASSIGNED
29031 || entry->index == NOT_INDEXED);
29032 return 1;
29035 gcc_assert (entry->index == *cur_index);
29036 (*cur_index)++;
29038 switch (entry->kind)
29040 case ate_kind_rtx:
29041 dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE, entry->addr.rtl,
29042 "0x%x", entry->index);
29043 break;
29044 case ate_kind_rtx_dtprel:
29045 gcc_assert (targetm.asm_out.output_dwarf_dtprel);
29046 targetm.asm_out.output_dwarf_dtprel (asm_out_file,
29047 DWARF2_ADDR_SIZE,
29048 entry->addr.rtl);
29049 fputc ('\n', asm_out_file);
29050 break;
29051 case ate_kind_label:
29052 dw2_asm_output_addr (DWARF2_ADDR_SIZE, entry->addr.label,
29053 "0x%x", entry->index);
29054 break;
29055 default:
29056 gcc_unreachable ();
29058 return 1;
29061 /* A helper function for dwarf2out_finish. Counts the number
29062 of indexed addresses. Must match the logic of the functions
29063 output_addr_table_entry above. */
29065 count_index_addrs (addr_table_entry **slot, unsigned int *last_idx)
29067 addr_table_entry *entry = *slot;
29069 if (entry->refcount > 0)
29070 *last_idx += 1;
29071 return 1;
29074 /* Produce the .debug_addr section. */
29076 static void
29077 output_addr_table (void)
29079 unsigned int index = 0;
29080 if (addr_index_table == NULL || addr_index_table->size () == 0)
29081 return;
29083 switch_to_section (debug_addr_section);
29084 addr_index_table
29085 ->traverse_noresize<unsigned int *, output_addr_table_entry> (&index);
29088 #if ENABLE_ASSERT_CHECKING
29089 /* Verify that all marks are clear. */
29091 static void
29092 verify_marks_clear (dw_die_ref die)
29094 dw_die_ref c;
29096 gcc_assert (! die->die_mark);
29097 FOR_EACH_CHILD (die, c, verify_marks_clear (c));
29099 #endif /* ENABLE_ASSERT_CHECKING */
29101 /* Clear the marks for a die and its children.
29102 Be cool if the mark isn't set. */
29104 static void
29105 prune_unmark_dies (dw_die_ref die)
29107 dw_die_ref c;
29109 if (die->die_mark)
29110 die->die_mark = 0;
29111 FOR_EACH_CHILD (die, c, prune_unmark_dies (c));
29114 /* Given LOC that is referenced by a DIE we're marking as used, find all
29115 referenced DWARF procedures it references and mark them as used. */
29117 static void
29118 prune_unused_types_walk_loc_descr (dw_loc_descr_ref loc)
29120 for (; loc != NULL; loc = loc->dw_loc_next)
29121 switch (loc->dw_loc_opc)
29123 case DW_OP_implicit_pointer:
29124 case DW_OP_convert:
29125 case DW_OP_reinterpret:
29126 case DW_OP_GNU_implicit_pointer:
29127 case DW_OP_GNU_convert:
29128 case DW_OP_GNU_reinterpret:
29129 if (loc->dw_loc_oprnd1.val_class == dw_val_class_die_ref)
29130 prune_unused_types_mark (loc->dw_loc_oprnd1.v.val_die_ref.die, 1);
29131 break;
29132 case DW_OP_GNU_variable_value:
29133 if (loc->dw_loc_oprnd1.val_class == dw_val_class_decl_ref)
29135 dw_die_ref ref
29136 = lookup_decl_die (loc->dw_loc_oprnd1.v.val_decl_ref);
29137 if (ref == NULL)
29138 break;
29139 loc->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
29140 loc->dw_loc_oprnd1.v.val_die_ref.die = ref;
29141 loc->dw_loc_oprnd1.v.val_die_ref.external = 0;
29143 /* FALLTHRU */
29144 case DW_OP_call2:
29145 case DW_OP_call4:
29146 case DW_OP_call_ref:
29147 case DW_OP_const_type:
29148 case DW_OP_GNU_const_type:
29149 case DW_OP_GNU_parameter_ref:
29150 gcc_assert (loc->dw_loc_oprnd1.val_class == dw_val_class_die_ref);
29151 prune_unused_types_mark (loc->dw_loc_oprnd1.v.val_die_ref.die, 1);
29152 break;
29153 case DW_OP_regval_type:
29154 case DW_OP_deref_type:
29155 case DW_OP_GNU_regval_type:
29156 case DW_OP_GNU_deref_type:
29157 gcc_assert (loc->dw_loc_oprnd2.val_class == dw_val_class_die_ref);
29158 prune_unused_types_mark (loc->dw_loc_oprnd2.v.val_die_ref.die, 1);
29159 break;
29160 case DW_OP_entry_value:
29161 case DW_OP_GNU_entry_value:
29162 gcc_assert (loc->dw_loc_oprnd1.val_class == dw_val_class_loc);
29163 prune_unused_types_walk_loc_descr (loc->dw_loc_oprnd1.v.val_loc);
29164 break;
29165 default:
29166 break;
29170 /* Given DIE that we're marking as used, find any other dies
29171 it references as attributes and mark them as used. */
29173 static void
29174 prune_unused_types_walk_attribs (dw_die_ref die)
29176 dw_attr_node *a;
29177 unsigned ix;
29179 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
29181 switch (AT_class (a))
29183 /* Make sure DWARF procedures referenced by location descriptions will
29184 get emitted. */
29185 case dw_val_class_loc:
29186 prune_unused_types_walk_loc_descr (AT_loc (a));
29187 break;
29188 case dw_val_class_loc_list:
29189 for (dw_loc_list_ref list = AT_loc_list (a);
29190 list != NULL;
29191 list = list->dw_loc_next)
29192 prune_unused_types_walk_loc_descr (list->expr);
29193 break;
29195 case dw_val_class_view_list:
29196 /* This points to a loc_list in another attribute, so it's
29197 already covered. */
29198 break;
29200 case dw_val_class_die_ref:
29201 /* A reference to another DIE.
29202 Make sure that it will get emitted.
29203 If it was broken out into a comdat group, don't follow it. */
29204 if (! AT_ref (a)->comdat_type_p
29205 || a->dw_attr == DW_AT_specification)
29206 prune_unused_types_mark (a->dw_attr_val.v.val_die_ref.die, 1);
29207 break;
29209 case dw_val_class_str:
29210 /* Set the string's refcount to 0 so that prune_unused_types_mark
29211 accounts properly for it. */
29212 a->dw_attr_val.v.val_str->refcount = 0;
29213 break;
29215 default:
29216 break;
29221 /* Mark the generic parameters and arguments children DIEs of DIE. */
29223 static void
29224 prune_unused_types_mark_generic_parms_dies (dw_die_ref die)
29226 dw_die_ref c;
29228 if (die == NULL || die->die_child == NULL)
29229 return;
29230 c = die->die_child;
29233 if (is_template_parameter (c))
29234 prune_unused_types_mark (c, 1);
29235 c = c->die_sib;
29236 } while (c && c != die->die_child);
29239 /* Mark DIE as being used. If DOKIDS is true, then walk down
29240 to DIE's children. */
29242 static void
29243 prune_unused_types_mark (dw_die_ref die, int dokids)
29245 dw_die_ref c;
29247 if (die->die_mark == 0)
29249 /* We haven't done this node yet. Mark it as used. */
29250 die->die_mark = 1;
29251 /* If this is the DIE of a generic type instantiation,
29252 mark the children DIEs that describe its generic parms and
29253 args. */
29254 prune_unused_types_mark_generic_parms_dies (die);
29256 /* We also have to mark its parents as used.
29257 (But we don't want to mark our parent's kids due to this,
29258 unless it is a class.) */
29259 if (die->die_parent)
29260 prune_unused_types_mark (die->die_parent,
29261 class_scope_p (die->die_parent));
29263 /* Mark any referenced nodes. */
29264 prune_unused_types_walk_attribs (die);
29266 /* If this node is a specification,
29267 also mark the definition, if it exists. */
29268 if (get_AT_flag (die, DW_AT_declaration) && die->die_definition)
29269 prune_unused_types_mark (die->die_definition, 1);
29272 if (dokids && die->die_mark != 2)
29274 /* We need to walk the children, but haven't done so yet.
29275 Remember that we've walked the kids. */
29276 die->die_mark = 2;
29278 /* If this is an array type, we need to make sure our
29279 kids get marked, even if they're types. If we're
29280 breaking out types into comdat sections, do this
29281 for all type definitions. */
29282 if (die->die_tag == DW_TAG_array_type
29283 || (use_debug_types
29284 && is_type_die (die) && ! is_declaration_die (die)))
29285 FOR_EACH_CHILD (die, c, prune_unused_types_mark (c, 1));
29286 else
29287 FOR_EACH_CHILD (die, c, prune_unused_types_walk (c));
29291 /* For local classes, look if any static member functions were emitted
29292 and if so, mark them. */
29294 static void
29295 prune_unused_types_walk_local_classes (dw_die_ref die)
29297 dw_die_ref c;
29299 if (die->die_mark == 2)
29300 return;
29302 switch (die->die_tag)
29304 case DW_TAG_structure_type:
29305 case DW_TAG_union_type:
29306 case DW_TAG_class_type:
29307 case DW_TAG_interface_type:
29308 break;
29310 case DW_TAG_subprogram:
29311 if (!get_AT_flag (die, DW_AT_declaration)
29312 || die->die_definition != NULL)
29313 prune_unused_types_mark (die, 1);
29314 return;
29316 default:
29317 return;
29320 /* Mark children. */
29321 FOR_EACH_CHILD (die, c, prune_unused_types_walk_local_classes (c));
29324 /* Walk the tree DIE and mark types that we actually use. */
29326 static void
29327 prune_unused_types_walk (dw_die_ref die)
29329 dw_die_ref c;
29331 /* Don't do anything if this node is already marked and
29332 children have been marked as well. */
29333 if (die->die_mark == 2)
29334 return;
29336 switch (die->die_tag)
29338 case DW_TAG_structure_type:
29339 case DW_TAG_union_type:
29340 case DW_TAG_class_type:
29341 case DW_TAG_interface_type:
29342 if (die->die_perennial_p)
29343 break;
29345 for (c = die->die_parent; c; c = c->die_parent)
29346 if (c->die_tag == DW_TAG_subprogram)
29347 break;
29349 /* Finding used static member functions inside of classes
29350 is needed just for local classes, because for other classes
29351 static member function DIEs with DW_AT_specification
29352 are emitted outside of the DW_TAG_*_type. If we ever change
29353 it, we'd need to call this even for non-local classes. */
29354 if (c)
29355 prune_unused_types_walk_local_classes (die);
29357 /* It's a type node --- don't mark it. */
29358 return;
29360 case DW_TAG_const_type:
29361 case DW_TAG_packed_type:
29362 case DW_TAG_pointer_type:
29363 case DW_TAG_reference_type:
29364 case DW_TAG_rvalue_reference_type:
29365 case DW_TAG_volatile_type:
29366 case DW_TAG_typedef:
29367 case DW_TAG_array_type:
29368 case DW_TAG_friend:
29369 case DW_TAG_enumeration_type:
29370 case DW_TAG_subroutine_type:
29371 case DW_TAG_string_type:
29372 case DW_TAG_set_type:
29373 case DW_TAG_subrange_type:
29374 case DW_TAG_ptr_to_member_type:
29375 case DW_TAG_file_type:
29376 /* Type nodes are useful only when other DIEs reference them --- don't
29377 mark them. */
29378 /* FALLTHROUGH */
29380 case DW_TAG_dwarf_procedure:
29381 /* Likewise for DWARF procedures. */
29383 if (die->die_perennial_p)
29384 break;
29386 return;
29388 default:
29389 /* Mark everything else. */
29390 break;
29393 if (die->die_mark == 0)
29395 die->die_mark = 1;
29397 /* Now, mark any dies referenced from here. */
29398 prune_unused_types_walk_attribs (die);
29401 die->die_mark = 2;
29403 /* Mark children. */
29404 FOR_EACH_CHILD (die, c, prune_unused_types_walk (c));
29407 /* Increment the string counts on strings referred to from DIE's
29408 attributes. */
29410 static void
29411 prune_unused_types_update_strings (dw_die_ref die)
29413 dw_attr_node *a;
29414 unsigned ix;
29416 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
29417 if (AT_class (a) == dw_val_class_str)
29419 struct indirect_string_node *s = a->dw_attr_val.v.val_str;
29420 s->refcount++;
29421 /* Avoid unnecessarily putting strings that are used less than
29422 twice in the hash table. */
29423 if (s->refcount
29424 == ((DEBUG_STR_SECTION_FLAGS & SECTION_MERGE) ? 1 : 2))
29426 indirect_string_node **slot
29427 = debug_str_hash->find_slot_with_hash (s->str,
29428 htab_hash_string (s->str),
29429 INSERT);
29430 gcc_assert (*slot == NULL);
29431 *slot = s;
29436 /* Mark DIE and its children as removed. */
29438 static void
29439 mark_removed (dw_die_ref die)
29441 dw_die_ref c;
29442 die->removed = true;
29443 FOR_EACH_CHILD (die, c, mark_removed (c));
29446 /* Remove from the tree DIE any dies that aren't marked. */
29448 static void
29449 prune_unused_types_prune (dw_die_ref die)
29451 dw_die_ref c;
29453 gcc_assert (die->die_mark);
29454 prune_unused_types_update_strings (die);
29456 if (! die->die_child)
29457 return;
29459 c = die->die_child;
29460 do {
29461 dw_die_ref prev = c, next;
29462 for (c = c->die_sib; ! c->die_mark; c = next)
29463 if (c == die->die_child)
29465 /* No marked children between 'prev' and the end of the list. */
29466 if (prev == c)
29467 /* No marked children at all. */
29468 die->die_child = NULL;
29469 else
29471 prev->die_sib = c->die_sib;
29472 die->die_child = prev;
29474 c->die_sib = NULL;
29475 mark_removed (c);
29476 return;
29478 else
29480 next = c->die_sib;
29481 c->die_sib = NULL;
29482 mark_removed (c);
29485 if (c != prev->die_sib)
29486 prev->die_sib = c;
29487 prune_unused_types_prune (c);
29488 } while (c != die->die_child);
29491 /* Remove dies representing declarations that we never use. */
29493 static void
29494 prune_unused_types (void)
29496 unsigned int i;
29497 limbo_die_node *node;
29498 comdat_type_node *ctnode;
29499 pubname_entry *pub;
29500 dw_die_ref base_type;
29502 #if ENABLE_ASSERT_CHECKING
29503 /* All the marks should already be clear. */
29504 verify_marks_clear (comp_unit_die ());
29505 for (node = limbo_die_list; node; node = node->next)
29506 verify_marks_clear (node->die);
29507 for (ctnode = comdat_type_list; ctnode; ctnode = ctnode->next)
29508 verify_marks_clear (ctnode->root_die);
29509 #endif /* ENABLE_ASSERT_CHECKING */
29511 /* Mark types that are used in global variables. */
29512 premark_types_used_by_global_vars ();
29514 /* Set the mark on nodes that are actually used. */
29515 prune_unused_types_walk (comp_unit_die ());
29516 for (node = limbo_die_list; node; node = node->next)
29517 prune_unused_types_walk (node->die);
29518 for (ctnode = comdat_type_list; ctnode; ctnode = ctnode->next)
29520 prune_unused_types_walk (ctnode->root_die);
29521 prune_unused_types_mark (ctnode->type_die, 1);
29524 /* Also set the mark on nodes referenced from the pubname_table. Enumerators
29525 are unusual in that they are pubnames that are the children of pubtypes.
29526 They should only be marked via their parent DW_TAG_enumeration_type die,
29527 not as roots in themselves. */
29528 FOR_EACH_VEC_ELT (*pubname_table, i, pub)
29529 if (pub->die->die_tag != DW_TAG_enumerator)
29530 prune_unused_types_mark (pub->die, 1);
29531 for (i = 0; base_types.iterate (i, &base_type); i++)
29532 prune_unused_types_mark (base_type, 1);
29534 /* For -fvar-tracking-assignments, also set the mark on nodes that could be
29535 referenced by DW_TAG_call_site DW_AT_call_origin (i.e. direct call
29536 callees). */
29537 cgraph_node *cnode;
29538 FOR_EACH_FUNCTION (cnode)
29539 if (cnode->referred_to_p (false))
29541 dw_die_ref die = lookup_decl_die (cnode->decl);
29542 if (die == NULL || die->die_mark)
29543 continue;
29544 for (cgraph_edge *e = cnode->callers; e; e = e->next_caller)
29545 if (e->caller != cnode
29546 && opt_for_fn (e->caller->decl, flag_var_tracking_assignments))
29548 prune_unused_types_mark (die, 1);
29549 break;
29553 if (debug_str_hash)
29554 debug_str_hash->empty ();
29555 if (skeleton_debug_str_hash)
29556 skeleton_debug_str_hash->empty ();
29557 prune_unused_types_prune (comp_unit_die ());
29558 for (limbo_die_node **pnode = &limbo_die_list; *pnode; )
29560 node = *pnode;
29561 if (!node->die->die_mark)
29562 *pnode = node->next;
29563 else
29565 prune_unused_types_prune (node->die);
29566 pnode = &node->next;
29569 for (ctnode = comdat_type_list; ctnode; ctnode = ctnode->next)
29570 prune_unused_types_prune (ctnode->root_die);
29572 /* Leave the marks clear. */
29573 prune_unmark_dies (comp_unit_die ());
29574 for (node = limbo_die_list; node; node = node->next)
29575 prune_unmark_dies (node->die);
29576 for (ctnode = comdat_type_list; ctnode; ctnode = ctnode->next)
29577 prune_unmark_dies (ctnode->root_die);
29580 /* Helpers to manipulate hash table of comdat type units. */
29582 struct comdat_type_hasher : nofree_ptr_hash <comdat_type_node>
29584 static inline hashval_t hash (const comdat_type_node *);
29585 static inline bool equal (const comdat_type_node *, const comdat_type_node *);
29588 inline hashval_t
29589 comdat_type_hasher::hash (const comdat_type_node *type_node)
29591 hashval_t h;
29592 memcpy (&h, type_node->signature, sizeof (h));
29593 return h;
29596 inline bool
29597 comdat_type_hasher::equal (const comdat_type_node *type_node_1,
29598 const comdat_type_node *type_node_2)
29600 return (! memcmp (type_node_1->signature, type_node_2->signature,
29601 DWARF_TYPE_SIGNATURE_SIZE));
29604 /* Move a DW_AT_{,MIPS_}linkage_name attribute just added to dw_die_ref
29605 to the location it would have been added, should we know its
29606 DECL_ASSEMBLER_NAME when we added other attributes. This will
29607 probably improve compactness of debug info, removing equivalent
29608 abbrevs, and hide any differences caused by deferring the
29609 computation of the assembler name, triggered by e.g. PCH. */
29611 static inline void
29612 move_linkage_attr (dw_die_ref die)
29614 unsigned ix = vec_safe_length (die->die_attr);
29615 dw_attr_node linkage = (*die->die_attr)[ix - 1];
29617 gcc_assert (linkage.dw_attr == DW_AT_linkage_name
29618 || linkage.dw_attr == DW_AT_MIPS_linkage_name);
29620 while (--ix > 0)
29622 dw_attr_node *prev = &(*die->die_attr)[ix - 1];
29624 if (prev->dw_attr == DW_AT_decl_line
29625 || prev->dw_attr == DW_AT_decl_column
29626 || prev->dw_attr == DW_AT_name)
29627 break;
29630 if (ix != vec_safe_length (die->die_attr) - 1)
29632 die->die_attr->pop ();
29633 die->die_attr->quick_insert (ix, linkage);
29637 /* Helper function for resolve_addr, mark DW_TAG_base_type nodes
29638 referenced from typed stack ops and count how often they are used. */
29640 static void
29641 mark_base_types (dw_loc_descr_ref loc)
29643 dw_die_ref base_type = NULL;
29645 for (; loc; loc = loc->dw_loc_next)
29647 switch (loc->dw_loc_opc)
29649 case DW_OP_regval_type:
29650 case DW_OP_deref_type:
29651 case DW_OP_GNU_regval_type:
29652 case DW_OP_GNU_deref_type:
29653 base_type = loc->dw_loc_oprnd2.v.val_die_ref.die;
29654 break;
29655 case DW_OP_convert:
29656 case DW_OP_reinterpret:
29657 case DW_OP_GNU_convert:
29658 case DW_OP_GNU_reinterpret:
29659 if (loc->dw_loc_oprnd1.val_class == dw_val_class_unsigned_const)
29660 continue;
29661 /* FALLTHRU */
29662 case DW_OP_const_type:
29663 case DW_OP_GNU_const_type:
29664 base_type = loc->dw_loc_oprnd1.v.val_die_ref.die;
29665 break;
29666 case DW_OP_entry_value:
29667 case DW_OP_GNU_entry_value:
29668 mark_base_types (loc->dw_loc_oprnd1.v.val_loc);
29669 continue;
29670 default:
29671 continue;
29673 gcc_assert (base_type->die_parent == comp_unit_die ());
29674 if (base_type->die_mark)
29675 base_type->die_mark++;
29676 else
29678 base_types.safe_push (base_type);
29679 base_type->die_mark = 1;
29684 /* Comparison function for sorting marked base types. */
29686 static int
29687 base_type_cmp (const void *x, const void *y)
29689 dw_die_ref dx = *(const dw_die_ref *) x;
29690 dw_die_ref dy = *(const dw_die_ref *) y;
29691 unsigned int byte_size1, byte_size2;
29692 unsigned int encoding1, encoding2;
29693 unsigned int align1, align2;
29694 if (dx->die_mark > dy->die_mark)
29695 return -1;
29696 if (dx->die_mark < dy->die_mark)
29697 return 1;
29698 byte_size1 = get_AT_unsigned (dx, DW_AT_byte_size);
29699 byte_size2 = get_AT_unsigned (dy, DW_AT_byte_size);
29700 if (byte_size1 < byte_size2)
29701 return 1;
29702 if (byte_size1 > byte_size2)
29703 return -1;
29704 encoding1 = get_AT_unsigned (dx, DW_AT_encoding);
29705 encoding2 = get_AT_unsigned (dy, DW_AT_encoding);
29706 if (encoding1 < encoding2)
29707 return 1;
29708 if (encoding1 > encoding2)
29709 return -1;
29710 align1 = get_AT_unsigned (dx, DW_AT_alignment);
29711 align2 = get_AT_unsigned (dy, DW_AT_alignment);
29712 if (align1 < align2)
29713 return 1;
29714 if (align1 > align2)
29715 return -1;
29716 return 0;
29719 /* Move base types marked by mark_base_types as early as possible
29720 in the CU, sorted by decreasing usage count both to make the
29721 uleb128 references as small as possible and to make sure they
29722 will have die_offset already computed by calc_die_sizes when
29723 sizes of typed stack loc ops is computed. */
29725 static void
29726 move_marked_base_types (void)
29728 unsigned int i;
29729 dw_die_ref base_type, die, c;
29731 if (base_types.is_empty ())
29732 return;
29734 /* Sort by decreasing usage count, they will be added again in that
29735 order later on. */
29736 base_types.qsort (base_type_cmp);
29737 die = comp_unit_die ();
29738 c = die->die_child;
29741 dw_die_ref prev = c;
29742 c = c->die_sib;
29743 while (c->die_mark)
29745 remove_child_with_prev (c, prev);
29746 /* As base types got marked, there must be at least
29747 one node other than DW_TAG_base_type. */
29748 gcc_assert (die->die_child != NULL);
29749 c = prev->die_sib;
29752 while (c != die->die_child);
29753 gcc_assert (die->die_child);
29754 c = die->die_child;
29755 for (i = 0; base_types.iterate (i, &base_type); i++)
29757 base_type->die_mark = 0;
29758 base_type->die_sib = c->die_sib;
29759 c->die_sib = base_type;
29760 c = base_type;
29764 /* Helper function for resolve_addr, attempt to resolve
29765 one CONST_STRING, return true if successful. Similarly verify that
29766 SYMBOL_REFs refer to variables emitted in the current CU. */
29768 static bool
29769 resolve_one_addr (rtx *addr)
29771 rtx rtl = *addr;
29773 if (GET_CODE (rtl) == CONST_STRING)
29775 size_t len = strlen (XSTR (rtl, 0)) + 1;
29776 tree t = build_string (len, XSTR (rtl, 0));
29777 tree tlen = size_int (len - 1);
29778 TREE_TYPE (t)
29779 = build_array_type (char_type_node, build_index_type (tlen));
29780 rtl = lookup_constant_def (t);
29781 if (!rtl || !MEM_P (rtl))
29782 return false;
29783 rtl = XEXP (rtl, 0);
29784 if (GET_CODE (rtl) == SYMBOL_REF
29785 && SYMBOL_REF_DECL (rtl)
29786 && !TREE_ASM_WRITTEN (SYMBOL_REF_DECL (rtl)))
29787 return false;
29788 vec_safe_push (used_rtx_array, rtl);
29789 *addr = rtl;
29790 return true;
29793 if (GET_CODE (rtl) == SYMBOL_REF
29794 && SYMBOL_REF_DECL (rtl))
29796 if (TREE_CONSTANT_POOL_ADDRESS_P (rtl))
29798 if (!TREE_ASM_WRITTEN (DECL_INITIAL (SYMBOL_REF_DECL (rtl))))
29799 return false;
29801 else if (!TREE_ASM_WRITTEN (SYMBOL_REF_DECL (rtl)))
29802 return false;
29805 if (GET_CODE (rtl) == CONST)
29807 subrtx_ptr_iterator::array_type array;
29808 FOR_EACH_SUBRTX_PTR (iter, array, &XEXP (rtl, 0), ALL)
29809 if (!resolve_one_addr (*iter))
29810 return false;
29813 return true;
29816 /* For STRING_CST, return SYMBOL_REF of its constant pool entry,
29817 if possible, and create DW_TAG_dwarf_procedure that can be referenced
29818 from DW_OP_implicit_pointer if the string hasn't been seen yet. */
29820 static rtx
29821 string_cst_pool_decl (tree t)
29823 rtx rtl = output_constant_def (t, 1);
29824 unsigned char *array;
29825 dw_loc_descr_ref l;
29826 tree decl;
29827 size_t len;
29828 dw_die_ref ref;
29830 if (!rtl || !MEM_P (rtl))
29831 return NULL_RTX;
29832 rtl = XEXP (rtl, 0);
29833 if (GET_CODE (rtl) != SYMBOL_REF
29834 || SYMBOL_REF_DECL (rtl) == NULL_TREE)
29835 return NULL_RTX;
29837 decl = SYMBOL_REF_DECL (rtl);
29838 if (!lookup_decl_die (decl))
29840 len = TREE_STRING_LENGTH (t);
29841 vec_safe_push (used_rtx_array, rtl);
29842 ref = new_die (DW_TAG_dwarf_procedure, comp_unit_die (), decl);
29843 array = ggc_vec_alloc<unsigned char> (len);
29844 memcpy (array, TREE_STRING_POINTER (t), len);
29845 l = new_loc_descr (DW_OP_implicit_value, len, 0);
29846 l->dw_loc_oprnd2.val_class = dw_val_class_vec;
29847 l->dw_loc_oprnd2.v.val_vec.length = len;
29848 l->dw_loc_oprnd2.v.val_vec.elt_size = 1;
29849 l->dw_loc_oprnd2.v.val_vec.array = array;
29850 add_AT_loc (ref, DW_AT_location, l);
29851 equate_decl_number_to_die (decl, ref);
29853 return rtl;
29856 /* Helper function of resolve_addr_in_expr. LOC is
29857 a DW_OP_addr followed by DW_OP_stack_value, either at the start
29858 of exprloc or after DW_OP_{,bit_}piece, and val_addr can't be
29859 resolved. Replace it (both DW_OP_addr and DW_OP_stack_value)
29860 with DW_OP_implicit_pointer if possible
29861 and return true, if unsuccessful, return false. */
29863 static bool
29864 optimize_one_addr_into_implicit_ptr (dw_loc_descr_ref loc)
29866 rtx rtl = loc->dw_loc_oprnd1.v.val_addr;
29867 HOST_WIDE_INT offset = 0;
29868 dw_die_ref ref = NULL;
29869 tree decl;
29871 if (GET_CODE (rtl) == CONST
29872 && GET_CODE (XEXP (rtl, 0)) == PLUS
29873 && CONST_INT_P (XEXP (XEXP (rtl, 0), 1)))
29875 offset = INTVAL (XEXP (XEXP (rtl, 0), 1));
29876 rtl = XEXP (XEXP (rtl, 0), 0);
29878 if (GET_CODE (rtl) == CONST_STRING)
29880 size_t len = strlen (XSTR (rtl, 0)) + 1;
29881 tree t = build_string (len, XSTR (rtl, 0));
29882 tree tlen = size_int (len - 1);
29884 TREE_TYPE (t)
29885 = build_array_type (char_type_node, build_index_type (tlen));
29886 rtl = string_cst_pool_decl (t);
29887 if (!rtl)
29888 return false;
29890 if (GET_CODE (rtl) == SYMBOL_REF && SYMBOL_REF_DECL (rtl))
29892 decl = SYMBOL_REF_DECL (rtl);
29893 if (VAR_P (decl) && !DECL_EXTERNAL (decl))
29895 ref = lookup_decl_die (decl);
29896 if (ref && (get_AT (ref, DW_AT_location)
29897 || get_AT (ref, DW_AT_const_value)))
29899 loc->dw_loc_opc = dwarf_OP (DW_OP_implicit_pointer);
29900 loc->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
29901 loc->dw_loc_oprnd1.val_entry = NULL;
29902 loc->dw_loc_oprnd1.v.val_die_ref.die = ref;
29903 loc->dw_loc_oprnd1.v.val_die_ref.external = 0;
29904 loc->dw_loc_next = loc->dw_loc_next->dw_loc_next;
29905 loc->dw_loc_oprnd2.v.val_int = offset;
29906 return true;
29910 return false;
29913 /* Helper function for resolve_addr, handle one location
29914 expression, return false if at least one CONST_STRING or SYMBOL_REF in
29915 the location list couldn't be resolved. */
29917 static bool
29918 resolve_addr_in_expr (dw_attr_node *a, dw_loc_descr_ref loc)
29920 dw_loc_descr_ref keep = NULL;
29921 for (dw_loc_descr_ref prev = NULL; loc; prev = loc, loc = loc->dw_loc_next)
29922 switch (loc->dw_loc_opc)
29924 case DW_OP_addr:
29925 if (!resolve_one_addr (&loc->dw_loc_oprnd1.v.val_addr))
29927 if ((prev == NULL
29928 || prev->dw_loc_opc == DW_OP_piece
29929 || prev->dw_loc_opc == DW_OP_bit_piece)
29930 && loc->dw_loc_next
29931 && loc->dw_loc_next->dw_loc_opc == DW_OP_stack_value
29932 && (!dwarf_strict || dwarf_version >= 5)
29933 && optimize_one_addr_into_implicit_ptr (loc))
29934 break;
29935 return false;
29937 break;
29938 case DW_OP_GNU_addr_index:
29939 case DW_OP_addrx:
29940 case DW_OP_GNU_const_index:
29941 case DW_OP_constx:
29942 if ((loc->dw_loc_opc == DW_OP_GNU_addr_index
29943 || loc->dw_loc_opc == DW_OP_addrx)
29944 || ((loc->dw_loc_opc == DW_OP_GNU_const_index
29945 || loc->dw_loc_opc == DW_OP_constx)
29946 && loc->dtprel))
29948 rtx rtl = loc->dw_loc_oprnd1.val_entry->addr.rtl;
29949 if (!resolve_one_addr (&rtl))
29950 return false;
29951 remove_addr_table_entry (loc->dw_loc_oprnd1.val_entry);
29952 loc->dw_loc_oprnd1.val_entry
29953 = add_addr_table_entry (rtl, ate_kind_rtx);
29955 break;
29956 case DW_OP_const4u:
29957 case DW_OP_const8u:
29958 if (loc->dtprel
29959 && !resolve_one_addr (&loc->dw_loc_oprnd1.v.val_addr))
29960 return false;
29961 break;
29962 case DW_OP_plus_uconst:
29963 if (size_of_loc_descr (loc)
29964 > size_of_int_loc_descriptor (loc->dw_loc_oprnd1.v.val_unsigned)
29966 && loc->dw_loc_oprnd1.v.val_unsigned > 0)
29968 dw_loc_descr_ref repl
29969 = int_loc_descriptor (loc->dw_loc_oprnd1.v.val_unsigned);
29970 add_loc_descr (&repl, new_loc_descr (DW_OP_plus, 0, 0));
29971 add_loc_descr (&repl, loc->dw_loc_next);
29972 *loc = *repl;
29974 break;
29975 case DW_OP_implicit_value:
29976 if (loc->dw_loc_oprnd2.val_class == dw_val_class_addr
29977 && !resolve_one_addr (&loc->dw_loc_oprnd2.v.val_addr))
29978 return false;
29979 break;
29980 case DW_OP_implicit_pointer:
29981 case DW_OP_GNU_implicit_pointer:
29982 case DW_OP_GNU_parameter_ref:
29983 case DW_OP_GNU_variable_value:
29984 if (loc->dw_loc_oprnd1.val_class == dw_val_class_decl_ref)
29986 dw_die_ref ref
29987 = lookup_decl_die (loc->dw_loc_oprnd1.v.val_decl_ref);
29988 if (ref == NULL)
29989 return false;
29990 loc->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
29991 loc->dw_loc_oprnd1.v.val_die_ref.die = ref;
29992 loc->dw_loc_oprnd1.v.val_die_ref.external = 0;
29994 if (loc->dw_loc_opc == DW_OP_GNU_variable_value)
29996 if (prev == NULL
29997 && loc->dw_loc_next == NULL
29998 && AT_class (a) == dw_val_class_loc)
29999 switch (a->dw_attr)
30001 /* Following attributes allow both exprloc and reference,
30002 so if the whole expression is DW_OP_GNU_variable_value
30003 alone we could transform it into reference. */
30004 case DW_AT_byte_size:
30005 case DW_AT_bit_size:
30006 case DW_AT_lower_bound:
30007 case DW_AT_upper_bound:
30008 case DW_AT_bit_stride:
30009 case DW_AT_count:
30010 case DW_AT_allocated:
30011 case DW_AT_associated:
30012 case DW_AT_byte_stride:
30013 a->dw_attr_val.val_class = dw_val_class_die_ref;
30014 a->dw_attr_val.val_entry = NULL;
30015 a->dw_attr_val.v.val_die_ref.die
30016 = loc->dw_loc_oprnd1.v.val_die_ref.die;
30017 a->dw_attr_val.v.val_die_ref.external = 0;
30018 return true;
30019 default:
30020 break;
30022 if (dwarf_strict)
30023 return false;
30025 break;
30026 case DW_OP_const_type:
30027 case DW_OP_regval_type:
30028 case DW_OP_deref_type:
30029 case DW_OP_convert:
30030 case DW_OP_reinterpret:
30031 case DW_OP_GNU_const_type:
30032 case DW_OP_GNU_regval_type:
30033 case DW_OP_GNU_deref_type:
30034 case DW_OP_GNU_convert:
30035 case DW_OP_GNU_reinterpret:
30036 while (loc->dw_loc_next
30037 && (loc->dw_loc_next->dw_loc_opc == DW_OP_convert
30038 || loc->dw_loc_next->dw_loc_opc == DW_OP_GNU_convert))
30040 dw_die_ref base1, base2;
30041 unsigned enc1, enc2, size1, size2;
30042 if (loc->dw_loc_opc == DW_OP_regval_type
30043 || loc->dw_loc_opc == DW_OP_deref_type
30044 || loc->dw_loc_opc == DW_OP_GNU_regval_type
30045 || loc->dw_loc_opc == DW_OP_GNU_deref_type)
30046 base1 = loc->dw_loc_oprnd2.v.val_die_ref.die;
30047 else if (loc->dw_loc_oprnd1.val_class
30048 == dw_val_class_unsigned_const)
30049 break;
30050 else
30051 base1 = loc->dw_loc_oprnd1.v.val_die_ref.die;
30052 if (loc->dw_loc_next->dw_loc_oprnd1.val_class
30053 == dw_val_class_unsigned_const)
30054 break;
30055 base2 = loc->dw_loc_next->dw_loc_oprnd1.v.val_die_ref.die;
30056 gcc_assert (base1->die_tag == DW_TAG_base_type
30057 && base2->die_tag == DW_TAG_base_type);
30058 enc1 = get_AT_unsigned (base1, DW_AT_encoding);
30059 enc2 = get_AT_unsigned (base2, DW_AT_encoding);
30060 size1 = get_AT_unsigned (base1, DW_AT_byte_size);
30061 size2 = get_AT_unsigned (base2, DW_AT_byte_size);
30062 if (size1 == size2
30063 && (((enc1 == DW_ATE_unsigned || enc1 == DW_ATE_signed)
30064 && (enc2 == DW_ATE_unsigned || enc2 == DW_ATE_signed)
30065 && loc != keep)
30066 || enc1 == enc2))
30068 /* Optimize away next DW_OP_convert after
30069 adjusting LOC's base type die reference. */
30070 if (loc->dw_loc_opc == DW_OP_regval_type
30071 || loc->dw_loc_opc == DW_OP_deref_type
30072 || loc->dw_loc_opc == DW_OP_GNU_regval_type
30073 || loc->dw_loc_opc == DW_OP_GNU_deref_type)
30074 loc->dw_loc_oprnd2.v.val_die_ref.die = base2;
30075 else
30076 loc->dw_loc_oprnd1.v.val_die_ref.die = base2;
30077 loc->dw_loc_next = loc->dw_loc_next->dw_loc_next;
30078 continue;
30080 /* Don't change integer DW_OP_convert after e.g. floating
30081 point typed stack entry. */
30082 else if (enc1 != DW_ATE_unsigned && enc1 != DW_ATE_signed)
30083 keep = loc->dw_loc_next;
30084 break;
30086 break;
30087 default:
30088 break;
30090 return true;
30093 /* Helper function of resolve_addr. DIE had DW_AT_location of
30094 DW_OP_addr alone, which referred to DECL in DW_OP_addr's operand
30095 and DW_OP_addr couldn't be resolved. resolve_addr has already
30096 removed the DW_AT_location attribute. This function attempts to
30097 add a new DW_AT_location attribute with DW_OP_implicit_pointer
30098 to it or DW_AT_const_value attribute, if possible. */
30100 static void
30101 optimize_location_into_implicit_ptr (dw_die_ref die, tree decl)
30103 if (!VAR_P (decl)
30104 || lookup_decl_die (decl) != die
30105 || DECL_EXTERNAL (decl)
30106 || !TREE_STATIC (decl)
30107 || DECL_INITIAL (decl) == NULL_TREE
30108 || DECL_P (DECL_INITIAL (decl))
30109 || get_AT (die, DW_AT_const_value))
30110 return;
30112 tree init = DECL_INITIAL (decl);
30113 HOST_WIDE_INT offset = 0;
30114 /* For variables that have been optimized away and thus
30115 don't have a memory location, see if we can emit
30116 DW_AT_const_value instead. */
30117 if (tree_add_const_value_attribute (die, init))
30118 return;
30119 if (dwarf_strict && dwarf_version < 5)
30120 return;
30121 /* If init is ADDR_EXPR or POINTER_PLUS_EXPR of ADDR_EXPR,
30122 and ADDR_EXPR refers to a decl that has DW_AT_location or
30123 DW_AT_const_value (but isn't addressable, otherwise
30124 resolving the original DW_OP_addr wouldn't fail), see if
30125 we can add DW_OP_implicit_pointer. */
30126 STRIP_NOPS (init);
30127 if (TREE_CODE (init) == POINTER_PLUS_EXPR
30128 && tree_fits_shwi_p (TREE_OPERAND (init, 1)))
30130 offset = tree_to_shwi (TREE_OPERAND (init, 1));
30131 init = TREE_OPERAND (init, 0);
30132 STRIP_NOPS (init);
30134 if (TREE_CODE (init) != ADDR_EXPR)
30135 return;
30136 if ((TREE_CODE (TREE_OPERAND (init, 0)) == STRING_CST
30137 && !TREE_ASM_WRITTEN (TREE_OPERAND (init, 0)))
30138 || (TREE_CODE (TREE_OPERAND (init, 0)) == VAR_DECL
30139 && !DECL_EXTERNAL (TREE_OPERAND (init, 0))
30140 && TREE_OPERAND (init, 0) != decl))
30142 dw_die_ref ref;
30143 dw_loc_descr_ref l;
30145 if (TREE_CODE (TREE_OPERAND (init, 0)) == STRING_CST)
30147 rtx rtl = string_cst_pool_decl (TREE_OPERAND (init, 0));
30148 if (!rtl)
30149 return;
30150 decl = SYMBOL_REF_DECL (rtl);
30152 else
30153 decl = TREE_OPERAND (init, 0);
30154 ref = lookup_decl_die (decl);
30155 if (ref == NULL
30156 || (!get_AT (ref, DW_AT_location)
30157 && !get_AT (ref, DW_AT_const_value)))
30158 return;
30159 l = new_loc_descr (dwarf_OP (DW_OP_implicit_pointer), 0, offset);
30160 l->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
30161 l->dw_loc_oprnd1.v.val_die_ref.die = ref;
30162 l->dw_loc_oprnd1.v.val_die_ref.external = 0;
30163 add_AT_loc (die, DW_AT_location, l);
30167 /* Return NULL if l is a DWARF expression, or first op that is not
30168 valid DWARF expression. */
30170 static dw_loc_descr_ref
30171 non_dwarf_expression (dw_loc_descr_ref l)
30173 while (l)
30175 if (l->dw_loc_opc >= DW_OP_reg0 && l->dw_loc_opc <= DW_OP_reg31)
30176 return l;
30177 switch (l->dw_loc_opc)
30179 case DW_OP_regx:
30180 case DW_OP_implicit_value:
30181 case DW_OP_stack_value:
30182 case DW_OP_implicit_pointer:
30183 case DW_OP_GNU_implicit_pointer:
30184 case DW_OP_GNU_parameter_ref:
30185 case DW_OP_piece:
30186 case DW_OP_bit_piece:
30187 return l;
30188 default:
30189 break;
30191 l = l->dw_loc_next;
30193 return NULL;
30196 /* Return adjusted copy of EXPR:
30197 If it is empty DWARF expression, return it.
30198 If it is valid non-empty DWARF expression,
30199 return copy of EXPR with DW_OP_deref appended to it.
30200 If it is DWARF expression followed by DW_OP_reg{N,x}, return
30201 copy of the DWARF expression with DW_OP_breg{N,x} <0> appended.
30202 If it is DWARF expression followed by DW_OP_stack_value, return
30203 copy of the DWARF expression without anything appended.
30204 Otherwise, return NULL. */
30206 static dw_loc_descr_ref
30207 copy_deref_exprloc (dw_loc_descr_ref expr)
30209 dw_loc_descr_ref tail = NULL;
30211 if (expr == NULL)
30212 return NULL;
30214 dw_loc_descr_ref l = non_dwarf_expression (expr);
30215 if (l && l->dw_loc_next)
30216 return NULL;
30218 if (l)
30220 if (l->dw_loc_opc >= DW_OP_reg0 && l->dw_loc_opc <= DW_OP_reg31)
30221 tail = new_loc_descr ((enum dwarf_location_atom)
30222 (DW_OP_breg0 + (l->dw_loc_opc - DW_OP_reg0)),
30223 0, 0);
30224 else
30225 switch (l->dw_loc_opc)
30227 case DW_OP_regx:
30228 tail = new_loc_descr (DW_OP_bregx,
30229 l->dw_loc_oprnd1.v.val_unsigned, 0);
30230 break;
30231 case DW_OP_stack_value:
30232 break;
30233 default:
30234 return NULL;
30237 else
30238 tail = new_loc_descr (DW_OP_deref, 0, 0);
30240 dw_loc_descr_ref ret = NULL, *p = &ret;
30241 while (expr != l)
30243 *p = new_loc_descr (expr->dw_loc_opc, 0, 0);
30244 (*p)->dw_loc_oprnd1 = expr->dw_loc_oprnd1;
30245 (*p)->dw_loc_oprnd2 = expr->dw_loc_oprnd2;
30246 p = &(*p)->dw_loc_next;
30247 expr = expr->dw_loc_next;
30249 *p = tail;
30250 return ret;
30253 /* For DW_AT_string_length attribute with DW_OP_GNU_variable_value
30254 reference to a variable or argument, adjust it if needed and return:
30255 -1 if the DW_AT_string_length attribute and DW_AT_{string_length_,}byte_size
30256 attribute if present should be removed
30257 0 keep the attribute perhaps with minor modifications, no need to rescan
30258 1 if the attribute has been successfully adjusted. */
30260 static int
30261 optimize_string_length (dw_attr_node *a)
30263 dw_loc_descr_ref l = AT_loc (a), lv;
30264 dw_die_ref die;
30265 if (l->dw_loc_oprnd1.val_class == dw_val_class_decl_ref)
30267 tree decl = l->dw_loc_oprnd1.v.val_decl_ref;
30268 die = lookup_decl_die (decl);
30269 if (die)
30271 l->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
30272 l->dw_loc_oprnd1.v.val_die_ref.die = die;
30273 l->dw_loc_oprnd1.v.val_die_ref.external = 0;
30275 else
30276 return -1;
30278 else
30279 die = l->dw_loc_oprnd1.v.val_die_ref.die;
30281 /* DWARF5 allows reference class, so we can then reference the DIE.
30282 Only do this for DW_OP_GNU_variable_value DW_OP_stack_value. */
30283 if (l->dw_loc_next != NULL && dwarf_version >= 5)
30285 a->dw_attr_val.val_class = dw_val_class_die_ref;
30286 a->dw_attr_val.val_entry = NULL;
30287 a->dw_attr_val.v.val_die_ref.die = die;
30288 a->dw_attr_val.v.val_die_ref.external = 0;
30289 return 0;
30292 dw_attr_node *av = get_AT (die, DW_AT_location);
30293 dw_loc_list_ref d;
30294 bool non_dwarf_expr = false;
30296 if (av == NULL)
30297 return dwarf_strict ? -1 : 0;
30298 switch (AT_class (av))
30300 case dw_val_class_loc_list:
30301 for (d = AT_loc_list (av); d != NULL; d = d->dw_loc_next)
30302 if (d->expr && non_dwarf_expression (d->expr))
30303 non_dwarf_expr = true;
30304 break;
30305 case dw_val_class_view_list:
30306 gcc_unreachable ();
30307 case dw_val_class_loc:
30308 lv = AT_loc (av);
30309 if (lv == NULL)
30310 return dwarf_strict ? -1 : 0;
30311 if (non_dwarf_expression (lv))
30312 non_dwarf_expr = true;
30313 break;
30314 default:
30315 return dwarf_strict ? -1 : 0;
30318 /* If it is safe to transform DW_OP_GNU_variable_value DW_OP_stack_value
30319 into DW_OP_call4 or DW_OP_GNU_variable_value into
30320 DW_OP_call4 DW_OP_deref, do so. */
30321 if (!non_dwarf_expr
30322 && (l->dw_loc_next != NULL || AT_class (av) == dw_val_class_loc))
30324 l->dw_loc_opc = DW_OP_call4;
30325 if (l->dw_loc_next)
30326 l->dw_loc_next = NULL;
30327 else
30328 l->dw_loc_next = new_loc_descr (DW_OP_deref, 0, 0);
30329 return 0;
30332 /* For DW_OP_GNU_variable_value DW_OP_stack_value, we can just
30333 copy over the DW_AT_location attribute from die to a. */
30334 if (l->dw_loc_next != NULL)
30336 a->dw_attr_val = av->dw_attr_val;
30337 return 1;
30340 dw_loc_list_ref list, *p;
30341 switch (AT_class (av))
30343 case dw_val_class_loc_list:
30344 p = &list;
30345 list = NULL;
30346 for (d = AT_loc_list (av); d != NULL; d = d->dw_loc_next)
30348 lv = copy_deref_exprloc (d->expr);
30349 if (lv)
30351 *p = new_loc_list (lv, d->begin, d->vbegin, d->end, d->vend, d->section);
30352 p = &(*p)->dw_loc_next;
30354 else if (!dwarf_strict && d->expr)
30355 return 0;
30357 if (list == NULL)
30358 return dwarf_strict ? -1 : 0;
30359 a->dw_attr_val.val_class = dw_val_class_loc_list;
30360 gen_llsym (list);
30361 *AT_loc_list_ptr (a) = list;
30362 return 1;
30363 case dw_val_class_loc:
30364 lv = copy_deref_exprloc (AT_loc (av));
30365 if (lv == NULL)
30366 return dwarf_strict ? -1 : 0;
30367 a->dw_attr_val.v.val_loc = lv;
30368 return 1;
30369 default:
30370 gcc_unreachable ();
30374 /* Resolve DW_OP_addr and DW_AT_const_value CONST_STRING arguments to
30375 an address in .rodata section if the string literal is emitted there,
30376 or remove the containing location list or replace DW_AT_const_value
30377 with DW_AT_location and empty location expression, if it isn't found
30378 in .rodata. Similarly for SYMBOL_REFs, keep only those that refer
30379 to something that has been emitted in the current CU. */
30381 static void
30382 resolve_addr (dw_die_ref die)
30384 dw_die_ref c;
30385 dw_attr_node *a;
30386 dw_loc_list_ref *curr, *start, loc;
30387 unsigned ix;
30388 bool remove_AT_byte_size = false;
30390 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
30391 switch (AT_class (a))
30393 case dw_val_class_loc_list:
30394 start = curr = AT_loc_list_ptr (a);
30395 loc = *curr;
30396 gcc_assert (loc);
30397 /* The same list can be referenced more than once. See if we have
30398 already recorded the result from a previous pass. */
30399 if (loc->replaced)
30400 *curr = loc->dw_loc_next;
30401 else if (!loc->resolved_addr)
30403 /* As things stand, we do not expect or allow one die to
30404 reference a suffix of another die's location list chain.
30405 References must be identical or completely separate.
30406 There is therefore no need to cache the result of this
30407 pass on any list other than the first; doing so
30408 would lead to unnecessary writes. */
30409 while (*curr)
30411 gcc_assert (!(*curr)->replaced && !(*curr)->resolved_addr);
30412 if (!resolve_addr_in_expr (a, (*curr)->expr))
30414 dw_loc_list_ref next = (*curr)->dw_loc_next;
30415 dw_loc_descr_ref l = (*curr)->expr;
30417 if (next && (*curr)->ll_symbol)
30419 gcc_assert (!next->ll_symbol);
30420 next->ll_symbol = (*curr)->ll_symbol;
30421 next->vl_symbol = (*curr)->vl_symbol;
30423 if (dwarf_split_debug_info)
30424 remove_loc_list_addr_table_entries (l);
30425 *curr = next;
30427 else
30429 mark_base_types ((*curr)->expr);
30430 curr = &(*curr)->dw_loc_next;
30433 if (loc == *start)
30434 loc->resolved_addr = 1;
30435 else
30437 loc->replaced = 1;
30438 loc->dw_loc_next = *start;
30441 if (!*start)
30443 remove_AT (die, a->dw_attr);
30444 ix--;
30446 break;
30447 case dw_val_class_view_list:
30449 gcc_checking_assert (a->dw_attr == DW_AT_GNU_locviews);
30450 gcc_checking_assert (dwarf2out_locviews_in_attribute ());
30451 dw_val_node *llnode
30452 = view_list_to_loc_list_val_node (&a->dw_attr_val);
30453 /* If we no longer have a loclist, or it no longer needs
30454 views, drop this attribute. */
30455 if (!llnode || !llnode->v.val_loc_list->vl_symbol)
30457 remove_AT (die, a->dw_attr);
30458 ix--;
30460 break;
30462 case dw_val_class_loc:
30464 dw_loc_descr_ref l = AT_loc (a);
30465 /* DW_OP_GNU_variable_value DW_OP_stack_value or
30466 DW_OP_GNU_variable_value in DW_AT_string_length can be converted
30467 into DW_OP_call4 or DW_OP_call4 DW_OP_deref, which is standard
30468 DWARF4 unlike DW_OP_GNU_variable_value. Or for DWARF5
30469 DW_OP_GNU_variable_value DW_OP_stack_value can be replaced
30470 with DW_FORM_ref referencing the same DIE as
30471 DW_OP_GNU_variable_value used to reference. */
30472 if (a->dw_attr == DW_AT_string_length
30473 && l
30474 && l->dw_loc_opc == DW_OP_GNU_variable_value
30475 && (l->dw_loc_next == NULL
30476 || (l->dw_loc_next->dw_loc_next == NULL
30477 && l->dw_loc_next->dw_loc_opc == DW_OP_stack_value)))
30479 switch (optimize_string_length (a))
30481 case -1:
30482 remove_AT (die, a->dw_attr);
30483 ix--;
30484 /* If we drop DW_AT_string_length, we need to drop also
30485 DW_AT_{string_length_,}byte_size. */
30486 remove_AT_byte_size = true;
30487 continue;
30488 default:
30489 break;
30490 case 1:
30491 /* Even if we keep the optimized DW_AT_string_length,
30492 it might have changed AT_class, so process it again. */
30493 ix--;
30494 continue;
30497 /* For -gdwarf-2 don't attempt to optimize
30498 DW_AT_data_member_location containing
30499 DW_OP_plus_uconst - older consumers might
30500 rely on it being that op instead of a more complex,
30501 but shorter, location description. */
30502 if ((dwarf_version > 2
30503 || a->dw_attr != DW_AT_data_member_location
30504 || l == NULL
30505 || l->dw_loc_opc != DW_OP_plus_uconst
30506 || l->dw_loc_next != NULL)
30507 && !resolve_addr_in_expr (a, l))
30509 if (dwarf_split_debug_info)
30510 remove_loc_list_addr_table_entries (l);
30511 if (l != NULL
30512 && l->dw_loc_next == NULL
30513 && l->dw_loc_opc == DW_OP_addr
30514 && GET_CODE (l->dw_loc_oprnd1.v.val_addr) == SYMBOL_REF
30515 && SYMBOL_REF_DECL (l->dw_loc_oprnd1.v.val_addr)
30516 && a->dw_attr == DW_AT_location)
30518 tree decl = SYMBOL_REF_DECL (l->dw_loc_oprnd1.v.val_addr);
30519 remove_AT (die, a->dw_attr);
30520 ix--;
30521 optimize_location_into_implicit_ptr (die, decl);
30522 break;
30524 if (a->dw_attr == DW_AT_string_length)
30525 /* If we drop DW_AT_string_length, we need to drop also
30526 DW_AT_{string_length_,}byte_size. */
30527 remove_AT_byte_size = true;
30528 remove_AT (die, a->dw_attr);
30529 ix--;
30531 else
30532 mark_base_types (l);
30534 break;
30535 case dw_val_class_addr:
30536 if (a->dw_attr == DW_AT_const_value
30537 && !resolve_one_addr (&a->dw_attr_val.v.val_addr))
30539 if (AT_index (a) != NOT_INDEXED)
30540 remove_addr_table_entry (a->dw_attr_val.val_entry);
30541 remove_AT (die, a->dw_attr);
30542 ix--;
30544 if ((die->die_tag == DW_TAG_call_site
30545 && a->dw_attr == DW_AT_call_origin)
30546 || (die->die_tag == DW_TAG_GNU_call_site
30547 && a->dw_attr == DW_AT_abstract_origin))
30549 tree tdecl = SYMBOL_REF_DECL (a->dw_attr_val.v.val_addr);
30550 dw_die_ref tdie = lookup_decl_die (tdecl);
30551 dw_die_ref cdie;
30552 if (tdie == NULL
30553 && DECL_EXTERNAL (tdecl)
30554 && DECL_ABSTRACT_ORIGIN (tdecl) == NULL_TREE
30555 && (cdie = lookup_context_die (DECL_CONTEXT (tdecl))))
30557 dw_die_ref pdie = cdie;
30558 /* Make sure we don't add these DIEs into type units.
30559 We could emit skeleton DIEs for context (namespaces,
30560 outer structs/classes) and a skeleton DIE for the
30561 innermost context with DW_AT_signature pointing to the
30562 type unit. See PR78835. */
30563 while (pdie && pdie->die_tag != DW_TAG_type_unit)
30564 pdie = pdie->die_parent;
30565 if (pdie == NULL)
30567 /* Creating a full DIE for tdecl is overly expensive and
30568 at this point even wrong when in the LTO phase
30569 as it can end up generating new type DIEs we didn't
30570 output and thus optimize_external_refs will crash. */
30571 tdie = new_die (DW_TAG_subprogram, cdie, NULL_TREE);
30572 add_AT_flag (tdie, DW_AT_external, 1);
30573 add_AT_flag (tdie, DW_AT_declaration, 1);
30574 add_linkage_attr (tdie, tdecl);
30575 add_name_and_src_coords_attributes (tdie, tdecl, true);
30576 equate_decl_number_to_die (tdecl, tdie);
30579 if (tdie)
30581 a->dw_attr_val.val_class = dw_val_class_die_ref;
30582 a->dw_attr_val.v.val_die_ref.die = tdie;
30583 a->dw_attr_val.v.val_die_ref.external = 0;
30585 else
30587 if (AT_index (a) != NOT_INDEXED)
30588 remove_addr_table_entry (a->dw_attr_val.val_entry);
30589 remove_AT (die, a->dw_attr);
30590 ix--;
30593 break;
30594 default:
30595 break;
30598 if (remove_AT_byte_size)
30599 remove_AT (die, dwarf_version >= 5
30600 ? DW_AT_string_length_byte_size
30601 : DW_AT_byte_size);
30603 FOR_EACH_CHILD (die, c, resolve_addr (c));
30606 /* Helper routines for optimize_location_lists.
30607 This pass tries to share identical local lists in .debug_loc
30608 section. */
30610 /* Iteratively hash operands of LOC opcode into HSTATE. */
30612 static void
30613 hash_loc_operands (dw_loc_descr_ref loc, inchash::hash &hstate)
30615 dw_val_ref val1 = &loc->dw_loc_oprnd1;
30616 dw_val_ref val2 = &loc->dw_loc_oprnd2;
30618 switch (loc->dw_loc_opc)
30620 case DW_OP_const4u:
30621 case DW_OP_const8u:
30622 if (loc->dtprel)
30623 goto hash_addr;
30624 /* FALLTHRU */
30625 case DW_OP_const1u:
30626 case DW_OP_const1s:
30627 case DW_OP_const2u:
30628 case DW_OP_const2s:
30629 case DW_OP_const4s:
30630 case DW_OP_const8s:
30631 case DW_OP_constu:
30632 case DW_OP_consts:
30633 case DW_OP_pick:
30634 case DW_OP_plus_uconst:
30635 case DW_OP_breg0:
30636 case DW_OP_breg1:
30637 case DW_OP_breg2:
30638 case DW_OP_breg3:
30639 case DW_OP_breg4:
30640 case DW_OP_breg5:
30641 case DW_OP_breg6:
30642 case DW_OP_breg7:
30643 case DW_OP_breg8:
30644 case DW_OP_breg9:
30645 case DW_OP_breg10:
30646 case DW_OP_breg11:
30647 case DW_OP_breg12:
30648 case DW_OP_breg13:
30649 case DW_OP_breg14:
30650 case DW_OP_breg15:
30651 case DW_OP_breg16:
30652 case DW_OP_breg17:
30653 case DW_OP_breg18:
30654 case DW_OP_breg19:
30655 case DW_OP_breg20:
30656 case DW_OP_breg21:
30657 case DW_OP_breg22:
30658 case DW_OP_breg23:
30659 case DW_OP_breg24:
30660 case DW_OP_breg25:
30661 case DW_OP_breg26:
30662 case DW_OP_breg27:
30663 case DW_OP_breg28:
30664 case DW_OP_breg29:
30665 case DW_OP_breg30:
30666 case DW_OP_breg31:
30667 case DW_OP_regx:
30668 case DW_OP_fbreg:
30669 case DW_OP_piece:
30670 case DW_OP_deref_size:
30671 case DW_OP_xderef_size:
30672 hstate.add_object (val1->v.val_int);
30673 break;
30674 case DW_OP_skip:
30675 case DW_OP_bra:
30677 int offset;
30679 gcc_assert (val1->val_class == dw_val_class_loc);
30680 offset = val1->v.val_loc->dw_loc_addr - (loc->dw_loc_addr + 3);
30681 hstate.add_object (offset);
30683 break;
30684 case DW_OP_implicit_value:
30685 hstate.add_object (val1->v.val_unsigned);
30686 switch (val2->val_class)
30688 case dw_val_class_const:
30689 hstate.add_object (val2->v.val_int);
30690 break;
30691 case dw_val_class_vec:
30693 unsigned int elt_size = val2->v.val_vec.elt_size;
30694 unsigned int len = val2->v.val_vec.length;
30696 hstate.add_int (elt_size);
30697 hstate.add_int (len);
30698 hstate.add (val2->v.val_vec.array, len * elt_size);
30700 break;
30701 case dw_val_class_const_double:
30702 hstate.add_object (val2->v.val_double.low);
30703 hstate.add_object (val2->v.val_double.high);
30704 break;
30705 case dw_val_class_wide_int:
30706 hstate.add (val2->v.val_wide->get_val (),
30707 get_full_len (*val2->v.val_wide)
30708 * HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR);
30709 break;
30710 case dw_val_class_addr:
30711 inchash::add_rtx (val2->v.val_addr, hstate);
30712 break;
30713 default:
30714 gcc_unreachable ();
30716 break;
30717 case DW_OP_bregx:
30718 case DW_OP_bit_piece:
30719 hstate.add_object (val1->v.val_int);
30720 hstate.add_object (val2->v.val_int);
30721 break;
30722 case DW_OP_addr:
30723 hash_addr:
30724 if (loc->dtprel)
30726 unsigned char dtprel = 0xd1;
30727 hstate.add_object (dtprel);
30729 inchash::add_rtx (val1->v.val_addr, hstate);
30730 break;
30731 case DW_OP_GNU_addr_index:
30732 case DW_OP_addrx:
30733 case DW_OP_GNU_const_index:
30734 case DW_OP_constx:
30736 if (loc->dtprel)
30738 unsigned char dtprel = 0xd1;
30739 hstate.add_object (dtprel);
30741 inchash::add_rtx (val1->val_entry->addr.rtl, hstate);
30743 break;
30744 case DW_OP_implicit_pointer:
30745 case DW_OP_GNU_implicit_pointer:
30746 hstate.add_int (val2->v.val_int);
30747 break;
30748 case DW_OP_entry_value:
30749 case DW_OP_GNU_entry_value:
30750 hstate.add_object (val1->v.val_loc);
30751 break;
30752 case DW_OP_regval_type:
30753 case DW_OP_deref_type:
30754 case DW_OP_GNU_regval_type:
30755 case DW_OP_GNU_deref_type:
30757 unsigned int byte_size
30758 = get_AT_unsigned (val2->v.val_die_ref.die, DW_AT_byte_size);
30759 unsigned int encoding
30760 = get_AT_unsigned (val2->v.val_die_ref.die, DW_AT_encoding);
30761 hstate.add_object (val1->v.val_int);
30762 hstate.add_object (byte_size);
30763 hstate.add_object (encoding);
30765 break;
30766 case DW_OP_convert:
30767 case DW_OP_reinterpret:
30768 case DW_OP_GNU_convert:
30769 case DW_OP_GNU_reinterpret:
30770 if (val1->val_class == dw_val_class_unsigned_const)
30772 hstate.add_object (val1->v.val_unsigned);
30773 break;
30775 /* FALLTHRU */
30776 case DW_OP_const_type:
30777 case DW_OP_GNU_const_type:
30779 unsigned int byte_size
30780 = get_AT_unsigned (val1->v.val_die_ref.die, DW_AT_byte_size);
30781 unsigned int encoding
30782 = get_AT_unsigned (val1->v.val_die_ref.die, DW_AT_encoding);
30783 hstate.add_object (byte_size);
30784 hstate.add_object (encoding);
30785 if (loc->dw_loc_opc != DW_OP_const_type
30786 && loc->dw_loc_opc != DW_OP_GNU_const_type)
30787 break;
30788 hstate.add_object (val2->val_class);
30789 switch (val2->val_class)
30791 case dw_val_class_const:
30792 hstate.add_object (val2->v.val_int);
30793 break;
30794 case dw_val_class_vec:
30796 unsigned int elt_size = val2->v.val_vec.elt_size;
30797 unsigned int len = val2->v.val_vec.length;
30799 hstate.add_object (elt_size);
30800 hstate.add_object (len);
30801 hstate.add (val2->v.val_vec.array, len * elt_size);
30803 break;
30804 case dw_val_class_const_double:
30805 hstate.add_object (val2->v.val_double.low);
30806 hstate.add_object (val2->v.val_double.high);
30807 break;
30808 case dw_val_class_wide_int:
30809 hstate.add (val2->v.val_wide->get_val (),
30810 get_full_len (*val2->v.val_wide)
30811 * HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR);
30812 break;
30813 default:
30814 gcc_unreachable ();
30817 break;
30819 default:
30820 /* Other codes have no operands. */
30821 break;
30825 /* Iteratively hash the whole DWARF location expression LOC into HSTATE. */
30827 static inline void
30828 hash_locs (dw_loc_descr_ref loc, inchash::hash &hstate)
30830 dw_loc_descr_ref l;
30831 bool sizes_computed = false;
30832 /* Compute sizes, so that DW_OP_skip/DW_OP_bra can be checksummed. */
30833 size_of_locs (loc);
30835 for (l = loc; l != NULL; l = l->dw_loc_next)
30837 enum dwarf_location_atom opc = l->dw_loc_opc;
30838 hstate.add_object (opc);
30839 if ((opc == DW_OP_skip || opc == DW_OP_bra) && !sizes_computed)
30841 size_of_locs (loc);
30842 sizes_computed = true;
30844 hash_loc_operands (l, hstate);
30848 /* Compute hash of the whole location list LIST_HEAD. */
30850 static inline void
30851 hash_loc_list (dw_loc_list_ref list_head)
30853 dw_loc_list_ref curr = list_head;
30854 inchash::hash hstate;
30856 for (curr = list_head; curr != NULL; curr = curr->dw_loc_next)
30858 hstate.add (curr->begin, strlen (curr->begin) + 1);
30859 hstate.add (curr->end, strlen (curr->end) + 1);
30860 hstate.add_object (curr->vbegin);
30861 hstate.add_object (curr->vend);
30862 if (curr->section)
30863 hstate.add (curr->section, strlen (curr->section) + 1);
30864 hash_locs (curr->expr, hstate);
30866 list_head->hash = hstate.end ();
30869 /* Return true if X and Y opcodes have the same operands. */
30871 static inline bool
30872 compare_loc_operands (dw_loc_descr_ref x, dw_loc_descr_ref y)
30874 dw_val_ref valx1 = &x->dw_loc_oprnd1;
30875 dw_val_ref valx2 = &x->dw_loc_oprnd2;
30876 dw_val_ref valy1 = &y->dw_loc_oprnd1;
30877 dw_val_ref valy2 = &y->dw_loc_oprnd2;
30879 switch (x->dw_loc_opc)
30881 case DW_OP_const4u:
30882 case DW_OP_const8u:
30883 if (x->dtprel)
30884 goto hash_addr;
30885 /* FALLTHRU */
30886 case DW_OP_const1u:
30887 case DW_OP_const1s:
30888 case DW_OP_const2u:
30889 case DW_OP_const2s:
30890 case DW_OP_const4s:
30891 case DW_OP_const8s:
30892 case DW_OP_constu:
30893 case DW_OP_consts:
30894 case DW_OP_pick:
30895 case DW_OP_plus_uconst:
30896 case DW_OP_breg0:
30897 case DW_OP_breg1:
30898 case DW_OP_breg2:
30899 case DW_OP_breg3:
30900 case DW_OP_breg4:
30901 case DW_OP_breg5:
30902 case DW_OP_breg6:
30903 case DW_OP_breg7:
30904 case DW_OP_breg8:
30905 case DW_OP_breg9:
30906 case DW_OP_breg10:
30907 case DW_OP_breg11:
30908 case DW_OP_breg12:
30909 case DW_OP_breg13:
30910 case DW_OP_breg14:
30911 case DW_OP_breg15:
30912 case DW_OP_breg16:
30913 case DW_OP_breg17:
30914 case DW_OP_breg18:
30915 case DW_OP_breg19:
30916 case DW_OP_breg20:
30917 case DW_OP_breg21:
30918 case DW_OP_breg22:
30919 case DW_OP_breg23:
30920 case DW_OP_breg24:
30921 case DW_OP_breg25:
30922 case DW_OP_breg26:
30923 case DW_OP_breg27:
30924 case DW_OP_breg28:
30925 case DW_OP_breg29:
30926 case DW_OP_breg30:
30927 case DW_OP_breg31:
30928 case DW_OP_regx:
30929 case DW_OP_fbreg:
30930 case DW_OP_piece:
30931 case DW_OP_deref_size:
30932 case DW_OP_xderef_size:
30933 return valx1->v.val_int == valy1->v.val_int;
30934 case DW_OP_skip:
30935 case DW_OP_bra:
30936 /* If splitting debug info, the use of DW_OP_GNU_addr_index
30937 can cause irrelevant differences in dw_loc_addr. */
30938 gcc_assert (valx1->val_class == dw_val_class_loc
30939 && valy1->val_class == dw_val_class_loc
30940 && (dwarf_split_debug_info
30941 || x->dw_loc_addr == y->dw_loc_addr));
30942 return valx1->v.val_loc->dw_loc_addr == valy1->v.val_loc->dw_loc_addr;
30943 case DW_OP_implicit_value:
30944 if (valx1->v.val_unsigned != valy1->v.val_unsigned
30945 || valx2->val_class != valy2->val_class)
30946 return false;
30947 switch (valx2->val_class)
30949 case dw_val_class_const:
30950 return valx2->v.val_int == valy2->v.val_int;
30951 case dw_val_class_vec:
30952 return valx2->v.val_vec.elt_size == valy2->v.val_vec.elt_size
30953 && valx2->v.val_vec.length == valy2->v.val_vec.length
30954 && memcmp (valx2->v.val_vec.array, valy2->v.val_vec.array,
30955 valx2->v.val_vec.elt_size
30956 * valx2->v.val_vec.length) == 0;
30957 case dw_val_class_const_double:
30958 return valx2->v.val_double.low == valy2->v.val_double.low
30959 && valx2->v.val_double.high == valy2->v.val_double.high;
30960 case dw_val_class_wide_int:
30961 return *valx2->v.val_wide == *valy2->v.val_wide;
30962 case dw_val_class_addr:
30963 return rtx_equal_p (valx2->v.val_addr, valy2->v.val_addr);
30964 default:
30965 gcc_unreachable ();
30967 case DW_OP_bregx:
30968 case DW_OP_bit_piece:
30969 return valx1->v.val_int == valy1->v.val_int
30970 && valx2->v.val_int == valy2->v.val_int;
30971 case DW_OP_addr:
30972 hash_addr:
30973 return rtx_equal_p (valx1->v.val_addr, valy1->v.val_addr);
30974 case DW_OP_GNU_addr_index:
30975 case DW_OP_addrx:
30976 case DW_OP_GNU_const_index:
30977 case DW_OP_constx:
30979 rtx ax1 = valx1->val_entry->addr.rtl;
30980 rtx ay1 = valy1->val_entry->addr.rtl;
30981 return rtx_equal_p (ax1, ay1);
30983 case DW_OP_implicit_pointer:
30984 case DW_OP_GNU_implicit_pointer:
30985 return valx1->val_class == dw_val_class_die_ref
30986 && valx1->val_class == valy1->val_class
30987 && valx1->v.val_die_ref.die == valy1->v.val_die_ref.die
30988 && valx2->v.val_int == valy2->v.val_int;
30989 case DW_OP_entry_value:
30990 case DW_OP_GNU_entry_value:
30991 return compare_loc_operands (valx1->v.val_loc, valy1->v.val_loc);
30992 case DW_OP_const_type:
30993 case DW_OP_GNU_const_type:
30994 if (valx1->v.val_die_ref.die != valy1->v.val_die_ref.die
30995 || valx2->val_class != valy2->val_class)
30996 return false;
30997 switch (valx2->val_class)
30999 case dw_val_class_const:
31000 return valx2->v.val_int == valy2->v.val_int;
31001 case dw_val_class_vec:
31002 return valx2->v.val_vec.elt_size == valy2->v.val_vec.elt_size
31003 && valx2->v.val_vec.length == valy2->v.val_vec.length
31004 && memcmp (valx2->v.val_vec.array, valy2->v.val_vec.array,
31005 valx2->v.val_vec.elt_size
31006 * valx2->v.val_vec.length) == 0;
31007 case dw_val_class_const_double:
31008 return valx2->v.val_double.low == valy2->v.val_double.low
31009 && valx2->v.val_double.high == valy2->v.val_double.high;
31010 case dw_val_class_wide_int:
31011 return *valx2->v.val_wide == *valy2->v.val_wide;
31012 default:
31013 gcc_unreachable ();
31015 case DW_OP_regval_type:
31016 case DW_OP_deref_type:
31017 case DW_OP_GNU_regval_type:
31018 case DW_OP_GNU_deref_type:
31019 return valx1->v.val_int == valy1->v.val_int
31020 && valx2->v.val_die_ref.die == valy2->v.val_die_ref.die;
31021 case DW_OP_convert:
31022 case DW_OP_reinterpret:
31023 case DW_OP_GNU_convert:
31024 case DW_OP_GNU_reinterpret:
31025 if (valx1->val_class != valy1->val_class)
31026 return false;
31027 if (valx1->val_class == dw_val_class_unsigned_const)
31028 return valx1->v.val_unsigned == valy1->v.val_unsigned;
31029 return valx1->v.val_die_ref.die == valy1->v.val_die_ref.die;
31030 case DW_OP_GNU_parameter_ref:
31031 return valx1->val_class == dw_val_class_die_ref
31032 && valx1->val_class == valy1->val_class
31033 && valx1->v.val_die_ref.die == valy1->v.val_die_ref.die;
31034 default:
31035 /* Other codes have no operands. */
31036 return true;
31040 /* Return true if DWARF location expressions X and Y are the same. */
31042 static inline bool
31043 compare_locs (dw_loc_descr_ref x, dw_loc_descr_ref y)
31045 for (; x != NULL && y != NULL; x = x->dw_loc_next, y = y->dw_loc_next)
31046 if (x->dw_loc_opc != y->dw_loc_opc
31047 || x->dtprel != y->dtprel
31048 || !compare_loc_operands (x, y))
31049 break;
31050 return x == NULL && y == NULL;
31053 /* Hashtable helpers. */
31055 struct loc_list_hasher : nofree_ptr_hash <dw_loc_list_struct>
31057 static inline hashval_t hash (const dw_loc_list_struct *);
31058 static inline bool equal (const dw_loc_list_struct *,
31059 const dw_loc_list_struct *);
31062 /* Return precomputed hash of location list X. */
31064 inline hashval_t
31065 loc_list_hasher::hash (const dw_loc_list_struct *x)
31067 return x->hash;
31070 /* Return true if location lists A and B are the same. */
31072 inline bool
31073 loc_list_hasher::equal (const dw_loc_list_struct *a,
31074 const dw_loc_list_struct *b)
31076 if (a == b)
31077 return 1;
31078 if (a->hash != b->hash)
31079 return 0;
31080 for (; a != NULL && b != NULL; a = a->dw_loc_next, b = b->dw_loc_next)
31081 if (strcmp (a->begin, b->begin) != 0
31082 || strcmp (a->end, b->end) != 0
31083 || (a->section == NULL) != (b->section == NULL)
31084 || (a->section && strcmp (a->section, b->section) != 0)
31085 || a->vbegin != b->vbegin || a->vend != b->vend
31086 || !compare_locs (a->expr, b->expr))
31087 break;
31088 return a == NULL && b == NULL;
31091 typedef hash_table<loc_list_hasher> loc_list_hash_type;
31094 /* Recursively optimize location lists referenced from DIE
31095 children and share them whenever possible. */
31097 static void
31098 optimize_location_lists_1 (dw_die_ref die, loc_list_hash_type *htab)
31100 dw_die_ref c;
31101 dw_attr_node *a;
31102 unsigned ix;
31103 dw_loc_list_struct **slot;
31104 bool drop_locviews = false;
31105 bool has_locviews = false;
31107 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
31108 if (AT_class (a) == dw_val_class_loc_list)
31110 dw_loc_list_ref list = AT_loc_list (a);
31111 /* TODO: perform some optimizations here, before hashing
31112 it and storing into the hash table. */
31113 hash_loc_list (list);
31114 slot = htab->find_slot_with_hash (list, list->hash, INSERT);
31115 if (*slot == NULL)
31117 *slot = list;
31118 if (loc_list_has_views (list))
31119 gcc_assert (list->vl_symbol);
31120 else if (list->vl_symbol)
31122 drop_locviews = true;
31123 list->vl_symbol = NULL;
31126 else
31128 if (list->vl_symbol && !(*slot)->vl_symbol)
31129 drop_locviews = true;
31130 a->dw_attr_val.v.val_loc_list = *slot;
31133 else if (AT_class (a) == dw_val_class_view_list)
31135 gcc_checking_assert (a->dw_attr == DW_AT_GNU_locviews);
31136 has_locviews = true;
31140 if (drop_locviews && has_locviews)
31141 remove_AT (die, DW_AT_GNU_locviews);
31143 FOR_EACH_CHILD (die, c, optimize_location_lists_1 (c, htab));
31147 /* Recursively assign each location list a unique index into the debug_addr
31148 section. */
31150 static void
31151 index_location_lists (dw_die_ref die)
31153 dw_die_ref c;
31154 dw_attr_node *a;
31155 unsigned ix;
31157 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
31158 if (AT_class (a) == dw_val_class_loc_list)
31160 dw_loc_list_ref list = AT_loc_list (a);
31161 dw_loc_list_ref curr;
31162 for (curr = list; curr != NULL; curr = curr->dw_loc_next)
31164 /* Don't index an entry that has already been indexed
31165 or won't be output. Make sure skip_loc_list_entry doesn't
31166 call size_of_locs, because that might cause circular dependency,
31167 index_location_lists requiring address table indexes to be
31168 computed, but adding new indexes through add_addr_table_entry
31169 and address table index computation requiring no new additions
31170 to the hash table. In the rare case of DWARF[234] >= 64KB
31171 location expression, we'll just waste unused address table entry
31172 for it. */
31173 if (curr->begin_entry != NULL
31174 || skip_loc_list_entry (curr))
31175 continue;
31177 curr->begin_entry
31178 = add_addr_table_entry (xstrdup (curr->begin), ate_kind_label);
31182 FOR_EACH_CHILD (die, c, index_location_lists (c));
31185 /* Optimize location lists referenced from DIE
31186 children and share them whenever possible. */
31188 static void
31189 optimize_location_lists (dw_die_ref die)
31191 loc_list_hash_type htab (500);
31192 optimize_location_lists_1 (die, &htab);
31195 /* Traverse the limbo die list, and add parent/child links. The only
31196 dies without parents that should be here are concrete instances of
31197 inline functions, and the comp_unit_die. We can ignore the comp_unit_die.
31198 For concrete instances, we can get the parent die from the abstract
31199 instance. */
31201 static void
31202 flush_limbo_die_list (void)
31204 limbo_die_node *node;
31206 /* get_context_die calls force_decl_die, which can put new DIEs on the
31207 limbo list in LTO mode when nested functions are put in a different
31208 partition than that of their parent function. */
31209 while ((node = limbo_die_list))
31211 dw_die_ref die = node->die;
31212 limbo_die_list = node->next;
31214 if (die->die_parent == NULL)
31216 dw_die_ref origin = get_AT_ref (die, DW_AT_abstract_origin);
31218 if (origin && origin->die_parent)
31219 add_child_die (origin->die_parent, die);
31220 else if (is_cu_die (die))
31222 else if (seen_error ())
31223 /* It's OK to be confused by errors in the input. */
31224 add_child_die (comp_unit_die (), die);
31225 else
31227 /* In certain situations, the lexical block containing a
31228 nested function can be optimized away, which results
31229 in the nested function die being orphaned. Likewise
31230 with the return type of that nested function. Force
31231 this to be a child of the containing function.
31233 It may happen that even the containing function got fully
31234 inlined and optimized out. In that case we are lost and
31235 assign the empty child. This should not be big issue as
31236 the function is likely unreachable too. */
31237 gcc_assert (node->created_for);
31239 if (DECL_P (node->created_for))
31240 origin = get_context_die (DECL_CONTEXT (node->created_for));
31241 else if (TYPE_P (node->created_for))
31242 origin = scope_die_for (node->created_for, comp_unit_die ());
31243 else
31244 origin = comp_unit_die ();
31246 add_child_die (origin, die);
31252 /* Reset DIEs so we can output them again. */
31254 static void
31255 reset_dies (dw_die_ref die)
31257 dw_die_ref c;
31259 /* Remove stuff we re-generate. */
31260 die->die_mark = 0;
31261 die->die_offset = 0;
31262 die->die_abbrev = 0;
31263 remove_AT (die, DW_AT_sibling);
31265 FOR_EACH_CHILD (die, c, reset_dies (c));
31268 /* Output stuff that dwarf requires at the end of every file,
31269 and generate the DWARF-2 debugging info. */
31271 static void
31272 dwarf2out_finish (const char *filename)
31274 comdat_type_node *ctnode;
31275 dw_die_ref main_comp_unit_die;
31276 unsigned char checksum[16];
31277 char dl_section_ref[MAX_ARTIFICIAL_LABEL_BYTES];
31279 /* Flush out any latecomers to the limbo party. */
31280 flush_limbo_die_list ();
31282 if (inline_entry_data_table)
31283 gcc_assert (inline_entry_data_table->elements () == 0);
31285 if (flag_checking)
31287 verify_die (comp_unit_die ());
31288 for (limbo_die_node *node = cu_die_list; node; node = node->next)
31289 verify_die (node->die);
31292 /* We shouldn't have any symbols with delayed asm names for
31293 DIEs generated after early finish. */
31294 gcc_assert (deferred_asm_name == NULL);
31296 gen_remaining_tmpl_value_param_die_attribute ();
31298 if (flag_generate_lto || flag_generate_offload)
31300 gcc_assert (flag_fat_lto_objects || flag_generate_offload);
31302 /* Prune stuff so that dwarf2out_finish runs successfully
31303 for the fat part of the object. */
31304 reset_dies (comp_unit_die ());
31305 for (limbo_die_node *node = cu_die_list; node; node = node->next)
31306 reset_dies (node->die);
31308 hash_table<comdat_type_hasher> comdat_type_table (100);
31309 for (ctnode = comdat_type_list; ctnode != NULL; ctnode = ctnode->next)
31311 comdat_type_node **slot
31312 = comdat_type_table.find_slot (ctnode, INSERT);
31314 /* Don't reset types twice. */
31315 if (*slot != HTAB_EMPTY_ENTRY)
31316 continue;
31318 /* Remove the pointer to the line table. */
31319 remove_AT (ctnode->root_die, DW_AT_stmt_list);
31321 if (debug_info_level >= DINFO_LEVEL_TERSE)
31322 reset_dies (ctnode->root_die);
31324 *slot = ctnode;
31327 /* Reset die CU symbol so we don't output it twice. */
31328 comp_unit_die ()->die_id.die_symbol = NULL;
31330 /* Remove DW_AT_macro and DW_AT_stmt_list from the early output. */
31331 remove_AT (comp_unit_die (), DW_AT_stmt_list);
31332 if (have_macinfo)
31333 remove_AT (comp_unit_die (), DEBUG_MACRO_ATTRIBUTE);
31335 /* Remove indirect string decisions. */
31336 debug_str_hash->traverse<void *, reset_indirect_string> (NULL);
31337 if (debug_line_str_hash)
31339 debug_line_str_hash->traverse<void *, reset_indirect_string> (NULL);
31340 debug_line_str_hash = NULL;
31344 #if ENABLE_ASSERT_CHECKING
31346 dw_die_ref die = comp_unit_die (), c;
31347 FOR_EACH_CHILD (die, c, gcc_assert (! c->die_mark));
31349 #endif
31350 for (ctnode = comdat_type_list; ctnode != NULL; ctnode = ctnode->next)
31351 resolve_addr (ctnode->root_die);
31352 resolve_addr (comp_unit_die ());
31353 move_marked_base_types ();
31355 if (dump_file)
31357 fprintf (dump_file, "DWARF for %s\n", filename);
31358 print_die (comp_unit_die (), dump_file);
31361 /* Initialize sections and labels used for actual assembler output. */
31362 unsigned generation = init_sections_and_labels (false);
31364 /* Traverse the DIE's and add sibling attributes to those DIE's that
31365 have children. */
31366 add_sibling_attributes (comp_unit_die ());
31367 limbo_die_node *node;
31368 for (node = cu_die_list; node; node = node->next)
31369 add_sibling_attributes (node->die);
31370 for (ctnode = comdat_type_list; ctnode != NULL; ctnode = ctnode->next)
31371 add_sibling_attributes (ctnode->root_die);
31373 /* When splitting DWARF info, we put some attributes in the
31374 skeleton compile_unit DIE that remains in the .o, while
31375 most attributes go in the DWO compile_unit_die. */
31376 if (dwarf_split_debug_info)
31378 limbo_die_node *cu;
31379 main_comp_unit_die = gen_compile_unit_die (NULL);
31380 if (dwarf_version >= 5)
31381 main_comp_unit_die->die_tag = DW_TAG_skeleton_unit;
31382 cu = limbo_die_list;
31383 gcc_assert (cu->die == main_comp_unit_die);
31384 limbo_die_list = limbo_die_list->next;
31385 cu->next = cu_die_list;
31386 cu_die_list = cu;
31388 else
31389 main_comp_unit_die = comp_unit_die ();
31391 /* Output a terminator label for the .text section. */
31392 switch_to_section (text_section);
31393 targetm.asm_out.internal_label (asm_out_file, TEXT_END_LABEL, 0);
31394 if (cold_text_section)
31396 switch_to_section (cold_text_section);
31397 targetm.asm_out.internal_label (asm_out_file, COLD_END_LABEL, 0);
31400 /* We can only use the low/high_pc attributes if all of the code was
31401 in .text. */
31402 if (!have_multiple_function_sections
31403 || (dwarf_version < 3 && dwarf_strict))
31405 /* Don't add if the CU has no associated code. */
31406 if (text_section_used)
31407 add_AT_low_high_pc (main_comp_unit_die, text_section_label,
31408 text_end_label, true);
31410 else
31412 unsigned fde_idx;
31413 dw_fde_ref fde;
31414 bool range_list_added = false;
31416 if (text_section_used)
31417 add_ranges_by_labels (main_comp_unit_die, text_section_label,
31418 text_end_label, &range_list_added, true);
31419 if (cold_text_section_used)
31420 add_ranges_by_labels (main_comp_unit_die, cold_text_section_label,
31421 cold_end_label, &range_list_added, true);
31423 FOR_EACH_VEC_ELT (*fde_vec, fde_idx, fde)
31425 if (DECL_IGNORED_P (fde->decl))
31426 continue;
31427 if (!fde->in_std_section)
31428 add_ranges_by_labels (main_comp_unit_die, fde->dw_fde_begin,
31429 fde->dw_fde_end, &range_list_added,
31430 true);
31431 if (fde->dw_fde_second_begin && !fde->second_in_std_section)
31432 add_ranges_by_labels (main_comp_unit_die, fde->dw_fde_second_begin,
31433 fde->dw_fde_second_end, &range_list_added,
31434 true);
31437 if (range_list_added)
31439 /* We need to give .debug_loc and .debug_ranges an appropriate
31440 "base address". Use zero so that these addresses become
31441 absolute. Historically, we've emitted the unexpected
31442 DW_AT_entry_pc instead of DW_AT_low_pc for this purpose.
31443 Emit both to give time for other tools to adapt. */
31444 add_AT_addr (main_comp_unit_die, DW_AT_low_pc, const0_rtx, true);
31445 if (! dwarf_strict && dwarf_version < 4)
31446 add_AT_addr (main_comp_unit_die, DW_AT_entry_pc, const0_rtx, true);
31448 add_ranges (NULL);
31452 /* AIX Assembler inserts the length, so adjust the reference to match the
31453 offset expected by debuggers. */
31454 strcpy (dl_section_ref, debug_line_section_label);
31455 if (XCOFF_DEBUGGING_INFO)
31456 strcat (dl_section_ref, DWARF_INITIAL_LENGTH_SIZE_STR);
31458 if (debug_info_level >= DINFO_LEVEL_TERSE)
31459 add_AT_lineptr (main_comp_unit_die, DW_AT_stmt_list,
31460 dl_section_ref);
31462 if (have_macinfo)
31463 add_AT_macptr (comp_unit_die (), DEBUG_MACRO_ATTRIBUTE,
31464 macinfo_section_label);
31466 if (dwarf_split_debug_info)
31468 if (have_location_lists)
31470 /* Since we generate the loclists in the split DWARF .dwo
31471 file itself, we don't need to generate a loclists_base
31472 attribute for the split compile unit DIE. That attribute
31473 (and using relocatable sec_offset FORMs) isn't allowed
31474 for a split compile unit. Only if the .debug_loclists
31475 section was in the main file, would we need to generate a
31476 loclists_base attribute here (for the full or skeleton
31477 unit DIE). */
31479 /* optimize_location_lists calculates the size of the lists,
31480 so index them first, and assign indices to the entries.
31481 Although optimize_location_lists will remove entries from
31482 the table, it only does so for duplicates, and therefore
31483 only reduces ref_counts to 1. */
31484 index_location_lists (comp_unit_die ());
31487 if (addr_index_table != NULL)
31489 unsigned int index = 0;
31490 addr_index_table
31491 ->traverse_noresize<unsigned int *, index_addr_table_entry>
31492 (&index);
31496 loc_list_idx = 0;
31497 if (have_location_lists)
31499 optimize_location_lists (comp_unit_die ());
31500 /* And finally assign indexes to the entries for -gsplit-dwarf. */
31501 if (dwarf_version >= 5 && dwarf_split_debug_info)
31502 assign_location_list_indexes (comp_unit_die ());
31505 save_macinfo_strings ();
31507 if (dwarf_split_debug_info)
31509 unsigned int index = 0;
31511 /* Add attributes common to skeleton compile_units and
31512 type_units. Because these attributes include strings, it
31513 must be done before freezing the string table. Top-level
31514 skeleton die attrs are added when the skeleton type unit is
31515 created, so ensure it is created by this point. */
31516 add_top_level_skeleton_die_attrs (main_comp_unit_die);
31517 debug_str_hash->traverse_noresize<unsigned int *, index_string> (&index);
31520 /* Output all of the compilation units. We put the main one last so that
31521 the offsets are available to output_pubnames. */
31522 for (node = cu_die_list; node; node = node->next)
31523 output_comp_unit (node->die, 0, NULL);
31525 hash_table<comdat_type_hasher> comdat_type_table (100);
31526 for (ctnode = comdat_type_list; ctnode != NULL; ctnode = ctnode->next)
31528 comdat_type_node **slot = comdat_type_table.find_slot (ctnode, INSERT);
31530 /* Don't output duplicate types. */
31531 if (*slot != HTAB_EMPTY_ENTRY)
31532 continue;
31534 /* Add a pointer to the line table for the main compilation unit
31535 so that the debugger can make sense of DW_AT_decl_file
31536 attributes. */
31537 if (debug_info_level >= DINFO_LEVEL_TERSE)
31538 add_AT_lineptr (ctnode->root_die, DW_AT_stmt_list,
31539 (!dwarf_split_debug_info
31540 ? dl_section_ref
31541 : debug_skeleton_line_section_label));
31543 output_comdat_type_unit (ctnode, false);
31544 *slot = ctnode;
31547 if (dwarf_split_debug_info)
31549 int mark;
31550 struct md5_ctx ctx;
31552 if (dwarf_version >= 5 && !vec_safe_is_empty (ranges_table))
31553 index_rnglists ();
31555 /* Compute a checksum of the comp_unit to use as the dwo_id. */
31556 md5_init_ctx (&ctx);
31557 mark = 0;
31558 die_checksum (comp_unit_die (), &ctx, &mark);
31559 unmark_all_dies (comp_unit_die ());
31560 md5_finish_ctx (&ctx, checksum);
31562 if (dwarf_version < 5)
31564 /* Use the first 8 bytes of the checksum as the dwo_id,
31565 and add it to both comp-unit DIEs. */
31566 add_AT_data8 (main_comp_unit_die, DW_AT_GNU_dwo_id, checksum);
31567 add_AT_data8 (comp_unit_die (), DW_AT_GNU_dwo_id, checksum);
31570 /* Add the base offset of the ranges table to the skeleton
31571 comp-unit DIE. */
31572 if (!vec_safe_is_empty (ranges_table))
31574 if (dwarf_version >= 5)
31575 add_AT_lineptr (main_comp_unit_die, DW_AT_rnglists_base,
31576 ranges_base_label);
31577 else
31578 add_AT_lineptr (main_comp_unit_die, DW_AT_GNU_ranges_base,
31579 ranges_section_label);
31582 switch_to_section (debug_addr_section);
31583 /* GNU DebugFission https://gcc.gnu.org/wiki/DebugFission
31584 which GCC uses to implement -gsplit-dwarf as DWARF GNU extension
31585 before DWARF5, didn't have a header for .debug_addr units.
31586 DWARF5 specifies a small header when address tables are used. */
31587 if (dwarf_version >= 5)
31589 unsigned int last_idx = 0;
31590 unsigned long addrs_length;
31592 addr_index_table->traverse_noresize
31593 <unsigned int *, count_index_addrs> (&last_idx);
31594 addrs_length = last_idx * DWARF2_ADDR_SIZE + 4;
31596 if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
31597 dw2_asm_output_data (4, 0xffffffff,
31598 "Escape value for 64-bit DWARF extension");
31599 dw2_asm_output_data (DWARF_OFFSET_SIZE, addrs_length,
31600 "Length of Address Unit");
31601 dw2_asm_output_data (2, 5, "DWARF addr version");
31602 dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Size of Address");
31603 dw2_asm_output_data (1, 0, "Size of Segment Descriptor");
31605 ASM_OUTPUT_LABEL (asm_out_file, debug_addr_section_label);
31606 output_addr_table ();
31609 /* Output the main compilation unit if non-empty or if .debug_macinfo
31610 or .debug_macro will be emitted. */
31611 output_comp_unit (comp_unit_die (), have_macinfo,
31612 dwarf_split_debug_info ? checksum : NULL);
31614 if (dwarf_split_debug_info && info_section_emitted)
31615 output_skeleton_debug_sections (main_comp_unit_die, checksum);
31617 /* Output the abbreviation table. */
31618 if (vec_safe_length (abbrev_die_table) != 1)
31620 switch_to_section (debug_abbrev_section);
31621 ASM_OUTPUT_LABEL (asm_out_file, abbrev_section_label);
31622 output_abbrev_section ();
31625 /* Output location list section if necessary. */
31626 if (have_location_lists)
31628 char l1[MAX_ARTIFICIAL_LABEL_BYTES];
31629 char l2[MAX_ARTIFICIAL_LABEL_BYTES];
31630 /* Output the location lists info. */
31631 switch_to_section (debug_loc_section);
31632 if (dwarf_version >= 5)
31634 ASM_GENERATE_INTERNAL_LABEL (l1, DEBUG_LOC_SECTION_LABEL, 2);
31635 ASM_GENERATE_INTERNAL_LABEL (l2, DEBUG_LOC_SECTION_LABEL, 3);
31636 if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
31637 dw2_asm_output_data (4, 0xffffffff,
31638 "Initial length escape value indicating "
31639 "64-bit DWARF extension");
31640 dw2_asm_output_delta (DWARF_OFFSET_SIZE, l2, l1,
31641 "Length of Location Lists");
31642 ASM_OUTPUT_LABEL (asm_out_file, l1);
31643 output_dwarf_version ();
31644 dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Address Size");
31645 dw2_asm_output_data (1, 0, "Segment Size");
31646 dw2_asm_output_data (4, dwarf_split_debug_info ? loc_list_idx : 0,
31647 "Offset Entry Count");
31649 ASM_OUTPUT_LABEL (asm_out_file, loc_section_label);
31650 if (dwarf_version >= 5 && dwarf_split_debug_info)
31652 unsigned int save_loc_list_idx = loc_list_idx;
31653 loc_list_idx = 0;
31654 output_loclists_offsets (comp_unit_die ());
31655 gcc_assert (save_loc_list_idx == loc_list_idx);
31657 output_location_lists (comp_unit_die ());
31658 if (dwarf_version >= 5)
31659 ASM_OUTPUT_LABEL (asm_out_file, l2);
31662 output_pubtables ();
31664 /* Output the address range information if a CU (.debug_info section)
31665 was emitted. We output an empty table even if we had no functions
31666 to put in it. This because the consumer has no way to tell the
31667 difference between an empty table that we omitted and failure to
31668 generate a table that would have contained data. */
31669 if (info_section_emitted)
31671 switch_to_section (debug_aranges_section);
31672 output_aranges ();
31675 /* Output ranges section if necessary. */
31676 if (!vec_safe_is_empty (ranges_table))
31678 if (dwarf_version >= 5)
31679 output_rnglists (generation);
31680 else
31681 output_ranges ();
31684 /* Have to end the macro section. */
31685 if (have_macinfo)
31687 switch_to_section (debug_macinfo_section);
31688 ASM_OUTPUT_LABEL (asm_out_file, macinfo_section_label);
31689 output_macinfo (!dwarf_split_debug_info ? debug_line_section_label
31690 : debug_skeleton_line_section_label, false);
31691 dw2_asm_output_data (1, 0, "End compilation unit");
31694 /* Output the source line correspondence table. We must do this
31695 even if there is no line information. Otherwise, on an empty
31696 translation unit, we will generate a present, but empty,
31697 .debug_info section. IRIX 6.5 `nm' will then complain when
31698 examining the file. This is done late so that any filenames
31699 used by the debug_info section are marked as 'used'. */
31700 switch_to_section (debug_line_section);
31701 ASM_OUTPUT_LABEL (asm_out_file, debug_line_section_label);
31702 if (! output_asm_line_debug_info ())
31703 output_line_info (false);
31705 if (dwarf_split_debug_info && info_section_emitted)
31707 switch_to_section (debug_skeleton_line_section);
31708 ASM_OUTPUT_LABEL (asm_out_file, debug_skeleton_line_section_label);
31709 output_line_info (true);
31712 /* If we emitted any indirect strings, output the string table too. */
31713 if (debug_str_hash || skeleton_debug_str_hash)
31714 output_indirect_strings ();
31715 if (debug_line_str_hash)
31717 switch_to_section (debug_line_str_section);
31718 const enum dwarf_form form = DW_FORM_line_strp;
31719 debug_line_str_hash->traverse<enum dwarf_form,
31720 output_indirect_string> (form);
31723 /* ??? Move lvugid out of dwarf2out_source_line and reset it too? */
31724 symview_upper_bound = 0;
31725 if (zero_view_p)
31726 bitmap_clear (zero_view_p);
31729 /* Returns a hash value for X (which really is a variable_value_struct). */
31731 inline hashval_t
31732 variable_value_hasher::hash (variable_value_struct *x)
31734 return (hashval_t) x->decl_id;
31737 /* Return nonzero if decl_id of variable_value_struct X is the same as
31738 UID of decl Y. */
31740 inline bool
31741 variable_value_hasher::equal (variable_value_struct *x, tree y)
31743 return x->decl_id == DECL_UID (y);
31746 /* Helper function for resolve_variable_value, handle
31747 DW_OP_GNU_variable_value in one location expression.
31748 Return true if exprloc has been changed into loclist. */
31750 static bool
31751 resolve_variable_value_in_expr (dw_attr_node *a, dw_loc_descr_ref loc)
31753 dw_loc_descr_ref next;
31754 for (dw_loc_descr_ref prev = NULL; loc; prev = loc, loc = next)
31756 next = loc->dw_loc_next;
31757 if (loc->dw_loc_opc != DW_OP_GNU_variable_value
31758 || loc->dw_loc_oprnd1.val_class != dw_val_class_decl_ref)
31759 continue;
31761 tree decl = loc->dw_loc_oprnd1.v.val_decl_ref;
31762 if (DECL_CONTEXT (decl) != current_function_decl)
31763 continue;
31765 dw_die_ref ref = lookup_decl_die (decl);
31766 if (ref)
31768 loc->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
31769 loc->dw_loc_oprnd1.v.val_die_ref.die = ref;
31770 loc->dw_loc_oprnd1.v.val_die_ref.external = 0;
31771 continue;
31773 dw_loc_list_ref l = loc_list_from_tree (decl, 0, NULL);
31774 if (l == NULL)
31775 continue;
31776 if (l->dw_loc_next)
31778 if (AT_class (a) != dw_val_class_loc)
31779 continue;
31780 switch (a->dw_attr)
31782 /* Following attributes allow both exprloc and loclist
31783 classes, so we can change them into a loclist. */
31784 case DW_AT_location:
31785 case DW_AT_string_length:
31786 case DW_AT_return_addr:
31787 case DW_AT_data_member_location:
31788 case DW_AT_frame_base:
31789 case DW_AT_segment:
31790 case DW_AT_static_link:
31791 case DW_AT_use_location:
31792 case DW_AT_vtable_elem_location:
31793 if (prev)
31795 prev->dw_loc_next = NULL;
31796 prepend_loc_descr_to_each (l, AT_loc (a));
31798 if (next)
31799 add_loc_descr_to_each (l, next);
31800 a->dw_attr_val.val_class = dw_val_class_loc_list;
31801 a->dw_attr_val.val_entry = NULL;
31802 a->dw_attr_val.v.val_loc_list = l;
31803 have_location_lists = true;
31804 return true;
31805 /* Following attributes allow both exprloc and reference,
31806 so if the whole expression is DW_OP_GNU_variable_value alone
31807 we could transform it into reference. */
31808 case DW_AT_byte_size:
31809 case DW_AT_bit_size:
31810 case DW_AT_lower_bound:
31811 case DW_AT_upper_bound:
31812 case DW_AT_bit_stride:
31813 case DW_AT_count:
31814 case DW_AT_allocated:
31815 case DW_AT_associated:
31816 case DW_AT_byte_stride:
31817 if (prev == NULL && next == NULL)
31818 break;
31819 /* FALLTHRU */
31820 default:
31821 if (dwarf_strict)
31822 continue;
31823 break;
31825 /* Create DW_TAG_variable that we can refer to. */
31826 gen_decl_die (decl, NULL_TREE, NULL,
31827 lookup_decl_die (current_function_decl));
31828 ref = lookup_decl_die (decl);
31829 if (ref)
31831 loc->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
31832 loc->dw_loc_oprnd1.v.val_die_ref.die = ref;
31833 loc->dw_loc_oprnd1.v.val_die_ref.external = 0;
31835 continue;
31837 if (prev)
31839 prev->dw_loc_next = l->expr;
31840 add_loc_descr (&prev->dw_loc_next, next);
31841 free_loc_descr (loc, NULL);
31842 next = prev->dw_loc_next;
31844 else
31846 memcpy (loc, l->expr, sizeof (dw_loc_descr_node));
31847 add_loc_descr (&loc, next);
31848 next = loc;
31850 loc = prev;
31852 return false;
31855 /* Attempt to resolve DW_OP_GNU_variable_value using loc_list_from_tree. */
31857 static void
31858 resolve_variable_value (dw_die_ref die)
31860 dw_attr_node *a;
31861 dw_loc_list_ref loc;
31862 unsigned ix;
31864 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
31865 switch (AT_class (a))
31867 case dw_val_class_loc:
31868 if (!resolve_variable_value_in_expr (a, AT_loc (a)))
31869 break;
31870 /* FALLTHRU */
31871 case dw_val_class_loc_list:
31872 loc = AT_loc_list (a);
31873 gcc_assert (loc);
31874 for (; loc; loc = loc->dw_loc_next)
31875 resolve_variable_value_in_expr (a, loc->expr);
31876 break;
31877 default:
31878 break;
31882 /* Attempt to optimize DW_OP_GNU_variable_value refering to
31883 temporaries in the current function. */
31885 static void
31886 resolve_variable_values (void)
31888 if (!variable_value_hash || !current_function_decl)
31889 return;
31891 struct variable_value_struct *node
31892 = variable_value_hash->find_with_hash (current_function_decl,
31893 DECL_UID (current_function_decl));
31895 if (node == NULL)
31896 return;
31898 unsigned int i;
31899 dw_die_ref die;
31900 FOR_EACH_VEC_SAFE_ELT (node->dies, i, die)
31901 resolve_variable_value (die);
31904 /* Helper function for note_variable_value, handle one location
31905 expression. */
31907 static void
31908 note_variable_value_in_expr (dw_die_ref die, dw_loc_descr_ref loc)
31910 for (; loc; loc = loc->dw_loc_next)
31911 if (loc->dw_loc_opc == DW_OP_GNU_variable_value
31912 && loc->dw_loc_oprnd1.val_class == dw_val_class_decl_ref)
31914 tree decl = loc->dw_loc_oprnd1.v.val_decl_ref;
31915 dw_die_ref ref = lookup_decl_die (decl);
31916 if (! ref && (flag_generate_lto || flag_generate_offload))
31918 /* ??? This is somewhat a hack because we do not create DIEs
31919 for variables not in BLOCK trees early but when generating
31920 early LTO output we need the dw_val_class_decl_ref to be
31921 fully resolved. For fat LTO objects we'd also like to
31922 undo this after LTO dwarf output. */
31923 gcc_assert (DECL_CONTEXT (decl));
31924 dw_die_ref ctx = lookup_decl_die (DECL_CONTEXT (decl));
31925 gcc_assert (ctx != NULL);
31926 gen_decl_die (decl, NULL_TREE, NULL, ctx);
31927 ref = lookup_decl_die (decl);
31928 gcc_assert (ref != NULL);
31930 if (ref)
31932 loc->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
31933 loc->dw_loc_oprnd1.v.val_die_ref.die = ref;
31934 loc->dw_loc_oprnd1.v.val_die_ref.external = 0;
31935 continue;
31937 if (VAR_P (decl)
31938 && DECL_CONTEXT (decl)
31939 && TREE_CODE (DECL_CONTEXT (decl)) == FUNCTION_DECL
31940 && lookup_decl_die (DECL_CONTEXT (decl)))
31942 if (!variable_value_hash)
31943 variable_value_hash
31944 = hash_table<variable_value_hasher>::create_ggc (10);
31946 tree fndecl = DECL_CONTEXT (decl);
31947 struct variable_value_struct *node;
31948 struct variable_value_struct **slot
31949 = variable_value_hash->find_slot_with_hash (fndecl,
31950 DECL_UID (fndecl),
31951 INSERT);
31952 if (*slot == NULL)
31954 node = ggc_cleared_alloc<variable_value_struct> ();
31955 node->decl_id = DECL_UID (fndecl);
31956 *slot = node;
31958 else
31959 node = *slot;
31961 vec_safe_push (node->dies, die);
31966 /* Walk the tree DIE and note DIEs with DW_OP_GNU_variable_value still
31967 with dw_val_class_decl_ref operand. */
31969 static void
31970 note_variable_value (dw_die_ref die)
31972 dw_die_ref c;
31973 dw_attr_node *a;
31974 dw_loc_list_ref loc;
31975 unsigned ix;
31977 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
31978 switch (AT_class (a))
31980 case dw_val_class_loc_list:
31981 loc = AT_loc_list (a);
31982 gcc_assert (loc);
31983 if (!loc->noted_variable_value)
31985 loc->noted_variable_value = 1;
31986 for (; loc; loc = loc->dw_loc_next)
31987 note_variable_value_in_expr (die, loc->expr);
31989 break;
31990 case dw_val_class_loc:
31991 note_variable_value_in_expr (die, AT_loc (a));
31992 break;
31993 default:
31994 break;
31997 /* Mark children. */
31998 FOR_EACH_CHILD (die, c, note_variable_value (c));
32001 /* Perform any cleanups needed after the early debug generation pass
32002 has run. */
32004 static void
32005 dwarf2out_early_finish (const char *filename)
32007 set_early_dwarf s;
32008 char dl_section_ref[MAX_ARTIFICIAL_LABEL_BYTES];
32010 /* PCH might result in DW_AT_producer string being restored from the
32011 header compilation, so always fill it with empty string initially
32012 and overwrite only here. */
32013 dw_attr_node *producer = get_AT (comp_unit_die (), DW_AT_producer);
32014 producer_string = gen_producer_string ();
32015 producer->dw_attr_val.v.val_str->refcount--;
32016 producer->dw_attr_val.v.val_str = find_AT_string (producer_string);
32018 /* Add the name for the main input file now. We delayed this from
32019 dwarf2out_init to avoid complications with PCH. */
32020 add_name_attribute (comp_unit_die (), remap_debug_filename (filename));
32021 add_comp_dir_attribute (comp_unit_die ());
32023 /* When emitting DWARF5 .debug_line_str, move DW_AT_name and
32024 DW_AT_comp_dir into .debug_line_str section. */
32025 if (!output_asm_line_debug_info ()
32026 && dwarf_version >= 5
32027 && DWARF5_USE_DEBUG_LINE_STR)
32029 for (int i = 0; i < 2; i++)
32031 dw_attr_node *a = get_AT (comp_unit_die (),
32032 i ? DW_AT_comp_dir : DW_AT_name);
32033 if (a == NULL
32034 || AT_class (a) != dw_val_class_str
32035 || strlen (AT_string (a)) + 1 <= DWARF_OFFSET_SIZE)
32036 continue;
32038 if (! debug_line_str_hash)
32039 debug_line_str_hash
32040 = hash_table<indirect_string_hasher>::create_ggc (10);
32042 struct indirect_string_node *node
32043 = find_AT_string_in_table (AT_string (a), debug_line_str_hash);
32044 set_indirect_string (node);
32045 node->form = DW_FORM_line_strp;
32046 a->dw_attr_val.v.val_str->refcount--;
32047 a->dw_attr_val.v.val_str = node;
32051 /* With LTO early dwarf was really finished at compile-time, so make
32052 sure to adjust the phase after annotating the LTRANS CU DIE. */
32053 if (in_lto_p)
32055 /* Force DW_TAG_imported_unit to be created now, otherwise
32056 we might end up without it or ordered after DW_TAG_inlined_subroutine
32057 referencing DIEs from it. */
32058 if (! flag_wpa && flag_incremental_link != INCREMENTAL_LINK_LTO)
32060 unsigned i;
32061 tree tu;
32062 if (external_die_map)
32063 FOR_EACH_VEC_SAFE_ELT (all_translation_units, i, tu)
32064 if (sym_off_pair *desc = external_die_map->get (tu))
32066 dw_die_ref import = new_die (DW_TAG_imported_unit,
32067 comp_unit_die (), NULL_TREE);
32068 add_AT_external_die_ref (import, DW_AT_import,
32069 desc->sym, desc->off);
32073 early_dwarf_finished = true;
32074 if (dump_file)
32076 fprintf (dump_file, "LTO EARLY DWARF for %s\n", filename);
32077 print_die (comp_unit_die (), dump_file);
32079 return;
32082 /* Walk through the list of incomplete types again, trying once more to
32083 emit full debugging info for them. */
32084 retry_incomplete_types ();
32086 /* The point here is to flush out the limbo list so that it is empty
32087 and we don't need to stream it for LTO. */
32088 flush_limbo_die_list ();
32090 gen_scheduled_generic_parms_dies ();
32091 gen_remaining_tmpl_value_param_die_attribute ();
32093 /* Add DW_AT_linkage_name for all deferred DIEs. */
32094 for (limbo_die_node *node = deferred_asm_name; node; node = node->next)
32096 tree decl = node->created_for;
32097 if (DECL_ASSEMBLER_NAME (decl) != DECL_NAME (decl)
32098 /* A missing DECL_ASSEMBLER_NAME can be a constant DIE that
32099 ended up in deferred_asm_name before we knew it was
32100 constant and never written to disk. */
32101 && DECL_ASSEMBLER_NAME (decl))
32103 add_linkage_attr (node->die, decl);
32104 move_linkage_attr (node->die);
32107 deferred_asm_name = NULL;
32109 if (flag_eliminate_unused_debug_types)
32110 prune_unused_types ();
32112 /* Generate separate COMDAT sections for type DIEs. */
32113 if (use_debug_types)
32115 break_out_comdat_types (comp_unit_die ());
32117 /* Each new type_unit DIE was added to the limbo die list when created.
32118 Since these have all been added to comdat_type_list, clear the
32119 limbo die list. */
32120 limbo_die_list = NULL;
32122 /* For each new comdat type unit, copy declarations for incomplete
32123 types to make the new unit self-contained (i.e., no direct
32124 references to the main compile unit). */
32125 for (comdat_type_node *ctnode = comdat_type_list;
32126 ctnode != NULL; ctnode = ctnode->next)
32127 copy_decls_for_unworthy_types (ctnode->root_die);
32128 copy_decls_for_unworthy_types (comp_unit_die ());
32130 /* In the process of copying declarations from one unit to another,
32131 we may have left some declarations behind that are no longer
32132 referenced. Prune them. */
32133 prune_unused_types ();
32136 /* Traverse the DIE's and note DIEs with DW_OP_GNU_variable_value still
32137 with dw_val_class_decl_ref operand. */
32138 note_variable_value (comp_unit_die ());
32139 for (limbo_die_node *node = cu_die_list; node; node = node->next)
32140 note_variable_value (node->die);
32141 for (comdat_type_node *ctnode = comdat_type_list; ctnode != NULL;
32142 ctnode = ctnode->next)
32143 note_variable_value (ctnode->root_die);
32144 for (limbo_die_node *node = limbo_die_list; node; node = node->next)
32145 note_variable_value (node->die);
32147 /* The AT_pubnames attribute needs to go in all skeleton dies, including
32148 both the main_cu and all skeleton TUs. Making this call unconditional
32149 would end up either adding a second copy of the AT_pubnames attribute, or
32150 requiring a special case in add_top_level_skeleton_die_attrs. */
32151 if (!dwarf_split_debug_info)
32152 add_AT_pubnames (comp_unit_die ());
32154 /* The early debug phase is now finished. */
32155 early_dwarf_finished = true;
32156 if (dump_file)
32158 fprintf (dump_file, "EARLY DWARF for %s\n", filename);
32159 print_die (comp_unit_die (), dump_file);
32162 /* Do not generate DWARF assembler now when not producing LTO bytecode. */
32163 if ((!flag_generate_lto && !flag_generate_offload)
32164 /* FIXME: Disable debug info generation for (PE-)COFF targets since the
32165 copy_lto_debug_sections operation of the simple object support in
32166 libiberty is not implemented for them yet. */
32167 || TARGET_PECOFF || TARGET_COFF)
32168 return;
32170 /* Now as we are going to output for LTO initialize sections and labels
32171 to the LTO variants. We don't need a random-seed postfix as other
32172 LTO sections as linking the LTO debug sections into one in a partial
32173 link is fine. */
32174 init_sections_and_labels (true);
32176 /* The output below is modeled after dwarf2out_finish with all
32177 location related output removed and some LTO specific changes.
32178 Some refactoring might make both smaller and easier to match up. */
32180 /* Traverse the DIE's and add add sibling attributes to those DIE's
32181 that have children. */
32182 add_sibling_attributes (comp_unit_die ());
32183 for (limbo_die_node *node = limbo_die_list; node; node = node->next)
32184 add_sibling_attributes (node->die);
32185 for (comdat_type_node *ctnode = comdat_type_list;
32186 ctnode != NULL; ctnode = ctnode->next)
32187 add_sibling_attributes (ctnode->root_die);
32189 /* AIX Assembler inserts the length, so adjust the reference to match the
32190 offset expected by debuggers. */
32191 strcpy (dl_section_ref, debug_line_section_label);
32192 if (XCOFF_DEBUGGING_INFO)
32193 strcat (dl_section_ref, DWARF_INITIAL_LENGTH_SIZE_STR);
32195 if (debug_info_level >= DINFO_LEVEL_TERSE)
32196 add_AT_lineptr (comp_unit_die (), DW_AT_stmt_list, dl_section_ref);
32198 if (have_macinfo)
32199 add_AT_macptr (comp_unit_die (), DEBUG_MACRO_ATTRIBUTE,
32200 macinfo_section_label);
32202 save_macinfo_strings ();
32204 if (dwarf_split_debug_info)
32206 unsigned int index = 0;
32207 debug_str_hash->traverse_noresize<unsigned int *, index_string> (&index);
32210 /* Output all of the compilation units. We put the main one last so that
32211 the offsets are available to output_pubnames. */
32212 for (limbo_die_node *node = limbo_die_list; node; node = node->next)
32213 output_comp_unit (node->die, 0, NULL);
32215 hash_table<comdat_type_hasher> comdat_type_table (100);
32216 for (comdat_type_node *ctnode = comdat_type_list;
32217 ctnode != NULL; ctnode = ctnode->next)
32219 comdat_type_node **slot = comdat_type_table.find_slot (ctnode, INSERT);
32221 /* Don't output duplicate types. */
32222 if (*slot != HTAB_EMPTY_ENTRY)
32223 continue;
32225 /* Add a pointer to the line table for the main compilation unit
32226 so that the debugger can make sense of DW_AT_decl_file
32227 attributes. */
32228 if (debug_info_level >= DINFO_LEVEL_TERSE)
32229 add_AT_lineptr (ctnode->root_die, DW_AT_stmt_list,
32230 (!dwarf_split_debug_info
32231 ? debug_line_section_label
32232 : debug_skeleton_line_section_label));
32234 output_comdat_type_unit (ctnode, true);
32235 *slot = ctnode;
32238 /* Stick a unique symbol to the main debuginfo section. */
32239 compute_comp_unit_symbol (comp_unit_die ());
32241 /* Output the main compilation unit. We always need it if only for
32242 the CU symbol. */
32243 output_comp_unit (comp_unit_die (), true, NULL);
32245 /* Output the abbreviation table. */
32246 if (vec_safe_length (abbrev_die_table) != 1)
32248 switch_to_section (debug_abbrev_section);
32249 ASM_OUTPUT_LABEL (asm_out_file, abbrev_section_label);
32250 output_abbrev_section ();
32253 /* Have to end the macro section. */
32254 if (have_macinfo)
32256 /* We have to save macinfo state if we need to output it again
32257 for the FAT part of the object. */
32258 vec<macinfo_entry, va_gc> *saved_macinfo_table = macinfo_table;
32259 if (flag_fat_lto_objects)
32260 macinfo_table = macinfo_table->copy ();
32262 switch_to_section (debug_macinfo_section);
32263 ASM_OUTPUT_LABEL (asm_out_file, macinfo_section_label);
32264 output_macinfo (debug_line_section_label, true);
32265 dw2_asm_output_data (1, 0, "End compilation unit");
32267 if (flag_fat_lto_objects)
32269 vec_free (macinfo_table);
32270 macinfo_table = saved_macinfo_table;
32274 /* Emit a skeleton debug_line section. */
32275 switch_to_section (debug_line_section);
32276 ASM_OUTPUT_LABEL (asm_out_file, debug_line_section_label);
32277 output_line_info (true);
32279 /* If we emitted any indirect strings, output the string table too. */
32280 if (debug_str_hash || skeleton_debug_str_hash)
32281 output_indirect_strings ();
32282 if (debug_line_str_hash)
32284 switch_to_section (debug_line_str_section);
32285 const enum dwarf_form form = DW_FORM_line_strp;
32286 debug_line_str_hash->traverse<enum dwarf_form,
32287 output_indirect_string> (form);
32290 /* Switch back to the text section. */
32291 switch_to_section (text_section);
32294 /* Reset all state within dwarf2out.c so that we can rerun the compiler
32295 within the same process. For use by toplev::finalize. */
32297 void
32298 dwarf2out_c_finalize (void)
32300 last_var_location_insn = NULL;
32301 cached_next_real_insn = NULL;
32302 used_rtx_array = NULL;
32303 incomplete_types = NULL;
32304 debug_info_section = NULL;
32305 debug_skeleton_info_section = NULL;
32306 debug_abbrev_section = NULL;
32307 debug_skeleton_abbrev_section = NULL;
32308 debug_aranges_section = NULL;
32309 debug_addr_section = NULL;
32310 debug_macinfo_section = NULL;
32311 debug_line_section = NULL;
32312 debug_skeleton_line_section = NULL;
32313 debug_loc_section = NULL;
32314 debug_pubnames_section = NULL;
32315 debug_pubtypes_section = NULL;
32316 debug_str_section = NULL;
32317 debug_line_str_section = NULL;
32318 debug_str_dwo_section = NULL;
32319 debug_str_offsets_section = NULL;
32320 debug_ranges_section = NULL;
32321 debug_frame_section = NULL;
32322 fde_vec = NULL;
32323 debug_str_hash = NULL;
32324 debug_line_str_hash = NULL;
32325 skeleton_debug_str_hash = NULL;
32326 dw2_string_counter = 0;
32327 have_multiple_function_sections = false;
32328 text_section_used = false;
32329 cold_text_section_used = false;
32330 cold_text_section = NULL;
32331 current_unit_personality = NULL;
32333 early_dwarf = false;
32334 early_dwarf_finished = false;
32336 next_die_offset = 0;
32337 single_comp_unit_die = NULL;
32338 comdat_type_list = NULL;
32339 limbo_die_list = NULL;
32340 file_table = NULL;
32341 decl_die_table = NULL;
32342 common_block_die_table = NULL;
32343 decl_loc_table = NULL;
32344 call_arg_locations = NULL;
32345 call_arg_loc_last = NULL;
32346 call_site_count = -1;
32347 tail_call_site_count = -1;
32348 cached_dw_loc_list_table = NULL;
32349 abbrev_die_table = NULL;
32350 delete dwarf_proc_stack_usage_map;
32351 dwarf_proc_stack_usage_map = NULL;
32352 line_info_label_num = 0;
32353 cur_line_info_table = NULL;
32354 text_section_line_info = NULL;
32355 cold_text_section_line_info = NULL;
32356 separate_line_info = NULL;
32357 info_section_emitted = false;
32358 pubname_table = NULL;
32359 pubtype_table = NULL;
32360 macinfo_table = NULL;
32361 ranges_table = NULL;
32362 ranges_by_label = NULL;
32363 rnglist_idx = 0;
32364 have_location_lists = false;
32365 loclabel_num = 0;
32366 poc_label_num = 0;
32367 last_emitted_file = NULL;
32368 label_num = 0;
32369 tmpl_value_parm_die_table = NULL;
32370 generic_type_instances = NULL;
32371 frame_pointer_fb_offset = 0;
32372 frame_pointer_fb_offset_valid = false;
32373 base_types.release ();
32374 XDELETEVEC (producer_string);
32375 producer_string = NULL;
32378 #include "gt-dwarf2out.h"