Assorted ChangeLog cleanups.
[official-gcc.git] / gcc / dwarf2out.c
blobaa7fd7eb46580ada6949ce96570cff9c67735c33
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 class set_early_dwarf {
3108 public:
3109 bool saved;
3110 set_early_dwarf () : saved(early_dwarf)
3112 gcc_assert (! early_dwarf_finished);
3113 early_dwarf = true;
3115 ~set_early_dwarf () { early_dwarf = saved; }
3118 /* Evaluate 'expr' while 'c' is set to each child of DIE in order. */
3119 #define FOR_EACH_CHILD(die, c, expr) do { \
3120 c = die->die_child; \
3121 if (c) do { \
3122 c = c->die_sib; \
3123 expr; \
3124 } while (c != die->die_child); \
3125 } while (0)
3127 /* The pubname structure */
3129 typedef struct GTY(()) pubname_struct {
3130 dw_die_ref die;
3131 const char *name;
3133 pubname_entry;
3136 struct GTY(()) dw_ranges {
3137 const char *label;
3138 /* If this is positive, it's a block number, otherwise it's a
3139 bitwise-negated index into dw_ranges_by_label. */
3140 int num;
3141 /* Index for the range list for DW_FORM_rnglistx. */
3142 unsigned int idx : 31;
3143 /* True if this range might be possibly in a different section
3144 from previous entry. */
3145 unsigned int maybe_new_sec : 1;
3148 /* A structure to hold a macinfo entry. */
3150 typedef struct GTY(()) macinfo_struct {
3151 unsigned char code;
3152 unsigned HOST_WIDE_INT lineno;
3153 const char *info;
3155 macinfo_entry;
3158 struct GTY(()) dw_ranges_by_label {
3159 const char *begin;
3160 const char *end;
3163 /* The comdat type node structure. */
3164 struct GTY(()) comdat_type_node
3166 dw_die_ref root_die;
3167 dw_die_ref type_die;
3168 dw_die_ref skeleton_die;
3169 char signature[DWARF_TYPE_SIGNATURE_SIZE];
3170 comdat_type_node *next;
3173 /* A list of DIEs for which we can't determine ancestry (parent_die
3174 field) just yet. Later in dwarf2out_finish we will fill in the
3175 missing bits. */
3176 typedef struct GTY(()) limbo_die_struct {
3177 dw_die_ref die;
3178 /* The tree for which this DIE was created. We use this to
3179 determine ancestry later. */
3180 tree created_for;
3181 struct limbo_die_struct *next;
3183 limbo_die_node;
3185 typedef struct skeleton_chain_struct
3187 dw_die_ref old_die;
3188 dw_die_ref new_die;
3189 struct skeleton_chain_struct *parent;
3191 skeleton_chain_node;
3193 /* Define a macro which returns nonzero for a TYPE_DECL which was
3194 implicitly generated for a type.
3196 Note that, unlike the C front-end (which generates a NULL named
3197 TYPE_DECL node for each complete tagged type, each array type,
3198 and each function type node created) the C++ front-end generates
3199 a _named_ TYPE_DECL node for each tagged type node created.
3200 These TYPE_DECLs have DECL_ARTIFICIAL set, so we know not to
3201 generate a DW_TAG_typedef DIE for them. Likewise with the Ada
3202 front-end, but for each type, tagged or not. */
3204 #define TYPE_DECL_IS_STUB(decl) \
3205 (DECL_NAME (decl) == NULL_TREE \
3206 || (DECL_ARTIFICIAL (decl) \
3207 && ((decl == TYPE_STUB_DECL (TREE_TYPE (decl))) \
3208 /* This is necessary for stub decls that \
3209 appear in nested inline functions. */ \
3210 || (DECL_ABSTRACT_ORIGIN (decl) != NULL_TREE \
3211 && (decl_ultimate_origin (decl) \
3212 == TYPE_STUB_DECL (TREE_TYPE (decl)))))))
3214 /* Information concerning the compilation unit's programming
3215 language, and compiler version. */
3217 /* Fixed size portion of the DWARF compilation unit header. */
3218 #define DWARF_COMPILE_UNIT_HEADER_SIZE \
3219 (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE \
3220 + (dwarf_version >= 5 ? 4 : 3))
3222 /* Fixed size portion of the DWARF comdat type unit header. */
3223 #define DWARF_COMDAT_TYPE_UNIT_HEADER_SIZE \
3224 (DWARF_COMPILE_UNIT_HEADER_SIZE \
3225 + DWARF_TYPE_SIGNATURE_SIZE + DWARF_OFFSET_SIZE)
3227 /* Fixed size portion of the DWARF skeleton compilation unit header. */
3228 #define DWARF_COMPILE_UNIT_SKELETON_HEADER_SIZE \
3229 (DWARF_COMPILE_UNIT_HEADER_SIZE + (dwarf_version >= 5 ? 8 : 0))
3231 /* Fixed size portion of public names info. */
3232 #define DWARF_PUBNAMES_HEADER_SIZE (2 * DWARF_OFFSET_SIZE + 2)
3234 /* Fixed size portion of the address range info. */
3235 #define DWARF_ARANGES_HEADER_SIZE \
3236 (DWARF_ROUND (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 4, \
3237 DWARF2_ADDR_SIZE * 2) \
3238 - DWARF_INITIAL_LENGTH_SIZE)
3240 /* Size of padding portion in the address range info. It must be
3241 aligned to twice the pointer size. */
3242 #define DWARF_ARANGES_PAD_SIZE \
3243 (DWARF_ROUND (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 4, \
3244 DWARF2_ADDR_SIZE * 2) \
3245 - (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 4))
3247 /* Use assembler line directives if available. */
3248 #ifndef DWARF2_ASM_LINE_DEBUG_INFO
3249 #ifdef HAVE_AS_DWARF2_DEBUG_LINE
3250 #define DWARF2_ASM_LINE_DEBUG_INFO 1
3251 #else
3252 #define DWARF2_ASM_LINE_DEBUG_INFO 0
3253 #endif
3254 #endif
3256 /* Use assembler views in line directives if available. */
3257 #ifndef DWARF2_ASM_VIEW_DEBUG_INFO
3258 #ifdef HAVE_AS_DWARF2_DEBUG_VIEW
3259 #define DWARF2_ASM_VIEW_DEBUG_INFO 1
3260 #else
3261 #define DWARF2_ASM_VIEW_DEBUG_INFO 0
3262 #endif
3263 #endif
3265 /* Return true if GCC configure detected assembler support for .loc. */
3267 bool
3268 dwarf2out_default_as_loc_support (void)
3270 return DWARF2_ASM_LINE_DEBUG_INFO;
3271 #if (GCC_VERSION >= 3000)
3272 # undef DWARF2_ASM_LINE_DEBUG_INFO
3273 # pragma GCC poison DWARF2_ASM_LINE_DEBUG_INFO
3274 #endif
3277 /* Return true if GCC configure detected assembler support for views
3278 in .loc directives. */
3280 bool
3281 dwarf2out_default_as_locview_support (void)
3283 return DWARF2_ASM_VIEW_DEBUG_INFO;
3284 #if (GCC_VERSION >= 3000)
3285 # undef DWARF2_ASM_VIEW_DEBUG_INFO
3286 # pragma GCC poison DWARF2_ASM_VIEW_DEBUG_INFO
3287 #endif
3290 /* A bit is set in ZERO_VIEW_P if we are using the assembler-supported
3291 view computation, and it refers to a view identifier for which we
3292 will not emit a label because it is known to map to a view number
3293 zero. We won't allocate the bitmap if we're not using assembler
3294 support for location views, but we have to make the variable
3295 visible for GGC and for code that will be optimized out for lack of
3296 support but that's still parsed and compiled. We could abstract it
3297 out with macros, but it's not worth it. */
3298 static GTY(()) bitmap zero_view_p;
3300 /* Evaluate to TRUE iff N is known to identify the first location view
3301 at its PC. When not using assembler location view computation,
3302 that must be view number zero. Otherwise, ZERO_VIEW_P is allocated
3303 and views label numbers recorded in it are the ones known to be
3304 zero. */
3305 #define ZERO_VIEW_P(N) ((N) == (var_loc_view)0 \
3306 || (N) == (var_loc_view)-1 \
3307 || (zero_view_p \
3308 && bitmap_bit_p (zero_view_p, (N))))
3310 /* Return true iff we're to emit .loc directives for the assembler to
3311 generate line number sections.
3313 When we're not emitting views, all we need from the assembler is
3314 support for .loc directives.
3316 If we are emitting views, we can only use the assembler's .loc
3317 support if it also supports views.
3319 When the compiler is emitting the line number programs and
3320 computing view numbers itself, it resets view numbers at known PC
3321 changes and counts from that, and then it emits view numbers as
3322 literal constants in locviewlists. There are cases in which the
3323 compiler is not sure about PC changes, e.g. when extra alignment is
3324 requested for a label. In these cases, the compiler may not reset
3325 the view counter, and the potential PC advance in the line number
3326 program will use an opcode that does not reset the view counter
3327 even if the PC actually changes, so that compiler and debug info
3328 consumer can keep view numbers in sync.
3330 When the compiler defers view computation to the assembler, it
3331 emits symbolic view numbers in locviewlists, with the exception of
3332 views known to be zero (forced resets, or reset after
3333 compiler-visible PC changes): instead of emitting symbols for
3334 these, we emit literal zero and assert the assembler agrees with
3335 the compiler's assessment. We could use symbolic views everywhere,
3336 instead of special-casing zero views, but then we'd be unable to
3337 optimize out locviewlists that contain only zeros. */
3339 static bool
3340 output_asm_line_debug_info (void)
3342 return (dwarf2out_as_loc_support
3343 && (dwarf2out_as_locview_support
3344 || !debug_variable_location_views));
3347 /* Minimum line offset in a special line info. opcode.
3348 This value was chosen to give a reasonable range of values. */
3349 #define DWARF_LINE_BASE -10
3351 /* First special line opcode - leave room for the standard opcodes. */
3352 #define DWARF_LINE_OPCODE_BASE ((int)DW_LNS_set_isa + 1)
3354 /* Range of line offsets in a special line info. opcode. */
3355 #define DWARF_LINE_RANGE (254-DWARF_LINE_OPCODE_BASE+1)
3357 /* Flag that indicates the initial value of the is_stmt_start flag.
3358 In the present implementation, we do not mark any lines as
3359 the beginning of a source statement, because that information
3360 is not made available by the GCC front-end. */
3361 #define DWARF_LINE_DEFAULT_IS_STMT_START 1
3363 /* Maximum number of operations per instruction bundle. */
3364 #ifndef DWARF_LINE_DEFAULT_MAX_OPS_PER_INSN
3365 #define DWARF_LINE_DEFAULT_MAX_OPS_PER_INSN 1
3366 #endif
3368 /* This location is used by calc_die_sizes() to keep track
3369 the offset of each DIE within the .debug_info section. */
3370 static unsigned long next_die_offset;
3372 /* Record the root of the DIE's built for the current compilation unit. */
3373 static GTY(()) dw_die_ref single_comp_unit_die;
3375 /* A list of type DIEs that have been separated into comdat sections. */
3376 static GTY(()) comdat_type_node *comdat_type_list;
3378 /* A list of CU DIEs that have been separated. */
3379 static GTY(()) limbo_die_node *cu_die_list;
3381 /* A list of DIEs with a NULL parent waiting to be relocated. */
3382 static GTY(()) limbo_die_node *limbo_die_list;
3384 /* A list of DIEs for which we may have to generate
3385 DW_AT_{,MIPS_}linkage_name once their DECL_ASSEMBLER_NAMEs are set. */
3386 static GTY(()) limbo_die_node *deferred_asm_name;
3388 struct dwarf_file_hasher : ggc_ptr_hash<dwarf_file_data>
3390 typedef const char *compare_type;
3392 static hashval_t hash (dwarf_file_data *);
3393 static bool equal (dwarf_file_data *, const char *);
3396 /* Filenames referenced by this compilation unit. */
3397 static GTY(()) hash_table<dwarf_file_hasher> *file_table;
3399 struct decl_die_hasher : ggc_ptr_hash<die_node>
3401 typedef tree compare_type;
3403 static hashval_t hash (die_node *);
3404 static bool equal (die_node *, tree);
3406 /* A hash table of references to DIE's that describe declarations.
3407 The key is a DECL_UID() which is a unique number identifying each decl. */
3408 static GTY (()) hash_table<decl_die_hasher> *decl_die_table;
3410 struct GTY ((for_user)) variable_value_struct {
3411 unsigned int decl_id;
3412 vec<dw_die_ref, va_gc> *dies;
3415 struct variable_value_hasher : ggc_ptr_hash<variable_value_struct>
3417 typedef tree compare_type;
3419 static hashval_t hash (variable_value_struct *);
3420 static bool equal (variable_value_struct *, tree);
3422 /* A hash table of DIEs that contain DW_OP_GNU_variable_value with
3423 dw_val_class_decl_ref class, indexed by FUNCTION_DECLs which is
3424 DECL_CONTEXT of the referenced VAR_DECLs. */
3425 static GTY (()) hash_table<variable_value_hasher> *variable_value_hash;
3427 struct block_die_hasher : ggc_ptr_hash<die_struct>
3429 static hashval_t hash (die_struct *);
3430 static bool equal (die_struct *, die_struct *);
3433 /* A hash table of references to DIE's that describe COMMON blocks.
3434 The key is DECL_UID() ^ die_parent. */
3435 static GTY (()) hash_table<block_die_hasher> *common_block_die_table;
3437 typedef struct GTY(()) die_arg_entry_struct {
3438 dw_die_ref die;
3439 tree arg;
3440 } die_arg_entry;
3443 /* Node of the variable location list. */
3444 struct GTY ((chain_next ("%h.next"))) var_loc_node {
3445 /* Either NOTE_INSN_VAR_LOCATION, or, for SRA optimized variables,
3446 EXPR_LIST chain. For small bitsizes, bitsize is encoded
3447 in mode of the EXPR_LIST node and first EXPR_LIST operand
3448 is either NOTE_INSN_VAR_LOCATION for a piece with a known
3449 location or NULL for padding. For larger bitsizes,
3450 mode is 0 and first operand is a CONCAT with bitsize
3451 as first CONCAT operand and NOTE_INSN_VAR_LOCATION resp.
3452 NULL as second operand. */
3453 rtx GTY (()) loc;
3454 const char * GTY (()) label;
3455 struct var_loc_node * GTY (()) next;
3456 var_loc_view view;
3459 /* Variable location list. */
3460 struct GTY ((for_user)) var_loc_list_def {
3461 struct var_loc_node * GTY (()) first;
3463 /* Pointer to the last but one or last element of the
3464 chained list. If the list is empty, both first and
3465 last are NULL, if the list contains just one node
3466 or the last node certainly is not redundant, it points
3467 to the last node, otherwise points to the last but one.
3468 Do not mark it for GC because it is marked through the chain. */
3469 struct var_loc_node * GTY ((skip ("%h"))) last;
3471 /* Pointer to the last element before section switch,
3472 if NULL, either sections weren't switched or first
3473 is after section switch. */
3474 struct var_loc_node * GTY ((skip ("%h"))) last_before_switch;
3476 /* DECL_UID of the variable decl. */
3477 unsigned int decl_id;
3479 typedef struct var_loc_list_def var_loc_list;
3481 /* Call argument location list. */
3482 struct GTY ((chain_next ("%h.next"))) call_arg_loc_node {
3483 rtx GTY (()) call_arg_loc_note;
3484 const char * GTY (()) label;
3485 tree GTY (()) block;
3486 bool tail_call_p;
3487 rtx GTY (()) symbol_ref;
3488 struct call_arg_loc_node * GTY (()) next;
3492 struct decl_loc_hasher : ggc_ptr_hash<var_loc_list>
3494 typedef const_tree compare_type;
3496 static hashval_t hash (var_loc_list *);
3497 static bool equal (var_loc_list *, const_tree);
3500 /* Table of decl location linked lists. */
3501 static GTY (()) hash_table<decl_loc_hasher> *decl_loc_table;
3503 /* Head and tail of call_arg_loc chain. */
3504 static GTY (()) struct call_arg_loc_node *call_arg_locations;
3505 static struct call_arg_loc_node *call_arg_loc_last;
3507 /* Number of call sites in the current function. */
3508 static int call_site_count = -1;
3509 /* Number of tail call sites in the current function. */
3510 static int tail_call_site_count = -1;
3512 /* A cached location list. */
3513 struct GTY ((for_user)) cached_dw_loc_list_def {
3514 /* The DECL_UID of the decl that this entry describes. */
3515 unsigned int decl_id;
3517 /* The cached location list. */
3518 dw_loc_list_ref loc_list;
3520 typedef struct cached_dw_loc_list_def cached_dw_loc_list;
3522 struct dw_loc_list_hasher : ggc_ptr_hash<cached_dw_loc_list>
3525 typedef const_tree compare_type;
3527 static hashval_t hash (cached_dw_loc_list *);
3528 static bool equal (cached_dw_loc_list *, const_tree);
3531 /* Table of cached location lists. */
3532 static GTY (()) hash_table<dw_loc_list_hasher> *cached_dw_loc_list_table;
3534 /* A vector of references to DIE's that are uniquely identified by their tag,
3535 presence/absence of children DIE's, and list of attribute/value pairs. */
3536 static GTY(()) vec<dw_die_ref, va_gc> *abbrev_die_table;
3538 /* A hash map to remember the stack usage for DWARF procedures. The value
3539 stored is the stack size difference between before the DWARF procedure
3540 invokation and after it returned. In other words, for a DWARF procedure
3541 that consumes N stack slots and that pushes M ones, this stores M - N. */
3542 static hash_map<dw_die_ref, int> *dwarf_proc_stack_usage_map;
3544 /* A global counter for generating labels for line number data. */
3545 static unsigned int line_info_label_num;
3547 /* The current table to which we should emit line number information
3548 for the current function. This will be set up at the beginning of
3549 assembly for the function. */
3550 static GTY(()) dw_line_info_table *cur_line_info_table;
3552 /* The two default tables of line number info. */
3553 static GTY(()) dw_line_info_table *text_section_line_info;
3554 static GTY(()) dw_line_info_table *cold_text_section_line_info;
3556 /* The set of all non-default tables of line number info. */
3557 static GTY(()) vec<dw_line_info_table *, va_gc> *separate_line_info;
3559 /* A flag to tell pubnames/types export if there is an info section to
3560 refer to. */
3561 static bool info_section_emitted;
3563 /* A pointer to the base of a table that contains a list of publicly
3564 accessible names. */
3565 static GTY (()) vec<pubname_entry, va_gc> *pubname_table;
3567 /* A pointer to the base of a table that contains a list of publicly
3568 accessible types. */
3569 static GTY (()) vec<pubname_entry, va_gc> *pubtype_table;
3571 /* A pointer to the base of a table that contains a list of macro
3572 defines/undefines (and file start/end markers). */
3573 static GTY (()) vec<macinfo_entry, va_gc> *macinfo_table;
3575 /* True if .debug_macinfo or .debug_macros section is going to be
3576 emitted. */
3577 #define have_macinfo \
3578 ((!XCOFF_DEBUGGING_INFO || HAVE_XCOFF_DWARF_EXTRAS) \
3579 && debug_info_level >= DINFO_LEVEL_VERBOSE \
3580 && !macinfo_table->is_empty ())
3582 /* Vector of dies for which we should generate .debug_ranges info. */
3583 static GTY (()) vec<dw_ranges, va_gc> *ranges_table;
3585 /* Vector of pairs of labels referenced in ranges_table. */
3586 static GTY (()) vec<dw_ranges_by_label, va_gc> *ranges_by_label;
3588 /* Whether we have location lists that need outputting */
3589 static GTY(()) bool have_location_lists;
3591 /* Unique label counter. */
3592 static GTY(()) unsigned int loclabel_num;
3594 /* Unique label counter for point-of-call tables. */
3595 static GTY(()) unsigned int poc_label_num;
3597 /* The last file entry emitted by maybe_emit_file(). */
3598 static GTY(()) struct dwarf_file_data * last_emitted_file;
3600 /* Number of internal labels generated by gen_internal_sym(). */
3601 static GTY(()) int label_num;
3603 static GTY(()) vec<die_arg_entry, va_gc> *tmpl_value_parm_die_table;
3605 /* Instances of generic types for which we need to generate debug
3606 info that describe their generic parameters and arguments. That
3607 generation needs to happen once all types are properly laid out so
3608 we do it at the end of compilation. */
3609 static GTY(()) vec<tree, va_gc> *generic_type_instances;
3611 /* Offset from the "steady-state frame pointer" to the frame base,
3612 within the current function. */
3613 static poly_int64 frame_pointer_fb_offset;
3614 static bool frame_pointer_fb_offset_valid;
3616 static vec<dw_die_ref> base_types;
3618 /* Flags to represent a set of attribute classes for attributes that represent
3619 a scalar value (bounds, pointers, ...). */
3620 enum dw_scalar_form
3622 dw_scalar_form_constant = 0x01,
3623 dw_scalar_form_exprloc = 0x02,
3624 dw_scalar_form_reference = 0x04
3627 /* Forward declarations for functions defined in this file. */
3629 static int is_pseudo_reg (const_rtx);
3630 static tree type_main_variant (tree);
3631 static int is_tagged_type (const_tree);
3632 static const char *dwarf_tag_name (unsigned);
3633 static const char *dwarf_attr_name (unsigned);
3634 static const char *dwarf_form_name (unsigned);
3635 static tree decl_ultimate_origin (const_tree);
3636 static tree decl_class_context (tree);
3637 static void add_dwarf_attr (dw_die_ref, dw_attr_node *);
3638 static inline enum dw_val_class AT_class (dw_attr_node *);
3639 static inline unsigned int AT_index (dw_attr_node *);
3640 static void add_AT_flag (dw_die_ref, enum dwarf_attribute, unsigned);
3641 static inline unsigned AT_flag (dw_attr_node *);
3642 static void add_AT_int (dw_die_ref, enum dwarf_attribute, HOST_WIDE_INT);
3643 static inline HOST_WIDE_INT AT_int (dw_attr_node *);
3644 static void add_AT_unsigned (dw_die_ref, enum dwarf_attribute, unsigned HOST_WIDE_INT);
3645 static inline unsigned HOST_WIDE_INT AT_unsigned (dw_attr_node *);
3646 static void add_AT_double (dw_die_ref, enum dwarf_attribute,
3647 HOST_WIDE_INT, unsigned HOST_WIDE_INT);
3648 static inline void add_AT_vec (dw_die_ref, enum dwarf_attribute, unsigned int,
3649 unsigned int, unsigned char *);
3650 static void add_AT_data8 (dw_die_ref, enum dwarf_attribute, unsigned char *);
3651 static void add_AT_string (dw_die_ref, enum dwarf_attribute, const char *);
3652 static inline const char *AT_string (dw_attr_node *);
3653 static enum dwarf_form AT_string_form (dw_attr_node *);
3654 static void add_AT_die_ref (dw_die_ref, enum dwarf_attribute, dw_die_ref);
3655 static void add_AT_specification (dw_die_ref, dw_die_ref);
3656 static inline dw_die_ref AT_ref (dw_attr_node *);
3657 static inline int AT_ref_external (dw_attr_node *);
3658 static inline void set_AT_ref_external (dw_attr_node *, int);
3659 static void add_AT_loc (dw_die_ref, enum dwarf_attribute, dw_loc_descr_ref);
3660 static inline dw_loc_descr_ref AT_loc (dw_attr_node *);
3661 static void add_AT_loc_list (dw_die_ref, enum dwarf_attribute,
3662 dw_loc_list_ref);
3663 static inline dw_loc_list_ref AT_loc_list (dw_attr_node *);
3664 static void add_AT_view_list (dw_die_ref, enum dwarf_attribute);
3665 static inline dw_loc_list_ref AT_loc_list (dw_attr_node *);
3666 static addr_table_entry *add_addr_table_entry (void *, enum ate_kind);
3667 static void remove_addr_table_entry (addr_table_entry *);
3668 static void add_AT_addr (dw_die_ref, enum dwarf_attribute, rtx, bool);
3669 static inline rtx AT_addr (dw_attr_node *);
3670 static void add_AT_symview (dw_die_ref, enum dwarf_attribute, const char *);
3671 static void add_AT_lbl_id (dw_die_ref, enum dwarf_attribute, const char *);
3672 static void add_AT_lineptr (dw_die_ref, enum dwarf_attribute, const char *);
3673 static void add_AT_macptr (dw_die_ref, enum dwarf_attribute, const char *);
3674 static void add_AT_range_list (dw_die_ref, enum dwarf_attribute,
3675 unsigned long, bool);
3676 static inline const char *AT_lbl (dw_attr_node *);
3677 static dw_attr_node *get_AT (dw_die_ref, enum dwarf_attribute);
3678 static const char *get_AT_low_pc (dw_die_ref);
3679 static const char *get_AT_string (dw_die_ref, enum dwarf_attribute);
3680 static int get_AT_flag (dw_die_ref, enum dwarf_attribute);
3681 static unsigned get_AT_unsigned (dw_die_ref, enum dwarf_attribute);
3682 static inline dw_die_ref get_AT_ref (dw_die_ref, enum dwarf_attribute);
3683 static bool is_c (void);
3684 static bool is_cxx (void);
3685 static bool is_cxx (const_tree);
3686 static bool is_fortran (void);
3687 static bool is_ada (void);
3688 static bool remove_AT (dw_die_ref, enum dwarf_attribute);
3689 static void remove_child_TAG (dw_die_ref, enum dwarf_tag);
3690 static void add_child_die (dw_die_ref, dw_die_ref);
3691 static dw_die_ref new_die (enum dwarf_tag, dw_die_ref, tree);
3692 static dw_die_ref lookup_type_die (tree);
3693 static dw_die_ref strip_naming_typedef (tree, dw_die_ref);
3694 static dw_die_ref lookup_type_die_strip_naming_typedef (tree);
3695 static void equate_type_number_to_die (tree, dw_die_ref);
3696 static dw_die_ref lookup_decl_die (tree);
3697 static var_loc_list *lookup_decl_loc (const_tree);
3698 static void equate_decl_number_to_die (tree, dw_die_ref);
3699 static struct var_loc_node *add_var_loc_to_decl (tree, rtx, const char *, var_loc_view);
3700 static void print_spaces (FILE *);
3701 static void print_die (dw_die_ref, FILE *);
3702 static void loc_checksum (dw_loc_descr_ref, struct md5_ctx *);
3703 static void attr_checksum (dw_attr_node *, struct md5_ctx *, int *);
3704 static void die_checksum (dw_die_ref, struct md5_ctx *, int *);
3705 static void checksum_sleb128 (HOST_WIDE_INT, struct md5_ctx *);
3706 static void checksum_uleb128 (unsigned HOST_WIDE_INT, struct md5_ctx *);
3707 static void loc_checksum_ordered (dw_loc_descr_ref, struct md5_ctx *);
3708 static void attr_checksum_ordered (enum dwarf_tag, dw_attr_node *,
3709 struct md5_ctx *, int *);
3710 struct checksum_attributes;
3711 static void collect_checksum_attributes (struct checksum_attributes *, dw_die_ref);
3712 static void die_checksum_ordered (dw_die_ref, struct md5_ctx *, int *);
3713 static void checksum_die_context (dw_die_ref, struct md5_ctx *);
3714 static void generate_type_signature (dw_die_ref, comdat_type_node *);
3715 static int same_loc_p (dw_loc_descr_ref, dw_loc_descr_ref, int *);
3716 static int same_dw_val_p (const dw_val_node *, const dw_val_node *, int *);
3717 static int same_attr_p (dw_attr_node *, dw_attr_node *, int *);
3718 static int same_die_p (dw_die_ref, dw_die_ref, int *);
3719 static int is_type_die (dw_die_ref);
3720 static inline bool is_template_instantiation (dw_die_ref);
3721 static int is_declaration_die (dw_die_ref);
3722 static int should_move_die_to_comdat (dw_die_ref);
3723 static dw_die_ref clone_as_declaration (dw_die_ref);
3724 static dw_die_ref clone_die (dw_die_ref);
3725 static dw_die_ref clone_tree (dw_die_ref);
3726 static dw_die_ref copy_declaration_context (dw_die_ref, dw_die_ref);
3727 static void generate_skeleton_ancestor_tree (skeleton_chain_node *);
3728 static void generate_skeleton_bottom_up (skeleton_chain_node *);
3729 static dw_die_ref generate_skeleton (dw_die_ref);
3730 static dw_die_ref remove_child_or_replace_with_skeleton (dw_die_ref,
3731 dw_die_ref,
3732 dw_die_ref);
3733 static void break_out_comdat_types (dw_die_ref);
3734 static void copy_decls_for_unworthy_types (dw_die_ref);
3736 static void add_sibling_attributes (dw_die_ref);
3737 static void output_location_lists (dw_die_ref);
3738 static int constant_size (unsigned HOST_WIDE_INT);
3739 static unsigned long size_of_die (dw_die_ref);
3740 static void calc_die_sizes (dw_die_ref);
3741 static void calc_base_type_die_sizes (void);
3742 static void mark_dies (dw_die_ref);
3743 static void unmark_dies (dw_die_ref);
3744 static void unmark_all_dies (dw_die_ref);
3745 static unsigned long size_of_pubnames (vec<pubname_entry, va_gc> *);
3746 static unsigned long size_of_aranges (void);
3747 static enum dwarf_form value_format (dw_attr_node *);
3748 static void output_value_format (dw_attr_node *);
3749 static void output_abbrev_section (void);
3750 static void output_die_abbrevs (unsigned long, dw_die_ref);
3751 static void output_die (dw_die_ref);
3752 static void output_compilation_unit_header (enum dwarf_unit_type);
3753 static void output_comp_unit (dw_die_ref, int, const unsigned char *);
3754 static void output_comdat_type_unit (comdat_type_node *, bool);
3755 static const char *dwarf2_name (tree, int);
3756 static void add_pubname (tree, dw_die_ref);
3757 static void add_enumerator_pubname (const char *, dw_die_ref);
3758 static void add_pubname_string (const char *, dw_die_ref);
3759 static void add_pubtype (tree, dw_die_ref);
3760 static void output_pubnames (vec<pubname_entry, va_gc> *);
3761 static void output_aranges (void);
3762 static unsigned int add_ranges (const_tree, bool = false);
3763 static void add_ranges_by_labels (dw_die_ref, const char *, const char *,
3764 bool *, bool);
3765 static void output_ranges (void);
3766 static dw_line_info_table *new_line_info_table (void);
3767 static void output_line_info (bool);
3768 static void output_file_names (void);
3769 static dw_die_ref base_type_die (tree, bool);
3770 static int is_base_type (tree);
3771 static dw_die_ref subrange_type_die (tree, tree, tree, tree, dw_die_ref);
3772 static int decl_quals (const_tree);
3773 static dw_die_ref modified_type_die (tree, int, bool, dw_die_ref);
3774 static dw_die_ref generic_parameter_die (tree, tree, bool, dw_die_ref);
3775 static dw_die_ref template_parameter_pack_die (tree, tree, dw_die_ref);
3776 static unsigned int dbx_reg_number (const_rtx);
3777 static void add_loc_descr_op_piece (dw_loc_descr_ref *, int);
3778 static dw_loc_descr_ref reg_loc_descriptor (rtx, enum var_init_status);
3779 static dw_loc_descr_ref one_reg_loc_descriptor (unsigned int,
3780 enum var_init_status);
3781 static dw_loc_descr_ref multiple_reg_loc_descriptor (rtx, rtx,
3782 enum var_init_status);
3783 static dw_loc_descr_ref based_loc_descr (rtx, poly_int64,
3784 enum var_init_status);
3785 static int is_based_loc (const_rtx);
3786 static bool resolve_one_addr (rtx *);
3787 static dw_loc_descr_ref concat_loc_descriptor (rtx, rtx,
3788 enum var_init_status);
3789 static dw_loc_descr_ref loc_descriptor (rtx, machine_mode mode,
3790 enum var_init_status);
3791 struct loc_descr_context;
3792 static void add_loc_descr_to_each (dw_loc_list_ref list, dw_loc_descr_ref ref);
3793 static void add_loc_list (dw_loc_list_ref *ret, dw_loc_list_ref list);
3794 static dw_loc_list_ref loc_list_from_tree (tree, int,
3795 struct loc_descr_context *);
3796 static dw_loc_descr_ref loc_descriptor_from_tree (tree, int,
3797 struct loc_descr_context *);
3798 static tree field_type (const_tree);
3799 static unsigned int simple_type_align_in_bits (const_tree);
3800 static unsigned int simple_decl_align_in_bits (const_tree);
3801 static unsigned HOST_WIDE_INT simple_type_size_in_bits (const_tree);
3802 struct vlr_context;
3803 static dw_loc_descr_ref field_byte_offset (const_tree, struct vlr_context *,
3804 HOST_WIDE_INT *);
3805 static void add_AT_location_description (dw_die_ref, enum dwarf_attribute,
3806 dw_loc_list_ref);
3807 static void add_data_member_location_attribute (dw_die_ref, tree,
3808 struct vlr_context *);
3809 static bool add_const_value_attribute (dw_die_ref, rtx);
3810 static void insert_int (HOST_WIDE_INT, unsigned, unsigned char *);
3811 static void insert_wide_int (const wide_int &, unsigned char *, int);
3812 static void insert_float (const_rtx, unsigned char *);
3813 static rtx rtl_for_decl_location (tree);
3814 static bool add_location_or_const_value_attribute (dw_die_ref, tree, bool);
3815 static bool tree_add_const_value_attribute (dw_die_ref, tree);
3816 static bool tree_add_const_value_attribute_for_decl (dw_die_ref, tree);
3817 static void add_name_attribute (dw_die_ref, const char *);
3818 static void add_desc_attribute (dw_die_ref, tree);
3819 static void add_gnat_descriptive_type_attribute (dw_die_ref, tree, dw_die_ref);
3820 static void add_comp_dir_attribute (dw_die_ref);
3821 static void add_scalar_info (dw_die_ref, enum dwarf_attribute, tree, int,
3822 struct loc_descr_context *);
3823 static void add_bound_info (dw_die_ref, enum dwarf_attribute, tree,
3824 struct loc_descr_context *);
3825 static void add_subscript_info (dw_die_ref, tree, bool);
3826 static void add_byte_size_attribute (dw_die_ref, tree);
3827 static void add_alignment_attribute (dw_die_ref, tree);
3828 static inline void add_bit_offset_attribute (dw_die_ref, tree,
3829 struct vlr_context *);
3830 static void add_bit_size_attribute (dw_die_ref, tree);
3831 static void add_prototyped_attribute (dw_die_ref, tree);
3832 static void add_abstract_origin_attribute (dw_die_ref, tree);
3833 static void add_pure_or_virtual_attribute (dw_die_ref, tree);
3834 static void add_src_coords_attributes (dw_die_ref, tree);
3835 static void add_name_and_src_coords_attributes (dw_die_ref, tree, bool = false);
3836 static void add_discr_value (dw_die_ref, dw_discr_value *);
3837 static void add_discr_list (dw_die_ref, dw_discr_list_ref);
3838 static inline dw_discr_list_ref AT_discr_list (dw_attr_node *);
3839 static dw_die_ref scope_die_for (tree, dw_die_ref);
3840 static inline int local_scope_p (dw_die_ref);
3841 static inline int class_scope_p (dw_die_ref);
3842 static inline int class_or_namespace_scope_p (dw_die_ref);
3843 static void add_type_attribute (dw_die_ref, tree, int, bool, dw_die_ref);
3844 static void add_calling_convention_attribute (dw_die_ref, tree);
3845 static const char *type_tag (const_tree);
3846 static tree member_declared_type (const_tree);
3847 #if 0
3848 static const char *decl_start_label (tree);
3849 #endif
3850 static void gen_array_type_die (tree, dw_die_ref);
3851 static void gen_descr_array_type_die (tree, struct array_descr_info *, dw_die_ref);
3852 #if 0
3853 static void gen_entry_point_die (tree, dw_die_ref);
3854 #endif
3855 static dw_die_ref gen_enumeration_type_die (tree, dw_die_ref);
3856 static dw_die_ref gen_formal_parameter_die (tree, tree, bool, dw_die_ref);
3857 static dw_die_ref gen_formal_parameter_pack_die (tree, tree, dw_die_ref, tree*);
3858 static void gen_unspecified_parameters_die (tree, dw_die_ref);
3859 static void gen_formal_types_die (tree, dw_die_ref);
3860 static void gen_subprogram_die (tree, dw_die_ref);
3861 static void gen_variable_die (tree, tree, dw_die_ref);
3862 static void gen_const_die (tree, dw_die_ref);
3863 static void gen_label_die (tree, dw_die_ref);
3864 static void gen_lexical_block_die (tree, dw_die_ref);
3865 static void gen_inlined_subroutine_die (tree, dw_die_ref);
3866 static void gen_field_die (tree, struct vlr_context *, dw_die_ref);
3867 static void gen_ptr_to_mbr_type_die (tree, dw_die_ref);
3868 static dw_die_ref gen_compile_unit_die (const char *);
3869 static void gen_inheritance_die (tree, tree, tree, dw_die_ref);
3870 static void gen_member_die (tree, dw_die_ref);
3871 static void gen_struct_or_union_type_die (tree, dw_die_ref,
3872 enum debug_info_usage);
3873 static void gen_subroutine_type_die (tree, dw_die_ref);
3874 static void gen_typedef_die (tree, dw_die_ref);
3875 static void gen_type_die (tree, dw_die_ref);
3876 static void gen_block_die (tree, dw_die_ref);
3877 static void decls_for_scope (tree, dw_die_ref, bool = true);
3878 static bool is_naming_typedef_decl (const_tree);
3879 static inline dw_die_ref get_context_die (tree);
3880 static void gen_namespace_die (tree, dw_die_ref);
3881 static dw_die_ref gen_namelist_decl (tree, dw_die_ref, tree);
3882 static dw_die_ref gen_decl_die (tree, tree, struct vlr_context *, dw_die_ref);
3883 static dw_die_ref force_decl_die (tree);
3884 static dw_die_ref force_type_die (tree);
3885 static dw_die_ref setup_namespace_context (tree, dw_die_ref);
3886 static dw_die_ref declare_in_namespace (tree, dw_die_ref);
3887 static struct dwarf_file_data * lookup_filename (const char *);
3888 static void retry_incomplete_types (void);
3889 static void gen_type_die_for_member (tree, tree, dw_die_ref);
3890 static void gen_generic_params_dies (tree);
3891 static void gen_tagged_type_die (tree, dw_die_ref, enum debug_info_usage);
3892 static void gen_type_die_with_usage (tree, dw_die_ref, enum debug_info_usage);
3893 static void splice_child_die (dw_die_ref, dw_die_ref);
3894 static int file_info_cmp (const void *, const void *);
3895 static dw_loc_list_ref new_loc_list (dw_loc_descr_ref, const char *, var_loc_view,
3896 const char *, var_loc_view, const char *);
3897 static void output_loc_list (dw_loc_list_ref);
3898 static char *gen_internal_sym (const char *);
3899 static bool want_pubnames (void);
3901 static void prune_unmark_dies (dw_die_ref);
3902 static void prune_unused_types_mark_generic_parms_dies (dw_die_ref);
3903 static void prune_unused_types_mark (dw_die_ref, int);
3904 static void prune_unused_types_walk (dw_die_ref);
3905 static void prune_unused_types_walk_attribs (dw_die_ref);
3906 static void prune_unused_types_prune (dw_die_ref);
3907 static void prune_unused_types (void);
3908 static int maybe_emit_file (struct dwarf_file_data *fd);
3909 static inline const char *AT_vms_delta1 (dw_attr_node *);
3910 static inline const char *AT_vms_delta2 (dw_attr_node *);
3911 static inline void add_AT_vms_delta (dw_die_ref, enum dwarf_attribute,
3912 const char *, const char *);
3913 static void append_entry_to_tmpl_value_parm_die_table (dw_die_ref, tree);
3914 static void gen_remaining_tmpl_value_param_die_attribute (void);
3915 static bool generic_type_p (tree);
3916 static void schedule_generic_params_dies_gen (tree t);
3917 static void gen_scheduled_generic_parms_dies (void);
3918 static void resolve_variable_values (void);
3920 static const char *comp_dir_string (void);
3922 static void hash_loc_operands (dw_loc_descr_ref, inchash::hash &);
3924 /* enum for tracking thread-local variables whose address is really an offset
3925 relative to the TLS pointer, which will need link-time relocation, but will
3926 not need relocation by the DWARF consumer. */
3928 enum dtprel_bool
3930 dtprel_false = 0,
3931 dtprel_true = 1
3934 /* Return the operator to use for an address of a variable. For dtprel_true, we
3935 use DW_OP_const*. For regular variables, which need both link-time
3936 relocation and consumer-level relocation (e.g., to account for shared objects
3937 loaded at a random address), we use DW_OP_addr*. */
3939 static inline enum dwarf_location_atom
3940 dw_addr_op (enum dtprel_bool dtprel)
3942 if (dtprel == dtprel_true)
3943 return (dwarf_split_debug_info ? dwarf_OP (DW_OP_constx)
3944 : (DWARF2_ADDR_SIZE == 4 ? DW_OP_const4u : DW_OP_const8u));
3945 else
3946 return dwarf_split_debug_info ? dwarf_OP (DW_OP_addrx) : DW_OP_addr;
3949 /* Return a pointer to a newly allocated address location description. If
3950 dwarf_split_debug_info is true, then record the address with the appropriate
3951 relocation. */
3952 static inline dw_loc_descr_ref
3953 new_addr_loc_descr (rtx addr, enum dtprel_bool dtprel)
3955 dw_loc_descr_ref ref = new_loc_descr (dw_addr_op (dtprel), 0, 0);
3957 ref->dw_loc_oprnd1.val_class = dw_val_class_addr;
3958 ref->dw_loc_oprnd1.v.val_addr = addr;
3959 ref->dtprel = dtprel;
3960 if (dwarf_split_debug_info)
3961 ref->dw_loc_oprnd1.val_entry
3962 = add_addr_table_entry (addr,
3963 dtprel ? ate_kind_rtx_dtprel : ate_kind_rtx);
3964 else
3965 ref->dw_loc_oprnd1.val_entry = NULL;
3967 return ref;
3970 /* Section names used to hold DWARF debugging information. */
3972 #ifndef DEBUG_INFO_SECTION
3973 #define DEBUG_INFO_SECTION ".debug_info"
3974 #endif
3975 #ifndef DEBUG_DWO_INFO_SECTION
3976 #define DEBUG_DWO_INFO_SECTION ".debug_info.dwo"
3977 #endif
3978 #ifndef DEBUG_LTO_INFO_SECTION
3979 #define DEBUG_LTO_INFO_SECTION ".gnu.debuglto_.debug_info"
3980 #endif
3981 #ifndef DEBUG_LTO_DWO_INFO_SECTION
3982 #define DEBUG_LTO_DWO_INFO_SECTION ".gnu.debuglto_.debug_info.dwo"
3983 #endif
3984 #ifndef DEBUG_ABBREV_SECTION
3985 #define DEBUG_ABBREV_SECTION ".debug_abbrev"
3986 #endif
3987 #ifndef DEBUG_LTO_ABBREV_SECTION
3988 #define DEBUG_LTO_ABBREV_SECTION ".gnu.debuglto_.debug_abbrev"
3989 #endif
3990 #ifndef DEBUG_DWO_ABBREV_SECTION
3991 #define DEBUG_DWO_ABBREV_SECTION ".debug_abbrev.dwo"
3992 #endif
3993 #ifndef DEBUG_LTO_DWO_ABBREV_SECTION
3994 #define DEBUG_LTO_DWO_ABBREV_SECTION ".gnu.debuglto_.debug_abbrev.dwo"
3995 #endif
3996 #ifndef DEBUG_ARANGES_SECTION
3997 #define DEBUG_ARANGES_SECTION ".debug_aranges"
3998 #endif
3999 #ifndef DEBUG_ADDR_SECTION
4000 #define DEBUG_ADDR_SECTION ".debug_addr"
4001 #endif
4002 #ifndef DEBUG_MACINFO_SECTION
4003 #define DEBUG_MACINFO_SECTION ".debug_macinfo"
4004 #endif
4005 #ifndef DEBUG_LTO_MACINFO_SECTION
4006 #define DEBUG_LTO_MACINFO_SECTION ".gnu.debuglto_.debug_macinfo"
4007 #endif
4008 #ifndef DEBUG_DWO_MACINFO_SECTION
4009 #define DEBUG_DWO_MACINFO_SECTION ".debug_macinfo.dwo"
4010 #endif
4011 #ifndef DEBUG_LTO_DWO_MACINFO_SECTION
4012 #define DEBUG_LTO_DWO_MACINFO_SECTION ".gnu.debuglto_.debug_macinfo.dwo"
4013 #endif
4014 #ifndef DEBUG_MACRO_SECTION
4015 #define DEBUG_MACRO_SECTION ".debug_macro"
4016 #endif
4017 #ifndef DEBUG_LTO_MACRO_SECTION
4018 #define DEBUG_LTO_MACRO_SECTION ".gnu.debuglto_.debug_macro"
4019 #endif
4020 #ifndef DEBUG_DWO_MACRO_SECTION
4021 #define DEBUG_DWO_MACRO_SECTION ".debug_macro.dwo"
4022 #endif
4023 #ifndef DEBUG_LTO_DWO_MACRO_SECTION
4024 #define DEBUG_LTO_DWO_MACRO_SECTION ".gnu.debuglto_.debug_macro.dwo"
4025 #endif
4026 #ifndef DEBUG_LINE_SECTION
4027 #define DEBUG_LINE_SECTION ".debug_line"
4028 #endif
4029 #ifndef DEBUG_LTO_LINE_SECTION
4030 #define DEBUG_LTO_LINE_SECTION ".gnu.debuglto_.debug_line"
4031 #endif
4032 #ifndef DEBUG_DWO_LINE_SECTION
4033 #define DEBUG_DWO_LINE_SECTION ".debug_line.dwo"
4034 #endif
4035 #ifndef DEBUG_LTO_DWO_LINE_SECTION
4036 #define DEBUG_LTO_DWO_LINE_SECTION ".gnu.debuglto_.debug_line.dwo"
4037 #endif
4038 #ifndef DEBUG_LOC_SECTION
4039 #define DEBUG_LOC_SECTION ".debug_loc"
4040 #endif
4041 #ifndef DEBUG_DWO_LOC_SECTION
4042 #define DEBUG_DWO_LOC_SECTION ".debug_loc.dwo"
4043 #endif
4044 #ifndef DEBUG_LOCLISTS_SECTION
4045 #define DEBUG_LOCLISTS_SECTION ".debug_loclists"
4046 #endif
4047 #ifndef DEBUG_DWO_LOCLISTS_SECTION
4048 #define DEBUG_DWO_LOCLISTS_SECTION ".debug_loclists.dwo"
4049 #endif
4050 #ifndef DEBUG_PUBNAMES_SECTION
4051 #define DEBUG_PUBNAMES_SECTION \
4052 ((debug_generate_pub_sections == 2) \
4053 ? ".debug_gnu_pubnames" : ".debug_pubnames")
4054 #endif
4055 #ifndef DEBUG_PUBTYPES_SECTION
4056 #define DEBUG_PUBTYPES_SECTION \
4057 ((debug_generate_pub_sections == 2) \
4058 ? ".debug_gnu_pubtypes" : ".debug_pubtypes")
4059 #endif
4060 #ifndef DEBUG_STR_OFFSETS_SECTION
4061 #define DEBUG_STR_OFFSETS_SECTION ".debug_str_offsets"
4062 #endif
4063 #ifndef DEBUG_DWO_STR_OFFSETS_SECTION
4064 #define DEBUG_DWO_STR_OFFSETS_SECTION ".debug_str_offsets.dwo"
4065 #endif
4066 #ifndef DEBUG_LTO_DWO_STR_OFFSETS_SECTION
4067 #define DEBUG_LTO_DWO_STR_OFFSETS_SECTION ".gnu.debuglto_.debug_str_offsets.dwo"
4068 #endif
4069 #ifndef DEBUG_STR_SECTION
4070 #define DEBUG_STR_SECTION ".debug_str"
4071 #endif
4072 #ifndef DEBUG_LTO_STR_SECTION
4073 #define DEBUG_LTO_STR_SECTION ".gnu.debuglto_.debug_str"
4074 #endif
4075 #ifndef DEBUG_STR_DWO_SECTION
4076 #define DEBUG_STR_DWO_SECTION ".debug_str.dwo"
4077 #endif
4078 #ifndef DEBUG_LTO_STR_DWO_SECTION
4079 #define DEBUG_LTO_STR_DWO_SECTION ".gnu.debuglto_.debug_str.dwo"
4080 #endif
4081 #ifndef DEBUG_RANGES_SECTION
4082 #define DEBUG_RANGES_SECTION ".debug_ranges"
4083 #endif
4084 #ifndef DEBUG_RNGLISTS_SECTION
4085 #define DEBUG_RNGLISTS_SECTION ".debug_rnglists"
4086 #endif
4087 #ifndef DEBUG_LINE_STR_SECTION
4088 #define DEBUG_LINE_STR_SECTION ".debug_line_str"
4089 #endif
4090 #ifndef DEBUG_LTO_LINE_STR_SECTION
4091 #define DEBUG_LTO_LINE_STR_SECTION ".gnu.debuglto_.debug_line_str"
4092 #endif
4094 /* Standard ELF section names for compiled code and data. */
4095 #ifndef TEXT_SECTION_NAME
4096 #define TEXT_SECTION_NAME ".text"
4097 #endif
4099 /* Section flags for .debug_str section. */
4100 #define DEBUG_STR_SECTION_FLAGS \
4101 (HAVE_GAS_SHF_MERGE && flag_merge_debug_strings \
4102 ? SECTION_DEBUG | SECTION_MERGE | SECTION_STRINGS | 1 \
4103 : SECTION_DEBUG)
4105 /* Section flags for .debug_str.dwo section. */
4106 #define DEBUG_STR_DWO_SECTION_FLAGS (SECTION_DEBUG | SECTION_EXCLUDE)
4108 /* Attribute used to refer to the macro section. */
4109 #define DEBUG_MACRO_ATTRIBUTE (dwarf_version >= 5 ? DW_AT_macros \
4110 : dwarf_strict ? DW_AT_macro_info : DW_AT_GNU_macros)
4112 /* Labels we insert at beginning sections we can reference instead of
4113 the section names themselves. */
4115 #ifndef TEXT_SECTION_LABEL
4116 #define TEXT_SECTION_LABEL "Ltext"
4117 #endif
4118 #ifndef COLD_TEXT_SECTION_LABEL
4119 #define COLD_TEXT_SECTION_LABEL "Ltext_cold"
4120 #endif
4121 #ifndef DEBUG_LINE_SECTION_LABEL
4122 #define DEBUG_LINE_SECTION_LABEL "Ldebug_line"
4123 #endif
4124 #ifndef DEBUG_SKELETON_LINE_SECTION_LABEL
4125 #define DEBUG_SKELETON_LINE_SECTION_LABEL "Lskeleton_debug_line"
4126 #endif
4127 #ifndef DEBUG_INFO_SECTION_LABEL
4128 #define DEBUG_INFO_SECTION_LABEL "Ldebug_info"
4129 #endif
4130 #ifndef DEBUG_SKELETON_INFO_SECTION_LABEL
4131 #define DEBUG_SKELETON_INFO_SECTION_LABEL "Lskeleton_debug_info"
4132 #endif
4133 #ifndef DEBUG_ABBREV_SECTION_LABEL
4134 #define DEBUG_ABBREV_SECTION_LABEL "Ldebug_abbrev"
4135 #endif
4136 #ifndef DEBUG_SKELETON_ABBREV_SECTION_LABEL
4137 #define DEBUG_SKELETON_ABBREV_SECTION_LABEL "Lskeleton_debug_abbrev"
4138 #endif
4139 #ifndef DEBUG_ADDR_SECTION_LABEL
4140 #define DEBUG_ADDR_SECTION_LABEL "Ldebug_addr"
4141 #endif
4142 #ifndef DEBUG_LOC_SECTION_LABEL
4143 #define DEBUG_LOC_SECTION_LABEL "Ldebug_loc"
4144 #endif
4145 #ifndef DEBUG_RANGES_SECTION_LABEL
4146 #define DEBUG_RANGES_SECTION_LABEL "Ldebug_ranges"
4147 #endif
4148 #ifndef DEBUG_MACINFO_SECTION_LABEL
4149 #define DEBUG_MACINFO_SECTION_LABEL "Ldebug_macinfo"
4150 #endif
4151 #ifndef DEBUG_MACRO_SECTION_LABEL
4152 #define DEBUG_MACRO_SECTION_LABEL "Ldebug_macro"
4153 #endif
4154 #define SKELETON_COMP_DIE_ABBREV 1
4155 #define SKELETON_TYPE_DIE_ABBREV 2
4157 /* Definitions of defaults for formats and names of various special
4158 (artificial) labels which may be generated within this file (when the -g
4159 options is used and DWARF2_DEBUGGING_INFO is in effect.
4160 If necessary, these may be overridden from within the tm.h file, but
4161 typically, overriding these defaults is unnecessary. */
4163 static char text_end_label[MAX_ARTIFICIAL_LABEL_BYTES];
4164 static char text_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4165 static char cold_text_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4166 static char cold_end_label[MAX_ARTIFICIAL_LABEL_BYTES];
4167 static char abbrev_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4168 static char debug_info_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4169 static char debug_skeleton_info_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4170 static char debug_skeleton_abbrev_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4171 static char debug_line_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4172 static char debug_addr_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4173 static char debug_skeleton_line_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4174 static char macinfo_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4175 static char loc_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4176 static char ranges_section_label[2 * MAX_ARTIFICIAL_LABEL_BYTES];
4177 static char ranges_base_label[2 * MAX_ARTIFICIAL_LABEL_BYTES];
4179 #ifndef TEXT_END_LABEL
4180 #define TEXT_END_LABEL "Letext"
4181 #endif
4182 #ifndef COLD_END_LABEL
4183 #define COLD_END_LABEL "Letext_cold"
4184 #endif
4185 #ifndef BLOCK_BEGIN_LABEL
4186 #define BLOCK_BEGIN_LABEL "LBB"
4187 #endif
4188 #ifndef BLOCK_INLINE_ENTRY_LABEL
4189 #define BLOCK_INLINE_ENTRY_LABEL "LBI"
4190 #endif
4191 #ifndef BLOCK_END_LABEL
4192 #define BLOCK_END_LABEL "LBE"
4193 #endif
4194 #ifndef LINE_CODE_LABEL
4195 #define LINE_CODE_LABEL "LM"
4196 #endif
4199 /* Return the root of the DIE's built for the current compilation unit. */
4200 static dw_die_ref
4201 comp_unit_die (void)
4203 if (!single_comp_unit_die)
4204 single_comp_unit_die = gen_compile_unit_die (NULL);
4205 return single_comp_unit_die;
4208 /* We allow a language front-end to designate a function that is to be
4209 called to "demangle" any name before it is put into a DIE. */
4211 static const char *(*demangle_name_func) (const char *);
4213 void
4214 dwarf2out_set_demangle_name_func (const char *(*func) (const char *))
4216 demangle_name_func = func;
4219 /* Test if rtl node points to a pseudo register. */
4221 static inline int
4222 is_pseudo_reg (const_rtx rtl)
4224 return ((REG_P (rtl) && REGNO (rtl) >= FIRST_PSEUDO_REGISTER)
4225 || (GET_CODE (rtl) == SUBREG
4226 && REGNO (SUBREG_REG (rtl)) >= FIRST_PSEUDO_REGISTER));
4229 /* Return a reference to a type, with its const and volatile qualifiers
4230 removed. */
4232 static inline tree
4233 type_main_variant (tree type)
4235 type = TYPE_MAIN_VARIANT (type);
4237 /* ??? There really should be only one main variant among any group of
4238 variants of a given type (and all of the MAIN_VARIANT values for all
4239 members of the group should point to that one type) but sometimes the C
4240 front-end messes this up for array types, so we work around that bug
4241 here. */
4242 if (TREE_CODE (type) == ARRAY_TYPE)
4243 while (type != TYPE_MAIN_VARIANT (type))
4244 type = TYPE_MAIN_VARIANT (type);
4246 return type;
4249 /* Return nonzero if the given type node represents a tagged type. */
4251 static inline int
4252 is_tagged_type (const_tree type)
4254 enum tree_code code = TREE_CODE (type);
4256 return (code == RECORD_TYPE || code == UNION_TYPE
4257 || code == QUAL_UNION_TYPE || code == ENUMERAL_TYPE);
4260 /* Set label to debug_info_section_label + die_offset of a DIE reference. */
4262 static void
4263 get_ref_die_offset_label (char *label, dw_die_ref ref)
4265 sprintf (label, "%s+%ld", debug_info_section_label, ref->die_offset);
4268 /* Return die_offset of a DIE reference to a base type. */
4270 static unsigned long int
4271 get_base_type_offset (dw_die_ref ref)
4273 if (ref->die_offset)
4274 return ref->die_offset;
4275 if (comp_unit_die ()->die_abbrev)
4277 calc_base_type_die_sizes ();
4278 gcc_assert (ref->die_offset);
4280 return ref->die_offset;
4283 /* Return die_offset of a DIE reference other than base type. */
4285 static unsigned long int
4286 get_ref_die_offset (dw_die_ref ref)
4288 gcc_assert (ref->die_offset);
4289 return ref->die_offset;
4292 /* Convert a DIE tag into its string name. */
4294 static const char *
4295 dwarf_tag_name (unsigned int tag)
4297 const char *name = get_DW_TAG_name (tag);
4299 if (name != NULL)
4300 return name;
4302 return "DW_TAG_<unknown>";
4305 /* Convert a DWARF attribute code into its string name. */
4307 static const char *
4308 dwarf_attr_name (unsigned int attr)
4310 const char *name;
4312 switch (attr)
4314 #if VMS_DEBUGGING_INFO
4315 case DW_AT_HP_prologue:
4316 return "DW_AT_HP_prologue";
4317 #else
4318 case DW_AT_MIPS_loop_unroll_factor:
4319 return "DW_AT_MIPS_loop_unroll_factor";
4320 #endif
4322 #if VMS_DEBUGGING_INFO
4323 case DW_AT_HP_epilogue:
4324 return "DW_AT_HP_epilogue";
4325 #else
4326 case DW_AT_MIPS_stride:
4327 return "DW_AT_MIPS_stride";
4328 #endif
4331 name = get_DW_AT_name (attr);
4333 if (name != NULL)
4334 return name;
4336 return "DW_AT_<unknown>";
4339 /* Convert a DWARF value form code into its string name. */
4341 static const char *
4342 dwarf_form_name (unsigned int form)
4344 const char *name = get_DW_FORM_name (form);
4346 if (name != NULL)
4347 return name;
4349 return "DW_FORM_<unknown>";
4352 /* Determine the "ultimate origin" of a decl. The decl may be an inlined
4353 instance of an inlined instance of a decl which is local to an inline
4354 function, so we have to trace all of the way back through the origin chain
4355 to find out what sort of node actually served as the original seed for the
4356 given block. */
4358 static tree
4359 decl_ultimate_origin (const_tree decl)
4361 if (!CODE_CONTAINS_STRUCT (TREE_CODE (decl), TS_DECL_COMMON))
4362 return NULL_TREE;
4364 /* DECL_ABSTRACT_ORIGIN can point to itself; ignore that if
4365 we're trying to output the abstract instance of this function. */
4366 if (DECL_ABSTRACT_P (decl) && DECL_ABSTRACT_ORIGIN (decl) == decl)
4367 return NULL_TREE;
4369 /* Since the DECL_ABSTRACT_ORIGIN for a DECL is supposed to be the
4370 most distant ancestor, this should never happen. */
4371 gcc_assert (!DECL_FROM_INLINE (DECL_ORIGIN (decl)));
4373 return DECL_ABSTRACT_ORIGIN (decl);
4376 /* Get the class to which DECL belongs, if any. In g++, the DECL_CONTEXT
4377 of a virtual function may refer to a base class, so we check the 'this'
4378 parameter. */
4380 static tree
4381 decl_class_context (tree decl)
4383 tree context = NULL_TREE;
4385 if (TREE_CODE (decl) != FUNCTION_DECL || ! DECL_VINDEX (decl))
4386 context = DECL_CONTEXT (decl);
4387 else
4388 context = TYPE_MAIN_VARIANT
4389 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl)))));
4391 if (context && !TYPE_P (context))
4392 context = NULL_TREE;
4394 return context;
4397 /* Add an attribute/value pair to a DIE. */
4399 static inline void
4400 add_dwarf_attr (dw_die_ref die, dw_attr_node *attr)
4402 /* Maybe this should be an assert? */
4403 if (die == NULL)
4404 return;
4406 if (flag_checking)
4408 /* Check we do not add duplicate attrs. Can't use get_AT here
4409 because that recurses to the specification/abstract origin DIE. */
4410 dw_attr_node *a;
4411 unsigned ix;
4412 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
4413 gcc_assert (a->dw_attr != attr->dw_attr);
4416 vec_safe_reserve (die->die_attr, 1);
4417 vec_safe_push (die->die_attr, *attr);
4420 static inline enum dw_val_class
4421 AT_class (dw_attr_node *a)
4423 return a->dw_attr_val.val_class;
4426 /* Return the index for any attribute that will be referenced with a
4427 DW_FORM_addrx/GNU_addr_index or DW_FORM_strx/GNU_str_index. String
4428 indices are stored in dw_attr_val.v.val_str for reference counting
4429 pruning. */
4431 static inline unsigned int
4432 AT_index (dw_attr_node *a)
4434 if (AT_class (a) == dw_val_class_str)
4435 return a->dw_attr_val.v.val_str->index;
4436 else if (a->dw_attr_val.val_entry != NULL)
4437 return a->dw_attr_val.val_entry->index;
4438 return NOT_INDEXED;
4441 /* Add a flag value attribute to a DIE. */
4443 static inline void
4444 add_AT_flag (dw_die_ref die, enum dwarf_attribute attr_kind, unsigned int flag)
4446 dw_attr_node attr;
4448 attr.dw_attr = attr_kind;
4449 attr.dw_attr_val.val_class = dw_val_class_flag;
4450 attr.dw_attr_val.val_entry = NULL;
4451 attr.dw_attr_val.v.val_flag = flag;
4452 add_dwarf_attr (die, &attr);
4455 static inline unsigned
4456 AT_flag (dw_attr_node *a)
4458 gcc_assert (a && AT_class (a) == dw_val_class_flag);
4459 return a->dw_attr_val.v.val_flag;
4462 /* Add a signed integer attribute value to a DIE. */
4464 static inline void
4465 add_AT_int (dw_die_ref die, enum dwarf_attribute attr_kind, HOST_WIDE_INT int_val)
4467 dw_attr_node attr;
4469 attr.dw_attr = attr_kind;
4470 attr.dw_attr_val.val_class = dw_val_class_const;
4471 attr.dw_attr_val.val_entry = NULL;
4472 attr.dw_attr_val.v.val_int = int_val;
4473 add_dwarf_attr (die, &attr);
4476 static inline HOST_WIDE_INT
4477 AT_int (dw_attr_node *a)
4479 gcc_assert (a && (AT_class (a) == dw_val_class_const
4480 || AT_class (a) == dw_val_class_const_implicit));
4481 return a->dw_attr_val.v.val_int;
4484 /* Add an unsigned integer attribute value to a DIE. */
4486 static inline void
4487 add_AT_unsigned (dw_die_ref die, enum dwarf_attribute attr_kind,
4488 unsigned HOST_WIDE_INT unsigned_val)
4490 dw_attr_node attr;
4492 attr.dw_attr = attr_kind;
4493 attr.dw_attr_val.val_class = dw_val_class_unsigned_const;
4494 attr.dw_attr_val.val_entry = NULL;
4495 attr.dw_attr_val.v.val_unsigned = unsigned_val;
4496 add_dwarf_attr (die, &attr);
4499 static inline unsigned HOST_WIDE_INT
4500 AT_unsigned (dw_attr_node *a)
4502 gcc_assert (a && (AT_class (a) == dw_val_class_unsigned_const
4503 || AT_class (a) == dw_val_class_unsigned_const_implicit));
4504 return a->dw_attr_val.v.val_unsigned;
4507 /* Add an unsigned wide integer attribute value to a DIE. */
4509 static inline void
4510 add_AT_wide (dw_die_ref die, enum dwarf_attribute attr_kind,
4511 const wide_int& w)
4513 dw_attr_node attr;
4515 attr.dw_attr = attr_kind;
4516 attr.dw_attr_val.val_class = dw_val_class_wide_int;
4517 attr.dw_attr_val.val_entry = NULL;
4518 attr.dw_attr_val.v.val_wide = ggc_alloc<wide_int> ();
4519 *attr.dw_attr_val.v.val_wide = w;
4520 add_dwarf_attr (die, &attr);
4523 /* Add an unsigned double integer attribute value to a DIE. */
4525 static inline void
4526 add_AT_double (dw_die_ref die, enum dwarf_attribute attr_kind,
4527 HOST_WIDE_INT high, unsigned HOST_WIDE_INT low)
4529 dw_attr_node attr;
4531 attr.dw_attr = attr_kind;
4532 attr.dw_attr_val.val_class = dw_val_class_const_double;
4533 attr.dw_attr_val.val_entry = NULL;
4534 attr.dw_attr_val.v.val_double.high = high;
4535 attr.dw_attr_val.v.val_double.low = low;
4536 add_dwarf_attr (die, &attr);
4539 /* Add a floating point attribute value to a DIE and return it. */
4541 static inline void
4542 add_AT_vec (dw_die_ref die, enum dwarf_attribute attr_kind,
4543 unsigned int length, unsigned int elt_size, unsigned char *array)
4545 dw_attr_node attr;
4547 attr.dw_attr = attr_kind;
4548 attr.dw_attr_val.val_class = dw_val_class_vec;
4549 attr.dw_attr_val.val_entry = NULL;
4550 attr.dw_attr_val.v.val_vec.length = length;
4551 attr.dw_attr_val.v.val_vec.elt_size = elt_size;
4552 attr.dw_attr_val.v.val_vec.array = array;
4553 add_dwarf_attr (die, &attr);
4556 /* Add an 8-byte data attribute value to a DIE. */
4558 static inline void
4559 add_AT_data8 (dw_die_ref die, enum dwarf_attribute attr_kind,
4560 unsigned char data8[8])
4562 dw_attr_node attr;
4564 attr.dw_attr = attr_kind;
4565 attr.dw_attr_val.val_class = dw_val_class_data8;
4566 attr.dw_attr_val.val_entry = NULL;
4567 memcpy (attr.dw_attr_val.v.val_data8, data8, 8);
4568 add_dwarf_attr (die, &attr);
4571 /* Add DW_AT_low_pc and DW_AT_high_pc to a DIE. When using
4572 dwarf_split_debug_info, address attributes in dies destined for the
4573 final executable have force_direct set to avoid using indexed
4574 references. */
4576 static inline void
4577 add_AT_low_high_pc (dw_die_ref die, const char *lbl_low, const char *lbl_high,
4578 bool force_direct)
4580 dw_attr_node attr;
4581 char * lbl_id;
4583 lbl_id = xstrdup (lbl_low);
4584 attr.dw_attr = DW_AT_low_pc;
4585 attr.dw_attr_val.val_class = dw_val_class_lbl_id;
4586 attr.dw_attr_val.v.val_lbl_id = lbl_id;
4587 if (dwarf_split_debug_info && !force_direct)
4588 attr.dw_attr_val.val_entry
4589 = add_addr_table_entry (lbl_id, ate_kind_label);
4590 else
4591 attr.dw_attr_val.val_entry = NULL;
4592 add_dwarf_attr (die, &attr);
4594 attr.dw_attr = DW_AT_high_pc;
4595 if (dwarf_version < 4)
4596 attr.dw_attr_val.val_class = dw_val_class_lbl_id;
4597 else
4598 attr.dw_attr_val.val_class = dw_val_class_high_pc;
4599 lbl_id = xstrdup (lbl_high);
4600 attr.dw_attr_val.v.val_lbl_id = lbl_id;
4601 if (attr.dw_attr_val.val_class == dw_val_class_lbl_id
4602 && dwarf_split_debug_info && !force_direct)
4603 attr.dw_attr_val.val_entry
4604 = add_addr_table_entry (lbl_id, ate_kind_label);
4605 else
4606 attr.dw_attr_val.val_entry = NULL;
4607 add_dwarf_attr (die, &attr);
4610 /* Hash and equality functions for debug_str_hash. */
4612 hashval_t
4613 indirect_string_hasher::hash (indirect_string_node *x)
4615 return htab_hash_string (x->str);
4618 bool
4619 indirect_string_hasher::equal (indirect_string_node *x1, const char *x2)
4621 return strcmp (x1->str, x2) == 0;
4624 /* Add STR to the given string hash table. */
4626 static struct indirect_string_node *
4627 find_AT_string_in_table (const char *str,
4628 hash_table<indirect_string_hasher> *table,
4629 enum insert_option insert = INSERT)
4631 struct indirect_string_node *node;
4633 indirect_string_node **slot
4634 = table->find_slot_with_hash (str, htab_hash_string (str), insert);
4635 if (*slot == NULL)
4637 node = ggc_cleared_alloc<indirect_string_node> ();
4638 node->str = ggc_strdup (str);
4639 *slot = node;
4641 else
4642 node = *slot;
4644 node->refcount++;
4645 return node;
4648 /* Add STR to the indirect string hash table. */
4650 static struct indirect_string_node *
4651 find_AT_string (const char *str, enum insert_option insert = INSERT)
4653 if (! debug_str_hash)
4654 debug_str_hash = hash_table<indirect_string_hasher>::create_ggc (10);
4656 return find_AT_string_in_table (str, debug_str_hash, insert);
4659 /* Add a string attribute value to a DIE. */
4661 static inline void
4662 add_AT_string (dw_die_ref die, enum dwarf_attribute attr_kind, const char *str)
4664 dw_attr_node attr;
4665 struct indirect_string_node *node;
4667 node = find_AT_string (str);
4669 attr.dw_attr = attr_kind;
4670 attr.dw_attr_val.val_class = dw_val_class_str;
4671 attr.dw_attr_val.val_entry = NULL;
4672 attr.dw_attr_val.v.val_str = node;
4673 add_dwarf_attr (die, &attr);
4676 static inline const char *
4677 AT_string (dw_attr_node *a)
4679 gcc_assert (a && AT_class (a) == dw_val_class_str);
4680 return a->dw_attr_val.v.val_str->str;
4683 /* Call this function directly to bypass AT_string_form's logic to put
4684 the string inline in the die. */
4686 static void
4687 set_indirect_string (struct indirect_string_node *node)
4689 char label[MAX_ARTIFICIAL_LABEL_BYTES];
4690 /* Already indirect is a no op. */
4691 if (node->form == DW_FORM_strp
4692 || node->form == DW_FORM_line_strp
4693 || node->form == dwarf_FORM (DW_FORM_strx))
4695 gcc_assert (node->label);
4696 return;
4698 ASM_GENERATE_INTERNAL_LABEL (label, "LASF", dw2_string_counter);
4699 ++dw2_string_counter;
4700 node->label = xstrdup (label);
4702 if (!dwarf_split_debug_info)
4704 node->form = DW_FORM_strp;
4705 node->index = NOT_INDEXED;
4707 else
4709 node->form = dwarf_FORM (DW_FORM_strx);
4710 node->index = NO_INDEX_ASSIGNED;
4714 /* A helper function for dwarf2out_finish, called to reset indirect
4715 string decisions done for early LTO dwarf output before fat object
4716 dwarf output. */
4719 reset_indirect_string (indirect_string_node **h, void *)
4721 struct indirect_string_node *node = *h;
4722 if (node->form == DW_FORM_strp || node->form == dwarf_FORM (DW_FORM_strx))
4724 free (node->label);
4725 node->label = NULL;
4726 node->form = (dwarf_form) 0;
4727 node->index = 0;
4729 return 1;
4732 /* Find out whether a string should be output inline in DIE
4733 or out-of-line in .debug_str section. */
4735 static enum dwarf_form
4736 find_string_form (struct indirect_string_node *node)
4738 unsigned int len;
4740 if (node->form)
4741 return node->form;
4743 len = strlen (node->str) + 1;
4745 /* If the string is shorter or equal to the size of the reference, it is
4746 always better to put it inline. */
4747 if (len <= DWARF_OFFSET_SIZE || node->refcount == 0)
4748 return node->form = DW_FORM_string;
4750 /* If we cannot expect the linker to merge strings in .debug_str
4751 section, only put it into .debug_str if it is worth even in this
4752 single module. */
4753 if (DWARF2_INDIRECT_STRING_SUPPORT_MISSING_ON_TARGET
4754 || ((debug_str_section->common.flags & SECTION_MERGE) == 0
4755 && (len - DWARF_OFFSET_SIZE) * node->refcount <= len))
4756 return node->form = DW_FORM_string;
4758 set_indirect_string (node);
4760 return node->form;
4763 /* Find out whether the string referenced from the attribute should be
4764 output inline in DIE or out-of-line in .debug_str section. */
4766 static enum dwarf_form
4767 AT_string_form (dw_attr_node *a)
4769 gcc_assert (a && AT_class (a) == dw_val_class_str);
4770 return find_string_form (a->dw_attr_val.v.val_str);
4773 /* Add a DIE reference attribute value to a DIE. */
4775 static inline void
4776 add_AT_die_ref (dw_die_ref die, enum dwarf_attribute attr_kind, dw_die_ref targ_die)
4778 dw_attr_node attr;
4779 gcc_checking_assert (targ_die != NULL);
4781 /* With LTO we can end up trying to reference something we didn't create
4782 a DIE for. Avoid crashing later on a NULL referenced DIE. */
4783 if (targ_die == NULL)
4784 return;
4786 attr.dw_attr = attr_kind;
4787 attr.dw_attr_val.val_class = dw_val_class_die_ref;
4788 attr.dw_attr_val.val_entry = NULL;
4789 attr.dw_attr_val.v.val_die_ref.die = targ_die;
4790 attr.dw_attr_val.v.val_die_ref.external = 0;
4791 add_dwarf_attr (die, &attr);
4794 /* Change DIE reference REF to point to NEW_DIE instead. */
4796 static inline void
4797 change_AT_die_ref (dw_attr_node *ref, dw_die_ref new_die)
4799 gcc_assert (ref->dw_attr_val.val_class == dw_val_class_die_ref);
4800 ref->dw_attr_val.v.val_die_ref.die = new_die;
4801 ref->dw_attr_val.v.val_die_ref.external = 0;
4804 /* Add an AT_specification attribute to a DIE, and also make the back
4805 pointer from the specification to the definition. */
4807 static inline void
4808 add_AT_specification (dw_die_ref die, dw_die_ref targ_die)
4810 add_AT_die_ref (die, DW_AT_specification, targ_die);
4811 gcc_assert (!targ_die->die_definition);
4812 targ_die->die_definition = die;
4815 static inline dw_die_ref
4816 AT_ref (dw_attr_node *a)
4818 gcc_assert (a && AT_class (a) == dw_val_class_die_ref);
4819 return a->dw_attr_val.v.val_die_ref.die;
4822 static inline int
4823 AT_ref_external (dw_attr_node *a)
4825 if (a && AT_class (a) == dw_val_class_die_ref)
4826 return a->dw_attr_val.v.val_die_ref.external;
4828 return 0;
4831 static inline void
4832 set_AT_ref_external (dw_attr_node *a, int i)
4834 gcc_assert (a && AT_class (a) == dw_val_class_die_ref);
4835 a->dw_attr_val.v.val_die_ref.external = i;
4838 /* Add a location description attribute value to a DIE. */
4840 static inline void
4841 add_AT_loc (dw_die_ref die, enum dwarf_attribute attr_kind, dw_loc_descr_ref loc)
4843 dw_attr_node attr;
4845 attr.dw_attr = attr_kind;
4846 attr.dw_attr_val.val_class = dw_val_class_loc;
4847 attr.dw_attr_val.val_entry = NULL;
4848 attr.dw_attr_val.v.val_loc = loc;
4849 add_dwarf_attr (die, &attr);
4852 static inline dw_loc_descr_ref
4853 AT_loc (dw_attr_node *a)
4855 gcc_assert (a && AT_class (a) == dw_val_class_loc);
4856 return a->dw_attr_val.v.val_loc;
4859 static inline void
4860 add_AT_loc_list (dw_die_ref die, enum dwarf_attribute attr_kind, dw_loc_list_ref loc_list)
4862 dw_attr_node attr;
4864 if (XCOFF_DEBUGGING_INFO && !HAVE_XCOFF_DWARF_EXTRAS)
4865 return;
4867 attr.dw_attr = attr_kind;
4868 attr.dw_attr_val.val_class = dw_val_class_loc_list;
4869 attr.dw_attr_val.val_entry = NULL;
4870 attr.dw_attr_val.v.val_loc_list = loc_list;
4871 add_dwarf_attr (die, &attr);
4872 have_location_lists = true;
4875 static inline dw_loc_list_ref
4876 AT_loc_list (dw_attr_node *a)
4878 gcc_assert (a && AT_class (a) == dw_val_class_loc_list);
4879 return a->dw_attr_val.v.val_loc_list;
4882 /* Add a view list attribute to DIE. It must have a DW_AT_location
4883 attribute, because the view list complements the location list. */
4885 static inline void
4886 add_AT_view_list (dw_die_ref die, enum dwarf_attribute attr_kind)
4888 dw_attr_node attr;
4890 if (XCOFF_DEBUGGING_INFO && !HAVE_XCOFF_DWARF_EXTRAS)
4891 return;
4893 attr.dw_attr = attr_kind;
4894 attr.dw_attr_val.val_class = dw_val_class_view_list;
4895 attr.dw_attr_val.val_entry = NULL;
4896 attr.dw_attr_val.v.val_view_list = die;
4897 add_dwarf_attr (die, &attr);
4898 gcc_checking_assert (get_AT (die, DW_AT_location));
4899 gcc_assert (have_location_lists);
4902 /* Return a pointer to the location list referenced by the attribute.
4903 If the named attribute is a view list, look up the corresponding
4904 DW_AT_location attribute and return its location list. */
4906 static inline dw_loc_list_ref *
4907 AT_loc_list_ptr (dw_attr_node *a)
4909 gcc_assert (a);
4910 switch (AT_class (a))
4912 case dw_val_class_loc_list:
4913 return &a->dw_attr_val.v.val_loc_list;
4914 case dw_val_class_view_list:
4916 dw_attr_node *l;
4917 l = get_AT (a->dw_attr_val.v.val_view_list, DW_AT_location);
4918 if (!l)
4919 return NULL;
4920 gcc_checking_assert (l + 1 == a);
4921 return AT_loc_list_ptr (l);
4923 default:
4924 gcc_unreachable ();
4928 /* Return the location attribute value associated with a view list
4929 attribute value. */
4931 static inline dw_val_node *
4932 view_list_to_loc_list_val_node (dw_val_node *val)
4934 gcc_assert (val->val_class == dw_val_class_view_list);
4935 dw_attr_node *loc = get_AT (val->v.val_view_list, DW_AT_location);
4936 if (!loc)
4937 return NULL;
4938 gcc_checking_assert (&(loc + 1)->dw_attr_val == val);
4939 gcc_assert (AT_class (loc) == dw_val_class_loc_list);
4940 return &loc->dw_attr_val;
4943 struct addr_hasher : ggc_ptr_hash<addr_table_entry>
4945 static hashval_t hash (addr_table_entry *);
4946 static bool equal (addr_table_entry *, addr_table_entry *);
4949 /* Table of entries into the .debug_addr section. */
4951 static GTY (()) hash_table<addr_hasher> *addr_index_table;
4953 /* Hash an address_table_entry. */
4955 hashval_t
4956 addr_hasher::hash (addr_table_entry *a)
4958 inchash::hash hstate;
4959 switch (a->kind)
4961 case ate_kind_rtx:
4962 hstate.add_int (0);
4963 break;
4964 case ate_kind_rtx_dtprel:
4965 hstate.add_int (1);
4966 break;
4967 case ate_kind_label:
4968 return htab_hash_string (a->addr.label);
4969 default:
4970 gcc_unreachable ();
4972 inchash::add_rtx (a->addr.rtl, hstate);
4973 return hstate.end ();
4976 /* Determine equality for two address_table_entries. */
4978 bool
4979 addr_hasher::equal (addr_table_entry *a1, addr_table_entry *a2)
4981 if (a1->kind != a2->kind)
4982 return 0;
4983 switch (a1->kind)
4985 case ate_kind_rtx:
4986 case ate_kind_rtx_dtprel:
4987 return rtx_equal_p (a1->addr.rtl, a2->addr.rtl);
4988 case ate_kind_label:
4989 return strcmp (a1->addr.label, a2->addr.label) == 0;
4990 default:
4991 gcc_unreachable ();
4995 /* Initialize an addr_table_entry. */
4997 void
4998 init_addr_table_entry (addr_table_entry *e, enum ate_kind kind, void *addr)
5000 e->kind = kind;
5001 switch (kind)
5003 case ate_kind_rtx:
5004 case ate_kind_rtx_dtprel:
5005 e->addr.rtl = (rtx) addr;
5006 break;
5007 case ate_kind_label:
5008 e->addr.label = (char *) addr;
5009 break;
5011 e->refcount = 0;
5012 e->index = NO_INDEX_ASSIGNED;
5015 /* Add attr to the address table entry to the table. Defer setting an
5016 index until output time. */
5018 static addr_table_entry *
5019 add_addr_table_entry (void *addr, enum ate_kind kind)
5021 addr_table_entry *node;
5022 addr_table_entry finder;
5024 gcc_assert (dwarf_split_debug_info);
5025 if (! addr_index_table)
5026 addr_index_table = hash_table<addr_hasher>::create_ggc (10);
5027 init_addr_table_entry (&finder, kind, addr);
5028 addr_table_entry **slot = addr_index_table->find_slot (&finder, INSERT);
5030 if (*slot == HTAB_EMPTY_ENTRY)
5032 node = ggc_cleared_alloc<addr_table_entry> ();
5033 init_addr_table_entry (node, kind, addr);
5034 *slot = node;
5036 else
5037 node = *slot;
5039 node->refcount++;
5040 return node;
5043 /* Remove an entry from the addr table by decrementing its refcount.
5044 Strictly, decrementing the refcount would be enough, but the
5045 assertion that the entry is actually in the table has found
5046 bugs. */
5048 static void
5049 remove_addr_table_entry (addr_table_entry *entry)
5051 gcc_assert (dwarf_split_debug_info && addr_index_table);
5052 /* After an index is assigned, the table is frozen. */
5053 gcc_assert (entry->refcount > 0 && entry->index == NO_INDEX_ASSIGNED);
5054 entry->refcount--;
5057 /* Given a location list, remove all addresses it refers to from the
5058 address_table. */
5060 static void
5061 remove_loc_list_addr_table_entries (dw_loc_descr_ref descr)
5063 for (; descr; descr = descr->dw_loc_next)
5064 if (descr->dw_loc_oprnd1.val_entry != NULL)
5066 gcc_assert (descr->dw_loc_oprnd1.val_entry->index == NO_INDEX_ASSIGNED);
5067 remove_addr_table_entry (descr->dw_loc_oprnd1.val_entry);
5071 /* A helper function for dwarf2out_finish called through
5072 htab_traverse. Assign an addr_table_entry its index. All entries
5073 must be collected into the table when this function is called,
5074 because the indexing code relies on htab_traverse to traverse nodes
5075 in the same order for each run. */
5078 index_addr_table_entry (addr_table_entry **h, unsigned int *index)
5080 addr_table_entry *node = *h;
5082 /* Don't index unreferenced nodes. */
5083 if (node->refcount == 0)
5084 return 1;
5086 gcc_assert (node->index == NO_INDEX_ASSIGNED);
5087 node->index = *index;
5088 *index += 1;
5090 return 1;
5093 /* Add an address constant attribute value to a DIE. When using
5094 dwarf_split_debug_info, address attributes in dies destined for the
5095 final executable should be direct references--setting the parameter
5096 force_direct ensures this behavior. */
5098 static inline void
5099 add_AT_addr (dw_die_ref die, enum dwarf_attribute attr_kind, rtx addr,
5100 bool force_direct)
5102 dw_attr_node attr;
5104 attr.dw_attr = attr_kind;
5105 attr.dw_attr_val.val_class = dw_val_class_addr;
5106 attr.dw_attr_val.v.val_addr = addr;
5107 if (dwarf_split_debug_info && !force_direct)
5108 attr.dw_attr_val.val_entry = add_addr_table_entry (addr, ate_kind_rtx);
5109 else
5110 attr.dw_attr_val.val_entry = NULL;
5111 add_dwarf_attr (die, &attr);
5114 /* Get the RTX from to an address DIE attribute. */
5116 static inline rtx
5117 AT_addr (dw_attr_node *a)
5119 gcc_assert (a && AT_class (a) == dw_val_class_addr);
5120 return a->dw_attr_val.v.val_addr;
5123 /* Add a file attribute value to a DIE. */
5125 static inline void
5126 add_AT_file (dw_die_ref die, enum dwarf_attribute attr_kind,
5127 struct dwarf_file_data *fd)
5129 dw_attr_node attr;
5131 attr.dw_attr = attr_kind;
5132 attr.dw_attr_val.val_class = dw_val_class_file;
5133 attr.dw_attr_val.val_entry = NULL;
5134 attr.dw_attr_val.v.val_file = fd;
5135 add_dwarf_attr (die, &attr);
5138 /* Get the dwarf_file_data from a file DIE attribute. */
5140 static inline struct dwarf_file_data *
5141 AT_file (dw_attr_node *a)
5143 gcc_assert (a && (AT_class (a) == dw_val_class_file
5144 || AT_class (a) == dw_val_class_file_implicit));
5145 return a->dw_attr_val.v.val_file;
5148 /* Add a vms delta attribute value to a DIE. */
5150 static inline void
5151 add_AT_vms_delta (dw_die_ref die, enum dwarf_attribute attr_kind,
5152 const char *lbl1, const char *lbl2)
5154 dw_attr_node attr;
5156 attr.dw_attr = attr_kind;
5157 attr.dw_attr_val.val_class = dw_val_class_vms_delta;
5158 attr.dw_attr_val.val_entry = NULL;
5159 attr.dw_attr_val.v.val_vms_delta.lbl1 = xstrdup (lbl1);
5160 attr.dw_attr_val.v.val_vms_delta.lbl2 = xstrdup (lbl2);
5161 add_dwarf_attr (die, &attr);
5164 /* Add a symbolic view identifier attribute value to a DIE. */
5166 static inline void
5167 add_AT_symview (dw_die_ref die, enum dwarf_attribute attr_kind,
5168 const char *view_label)
5170 dw_attr_node attr;
5172 attr.dw_attr = attr_kind;
5173 attr.dw_attr_val.val_class = dw_val_class_symview;
5174 attr.dw_attr_val.val_entry = NULL;
5175 attr.dw_attr_val.v.val_symbolic_view = xstrdup (view_label);
5176 add_dwarf_attr (die, &attr);
5179 /* Add a label identifier attribute value to a DIE. */
5181 static inline void
5182 add_AT_lbl_id (dw_die_ref die, enum dwarf_attribute attr_kind,
5183 const char *lbl_id)
5185 dw_attr_node attr;
5187 attr.dw_attr = attr_kind;
5188 attr.dw_attr_val.val_class = dw_val_class_lbl_id;
5189 attr.dw_attr_val.val_entry = NULL;
5190 attr.dw_attr_val.v.val_lbl_id = xstrdup (lbl_id);
5191 if (dwarf_split_debug_info)
5192 attr.dw_attr_val.val_entry
5193 = add_addr_table_entry (attr.dw_attr_val.v.val_lbl_id,
5194 ate_kind_label);
5195 add_dwarf_attr (die, &attr);
5198 /* Add a section offset attribute value to a DIE, an offset into the
5199 debug_line section. */
5201 static inline void
5202 add_AT_lineptr (dw_die_ref die, enum dwarf_attribute attr_kind,
5203 const char *label)
5205 dw_attr_node attr;
5207 attr.dw_attr = attr_kind;
5208 attr.dw_attr_val.val_class = dw_val_class_lineptr;
5209 attr.dw_attr_val.val_entry = NULL;
5210 attr.dw_attr_val.v.val_lbl_id = xstrdup (label);
5211 add_dwarf_attr (die, &attr);
5214 /* Add a section offset attribute value to a DIE, an offset into the
5215 debug_macinfo section. */
5217 static inline void
5218 add_AT_macptr (dw_die_ref die, enum dwarf_attribute attr_kind,
5219 const char *label)
5221 dw_attr_node attr;
5223 attr.dw_attr = attr_kind;
5224 attr.dw_attr_val.val_class = dw_val_class_macptr;
5225 attr.dw_attr_val.val_entry = NULL;
5226 attr.dw_attr_val.v.val_lbl_id = xstrdup (label);
5227 add_dwarf_attr (die, &attr);
5230 /* Add a range_list attribute value to a DIE. When using
5231 dwarf_split_debug_info, address attributes in dies destined for the
5232 final executable should be direct references--setting the parameter
5233 force_direct ensures this behavior. */
5235 #define UNRELOCATED_OFFSET ((addr_table_entry *) 1)
5236 #define RELOCATED_OFFSET (NULL)
5238 static void
5239 add_AT_range_list (dw_die_ref die, enum dwarf_attribute attr_kind,
5240 long unsigned int offset, bool force_direct)
5242 dw_attr_node attr;
5244 attr.dw_attr = attr_kind;
5245 attr.dw_attr_val.val_class = dw_val_class_range_list;
5246 /* For the range_list attribute, use val_entry to store whether the
5247 offset should follow split-debug-info or normal semantics. This
5248 value is read in output_range_list_offset. */
5249 if (dwarf_split_debug_info && !force_direct)
5250 attr.dw_attr_val.val_entry = UNRELOCATED_OFFSET;
5251 else
5252 attr.dw_attr_val.val_entry = RELOCATED_OFFSET;
5253 attr.dw_attr_val.v.val_offset = offset;
5254 add_dwarf_attr (die, &attr);
5257 /* Return the start label of a delta attribute. */
5259 static inline const char *
5260 AT_vms_delta1 (dw_attr_node *a)
5262 gcc_assert (a && (AT_class (a) == dw_val_class_vms_delta));
5263 return a->dw_attr_val.v.val_vms_delta.lbl1;
5266 /* Return the end label of a delta attribute. */
5268 static inline const char *
5269 AT_vms_delta2 (dw_attr_node *a)
5271 gcc_assert (a && (AT_class (a) == dw_val_class_vms_delta));
5272 return a->dw_attr_val.v.val_vms_delta.lbl2;
5275 static inline const char *
5276 AT_lbl (dw_attr_node *a)
5278 gcc_assert (a && (AT_class (a) == dw_val_class_lbl_id
5279 || AT_class (a) == dw_val_class_lineptr
5280 || AT_class (a) == dw_val_class_macptr
5281 || AT_class (a) == dw_val_class_loclistsptr
5282 || AT_class (a) == dw_val_class_high_pc));
5283 return a->dw_attr_val.v.val_lbl_id;
5286 /* Get the attribute of type attr_kind. */
5288 static dw_attr_node *
5289 get_AT (dw_die_ref die, enum dwarf_attribute attr_kind)
5291 dw_attr_node *a;
5292 unsigned ix;
5293 dw_die_ref spec = NULL;
5295 if (! die)
5296 return NULL;
5298 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
5299 if (a->dw_attr == attr_kind)
5300 return a;
5301 else if (a->dw_attr == DW_AT_specification
5302 || a->dw_attr == DW_AT_abstract_origin)
5303 spec = AT_ref (a);
5305 if (spec)
5306 return get_AT (spec, attr_kind);
5308 return NULL;
5311 /* Returns the parent of the declaration of DIE. */
5313 static dw_die_ref
5314 get_die_parent (dw_die_ref die)
5316 dw_die_ref t;
5318 if (!die)
5319 return NULL;
5321 if ((t = get_AT_ref (die, DW_AT_abstract_origin))
5322 || (t = get_AT_ref (die, DW_AT_specification)))
5323 die = t;
5325 return die->die_parent;
5328 /* Return the "low pc" attribute value, typically associated with a subprogram
5329 DIE. Return null if the "low pc" attribute is either not present, or if it
5330 cannot be represented as an assembler label identifier. */
5332 static inline const char *
5333 get_AT_low_pc (dw_die_ref die)
5335 dw_attr_node *a = get_AT (die, DW_AT_low_pc);
5337 return a ? AT_lbl (a) : NULL;
5340 /* Return the value of the string attribute designated by ATTR_KIND, or
5341 NULL if it is not present. */
5343 static inline const char *
5344 get_AT_string (dw_die_ref die, enum dwarf_attribute attr_kind)
5346 dw_attr_node *a = get_AT (die, attr_kind);
5348 return a ? AT_string (a) : NULL;
5351 /* Return the value of the flag attribute designated by ATTR_KIND, or -1
5352 if it is not present. */
5354 static inline int
5355 get_AT_flag (dw_die_ref die, enum dwarf_attribute attr_kind)
5357 dw_attr_node *a = get_AT (die, attr_kind);
5359 return a ? AT_flag (a) : 0;
5362 /* Return the value of the unsigned attribute designated by ATTR_KIND, or 0
5363 if it is not present. */
5365 static inline unsigned
5366 get_AT_unsigned (dw_die_ref die, enum dwarf_attribute attr_kind)
5368 dw_attr_node *a = get_AT (die, attr_kind);
5370 return a ? AT_unsigned (a) : 0;
5373 static inline dw_die_ref
5374 get_AT_ref (dw_die_ref die, enum dwarf_attribute attr_kind)
5376 dw_attr_node *a = get_AT (die, attr_kind);
5378 return a ? AT_ref (a) : NULL;
5381 static inline struct dwarf_file_data *
5382 get_AT_file (dw_die_ref die, enum dwarf_attribute attr_kind)
5384 dw_attr_node *a = get_AT (die, attr_kind);
5386 return a ? AT_file (a) : NULL;
5389 /* Return TRUE if the language is C. */
5391 static inline bool
5392 is_c (void)
5394 unsigned int lang = get_AT_unsigned (comp_unit_die (), DW_AT_language);
5396 return (lang == DW_LANG_C || lang == DW_LANG_C89 || lang == DW_LANG_C99
5397 || lang == DW_LANG_C11 || lang == DW_LANG_ObjC);
5402 /* Return TRUE if the language is C++. */
5404 static inline bool
5405 is_cxx (void)
5407 unsigned int lang = get_AT_unsigned (comp_unit_die (), DW_AT_language);
5409 return (lang == DW_LANG_C_plus_plus || lang == DW_LANG_ObjC_plus_plus
5410 || lang == DW_LANG_C_plus_plus_11 || lang == DW_LANG_C_plus_plus_14);
5413 /* Return TRUE if DECL was created by the C++ frontend. */
5415 static bool
5416 is_cxx (const_tree decl)
5418 if (in_lto_p)
5420 const_tree context = get_ultimate_context (decl);
5421 if (context && TRANSLATION_UNIT_LANGUAGE (context))
5422 return strncmp (TRANSLATION_UNIT_LANGUAGE (context), "GNU C++", 7) == 0;
5424 return is_cxx ();
5427 /* Return TRUE if the language is Fortran. */
5429 static inline bool
5430 is_fortran (void)
5432 unsigned int lang = get_AT_unsigned (comp_unit_die (), DW_AT_language);
5434 return (lang == DW_LANG_Fortran77
5435 || lang == DW_LANG_Fortran90
5436 || lang == DW_LANG_Fortran95
5437 || lang == DW_LANG_Fortran03
5438 || lang == DW_LANG_Fortran08);
5441 static inline bool
5442 is_fortran (const_tree decl)
5444 if (in_lto_p)
5446 const_tree context = get_ultimate_context (decl);
5447 if (context && TRANSLATION_UNIT_LANGUAGE (context))
5448 return (strncmp (TRANSLATION_UNIT_LANGUAGE (context),
5449 "GNU Fortran", 11) == 0
5450 || strcmp (TRANSLATION_UNIT_LANGUAGE (context),
5451 "GNU F77") == 0);
5453 return is_fortran ();
5456 /* Return TRUE if the language is Ada. */
5458 static inline bool
5459 is_ada (void)
5461 unsigned int lang = get_AT_unsigned (comp_unit_die (), DW_AT_language);
5463 return lang == DW_LANG_Ada95 || lang == DW_LANG_Ada83;
5466 /* Return TRUE if the language is D. */
5468 static inline bool
5469 is_dlang (void)
5471 unsigned int lang = get_AT_unsigned (comp_unit_die (), DW_AT_language);
5473 return lang == DW_LANG_D;
5476 /* Remove the specified attribute if present. Return TRUE if removal
5477 was successful. */
5479 static bool
5480 remove_AT (dw_die_ref die, enum dwarf_attribute attr_kind)
5482 dw_attr_node *a;
5483 unsigned ix;
5485 if (! die)
5486 return false;
5488 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
5489 if (a->dw_attr == attr_kind)
5491 if (AT_class (a) == dw_val_class_str)
5492 if (a->dw_attr_val.v.val_str->refcount)
5493 a->dw_attr_val.v.val_str->refcount--;
5495 /* vec::ordered_remove should help reduce the number of abbrevs
5496 that are needed. */
5497 die->die_attr->ordered_remove (ix);
5498 return true;
5500 return false;
5503 /* Remove CHILD from its parent. PREV must have the property that
5504 PREV->DIE_SIB == CHILD. Does not alter CHILD. */
5506 static void
5507 remove_child_with_prev (dw_die_ref child, dw_die_ref prev)
5509 gcc_assert (child->die_parent == prev->die_parent);
5510 gcc_assert (prev->die_sib == child);
5511 if (prev == child)
5513 gcc_assert (child->die_parent->die_child == child);
5514 prev = NULL;
5516 else
5517 prev->die_sib = child->die_sib;
5518 if (child->die_parent->die_child == child)
5519 child->die_parent->die_child = prev;
5520 child->die_sib = NULL;
5523 /* Replace OLD_CHILD with NEW_CHILD. PREV must have the property that
5524 PREV->DIE_SIB == OLD_CHILD. Does not alter OLD_CHILD. */
5526 static void
5527 replace_child (dw_die_ref old_child, dw_die_ref new_child, dw_die_ref prev)
5529 dw_die_ref parent = old_child->die_parent;
5531 gcc_assert (parent == prev->die_parent);
5532 gcc_assert (prev->die_sib == old_child);
5534 new_child->die_parent = parent;
5535 if (prev == old_child)
5537 gcc_assert (parent->die_child == old_child);
5538 new_child->die_sib = new_child;
5540 else
5542 prev->die_sib = new_child;
5543 new_child->die_sib = old_child->die_sib;
5545 if (old_child->die_parent->die_child == old_child)
5546 old_child->die_parent->die_child = new_child;
5547 old_child->die_sib = NULL;
5550 /* Move all children from OLD_PARENT to NEW_PARENT. */
5552 static void
5553 move_all_children (dw_die_ref old_parent, dw_die_ref new_parent)
5555 dw_die_ref c;
5556 new_parent->die_child = old_parent->die_child;
5557 old_parent->die_child = NULL;
5558 FOR_EACH_CHILD (new_parent, c, c->die_parent = new_parent);
5561 /* Remove child DIE whose die_tag is TAG. Do nothing if no child
5562 matches TAG. */
5564 static void
5565 remove_child_TAG (dw_die_ref die, enum dwarf_tag tag)
5567 dw_die_ref c;
5569 c = die->die_child;
5570 if (c) do {
5571 dw_die_ref prev = c;
5572 c = c->die_sib;
5573 while (c->die_tag == tag)
5575 remove_child_with_prev (c, prev);
5576 c->die_parent = NULL;
5577 /* Might have removed every child. */
5578 if (die->die_child == NULL)
5579 return;
5580 c = prev->die_sib;
5582 } while (c != die->die_child);
5585 /* Add a CHILD_DIE as the last child of DIE. */
5587 static void
5588 add_child_die (dw_die_ref die, dw_die_ref child_die)
5590 /* FIXME this should probably be an assert. */
5591 if (! die || ! child_die)
5592 return;
5593 gcc_assert (die != child_die);
5595 child_die->die_parent = die;
5596 if (die->die_child)
5598 child_die->die_sib = die->die_child->die_sib;
5599 die->die_child->die_sib = child_die;
5601 else
5602 child_die->die_sib = child_die;
5603 die->die_child = child_die;
5606 /* Like add_child_die, but put CHILD_DIE after AFTER_DIE. */
5608 static void
5609 add_child_die_after (dw_die_ref die, dw_die_ref child_die,
5610 dw_die_ref after_die)
5612 gcc_assert (die
5613 && child_die
5614 && after_die
5615 && die->die_child
5616 && die != child_die);
5618 child_die->die_parent = die;
5619 child_die->die_sib = after_die->die_sib;
5620 after_die->die_sib = child_die;
5621 if (die->die_child == after_die)
5622 die->die_child = child_die;
5625 /* Unassociate CHILD from its parent, and make its parent be
5626 NEW_PARENT. */
5628 static void
5629 reparent_child (dw_die_ref child, dw_die_ref new_parent)
5631 for (dw_die_ref p = child->die_parent->die_child; ; p = p->die_sib)
5632 if (p->die_sib == child)
5634 remove_child_with_prev (child, p);
5635 break;
5637 add_child_die (new_parent, child);
5640 /* Move CHILD, which must be a child of PARENT or the DIE for which PARENT
5641 is the specification, to the end of PARENT's list of children.
5642 This is done by removing and re-adding it. */
5644 static void
5645 splice_child_die (dw_die_ref parent, dw_die_ref child)
5647 /* We want the declaration DIE from inside the class, not the
5648 specification DIE at toplevel. */
5649 if (child->die_parent != parent)
5651 dw_die_ref tmp = get_AT_ref (child, DW_AT_specification);
5653 if (tmp)
5654 child = tmp;
5657 gcc_assert (child->die_parent == parent
5658 || (child->die_parent
5659 == get_AT_ref (parent, DW_AT_specification)));
5661 reparent_child (child, parent);
5664 /* Create and return a new die with TAG_VALUE as tag. */
5666 static inline dw_die_ref
5667 new_die_raw (enum dwarf_tag tag_value)
5669 dw_die_ref die = ggc_cleared_alloc<die_node> ();
5670 die->die_tag = tag_value;
5671 return die;
5674 /* Create and return a new die with a parent of PARENT_DIE. If
5675 PARENT_DIE is NULL, the new DIE is placed in limbo and an
5676 associated tree T must be supplied to determine parenthood
5677 later. */
5679 static inline dw_die_ref
5680 new_die (enum dwarf_tag tag_value, dw_die_ref parent_die, tree t)
5682 dw_die_ref die = new_die_raw (tag_value);
5684 if (parent_die != NULL)
5685 add_child_die (parent_die, die);
5686 else
5688 limbo_die_node *limbo_node;
5690 /* No DIEs created after early dwarf should end up in limbo,
5691 because the limbo list should not persist past LTO
5692 streaming. */
5693 if (tag_value != DW_TAG_compile_unit
5694 /* These are allowed because they're generated while
5695 breaking out COMDAT units late. */
5696 && tag_value != DW_TAG_type_unit
5697 && tag_value != DW_TAG_skeleton_unit
5698 && !early_dwarf
5699 /* Allow nested functions to live in limbo because they will
5700 only temporarily live there, as decls_for_scope will fix
5701 them up. */
5702 && (TREE_CODE (t) != FUNCTION_DECL
5703 || !decl_function_context (t))
5704 /* Same as nested functions above but for types. Types that
5705 are local to a function will be fixed in
5706 decls_for_scope. */
5707 && (!RECORD_OR_UNION_TYPE_P (t)
5708 || !TYPE_CONTEXT (t)
5709 || TREE_CODE (TYPE_CONTEXT (t)) != FUNCTION_DECL)
5710 /* FIXME debug-early: Allow late limbo DIE creation for LTO,
5711 especially in the ltrans stage, but once we implement LTO
5712 dwarf streaming, we should remove this exception. */
5713 && !in_lto_p)
5715 fprintf (stderr, "symbol ended up in limbo too late:");
5716 debug_generic_stmt (t);
5717 gcc_unreachable ();
5720 limbo_node = ggc_cleared_alloc<limbo_die_node> ();
5721 limbo_node->die = die;
5722 limbo_node->created_for = t;
5723 limbo_node->next = limbo_die_list;
5724 limbo_die_list = limbo_node;
5727 return die;
5730 /* Return the DIE associated with the given type specifier. */
5732 static inline dw_die_ref
5733 lookup_type_die (tree type)
5735 dw_die_ref die = TYPE_SYMTAB_DIE (type);
5736 if (die && die->removed)
5738 TYPE_SYMTAB_DIE (type) = NULL;
5739 return NULL;
5741 return die;
5744 /* Given a TYPE_DIE representing the type TYPE, if TYPE is an
5745 anonymous type named by the typedef TYPE_DIE, return the DIE of the
5746 anonymous type instead the one of the naming typedef. */
5748 static inline dw_die_ref
5749 strip_naming_typedef (tree type, dw_die_ref type_die)
5751 if (type
5752 && TREE_CODE (type) == RECORD_TYPE
5753 && type_die
5754 && type_die->die_tag == DW_TAG_typedef
5755 && is_naming_typedef_decl (TYPE_NAME (type)))
5756 type_die = get_AT_ref (type_die, DW_AT_type);
5757 return type_die;
5760 /* Like lookup_type_die, but if type is an anonymous type named by a
5761 typedef[1], return the DIE of the anonymous type instead the one of
5762 the naming typedef. This is because in gen_typedef_die, we did
5763 equate the anonymous struct named by the typedef with the DIE of
5764 the naming typedef. So by default, lookup_type_die on an anonymous
5765 struct yields the DIE of the naming typedef.
5767 [1]: Read the comment of is_naming_typedef_decl to learn about what
5768 a naming typedef is. */
5770 static inline dw_die_ref
5771 lookup_type_die_strip_naming_typedef (tree type)
5773 dw_die_ref die = lookup_type_die (type);
5774 return strip_naming_typedef (type, die);
5777 /* Equate a DIE to a given type specifier. */
5779 static inline void
5780 equate_type_number_to_die (tree type, dw_die_ref type_die)
5782 TYPE_SYMTAB_DIE (type) = type_die;
5785 static dw_die_ref maybe_create_die_with_external_ref (tree);
5786 struct GTY(()) sym_off_pair
5788 const char * GTY((skip)) sym;
5789 unsigned HOST_WIDE_INT off;
5791 static GTY(()) hash_map<tree, sym_off_pair> *external_die_map;
5793 /* Returns a hash value for X (which really is a die_struct). */
5795 inline hashval_t
5796 decl_die_hasher::hash (die_node *x)
5798 return (hashval_t) x->decl_id;
5801 /* Return nonzero if decl_id of die_struct X is the same as UID of decl *Y. */
5803 inline bool
5804 decl_die_hasher::equal (die_node *x, tree y)
5806 return (x->decl_id == DECL_UID (y));
5809 /* Return the DIE associated with a given declaration. */
5811 static inline dw_die_ref
5812 lookup_decl_die (tree decl)
5814 dw_die_ref *die = decl_die_table->find_slot_with_hash (decl, DECL_UID (decl),
5815 NO_INSERT);
5816 if (!die)
5818 if (in_lto_p)
5819 return maybe_create_die_with_external_ref (decl);
5820 return NULL;
5822 if ((*die)->removed)
5824 decl_die_table->clear_slot (die);
5825 return NULL;
5827 return *die;
5831 /* Return the DIE associated with BLOCK. */
5833 static inline dw_die_ref
5834 lookup_block_die (tree block)
5836 dw_die_ref die = BLOCK_DIE (block);
5837 if (!die && in_lto_p)
5838 return maybe_create_die_with_external_ref (block);
5839 return die;
5842 /* Associate DIE with BLOCK. */
5844 static inline void
5845 equate_block_to_die (tree block, dw_die_ref die)
5847 BLOCK_DIE (block) = die;
5849 #undef BLOCK_DIE
5852 /* For DECL which might have early dwarf output query a SYMBOL + OFFSET
5853 style reference. Return true if we found one refering to a DIE for
5854 DECL, otherwise return false. */
5856 static bool
5857 dwarf2out_die_ref_for_decl (tree decl, const char **sym,
5858 unsigned HOST_WIDE_INT *off)
5860 dw_die_ref die;
5862 if (in_lto_p)
5864 /* During WPA stage and incremental linking we use a hash-map
5865 to store the decl <-> label + offset map. */
5866 if (!external_die_map)
5867 return false;
5868 sym_off_pair *desc = external_die_map->get (decl);
5869 if (!desc)
5870 return false;
5871 *sym = desc->sym;
5872 *off = desc->off;
5873 return true;
5876 if (TREE_CODE (decl) == BLOCK)
5877 die = lookup_block_die (decl);
5878 else
5879 die = lookup_decl_die (decl);
5880 if (!die)
5881 return false;
5883 /* Similar to get_ref_die_offset_label, but using the "correct"
5884 label. */
5885 *off = die->die_offset;
5886 while (die->die_parent)
5887 die = die->die_parent;
5888 /* For the containing CU DIE we compute a die_symbol in
5889 compute_comp_unit_symbol. */
5890 gcc_assert (die->die_tag == DW_TAG_compile_unit
5891 && die->die_id.die_symbol != NULL);
5892 *sym = die->die_id.die_symbol;
5893 return true;
5896 /* Add a reference of kind ATTR_KIND to a DIE at SYMBOL + OFFSET to DIE. */
5898 static void
5899 add_AT_external_die_ref (dw_die_ref die, enum dwarf_attribute attr_kind,
5900 const char *symbol, HOST_WIDE_INT offset)
5902 /* Create a fake DIE that contains the reference. Don't use
5903 new_die because we don't want to end up in the limbo list. */
5904 /* ??? We probably want to share these, thus put a ref to the DIE
5905 we create here to the external_die_map entry. */
5906 dw_die_ref ref = new_die_raw (die->die_tag);
5907 ref->die_id.die_symbol = symbol;
5908 ref->die_offset = offset;
5909 ref->with_offset = 1;
5910 add_AT_die_ref (die, attr_kind, ref);
5913 /* Create a DIE for DECL if required and add a reference to a DIE
5914 at SYMBOL + OFFSET which contains attributes dumped early. */
5916 static void
5917 dwarf2out_register_external_die (tree decl, const char *sym,
5918 unsigned HOST_WIDE_INT off)
5920 if (debug_info_level == DINFO_LEVEL_NONE)
5921 return;
5923 if (!external_die_map)
5924 external_die_map = hash_map<tree, sym_off_pair>::create_ggc (1000);
5925 gcc_checking_assert (!external_die_map->get (decl));
5926 sym_off_pair p = { IDENTIFIER_POINTER (get_identifier (sym)), off };
5927 external_die_map->put (decl, p);
5930 /* If we have a registered external DIE for DECL return a new DIE for
5931 the concrete instance with an appropriate abstract origin. */
5933 static dw_die_ref
5934 maybe_create_die_with_external_ref (tree decl)
5936 if (!external_die_map)
5937 return NULL;
5938 sym_off_pair *desc = external_die_map->get (decl);
5939 if (!desc)
5940 return NULL;
5942 const char *sym = desc->sym;
5943 unsigned HOST_WIDE_INT off = desc->off;
5945 in_lto_p = false;
5946 dw_die_ref die = (TREE_CODE (decl) == BLOCK
5947 ? lookup_block_die (decl) : lookup_decl_die (decl));
5948 gcc_assert (!die);
5949 in_lto_p = true;
5951 tree ctx;
5952 dw_die_ref parent = NULL;
5953 /* Need to lookup a DIE for the decls context - the containing
5954 function or translation unit. */
5955 if (TREE_CODE (decl) == BLOCK)
5957 ctx = BLOCK_SUPERCONTEXT (decl);
5958 /* ??? We do not output DIEs for all scopes thus skip as
5959 many DIEs as needed. */
5960 while (TREE_CODE (ctx) == BLOCK
5961 && !lookup_block_die (ctx))
5962 ctx = BLOCK_SUPERCONTEXT (ctx);
5964 else
5965 ctx = DECL_CONTEXT (decl);
5966 /* Peel types in the context stack. */
5967 while (ctx && TYPE_P (ctx))
5968 ctx = TYPE_CONTEXT (ctx);
5969 /* Likewise namespaces in case we do not want to emit DIEs for them. */
5970 if (debug_info_level <= DINFO_LEVEL_TERSE)
5971 while (ctx && TREE_CODE (ctx) == NAMESPACE_DECL)
5972 ctx = DECL_CONTEXT (ctx);
5973 if (ctx)
5975 if (TREE_CODE (ctx) == BLOCK)
5976 parent = lookup_block_die (ctx);
5977 else if (TREE_CODE (ctx) == TRANSLATION_UNIT_DECL
5978 /* Keep the 1:1 association during WPA. */
5979 && !flag_wpa
5980 && flag_incremental_link != INCREMENTAL_LINK_LTO)
5981 /* Otherwise all late annotations go to the main CU which
5982 imports the original CUs. */
5983 parent = comp_unit_die ();
5984 else if (TREE_CODE (ctx) == FUNCTION_DECL
5985 && TREE_CODE (decl) != FUNCTION_DECL
5986 && TREE_CODE (decl) != PARM_DECL
5987 && TREE_CODE (decl) != RESULT_DECL
5988 && TREE_CODE (decl) != BLOCK)
5989 /* Leave function local entities parent determination to when
5990 we process scope vars. */
5992 else
5993 parent = lookup_decl_die (ctx);
5995 else
5996 /* In some cases the FEs fail to set DECL_CONTEXT properly.
5997 Handle this case gracefully by globalizing stuff. */
5998 parent = comp_unit_die ();
5999 /* Create a DIE "stub". */
6000 switch (TREE_CODE (decl))
6002 case TRANSLATION_UNIT_DECL:
6004 die = comp_unit_die ();
6005 /* We re-target all CU decls to the LTRANS CU DIE, so no need
6006 to create a DIE for the original CUs. */
6007 return die;
6009 case NAMESPACE_DECL:
6010 if (is_fortran (decl))
6011 die = new_die (DW_TAG_module, parent, decl);
6012 else
6013 die = new_die (DW_TAG_namespace, parent, decl);
6014 break;
6015 case FUNCTION_DECL:
6016 die = new_die (DW_TAG_subprogram, parent, decl);
6017 break;
6018 case VAR_DECL:
6019 die = new_die (DW_TAG_variable, parent, decl);
6020 break;
6021 case RESULT_DECL:
6022 die = new_die (DW_TAG_variable, parent, decl);
6023 break;
6024 case PARM_DECL:
6025 die = new_die (DW_TAG_formal_parameter, parent, decl);
6026 break;
6027 case CONST_DECL:
6028 die = new_die (DW_TAG_constant, parent, decl);
6029 break;
6030 case LABEL_DECL:
6031 die = new_die (DW_TAG_label, parent, decl);
6032 break;
6033 case BLOCK:
6034 die = new_die (DW_TAG_lexical_block, parent, decl);
6035 break;
6036 default:
6037 gcc_unreachable ();
6039 if (TREE_CODE (decl) == BLOCK)
6040 equate_block_to_die (decl, die);
6041 else
6042 equate_decl_number_to_die (decl, die);
6044 add_desc_attribute (die, decl);
6046 /* Add a reference to the DIE providing early debug at $sym + off. */
6047 add_AT_external_die_ref (die, DW_AT_abstract_origin, sym, off);
6049 return die;
6052 /* Returns a hash value for X (which really is a var_loc_list). */
6054 inline hashval_t
6055 decl_loc_hasher::hash (var_loc_list *x)
6057 return (hashval_t) x->decl_id;
6060 /* Return nonzero if decl_id of var_loc_list X is the same as
6061 UID of decl *Y. */
6063 inline bool
6064 decl_loc_hasher::equal (var_loc_list *x, const_tree y)
6066 return (x->decl_id == DECL_UID (y));
6069 /* Return the var_loc list associated with a given declaration. */
6071 static inline var_loc_list *
6072 lookup_decl_loc (const_tree decl)
6074 if (!decl_loc_table)
6075 return NULL;
6076 return decl_loc_table->find_with_hash (decl, DECL_UID (decl));
6079 /* Returns a hash value for X (which really is a cached_dw_loc_list_list). */
6081 inline hashval_t
6082 dw_loc_list_hasher::hash (cached_dw_loc_list *x)
6084 return (hashval_t) x->decl_id;
6087 /* Return nonzero if decl_id of cached_dw_loc_list X is the same as
6088 UID of decl *Y. */
6090 inline bool
6091 dw_loc_list_hasher::equal (cached_dw_loc_list *x, const_tree y)
6093 return (x->decl_id == DECL_UID (y));
6096 /* Equate a DIE to a particular declaration. */
6098 static void
6099 equate_decl_number_to_die (tree decl, dw_die_ref decl_die)
6101 unsigned int decl_id = DECL_UID (decl);
6103 *decl_die_table->find_slot_with_hash (decl, decl_id, INSERT) = decl_die;
6104 decl_die->decl_id = decl_id;
6107 /* Return how many bits covers PIECE EXPR_LIST. */
6109 static HOST_WIDE_INT
6110 decl_piece_bitsize (rtx piece)
6112 int ret = (int) GET_MODE (piece);
6113 if (ret)
6114 return ret;
6115 gcc_assert (GET_CODE (XEXP (piece, 0)) == CONCAT
6116 && CONST_INT_P (XEXP (XEXP (piece, 0), 0)));
6117 return INTVAL (XEXP (XEXP (piece, 0), 0));
6120 /* Return pointer to the location of location note in PIECE EXPR_LIST. */
6122 static rtx *
6123 decl_piece_varloc_ptr (rtx piece)
6125 if ((int) GET_MODE (piece))
6126 return &XEXP (piece, 0);
6127 else
6128 return &XEXP (XEXP (piece, 0), 1);
6131 /* Create an EXPR_LIST for location note LOC_NOTE covering BITSIZE bits.
6132 Next is the chain of following piece nodes. */
6134 static rtx_expr_list *
6135 decl_piece_node (rtx loc_note, HOST_WIDE_INT bitsize, rtx next)
6137 if (bitsize > 0 && bitsize <= (int) MAX_MACHINE_MODE)
6138 return alloc_EXPR_LIST (bitsize, loc_note, next);
6139 else
6140 return alloc_EXPR_LIST (0, gen_rtx_CONCAT (VOIDmode,
6141 GEN_INT (bitsize),
6142 loc_note), next);
6145 /* Return rtx that should be stored into loc field for
6146 LOC_NOTE and BITPOS/BITSIZE. */
6148 static rtx
6149 construct_piece_list (rtx loc_note, HOST_WIDE_INT bitpos,
6150 HOST_WIDE_INT bitsize)
6152 if (bitsize != -1)
6154 loc_note = decl_piece_node (loc_note, bitsize, NULL_RTX);
6155 if (bitpos != 0)
6156 loc_note = decl_piece_node (NULL_RTX, bitpos, loc_note);
6158 return loc_note;
6161 /* This function either modifies location piece list *DEST in
6162 place (if SRC and INNER is NULL), or copies location piece list
6163 *SRC to *DEST while modifying it. Location BITPOS is modified
6164 to contain LOC_NOTE, any pieces overlapping it are removed resp.
6165 not copied and if needed some padding around it is added.
6166 When modifying in place, DEST should point to EXPR_LIST where
6167 earlier pieces cover PIECE_BITPOS bits, when copying SRC points
6168 to the start of the whole list and INNER points to the EXPR_LIST
6169 where earlier pieces cover PIECE_BITPOS bits. */
6171 static void
6172 adjust_piece_list (rtx *dest, rtx *src, rtx *inner,
6173 HOST_WIDE_INT bitpos, HOST_WIDE_INT piece_bitpos,
6174 HOST_WIDE_INT bitsize, rtx loc_note)
6176 HOST_WIDE_INT diff;
6177 bool copy = inner != NULL;
6179 if (copy)
6181 /* First copy all nodes preceding the current bitpos. */
6182 while (src != inner)
6184 *dest = decl_piece_node (*decl_piece_varloc_ptr (*src),
6185 decl_piece_bitsize (*src), NULL_RTX);
6186 dest = &XEXP (*dest, 1);
6187 src = &XEXP (*src, 1);
6190 /* Add padding if needed. */
6191 if (bitpos != piece_bitpos)
6193 *dest = decl_piece_node (NULL_RTX, bitpos - piece_bitpos,
6194 copy ? NULL_RTX : *dest);
6195 dest = &XEXP (*dest, 1);
6197 else if (*dest && decl_piece_bitsize (*dest) == bitsize)
6199 gcc_assert (!copy);
6200 /* A piece with correct bitpos and bitsize already exist,
6201 just update the location for it and return. */
6202 *decl_piece_varloc_ptr (*dest) = loc_note;
6203 return;
6205 /* Add the piece that changed. */
6206 *dest = decl_piece_node (loc_note, bitsize, copy ? NULL_RTX : *dest);
6207 dest = &XEXP (*dest, 1);
6208 /* Skip over pieces that overlap it. */
6209 diff = bitpos - piece_bitpos + bitsize;
6210 if (!copy)
6211 src = dest;
6212 while (diff > 0 && *src)
6214 rtx piece = *src;
6215 diff -= decl_piece_bitsize (piece);
6216 if (copy)
6217 src = &XEXP (piece, 1);
6218 else
6220 *src = XEXP (piece, 1);
6221 free_EXPR_LIST_node (piece);
6224 /* Add padding if needed. */
6225 if (diff < 0 && *src)
6227 if (!copy)
6228 dest = src;
6229 *dest = decl_piece_node (NULL_RTX, -diff, copy ? NULL_RTX : *dest);
6230 dest = &XEXP (*dest, 1);
6232 if (!copy)
6233 return;
6234 /* Finally copy all nodes following it. */
6235 while (*src)
6237 *dest = decl_piece_node (*decl_piece_varloc_ptr (*src),
6238 decl_piece_bitsize (*src), NULL_RTX);
6239 dest = &XEXP (*dest, 1);
6240 src = &XEXP (*src, 1);
6244 /* Add a variable location node to the linked list for DECL. */
6246 static struct var_loc_node *
6247 add_var_loc_to_decl (tree decl, rtx loc_note, const char *label, var_loc_view view)
6249 unsigned int decl_id;
6250 var_loc_list *temp;
6251 struct var_loc_node *loc = NULL;
6252 HOST_WIDE_INT bitsize = -1, bitpos = -1;
6254 if (VAR_P (decl) && DECL_HAS_DEBUG_EXPR_P (decl))
6256 tree realdecl = DECL_DEBUG_EXPR (decl);
6257 if (handled_component_p (realdecl)
6258 || (TREE_CODE (realdecl) == MEM_REF
6259 && TREE_CODE (TREE_OPERAND (realdecl, 0)) == ADDR_EXPR))
6261 bool reverse;
6262 tree innerdecl = get_ref_base_and_extent_hwi (realdecl, &bitpos,
6263 &bitsize, &reverse);
6264 if (!innerdecl
6265 || !DECL_P (innerdecl)
6266 || DECL_IGNORED_P (innerdecl)
6267 || TREE_STATIC (innerdecl)
6268 || bitsize == 0
6269 || bitpos + bitsize > 256)
6270 return NULL;
6271 decl = innerdecl;
6275 decl_id = DECL_UID (decl);
6276 var_loc_list **slot
6277 = decl_loc_table->find_slot_with_hash (decl, decl_id, INSERT);
6278 if (*slot == NULL)
6280 temp = ggc_cleared_alloc<var_loc_list> ();
6281 temp->decl_id = decl_id;
6282 *slot = temp;
6284 else
6285 temp = *slot;
6287 /* For PARM_DECLs try to keep around the original incoming value,
6288 even if that means we'll emit a zero-range .debug_loc entry. */
6289 if (temp->last
6290 && temp->first == temp->last
6291 && TREE_CODE (decl) == PARM_DECL
6292 && NOTE_P (temp->first->loc)
6293 && NOTE_VAR_LOCATION_DECL (temp->first->loc) == decl
6294 && DECL_INCOMING_RTL (decl)
6295 && NOTE_VAR_LOCATION_LOC (temp->first->loc)
6296 && GET_CODE (NOTE_VAR_LOCATION_LOC (temp->first->loc))
6297 == GET_CODE (DECL_INCOMING_RTL (decl))
6298 && prev_real_insn (as_a<rtx_insn *> (temp->first->loc)) == NULL_RTX
6299 && (bitsize != -1
6300 || !rtx_equal_p (NOTE_VAR_LOCATION_LOC (temp->first->loc),
6301 NOTE_VAR_LOCATION_LOC (loc_note))
6302 || (NOTE_VAR_LOCATION_STATUS (temp->first->loc)
6303 != NOTE_VAR_LOCATION_STATUS (loc_note))))
6305 loc = ggc_cleared_alloc<var_loc_node> ();
6306 temp->first->next = loc;
6307 temp->last = loc;
6308 loc->loc = construct_piece_list (loc_note, bitpos, bitsize);
6310 else if (temp->last)
6312 struct var_loc_node *last = temp->last, *unused = NULL;
6313 rtx *piece_loc = NULL, last_loc_note;
6314 HOST_WIDE_INT piece_bitpos = 0;
6315 if (last->next)
6317 last = last->next;
6318 gcc_assert (last->next == NULL);
6320 if (bitsize != -1 && GET_CODE (last->loc) == EXPR_LIST)
6322 piece_loc = &last->loc;
6325 HOST_WIDE_INT cur_bitsize = decl_piece_bitsize (*piece_loc);
6326 if (piece_bitpos + cur_bitsize > bitpos)
6327 break;
6328 piece_bitpos += cur_bitsize;
6329 piece_loc = &XEXP (*piece_loc, 1);
6331 while (*piece_loc);
6333 /* TEMP->LAST here is either pointer to the last but one or
6334 last element in the chained list, LAST is pointer to the
6335 last element. */
6336 if (label && strcmp (last->label, label) == 0 && last->view == view)
6338 /* For SRA optimized variables if there weren't any real
6339 insns since last note, just modify the last node. */
6340 if (piece_loc != NULL)
6342 adjust_piece_list (piece_loc, NULL, NULL,
6343 bitpos, piece_bitpos, bitsize, loc_note);
6344 return NULL;
6346 /* If the last note doesn't cover any instructions, remove it. */
6347 if (temp->last != last)
6349 temp->last->next = NULL;
6350 unused = last;
6351 last = temp->last;
6352 gcc_assert (strcmp (last->label, label) != 0 || last->view != view);
6354 else
6356 gcc_assert (temp->first == temp->last
6357 || (temp->first->next == temp->last
6358 && TREE_CODE (decl) == PARM_DECL));
6359 memset (temp->last, '\0', sizeof (*temp->last));
6360 temp->last->loc = construct_piece_list (loc_note, bitpos, bitsize);
6361 return temp->last;
6364 if (bitsize == -1 && NOTE_P (last->loc))
6365 last_loc_note = last->loc;
6366 else if (piece_loc != NULL
6367 && *piece_loc != NULL_RTX
6368 && piece_bitpos == bitpos
6369 && decl_piece_bitsize (*piece_loc) == bitsize)
6370 last_loc_note = *decl_piece_varloc_ptr (*piece_loc);
6371 else
6372 last_loc_note = NULL_RTX;
6373 /* If the current location is the same as the end of the list,
6374 and either both or neither of the locations is uninitialized,
6375 we have nothing to do. */
6376 if (last_loc_note == NULL_RTX
6377 || (!rtx_equal_p (NOTE_VAR_LOCATION_LOC (last_loc_note),
6378 NOTE_VAR_LOCATION_LOC (loc_note)))
6379 || ((NOTE_VAR_LOCATION_STATUS (last_loc_note)
6380 != NOTE_VAR_LOCATION_STATUS (loc_note))
6381 && ((NOTE_VAR_LOCATION_STATUS (last_loc_note)
6382 == VAR_INIT_STATUS_UNINITIALIZED)
6383 || (NOTE_VAR_LOCATION_STATUS (loc_note)
6384 == VAR_INIT_STATUS_UNINITIALIZED))))
6386 /* Add LOC to the end of list and update LAST. If the last
6387 element of the list has been removed above, reuse its
6388 memory for the new node, otherwise allocate a new one. */
6389 if (unused)
6391 loc = unused;
6392 memset (loc, '\0', sizeof (*loc));
6394 else
6395 loc = ggc_cleared_alloc<var_loc_node> ();
6396 if (bitsize == -1 || piece_loc == NULL)
6397 loc->loc = construct_piece_list (loc_note, bitpos, bitsize);
6398 else
6399 adjust_piece_list (&loc->loc, &last->loc, piece_loc,
6400 bitpos, piece_bitpos, bitsize, loc_note);
6401 last->next = loc;
6402 /* Ensure TEMP->LAST will point either to the new last but one
6403 element of the chain, or to the last element in it. */
6404 if (last != temp->last)
6405 temp->last = last;
6407 else if (unused)
6408 ggc_free (unused);
6410 else
6412 loc = ggc_cleared_alloc<var_loc_node> ();
6413 temp->first = loc;
6414 temp->last = loc;
6415 loc->loc = construct_piece_list (loc_note, bitpos, bitsize);
6417 return loc;
6420 /* Keep track of the number of spaces used to indent the
6421 output of the debugging routines that print the structure of
6422 the DIE internal representation. */
6423 static int print_indent;
6425 /* Indent the line the number of spaces given by print_indent. */
6427 static inline void
6428 print_spaces (FILE *outfile)
6430 fprintf (outfile, "%*s", print_indent, "");
6433 /* Print a type signature in hex. */
6435 static inline void
6436 print_signature (FILE *outfile, char *sig)
6438 int i;
6440 for (i = 0; i < DWARF_TYPE_SIGNATURE_SIZE; i++)
6441 fprintf (outfile, "%02x", sig[i] & 0xff);
6444 static inline void
6445 print_discr_value (FILE *outfile, dw_discr_value *discr_value)
6447 if (discr_value->pos)
6448 fprintf (outfile, HOST_WIDE_INT_PRINT_UNSIGNED, discr_value->v.sval);
6449 else
6450 fprintf (outfile, HOST_WIDE_INT_PRINT_DEC, discr_value->v.uval);
6453 static void print_loc_descr (dw_loc_descr_ref, FILE *);
6455 /* Print the value associated to the VAL DWARF value node to OUTFILE. If
6456 RECURSE, output location descriptor operations. */
6458 static void
6459 print_dw_val (dw_val_node *val, bool recurse, FILE *outfile)
6461 switch (val->val_class)
6463 case dw_val_class_addr:
6464 fprintf (outfile, "address");
6465 break;
6466 case dw_val_class_offset:
6467 fprintf (outfile, "offset");
6468 break;
6469 case dw_val_class_loc:
6470 fprintf (outfile, "location descriptor");
6471 if (val->v.val_loc == NULL)
6472 fprintf (outfile, " -> <null>\n");
6473 else if (recurse)
6475 fprintf (outfile, ":\n");
6476 print_indent += 4;
6477 print_loc_descr (val->v.val_loc, outfile);
6478 print_indent -= 4;
6480 else
6482 if (flag_dump_noaddr || flag_dump_unnumbered)
6483 fprintf (outfile, " #\n");
6484 else
6485 fprintf (outfile, " (%p)\n", (void *) val->v.val_loc);
6487 break;
6488 case dw_val_class_loc_list:
6489 fprintf (outfile, "location list -> label:%s",
6490 val->v.val_loc_list->ll_symbol);
6491 break;
6492 case dw_val_class_view_list:
6493 val = view_list_to_loc_list_val_node (val);
6494 fprintf (outfile, "location list with views -> labels:%s and %s",
6495 val->v.val_loc_list->ll_symbol,
6496 val->v.val_loc_list->vl_symbol);
6497 break;
6498 case dw_val_class_range_list:
6499 fprintf (outfile, "range list");
6500 break;
6501 case dw_val_class_const:
6502 case dw_val_class_const_implicit:
6503 fprintf (outfile, HOST_WIDE_INT_PRINT_DEC, val->v.val_int);
6504 break;
6505 case dw_val_class_unsigned_const:
6506 case dw_val_class_unsigned_const_implicit:
6507 fprintf (outfile, HOST_WIDE_INT_PRINT_UNSIGNED, val->v.val_unsigned);
6508 break;
6509 case dw_val_class_const_double:
6510 fprintf (outfile, "constant (" HOST_WIDE_INT_PRINT_DEC","\
6511 HOST_WIDE_INT_PRINT_UNSIGNED")",
6512 val->v.val_double.high,
6513 val->v.val_double.low);
6514 break;
6515 case dw_val_class_wide_int:
6517 int i = val->v.val_wide->get_len ();
6518 fprintf (outfile, "constant (");
6519 gcc_assert (i > 0);
6520 if (val->v.val_wide->elt (i - 1) == 0)
6521 fprintf (outfile, "0x");
6522 fprintf (outfile, HOST_WIDE_INT_PRINT_HEX,
6523 val->v.val_wide->elt (--i));
6524 while (--i >= 0)
6525 fprintf (outfile, HOST_WIDE_INT_PRINT_PADDED_HEX,
6526 val->v.val_wide->elt (i));
6527 fprintf (outfile, ")");
6528 break;
6530 case dw_val_class_vec:
6531 fprintf (outfile, "floating-point or vector constant");
6532 break;
6533 case dw_val_class_flag:
6534 fprintf (outfile, "%u", val->v.val_flag);
6535 break;
6536 case dw_val_class_die_ref:
6537 if (val->v.val_die_ref.die != NULL)
6539 dw_die_ref die = val->v.val_die_ref.die;
6541 if (die->comdat_type_p)
6543 fprintf (outfile, "die -> signature: ");
6544 print_signature (outfile,
6545 die->die_id.die_type_node->signature);
6547 else if (die->die_id.die_symbol)
6549 fprintf (outfile, "die -> label: %s", die->die_id.die_symbol);
6550 if (die->with_offset)
6551 fprintf (outfile, " + %ld", die->die_offset);
6553 else
6554 fprintf (outfile, "die -> %ld", die->die_offset);
6555 if (flag_dump_noaddr || flag_dump_unnumbered)
6556 fprintf (outfile, " #");
6557 else
6558 fprintf (outfile, " (%p)", (void *) die);
6560 else
6561 fprintf (outfile, "die -> <null>");
6562 break;
6563 case dw_val_class_vms_delta:
6564 fprintf (outfile, "delta: @slotcount(%s-%s)",
6565 val->v.val_vms_delta.lbl2, val->v.val_vms_delta.lbl1);
6566 break;
6567 case dw_val_class_symview:
6568 fprintf (outfile, "view: %s", val->v.val_symbolic_view);
6569 break;
6570 case dw_val_class_lbl_id:
6571 case dw_val_class_lineptr:
6572 case dw_val_class_macptr:
6573 case dw_val_class_loclistsptr:
6574 case dw_val_class_high_pc:
6575 fprintf (outfile, "label: %s", val->v.val_lbl_id);
6576 break;
6577 case dw_val_class_str:
6578 if (val->v.val_str->str != NULL)
6579 fprintf (outfile, "\"%s\"", val->v.val_str->str);
6580 else
6581 fprintf (outfile, "<null>");
6582 break;
6583 case dw_val_class_file:
6584 case dw_val_class_file_implicit:
6585 fprintf (outfile, "\"%s\" (%d)", val->v.val_file->filename,
6586 val->v.val_file->emitted_number);
6587 break;
6588 case dw_val_class_data8:
6590 int i;
6592 for (i = 0; i < 8; i++)
6593 fprintf (outfile, "%02x", val->v.val_data8[i]);
6594 break;
6596 case dw_val_class_discr_value:
6597 print_discr_value (outfile, &val->v.val_discr_value);
6598 break;
6599 case dw_val_class_discr_list:
6600 for (dw_discr_list_ref node = val->v.val_discr_list;
6601 node != NULL;
6602 node = node->dw_discr_next)
6604 if (node->dw_discr_range)
6606 fprintf (outfile, " .. ");
6607 print_discr_value (outfile, &node->dw_discr_lower_bound);
6608 print_discr_value (outfile, &node->dw_discr_upper_bound);
6610 else
6611 print_discr_value (outfile, &node->dw_discr_lower_bound);
6613 if (node->dw_discr_next != NULL)
6614 fprintf (outfile, " | ");
6616 default:
6617 break;
6621 /* Likewise, for a DIE attribute. */
6623 static void
6624 print_attribute (dw_attr_node *a, bool recurse, FILE *outfile)
6626 print_dw_val (&a->dw_attr_val, recurse, outfile);
6630 /* Print the list of operands in the LOC location description to OUTFILE. This
6631 routine is a debugging aid only. */
6633 static void
6634 print_loc_descr (dw_loc_descr_ref loc, FILE *outfile)
6636 dw_loc_descr_ref l = loc;
6638 if (loc == NULL)
6640 print_spaces (outfile);
6641 fprintf (outfile, "<null>\n");
6642 return;
6645 for (l = loc; l != NULL; l = l->dw_loc_next)
6647 print_spaces (outfile);
6648 if (flag_dump_noaddr || flag_dump_unnumbered)
6649 fprintf (outfile, "#");
6650 else
6651 fprintf (outfile, "(%p)", (void *) l);
6652 fprintf (outfile, " %s",
6653 dwarf_stack_op_name (l->dw_loc_opc));
6654 if (l->dw_loc_oprnd1.val_class != dw_val_class_none)
6656 fprintf (outfile, " ");
6657 print_dw_val (&l->dw_loc_oprnd1, false, outfile);
6659 if (l->dw_loc_oprnd2.val_class != dw_val_class_none)
6661 fprintf (outfile, ", ");
6662 print_dw_val (&l->dw_loc_oprnd2, false, outfile);
6664 fprintf (outfile, "\n");
6668 /* Print the information associated with a given DIE, and its children.
6669 This routine is a debugging aid only. */
6671 static void
6672 print_die (dw_die_ref die, FILE *outfile)
6674 dw_attr_node *a;
6675 dw_die_ref c;
6676 unsigned ix;
6678 print_spaces (outfile);
6679 fprintf (outfile, "DIE %4ld: %s ",
6680 die->die_offset, dwarf_tag_name (die->die_tag));
6681 if (flag_dump_noaddr || flag_dump_unnumbered)
6682 fprintf (outfile, "#\n");
6683 else
6684 fprintf (outfile, "(%p)\n", (void*) die);
6685 print_spaces (outfile);
6686 fprintf (outfile, " abbrev id: %lu", die->die_abbrev);
6687 fprintf (outfile, " offset: %ld", die->die_offset);
6688 fprintf (outfile, " mark: %d\n", die->die_mark);
6690 if (die->comdat_type_p)
6692 print_spaces (outfile);
6693 fprintf (outfile, " signature: ");
6694 print_signature (outfile, die->die_id.die_type_node->signature);
6695 fprintf (outfile, "\n");
6698 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
6700 print_spaces (outfile);
6701 fprintf (outfile, " %s: ", dwarf_attr_name (a->dw_attr));
6703 print_attribute (a, true, outfile);
6704 fprintf (outfile, "\n");
6707 if (die->die_child != NULL)
6709 print_indent += 4;
6710 FOR_EACH_CHILD (die, c, print_die (c, outfile));
6711 print_indent -= 4;
6713 if (print_indent == 0)
6714 fprintf (outfile, "\n");
6717 /* Print the list of operations in the LOC location description. */
6719 DEBUG_FUNCTION void
6720 debug_dwarf_loc_descr (dw_loc_descr_ref loc)
6722 print_loc_descr (loc, stderr);
6725 /* Print the information collected for a given DIE. */
6727 DEBUG_FUNCTION void
6728 debug_dwarf_die (dw_die_ref die)
6730 print_die (die, stderr);
6733 DEBUG_FUNCTION void
6734 debug (die_struct &ref)
6736 print_die (&ref, stderr);
6739 DEBUG_FUNCTION void
6740 debug (die_struct *ptr)
6742 if (ptr)
6743 debug (*ptr);
6744 else
6745 fprintf (stderr, "<nil>\n");
6749 /* Print all DWARF information collected for the compilation unit.
6750 This routine is a debugging aid only. */
6752 DEBUG_FUNCTION void
6753 debug_dwarf (void)
6755 print_indent = 0;
6756 print_die (comp_unit_die (), stderr);
6759 /* Verify the DIE tree structure. */
6761 DEBUG_FUNCTION void
6762 verify_die (dw_die_ref die)
6764 gcc_assert (!die->die_mark);
6765 if (die->die_parent == NULL
6766 && die->die_sib == NULL)
6767 return;
6768 /* Verify the die_sib list is cyclic. */
6769 dw_die_ref x = die;
6772 x->die_mark = 1;
6773 x = x->die_sib;
6775 while (x && !x->die_mark);
6776 gcc_assert (x == die);
6777 x = die;
6780 /* Verify all dies have the same parent. */
6781 gcc_assert (x->die_parent == die->die_parent);
6782 if (x->die_child)
6784 /* Verify the child has the proper parent and recurse. */
6785 gcc_assert (x->die_child->die_parent == x);
6786 verify_die (x->die_child);
6788 x->die_mark = 0;
6789 x = x->die_sib;
6791 while (x && x->die_mark);
6794 /* Sanity checks on DIEs. */
6796 static void
6797 check_die (dw_die_ref die)
6799 unsigned ix;
6800 dw_attr_node *a;
6801 bool inline_found = false;
6802 int n_location = 0, n_low_pc = 0, n_high_pc = 0, n_artificial = 0;
6803 int n_decl_line = 0, n_decl_column = 0, n_decl_file = 0;
6804 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
6806 switch (a->dw_attr)
6808 case DW_AT_inline:
6809 if (a->dw_attr_val.v.val_unsigned)
6810 inline_found = true;
6811 break;
6812 case DW_AT_location:
6813 ++n_location;
6814 break;
6815 case DW_AT_low_pc:
6816 ++n_low_pc;
6817 break;
6818 case DW_AT_high_pc:
6819 ++n_high_pc;
6820 break;
6821 case DW_AT_artificial:
6822 ++n_artificial;
6823 break;
6824 case DW_AT_decl_column:
6825 ++n_decl_column;
6826 break;
6827 case DW_AT_decl_line:
6828 ++n_decl_line;
6829 break;
6830 case DW_AT_decl_file:
6831 ++n_decl_file;
6832 break;
6833 default:
6834 break;
6837 if (n_location > 1 || n_low_pc > 1 || n_high_pc > 1 || n_artificial > 1
6838 || n_decl_column > 1 || n_decl_line > 1 || n_decl_file > 1)
6840 fprintf (stderr, "Duplicate attributes in DIE:\n");
6841 debug_dwarf_die (die);
6842 gcc_unreachable ();
6844 if (inline_found)
6846 /* A debugging information entry that is a member of an abstract
6847 instance tree [that has DW_AT_inline] should not contain any
6848 attributes which describe aspects of the subroutine which vary
6849 between distinct inlined expansions or distinct out-of-line
6850 expansions. */
6851 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
6852 gcc_assert (a->dw_attr != DW_AT_low_pc
6853 && a->dw_attr != DW_AT_high_pc
6854 && a->dw_attr != DW_AT_location
6855 && a->dw_attr != DW_AT_frame_base
6856 && a->dw_attr != DW_AT_call_all_calls
6857 && a->dw_attr != DW_AT_GNU_all_call_sites);
6861 #define CHECKSUM(FOO) md5_process_bytes (&(FOO), sizeof (FOO), ctx)
6862 #define CHECKSUM_BLOCK(FOO, SIZE) md5_process_bytes ((FOO), (SIZE), ctx)
6863 #define CHECKSUM_STRING(FOO) md5_process_bytes ((FOO), strlen (FOO), ctx)
6865 /* Calculate the checksum of a location expression. */
6867 static inline void
6868 loc_checksum (dw_loc_descr_ref loc, struct md5_ctx *ctx)
6870 int tem;
6871 inchash::hash hstate;
6872 hashval_t hash;
6874 tem = (loc->dtprel << 8) | ((unsigned int) loc->dw_loc_opc);
6875 CHECKSUM (tem);
6876 hash_loc_operands (loc, hstate);
6877 hash = hstate.end();
6878 CHECKSUM (hash);
6881 /* Calculate the checksum of an attribute. */
6883 static void
6884 attr_checksum (dw_attr_node *at, struct md5_ctx *ctx, int *mark)
6886 dw_loc_descr_ref loc;
6887 rtx r;
6889 CHECKSUM (at->dw_attr);
6891 /* We don't care that this was compiled with a different compiler
6892 snapshot; if the output is the same, that's what matters. */
6893 if (at->dw_attr == DW_AT_producer)
6894 return;
6896 switch (AT_class (at))
6898 case dw_val_class_const:
6899 case dw_val_class_const_implicit:
6900 CHECKSUM (at->dw_attr_val.v.val_int);
6901 break;
6902 case dw_val_class_unsigned_const:
6903 case dw_val_class_unsigned_const_implicit:
6904 CHECKSUM (at->dw_attr_val.v.val_unsigned);
6905 break;
6906 case dw_val_class_const_double:
6907 CHECKSUM (at->dw_attr_val.v.val_double);
6908 break;
6909 case dw_val_class_wide_int:
6910 CHECKSUM_BLOCK (at->dw_attr_val.v.val_wide->get_val (),
6911 get_full_len (*at->dw_attr_val.v.val_wide)
6912 * HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR);
6913 break;
6914 case dw_val_class_vec:
6915 CHECKSUM_BLOCK (at->dw_attr_val.v.val_vec.array,
6916 (at->dw_attr_val.v.val_vec.length
6917 * at->dw_attr_val.v.val_vec.elt_size));
6918 break;
6919 case dw_val_class_flag:
6920 CHECKSUM (at->dw_attr_val.v.val_flag);
6921 break;
6922 case dw_val_class_str:
6923 CHECKSUM_STRING (AT_string (at));
6924 break;
6926 case dw_val_class_addr:
6927 r = AT_addr (at);
6928 gcc_assert (GET_CODE (r) == SYMBOL_REF);
6929 CHECKSUM_STRING (XSTR (r, 0));
6930 break;
6932 case dw_val_class_offset:
6933 CHECKSUM (at->dw_attr_val.v.val_offset);
6934 break;
6936 case dw_val_class_loc:
6937 for (loc = AT_loc (at); loc; loc = loc->dw_loc_next)
6938 loc_checksum (loc, ctx);
6939 break;
6941 case dw_val_class_die_ref:
6942 die_checksum (AT_ref (at), ctx, mark);
6943 break;
6945 case dw_val_class_fde_ref:
6946 case dw_val_class_vms_delta:
6947 case dw_val_class_symview:
6948 case dw_val_class_lbl_id:
6949 case dw_val_class_lineptr:
6950 case dw_val_class_macptr:
6951 case dw_val_class_loclistsptr:
6952 case dw_val_class_high_pc:
6953 break;
6955 case dw_val_class_file:
6956 case dw_val_class_file_implicit:
6957 CHECKSUM_STRING (AT_file (at)->filename);
6958 break;
6960 case dw_val_class_data8:
6961 CHECKSUM (at->dw_attr_val.v.val_data8);
6962 break;
6964 default:
6965 break;
6969 /* Calculate the checksum of a DIE. */
6971 static void
6972 die_checksum (dw_die_ref die, struct md5_ctx *ctx, int *mark)
6974 dw_die_ref c;
6975 dw_attr_node *a;
6976 unsigned ix;
6978 /* To avoid infinite recursion. */
6979 if (die->die_mark)
6981 CHECKSUM (die->die_mark);
6982 return;
6984 die->die_mark = ++(*mark);
6986 CHECKSUM (die->die_tag);
6988 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
6989 attr_checksum (a, ctx, mark);
6991 FOR_EACH_CHILD (die, c, die_checksum (c, ctx, mark));
6994 #undef CHECKSUM
6995 #undef CHECKSUM_BLOCK
6996 #undef CHECKSUM_STRING
6998 /* For DWARF-4 types, include the trailing NULL when checksumming strings. */
6999 #define CHECKSUM(FOO) md5_process_bytes (&(FOO), sizeof (FOO), ctx)
7000 #define CHECKSUM_BLOCK(FOO, SIZE) md5_process_bytes ((FOO), (SIZE), ctx)
7001 #define CHECKSUM_STRING(FOO) md5_process_bytes ((FOO), strlen (FOO) + 1, ctx)
7002 #define CHECKSUM_SLEB128(FOO) checksum_sleb128 ((FOO), ctx)
7003 #define CHECKSUM_ULEB128(FOO) checksum_uleb128 ((FOO), ctx)
7004 #define CHECKSUM_ATTR(FOO) \
7005 if (FOO) attr_checksum_ordered (die->die_tag, (FOO), ctx, mark)
7007 /* Calculate the checksum of a number in signed LEB128 format. */
7009 static void
7010 checksum_sleb128 (HOST_WIDE_INT value, struct md5_ctx *ctx)
7012 unsigned char byte;
7013 bool more;
7015 while (1)
7017 byte = (value & 0x7f);
7018 value >>= 7;
7019 more = !((value == 0 && (byte & 0x40) == 0)
7020 || (value == -1 && (byte & 0x40) != 0));
7021 if (more)
7022 byte |= 0x80;
7023 CHECKSUM (byte);
7024 if (!more)
7025 break;
7029 /* Calculate the checksum of a number in unsigned LEB128 format. */
7031 static void
7032 checksum_uleb128 (unsigned HOST_WIDE_INT value, struct md5_ctx *ctx)
7034 while (1)
7036 unsigned char byte = (value & 0x7f);
7037 value >>= 7;
7038 if (value != 0)
7039 /* More bytes to follow. */
7040 byte |= 0x80;
7041 CHECKSUM (byte);
7042 if (value == 0)
7043 break;
7047 /* Checksum the context of the DIE. This adds the names of any
7048 surrounding namespaces or structures to the checksum. */
7050 static void
7051 checksum_die_context (dw_die_ref die, struct md5_ctx *ctx)
7053 const char *name;
7054 dw_die_ref spec;
7055 int tag = die->die_tag;
7057 if (tag != DW_TAG_namespace
7058 && tag != DW_TAG_structure_type
7059 && tag != DW_TAG_class_type)
7060 return;
7062 name = get_AT_string (die, DW_AT_name);
7064 spec = get_AT_ref (die, DW_AT_specification);
7065 if (spec != NULL)
7066 die = spec;
7068 if (die->die_parent != NULL)
7069 checksum_die_context (die->die_parent, ctx);
7071 CHECKSUM_ULEB128 ('C');
7072 CHECKSUM_ULEB128 (tag);
7073 if (name != NULL)
7074 CHECKSUM_STRING (name);
7077 /* Calculate the checksum of a location expression. */
7079 static inline void
7080 loc_checksum_ordered (dw_loc_descr_ref loc, struct md5_ctx *ctx)
7082 /* Special case for lone DW_OP_plus_uconst: checksum as if the location
7083 were emitted as a DW_FORM_sdata instead of a location expression. */
7084 if (loc->dw_loc_opc == DW_OP_plus_uconst && loc->dw_loc_next == NULL)
7086 CHECKSUM_ULEB128 (DW_FORM_sdata);
7087 CHECKSUM_SLEB128 ((HOST_WIDE_INT) loc->dw_loc_oprnd1.v.val_unsigned);
7088 return;
7091 /* Otherwise, just checksum the raw location expression. */
7092 while (loc != NULL)
7094 inchash::hash hstate;
7095 hashval_t hash;
7097 CHECKSUM_ULEB128 (loc->dtprel);
7098 CHECKSUM_ULEB128 (loc->dw_loc_opc);
7099 hash_loc_operands (loc, hstate);
7100 hash = hstate.end ();
7101 CHECKSUM (hash);
7102 loc = loc->dw_loc_next;
7106 /* Calculate the checksum of an attribute. */
7108 static void
7109 attr_checksum_ordered (enum dwarf_tag tag, dw_attr_node *at,
7110 struct md5_ctx *ctx, int *mark)
7112 dw_loc_descr_ref loc;
7113 rtx r;
7115 if (AT_class (at) == dw_val_class_die_ref)
7117 dw_die_ref target_die = AT_ref (at);
7119 /* For pointer and reference types, we checksum only the (qualified)
7120 name of the target type (if there is a name). For friend entries,
7121 we checksum only the (qualified) name of the target type or function.
7122 This allows the checksum to remain the same whether the target type
7123 is complete or not. */
7124 if ((at->dw_attr == DW_AT_type
7125 && (tag == DW_TAG_pointer_type
7126 || tag == DW_TAG_reference_type
7127 || tag == DW_TAG_rvalue_reference_type
7128 || tag == DW_TAG_ptr_to_member_type))
7129 || (at->dw_attr == DW_AT_friend
7130 && tag == DW_TAG_friend))
7132 dw_attr_node *name_attr = get_AT (target_die, DW_AT_name);
7134 if (name_attr != NULL)
7136 dw_die_ref decl = get_AT_ref (target_die, DW_AT_specification);
7138 if (decl == NULL)
7139 decl = target_die;
7140 CHECKSUM_ULEB128 ('N');
7141 CHECKSUM_ULEB128 (at->dw_attr);
7142 if (decl->die_parent != NULL)
7143 checksum_die_context (decl->die_parent, ctx);
7144 CHECKSUM_ULEB128 ('E');
7145 CHECKSUM_STRING (AT_string (name_attr));
7146 return;
7150 /* For all other references to another DIE, we check to see if the
7151 target DIE has already been visited. If it has, we emit a
7152 backward reference; if not, we descend recursively. */
7153 if (target_die->die_mark > 0)
7155 CHECKSUM_ULEB128 ('R');
7156 CHECKSUM_ULEB128 (at->dw_attr);
7157 CHECKSUM_ULEB128 (target_die->die_mark);
7159 else
7161 dw_die_ref decl = get_AT_ref (target_die, DW_AT_specification);
7163 if (decl == NULL)
7164 decl = target_die;
7165 target_die->die_mark = ++(*mark);
7166 CHECKSUM_ULEB128 ('T');
7167 CHECKSUM_ULEB128 (at->dw_attr);
7168 if (decl->die_parent != NULL)
7169 checksum_die_context (decl->die_parent, ctx);
7170 die_checksum_ordered (target_die, ctx, mark);
7172 return;
7175 CHECKSUM_ULEB128 ('A');
7176 CHECKSUM_ULEB128 (at->dw_attr);
7178 switch (AT_class (at))
7180 case dw_val_class_const:
7181 case dw_val_class_const_implicit:
7182 CHECKSUM_ULEB128 (DW_FORM_sdata);
7183 CHECKSUM_SLEB128 (at->dw_attr_val.v.val_int);
7184 break;
7186 case dw_val_class_unsigned_const:
7187 case dw_val_class_unsigned_const_implicit:
7188 CHECKSUM_ULEB128 (DW_FORM_sdata);
7189 CHECKSUM_SLEB128 ((int) at->dw_attr_val.v.val_unsigned);
7190 break;
7192 case dw_val_class_const_double:
7193 CHECKSUM_ULEB128 (DW_FORM_block);
7194 CHECKSUM_ULEB128 (sizeof (at->dw_attr_val.v.val_double));
7195 CHECKSUM (at->dw_attr_val.v.val_double);
7196 break;
7198 case dw_val_class_wide_int:
7199 CHECKSUM_ULEB128 (DW_FORM_block);
7200 CHECKSUM_ULEB128 (get_full_len (*at->dw_attr_val.v.val_wide)
7201 * HOST_BITS_PER_WIDE_INT / BITS_PER_UNIT);
7202 CHECKSUM_BLOCK (at->dw_attr_val.v.val_wide->get_val (),
7203 get_full_len (*at->dw_attr_val.v.val_wide)
7204 * HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR);
7205 break;
7207 case dw_val_class_vec:
7208 CHECKSUM_ULEB128 (DW_FORM_block);
7209 CHECKSUM_ULEB128 (at->dw_attr_val.v.val_vec.length
7210 * at->dw_attr_val.v.val_vec.elt_size);
7211 CHECKSUM_BLOCK (at->dw_attr_val.v.val_vec.array,
7212 (at->dw_attr_val.v.val_vec.length
7213 * at->dw_attr_val.v.val_vec.elt_size));
7214 break;
7216 case dw_val_class_flag:
7217 CHECKSUM_ULEB128 (DW_FORM_flag);
7218 CHECKSUM_ULEB128 (at->dw_attr_val.v.val_flag ? 1 : 0);
7219 break;
7221 case dw_val_class_str:
7222 CHECKSUM_ULEB128 (DW_FORM_string);
7223 CHECKSUM_STRING (AT_string (at));
7224 break;
7226 case dw_val_class_addr:
7227 r = AT_addr (at);
7228 gcc_assert (GET_CODE (r) == SYMBOL_REF);
7229 CHECKSUM_ULEB128 (DW_FORM_string);
7230 CHECKSUM_STRING (XSTR (r, 0));
7231 break;
7233 case dw_val_class_offset:
7234 CHECKSUM_ULEB128 (DW_FORM_sdata);
7235 CHECKSUM_ULEB128 (at->dw_attr_val.v.val_offset);
7236 break;
7238 case dw_val_class_loc:
7239 for (loc = AT_loc (at); loc; loc = loc->dw_loc_next)
7240 loc_checksum_ordered (loc, ctx);
7241 break;
7243 case dw_val_class_fde_ref:
7244 case dw_val_class_symview:
7245 case dw_val_class_lbl_id:
7246 case dw_val_class_lineptr:
7247 case dw_val_class_macptr:
7248 case dw_val_class_loclistsptr:
7249 case dw_val_class_high_pc:
7250 break;
7252 case dw_val_class_file:
7253 case dw_val_class_file_implicit:
7254 CHECKSUM_ULEB128 (DW_FORM_string);
7255 CHECKSUM_STRING (AT_file (at)->filename);
7256 break;
7258 case dw_val_class_data8:
7259 CHECKSUM (at->dw_attr_val.v.val_data8);
7260 break;
7262 default:
7263 break;
7267 struct checksum_attributes
7269 dw_attr_node *at_name;
7270 dw_attr_node *at_type;
7271 dw_attr_node *at_friend;
7272 dw_attr_node *at_accessibility;
7273 dw_attr_node *at_address_class;
7274 dw_attr_node *at_alignment;
7275 dw_attr_node *at_allocated;
7276 dw_attr_node *at_artificial;
7277 dw_attr_node *at_associated;
7278 dw_attr_node *at_binary_scale;
7279 dw_attr_node *at_bit_offset;
7280 dw_attr_node *at_bit_size;
7281 dw_attr_node *at_bit_stride;
7282 dw_attr_node *at_byte_size;
7283 dw_attr_node *at_byte_stride;
7284 dw_attr_node *at_const_value;
7285 dw_attr_node *at_containing_type;
7286 dw_attr_node *at_count;
7287 dw_attr_node *at_data_location;
7288 dw_attr_node *at_data_member_location;
7289 dw_attr_node *at_decimal_scale;
7290 dw_attr_node *at_decimal_sign;
7291 dw_attr_node *at_default_value;
7292 dw_attr_node *at_digit_count;
7293 dw_attr_node *at_discr;
7294 dw_attr_node *at_discr_list;
7295 dw_attr_node *at_discr_value;
7296 dw_attr_node *at_encoding;
7297 dw_attr_node *at_endianity;
7298 dw_attr_node *at_explicit;
7299 dw_attr_node *at_is_optional;
7300 dw_attr_node *at_location;
7301 dw_attr_node *at_lower_bound;
7302 dw_attr_node *at_mutable;
7303 dw_attr_node *at_ordering;
7304 dw_attr_node *at_picture_string;
7305 dw_attr_node *at_prototyped;
7306 dw_attr_node *at_small;
7307 dw_attr_node *at_segment;
7308 dw_attr_node *at_string_length;
7309 dw_attr_node *at_string_length_bit_size;
7310 dw_attr_node *at_string_length_byte_size;
7311 dw_attr_node *at_threads_scaled;
7312 dw_attr_node *at_upper_bound;
7313 dw_attr_node *at_use_location;
7314 dw_attr_node *at_use_UTF8;
7315 dw_attr_node *at_variable_parameter;
7316 dw_attr_node *at_virtuality;
7317 dw_attr_node *at_visibility;
7318 dw_attr_node *at_vtable_elem_location;
7321 /* Collect the attributes that we will want to use for the checksum. */
7323 static void
7324 collect_checksum_attributes (struct checksum_attributes *attrs, dw_die_ref die)
7326 dw_attr_node *a;
7327 unsigned ix;
7329 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
7331 switch (a->dw_attr)
7333 case DW_AT_name:
7334 attrs->at_name = a;
7335 break;
7336 case DW_AT_type:
7337 attrs->at_type = a;
7338 break;
7339 case DW_AT_friend:
7340 attrs->at_friend = a;
7341 break;
7342 case DW_AT_accessibility:
7343 attrs->at_accessibility = a;
7344 break;
7345 case DW_AT_address_class:
7346 attrs->at_address_class = a;
7347 break;
7348 case DW_AT_alignment:
7349 attrs->at_alignment = a;
7350 break;
7351 case DW_AT_allocated:
7352 attrs->at_allocated = a;
7353 break;
7354 case DW_AT_artificial:
7355 attrs->at_artificial = a;
7356 break;
7357 case DW_AT_associated:
7358 attrs->at_associated = a;
7359 break;
7360 case DW_AT_binary_scale:
7361 attrs->at_binary_scale = a;
7362 break;
7363 case DW_AT_bit_offset:
7364 attrs->at_bit_offset = a;
7365 break;
7366 case DW_AT_bit_size:
7367 attrs->at_bit_size = a;
7368 break;
7369 case DW_AT_bit_stride:
7370 attrs->at_bit_stride = a;
7371 break;
7372 case DW_AT_byte_size:
7373 attrs->at_byte_size = a;
7374 break;
7375 case DW_AT_byte_stride:
7376 attrs->at_byte_stride = a;
7377 break;
7378 case DW_AT_const_value:
7379 attrs->at_const_value = a;
7380 break;
7381 case DW_AT_containing_type:
7382 attrs->at_containing_type = a;
7383 break;
7384 case DW_AT_count:
7385 attrs->at_count = a;
7386 break;
7387 case DW_AT_data_location:
7388 attrs->at_data_location = a;
7389 break;
7390 case DW_AT_data_member_location:
7391 attrs->at_data_member_location = a;
7392 break;
7393 case DW_AT_decimal_scale:
7394 attrs->at_decimal_scale = a;
7395 break;
7396 case DW_AT_decimal_sign:
7397 attrs->at_decimal_sign = a;
7398 break;
7399 case DW_AT_default_value:
7400 attrs->at_default_value = a;
7401 break;
7402 case DW_AT_digit_count:
7403 attrs->at_digit_count = a;
7404 break;
7405 case DW_AT_discr:
7406 attrs->at_discr = a;
7407 break;
7408 case DW_AT_discr_list:
7409 attrs->at_discr_list = a;
7410 break;
7411 case DW_AT_discr_value:
7412 attrs->at_discr_value = a;
7413 break;
7414 case DW_AT_encoding:
7415 attrs->at_encoding = a;
7416 break;
7417 case DW_AT_endianity:
7418 attrs->at_endianity = a;
7419 break;
7420 case DW_AT_explicit:
7421 attrs->at_explicit = a;
7422 break;
7423 case DW_AT_is_optional:
7424 attrs->at_is_optional = a;
7425 break;
7426 case DW_AT_location:
7427 attrs->at_location = a;
7428 break;
7429 case DW_AT_lower_bound:
7430 attrs->at_lower_bound = a;
7431 break;
7432 case DW_AT_mutable:
7433 attrs->at_mutable = a;
7434 break;
7435 case DW_AT_ordering:
7436 attrs->at_ordering = a;
7437 break;
7438 case DW_AT_picture_string:
7439 attrs->at_picture_string = a;
7440 break;
7441 case DW_AT_prototyped:
7442 attrs->at_prototyped = a;
7443 break;
7444 case DW_AT_small:
7445 attrs->at_small = a;
7446 break;
7447 case DW_AT_segment:
7448 attrs->at_segment = a;
7449 break;
7450 case DW_AT_string_length:
7451 attrs->at_string_length = a;
7452 break;
7453 case DW_AT_string_length_bit_size:
7454 attrs->at_string_length_bit_size = a;
7455 break;
7456 case DW_AT_string_length_byte_size:
7457 attrs->at_string_length_byte_size = a;
7458 break;
7459 case DW_AT_threads_scaled:
7460 attrs->at_threads_scaled = a;
7461 break;
7462 case DW_AT_upper_bound:
7463 attrs->at_upper_bound = a;
7464 break;
7465 case DW_AT_use_location:
7466 attrs->at_use_location = a;
7467 break;
7468 case DW_AT_use_UTF8:
7469 attrs->at_use_UTF8 = a;
7470 break;
7471 case DW_AT_variable_parameter:
7472 attrs->at_variable_parameter = a;
7473 break;
7474 case DW_AT_virtuality:
7475 attrs->at_virtuality = a;
7476 break;
7477 case DW_AT_visibility:
7478 attrs->at_visibility = a;
7479 break;
7480 case DW_AT_vtable_elem_location:
7481 attrs->at_vtable_elem_location = a;
7482 break;
7483 default:
7484 break;
7489 /* Calculate the checksum of a DIE, using an ordered subset of attributes. */
7491 static void
7492 die_checksum_ordered (dw_die_ref die, struct md5_ctx *ctx, int *mark)
7494 dw_die_ref c;
7495 dw_die_ref decl;
7496 struct checksum_attributes attrs;
7498 CHECKSUM_ULEB128 ('D');
7499 CHECKSUM_ULEB128 (die->die_tag);
7501 memset (&attrs, 0, sizeof (attrs));
7503 decl = get_AT_ref (die, DW_AT_specification);
7504 if (decl != NULL)
7505 collect_checksum_attributes (&attrs, decl);
7506 collect_checksum_attributes (&attrs, die);
7508 CHECKSUM_ATTR (attrs.at_name);
7509 CHECKSUM_ATTR (attrs.at_accessibility);
7510 CHECKSUM_ATTR (attrs.at_address_class);
7511 CHECKSUM_ATTR (attrs.at_allocated);
7512 CHECKSUM_ATTR (attrs.at_artificial);
7513 CHECKSUM_ATTR (attrs.at_associated);
7514 CHECKSUM_ATTR (attrs.at_binary_scale);
7515 CHECKSUM_ATTR (attrs.at_bit_offset);
7516 CHECKSUM_ATTR (attrs.at_bit_size);
7517 CHECKSUM_ATTR (attrs.at_bit_stride);
7518 CHECKSUM_ATTR (attrs.at_byte_size);
7519 CHECKSUM_ATTR (attrs.at_byte_stride);
7520 CHECKSUM_ATTR (attrs.at_const_value);
7521 CHECKSUM_ATTR (attrs.at_containing_type);
7522 CHECKSUM_ATTR (attrs.at_count);
7523 CHECKSUM_ATTR (attrs.at_data_location);
7524 CHECKSUM_ATTR (attrs.at_data_member_location);
7525 CHECKSUM_ATTR (attrs.at_decimal_scale);
7526 CHECKSUM_ATTR (attrs.at_decimal_sign);
7527 CHECKSUM_ATTR (attrs.at_default_value);
7528 CHECKSUM_ATTR (attrs.at_digit_count);
7529 CHECKSUM_ATTR (attrs.at_discr);
7530 CHECKSUM_ATTR (attrs.at_discr_list);
7531 CHECKSUM_ATTR (attrs.at_discr_value);
7532 CHECKSUM_ATTR (attrs.at_encoding);
7533 CHECKSUM_ATTR (attrs.at_endianity);
7534 CHECKSUM_ATTR (attrs.at_explicit);
7535 CHECKSUM_ATTR (attrs.at_is_optional);
7536 CHECKSUM_ATTR (attrs.at_location);
7537 CHECKSUM_ATTR (attrs.at_lower_bound);
7538 CHECKSUM_ATTR (attrs.at_mutable);
7539 CHECKSUM_ATTR (attrs.at_ordering);
7540 CHECKSUM_ATTR (attrs.at_picture_string);
7541 CHECKSUM_ATTR (attrs.at_prototyped);
7542 CHECKSUM_ATTR (attrs.at_small);
7543 CHECKSUM_ATTR (attrs.at_segment);
7544 CHECKSUM_ATTR (attrs.at_string_length);
7545 CHECKSUM_ATTR (attrs.at_string_length_bit_size);
7546 CHECKSUM_ATTR (attrs.at_string_length_byte_size);
7547 CHECKSUM_ATTR (attrs.at_threads_scaled);
7548 CHECKSUM_ATTR (attrs.at_upper_bound);
7549 CHECKSUM_ATTR (attrs.at_use_location);
7550 CHECKSUM_ATTR (attrs.at_use_UTF8);
7551 CHECKSUM_ATTR (attrs.at_variable_parameter);
7552 CHECKSUM_ATTR (attrs.at_virtuality);
7553 CHECKSUM_ATTR (attrs.at_visibility);
7554 CHECKSUM_ATTR (attrs.at_vtable_elem_location);
7555 CHECKSUM_ATTR (attrs.at_type);
7556 CHECKSUM_ATTR (attrs.at_friend);
7557 CHECKSUM_ATTR (attrs.at_alignment);
7559 /* Checksum the child DIEs. */
7560 c = die->die_child;
7561 if (c) do {
7562 dw_attr_node *name_attr;
7564 c = c->die_sib;
7565 name_attr = get_AT (c, DW_AT_name);
7566 if (is_template_instantiation (c))
7568 /* Ignore instantiations of member type and function templates. */
7570 else if (name_attr != NULL
7571 && (is_type_die (c) || c->die_tag == DW_TAG_subprogram))
7573 /* Use a shallow checksum for named nested types and member
7574 functions. */
7575 CHECKSUM_ULEB128 ('S');
7576 CHECKSUM_ULEB128 (c->die_tag);
7577 CHECKSUM_STRING (AT_string (name_attr));
7579 else
7581 /* Use a deep checksum for other children. */
7582 /* Mark this DIE so it gets processed when unmarking. */
7583 if (c->die_mark == 0)
7584 c->die_mark = -1;
7585 die_checksum_ordered (c, ctx, mark);
7587 } while (c != die->die_child);
7589 CHECKSUM_ULEB128 (0);
7592 /* Add a type name and tag to a hash. */
7593 static void
7594 die_odr_checksum (int tag, const char *name, md5_ctx *ctx)
7596 CHECKSUM_ULEB128 (tag);
7597 CHECKSUM_STRING (name);
7600 #undef CHECKSUM
7601 #undef CHECKSUM_STRING
7602 #undef CHECKSUM_ATTR
7603 #undef CHECKSUM_LEB128
7604 #undef CHECKSUM_ULEB128
7606 /* Generate the type signature for DIE. This is computed by generating an
7607 MD5 checksum over the DIE's tag, its relevant attributes, and its
7608 children. Attributes that are references to other DIEs are processed
7609 by recursion, using the MARK field to prevent infinite recursion.
7610 If the DIE is nested inside a namespace or another type, we also
7611 need to include that context in the signature. The lower 64 bits
7612 of the resulting MD5 checksum comprise the signature. */
7614 static void
7615 generate_type_signature (dw_die_ref die, comdat_type_node *type_node)
7617 int mark;
7618 const char *name;
7619 unsigned char checksum[16];
7620 struct md5_ctx ctx;
7621 dw_die_ref decl;
7622 dw_die_ref parent;
7624 name = get_AT_string (die, DW_AT_name);
7625 decl = get_AT_ref (die, DW_AT_specification);
7626 parent = get_die_parent (die);
7628 /* First, compute a signature for just the type name (and its surrounding
7629 context, if any. This is stored in the type unit DIE for link-time
7630 ODR (one-definition rule) checking. */
7632 if (is_cxx () && name != NULL)
7634 md5_init_ctx (&ctx);
7636 /* Checksum the names of surrounding namespaces and structures. */
7637 if (parent != NULL)
7638 checksum_die_context (parent, &ctx);
7640 /* Checksum the current DIE. */
7641 die_odr_checksum (die->die_tag, name, &ctx);
7642 md5_finish_ctx (&ctx, checksum);
7644 add_AT_data8 (type_node->root_die, DW_AT_GNU_odr_signature, &checksum[8]);
7647 /* Next, compute the complete type signature. */
7649 md5_init_ctx (&ctx);
7650 mark = 1;
7651 die->die_mark = mark;
7653 /* Checksum the names of surrounding namespaces and structures. */
7654 if (parent != NULL)
7655 checksum_die_context (parent, &ctx);
7657 /* Checksum the DIE and its children. */
7658 die_checksum_ordered (die, &ctx, &mark);
7659 unmark_all_dies (die);
7660 md5_finish_ctx (&ctx, checksum);
7662 /* Store the signature in the type node and link the type DIE and the
7663 type node together. */
7664 memcpy (type_node->signature, &checksum[16 - DWARF_TYPE_SIGNATURE_SIZE],
7665 DWARF_TYPE_SIGNATURE_SIZE);
7666 die->comdat_type_p = true;
7667 die->die_id.die_type_node = type_node;
7668 type_node->type_die = die;
7670 /* If the DIE is a specification, link its declaration to the type node
7671 as well. */
7672 if (decl != NULL)
7674 decl->comdat_type_p = true;
7675 decl->die_id.die_type_node = type_node;
7679 /* Do the location expressions look same? */
7680 static inline int
7681 same_loc_p (dw_loc_descr_ref loc1, dw_loc_descr_ref loc2, int *mark)
7683 return loc1->dw_loc_opc == loc2->dw_loc_opc
7684 && same_dw_val_p (&loc1->dw_loc_oprnd1, &loc2->dw_loc_oprnd1, mark)
7685 && same_dw_val_p (&loc1->dw_loc_oprnd2, &loc2->dw_loc_oprnd2, mark);
7688 /* Do the values look the same? */
7689 static int
7690 same_dw_val_p (const dw_val_node *v1, const dw_val_node *v2, int *mark)
7692 dw_loc_descr_ref loc1, loc2;
7693 rtx r1, r2;
7695 if (v1->val_class != v2->val_class)
7696 return 0;
7698 switch (v1->val_class)
7700 case dw_val_class_const:
7701 case dw_val_class_const_implicit:
7702 return v1->v.val_int == v2->v.val_int;
7703 case dw_val_class_unsigned_const:
7704 case dw_val_class_unsigned_const_implicit:
7705 return v1->v.val_unsigned == v2->v.val_unsigned;
7706 case dw_val_class_const_double:
7707 return v1->v.val_double.high == v2->v.val_double.high
7708 && v1->v.val_double.low == v2->v.val_double.low;
7709 case dw_val_class_wide_int:
7710 return *v1->v.val_wide == *v2->v.val_wide;
7711 case dw_val_class_vec:
7712 if (v1->v.val_vec.length != v2->v.val_vec.length
7713 || v1->v.val_vec.elt_size != v2->v.val_vec.elt_size)
7714 return 0;
7715 if (memcmp (v1->v.val_vec.array, v2->v.val_vec.array,
7716 v1->v.val_vec.length * v1->v.val_vec.elt_size))
7717 return 0;
7718 return 1;
7719 case dw_val_class_flag:
7720 return v1->v.val_flag == v2->v.val_flag;
7721 case dw_val_class_str:
7722 return !strcmp (v1->v.val_str->str, v2->v.val_str->str);
7724 case dw_val_class_addr:
7725 r1 = v1->v.val_addr;
7726 r2 = v2->v.val_addr;
7727 if (GET_CODE (r1) != GET_CODE (r2))
7728 return 0;
7729 return !rtx_equal_p (r1, r2);
7731 case dw_val_class_offset:
7732 return v1->v.val_offset == v2->v.val_offset;
7734 case dw_val_class_loc:
7735 for (loc1 = v1->v.val_loc, loc2 = v2->v.val_loc;
7736 loc1 && loc2;
7737 loc1 = loc1->dw_loc_next, loc2 = loc2->dw_loc_next)
7738 if (!same_loc_p (loc1, loc2, mark))
7739 return 0;
7740 return !loc1 && !loc2;
7742 case dw_val_class_die_ref:
7743 return same_die_p (v1->v.val_die_ref.die, v2->v.val_die_ref.die, mark);
7745 case dw_val_class_symview:
7746 return strcmp (v1->v.val_symbolic_view, v2->v.val_symbolic_view) == 0;
7748 case dw_val_class_fde_ref:
7749 case dw_val_class_vms_delta:
7750 case dw_val_class_lbl_id:
7751 case dw_val_class_lineptr:
7752 case dw_val_class_macptr:
7753 case dw_val_class_loclistsptr:
7754 case dw_val_class_high_pc:
7755 return 1;
7757 case dw_val_class_file:
7758 case dw_val_class_file_implicit:
7759 return v1->v.val_file == v2->v.val_file;
7761 case dw_val_class_data8:
7762 return !memcmp (v1->v.val_data8, v2->v.val_data8, 8);
7764 default:
7765 return 1;
7769 /* Do the attributes look the same? */
7771 static int
7772 same_attr_p (dw_attr_node *at1, dw_attr_node *at2, int *mark)
7774 if (at1->dw_attr != at2->dw_attr)
7775 return 0;
7777 /* We don't care that this was compiled with a different compiler
7778 snapshot; if the output is the same, that's what matters. */
7779 if (at1->dw_attr == DW_AT_producer)
7780 return 1;
7782 return same_dw_val_p (&at1->dw_attr_val, &at2->dw_attr_val, mark);
7785 /* Do the dies look the same? */
7787 static int
7788 same_die_p (dw_die_ref die1, dw_die_ref die2, int *mark)
7790 dw_die_ref c1, c2;
7791 dw_attr_node *a1;
7792 unsigned ix;
7794 /* To avoid infinite recursion. */
7795 if (die1->die_mark)
7796 return die1->die_mark == die2->die_mark;
7797 die1->die_mark = die2->die_mark = ++(*mark);
7799 if (die1->die_tag != die2->die_tag)
7800 return 0;
7802 if (vec_safe_length (die1->die_attr) != vec_safe_length (die2->die_attr))
7803 return 0;
7805 FOR_EACH_VEC_SAFE_ELT (die1->die_attr, ix, a1)
7806 if (!same_attr_p (a1, &(*die2->die_attr)[ix], mark))
7807 return 0;
7809 c1 = die1->die_child;
7810 c2 = die2->die_child;
7811 if (! c1)
7813 if (c2)
7814 return 0;
7816 else
7817 for (;;)
7819 if (!same_die_p (c1, c2, mark))
7820 return 0;
7821 c1 = c1->die_sib;
7822 c2 = c2->die_sib;
7823 if (c1 == die1->die_child)
7825 if (c2 == die2->die_child)
7826 break;
7827 else
7828 return 0;
7832 return 1;
7835 /* Calculate the MD5 checksum of the compilation unit DIE UNIT_DIE and its
7836 children, and set die_symbol. */
7838 static void
7839 compute_comp_unit_symbol (dw_die_ref unit_die)
7841 const char *die_name = get_AT_string (unit_die, DW_AT_name);
7842 const char *base = die_name ? lbasename (die_name) : "anonymous";
7843 char *name = XALLOCAVEC (char, strlen (base) + 64);
7844 char *p;
7845 int i, mark;
7846 unsigned char checksum[16];
7847 struct md5_ctx ctx;
7849 /* Compute the checksum of the DIE, then append part of it as hex digits to
7850 the name filename of the unit. */
7852 md5_init_ctx (&ctx);
7853 mark = 0;
7854 die_checksum (unit_die, &ctx, &mark);
7855 unmark_all_dies (unit_die);
7856 md5_finish_ctx (&ctx, checksum);
7858 /* When we this for comp_unit_die () we have a DW_AT_name that might
7859 not start with a letter but with anything valid for filenames and
7860 clean_symbol_name doesn't fix that up. Prepend 'g' if the first
7861 character is not a letter. */
7862 sprintf (name, "%s%s.", ISALPHA (*base) ? "" : "g", base);
7863 clean_symbol_name (name);
7865 p = name + strlen (name);
7866 for (i = 0; i < 4; i++)
7868 sprintf (p, "%.2x", checksum[i]);
7869 p += 2;
7872 unit_die->die_id.die_symbol = xstrdup (name);
7875 /* Returns nonzero if DIE represents a type, in the sense of TYPE_P. */
7877 static int
7878 is_type_die (dw_die_ref die)
7880 switch (die->die_tag)
7882 case DW_TAG_array_type:
7883 case DW_TAG_class_type:
7884 case DW_TAG_interface_type:
7885 case DW_TAG_enumeration_type:
7886 case DW_TAG_pointer_type:
7887 case DW_TAG_reference_type:
7888 case DW_TAG_rvalue_reference_type:
7889 case DW_TAG_string_type:
7890 case DW_TAG_structure_type:
7891 case DW_TAG_subroutine_type:
7892 case DW_TAG_union_type:
7893 case DW_TAG_ptr_to_member_type:
7894 case DW_TAG_set_type:
7895 case DW_TAG_subrange_type:
7896 case DW_TAG_base_type:
7897 case DW_TAG_const_type:
7898 case DW_TAG_file_type:
7899 case DW_TAG_packed_type:
7900 case DW_TAG_volatile_type:
7901 case DW_TAG_typedef:
7902 return 1;
7903 default:
7904 return 0;
7908 /* Returns true iff C is a compile-unit DIE. */
7910 static inline bool
7911 is_cu_die (dw_die_ref c)
7913 return c && (c->die_tag == DW_TAG_compile_unit
7914 || c->die_tag == DW_TAG_skeleton_unit);
7917 /* Returns true iff C is a unit DIE of some sort. */
7919 static inline bool
7920 is_unit_die (dw_die_ref c)
7922 return c && (c->die_tag == DW_TAG_compile_unit
7923 || c->die_tag == DW_TAG_partial_unit
7924 || c->die_tag == DW_TAG_type_unit
7925 || c->die_tag == DW_TAG_skeleton_unit);
7928 /* Returns true iff C is a namespace DIE. */
7930 static inline bool
7931 is_namespace_die (dw_die_ref c)
7933 return c && c->die_tag == DW_TAG_namespace;
7936 /* Return non-zero if this DIE is a template parameter. */
7938 static inline bool
7939 is_template_parameter (dw_die_ref die)
7941 switch (die->die_tag)
7943 case DW_TAG_template_type_param:
7944 case DW_TAG_template_value_param:
7945 case DW_TAG_GNU_template_template_param:
7946 case DW_TAG_GNU_template_parameter_pack:
7947 return true;
7948 default:
7949 return false;
7953 /* Return non-zero if this DIE represents a template instantiation. */
7955 static inline bool
7956 is_template_instantiation (dw_die_ref die)
7958 dw_die_ref c;
7960 if (!is_type_die (die) && die->die_tag != DW_TAG_subprogram)
7961 return false;
7962 FOR_EACH_CHILD (die, c, if (is_template_parameter (c)) return true);
7963 return false;
7966 static char *
7967 gen_internal_sym (const char *prefix)
7969 char buf[MAX_ARTIFICIAL_LABEL_BYTES];
7971 ASM_GENERATE_INTERNAL_LABEL (buf, prefix, label_num++);
7972 return xstrdup (buf);
7975 /* Return non-zero if this DIE is a declaration. */
7977 static int
7978 is_declaration_die (dw_die_ref die)
7980 dw_attr_node *a;
7981 unsigned ix;
7983 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
7984 if (a->dw_attr == DW_AT_declaration)
7985 return 1;
7987 return 0;
7990 /* Return non-zero if this DIE is nested inside a subprogram. */
7992 static int
7993 is_nested_in_subprogram (dw_die_ref die)
7995 dw_die_ref decl = get_AT_ref (die, DW_AT_specification);
7997 if (decl == NULL)
7998 decl = die;
7999 return local_scope_p (decl);
8002 /* Return non-zero if this DIE contains a defining declaration of a
8003 subprogram. */
8005 static int
8006 contains_subprogram_definition (dw_die_ref die)
8008 dw_die_ref c;
8010 if (die->die_tag == DW_TAG_subprogram && ! is_declaration_die (die))
8011 return 1;
8012 FOR_EACH_CHILD (die, c, if (contains_subprogram_definition (c)) return 1);
8013 return 0;
8016 /* Return non-zero if this is a type DIE that should be moved to a
8017 COMDAT .debug_types section or .debug_info section with DW_UT_*type
8018 unit type. */
8020 static int
8021 should_move_die_to_comdat (dw_die_ref die)
8023 switch (die->die_tag)
8025 case DW_TAG_class_type:
8026 case DW_TAG_structure_type:
8027 case DW_TAG_enumeration_type:
8028 case DW_TAG_union_type:
8029 /* Don't move declarations, inlined instances, types nested in a
8030 subprogram, or types that contain subprogram definitions. */
8031 if (is_declaration_die (die)
8032 || get_AT (die, DW_AT_abstract_origin)
8033 || is_nested_in_subprogram (die)
8034 || contains_subprogram_definition (die))
8035 return 0;
8036 return 1;
8037 case DW_TAG_array_type:
8038 case DW_TAG_interface_type:
8039 case DW_TAG_pointer_type:
8040 case DW_TAG_reference_type:
8041 case DW_TAG_rvalue_reference_type:
8042 case DW_TAG_string_type:
8043 case DW_TAG_subroutine_type:
8044 case DW_TAG_ptr_to_member_type:
8045 case DW_TAG_set_type:
8046 case DW_TAG_subrange_type:
8047 case DW_TAG_base_type:
8048 case DW_TAG_const_type:
8049 case DW_TAG_file_type:
8050 case DW_TAG_packed_type:
8051 case DW_TAG_volatile_type:
8052 case DW_TAG_typedef:
8053 default:
8054 return 0;
8058 /* Make a clone of DIE. */
8060 static dw_die_ref
8061 clone_die (dw_die_ref die)
8063 dw_die_ref clone = new_die_raw (die->die_tag);
8064 dw_attr_node *a;
8065 unsigned ix;
8067 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
8068 add_dwarf_attr (clone, a);
8070 return clone;
8073 /* Make a clone of the tree rooted at DIE. */
8075 static dw_die_ref
8076 clone_tree (dw_die_ref die)
8078 dw_die_ref c;
8079 dw_die_ref clone = clone_die (die);
8081 FOR_EACH_CHILD (die, c, add_child_die (clone, clone_tree (c)));
8083 return clone;
8086 /* Make a clone of DIE as a declaration. */
8088 static dw_die_ref
8089 clone_as_declaration (dw_die_ref die)
8091 dw_die_ref clone;
8092 dw_die_ref decl;
8093 dw_attr_node *a;
8094 unsigned ix;
8096 /* If the DIE is already a declaration, just clone it. */
8097 if (is_declaration_die (die))
8098 return clone_die (die);
8100 /* If the DIE is a specification, just clone its declaration DIE. */
8101 decl = get_AT_ref (die, DW_AT_specification);
8102 if (decl != NULL)
8104 clone = clone_die (decl);
8105 if (die->comdat_type_p)
8106 add_AT_die_ref (clone, DW_AT_signature, die);
8107 return clone;
8110 clone = new_die_raw (die->die_tag);
8112 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
8114 /* We don't want to copy over all attributes.
8115 For example we don't want DW_AT_byte_size because otherwise we will no
8116 longer have a declaration and GDB will treat it as a definition. */
8118 switch (a->dw_attr)
8120 case DW_AT_abstract_origin:
8121 case DW_AT_artificial:
8122 case DW_AT_containing_type:
8123 case DW_AT_external:
8124 case DW_AT_name:
8125 case DW_AT_type:
8126 case DW_AT_virtuality:
8127 case DW_AT_linkage_name:
8128 case DW_AT_MIPS_linkage_name:
8129 add_dwarf_attr (clone, a);
8130 break;
8131 case DW_AT_byte_size:
8132 case DW_AT_alignment:
8133 default:
8134 break;
8138 if (die->comdat_type_p)
8139 add_AT_die_ref (clone, DW_AT_signature, die);
8141 add_AT_flag (clone, DW_AT_declaration, 1);
8142 return clone;
8146 /* Structure to map a DIE in one CU to its copy in a comdat type unit. */
8148 struct decl_table_entry
8150 dw_die_ref orig;
8151 dw_die_ref copy;
8154 /* Helpers to manipulate hash table of copied declarations. */
8156 /* Hashtable helpers. */
8158 struct decl_table_entry_hasher : free_ptr_hash <decl_table_entry>
8160 typedef die_struct *compare_type;
8161 static inline hashval_t hash (const decl_table_entry *);
8162 static inline bool equal (const decl_table_entry *, const die_struct *);
8165 inline hashval_t
8166 decl_table_entry_hasher::hash (const decl_table_entry *entry)
8168 return htab_hash_pointer (entry->orig);
8171 inline bool
8172 decl_table_entry_hasher::equal (const decl_table_entry *entry1,
8173 const die_struct *entry2)
8175 return entry1->orig == entry2;
8178 typedef hash_table<decl_table_entry_hasher> decl_hash_type;
8180 /* Copy DIE and its ancestors, up to, but not including, the compile unit
8181 or type unit entry, to a new tree. Adds the new tree to UNIT and returns
8182 a pointer to the copy of DIE. If DECL_TABLE is provided, it is used
8183 to check if the ancestor has already been copied into UNIT. */
8185 static dw_die_ref
8186 copy_ancestor_tree (dw_die_ref unit, dw_die_ref die,
8187 decl_hash_type *decl_table)
8189 dw_die_ref parent = die->die_parent;
8190 dw_die_ref new_parent = unit;
8191 dw_die_ref copy;
8192 decl_table_entry **slot = NULL;
8193 struct decl_table_entry *entry = NULL;
8195 /* If DIE refers to a stub unfold that so we get the appropriate
8196 DIE registered as orig in decl_table. */
8197 if (dw_die_ref c = get_AT_ref (die, DW_AT_signature))
8198 die = c;
8200 if (decl_table)
8202 /* Check if the entry has already been copied to UNIT. */
8203 slot = decl_table->find_slot_with_hash (die, htab_hash_pointer (die),
8204 INSERT);
8205 if (*slot != HTAB_EMPTY_ENTRY)
8207 entry = *slot;
8208 return entry->copy;
8211 /* Record in DECL_TABLE that DIE has been copied to UNIT. */
8212 entry = XCNEW (struct decl_table_entry);
8213 entry->orig = die;
8214 entry->copy = NULL;
8215 *slot = entry;
8218 if (parent != NULL)
8220 dw_die_ref spec = get_AT_ref (parent, DW_AT_specification);
8221 if (spec != NULL)
8222 parent = spec;
8223 if (!is_unit_die (parent))
8224 new_parent = copy_ancestor_tree (unit, parent, decl_table);
8227 copy = clone_as_declaration (die);
8228 add_child_die (new_parent, copy);
8230 if (decl_table)
8232 /* Record the pointer to the copy. */
8233 entry->copy = copy;
8236 return copy;
8238 /* Copy the declaration context to the new type unit DIE. This includes
8239 any surrounding namespace or type declarations. If the DIE has an
8240 AT_specification attribute, it also includes attributes and children
8241 attached to the specification, and returns a pointer to the original
8242 parent of the declaration DIE. Returns NULL otherwise. */
8244 static dw_die_ref
8245 copy_declaration_context (dw_die_ref unit, dw_die_ref die)
8247 dw_die_ref decl;
8248 dw_die_ref new_decl;
8249 dw_die_ref orig_parent = NULL;
8251 decl = get_AT_ref (die, DW_AT_specification);
8252 if (decl == NULL)
8253 decl = die;
8254 else
8256 unsigned ix;
8257 dw_die_ref c;
8258 dw_attr_node *a;
8260 /* The original DIE will be changed to a declaration, and must
8261 be moved to be a child of the original declaration DIE. */
8262 orig_parent = decl->die_parent;
8264 /* Copy the type node pointer from the new DIE to the original
8265 declaration DIE so we can forward references later. */
8266 decl->comdat_type_p = true;
8267 decl->die_id.die_type_node = die->die_id.die_type_node;
8269 remove_AT (die, DW_AT_specification);
8271 FOR_EACH_VEC_SAFE_ELT (decl->die_attr, ix, a)
8273 if (a->dw_attr != DW_AT_name
8274 && a->dw_attr != DW_AT_declaration
8275 && a->dw_attr != DW_AT_external)
8276 add_dwarf_attr (die, a);
8279 FOR_EACH_CHILD (decl, c, add_child_die (die, clone_tree (c)));
8282 if (decl->die_parent != NULL
8283 && !is_unit_die (decl->die_parent))
8285 new_decl = copy_ancestor_tree (unit, decl, NULL);
8286 if (new_decl != NULL)
8288 remove_AT (new_decl, DW_AT_signature);
8289 add_AT_specification (die, new_decl);
8293 return orig_parent;
8296 /* Generate the skeleton ancestor tree for the given NODE, then clone
8297 the DIE and add the clone into the tree. */
8299 static void
8300 generate_skeleton_ancestor_tree (skeleton_chain_node *node)
8302 if (node->new_die != NULL)
8303 return;
8305 node->new_die = clone_as_declaration (node->old_die);
8307 if (node->parent != NULL)
8309 generate_skeleton_ancestor_tree (node->parent);
8310 add_child_die (node->parent->new_die, node->new_die);
8314 /* Generate a skeleton tree of DIEs containing any declarations that are
8315 found in the original tree. We traverse the tree looking for declaration
8316 DIEs, and construct the skeleton from the bottom up whenever we find one. */
8318 static void
8319 generate_skeleton_bottom_up (skeleton_chain_node *parent)
8321 skeleton_chain_node node;
8322 dw_die_ref c;
8323 dw_die_ref first;
8324 dw_die_ref prev = NULL;
8325 dw_die_ref next = NULL;
8327 node.parent = parent;
8329 first = c = parent->old_die->die_child;
8330 if (c)
8331 next = c->die_sib;
8332 if (c) do {
8333 if (prev == NULL || prev->die_sib == c)
8334 prev = c;
8335 c = next;
8336 next = (c == first ? NULL : c->die_sib);
8337 node.old_die = c;
8338 node.new_die = NULL;
8339 if (is_declaration_die (c))
8341 if (is_template_instantiation (c))
8343 /* Instantiated templates do not need to be cloned into the
8344 type unit. Just move the DIE and its children back to
8345 the skeleton tree (in the main CU). */
8346 remove_child_with_prev (c, prev);
8347 add_child_die (parent->new_die, c);
8348 c = prev;
8350 else if (c->comdat_type_p)
8352 /* This is the skeleton of earlier break_out_comdat_types
8353 type. Clone the existing DIE, but keep the children
8354 under the original (which is in the main CU). */
8355 dw_die_ref clone = clone_die (c);
8357 replace_child (c, clone, prev);
8358 generate_skeleton_ancestor_tree (parent);
8359 add_child_die (parent->new_die, c);
8360 c = clone;
8361 continue;
8363 else
8365 /* Clone the existing DIE, move the original to the skeleton
8366 tree (which is in the main CU), and put the clone, with
8367 all the original's children, where the original came from
8368 (which is about to be moved to the type unit). */
8369 dw_die_ref clone = clone_die (c);
8370 move_all_children (c, clone);
8372 /* If the original has a DW_AT_object_pointer attribute,
8373 it would now point to a child DIE just moved to the
8374 cloned tree, so we need to remove that attribute from
8375 the original. */
8376 remove_AT (c, DW_AT_object_pointer);
8378 replace_child (c, clone, prev);
8379 generate_skeleton_ancestor_tree (parent);
8380 add_child_die (parent->new_die, c);
8381 node.old_die = clone;
8382 node.new_die = c;
8383 c = clone;
8386 generate_skeleton_bottom_up (&node);
8387 } while (next != NULL);
8390 /* Wrapper function for generate_skeleton_bottom_up. */
8392 static dw_die_ref
8393 generate_skeleton (dw_die_ref die)
8395 skeleton_chain_node node;
8397 node.old_die = die;
8398 node.new_die = NULL;
8399 node.parent = NULL;
8401 /* If this type definition is nested inside another type,
8402 and is not an instantiation of a template, always leave
8403 at least a declaration in its place. */
8404 if (die->die_parent != NULL
8405 && is_type_die (die->die_parent)
8406 && !is_template_instantiation (die))
8407 node.new_die = clone_as_declaration (die);
8409 generate_skeleton_bottom_up (&node);
8410 return node.new_die;
8413 /* Remove the CHILD DIE from its parent, possibly replacing it with a cloned
8414 declaration. The original DIE is moved to a new compile unit so that
8415 existing references to it follow it to the new location. If any of the
8416 original DIE's descendants is a declaration, we need to replace the
8417 original DIE with a skeleton tree and move the declarations back into the
8418 skeleton tree. */
8420 static dw_die_ref
8421 remove_child_or_replace_with_skeleton (dw_die_ref unit, dw_die_ref child,
8422 dw_die_ref prev)
8424 dw_die_ref skeleton, orig_parent;
8426 /* Copy the declaration context to the type unit DIE. If the returned
8427 ORIG_PARENT is not NULL, the skeleton needs to be added as a child of
8428 that DIE. */
8429 orig_parent = copy_declaration_context (unit, child);
8431 skeleton = generate_skeleton (child);
8432 if (skeleton == NULL)
8433 remove_child_with_prev (child, prev);
8434 else
8436 skeleton->comdat_type_p = true;
8437 skeleton->die_id.die_type_node = child->die_id.die_type_node;
8439 /* If the original DIE was a specification, we need to put
8440 the skeleton under the parent DIE of the declaration.
8441 This leaves the original declaration in the tree, but
8442 it will be pruned later since there are no longer any
8443 references to it. */
8444 if (orig_parent != NULL)
8446 remove_child_with_prev (child, prev);
8447 add_child_die (orig_parent, skeleton);
8449 else
8450 replace_child (child, skeleton, prev);
8453 return skeleton;
8456 static void
8457 copy_dwarf_procs_ref_in_attrs (dw_die_ref die,
8458 comdat_type_node *type_node,
8459 hash_map<dw_die_ref, dw_die_ref> &copied_dwarf_procs);
8461 /* Helper for copy_dwarf_procs_ref_in_dies. Make a copy of the DIE DWARF
8462 procedure, put it under TYPE_NODE and return the copy. Continue looking for
8463 DWARF procedure references in the DW_AT_location attribute. */
8465 static dw_die_ref
8466 copy_dwarf_procedure (dw_die_ref die,
8467 comdat_type_node *type_node,
8468 hash_map<dw_die_ref, dw_die_ref> &copied_dwarf_procs)
8470 gcc_assert (die->die_tag == DW_TAG_dwarf_procedure);
8472 /* DWARF procedures are not supposed to have children... */
8473 gcc_assert (die->die_child == NULL);
8475 /* ... and they are supposed to have only one attribute: DW_AT_location. */
8476 gcc_assert (vec_safe_length (die->die_attr) == 1
8477 && ((*die->die_attr)[0].dw_attr == DW_AT_location));
8479 /* Do not copy more than once DWARF procedures. */
8480 bool existed;
8481 dw_die_ref &die_copy = copied_dwarf_procs.get_or_insert (die, &existed);
8482 if (existed)
8483 return die_copy;
8485 die_copy = clone_die (die);
8486 add_child_die (type_node->root_die, die_copy);
8487 copy_dwarf_procs_ref_in_attrs (die_copy, type_node, copied_dwarf_procs);
8488 return die_copy;
8491 /* Helper for copy_dwarf_procs_ref_in_dies. Look for references to DWARF
8492 procedures in DIE's attributes. */
8494 static void
8495 copy_dwarf_procs_ref_in_attrs (dw_die_ref die,
8496 comdat_type_node *type_node,
8497 hash_map<dw_die_ref, dw_die_ref> &copied_dwarf_procs)
8499 dw_attr_node *a;
8500 unsigned i;
8502 FOR_EACH_VEC_SAFE_ELT (die->die_attr, i, a)
8504 dw_loc_descr_ref loc;
8506 if (a->dw_attr_val.val_class != dw_val_class_loc)
8507 continue;
8509 for (loc = a->dw_attr_val.v.val_loc; loc != NULL; loc = loc->dw_loc_next)
8511 switch (loc->dw_loc_opc)
8513 case DW_OP_call2:
8514 case DW_OP_call4:
8515 case DW_OP_call_ref:
8516 gcc_assert (loc->dw_loc_oprnd1.val_class
8517 == dw_val_class_die_ref);
8518 loc->dw_loc_oprnd1.v.val_die_ref.die
8519 = copy_dwarf_procedure (loc->dw_loc_oprnd1.v.val_die_ref.die,
8520 type_node,
8521 copied_dwarf_procs);
8523 default:
8524 break;
8530 /* Copy DWARF procedures that are referenced by the DIE tree to TREE_NODE and
8531 rewrite references to point to the copies.
8533 References are looked for in DIE's attributes and recursively in all its
8534 children attributes that are location descriptions. COPIED_DWARF_PROCS is a
8535 mapping from old DWARF procedures to their copy. It is used not to copy
8536 twice the same DWARF procedure under TYPE_NODE. */
8538 static void
8539 copy_dwarf_procs_ref_in_dies (dw_die_ref die,
8540 comdat_type_node *type_node,
8541 hash_map<dw_die_ref, dw_die_ref> &copied_dwarf_procs)
8543 dw_die_ref c;
8545 copy_dwarf_procs_ref_in_attrs (die, type_node, copied_dwarf_procs);
8546 FOR_EACH_CHILD (die, c, copy_dwarf_procs_ref_in_dies (c,
8547 type_node,
8548 copied_dwarf_procs));
8551 /* Traverse the DIE and set up additional .debug_types or .debug_info
8552 DW_UT_*type sections for each type worthy of being placed in a COMDAT
8553 section. */
8555 static void
8556 break_out_comdat_types (dw_die_ref die)
8558 dw_die_ref c;
8559 dw_die_ref first;
8560 dw_die_ref prev = NULL;
8561 dw_die_ref next = NULL;
8562 dw_die_ref unit = NULL;
8564 first = c = die->die_child;
8565 if (c)
8566 next = c->die_sib;
8567 if (c) do {
8568 if (prev == NULL || prev->die_sib == c)
8569 prev = c;
8570 c = next;
8571 next = (c == first ? NULL : c->die_sib);
8572 if (should_move_die_to_comdat (c))
8574 dw_die_ref replacement;
8575 comdat_type_node *type_node;
8577 /* Break out nested types into their own type units. */
8578 break_out_comdat_types (c);
8580 /* Create a new type unit DIE as the root for the new tree. */
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));
8585 /* Add the new unit's type DIE into the comdat type list. */
8586 type_node = ggc_cleared_alloc<comdat_type_node> ();
8587 type_node->root_die = unit;
8588 type_node->next = comdat_type_list;
8589 comdat_type_list = type_node;
8591 /* Generate the type signature. */
8592 generate_type_signature (c, type_node);
8594 /* Copy the declaration context, attributes, and children of the
8595 declaration into the new type unit DIE, then remove this DIE
8596 from the main CU (or replace it with a skeleton if necessary). */
8597 replacement = remove_child_or_replace_with_skeleton (unit, c, prev);
8598 type_node->skeleton_die = replacement;
8600 /* Add the DIE to the new compunit. */
8601 add_child_die (unit, c);
8603 /* Types can reference DWARF procedures for type size or data location
8604 expressions. Calls in DWARF expressions cannot target procedures
8605 that are not in the same section. So we must copy DWARF procedures
8606 along with this type and then rewrite references to them. */
8607 hash_map<dw_die_ref, dw_die_ref> copied_dwarf_procs;
8608 copy_dwarf_procs_ref_in_dies (c, type_node, copied_dwarf_procs);
8610 if (replacement != NULL)
8611 c = replacement;
8613 else if (c->die_tag == DW_TAG_namespace
8614 || c->die_tag == DW_TAG_class_type
8615 || c->die_tag == DW_TAG_structure_type
8616 || c->die_tag == DW_TAG_union_type)
8618 /* Look for nested types that can be broken out. */
8619 break_out_comdat_types (c);
8621 } while (next != NULL);
8624 /* Like clone_tree, but copy DW_TAG_subprogram DIEs as declarations.
8625 Enter all the cloned children into the hash table decl_table. */
8627 static dw_die_ref
8628 clone_tree_partial (dw_die_ref die, decl_hash_type *decl_table)
8630 dw_die_ref c;
8631 dw_die_ref clone;
8632 struct decl_table_entry *entry;
8633 decl_table_entry **slot;
8635 if (die->die_tag == DW_TAG_subprogram)
8636 clone = clone_as_declaration (die);
8637 else
8638 clone = clone_die (die);
8640 slot = decl_table->find_slot_with_hash (die,
8641 htab_hash_pointer (die), INSERT);
8643 /* Assert that DIE isn't in the hash table yet. If it would be there
8644 before, the ancestors would be necessarily there as well, therefore
8645 clone_tree_partial wouldn't be called. */
8646 gcc_assert (*slot == HTAB_EMPTY_ENTRY);
8648 entry = XCNEW (struct decl_table_entry);
8649 entry->orig = die;
8650 entry->copy = clone;
8651 *slot = entry;
8653 if (die->die_tag != DW_TAG_subprogram)
8654 FOR_EACH_CHILD (die, c,
8655 add_child_die (clone, clone_tree_partial (c, decl_table)));
8657 return clone;
8660 /* Walk the DIE and its children, looking for references to incomplete
8661 or trivial types that are unmarked (i.e., that are not in the current
8662 type_unit). */
8664 static void
8665 copy_decls_walk (dw_die_ref unit, dw_die_ref die, decl_hash_type *decl_table)
8667 dw_die_ref c;
8668 dw_attr_node *a;
8669 unsigned ix;
8671 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
8673 if (AT_class (a) == dw_val_class_die_ref)
8675 dw_die_ref targ = AT_ref (a);
8676 decl_table_entry **slot;
8677 struct decl_table_entry *entry;
8679 if (targ->die_mark != 0 || targ->comdat_type_p)
8680 continue;
8682 slot = decl_table->find_slot_with_hash (targ,
8683 htab_hash_pointer (targ),
8684 INSERT);
8686 if (*slot != HTAB_EMPTY_ENTRY)
8688 /* TARG has already been copied, so we just need to
8689 modify the reference to point to the copy. */
8690 entry = *slot;
8691 a->dw_attr_val.v.val_die_ref.die = entry->copy;
8693 else
8695 dw_die_ref parent = unit;
8696 dw_die_ref copy = clone_die (targ);
8698 /* Record in DECL_TABLE that TARG has been copied.
8699 Need to do this now, before the recursive call,
8700 because DECL_TABLE may be expanded and SLOT
8701 would no longer be a valid pointer. */
8702 entry = XCNEW (struct decl_table_entry);
8703 entry->orig = targ;
8704 entry->copy = copy;
8705 *slot = entry;
8707 /* If TARG is not a declaration DIE, we need to copy its
8708 children. */
8709 if (!is_declaration_die (targ))
8711 FOR_EACH_CHILD (
8712 targ, c,
8713 add_child_die (copy,
8714 clone_tree_partial (c, decl_table)));
8717 /* Make sure the cloned tree is marked as part of the
8718 type unit. */
8719 mark_dies (copy);
8721 /* If TARG has surrounding context, copy its ancestor tree
8722 into the new type unit. */
8723 if (targ->die_parent != NULL
8724 && !is_unit_die (targ->die_parent))
8725 parent = copy_ancestor_tree (unit, targ->die_parent,
8726 decl_table);
8728 add_child_die (parent, copy);
8729 a->dw_attr_val.v.val_die_ref.die = copy;
8731 /* Make sure the newly-copied DIE is walked. If it was
8732 installed in a previously-added context, it won't
8733 get visited otherwise. */
8734 if (parent != unit)
8736 /* Find the highest point of the newly-added tree,
8737 mark each node along the way, and walk from there. */
8738 parent->die_mark = 1;
8739 while (parent->die_parent
8740 && parent->die_parent->die_mark == 0)
8742 parent = parent->die_parent;
8743 parent->die_mark = 1;
8745 copy_decls_walk (unit, parent, decl_table);
8751 FOR_EACH_CHILD (die, c, copy_decls_walk (unit, c, decl_table));
8754 /* Collect skeleton dies in DIE created by break_out_comdat_types already
8755 and record them in DECL_TABLE. */
8757 static void
8758 collect_skeleton_dies (dw_die_ref die, decl_hash_type *decl_table)
8760 dw_die_ref c;
8762 if (dw_attr_node *a = get_AT (die, DW_AT_signature))
8764 dw_die_ref targ = AT_ref (a);
8765 gcc_assert (targ->die_mark == 0 && targ->comdat_type_p);
8766 decl_table_entry **slot
8767 = decl_table->find_slot_with_hash (targ,
8768 htab_hash_pointer (targ),
8769 INSERT);
8770 gcc_assert (*slot == HTAB_EMPTY_ENTRY);
8771 /* Record in DECL_TABLE that TARG has been already copied
8772 by remove_child_or_replace_with_skeleton. */
8773 decl_table_entry *entry = XCNEW (struct decl_table_entry);
8774 entry->orig = targ;
8775 entry->copy = die;
8776 *slot = entry;
8778 FOR_EACH_CHILD (die, c, collect_skeleton_dies (c, decl_table));
8781 /* Copy declarations for "unworthy" types into the new comdat section.
8782 Incomplete types, modified types, and certain other types aren't broken
8783 out into comdat sections of their own, so they don't have a signature,
8784 and we need to copy the declaration into the same section so that we
8785 don't have an external reference. */
8787 static void
8788 copy_decls_for_unworthy_types (dw_die_ref unit)
8790 mark_dies (unit);
8791 decl_hash_type decl_table (10);
8792 collect_skeleton_dies (unit, &decl_table);
8793 copy_decls_walk (unit, unit, &decl_table);
8794 unmark_dies (unit);
8797 /* Traverse the DIE and add a sibling attribute if it may have the
8798 effect of speeding up access to siblings. To save some space,
8799 avoid generating sibling attributes for DIE's without children. */
8801 static void
8802 add_sibling_attributes (dw_die_ref die)
8804 dw_die_ref c;
8806 if (! die->die_child)
8807 return;
8809 if (die->die_parent && die != die->die_parent->die_child)
8810 add_AT_die_ref (die, DW_AT_sibling, die->die_sib);
8812 FOR_EACH_CHILD (die, c, add_sibling_attributes (c));
8815 /* Output all location lists for the DIE and its children. */
8817 static void
8818 output_location_lists (dw_die_ref die)
8820 dw_die_ref c;
8821 dw_attr_node *a;
8822 unsigned ix;
8824 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
8825 if (AT_class (a) == dw_val_class_loc_list)
8826 output_loc_list (AT_loc_list (a));
8828 FOR_EACH_CHILD (die, c, output_location_lists (c));
8831 /* During assign_location_list_indexes and output_loclists_offset the
8832 current index, after it the number of assigned indexes (i.e. how
8833 large the .debug_loclists* offset table should be). */
8834 static unsigned int loc_list_idx;
8836 /* Output all location list offsets for the DIE and its children. */
8838 static void
8839 output_loclists_offsets (dw_die_ref die)
8841 dw_die_ref c;
8842 dw_attr_node *a;
8843 unsigned ix;
8845 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
8846 if (AT_class (a) == dw_val_class_loc_list)
8848 dw_loc_list_ref l = AT_loc_list (a);
8849 if (l->offset_emitted)
8850 continue;
8851 dw2_asm_output_delta (DWARF_OFFSET_SIZE, l->ll_symbol,
8852 loc_section_label, NULL);
8853 gcc_assert (l->hash == loc_list_idx);
8854 loc_list_idx++;
8855 l->offset_emitted = true;
8858 FOR_EACH_CHILD (die, c, output_loclists_offsets (c));
8861 /* Recursively set indexes of location lists. */
8863 static void
8864 assign_location_list_indexes (dw_die_ref die)
8866 dw_die_ref c;
8867 dw_attr_node *a;
8868 unsigned ix;
8870 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
8871 if (AT_class (a) == dw_val_class_loc_list)
8873 dw_loc_list_ref list = AT_loc_list (a);
8874 if (!list->num_assigned)
8876 list->num_assigned = true;
8877 list->hash = loc_list_idx++;
8881 FOR_EACH_CHILD (die, c, assign_location_list_indexes (c));
8884 /* We want to limit the number of external references, because they are
8885 larger than local references: a relocation takes multiple words, and
8886 even a sig8 reference is always eight bytes, whereas a local reference
8887 can be as small as one byte (though DW_FORM_ref is usually 4 in GCC).
8888 So if we encounter multiple external references to the same type DIE, we
8889 make a local typedef stub for it and redirect all references there.
8891 This is the element of the hash table for keeping track of these
8892 references. */
8894 struct external_ref
8896 dw_die_ref type;
8897 dw_die_ref stub;
8898 unsigned n_refs;
8901 /* Hashtable helpers. */
8903 struct external_ref_hasher : free_ptr_hash <external_ref>
8905 static inline hashval_t hash (const external_ref *);
8906 static inline bool equal (const external_ref *, const external_ref *);
8909 inline hashval_t
8910 external_ref_hasher::hash (const external_ref *r)
8912 dw_die_ref die = r->type;
8913 hashval_t h = 0;
8915 /* We can't use the address of the DIE for hashing, because
8916 that will make the order of the stub DIEs non-deterministic. */
8917 if (! die->comdat_type_p)
8918 /* We have a symbol; use it to compute a hash. */
8919 h = htab_hash_string (die->die_id.die_symbol);
8920 else
8922 /* We have a type signature; use a subset of the bits as the hash.
8923 The 8-byte signature is at least as large as hashval_t. */
8924 comdat_type_node *type_node = die->die_id.die_type_node;
8925 memcpy (&h, type_node->signature, sizeof (h));
8927 return h;
8930 inline bool
8931 external_ref_hasher::equal (const external_ref *r1, const external_ref *r2)
8933 return r1->type == r2->type;
8936 typedef hash_table<external_ref_hasher> external_ref_hash_type;
8938 /* Return a pointer to the external_ref for references to DIE. */
8940 static struct external_ref *
8941 lookup_external_ref (external_ref_hash_type *map, dw_die_ref die)
8943 struct external_ref ref, *ref_p;
8944 external_ref **slot;
8946 ref.type = die;
8947 slot = map->find_slot (&ref, INSERT);
8948 if (*slot != HTAB_EMPTY_ENTRY)
8949 return *slot;
8951 ref_p = XCNEW (struct external_ref);
8952 ref_p->type = die;
8953 *slot = ref_p;
8954 return ref_p;
8957 /* Subroutine of optimize_external_refs, below.
8959 If we see a type skeleton, record it as our stub. If we see external
8960 references, remember how many we've seen. */
8962 static void
8963 optimize_external_refs_1 (dw_die_ref die, external_ref_hash_type *map)
8965 dw_die_ref c;
8966 dw_attr_node *a;
8967 unsigned ix;
8968 struct external_ref *ref_p;
8970 if (is_type_die (die)
8971 && (c = get_AT_ref (die, DW_AT_signature)))
8973 /* This is a local skeleton; use it for local references. */
8974 ref_p = lookup_external_ref (map, c);
8975 ref_p->stub = die;
8978 /* Scan the DIE references, and remember any that refer to DIEs from
8979 other CUs (i.e. those which are not marked). */
8980 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
8981 if (AT_class (a) == dw_val_class_die_ref
8982 && (c = AT_ref (a))->die_mark == 0
8983 && is_type_die (c))
8985 ref_p = lookup_external_ref (map, c);
8986 ref_p->n_refs++;
8989 FOR_EACH_CHILD (die, c, optimize_external_refs_1 (c, map));
8992 /* htab_traverse callback function for optimize_external_refs, below. SLOT
8993 points to an external_ref, DATA is the CU we're processing. If we don't
8994 already have a local stub, and we have multiple refs, build a stub. */
8997 dwarf2_build_local_stub (external_ref **slot, dw_die_ref data)
8999 struct external_ref *ref_p = *slot;
9001 if (ref_p->stub == NULL && ref_p->n_refs > 1 && !dwarf_strict)
9003 /* We have multiple references to this type, so build a small stub.
9004 Both of these forms are a bit dodgy from the perspective of the
9005 DWARF standard, since technically they should have names. */
9006 dw_die_ref cu = data;
9007 dw_die_ref type = ref_p->type;
9008 dw_die_ref stub = NULL;
9010 if (type->comdat_type_p)
9012 /* If we refer to this type via sig8, use AT_signature. */
9013 stub = new_die (type->die_tag, cu, NULL_TREE);
9014 add_AT_die_ref (stub, DW_AT_signature, type);
9016 else
9018 /* Otherwise, use a typedef with no name. */
9019 stub = new_die (DW_TAG_typedef, cu, NULL_TREE);
9020 add_AT_die_ref (stub, DW_AT_type, type);
9023 stub->die_mark++;
9024 ref_p->stub = stub;
9026 return 1;
9029 /* DIE is a unit; look through all the DIE references to see if there are
9030 any external references to types, and if so, create local stubs for
9031 them which will be applied in build_abbrev_table. This is useful because
9032 references to local DIEs are smaller. */
9034 static external_ref_hash_type *
9035 optimize_external_refs (dw_die_ref die)
9037 external_ref_hash_type *map = new external_ref_hash_type (10);
9038 optimize_external_refs_1 (die, map);
9039 map->traverse <dw_die_ref, dwarf2_build_local_stub> (die);
9040 return map;
9043 /* The following 3 variables are temporaries that are computed only during the
9044 build_abbrev_table call and used and released during the following
9045 optimize_abbrev_table call. */
9047 /* First abbrev_id that can be optimized based on usage. */
9048 static unsigned int abbrev_opt_start;
9050 /* Maximum abbrev_id of a base type plus one (we can't optimize DIEs with
9051 abbrev_id smaller than this, because they must be already sized
9052 during build_abbrev_table). */
9053 static unsigned int abbrev_opt_base_type_end;
9055 /* Vector of usage counts during build_abbrev_table. Indexed by
9056 abbrev_id - abbrev_opt_start. */
9057 static vec<unsigned int> abbrev_usage_count;
9059 /* Vector of all DIEs added with die_abbrev >= abbrev_opt_start. */
9060 static vec<dw_die_ref> sorted_abbrev_dies;
9062 /* The format of each DIE (and its attribute value pairs) is encoded in an
9063 abbreviation table. This routine builds the abbreviation table and assigns
9064 a unique abbreviation id for each abbreviation entry. The children of each
9065 die are visited recursively. */
9067 static void
9068 build_abbrev_table (dw_die_ref die, external_ref_hash_type *extern_map)
9070 unsigned int abbrev_id = 0;
9071 dw_die_ref c;
9072 dw_attr_node *a;
9073 unsigned ix;
9074 dw_die_ref abbrev;
9076 /* Scan the DIE references, and replace any that refer to
9077 DIEs from other CUs (i.e. those which are not marked) with
9078 the local stubs we built in optimize_external_refs. */
9079 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
9080 if (AT_class (a) == dw_val_class_die_ref
9081 && (c = AT_ref (a))->die_mark == 0)
9083 struct external_ref *ref_p;
9084 gcc_assert (AT_ref (a)->comdat_type_p || AT_ref (a)->die_id.die_symbol);
9086 if (is_type_die (c)
9087 && (ref_p = lookup_external_ref (extern_map, c))
9088 && ref_p->stub && ref_p->stub != die)
9090 gcc_assert (a->dw_attr != DW_AT_signature);
9091 change_AT_die_ref (a, ref_p->stub);
9093 else
9094 /* We aren't changing this reference, so mark it external. */
9095 set_AT_ref_external (a, 1);
9098 FOR_EACH_VEC_SAFE_ELT (abbrev_die_table, abbrev_id, abbrev)
9100 dw_attr_node *die_a, *abbrev_a;
9101 unsigned ix;
9102 bool ok = true;
9104 if (abbrev_id == 0)
9105 continue;
9106 if (abbrev->die_tag != die->die_tag)
9107 continue;
9108 if ((abbrev->die_child != NULL) != (die->die_child != NULL))
9109 continue;
9111 if (vec_safe_length (abbrev->die_attr) != vec_safe_length (die->die_attr))
9112 continue;
9114 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, die_a)
9116 abbrev_a = &(*abbrev->die_attr)[ix];
9117 if ((abbrev_a->dw_attr != die_a->dw_attr)
9118 || (value_format (abbrev_a) != value_format (die_a)))
9120 ok = false;
9121 break;
9124 if (ok)
9125 break;
9128 if (abbrev_id >= vec_safe_length (abbrev_die_table))
9130 vec_safe_push (abbrev_die_table, die);
9131 if (abbrev_opt_start)
9132 abbrev_usage_count.safe_push (0);
9134 if (abbrev_opt_start && abbrev_id >= abbrev_opt_start)
9136 abbrev_usage_count[abbrev_id - abbrev_opt_start]++;
9137 sorted_abbrev_dies.safe_push (die);
9140 die->die_abbrev = abbrev_id;
9141 FOR_EACH_CHILD (die, c, build_abbrev_table (c, extern_map));
9144 /* Callback function for sorted_abbrev_dies vector sorting. We sort
9145 by die_abbrev's usage count, from the most commonly used
9146 abbreviation to the least. */
9148 static int
9149 die_abbrev_cmp (const void *p1, const void *p2)
9151 dw_die_ref die1 = *(const dw_die_ref *) p1;
9152 dw_die_ref die2 = *(const dw_die_ref *) p2;
9154 gcc_checking_assert (die1->die_abbrev >= abbrev_opt_start);
9155 gcc_checking_assert (die2->die_abbrev >= abbrev_opt_start);
9157 if (die1->die_abbrev >= abbrev_opt_base_type_end
9158 && die2->die_abbrev >= abbrev_opt_base_type_end)
9160 if (abbrev_usage_count[die1->die_abbrev - abbrev_opt_start]
9161 > abbrev_usage_count[die2->die_abbrev - abbrev_opt_start])
9162 return -1;
9163 if (abbrev_usage_count[die1->die_abbrev - abbrev_opt_start]
9164 < abbrev_usage_count[die2->die_abbrev - abbrev_opt_start])
9165 return 1;
9168 /* Stabilize the sort. */
9169 if (die1->die_abbrev < die2->die_abbrev)
9170 return -1;
9171 if (die1->die_abbrev > die2->die_abbrev)
9172 return 1;
9174 return 0;
9177 /* Convert dw_val_class_const and dw_val_class_unsigned_const class attributes
9178 of DIEs in between sorted_abbrev_dies[first_id] and abbrev_dies[end_id - 1]
9179 into dw_val_class_const_implicit or
9180 dw_val_class_unsigned_const_implicit. */
9182 static void
9183 optimize_implicit_const (unsigned int first_id, unsigned int end,
9184 vec<bool> &implicit_consts)
9186 /* It never makes sense if there is just one DIE using the abbreviation. */
9187 if (end < first_id + 2)
9188 return;
9190 dw_attr_node *a;
9191 unsigned ix, i;
9192 dw_die_ref die = sorted_abbrev_dies[first_id];
9193 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
9194 if (implicit_consts[ix])
9196 enum dw_val_class new_class = dw_val_class_none;
9197 switch (AT_class (a))
9199 case dw_val_class_unsigned_const:
9200 if ((HOST_WIDE_INT) AT_unsigned (a) < 0)
9201 continue;
9203 /* The .debug_abbrev section will grow by
9204 size_of_sleb128 (AT_unsigned (a)) and we avoid the constants
9205 in all the DIEs using that abbreviation. */
9206 if (constant_size (AT_unsigned (a)) * (end - first_id)
9207 <= (unsigned) size_of_sleb128 (AT_unsigned (a)))
9208 continue;
9210 new_class = dw_val_class_unsigned_const_implicit;
9211 break;
9213 case dw_val_class_const:
9214 new_class = dw_val_class_const_implicit;
9215 break;
9217 case dw_val_class_file:
9218 new_class = dw_val_class_file_implicit;
9219 break;
9221 default:
9222 continue;
9224 for (i = first_id; i < end; i++)
9225 (*sorted_abbrev_dies[i]->die_attr)[ix].dw_attr_val.val_class
9226 = new_class;
9230 /* Attempt to optimize abbreviation table from abbrev_opt_start
9231 abbreviation above. */
9233 static void
9234 optimize_abbrev_table (void)
9236 if (abbrev_opt_start
9237 && vec_safe_length (abbrev_die_table) > abbrev_opt_start
9238 && (dwarf_version >= 5 || vec_safe_length (abbrev_die_table) > 127))
9240 auto_vec<bool, 32> implicit_consts;
9241 sorted_abbrev_dies.qsort (die_abbrev_cmp);
9243 unsigned int abbrev_id = abbrev_opt_start - 1;
9244 unsigned int first_id = ~0U;
9245 unsigned int last_abbrev_id = 0;
9246 unsigned int i;
9247 dw_die_ref die;
9248 if (abbrev_opt_base_type_end > abbrev_opt_start)
9249 abbrev_id = abbrev_opt_base_type_end - 1;
9250 /* Reassign abbreviation ids from abbrev_opt_start above, so that
9251 most commonly used abbreviations come first. */
9252 FOR_EACH_VEC_ELT (sorted_abbrev_dies, i, die)
9254 dw_attr_node *a;
9255 unsigned ix;
9257 /* If calc_base_type_die_sizes has been called, the CU and
9258 base types after it can't be optimized, because we've already
9259 calculated their DIE offsets. We've sorted them first. */
9260 if (die->die_abbrev < abbrev_opt_base_type_end)
9261 continue;
9262 if (die->die_abbrev != last_abbrev_id)
9264 last_abbrev_id = die->die_abbrev;
9265 if (dwarf_version >= 5 && first_id != ~0U)
9266 optimize_implicit_const (first_id, i, implicit_consts);
9267 abbrev_id++;
9268 (*abbrev_die_table)[abbrev_id] = die;
9269 if (dwarf_version >= 5)
9271 first_id = i;
9272 implicit_consts.truncate (0);
9274 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
9275 switch (AT_class (a))
9277 case dw_val_class_const:
9278 case dw_val_class_unsigned_const:
9279 case dw_val_class_file:
9280 implicit_consts.safe_push (true);
9281 break;
9282 default:
9283 implicit_consts.safe_push (false);
9284 break;
9288 else if (dwarf_version >= 5)
9290 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
9291 if (!implicit_consts[ix])
9292 continue;
9293 else
9295 dw_attr_node *other_a
9296 = &(*(*abbrev_die_table)[abbrev_id]->die_attr)[ix];
9297 if (!dw_val_equal_p (&a->dw_attr_val,
9298 &other_a->dw_attr_val))
9299 implicit_consts[ix] = false;
9302 die->die_abbrev = abbrev_id;
9304 gcc_assert (abbrev_id == vec_safe_length (abbrev_die_table) - 1);
9305 if (dwarf_version >= 5 && first_id != ~0U)
9306 optimize_implicit_const (first_id, i, implicit_consts);
9309 abbrev_opt_start = 0;
9310 abbrev_opt_base_type_end = 0;
9311 abbrev_usage_count.release ();
9312 sorted_abbrev_dies.release ();
9315 /* Return the power-of-two number of bytes necessary to represent VALUE. */
9317 static int
9318 constant_size (unsigned HOST_WIDE_INT value)
9320 int log;
9322 if (value == 0)
9323 log = 0;
9324 else
9325 log = floor_log2 (value);
9327 log = log / 8;
9328 log = 1 << (floor_log2 (log) + 1);
9330 return log;
9333 /* Return the size of a DIE as it is represented in the
9334 .debug_info section. */
9336 static unsigned long
9337 size_of_die (dw_die_ref die)
9339 unsigned long size = 0;
9340 dw_attr_node *a;
9341 unsigned ix;
9342 enum dwarf_form form;
9344 size += size_of_uleb128 (die->die_abbrev);
9345 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
9347 switch (AT_class (a))
9349 case dw_val_class_addr:
9350 if (dwarf_split_debug_info && AT_index (a) != NOT_INDEXED)
9352 gcc_assert (AT_index (a) != NO_INDEX_ASSIGNED);
9353 size += size_of_uleb128 (AT_index (a));
9355 else
9356 size += DWARF2_ADDR_SIZE;
9357 break;
9358 case dw_val_class_offset:
9359 size += DWARF_OFFSET_SIZE;
9360 break;
9361 case dw_val_class_loc:
9363 unsigned long lsize = size_of_locs (AT_loc (a));
9365 /* Block length. */
9366 if (dwarf_version >= 4)
9367 size += size_of_uleb128 (lsize);
9368 else
9369 size += constant_size (lsize);
9370 size += lsize;
9372 break;
9373 case dw_val_class_loc_list:
9374 if (dwarf_split_debug_info && dwarf_version >= 5)
9376 gcc_assert (AT_loc_list (a)->num_assigned);
9377 size += size_of_uleb128 (AT_loc_list (a)->hash);
9379 else
9380 size += DWARF_OFFSET_SIZE;
9381 break;
9382 case dw_val_class_view_list:
9383 size += DWARF_OFFSET_SIZE;
9384 break;
9385 case dw_val_class_range_list:
9386 if (value_format (a) == DW_FORM_rnglistx)
9388 gcc_assert (rnglist_idx);
9389 dw_ranges *r = &(*ranges_table)[a->dw_attr_val.v.val_offset];
9390 size += size_of_uleb128 (r->idx);
9392 else
9393 size += DWARF_OFFSET_SIZE;
9394 break;
9395 case dw_val_class_const:
9396 size += size_of_sleb128 (AT_int (a));
9397 break;
9398 case dw_val_class_unsigned_const:
9400 int csize = constant_size (AT_unsigned (a));
9401 if (dwarf_version == 3
9402 && a->dw_attr == DW_AT_data_member_location
9403 && csize >= 4)
9404 size += size_of_uleb128 (AT_unsigned (a));
9405 else
9406 size += csize;
9408 break;
9409 case dw_val_class_symview:
9410 if (symview_upper_bound <= 0xff)
9411 size += 1;
9412 else if (symview_upper_bound <= 0xffff)
9413 size += 2;
9414 else if (symview_upper_bound <= 0xffffffff)
9415 size += 4;
9416 else
9417 size += 8;
9418 break;
9419 case dw_val_class_const_implicit:
9420 case dw_val_class_unsigned_const_implicit:
9421 case dw_val_class_file_implicit:
9422 /* These occupy no size in the DIE, just an extra sleb128 in
9423 .debug_abbrev. */
9424 break;
9425 case dw_val_class_const_double:
9426 size += HOST_BITS_PER_DOUBLE_INT / HOST_BITS_PER_CHAR;
9427 if (HOST_BITS_PER_WIDE_INT >= DWARF_LARGEST_DATA_FORM_BITS)
9428 size++; /* block */
9429 break;
9430 case dw_val_class_wide_int:
9431 size += (get_full_len (*a->dw_attr_val.v.val_wide)
9432 * HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR);
9433 if (get_full_len (*a->dw_attr_val.v.val_wide)
9434 * HOST_BITS_PER_WIDE_INT > DWARF_LARGEST_DATA_FORM_BITS)
9435 size++; /* block */
9436 break;
9437 case dw_val_class_vec:
9438 size += constant_size (a->dw_attr_val.v.val_vec.length
9439 * a->dw_attr_val.v.val_vec.elt_size)
9440 + a->dw_attr_val.v.val_vec.length
9441 * a->dw_attr_val.v.val_vec.elt_size; /* block */
9442 break;
9443 case dw_val_class_flag:
9444 if (dwarf_version >= 4)
9445 /* Currently all add_AT_flag calls pass in 1 as last argument,
9446 so DW_FORM_flag_present can be used. If that ever changes,
9447 we'll need to use DW_FORM_flag and have some optimization
9448 in build_abbrev_table that will change those to
9449 DW_FORM_flag_present if it is set to 1 in all DIEs using
9450 the same abbrev entry. */
9451 gcc_assert (a->dw_attr_val.v.val_flag == 1);
9452 else
9453 size += 1;
9454 break;
9455 case dw_val_class_die_ref:
9456 if (AT_ref_external (a))
9458 /* In DWARF4, we use DW_FORM_ref_sig8; for earlier versions
9459 we use DW_FORM_ref_addr. In DWARF2, DW_FORM_ref_addr
9460 is sized by target address length, whereas in DWARF3
9461 it's always sized as an offset. */
9462 if (AT_ref (a)->comdat_type_p)
9463 size += DWARF_TYPE_SIGNATURE_SIZE;
9464 else if (dwarf_version == 2)
9465 size += DWARF2_ADDR_SIZE;
9466 else
9467 size += DWARF_OFFSET_SIZE;
9469 else
9470 size += DWARF_OFFSET_SIZE;
9471 break;
9472 case dw_val_class_fde_ref:
9473 size += DWARF_OFFSET_SIZE;
9474 break;
9475 case dw_val_class_lbl_id:
9476 if (dwarf_split_debug_info && AT_index (a) != NOT_INDEXED)
9478 gcc_assert (AT_index (a) != NO_INDEX_ASSIGNED);
9479 size += size_of_uleb128 (AT_index (a));
9481 else
9482 size += DWARF2_ADDR_SIZE;
9483 break;
9484 case dw_val_class_lineptr:
9485 case dw_val_class_macptr:
9486 case dw_val_class_loclistsptr:
9487 size += DWARF_OFFSET_SIZE;
9488 break;
9489 case dw_val_class_str:
9490 form = AT_string_form (a);
9491 if (form == DW_FORM_strp || form == DW_FORM_line_strp)
9492 size += DWARF_OFFSET_SIZE;
9493 else if (form == dwarf_FORM (DW_FORM_strx))
9494 size += size_of_uleb128 (AT_index (a));
9495 else
9496 size += strlen (a->dw_attr_val.v.val_str->str) + 1;
9497 break;
9498 case dw_val_class_file:
9499 size += constant_size (maybe_emit_file (a->dw_attr_val.v.val_file));
9500 break;
9501 case dw_val_class_data8:
9502 size += 8;
9503 break;
9504 case dw_val_class_vms_delta:
9505 size += DWARF_OFFSET_SIZE;
9506 break;
9507 case dw_val_class_high_pc:
9508 size += DWARF2_ADDR_SIZE;
9509 break;
9510 case dw_val_class_discr_value:
9511 size += size_of_discr_value (&a->dw_attr_val.v.val_discr_value);
9512 break;
9513 case dw_val_class_discr_list:
9515 unsigned block_size = size_of_discr_list (AT_discr_list (a));
9517 /* This is a block, so we have the block length and then its
9518 data. */
9519 size += constant_size (block_size) + block_size;
9521 break;
9522 default:
9523 gcc_unreachable ();
9527 return size;
9530 /* Size the debugging information associated with a given DIE. Visits the
9531 DIE's children recursively. Updates the global variable next_die_offset, on
9532 each time through. Uses the current value of next_die_offset to update the
9533 die_offset field in each DIE. */
9535 static void
9536 calc_die_sizes (dw_die_ref die)
9538 dw_die_ref c;
9540 gcc_assert (die->die_offset == 0
9541 || (unsigned long int) die->die_offset == next_die_offset);
9542 die->die_offset = next_die_offset;
9543 next_die_offset += size_of_die (die);
9545 FOR_EACH_CHILD (die, c, calc_die_sizes (c));
9547 if (die->die_child != NULL)
9548 /* Count the null byte used to terminate sibling lists. */
9549 next_die_offset += 1;
9552 /* Size just the base type children at the start of the CU.
9553 This is needed because build_abbrev needs to size locs
9554 and sizing of type based stack ops needs to know die_offset
9555 values for the base types. */
9557 static void
9558 calc_base_type_die_sizes (void)
9560 unsigned long die_offset = (dwarf_split_debug_info
9561 ? DWARF_COMPILE_UNIT_SKELETON_HEADER_SIZE
9562 : DWARF_COMPILE_UNIT_HEADER_SIZE);
9563 unsigned int i;
9564 dw_die_ref base_type;
9565 #if ENABLE_ASSERT_CHECKING
9566 dw_die_ref prev = comp_unit_die ()->die_child;
9567 #endif
9569 die_offset += size_of_die (comp_unit_die ());
9570 for (i = 0; base_types.iterate (i, &base_type); i++)
9572 #if ENABLE_ASSERT_CHECKING
9573 gcc_assert (base_type->die_offset == 0
9574 && prev->die_sib == base_type
9575 && base_type->die_child == NULL
9576 && base_type->die_abbrev);
9577 prev = base_type;
9578 #endif
9579 if (abbrev_opt_start
9580 && base_type->die_abbrev >= abbrev_opt_base_type_end)
9581 abbrev_opt_base_type_end = base_type->die_abbrev + 1;
9582 base_type->die_offset = die_offset;
9583 die_offset += size_of_die (base_type);
9587 /* Set the marks for a die and its children. We do this so
9588 that we know whether or not a reference needs to use FORM_ref_addr; only
9589 DIEs in the same CU will be marked. We used to clear out the offset
9590 and use that as the flag, but ran into ordering problems. */
9592 static void
9593 mark_dies (dw_die_ref die)
9595 dw_die_ref c;
9597 gcc_assert (!die->die_mark);
9599 die->die_mark = 1;
9600 FOR_EACH_CHILD (die, c, mark_dies (c));
9603 /* Clear the marks for a die and its children. */
9605 static void
9606 unmark_dies (dw_die_ref die)
9608 dw_die_ref c;
9610 if (! use_debug_types)
9611 gcc_assert (die->die_mark);
9613 die->die_mark = 0;
9614 FOR_EACH_CHILD (die, c, unmark_dies (c));
9617 /* Clear the marks for a die, its children and referred dies. */
9619 static void
9620 unmark_all_dies (dw_die_ref die)
9622 dw_die_ref c;
9623 dw_attr_node *a;
9624 unsigned ix;
9626 if (!die->die_mark)
9627 return;
9628 die->die_mark = 0;
9630 FOR_EACH_CHILD (die, c, unmark_all_dies (c));
9632 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
9633 if (AT_class (a) == dw_val_class_die_ref)
9634 unmark_all_dies (AT_ref (a));
9637 /* Calculate if the entry should appear in the final output file. It may be
9638 from a pruned a type. */
9640 static bool
9641 include_pubname_in_output (vec<pubname_entry, va_gc> *table, pubname_entry *p)
9643 /* By limiting gnu pubnames to definitions only, gold can generate a
9644 gdb index without entries for declarations, which don't include
9645 enough information to be useful. */
9646 if (debug_generate_pub_sections == 2 && is_declaration_die (p->die))
9647 return false;
9649 if (table == pubname_table)
9651 /* Enumerator names are part of the pubname table, but the
9652 parent DW_TAG_enumeration_type die may have been pruned.
9653 Don't output them if that is the case. */
9654 if (p->die->die_tag == DW_TAG_enumerator &&
9655 (p->die->die_parent == NULL
9656 || !p->die->die_parent->die_perennial_p))
9657 return false;
9659 /* Everything else in the pubname table is included. */
9660 return true;
9663 /* The pubtypes table shouldn't include types that have been
9664 pruned. */
9665 return (p->die->die_offset != 0
9666 || !flag_eliminate_unused_debug_types);
9669 /* Return the size of the .debug_pubnames or .debug_pubtypes table
9670 generated for the compilation unit. */
9672 static unsigned long
9673 size_of_pubnames (vec<pubname_entry, va_gc> *names)
9675 unsigned long size;
9676 unsigned i;
9677 pubname_entry *p;
9678 int space_for_flags = (debug_generate_pub_sections == 2) ? 1 : 0;
9680 size = DWARF_PUBNAMES_HEADER_SIZE;
9681 FOR_EACH_VEC_ELT (*names, i, p)
9682 if (include_pubname_in_output (names, p))
9683 size += strlen (p->name) + DWARF_OFFSET_SIZE + 1 + space_for_flags;
9685 size += DWARF_OFFSET_SIZE;
9686 return size;
9689 /* Return the size of the information in the .debug_aranges section. */
9691 static unsigned long
9692 size_of_aranges (void)
9694 unsigned long size;
9696 size = DWARF_ARANGES_HEADER_SIZE;
9698 /* Count the address/length pair for this compilation unit. */
9699 if (text_section_used)
9700 size += 2 * DWARF2_ADDR_SIZE;
9701 if (cold_text_section_used)
9702 size += 2 * DWARF2_ADDR_SIZE;
9703 if (have_multiple_function_sections)
9705 unsigned fde_idx;
9706 dw_fde_ref fde;
9708 FOR_EACH_VEC_ELT (*fde_vec, fde_idx, fde)
9710 if (DECL_IGNORED_P (fde->decl))
9711 continue;
9712 if (!fde->in_std_section)
9713 size += 2 * DWARF2_ADDR_SIZE;
9714 if (fde->dw_fde_second_begin && !fde->second_in_std_section)
9715 size += 2 * DWARF2_ADDR_SIZE;
9719 /* Count the two zero words used to terminated the address range table. */
9720 size += 2 * DWARF2_ADDR_SIZE;
9721 return size;
9724 /* Select the encoding of an attribute value. */
9726 static enum dwarf_form
9727 value_format (dw_attr_node *a)
9729 switch (AT_class (a))
9731 case dw_val_class_addr:
9732 /* Only very few attributes allow DW_FORM_addr. */
9733 switch (a->dw_attr)
9735 case DW_AT_low_pc:
9736 case DW_AT_high_pc:
9737 case DW_AT_entry_pc:
9738 case DW_AT_trampoline:
9739 return (AT_index (a) == NOT_INDEXED
9740 ? DW_FORM_addr : dwarf_FORM (DW_FORM_addrx));
9741 default:
9742 break;
9744 switch (DWARF2_ADDR_SIZE)
9746 case 1:
9747 return DW_FORM_data1;
9748 case 2:
9749 return DW_FORM_data2;
9750 case 4:
9751 return DW_FORM_data4;
9752 case 8:
9753 return DW_FORM_data8;
9754 default:
9755 gcc_unreachable ();
9757 case dw_val_class_loc_list:
9758 if (dwarf_split_debug_info
9759 && dwarf_version >= 5
9760 && AT_loc_list (a)->num_assigned)
9761 return DW_FORM_loclistx;
9762 /* FALLTHRU */
9763 case dw_val_class_view_list:
9764 case dw_val_class_range_list:
9765 /* For range lists in DWARF 5, use DW_FORM_rnglistx from .debug_info.dwo
9766 but in .debug_info use DW_FORM_sec_offset, which is shorter if we
9767 care about sizes of .debug* sections in shared libraries and
9768 executables and don't take into account relocations that affect just
9769 relocatable objects - for DW_FORM_rnglistx we'd have to emit offset
9770 table in the .debug_rnglists section. */
9771 if (dwarf_split_debug_info
9772 && dwarf_version >= 5
9773 && AT_class (a) == dw_val_class_range_list
9774 && rnglist_idx
9775 && a->dw_attr_val.val_entry != RELOCATED_OFFSET)
9776 return DW_FORM_rnglistx;
9777 if (dwarf_version >= 4)
9778 return DW_FORM_sec_offset;
9779 /* FALLTHRU */
9780 case dw_val_class_vms_delta:
9781 case dw_val_class_offset:
9782 switch (DWARF_OFFSET_SIZE)
9784 case 4:
9785 return DW_FORM_data4;
9786 case 8:
9787 return DW_FORM_data8;
9788 default:
9789 gcc_unreachable ();
9791 case dw_val_class_loc:
9792 if (dwarf_version >= 4)
9793 return DW_FORM_exprloc;
9794 switch (constant_size (size_of_locs (AT_loc (a))))
9796 case 1:
9797 return DW_FORM_block1;
9798 case 2:
9799 return DW_FORM_block2;
9800 case 4:
9801 return DW_FORM_block4;
9802 default:
9803 gcc_unreachable ();
9805 case dw_val_class_const:
9806 return DW_FORM_sdata;
9807 case dw_val_class_unsigned_const:
9808 switch (constant_size (AT_unsigned (a)))
9810 case 1:
9811 return DW_FORM_data1;
9812 case 2:
9813 return DW_FORM_data2;
9814 case 4:
9815 /* In DWARF3 DW_AT_data_member_location with
9816 DW_FORM_data4 or DW_FORM_data8 is a loclistptr, not
9817 constant, so we need to use DW_FORM_udata if we need
9818 a large constant. */
9819 if (dwarf_version == 3 && a->dw_attr == DW_AT_data_member_location)
9820 return DW_FORM_udata;
9821 return DW_FORM_data4;
9822 case 8:
9823 if (dwarf_version == 3 && a->dw_attr == DW_AT_data_member_location)
9824 return DW_FORM_udata;
9825 return DW_FORM_data8;
9826 default:
9827 gcc_unreachable ();
9829 case dw_val_class_const_implicit:
9830 case dw_val_class_unsigned_const_implicit:
9831 case dw_val_class_file_implicit:
9832 return DW_FORM_implicit_const;
9833 case dw_val_class_const_double:
9834 switch (HOST_BITS_PER_WIDE_INT)
9836 case 8:
9837 return DW_FORM_data2;
9838 case 16:
9839 return DW_FORM_data4;
9840 case 32:
9841 return DW_FORM_data8;
9842 case 64:
9843 if (dwarf_version >= 5)
9844 return DW_FORM_data16;
9845 /* FALLTHRU */
9846 default:
9847 return DW_FORM_block1;
9849 case dw_val_class_wide_int:
9850 switch (get_full_len (*a->dw_attr_val.v.val_wide) * HOST_BITS_PER_WIDE_INT)
9852 case 8:
9853 return DW_FORM_data1;
9854 case 16:
9855 return DW_FORM_data2;
9856 case 32:
9857 return DW_FORM_data4;
9858 case 64:
9859 return DW_FORM_data8;
9860 case 128:
9861 if (dwarf_version >= 5)
9862 return DW_FORM_data16;
9863 /* FALLTHRU */
9864 default:
9865 return DW_FORM_block1;
9867 case dw_val_class_symview:
9868 /* ??? We might use uleb128, but then we'd have to compute
9869 .debug_info offsets in the assembler. */
9870 if (symview_upper_bound <= 0xff)
9871 return DW_FORM_data1;
9872 else if (symview_upper_bound <= 0xffff)
9873 return DW_FORM_data2;
9874 else if (symview_upper_bound <= 0xffffffff)
9875 return DW_FORM_data4;
9876 else
9877 return DW_FORM_data8;
9878 case dw_val_class_vec:
9879 switch (constant_size (a->dw_attr_val.v.val_vec.length
9880 * a->dw_attr_val.v.val_vec.elt_size))
9882 case 1:
9883 return DW_FORM_block1;
9884 case 2:
9885 return DW_FORM_block2;
9886 case 4:
9887 return DW_FORM_block4;
9888 default:
9889 gcc_unreachable ();
9891 case dw_val_class_flag:
9892 if (dwarf_version >= 4)
9894 /* Currently all add_AT_flag calls pass in 1 as last argument,
9895 so DW_FORM_flag_present can be used. If that ever changes,
9896 we'll need to use DW_FORM_flag and have some optimization
9897 in build_abbrev_table that will change those to
9898 DW_FORM_flag_present if it is set to 1 in all DIEs using
9899 the same abbrev entry. */
9900 gcc_assert (a->dw_attr_val.v.val_flag == 1);
9901 return DW_FORM_flag_present;
9903 return DW_FORM_flag;
9904 case dw_val_class_die_ref:
9905 if (AT_ref_external (a))
9907 if (AT_ref (a)->comdat_type_p)
9908 return DW_FORM_ref_sig8;
9909 else
9910 return DW_FORM_ref_addr;
9912 else
9913 return DW_FORM_ref;
9914 case dw_val_class_fde_ref:
9915 return DW_FORM_data;
9916 case dw_val_class_lbl_id:
9917 return (AT_index (a) == NOT_INDEXED
9918 ? DW_FORM_addr : dwarf_FORM (DW_FORM_addrx));
9919 case dw_val_class_lineptr:
9920 case dw_val_class_macptr:
9921 case dw_val_class_loclistsptr:
9922 return dwarf_version >= 4 ? DW_FORM_sec_offset : DW_FORM_data;
9923 case dw_val_class_str:
9924 return AT_string_form (a);
9925 case dw_val_class_file:
9926 switch (constant_size (maybe_emit_file (a->dw_attr_val.v.val_file)))
9928 case 1:
9929 return DW_FORM_data1;
9930 case 2:
9931 return DW_FORM_data2;
9932 case 4:
9933 return DW_FORM_data4;
9934 default:
9935 gcc_unreachable ();
9938 case dw_val_class_data8:
9939 return DW_FORM_data8;
9941 case dw_val_class_high_pc:
9942 switch (DWARF2_ADDR_SIZE)
9944 case 1:
9945 return DW_FORM_data1;
9946 case 2:
9947 return DW_FORM_data2;
9948 case 4:
9949 return DW_FORM_data4;
9950 case 8:
9951 return DW_FORM_data8;
9952 default:
9953 gcc_unreachable ();
9956 case dw_val_class_discr_value:
9957 return (a->dw_attr_val.v.val_discr_value.pos
9958 ? DW_FORM_udata
9959 : DW_FORM_sdata);
9960 case dw_val_class_discr_list:
9961 switch (constant_size (size_of_discr_list (AT_discr_list (a))))
9963 case 1:
9964 return DW_FORM_block1;
9965 case 2:
9966 return DW_FORM_block2;
9967 case 4:
9968 return DW_FORM_block4;
9969 default:
9970 gcc_unreachable ();
9973 default:
9974 gcc_unreachable ();
9978 /* Output the encoding of an attribute value. */
9980 static void
9981 output_value_format (dw_attr_node *a)
9983 enum dwarf_form form = value_format (a);
9985 dw2_asm_output_data_uleb128 (form, "(%s)", dwarf_form_name (form));
9988 /* Given a die and id, produce the appropriate abbreviations. */
9990 static void
9991 output_die_abbrevs (unsigned long abbrev_id, dw_die_ref abbrev)
9993 unsigned ix;
9994 dw_attr_node *a_attr;
9996 dw2_asm_output_data_uleb128 (abbrev_id, "(abbrev code)");
9997 dw2_asm_output_data_uleb128 (abbrev->die_tag, "(TAG: %s)",
9998 dwarf_tag_name (abbrev->die_tag));
10000 if (abbrev->die_child != NULL)
10001 dw2_asm_output_data (1, DW_children_yes, "DW_children_yes");
10002 else
10003 dw2_asm_output_data (1, DW_children_no, "DW_children_no");
10005 for (ix = 0; vec_safe_iterate (abbrev->die_attr, ix, &a_attr); ix++)
10007 dw2_asm_output_data_uleb128 (a_attr->dw_attr, "(%s)",
10008 dwarf_attr_name (a_attr->dw_attr));
10009 output_value_format (a_attr);
10010 if (value_format (a_attr) == DW_FORM_implicit_const)
10012 if (AT_class (a_attr) == dw_val_class_file_implicit)
10014 int f = maybe_emit_file (a_attr->dw_attr_val.v.val_file);
10015 const char *filename = a_attr->dw_attr_val.v.val_file->filename;
10016 dw2_asm_output_data_sleb128 (f, "(%s)", filename);
10018 else
10019 dw2_asm_output_data_sleb128 (a_attr->dw_attr_val.v.val_int, NULL);
10023 dw2_asm_output_data (1, 0, NULL);
10024 dw2_asm_output_data (1, 0, NULL);
10028 /* Output the .debug_abbrev section which defines the DIE abbreviation
10029 table. */
10031 static void
10032 output_abbrev_section (void)
10034 unsigned int abbrev_id;
10035 dw_die_ref abbrev;
10037 FOR_EACH_VEC_SAFE_ELT (abbrev_die_table, abbrev_id, abbrev)
10038 if (abbrev_id != 0)
10039 output_die_abbrevs (abbrev_id, abbrev);
10041 /* Terminate the table. */
10042 dw2_asm_output_data (1, 0, NULL);
10045 /* Return a new location list, given the begin and end range, and the
10046 expression. */
10048 static inline dw_loc_list_ref
10049 new_loc_list (dw_loc_descr_ref expr, const char *begin, var_loc_view vbegin,
10050 const char *end, var_loc_view vend,
10051 const char *section)
10053 dw_loc_list_ref retlist = ggc_cleared_alloc<dw_loc_list_node> ();
10055 retlist->begin = begin;
10056 retlist->begin_entry = NULL;
10057 retlist->end = end;
10058 retlist->expr = expr;
10059 retlist->section = section;
10060 retlist->vbegin = vbegin;
10061 retlist->vend = vend;
10063 return retlist;
10066 /* Return true iff there's any nonzero view number in the loc list.
10068 ??? When views are not enabled, we'll often extend a single range
10069 to the entire function, so that we emit a single location
10070 expression rather than a location list. With views, even with a
10071 single range, we'll output a list if start or end have a nonzero
10072 view. If we change this, we may want to stop splitting a single
10073 range in dw_loc_list just because of a nonzero view, even if it
10074 straddles across hot/cold partitions. */
10076 static bool
10077 loc_list_has_views (dw_loc_list_ref list)
10079 if (!debug_variable_location_views)
10080 return false;
10082 for (dw_loc_list_ref loc = list;
10083 loc != NULL; loc = loc->dw_loc_next)
10084 if (!ZERO_VIEW_P (loc->vbegin) || !ZERO_VIEW_P (loc->vend))
10085 return true;
10087 return false;
10090 /* Generate a new internal symbol for this location list node, if it
10091 hasn't got one yet. */
10093 static inline void
10094 gen_llsym (dw_loc_list_ref list)
10096 gcc_assert (!list->ll_symbol);
10097 list->ll_symbol = gen_internal_sym ("LLST");
10099 if (!loc_list_has_views (list))
10100 return;
10102 if (dwarf2out_locviews_in_attribute ())
10104 /* Use the same label_num for the view list. */
10105 label_num--;
10106 list->vl_symbol = gen_internal_sym ("LVUS");
10108 else
10109 list->vl_symbol = list->ll_symbol;
10112 /* Generate a symbol for the list, but only if we really want to emit
10113 it as a list. */
10115 static inline void
10116 maybe_gen_llsym (dw_loc_list_ref list)
10118 if (!list || (!list->dw_loc_next && !loc_list_has_views (list)))
10119 return;
10121 gen_llsym (list);
10124 /* Determine whether or not to skip loc_list entry CURR. If SIZEP is
10125 NULL, don't consider size of the location expression. If we're not
10126 to skip it, and SIZEP is non-null, store the size of CURR->expr's
10127 representation in *SIZEP. */
10129 static bool
10130 skip_loc_list_entry (dw_loc_list_ref curr, unsigned long *sizep = NULL)
10132 /* Don't output an entry that starts and ends at the same address. */
10133 if (strcmp (curr->begin, curr->end) == 0
10134 && curr->vbegin == curr->vend && !curr->force)
10135 return true;
10137 if (!sizep)
10138 return false;
10140 unsigned long size = size_of_locs (curr->expr);
10142 /* If the expression is too large, drop it on the floor. We could
10143 perhaps put it into DW_TAG_dwarf_procedure and refer to that
10144 in the expression, but >= 64KB expressions for a single value
10145 in a single range are unlikely very useful. */
10146 if (dwarf_version < 5 && size > 0xffff)
10147 return true;
10149 *sizep = size;
10151 return false;
10154 /* Output a view pair loclist entry for CURR, if it requires one. */
10156 static void
10157 dwarf2out_maybe_output_loclist_view_pair (dw_loc_list_ref curr)
10159 if (!dwarf2out_locviews_in_loclist ())
10160 return;
10162 if (ZERO_VIEW_P (curr->vbegin) && ZERO_VIEW_P (curr->vend))
10163 return;
10165 #ifdef DW_LLE_view_pair
10166 dw2_asm_output_data (1, DW_LLE_view_pair, "DW_LLE_view_pair");
10168 if (dwarf2out_as_locview_support)
10170 if (ZERO_VIEW_P (curr->vbegin))
10171 dw2_asm_output_data_uleb128 (0, "Location view begin");
10172 else
10174 char label[MAX_ARTIFICIAL_LABEL_BYTES];
10175 ASM_GENERATE_INTERNAL_LABEL (label, "LVU", curr->vbegin);
10176 dw2_asm_output_symname_uleb128 (label, "Location view begin");
10179 if (ZERO_VIEW_P (curr->vend))
10180 dw2_asm_output_data_uleb128 (0, "Location view end");
10181 else
10183 char label[MAX_ARTIFICIAL_LABEL_BYTES];
10184 ASM_GENERATE_INTERNAL_LABEL (label, "LVU", curr->vend);
10185 dw2_asm_output_symname_uleb128 (label, "Location view end");
10188 else
10190 dw2_asm_output_data_uleb128 (curr->vbegin, "Location view begin");
10191 dw2_asm_output_data_uleb128 (curr->vend, "Location view end");
10193 #endif /* DW_LLE_view_pair */
10195 return;
10198 /* Output the location list given to us. */
10200 static void
10201 output_loc_list (dw_loc_list_ref list_head)
10203 int vcount = 0, lcount = 0;
10205 if (list_head->emitted)
10206 return;
10207 list_head->emitted = true;
10209 if (list_head->vl_symbol && dwarf2out_locviews_in_attribute ())
10211 ASM_OUTPUT_LABEL (asm_out_file, list_head->vl_symbol);
10213 for (dw_loc_list_ref curr = list_head; curr != NULL;
10214 curr = curr->dw_loc_next)
10216 unsigned long size;
10218 if (skip_loc_list_entry (curr, &size))
10219 continue;
10221 vcount++;
10223 /* ?? dwarf_split_debug_info? */
10224 if (dwarf2out_as_locview_support)
10226 char label[MAX_ARTIFICIAL_LABEL_BYTES];
10228 if (!ZERO_VIEW_P (curr->vbegin))
10230 ASM_GENERATE_INTERNAL_LABEL (label, "LVU", curr->vbegin);
10231 dw2_asm_output_symname_uleb128 (label,
10232 "View list begin (%s)",
10233 list_head->vl_symbol);
10235 else
10236 dw2_asm_output_data_uleb128 (0,
10237 "View list begin (%s)",
10238 list_head->vl_symbol);
10240 if (!ZERO_VIEW_P (curr->vend))
10242 ASM_GENERATE_INTERNAL_LABEL (label, "LVU", curr->vend);
10243 dw2_asm_output_symname_uleb128 (label,
10244 "View list end (%s)",
10245 list_head->vl_symbol);
10247 else
10248 dw2_asm_output_data_uleb128 (0,
10249 "View list end (%s)",
10250 list_head->vl_symbol);
10252 else
10254 dw2_asm_output_data_uleb128 (curr->vbegin,
10255 "View list begin (%s)",
10256 list_head->vl_symbol);
10257 dw2_asm_output_data_uleb128 (curr->vend,
10258 "View list end (%s)",
10259 list_head->vl_symbol);
10264 ASM_OUTPUT_LABEL (asm_out_file, list_head->ll_symbol);
10266 const char *last_section = NULL;
10267 const char *base_label = NULL;
10269 /* Walk the location list, and output each range + expression. */
10270 for (dw_loc_list_ref curr = list_head; curr != NULL;
10271 curr = curr->dw_loc_next)
10273 unsigned long size;
10275 /* Skip this entry? If we skip it here, we must skip it in the
10276 view list above as well. */
10277 if (skip_loc_list_entry (curr, &size))
10278 continue;
10280 lcount++;
10282 if (dwarf_version >= 5)
10284 if (dwarf_split_debug_info)
10286 dwarf2out_maybe_output_loclist_view_pair (curr);
10287 /* For -gsplit-dwarf, emit DW_LLE_starx_length, which has
10288 uleb128 index into .debug_addr and uleb128 length. */
10289 dw2_asm_output_data (1, DW_LLE_startx_length,
10290 "DW_LLE_startx_length (%s)",
10291 list_head->ll_symbol);
10292 dw2_asm_output_data_uleb128 (curr->begin_entry->index,
10293 "Location list range start index "
10294 "(%s)", curr->begin);
10295 /* FIXME: This will ICE ifndef HAVE_AS_LEB128.
10296 For that case we probably need to emit DW_LLE_startx_endx,
10297 but we'd need 2 .debug_addr entries rather than just one. */
10298 dw2_asm_output_delta_uleb128 (curr->end, curr->begin,
10299 "Location list length (%s)",
10300 list_head->ll_symbol);
10302 else if (!have_multiple_function_sections && HAVE_AS_LEB128)
10304 dwarf2out_maybe_output_loclist_view_pair (curr);
10305 /* If all code is in .text section, the base address is
10306 already provided by the CU attributes. Use
10307 DW_LLE_offset_pair where both addresses are uleb128 encoded
10308 offsets against that base. */
10309 dw2_asm_output_data (1, DW_LLE_offset_pair,
10310 "DW_LLE_offset_pair (%s)",
10311 list_head->ll_symbol);
10312 dw2_asm_output_delta_uleb128 (curr->begin, curr->section,
10313 "Location list begin address (%s)",
10314 list_head->ll_symbol);
10315 dw2_asm_output_delta_uleb128 (curr->end, curr->section,
10316 "Location list end address (%s)",
10317 list_head->ll_symbol);
10319 else if (HAVE_AS_LEB128)
10321 /* Otherwise, find out how many consecutive entries could share
10322 the same base entry. If just one, emit DW_LLE_start_length,
10323 otherwise emit DW_LLE_base_address for the base address
10324 followed by a series of DW_LLE_offset_pair. */
10325 if (last_section == NULL || curr->section != last_section)
10327 dw_loc_list_ref curr2;
10328 for (curr2 = curr->dw_loc_next; curr2 != NULL;
10329 curr2 = curr2->dw_loc_next)
10331 if (strcmp (curr2->begin, curr2->end) == 0
10332 && !curr2->force)
10333 continue;
10334 break;
10336 if (curr2 == NULL || curr->section != curr2->section)
10337 last_section = NULL;
10338 else
10340 last_section = curr->section;
10341 base_label = curr->begin;
10342 dw2_asm_output_data (1, DW_LLE_base_address,
10343 "DW_LLE_base_address (%s)",
10344 list_head->ll_symbol);
10345 dw2_asm_output_addr (DWARF2_ADDR_SIZE, base_label,
10346 "Base address (%s)",
10347 list_head->ll_symbol);
10350 /* Only one entry with the same base address. Use
10351 DW_LLE_start_length with absolute address and uleb128
10352 length. */
10353 if (last_section == NULL)
10355 dwarf2out_maybe_output_loclist_view_pair (curr);
10356 dw2_asm_output_data (1, DW_LLE_start_length,
10357 "DW_LLE_start_length (%s)",
10358 list_head->ll_symbol);
10359 dw2_asm_output_addr (DWARF2_ADDR_SIZE, curr->begin,
10360 "Location list begin address (%s)",
10361 list_head->ll_symbol);
10362 dw2_asm_output_delta_uleb128 (curr->end, curr->begin,
10363 "Location list length "
10364 "(%s)", list_head->ll_symbol);
10366 /* Otherwise emit DW_LLE_offset_pair, relative to above emitted
10367 DW_LLE_base_address. */
10368 else
10370 dwarf2out_maybe_output_loclist_view_pair (curr);
10371 dw2_asm_output_data (1, DW_LLE_offset_pair,
10372 "DW_LLE_offset_pair (%s)",
10373 list_head->ll_symbol);
10374 dw2_asm_output_delta_uleb128 (curr->begin, base_label,
10375 "Location list begin address "
10376 "(%s)", list_head->ll_symbol);
10377 dw2_asm_output_delta_uleb128 (curr->end, base_label,
10378 "Location list end address "
10379 "(%s)", list_head->ll_symbol);
10382 /* The assembler does not support .uleb128 directive. Emit
10383 DW_LLE_start_end with a pair of absolute addresses. */
10384 else
10386 dwarf2out_maybe_output_loclist_view_pair (curr);
10387 dw2_asm_output_data (1, DW_LLE_start_end,
10388 "DW_LLE_start_end (%s)",
10389 list_head->ll_symbol);
10390 dw2_asm_output_addr (DWARF2_ADDR_SIZE, curr->begin,
10391 "Location list begin address (%s)",
10392 list_head->ll_symbol);
10393 dw2_asm_output_addr (DWARF2_ADDR_SIZE, curr->end,
10394 "Location list end address (%s)",
10395 list_head->ll_symbol);
10398 else if (dwarf_split_debug_info)
10400 /* For -gsplit-dwarf -gdwarf-{2,3,4} emit index into .debug_addr
10401 and 4 byte length. */
10402 dw2_asm_output_data (1, DW_LLE_GNU_start_length_entry,
10403 "Location list start/length entry (%s)",
10404 list_head->ll_symbol);
10405 dw2_asm_output_data_uleb128 (curr->begin_entry->index,
10406 "Location list range start index (%s)",
10407 curr->begin);
10408 /* The length field is 4 bytes. If we ever need to support
10409 an 8-byte length, we can add a new DW_LLE code or fall back
10410 to DW_LLE_GNU_start_end_entry. */
10411 dw2_asm_output_delta (4, curr->end, curr->begin,
10412 "Location list range length (%s)",
10413 list_head->ll_symbol);
10415 else if (!have_multiple_function_sections)
10417 /* Pair of relative addresses against start of text section. */
10418 dw2_asm_output_delta (DWARF2_ADDR_SIZE, curr->begin, curr->section,
10419 "Location list begin address (%s)",
10420 list_head->ll_symbol);
10421 dw2_asm_output_delta (DWARF2_ADDR_SIZE, curr->end, curr->section,
10422 "Location list end address (%s)",
10423 list_head->ll_symbol);
10425 else
10427 /* Pair of absolute addresses. */
10428 dw2_asm_output_addr (DWARF2_ADDR_SIZE, curr->begin,
10429 "Location list begin address (%s)",
10430 list_head->ll_symbol);
10431 dw2_asm_output_addr (DWARF2_ADDR_SIZE, curr->end,
10432 "Location list end address (%s)",
10433 list_head->ll_symbol);
10436 /* Output the block length for this list of location operations. */
10437 if (dwarf_version >= 5)
10438 dw2_asm_output_data_uleb128 (size, "Location expression size");
10439 else
10441 gcc_assert (size <= 0xffff);
10442 dw2_asm_output_data (2, size, "Location expression size");
10445 output_loc_sequence (curr->expr, -1);
10448 /* And finally list termination. */
10449 if (dwarf_version >= 5)
10450 dw2_asm_output_data (1, DW_LLE_end_of_list,
10451 "DW_LLE_end_of_list (%s)", list_head->ll_symbol);
10452 else if (dwarf_split_debug_info)
10453 dw2_asm_output_data (1, DW_LLE_GNU_end_of_list_entry,
10454 "Location list terminator (%s)",
10455 list_head->ll_symbol);
10456 else
10458 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0,
10459 "Location list terminator begin (%s)",
10460 list_head->ll_symbol);
10461 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0,
10462 "Location list terminator end (%s)",
10463 list_head->ll_symbol);
10466 gcc_assert (!list_head->vl_symbol
10467 || vcount == lcount * (dwarf2out_locviews_in_attribute () ? 1 : 0));
10470 /* Output a range_list offset into the .debug_ranges or .debug_rnglists
10471 section. Emit a relocated reference if val_entry is NULL, otherwise,
10472 emit an indirect reference. */
10474 static void
10475 output_range_list_offset (dw_attr_node *a)
10477 const char *name = dwarf_attr_name (a->dw_attr);
10479 if (a->dw_attr_val.val_entry == RELOCATED_OFFSET)
10481 if (dwarf_version >= 5)
10483 dw_ranges *r = &(*ranges_table)[a->dw_attr_val.v.val_offset];
10484 dw2_asm_output_offset (DWARF_OFFSET_SIZE, r->label,
10485 debug_ranges_section, "%s", name);
10487 else
10489 char *p = strchr (ranges_section_label, '\0');
10490 sprintf (p, "+" HOST_WIDE_INT_PRINT_HEX,
10491 a->dw_attr_val.v.val_offset * 2 * DWARF2_ADDR_SIZE);
10492 dw2_asm_output_offset (DWARF_OFFSET_SIZE, ranges_section_label,
10493 debug_ranges_section, "%s", name);
10494 *p = '\0';
10497 else if (dwarf_version >= 5)
10499 dw_ranges *r = &(*ranges_table)[a->dw_attr_val.v.val_offset];
10500 gcc_assert (rnglist_idx);
10501 dw2_asm_output_data_uleb128 (r->idx, "%s", name);
10503 else
10504 dw2_asm_output_data (DWARF_OFFSET_SIZE,
10505 a->dw_attr_val.v.val_offset * 2 * DWARF2_ADDR_SIZE,
10506 "%s (offset from %s)", name, ranges_section_label);
10509 /* Output the offset into the debug_loc section. */
10511 static void
10512 output_loc_list_offset (dw_attr_node *a)
10514 char *sym = AT_loc_list (a)->ll_symbol;
10516 gcc_assert (sym);
10517 if (!dwarf_split_debug_info)
10518 dw2_asm_output_offset (DWARF_OFFSET_SIZE, sym, debug_loc_section,
10519 "%s", dwarf_attr_name (a->dw_attr));
10520 else if (dwarf_version >= 5)
10522 gcc_assert (AT_loc_list (a)->num_assigned);
10523 dw2_asm_output_data_uleb128 (AT_loc_list (a)->hash, "%s (%s)",
10524 dwarf_attr_name (a->dw_attr),
10525 sym);
10527 else
10528 dw2_asm_output_delta (DWARF_OFFSET_SIZE, sym, loc_section_label,
10529 "%s", dwarf_attr_name (a->dw_attr));
10532 /* Output the offset into the debug_loc section. */
10534 static void
10535 output_view_list_offset (dw_attr_node *a)
10537 char *sym = (*AT_loc_list_ptr (a))->vl_symbol;
10539 gcc_assert (sym);
10540 if (dwarf_split_debug_info)
10541 dw2_asm_output_delta (DWARF_OFFSET_SIZE, sym, loc_section_label,
10542 "%s", dwarf_attr_name (a->dw_attr));
10543 else
10544 dw2_asm_output_offset (DWARF_OFFSET_SIZE, sym, debug_loc_section,
10545 "%s", dwarf_attr_name (a->dw_attr));
10548 /* Output an attribute's index or value appropriately. */
10550 static void
10551 output_attr_index_or_value (dw_attr_node *a)
10553 const char *name = dwarf_attr_name (a->dw_attr);
10555 if (dwarf_split_debug_info && AT_index (a) != NOT_INDEXED)
10557 dw2_asm_output_data_uleb128 (AT_index (a), "%s", name);
10558 return;
10560 switch (AT_class (a))
10562 case dw_val_class_addr:
10563 dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE, AT_addr (a), "%s", name);
10564 break;
10565 case dw_val_class_high_pc:
10566 case dw_val_class_lbl_id:
10567 dw2_asm_output_addr (DWARF2_ADDR_SIZE, AT_lbl (a), "%s", name);
10568 break;
10569 default:
10570 gcc_unreachable ();
10574 /* Output a type signature. */
10576 static inline void
10577 output_signature (const char *sig, const char *name)
10579 int i;
10581 for (i = 0; i < DWARF_TYPE_SIGNATURE_SIZE; i++)
10582 dw2_asm_output_data (1, sig[i], i == 0 ? "%s" : NULL, name);
10585 /* Output a discriminant value. */
10587 static inline void
10588 output_discr_value (dw_discr_value *discr_value, const char *name)
10590 if (discr_value->pos)
10591 dw2_asm_output_data_uleb128 (discr_value->v.uval, "%s", name);
10592 else
10593 dw2_asm_output_data_sleb128 (discr_value->v.sval, "%s", name);
10596 /* Output the DIE and its attributes. Called recursively to generate
10597 the definitions of each child DIE. */
10599 static void
10600 output_die (dw_die_ref die)
10602 dw_attr_node *a;
10603 dw_die_ref c;
10604 unsigned long size;
10605 unsigned ix;
10607 dw2_asm_output_data_uleb128 (die->die_abbrev, "(DIE (%#lx) %s)",
10608 (unsigned long)die->die_offset,
10609 dwarf_tag_name (die->die_tag));
10611 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
10613 const char *name = dwarf_attr_name (a->dw_attr);
10615 switch (AT_class (a))
10617 case dw_val_class_addr:
10618 output_attr_index_or_value (a);
10619 break;
10621 case dw_val_class_offset:
10622 dw2_asm_output_data (DWARF_OFFSET_SIZE, a->dw_attr_val.v.val_offset,
10623 "%s", name);
10624 break;
10626 case dw_val_class_range_list:
10627 output_range_list_offset (a);
10628 break;
10630 case dw_val_class_loc:
10631 size = size_of_locs (AT_loc (a));
10633 /* Output the block length for this list of location operations. */
10634 if (dwarf_version >= 4)
10635 dw2_asm_output_data_uleb128 (size, "%s", name);
10636 else
10637 dw2_asm_output_data (constant_size (size), size, "%s", name);
10639 output_loc_sequence (AT_loc (a), -1);
10640 break;
10642 case dw_val_class_const:
10643 /* ??? It would be slightly more efficient to use a scheme like is
10644 used for unsigned constants below, but gdb 4.x does not sign
10645 extend. Gdb 5.x does sign extend. */
10646 dw2_asm_output_data_sleb128 (AT_int (a), "%s", name);
10647 break;
10649 case dw_val_class_unsigned_const:
10651 int csize = constant_size (AT_unsigned (a));
10652 if (dwarf_version == 3
10653 && a->dw_attr == DW_AT_data_member_location
10654 && csize >= 4)
10655 dw2_asm_output_data_uleb128 (AT_unsigned (a), "%s", name);
10656 else
10657 dw2_asm_output_data (csize, AT_unsigned (a), "%s", name);
10659 break;
10661 case dw_val_class_symview:
10663 int vsize;
10664 if (symview_upper_bound <= 0xff)
10665 vsize = 1;
10666 else if (symview_upper_bound <= 0xffff)
10667 vsize = 2;
10668 else if (symview_upper_bound <= 0xffffffff)
10669 vsize = 4;
10670 else
10671 vsize = 8;
10672 dw2_asm_output_addr (vsize, a->dw_attr_val.v.val_symbolic_view,
10673 "%s", name);
10675 break;
10677 case dw_val_class_const_implicit:
10678 if (flag_debug_asm)
10679 fprintf (asm_out_file, "\t\t\t%s %s ("
10680 HOST_WIDE_INT_PRINT_DEC ")\n",
10681 ASM_COMMENT_START, name, AT_int (a));
10682 break;
10684 case dw_val_class_unsigned_const_implicit:
10685 if (flag_debug_asm)
10686 fprintf (asm_out_file, "\t\t\t%s %s ("
10687 HOST_WIDE_INT_PRINT_HEX ")\n",
10688 ASM_COMMENT_START, name, AT_unsigned (a));
10689 break;
10691 case dw_val_class_const_double:
10693 unsigned HOST_WIDE_INT first, second;
10695 if (HOST_BITS_PER_WIDE_INT >= DWARF_LARGEST_DATA_FORM_BITS)
10696 dw2_asm_output_data (1,
10697 HOST_BITS_PER_DOUBLE_INT
10698 / HOST_BITS_PER_CHAR,
10699 NULL);
10701 if (WORDS_BIG_ENDIAN)
10703 first = a->dw_attr_val.v.val_double.high;
10704 second = a->dw_attr_val.v.val_double.low;
10706 else
10708 first = a->dw_attr_val.v.val_double.low;
10709 second = a->dw_attr_val.v.val_double.high;
10712 dw2_asm_output_data (HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR,
10713 first, "%s", name);
10714 dw2_asm_output_data (HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR,
10715 second, NULL);
10717 break;
10719 case dw_val_class_wide_int:
10721 int i;
10722 int len = get_full_len (*a->dw_attr_val.v.val_wide);
10723 int l = HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR;
10724 if (len * HOST_BITS_PER_WIDE_INT > DWARF_LARGEST_DATA_FORM_BITS)
10725 dw2_asm_output_data (1, get_full_len (*a->dw_attr_val.v.val_wide)
10726 * l, NULL);
10728 if (WORDS_BIG_ENDIAN)
10729 for (i = len - 1; i >= 0; --i)
10731 dw2_asm_output_data (l, a->dw_attr_val.v.val_wide->elt (i),
10732 "%s", name);
10733 name = "";
10735 else
10736 for (i = 0; i < len; ++i)
10738 dw2_asm_output_data (l, a->dw_attr_val.v.val_wide->elt (i),
10739 "%s", name);
10740 name = "";
10743 break;
10745 case dw_val_class_vec:
10747 unsigned int elt_size = a->dw_attr_val.v.val_vec.elt_size;
10748 unsigned int len = a->dw_attr_val.v.val_vec.length;
10749 unsigned int i;
10750 unsigned char *p;
10752 dw2_asm_output_data (constant_size (len * elt_size),
10753 len * elt_size, "%s", name);
10754 if (elt_size > sizeof (HOST_WIDE_INT))
10756 elt_size /= 2;
10757 len *= 2;
10759 for (i = 0, p = (unsigned char *) a->dw_attr_val.v.val_vec.array;
10760 i < len;
10761 i++, p += elt_size)
10762 dw2_asm_output_data (elt_size, extract_int (p, elt_size),
10763 "fp or vector constant word %u", i);
10764 break;
10767 case dw_val_class_flag:
10768 if (dwarf_version >= 4)
10770 /* Currently all add_AT_flag calls pass in 1 as last argument,
10771 so DW_FORM_flag_present can be used. If that ever changes,
10772 we'll need to use DW_FORM_flag and have some optimization
10773 in build_abbrev_table that will change those to
10774 DW_FORM_flag_present if it is set to 1 in all DIEs using
10775 the same abbrev entry. */
10776 gcc_assert (AT_flag (a) == 1);
10777 if (flag_debug_asm)
10778 fprintf (asm_out_file, "\t\t\t%s %s\n",
10779 ASM_COMMENT_START, name);
10780 break;
10782 dw2_asm_output_data (1, AT_flag (a), "%s", name);
10783 break;
10785 case dw_val_class_loc_list:
10786 output_loc_list_offset (a);
10787 break;
10789 case dw_val_class_view_list:
10790 output_view_list_offset (a);
10791 break;
10793 case dw_val_class_die_ref:
10794 if (AT_ref_external (a))
10796 if (AT_ref (a)->comdat_type_p)
10798 comdat_type_node *type_node
10799 = AT_ref (a)->die_id.die_type_node;
10801 gcc_assert (type_node);
10802 output_signature (type_node->signature, name);
10804 else
10806 const char *sym = AT_ref (a)->die_id.die_symbol;
10807 int size;
10809 gcc_assert (sym);
10810 /* In DWARF2, DW_FORM_ref_addr is sized by target address
10811 length, whereas in DWARF3 it's always sized as an
10812 offset. */
10813 if (dwarf_version == 2)
10814 size = DWARF2_ADDR_SIZE;
10815 else
10816 size = DWARF_OFFSET_SIZE;
10817 /* ??? We cannot unconditionally output die_offset if
10818 non-zero - others might create references to those
10819 DIEs via symbols.
10820 And we do not clear its DIE offset after outputting it
10821 (and the label refers to the actual DIEs, not the
10822 DWARF CU unit header which is when using label + offset
10823 would be the correct thing to do).
10824 ??? This is the reason for the with_offset flag. */
10825 if (AT_ref (a)->with_offset)
10826 dw2_asm_output_offset (size, sym, AT_ref (a)->die_offset,
10827 debug_info_section, "%s", name);
10828 else
10829 dw2_asm_output_offset (size, sym, debug_info_section, "%s",
10830 name);
10833 else
10835 gcc_assert (AT_ref (a)->die_offset);
10836 dw2_asm_output_data (DWARF_OFFSET_SIZE, AT_ref (a)->die_offset,
10837 "%s", name);
10839 break;
10841 case dw_val_class_fde_ref:
10843 char l1[MAX_ARTIFICIAL_LABEL_BYTES];
10845 ASM_GENERATE_INTERNAL_LABEL (l1, FDE_LABEL,
10846 a->dw_attr_val.v.val_fde_index * 2);
10847 dw2_asm_output_offset (DWARF_OFFSET_SIZE, l1, debug_frame_section,
10848 "%s", name);
10850 break;
10852 case dw_val_class_vms_delta:
10853 #ifdef ASM_OUTPUT_DWARF_VMS_DELTA
10854 dw2_asm_output_vms_delta (DWARF_OFFSET_SIZE,
10855 AT_vms_delta2 (a), AT_vms_delta1 (a),
10856 "%s", name);
10857 #else
10858 dw2_asm_output_delta (DWARF_OFFSET_SIZE,
10859 AT_vms_delta2 (a), AT_vms_delta1 (a),
10860 "%s", name);
10861 #endif
10862 break;
10864 case dw_val_class_lbl_id:
10865 output_attr_index_or_value (a);
10866 break;
10868 case dw_val_class_lineptr:
10869 dw2_asm_output_offset (DWARF_OFFSET_SIZE, AT_lbl (a),
10870 debug_line_section, "%s", name);
10871 break;
10873 case dw_val_class_macptr:
10874 dw2_asm_output_offset (DWARF_OFFSET_SIZE, AT_lbl (a),
10875 debug_macinfo_section, "%s", name);
10876 break;
10878 case dw_val_class_loclistsptr:
10879 dw2_asm_output_offset (DWARF_OFFSET_SIZE, AT_lbl (a),
10880 debug_loc_section, "%s", name);
10881 break;
10883 case dw_val_class_str:
10884 if (a->dw_attr_val.v.val_str->form == DW_FORM_strp)
10885 dw2_asm_output_offset (DWARF_OFFSET_SIZE,
10886 a->dw_attr_val.v.val_str->label,
10887 debug_str_section,
10888 "%s: \"%s\"", name, AT_string (a));
10889 else if (a->dw_attr_val.v.val_str->form == DW_FORM_line_strp)
10890 dw2_asm_output_offset (DWARF_OFFSET_SIZE,
10891 a->dw_attr_val.v.val_str->label,
10892 debug_line_str_section,
10893 "%s: \"%s\"", name, AT_string (a));
10894 else if (a->dw_attr_val.v.val_str->form == dwarf_FORM (DW_FORM_strx))
10895 dw2_asm_output_data_uleb128 (AT_index (a),
10896 "%s: \"%s\"", name, AT_string (a));
10897 else
10898 dw2_asm_output_nstring (AT_string (a), -1, "%s", name);
10899 break;
10901 case dw_val_class_file:
10903 int f = maybe_emit_file (a->dw_attr_val.v.val_file);
10905 dw2_asm_output_data (constant_size (f), f, "%s (%s)", name,
10906 a->dw_attr_val.v.val_file->filename);
10907 break;
10910 case dw_val_class_file_implicit:
10911 if (flag_debug_asm)
10912 fprintf (asm_out_file, "\t\t\t%s %s (%d, %s)\n",
10913 ASM_COMMENT_START, name,
10914 maybe_emit_file (a->dw_attr_val.v.val_file),
10915 a->dw_attr_val.v.val_file->filename);
10916 break;
10918 case dw_val_class_data8:
10920 int i;
10922 for (i = 0; i < 8; i++)
10923 dw2_asm_output_data (1, a->dw_attr_val.v.val_data8[i],
10924 i == 0 ? "%s" : NULL, name);
10925 break;
10928 case dw_val_class_high_pc:
10929 dw2_asm_output_delta (DWARF2_ADDR_SIZE, AT_lbl (a),
10930 get_AT_low_pc (die), "DW_AT_high_pc");
10931 break;
10933 case dw_val_class_discr_value:
10934 output_discr_value (&a->dw_attr_val.v.val_discr_value, name);
10935 break;
10937 case dw_val_class_discr_list:
10939 dw_discr_list_ref list = AT_discr_list (a);
10940 const int size = size_of_discr_list (list);
10942 /* This is a block, so output its length first. */
10943 dw2_asm_output_data (constant_size (size), size,
10944 "%s: block size", name);
10946 for (; list != NULL; list = list->dw_discr_next)
10948 /* One byte for the discriminant value descriptor, and then as
10949 many LEB128 numbers as required. */
10950 if (list->dw_discr_range)
10951 dw2_asm_output_data (1, DW_DSC_range,
10952 "%s: DW_DSC_range", name);
10953 else
10954 dw2_asm_output_data (1, DW_DSC_label,
10955 "%s: DW_DSC_label", name);
10957 output_discr_value (&list->dw_discr_lower_bound, name);
10958 if (list->dw_discr_range)
10959 output_discr_value (&list->dw_discr_upper_bound, name);
10961 break;
10964 default:
10965 gcc_unreachable ();
10969 FOR_EACH_CHILD (die, c, output_die (c));
10971 /* Add null byte to terminate sibling list. */
10972 if (die->die_child != NULL)
10973 dw2_asm_output_data (1, 0, "end of children of DIE %#lx",
10974 (unsigned long) die->die_offset);
10977 /* Output the dwarf version number. */
10979 static void
10980 output_dwarf_version ()
10982 /* ??? For now, if -gdwarf-6 is specified, we output version 5 with
10983 views in loclist. That will change eventually. */
10984 if (dwarf_version == 6)
10986 static bool once;
10987 if (!once)
10989 warning (0, "%<-gdwarf-6%> is output as version 5 with "
10990 "incompatibilities");
10991 once = true;
10993 dw2_asm_output_data (2, 5, "DWARF version number");
10995 else
10996 dw2_asm_output_data (2, dwarf_version, "DWARF version number");
10999 /* Output the compilation unit that appears at the beginning of the
11000 .debug_info section, and precedes the DIE descriptions. */
11002 static void
11003 output_compilation_unit_header (enum dwarf_unit_type ut)
11005 if (!XCOFF_DEBUGGING_INFO)
11007 if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
11008 dw2_asm_output_data (4, 0xffffffff,
11009 "Initial length escape value indicating 64-bit DWARF extension");
11010 dw2_asm_output_data (DWARF_OFFSET_SIZE,
11011 next_die_offset - DWARF_INITIAL_LENGTH_SIZE,
11012 "Length of Compilation Unit Info");
11015 output_dwarf_version ();
11016 if (dwarf_version >= 5)
11018 const char *name;
11019 switch (ut)
11021 case DW_UT_compile: name = "DW_UT_compile"; break;
11022 case DW_UT_type: name = "DW_UT_type"; break;
11023 case DW_UT_split_compile: name = "DW_UT_split_compile"; break;
11024 case DW_UT_split_type: name = "DW_UT_split_type"; break;
11025 default: gcc_unreachable ();
11027 dw2_asm_output_data (1, ut, "%s", name);
11028 dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Pointer Size (in bytes)");
11030 dw2_asm_output_offset (DWARF_OFFSET_SIZE, abbrev_section_label,
11031 debug_abbrev_section,
11032 "Offset Into Abbrev. Section");
11033 if (dwarf_version < 5)
11034 dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Pointer Size (in bytes)");
11037 /* Output the compilation unit DIE and its children. */
11039 static void
11040 output_comp_unit (dw_die_ref die, int output_if_empty,
11041 const unsigned char *dwo_id)
11043 const char *secname, *oldsym;
11044 char *tmp;
11046 /* Unless we are outputting main CU, we may throw away empty ones. */
11047 if (!output_if_empty && die->die_child == NULL)
11048 return;
11050 /* Even if there are no children of this DIE, we must output the information
11051 about the compilation unit. Otherwise, on an empty translation unit, we
11052 will generate a present, but empty, .debug_info section. IRIX 6.5 `nm'
11053 will then complain when examining the file. First mark all the DIEs in
11054 this CU so we know which get local refs. */
11055 mark_dies (die);
11057 external_ref_hash_type *extern_map = optimize_external_refs (die);
11059 /* For now, optimize only the main CU, in order to optimize the rest
11060 we'd need to see all of them earlier. Leave the rest for post-linking
11061 tools like DWZ. */
11062 if (die == comp_unit_die ())
11063 abbrev_opt_start = vec_safe_length (abbrev_die_table);
11065 build_abbrev_table (die, extern_map);
11067 optimize_abbrev_table ();
11069 delete extern_map;
11071 /* Initialize the beginning DIE offset - and calculate sizes/offsets. */
11072 next_die_offset = (dwo_id
11073 ? DWARF_COMPILE_UNIT_SKELETON_HEADER_SIZE
11074 : DWARF_COMPILE_UNIT_HEADER_SIZE);
11075 calc_die_sizes (die);
11077 oldsym = die->die_id.die_symbol;
11078 if (oldsym && die->comdat_type_p)
11080 tmp = XALLOCAVEC (char, strlen (oldsym) + 24);
11082 sprintf (tmp, ".gnu.linkonce.wi.%s", oldsym);
11083 secname = tmp;
11084 die->die_id.die_symbol = NULL;
11085 switch_to_section (get_section (secname, SECTION_DEBUG, NULL));
11087 else
11089 switch_to_section (debug_info_section);
11090 ASM_OUTPUT_LABEL (asm_out_file, debug_info_section_label);
11091 info_section_emitted = true;
11094 /* For LTO cross unit DIE refs we want a symbol on the start of the
11095 debuginfo section, not on the CU DIE. */
11096 if ((flag_generate_lto || flag_generate_offload) && oldsym)
11098 /* ??? No way to get visibility assembled without a decl. */
11099 tree decl = build_decl (UNKNOWN_LOCATION, VAR_DECL,
11100 get_identifier (oldsym), char_type_node);
11101 TREE_PUBLIC (decl) = true;
11102 TREE_STATIC (decl) = true;
11103 DECL_ARTIFICIAL (decl) = true;
11104 DECL_VISIBILITY (decl) = VISIBILITY_HIDDEN;
11105 DECL_VISIBILITY_SPECIFIED (decl) = true;
11106 targetm.asm_out.assemble_visibility (decl, VISIBILITY_HIDDEN);
11107 #ifdef ASM_WEAKEN_LABEL
11108 /* We prefer a .weak because that handles duplicates from duplicate
11109 archive members in a graceful way. */
11110 ASM_WEAKEN_LABEL (asm_out_file, oldsym);
11111 #else
11112 targetm.asm_out.globalize_label (asm_out_file, oldsym);
11113 #endif
11114 ASM_OUTPUT_LABEL (asm_out_file, oldsym);
11117 /* Output debugging information. */
11118 output_compilation_unit_header (dwo_id
11119 ? DW_UT_split_compile : DW_UT_compile);
11120 if (dwarf_version >= 5)
11122 if (dwo_id != NULL)
11123 for (int i = 0; i < 8; i++)
11124 dw2_asm_output_data (1, dwo_id[i], i == 0 ? "DWO id" : NULL);
11126 output_die (die);
11128 /* Leave the marks on the main CU, so we can check them in
11129 output_pubnames. */
11130 if (oldsym)
11132 unmark_dies (die);
11133 die->die_id.die_symbol = oldsym;
11137 /* Whether to generate the DWARF accelerator tables in .debug_pubnames
11138 and .debug_pubtypes. This is configured per-target, but can be
11139 overridden by the -gpubnames or -gno-pubnames options. */
11141 static inline bool
11142 want_pubnames (void)
11144 if (debug_info_level <= DINFO_LEVEL_TERSE
11145 /* Names and types go to the early debug part only. */
11146 || in_lto_p)
11147 return false;
11148 if (debug_generate_pub_sections != -1)
11149 return debug_generate_pub_sections;
11150 return targetm.want_debug_pub_sections;
11153 /* Add the DW_AT_GNU_pubnames and DW_AT_GNU_pubtypes attributes. */
11155 static void
11156 add_AT_pubnames (dw_die_ref die)
11158 if (want_pubnames ())
11159 add_AT_flag (die, DW_AT_GNU_pubnames, 1);
11162 /* Add a string attribute value to a skeleton DIE. */
11164 static inline void
11165 add_skeleton_AT_string (dw_die_ref die, enum dwarf_attribute attr_kind,
11166 const char *str)
11168 dw_attr_node attr;
11169 struct indirect_string_node *node;
11171 if (! skeleton_debug_str_hash)
11172 skeleton_debug_str_hash
11173 = hash_table<indirect_string_hasher>::create_ggc (10);
11175 node = find_AT_string_in_table (str, skeleton_debug_str_hash);
11176 find_string_form (node);
11177 if (node->form == dwarf_FORM (DW_FORM_strx))
11178 node->form = DW_FORM_strp;
11180 attr.dw_attr = attr_kind;
11181 attr.dw_attr_val.val_class = dw_val_class_str;
11182 attr.dw_attr_val.val_entry = NULL;
11183 attr.dw_attr_val.v.val_str = node;
11184 add_dwarf_attr (die, &attr);
11187 /* Helper function to generate top-level dies for skeleton debug_info and
11188 debug_types. */
11190 static void
11191 add_top_level_skeleton_die_attrs (dw_die_ref die)
11193 const char *dwo_file_name = concat (aux_base_name, ".dwo", NULL);
11194 const char *comp_dir = comp_dir_string ();
11196 add_skeleton_AT_string (die, dwarf_AT (DW_AT_dwo_name), dwo_file_name);
11197 if (comp_dir != NULL)
11198 add_skeleton_AT_string (die, DW_AT_comp_dir, comp_dir);
11199 add_AT_pubnames (die);
11200 if (addr_index_table != NULL && addr_index_table->size () > 0)
11201 add_AT_lineptr (die, dwarf_AT (DW_AT_addr_base), debug_addr_section_label);
11204 /* Output skeleton debug sections that point to the dwo file. */
11206 static void
11207 output_skeleton_debug_sections (dw_die_ref comp_unit,
11208 const unsigned char *dwo_id)
11210 /* These attributes will be found in the full debug_info section. */
11211 remove_AT (comp_unit, DW_AT_producer);
11212 remove_AT (comp_unit, DW_AT_language);
11214 switch_to_section (debug_skeleton_info_section);
11215 ASM_OUTPUT_LABEL (asm_out_file, debug_skeleton_info_section_label);
11217 /* Produce the skeleton compilation-unit header. This one differs enough from
11218 a normal CU header that it's better not to call output_compilation_unit
11219 header. */
11220 if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
11221 dw2_asm_output_data (4, 0xffffffff,
11222 "Initial length escape value indicating 64-bit "
11223 "DWARF extension");
11225 dw2_asm_output_data (DWARF_OFFSET_SIZE,
11226 DWARF_COMPILE_UNIT_SKELETON_HEADER_SIZE
11227 - DWARF_INITIAL_LENGTH_SIZE
11228 + size_of_die (comp_unit),
11229 "Length of Compilation Unit Info");
11230 output_dwarf_version ();
11231 if (dwarf_version >= 5)
11233 dw2_asm_output_data (1, DW_UT_skeleton, "DW_UT_skeleton");
11234 dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Pointer Size (in bytes)");
11236 dw2_asm_output_offset (DWARF_OFFSET_SIZE, debug_skeleton_abbrev_section_label,
11237 debug_skeleton_abbrev_section,
11238 "Offset Into Abbrev. Section");
11239 if (dwarf_version < 5)
11240 dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Pointer Size (in bytes)");
11241 else
11242 for (int i = 0; i < 8; i++)
11243 dw2_asm_output_data (1, dwo_id[i], i == 0 ? "DWO id" : NULL);
11245 comp_unit->die_abbrev = SKELETON_COMP_DIE_ABBREV;
11246 output_die (comp_unit);
11248 /* Build the skeleton debug_abbrev section. */
11249 switch_to_section (debug_skeleton_abbrev_section);
11250 ASM_OUTPUT_LABEL (asm_out_file, debug_skeleton_abbrev_section_label);
11252 output_die_abbrevs (SKELETON_COMP_DIE_ABBREV, comp_unit);
11254 dw2_asm_output_data (1, 0, "end of skeleton .debug_abbrev");
11257 /* Output a comdat type unit DIE and its children. */
11259 static void
11260 output_comdat_type_unit (comdat_type_node *node,
11261 bool early_lto_debug ATTRIBUTE_UNUSED)
11263 const char *secname;
11264 char *tmp;
11265 int i;
11266 #if defined (OBJECT_FORMAT_ELF)
11267 tree comdat_key;
11268 #endif
11270 /* First mark all the DIEs in this CU so we know which get local refs. */
11271 mark_dies (node->root_die);
11273 external_ref_hash_type *extern_map = optimize_external_refs (node->root_die);
11275 build_abbrev_table (node->root_die, extern_map);
11277 delete extern_map;
11278 extern_map = NULL;
11280 /* Initialize the beginning DIE offset - and calculate sizes/offsets. */
11281 next_die_offset = DWARF_COMDAT_TYPE_UNIT_HEADER_SIZE;
11282 calc_die_sizes (node->root_die);
11284 #if defined (OBJECT_FORMAT_ELF)
11285 if (dwarf_version >= 5)
11287 if (!dwarf_split_debug_info)
11288 secname = early_lto_debug ? DEBUG_LTO_INFO_SECTION : DEBUG_INFO_SECTION;
11289 else
11290 secname = (early_lto_debug
11291 ? DEBUG_LTO_DWO_INFO_SECTION : DEBUG_DWO_INFO_SECTION);
11293 else if (!dwarf_split_debug_info)
11294 secname = early_lto_debug ? ".gnu.debuglto_.debug_types" : ".debug_types";
11295 else
11296 secname = (early_lto_debug
11297 ? ".gnu.debuglto_.debug_types.dwo" : ".debug_types.dwo");
11299 tmp = XALLOCAVEC (char, 4 + DWARF_TYPE_SIGNATURE_SIZE * 2);
11300 sprintf (tmp, dwarf_version >= 5 ? "wi." : "wt.");
11301 for (i = 0; i < DWARF_TYPE_SIGNATURE_SIZE; i++)
11302 sprintf (tmp + 3 + i * 2, "%02x", node->signature[i] & 0xff);
11303 comdat_key = get_identifier (tmp);
11304 targetm.asm_out.named_section (secname,
11305 SECTION_DEBUG | SECTION_LINKONCE,
11306 comdat_key);
11307 #else
11308 tmp = XALLOCAVEC (char, 18 + DWARF_TYPE_SIGNATURE_SIZE * 2);
11309 sprintf (tmp, (dwarf_version >= 5
11310 ? ".gnu.linkonce.wi." : ".gnu.linkonce.wt."));
11311 for (i = 0; i < DWARF_TYPE_SIGNATURE_SIZE; i++)
11312 sprintf (tmp + 17 + i * 2, "%02x", node->signature[i] & 0xff);
11313 secname = tmp;
11314 switch_to_section (get_section (secname, SECTION_DEBUG, NULL));
11315 #endif
11317 /* Output debugging information. */
11318 output_compilation_unit_header (dwarf_split_debug_info
11319 ? DW_UT_split_type : DW_UT_type);
11320 output_signature (node->signature, "Type Signature");
11321 dw2_asm_output_data (DWARF_OFFSET_SIZE, node->type_die->die_offset,
11322 "Offset to Type DIE");
11323 output_die (node->root_die);
11325 unmark_dies (node->root_die);
11328 /* Return the DWARF2/3 pubname associated with a decl. */
11330 static const char *
11331 dwarf2_name (tree decl, int scope)
11333 if (DECL_NAMELESS (decl))
11334 return NULL;
11335 return lang_hooks.dwarf_name (decl, scope ? 1 : 0);
11338 /* Add a new entry to .debug_pubnames if appropriate. */
11340 static void
11341 add_pubname_string (const char *str, dw_die_ref die)
11343 pubname_entry e;
11345 e.die = die;
11346 e.name = xstrdup (str);
11347 vec_safe_push (pubname_table, e);
11350 static void
11351 add_pubname (tree decl, dw_die_ref die)
11353 if (!want_pubnames ())
11354 return;
11356 /* Don't add items to the table when we expect that the consumer will have
11357 just read the enclosing die. For example, if the consumer is looking at a
11358 class_member, it will either be inside the class already, or will have just
11359 looked up the class to find the member. Either way, searching the class is
11360 faster than searching the index. */
11361 if ((TREE_PUBLIC (decl) && !class_scope_p (die->die_parent))
11362 || is_cu_die (die->die_parent) || is_namespace_die (die->die_parent))
11364 const char *name = dwarf2_name (decl, 1);
11366 if (name)
11367 add_pubname_string (name, die);
11371 /* Add an enumerator to the pubnames section. */
11373 static void
11374 add_enumerator_pubname (const char *scope_name, dw_die_ref die)
11376 pubname_entry e;
11378 gcc_assert (scope_name);
11379 e.name = concat (scope_name, get_AT_string (die, DW_AT_name), NULL);
11380 e.die = die;
11381 vec_safe_push (pubname_table, e);
11384 /* Add a new entry to .debug_pubtypes if appropriate. */
11386 static void
11387 add_pubtype (tree decl, dw_die_ref die)
11389 pubname_entry e;
11391 if (!want_pubnames ())
11392 return;
11394 if ((TREE_PUBLIC (decl)
11395 || is_cu_die (die->die_parent) || is_namespace_die (die->die_parent))
11396 && (die->die_tag == DW_TAG_typedef || COMPLETE_TYPE_P (decl)))
11398 tree scope = NULL;
11399 const char *scope_name = "";
11400 const char *sep = is_cxx () ? "::" : ".";
11401 const char *name;
11403 scope = TYPE_P (decl) ? TYPE_CONTEXT (decl) : NULL;
11404 if (scope && TREE_CODE (scope) == NAMESPACE_DECL)
11406 scope_name = lang_hooks.dwarf_name (scope, 1);
11407 if (scope_name != NULL && scope_name[0] != '\0')
11408 scope_name = concat (scope_name, sep, NULL);
11409 else
11410 scope_name = "";
11413 if (TYPE_P (decl))
11414 name = type_tag (decl);
11415 else
11416 name = lang_hooks.dwarf_name (decl, 1);
11418 /* If we don't have a name for the type, there's no point in adding
11419 it to the table. */
11420 if (name != NULL && name[0] != '\0')
11422 e.die = die;
11423 e.name = concat (scope_name, name, NULL);
11424 vec_safe_push (pubtype_table, e);
11427 /* Although it might be more consistent to add the pubinfo for the
11428 enumerators as their dies are created, they should only be added if the
11429 enum type meets the criteria above. So rather than re-check the parent
11430 enum type whenever an enumerator die is created, just output them all
11431 here. This isn't protected by the name conditional because anonymous
11432 enums don't have names. */
11433 if (die->die_tag == DW_TAG_enumeration_type)
11435 dw_die_ref c;
11437 FOR_EACH_CHILD (die, c, add_enumerator_pubname (scope_name, c));
11442 /* Output a single entry in the pubnames table. */
11444 static void
11445 output_pubname (dw_offset die_offset, pubname_entry *entry)
11447 dw_die_ref die = entry->die;
11448 int is_static = get_AT_flag (die, DW_AT_external) ? 0 : 1;
11450 dw2_asm_output_data (DWARF_OFFSET_SIZE, die_offset, "DIE offset");
11452 if (debug_generate_pub_sections == 2)
11454 /* This logic follows gdb's method for determining the value of the flag
11455 byte. */
11456 uint32_t flags = GDB_INDEX_SYMBOL_KIND_NONE;
11457 switch (die->die_tag)
11459 case DW_TAG_typedef:
11460 case DW_TAG_base_type:
11461 case DW_TAG_subrange_type:
11462 GDB_INDEX_SYMBOL_KIND_SET_VALUE(flags, GDB_INDEX_SYMBOL_KIND_TYPE);
11463 GDB_INDEX_SYMBOL_STATIC_SET_VALUE(flags, 1);
11464 break;
11465 case DW_TAG_enumerator:
11466 GDB_INDEX_SYMBOL_KIND_SET_VALUE(flags,
11467 GDB_INDEX_SYMBOL_KIND_VARIABLE);
11468 if (!is_cxx ())
11469 GDB_INDEX_SYMBOL_STATIC_SET_VALUE(flags, 1);
11470 break;
11471 case DW_TAG_subprogram:
11472 GDB_INDEX_SYMBOL_KIND_SET_VALUE(flags,
11473 GDB_INDEX_SYMBOL_KIND_FUNCTION);
11474 if (!is_ada ())
11475 GDB_INDEX_SYMBOL_STATIC_SET_VALUE(flags, is_static);
11476 break;
11477 case DW_TAG_constant:
11478 GDB_INDEX_SYMBOL_KIND_SET_VALUE(flags,
11479 GDB_INDEX_SYMBOL_KIND_VARIABLE);
11480 GDB_INDEX_SYMBOL_STATIC_SET_VALUE(flags, is_static);
11481 break;
11482 case DW_TAG_variable:
11483 GDB_INDEX_SYMBOL_KIND_SET_VALUE(flags,
11484 GDB_INDEX_SYMBOL_KIND_VARIABLE);
11485 GDB_INDEX_SYMBOL_STATIC_SET_VALUE(flags, is_static);
11486 break;
11487 case DW_TAG_namespace:
11488 case DW_TAG_imported_declaration:
11489 GDB_INDEX_SYMBOL_KIND_SET_VALUE(flags, GDB_INDEX_SYMBOL_KIND_TYPE);
11490 break;
11491 case DW_TAG_class_type:
11492 case DW_TAG_interface_type:
11493 case DW_TAG_structure_type:
11494 case DW_TAG_union_type:
11495 case DW_TAG_enumeration_type:
11496 GDB_INDEX_SYMBOL_KIND_SET_VALUE(flags, GDB_INDEX_SYMBOL_KIND_TYPE);
11497 if (!is_cxx ())
11498 GDB_INDEX_SYMBOL_STATIC_SET_VALUE(flags, 1);
11499 break;
11500 default:
11501 /* An unusual tag. Leave the flag-byte empty. */
11502 break;
11504 dw2_asm_output_data (1, flags >> GDB_INDEX_CU_BITSIZE,
11505 "GDB-index flags");
11508 dw2_asm_output_nstring (entry->name, -1, "external name");
11512 /* Output the public names table used to speed up access to externally
11513 visible names; or the public types table used to find type definitions. */
11515 static void
11516 output_pubnames (vec<pubname_entry, va_gc> *names)
11518 unsigned i;
11519 unsigned long pubnames_length = size_of_pubnames (names);
11520 pubname_entry *pub;
11522 if (!XCOFF_DEBUGGING_INFO)
11524 if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
11525 dw2_asm_output_data (4, 0xffffffff,
11526 "Initial length escape value indicating 64-bit DWARF extension");
11527 dw2_asm_output_data (DWARF_OFFSET_SIZE, pubnames_length,
11528 "Pub Info Length");
11531 /* Version number for pubnames/pubtypes is independent of dwarf version. */
11532 dw2_asm_output_data (2, 2, "DWARF pubnames/pubtypes version");
11534 if (dwarf_split_debug_info)
11535 dw2_asm_output_offset (DWARF_OFFSET_SIZE, debug_skeleton_info_section_label,
11536 debug_skeleton_info_section,
11537 "Offset of Compilation Unit Info");
11538 else
11539 dw2_asm_output_offset (DWARF_OFFSET_SIZE, debug_info_section_label,
11540 debug_info_section,
11541 "Offset of Compilation Unit Info");
11542 dw2_asm_output_data (DWARF_OFFSET_SIZE, next_die_offset,
11543 "Compilation Unit Length");
11545 FOR_EACH_VEC_ELT (*names, i, pub)
11547 if (include_pubname_in_output (names, pub))
11549 dw_offset die_offset = pub->die->die_offset;
11551 /* We shouldn't see pubnames for DIEs outside of the main CU. */
11552 if (names == pubname_table && pub->die->die_tag != DW_TAG_enumerator)
11553 gcc_assert (pub->die->die_mark);
11555 /* If we're putting types in their own .debug_types sections,
11556 the .debug_pubtypes table will still point to the compile
11557 unit (not the type unit), so we want to use the offset of
11558 the skeleton DIE (if there is one). */
11559 if (pub->die->comdat_type_p && names == pubtype_table)
11561 comdat_type_node *type_node = pub->die->die_id.die_type_node;
11563 if (type_node != NULL)
11564 die_offset = (type_node->skeleton_die != NULL
11565 ? type_node->skeleton_die->die_offset
11566 : comp_unit_die ()->die_offset);
11569 output_pubname (die_offset, pub);
11573 dw2_asm_output_data (DWARF_OFFSET_SIZE, 0, NULL);
11576 /* Output public names and types tables if necessary. */
11578 static void
11579 output_pubtables (void)
11581 if (!want_pubnames () || !info_section_emitted)
11582 return;
11584 switch_to_section (debug_pubnames_section);
11585 output_pubnames (pubname_table);
11586 /* ??? Only defined by DWARF3, but emitted by Darwin for DWARF2.
11587 It shouldn't hurt to emit it always, since pure DWARF2 consumers
11588 simply won't look for the section. */
11589 switch_to_section (debug_pubtypes_section);
11590 output_pubnames (pubtype_table);
11594 /* Output the information that goes into the .debug_aranges table.
11595 Namely, define the beginning and ending address range of the
11596 text section generated for this compilation unit. */
11598 static void
11599 output_aranges (void)
11601 unsigned i;
11602 unsigned long aranges_length = size_of_aranges ();
11604 if (!XCOFF_DEBUGGING_INFO)
11606 if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
11607 dw2_asm_output_data (4, 0xffffffff,
11608 "Initial length escape value indicating 64-bit DWARF extension");
11609 dw2_asm_output_data (DWARF_OFFSET_SIZE, aranges_length,
11610 "Length of Address Ranges Info");
11613 /* Version number for aranges is still 2, even up to DWARF5. */
11614 dw2_asm_output_data (2, 2, "DWARF aranges version");
11615 if (dwarf_split_debug_info)
11616 dw2_asm_output_offset (DWARF_OFFSET_SIZE, debug_skeleton_info_section_label,
11617 debug_skeleton_info_section,
11618 "Offset of Compilation Unit Info");
11619 else
11620 dw2_asm_output_offset (DWARF_OFFSET_SIZE, debug_info_section_label,
11621 debug_info_section,
11622 "Offset of Compilation Unit Info");
11623 dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Size of Address");
11624 dw2_asm_output_data (1, 0, "Size of Segment Descriptor");
11626 /* We need to align to twice the pointer size here. */
11627 if (DWARF_ARANGES_PAD_SIZE)
11629 /* Pad using a 2 byte words so that padding is correct for any
11630 pointer size. */
11631 dw2_asm_output_data (2, 0, "Pad to %d byte boundary",
11632 2 * DWARF2_ADDR_SIZE);
11633 for (i = 2; i < (unsigned) DWARF_ARANGES_PAD_SIZE; i += 2)
11634 dw2_asm_output_data (2, 0, NULL);
11637 /* It is necessary not to output these entries if the sections were
11638 not used; if the sections were not used, the length will be 0 and
11639 the address may end up as 0 if the section is discarded by ld
11640 --gc-sections, leaving an invalid (0, 0) entry that can be
11641 confused with the terminator. */
11642 if (text_section_used)
11644 dw2_asm_output_addr (DWARF2_ADDR_SIZE, text_section_label, "Address");
11645 dw2_asm_output_delta (DWARF2_ADDR_SIZE, text_end_label,
11646 text_section_label, "Length");
11648 if (cold_text_section_used)
11650 dw2_asm_output_addr (DWARF2_ADDR_SIZE, cold_text_section_label,
11651 "Address");
11652 dw2_asm_output_delta (DWARF2_ADDR_SIZE, cold_end_label,
11653 cold_text_section_label, "Length");
11656 if (have_multiple_function_sections)
11658 unsigned fde_idx;
11659 dw_fde_ref fde;
11661 FOR_EACH_VEC_ELT (*fde_vec, fde_idx, fde)
11663 if (DECL_IGNORED_P (fde->decl))
11664 continue;
11665 if (!fde->in_std_section)
11667 dw2_asm_output_addr (DWARF2_ADDR_SIZE, fde->dw_fde_begin,
11668 "Address");
11669 dw2_asm_output_delta (DWARF2_ADDR_SIZE, fde->dw_fde_end,
11670 fde->dw_fde_begin, "Length");
11672 if (fde->dw_fde_second_begin && !fde->second_in_std_section)
11674 dw2_asm_output_addr (DWARF2_ADDR_SIZE, fde->dw_fde_second_begin,
11675 "Address");
11676 dw2_asm_output_delta (DWARF2_ADDR_SIZE, fde->dw_fde_second_end,
11677 fde->dw_fde_second_begin, "Length");
11682 /* Output the terminator words. */
11683 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
11684 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
11687 /* Add a new entry to .debug_ranges. Return its index into
11688 ranges_table vector. */
11690 static unsigned int
11691 add_ranges_num (int num, bool maybe_new_sec)
11693 dw_ranges r = { NULL, num, 0, maybe_new_sec };
11694 vec_safe_push (ranges_table, r);
11695 return vec_safe_length (ranges_table) - 1;
11698 /* Add a new entry to .debug_ranges corresponding to a block, or a
11699 range terminator if BLOCK is NULL. MAYBE_NEW_SEC is true if
11700 this entry might be in a different section from previous range. */
11702 static unsigned int
11703 add_ranges (const_tree block, bool maybe_new_sec)
11705 return add_ranges_num (block ? BLOCK_NUMBER (block) : 0, maybe_new_sec);
11708 /* Note that (*rnglist_table)[offset] is either a head of a rnglist
11709 chain, or middle entry of a chain that will be directly referred to. */
11711 static void
11712 note_rnglist_head (unsigned int offset)
11714 if (dwarf_version < 5 || (*ranges_table)[offset].label)
11715 return;
11716 (*ranges_table)[offset].label = gen_internal_sym ("LLRL");
11719 /* Add a new entry to .debug_ranges corresponding to a pair of labels.
11720 When using dwarf_split_debug_info, address attributes in dies destined
11721 for the final executable should be direct references--setting the
11722 parameter force_direct ensures this behavior. */
11724 static void
11725 add_ranges_by_labels (dw_die_ref die, const char *begin, const char *end,
11726 bool *added, bool force_direct)
11728 unsigned int in_use = vec_safe_length (ranges_by_label);
11729 unsigned int offset;
11730 dw_ranges_by_label rbl = { begin, end };
11731 vec_safe_push (ranges_by_label, rbl);
11732 offset = add_ranges_num (-(int)in_use - 1, true);
11733 if (!*added)
11735 add_AT_range_list (die, DW_AT_ranges, offset, force_direct);
11736 *added = true;
11737 note_rnglist_head (offset);
11741 /* Emit .debug_ranges section. */
11743 static void
11744 output_ranges (void)
11746 unsigned i;
11747 static const char *const start_fmt = "Offset %#x";
11748 const char *fmt = start_fmt;
11749 dw_ranges *r;
11751 switch_to_section (debug_ranges_section);
11752 ASM_OUTPUT_LABEL (asm_out_file, ranges_section_label);
11753 FOR_EACH_VEC_SAFE_ELT (ranges_table, i, r)
11755 int block_num = r->num;
11757 if (block_num > 0)
11759 char blabel[MAX_ARTIFICIAL_LABEL_BYTES];
11760 char elabel[MAX_ARTIFICIAL_LABEL_BYTES];
11762 ASM_GENERATE_INTERNAL_LABEL (blabel, BLOCK_BEGIN_LABEL, block_num);
11763 ASM_GENERATE_INTERNAL_LABEL (elabel, BLOCK_END_LABEL, block_num);
11765 /* If all code is in the text section, then the compilation
11766 unit base address defaults to DW_AT_low_pc, which is the
11767 base of the text section. */
11768 if (!have_multiple_function_sections)
11770 dw2_asm_output_delta (DWARF2_ADDR_SIZE, blabel,
11771 text_section_label,
11772 fmt, i * 2 * DWARF2_ADDR_SIZE);
11773 dw2_asm_output_delta (DWARF2_ADDR_SIZE, elabel,
11774 text_section_label, NULL);
11777 /* Otherwise, the compilation unit base address is zero,
11778 which allows us to use absolute addresses, and not worry
11779 about whether the target supports cross-section
11780 arithmetic. */
11781 else
11783 dw2_asm_output_addr (DWARF2_ADDR_SIZE, blabel,
11784 fmt, i * 2 * DWARF2_ADDR_SIZE);
11785 dw2_asm_output_addr (DWARF2_ADDR_SIZE, elabel, NULL);
11788 fmt = NULL;
11791 /* Negative block_num stands for an index into ranges_by_label. */
11792 else if (block_num < 0)
11794 int lab_idx = - block_num - 1;
11796 if (!have_multiple_function_sections)
11798 gcc_unreachable ();
11799 #if 0
11800 /* If we ever use add_ranges_by_labels () for a single
11801 function section, all we have to do is to take out
11802 the #if 0 above. */
11803 dw2_asm_output_delta (DWARF2_ADDR_SIZE,
11804 (*ranges_by_label)[lab_idx].begin,
11805 text_section_label,
11806 fmt, i * 2 * DWARF2_ADDR_SIZE);
11807 dw2_asm_output_delta (DWARF2_ADDR_SIZE,
11808 (*ranges_by_label)[lab_idx].end,
11809 text_section_label, NULL);
11810 #endif
11812 else
11814 dw2_asm_output_addr (DWARF2_ADDR_SIZE,
11815 (*ranges_by_label)[lab_idx].begin,
11816 fmt, i * 2 * DWARF2_ADDR_SIZE);
11817 dw2_asm_output_addr (DWARF2_ADDR_SIZE,
11818 (*ranges_by_label)[lab_idx].end,
11819 NULL);
11822 else
11824 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
11825 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
11826 fmt = start_fmt;
11831 /* Non-zero if .debug_line_str should be used for .debug_line section
11832 strings or strings that are likely shareable with those. */
11833 #define DWARF5_USE_DEBUG_LINE_STR \
11834 (!DWARF2_INDIRECT_STRING_SUPPORT_MISSING_ON_TARGET \
11835 && (DEBUG_STR_SECTION_FLAGS & SECTION_MERGE) != 0 \
11836 /* FIXME: there is no .debug_line_str.dwo section, \
11837 for -gsplit-dwarf we should use DW_FORM_strx instead. */ \
11838 && !dwarf_split_debug_info)
11840 /* Assign .debug_rnglists indexes. */
11842 static void
11843 index_rnglists (void)
11845 unsigned i;
11846 dw_ranges *r;
11848 FOR_EACH_VEC_SAFE_ELT (ranges_table, i, r)
11849 if (r->label)
11850 r->idx = rnglist_idx++;
11853 /* Emit .debug_rnglists section. */
11855 static void
11856 output_rnglists (unsigned generation)
11858 unsigned i;
11859 dw_ranges *r;
11860 char l1[MAX_ARTIFICIAL_LABEL_BYTES];
11861 char l2[MAX_ARTIFICIAL_LABEL_BYTES];
11862 char basebuf[MAX_ARTIFICIAL_LABEL_BYTES];
11864 switch_to_section (debug_ranges_section);
11865 ASM_OUTPUT_LABEL (asm_out_file, ranges_section_label);
11866 /* There are up to 4 unique ranges labels per generation.
11867 See also init_sections_and_labels. */
11868 ASM_GENERATE_INTERNAL_LABEL (l1, DEBUG_RANGES_SECTION_LABEL,
11869 2 + generation * 4);
11870 ASM_GENERATE_INTERNAL_LABEL (l2, DEBUG_RANGES_SECTION_LABEL,
11871 3 + generation * 4);
11872 if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
11873 dw2_asm_output_data (4, 0xffffffff,
11874 "Initial length escape value indicating "
11875 "64-bit DWARF extension");
11876 dw2_asm_output_delta (DWARF_OFFSET_SIZE, l2, l1,
11877 "Length of Range Lists");
11878 ASM_OUTPUT_LABEL (asm_out_file, l1);
11879 output_dwarf_version ();
11880 dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Address Size");
11881 dw2_asm_output_data (1, 0, "Segment Size");
11882 /* Emit the offset table only for -gsplit-dwarf. If we don't care
11883 about relocation sizes and primarily care about the size of .debug*
11884 sections in linked shared libraries and executables, then
11885 the offset table plus corresponding DW_FORM_rnglistx uleb128 indexes
11886 into it are usually larger than just DW_FORM_sec_offset offsets
11887 into the .debug_rnglists section. */
11888 dw2_asm_output_data (4, dwarf_split_debug_info ? rnglist_idx : 0,
11889 "Offset Entry Count");
11890 if (dwarf_split_debug_info)
11892 ASM_OUTPUT_LABEL (asm_out_file, ranges_base_label);
11893 FOR_EACH_VEC_SAFE_ELT (ranges_table, i, r)
11894 if (r->label)
11895 dw2_asm_output_delta (DWARF_OFFSET_SIZE, r->label,
11896 ranges_base_label, NULL);
11899 const char *lab = "";
11900 unsigned int len = vec_safe_length (ranges_table);
11901 const char *base = NULL;
11902 FOR_EACH_VEC_SAFE_ELT (ranges_table, i, r)
11904 int block_num = r->num;
11906 if (r->label)
11908 ASM_OUTPUT_LABEL (asm_out_file, r->label);
11909 lab = r->label;
11911 if (HAVE_AS_LEB128 && (r->label || r->maybe_new_sec))
11912 base = NULL;
11913 if (block_num > 0)
11915 char blabel[MAX_ARTIFICIAL_LABEL_BYTES];
11916 char elabel[MAX_ARTIFICIAL_LABEL_BYTES];
11918 ASM_GENERATE_INTERNAL_LABEL (blabel, BLOCK_BEGIN_LABEL, block_num);
11919 ASM_GENERATE_INTERNAL_LABEL (elabel, BLOCK_END_LABEL, block_num);
11921 if (HAVE_AS_LEB128)
11923 /* If all code is in the text section, then the compilation
11924 unit base address defaults to DW_AT_low_pc, which is the
11925 base of the text section. */
11926 if (!have_multiple_function_sections)
11928 dw2_asm_output_data (1, DW_RLE_offset_pair,
11929 "DW_RLE_offset_pair (%s)", lab);
11930 dw2_asm_output_delta_uleb128 (blabel, text_section_label,
11931 "Range begin address (%s)", lab);
11932 dw2_asm_output_delta_uleb128 (elabel, text_section_label,
11933 "Range end address (%s)", lab);
11934 continue;
11936 if (base == NULL)
11938 dw_ranges *r2 = NULL;
11939 if (i < len - 1)
11940 r2 = &(*ranges_table)[i + 1];
11941 if (r2
11942 && r2->num != 0
11943 && r2->label == NULL
11944 && !r2->maybe_new_sec)
11946 dw2_asm_output_data (1, DW_RLE_base_address,
11947 "DW_RLE_base_address (%s)", lab);
11948 dw2_asm_output_addr (DWARF2_ADDR_SIZE, blabel,
11949 "Base address (%s)", lab);
11950 strcpy (basebuf, blabel);
11951 base = basebuf;
11954 if (base)
11956 dw2_asm_output_data (1, DW_RLE_offset_pair,
11957 "DW_RLE_offset_pair (%s)", lab);
11958 dw2_asm_output_delta_uleb128 (blabel, base,
11959 "Range begin address (%s)", lab);
11960 dw2_asm_output_delta_uleb128 (elabel, base,
11961 "Range end address (%s)", lab);
11962 continue;
11964 dw2_asm_output_data (1, DW_RLE_start_length,
11965 "DW_RLE_start_length (%s)", lab);
11966 dw2_asm_output_addr (DWARF2_ADDR_SIZE, blabel,
11967 "Range begin address (%s)", lab);
11968 dw2_asm_output_delta_uleb128 (elabel, blabel,
11969 "Range length (%s)", lab);
11971 else
11973 dw2_asm_output_data (1, DW_RLE_start_end,
11974 "DW_RLE_start_end (%s)", lab);
11975 dw2_asm_output_addr (DWARF2_ADDR_SIZE, blabel,
11976 "Range begin address (%s)", lab);
11977 dw2_asm_output_addr (DWARF2_ADDR_SIZE, elabel,
11978 "Range end address (%s)", lab);
11982 /* Negative block_num stands for an index into ranges_by_label. */
11983 else if (block_num < 0)
11985 int lab_idx = - block_num - 1;
11986 const char *blabel = (*ranges_by_label)[lab_idx].begin;
11987 const char *elabel = (*ranges_by_label)[lab_idx].end;
11989 if (!have_multiple_function_sections)
11990 gcc_unreachable ();
11991 if (HAVE_AS_LEB128)
11993 dw2_asm_output_data (1, DW_RLE_start_length,
11994 "DW_RLE_start_length (%s)", lab);
11995 dw2_asm_output_addr (DWARF2_ADDR_SIZE, blabel,
11996 "Range begin address (%s)", lab);
11997 dw2_asm_output_delta_uleb128 (elabel, blabel,
11998 "Range length (%s)", lab);
12000 else
12002 dw2_asm_output_data (1, DW_RLE_start_end,
12003 "DW_RLE_start_end (%s)", lab);
12004 dw2_asm_output_addr (DWARF2_ADDR_SIZE, blabel,
12005 "Range begin address (%s)", lab);
12006 dw2_asm_output_addr (DWARF2_ADDR_SIZE, elabel,
12007 "Range end address (%s)", lab);
12010 else
12011 dw2_asm_output_data (1, DW_RLE_end_of_list,
12012 "DW_RLE_end_of_list (%s)", lab);
12014 ASM_OUTPUT_LABEL (asm_out_file, l2);
12017 /* Data structure containing information about input files. */
12018 struct file_info
12020 const char *path; /* Complete file name. */
12021 const char *fname; /* File name part. */
12022 int length; /* Length of entire string. */
12023 struct dwarf_file_data * file_idx; /* Index in input file table. */
12024 int dir_idx; /* Index in directory table. */
12027 /* Data structure containing information about directories with source
12028 files. */
12029 struct dir_info
12031 const char *path; /* Path including directory name. */
12032 int length; /* Path length. */
12033 int prefix; /* Index of directory entry which is a prefix. */
12034 int count; /* Number of files in this directory. */
12035 int dir_idx; /* Index of directory used as base. */
12038 /* Callback function for file_info comparison. We sort by looking at
12039 the directories in the path. */
12041 static int
12042 file_info_cmp (const void *p1, const void *p2)
12044 const struct file_info *const s1 = (const struct file_info *) p1;
12045 const struct file_info *const s2 = (const struct file_info *) p2;
12046 const unsigned char *cp1;
12047 const unsigned char *cp2;
12049 /* Take care of file names without directories. We need to make sure that
12050 we return consistent values to qsort since some will get confused if
12051 we return the same value when identical operands are passed in opposite
12052 orders. So if neither has a directory, return 0 and otherwise return
12053 1 or -1 depending on which one has the directory. We want the one with
12054 the directory to sort after the one without, so all no directory files
12055 are at the start (normally only the compilation unit file). */
12056 if ((s1->path == s1->fname || s2->path == s2->fname))
12057 return (s2->path == s2->fname) - (s1->path == s1->fname);
12059 cp1 = (const unsigned char *) s1->path;
12060 cp2 = (const unsigned char *) s2->path;
12062 while (1)
12064 ++cp1;
12065 ++cp2;
12066 /* Reached the end of the first path? If so, handle like above,
12067 but now we want longer directory prefixes before shorter ones. */
12068 if ((cp1 == (const unsigned char *) s1->fname)
12069 || (cp2 == (const unsigned char *) s2->fname))
12070 return ((cp1 == (const unsigned char *) s1->fname)
12071 - (cp2 == (const unsigned char *) s2->fname));
12073 /* Character of current path component the same? */
12074 else if (*cp1 != *cp2)
12075 return *cp1 - *cp2;
12079 struct file_name_acquire_data
12081 struct file_info *files;
12082 int used_files;
12083 int max_files;
12086 /* Traversal function for the hash table. */
12089 file_name_acquire (dwarf_file_data **slot, file_name_acquire_data *fnad)
12091 struct dwarf_file_data *d = *slot;
12092 struct file_info *fi;
12093 const char *f;
12095 gcc_assert (fnad->max_files >= d->emitted_number);
12097 if (! d->emitted_number)
12098 return 1;
12100 gcc_assert (fnad->max_files != fnad->used_files);
12102 fi = fnad->files + fnad->used_files++;
12104 /* Skip all leading "./". */
12105 f = d->filename;
12106 while (f[0] == '.' && IS_DIR_SEPARATOR (f[1]))
12107 f += 2;
12109 /* Create a new array entry. */
12110 fi->path = f;
12111 fi->length = strlen (f);
12112 fi->file_idx = d;
12114 /* Search for the file name part. */
12115 f = strrchr (f, DIR_SEPARATOR);
12116 #if defined (DIR_SEPARATOR_2)
12118 char *g = strrchr (fi->path, DIR_SEPARATOR_2);
12120 if (g != NULL)
12122 if (f == NULL || f < g)
12123 f = g;
12126 #endif
12128 fi->fname = f == NULL ? fi->path : f + 1;
12129 return 1;
12132 /* Helper function for output_file_names. Emit a FORM encoded
12133 string STR, with assembly comment start ENTRY_KIND and
12134 index IDX */
12136 static void
12137 output_line_string (enum dwarf_form form, const char *str,
12138 const char *entry_kind, unsigned int idx)
12140 switch (form)
12142 case DW_FORM_string:
12143 dw2_asm_output_nstring (str, -1, "%s: %#x", entry_kind, idx);
12144 break;
12145 case DW_FORM_line_strp:
12146 if (!debug_line_str_hash)
12147 debug_line_str_hash
12148 = hash_table<indirect_string_hasher>::create_ggc (10);
12150 struct indirect_string_node *node;
12151 node = find_AT_string_in_table (str, debug_line_str_hash);
12152 set_indirect_string (node);
12153 node->form = form;
12154 dw2_asm_output_offset (DWARF_OFFSET_SIZE, node->label,
12155 debug_line_str_section, "%s: %#x: \"%s\"",
12156 entry_kind, 0, node->str);
12157 break;
12158 default:
12159 gcc_unreachable ();
12163 /* Output the directory table and the file name table. We try to minimize
12164 the total amount of memory needed. A heuristic is used to avoid large
12165 slowdowns with many input files. */
12167 static void
12168 output_file_names (void)
12170 struct file_name_acquire_data fnad;
12171 int numfiles;
12172 struct file_info *files;
12173 struct dir_info *dirs;
12174 int *saved;
12175 int *savehere;
12176 int *backmap;
12177 int ndirs;
12178 int idx_offset;
12179 int i;
12181 if (!last_emitted_file)
12183 if (dwarf_version >= 5)
12185 dw2_asm_output_data (1, 0, "Directory entry format count");
12186 dw2_asm_output_data_uleb128 (0, "Directories count");
12187 dw2_asm_output_data (1, 0, "File name entry format count");
12188 dw2_asm_output_data_uleb128 (0, "File names count");
12190 else
12192 dw2_asm_output_data (1, 0, "End directory table");
12193 dw2_asm_output_data (1, 0, "End file name table");
12195 return;
12198 numfiles = last_emitted_file->emitted_number;
12200 /* Allocate the various arrays we need. */
12201 files = XALLOCAVEC (struct file_info, numfiles);
12202 dirs = XALLOCAVEC (struct dir_info, numfiles);
12204 fnad.files = files;
12205 fnad.used_files = 0;
12206 fnad.max_files = numfiles;
12207 file_table->traverse<file_name_acquire_data *, file_name_acquire> (&fnad);
12208 gcc_assert (fnad.used_files == fnad.max_files);
12210 qsort (files, numfiles, sizeof (files[0]), file_info_cmp);
12212 /* Find all the different directories used. */
12213 dirs[0].path = files[0].path;
12214 dirs[0].length = files[0].fname - files[0].path;
12215 dirs[0].prefix = -1;
12216 dirs[0].count = 1;
12217 dirs[0].dir_idx = 0;
12218 files[0].dir_idx = 0;
12219 ndirs = 1;
12221 for (i = 1; i < numfiles; i++)
12222 if (files[i].fname - files[i].path == dirs[ndirs - 1].length
12223 && memcmp (dirs[ndirs - 1].path, files[i].path,
12224 dirs[ndirs - 1].length) == 0)
12226 /* Same directory as last entry. */
12227 files[i].dir_idx = ndirs - 1;
12228 ++dirs[ndirs - 1].count;
12230 else
12232 int j;
12234 /* This is a new directory. */
12235 dirs[ndirs].path = files[i].path;
12236 dirs[ndirs].length = files[i].fname - files[i].path;
12237 dirs[ndirs].count = 1;
12238 dirs[ndirs].dir_idx = ndirs;
12239 files[i].dir_idx = ndirs;
12241 /* Search for a prefix. */
12242 dirs[ndirs].prefix = -1;
12243 for (j = 0; j < ndirs; j++)
12244 if (dirs[j].length < dirs[ndirs].length
12245 && dirs[j].length > 1
12246 && (dirs[ndirs].prefix == -1
12247 || dirs[j].length > dirs[dirs[ndirs].prefix].length)
12248 && memcmp (dirs[j].path, dirs[ndirs].path, dirs[j].length) == 0)
12249 dirs[ndirs].prefix = j;
12251 ++ndirs;
12254 /* Now to the actual work. We have to find a subset of the directories which
12255 allow expressing the file name using references to the directory table
12256 with the least amount of characters. We do not do an exhaustive search
12257 where we would have to check out every combination of every single
12258 possible prefix. Instead we use a heuristic which provides nearly optimal
12259 results in most cases and never is much off. */
12260 saved = XALLOCAVEC (int, ndirs);
12261 savehere = XALLOCAVEC (int, ndirs);
12263 memset (saved, '\0', ndirs * sizeof (saved[0]));
12264 for (i = 0; i < ndirs; i++)
12266 int j;
12267 int total;
12269 /* We can always save some space for the current directory. But this
12270 does not mean it will be enough to justify adding the directory. */
12271 savehere[i] = dirs[i].length;
12272 total = (savehere[i] - saved[i]) * dirs[i].count;
12274 for (j = i + 1; j < ndirs; j++)
12276 savehere[j] = 0;
12277 if (saved[j] < dirs[i].length)
12279 /* Determine whether the dirs[i] path is a prefix of the
12280 dirs[j] path. */
12281 int k;
12283 k = dirs[j].prefix;
12284 while (k != -1 && k != (int) i)
12285 k = dirs[k].prefix;
12287 if (k == (int) i)
12289 /* Yes it is. We can possibly save some memory by
12290 writing the filenames in dirs[j] relative to
12291 dirs[i]. */
12292 savehere[j] = dirs[i].length;
12293 total += (savehere[j] - saved[j]) * dirs[j].count;
12298 /* Check whether we can save enough to justify adding the dirs[i]
12299 directory. */
12300 if (total > dirs[i].length + 1)
12302 /* It's worthwhile adding. */
12303 for (j = i; j < ndirs; j++)
12304 if (savehere[j] > 0)
12306 /* Remember how much we saved for this directory so far. */
12307 saved[j] = savehere[j];
12309 /* Remember the prefix directory. */
12310 dirs[j].dir_idx = i;
12315 /* Emit the directory name table. */
12316 idx_offset = dirs[0].length > 0 ? 1 : 0;
12317 enum dwarf_form str_form = DW_FORM_string;
12318 enum dwarf_form idx_form = DW_FORM_udata;
12319 if (dwarf_version >= 5)
12321 const char *comp_dir = comp_dir_string ();
12322 if (comp_dir == NULL)
12323 comp_dir = "";
12324 dw2_asm_output_data (1, 1, "Directory entry format count");
12325 if (DWARF5_USE_DEBUG_LINE_STR)
12326 str_form = DW_FORM_line_strp;
12327 dw2_asm_output_data_uleb128 (DW_LNCT_path, "DW_LNCT_path");
12328 dw2_asm_output_data_uleb128 (str_form, "%s",
12329 get_DW_FORM_name (str_form));
12330 dw2_asm_output_data_uleb128 (ndirs + idx_offset, "Directories count");
12331 if (str_form == DW_FORM_string)
12333 dw2_asm_output_nstring (comp_dir, -1, "Directory Entry: %#x", 0);
12334 for (i = 1 - idx_offset; i < ndirs; i++)
12335 dw2_asm_output_nstring (dirs[i].path,
12336 dirs[i].length
12337 - !DWARF2_DIR_SHOULD_END_WITH_SEPARATOR,
12338 "Directory Entry: %#x", i + idx_offset);
12340 else
12342 output_line_string (str_form, comp_dir, "Directory Entry", 0);
12343 for (i = 1 - idx_offset; i < ndirs; i++)
12345 const char *str
12346 = ggc_alloc_string (dirs[i].path,
12347 dirs[i].length
12348 - !DWARF2_DIR_SHOULD_END_WITH_SEPARATOR);
12349 output_line_string (str_form, str, "Directory Entry",
12350 (unsigned) i + idx_offset);
12354 else
12356 for (i = 1 - idx_offset; i < ndirs; i++)
12357 dw2_asm_output_nstring (dirs[i].path,
12358 dirs[i].length
12359 - !DWARF2_DIR_SHOULD_END_WITH_SEPARATOR,
12360 "Directory Entry: %#x", i + idx_offset);
12362 dw2_asm_output_data (1, 0, "End directory table");
12365 /* We have to emit them in the order of emitted_number since that's
12366 used in the debug info generation. To do this efficiently we
12367 generate a back-mapping of the indices first. */
12368 backmap = XALLOCAVEC (int, numfiles);
12369 for (i = 0; i < numfiles; i++)
12370 backmap[files[i].file_idx->emitted_number - 1] = i;
12372 if (dwarf_version >= 5)
12374 const char *filename0 = get_AT_string (comp_unit_die (), DW_AT_name);
12375 if (filename0 == NULL)
12376 filename0 = "";
12377 /* DW_LNCT_directory_index can use DW_FORM_udata, DW_FORM_data1 and
12378 DW_FORM_data2. Choose one based on the number of directories
12379 and how much space would they occupy in each encoding.
12380 If we have at most 256 directories, all indexes fit into
12381 a single byte, so DW_FORM_data1 is most compact (if there
12382 are at most 128 directories, DW_FORM_udata would be as
12383 compact as that, but not shorter and slower to decode). */
12384 if (ndirs + idx_offset <= 256)
12385 idx_form = DW_FORM_data1;
12386 /* If there are more than 65536 directories, we have to use
12387 DW_FORM_udata, DW_FORM_data2 can't refer to them.
12388 Otherwise, compute what space would occupy if all the indexes
12389 used DW_FORM_udata - sum - and compare that to how large would
12390 be DW_FORM_data2 encoding, and pick the more efficient one. */
12391 else if (ndirs + idx_offset <= 65536)
12393 unsigned HOST_WIDE_INT sum = 1;
12394 for (i = 0; i < numfiles; i++)
12396 int file_idx = backmap[i];
12397 int dir_idx = dirs[files[file_idx].dir_idx].dir_idx;
12398 sum += size_of_uleb128 (dir_idx);
12400 if (sum >= HOST_WIDE_INT_UC (2) * (numfiles + 1))
12401 idx_form = DW_FORM_data2;
12403 #ifdef VMS_DEBUGGING_INFO
12404 dw2_asm_output_data (1, 4, "File name entry format count");
12405 #else
12406 dw2_asm_output_data (1, 2, "File name entry format count");
12407 #endif
12408 dw2_asm_output_data_uleb128 (DW_LNCT_path, "DW_LNCT_path");
12409 dw2_asm_output_data_uleb128 (str_form, "%s",
12410 get_DW_FORM_name (str_form));
12411 dw2_asm_output_data_uleb128 (DW_LNCT_directory_index,
12412 "DW_LNCT_directory_index");
12413 dw2_asm_output_data_uleb128 (idx_form, "%s",
12414 get_DW_FORM_name (idx_form));
12415 #ifdef VMS_DEBUGGING_INFO
12416 dw2_asm_output_data_uleb128 (DW_LNCT_timestamp, "DW_LNCT_timestamp");
12417 dw2_asm_output_data_uleb128 (DW_FORM_udata, "DW_FORM_udata");
12418 dw2_asm_output_data_uleb128 (DW_LNCT_size, "DW_LNCT_size");
12419 dw2_asm_output_data_uleb128 (DW_FORM_udata, "DW_FORM_udata");
12420 #endif
12421 dw2_asm_output_data_uleb128 (numfiles + 1, "File names count");
12423 output_line_string (str_form, filename0, "File Entry", 0);
12425 /* Include directory index. */
12426 if (idx_form != DW_FORM_udata)
12427 dw2_asm_output_data (idx_form == DW_FORM_data1 ? 1 : 2,
12428 0, NULL);
12429 else
12430 dw2_asm_output_data_uleb128 (0, NULL);
12432 #ifdef VMS_DEBUGGING_INFO
12433 dw2_asm_output_data_uleb128 (0, NULL);
12434 dw2_asm_output_data_uleb128 (0, NULL);
12435 #endif
12438 /* Now write all the file names. */
12439 for (i = 0; i < numfiles; i++)
12441 int file_idx = backmap[i];
12442 int dir_idx = dirs[files[file_idx].dir_idx].dir_idx;
12444 #ifdef VMS_DEBUGGING_INFO
12445 #define MAX_VMS_VERSION_LEN 6 /* ";32768" */
12447 /* Setting these fields can lead to debugger miscomparisons,
12448 but VMS Debug requires them to be set correctly. */
12450 int ver;
12451 long long cdt;
12452 long siz;
12453 int maxfilelen = (strlen (files[file_idx].path)
12454 + dirs[dir_idx].length
12455 + MAX_VMS_VERSION_LEN + 1);
12456 char *filebuf = XALLOCAVEC (char, maxfilelen);
12458 vms_file_stats_name (files[file_idx].path, 0, 0, 0, &ver);
12459 snprintf (filebuf, maxfilelen, "%s;%d",
12460 files[file_idx].path + dirs[dir_idx].length, ver);
12462 output_line_string (str_form, filebuf, "File Entry", (unsigned) i + 1);
12464 /* Include directory index. */
12465 if (dwarf_version >= 5 && idx_form != DW_FORM_udata)
12466 dw2_asm_output_data (idx_form == DW_FORM_data1 ? 1 : 2,
12467 dir_idx + idx_offset, NULL);
12468 else
12469 dw2_asm_output_data_uleb128 (dir_idx + idx_offset, NULL);
12471 /* Modification time. */
12472 dw2_asm_output_data_uleb128 ((vms_file_stats_name (files[file_idx].path,
12473 &cdt, 0, 0, 0) == 0)
12474 ? cdt : 0, NULL);
12476 /* File length in bytes. */
12477 dw2_asm_output_data_uleb128 ((vms_file_stats_name (files[file_idx].path,
12478 0, &siz, 0, 0) == 0)
12479 ? siz : 0, NULL);
12480 #else
12481 output_line_string (str_form,
12482 files[file_idx].path + dirs[dir_idx].length,
12483 "File Entry", (unsigned) i + 1);
12485 /* Include directory index. */
12486 if (dwarf_version >= 5 && idx_form != DW_FORM_udata)
12487 dw2_asm_output_data (idx_form == DW_FORM_data1 ? 1 : 2,
12488 dir_idx + idx_offset, NULL);
12489 else
12490 dw2_asm_output_data_uleb128 (dir_idx + idx_offset, NULL);
12492 if (dwarf_version >= 5)
12493 continue;
12495 /* Modification time. */
12496 dw2_asm_output_data_uleb128 (0, NULL);
12498 /* File length in bytes. */
12499 dw2_asm_output_data_uleb128 (0, NULL);
12500 #endif /* VMS_DEBUGGING_INFO */
12503 if (dwarf_version < 5)
12504 dw2_asm_output_data (1, 0, "End file name table");
12508 /* Output one line number table into the .debug_line section. */
12510 static void
12511 output_one_line_info_table (dw_line_info_table *table)
12513 char line_label[MAX_ARTIFICIAL_LABEL_BYTES];
12514 unsigned int current_line = 1;
12515 bool current_is_stmt = DWARF_LINE_DEFAULT_IS_STMT_START;
12516 dw_line_info_entry *ent, *prev_addr;
12517 size_t i;
12518 unsigned int view;
12520 view = 0;
12522 FOR_EACH_VEC_SAFE_ELT (table->entries, i, ent)
12524 switch (ent->opcode)
12526 case LI_set_address:
12527 /* ??? Unfortunately, we have little choice here currently, and
12528 must always use the most general form. GCC does not know the
12529 address delta itself, so we can't use DW_LNS_advance_pc. Many
12530 ports do have length attributes which will give an upper bound
12531 on the address range. We could perhaps use length attributes
12532 to determine when it is safe to use DW_LNS_fixed_advance_pc. */
12533 ASM_GENERATE_INTERNAL_LABEL (line_label, LINE_CODE_LABEL, ent->val);
12535 view = 0;
12537 /* This can handle any delta. This takes
12538 4+DWARF2_ADDR_SIZE bytes. */
12539 dw2_asm_output_data (1, 0, "set address %s%s", line_label,
12540 debug_variable_location_views
12541 ? ", reset view to 0" : "");
12542 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
12543 dw2_asm_output_data (1, DW_LNE_set_address, NULL);
12544 dw2_asm_output_addr (DWARF2_ADDR_SIZE, line_label, NULL);
12546 prev_addr = ent;
12547 break;
12549 case LI_adv_address:
12551 ASM_GENERATE_INTERNAL_LABEL (line_label, LINE_CODE_LABEL, ent->val);
12552 char prev_label[MAX_ARTIFICIAL_LABEL_BYTES];
12553 ASM_GENERATE_INTERNAL_LABEL (prev_label, LINE_CODE_LABEL, prev_addr->val);
12555 view++;
12557 dw2_asm_output_data (1, DW_LNS_fixed_advance_pc, "fixed advance PC, increment view to %i", view);
12558 dw2_asm_output_delta (2, line_label, prev_label,
12559 "from %s to %s", prev_label, line_label);
12561 prev_addr = ent;
12562 break;
12565 case LI_set_line:
12566 if (ent->val == current_line)
12568 /* We still need to start a new row, so output a copy insn. */
12569 dw2_asm_output_data (1, DW_LNS_copy,
12570 "copy line %u", current_line);
12572 else
12574 int line_offset = ent->val - current_line;
12575 int line_delta = line_offset - DWARF_LINE_BASE;
12577 current_line = ent->val;
12578 if (line_delta >= 0 && line_delta < (DWARF_LINE_RANGE - 1))
12580 /* This can handle deltas from -10 to 234, using the current
12581 definitions of DWARF_LINE_BASE and DWARF_LINE_RANGE.
12582 This takes 1 byte. */
12583 dw2_asm_output_data (1, DWARF_LINE_OPCODE_BASE + line_delta,
12584 "line %u", current_line);
12586 else
12588 /* This can handle any delta. This takes at least 4 bytes,
12589 depending on the value being encoded. */
12590 dw2_asm_output_data (1, DW_LNS_advance_line,
12591 "advance to line %u", current_line);
12592 dw2_asm_output_data_sleb128 (line_offset, NULL);
12593 dw2_asm_output_data (1, DW_LNS_copy, NULL);
12596 break;
12598 case LI_set_file:
12599 dw2_asm_output_data (1, DW_LNS_set_file, "set file %u", ent->val);
12600 dw2_asm_output_data_uleb128 (ent->val, "%u", ent->val);
12601 break;
12603 case LI_set_column:
12604 dw2_asm_output_data (1, DW_LNS_set_column, "column %u", ent->val);
12605 dw2_asm_output_data_uleb128 (ent->val, "%u", ent->val);
12606 break;
12608 case LI_negate_stmt:
12609 current_is_stmt = !current_is_stmt;
12610 dw2_asm_output_data (1, DW_LNS_negate_stmt,
12611 "is_stmt %d", current_is_stmt);
12612 break;
12614 case LI_set_prologue_end:
12615 dw2_asm_output_data (1, DW_LNS_set_prologue_end,
12616 "set prologue end");
12617 break;
12619 case LI_set_epilogue_begin:
12620 dw2_asm_output_data (1, DW_LNS_set_epilogue_begin,
12621 "set epilogue begin");
12622 break;
12624 case LI_set_discriminator:
12625 dw2_asm_output_data (1, 0, "discriminator %u", ent->val);
12626 dw2_asm_output_data_uleb128 (1 + size_of_uleb128 (ent->val), NULL);
12627 dw2_asm_output_data (1, DW_LNE_set_discriminator, NULL);
12628 dw2_asm_output_data_uleb128 (ent->val, NULL);
12629 break;
12633 /* Emit debug info for the address of the end of the table. */
12634 dw2_asm_output_data (1, 0, "set address %s", table->end_label);
12635 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
12636 dw2_asm_output_data (1, DW_LNE_set_address, NULL);
12637 dw2_asm_output_addr (DWARF2_ADDR_SIZE, table->end_label, NULL);
12639 dw2_asm_output_data (1, 0, "end sequence");
12640 dw2_asm_output_data_uleb128 (1, NULL);
12641 dw2_asm_output_data (1, DW_LNE_end_sequence, NULL);
12644 /* Output the source line number correspondence information. This
12645 information goes into the .debug_line section. */
12647 static void
12648 output_line_info (bool prologue_only)
12650 static unsigned int generation;
12651 char l1[MAX_ARTIFICIAL_LABEL_BYTES], l2[MAX_ARTIFICIAL_LABEL_BYTES];
12652 char p1[MAX_ARTIFICIAL_LABEL_BYTES], p2[MAX_ARTIFICIAL_LABEL_BYTES];
12653 bool saw_one = false;
12654 int opc;
12656 ASM_GENERATE_INTERNAL_LABEL (l1, LINE_NUMBER_BEGIN_LABEL, generation);
12657 ASM_GENERATE_INTERNAL_LABEL (l2, LINE_NUMBER_END_LABEL, generation);
12658 ASM_GENERATE_INTERNAL_LABEL (p1, LN_PROLOG_AS_LABEL, generation);
12659 ASM_GENERATE_INTERNAL_LABEL (p2, LN_PROLOG_END_LABEL, generation++);
12661 if (!XCOFF_DEBUGGING_INFO)
12663 if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
12664 dw2_asm_output_data (4, 0xffffffff,
12665 "Initial length escape value indicating 64-bit DWARF extension");
12666 dw2_asm_output_delta (DWARF_OFFSET_SIZE, l2, l1,
12667 "Length of Source Line Info");
12670 ASM_OUTPUT_LABEL (asm_out_file, l1);
12672 output_dwarf_version ();
12673 if (dwarf_version >= 5)
12675 dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Address Size");
12676 dw2_asm_output_data (1, 0, "Segment Size");
12678 dw2_asm_output_delta (DWARF_OFFSET_SIZE, p2, p1, "Prolog Length");
12679 ASM_OUTPUT_LABEL (asm_out_file, p1);
12681 /* Define the architecture-dependent minimum instruction length (in bytes).
12682 In this implementation of DWARF, this field is used for information
12683 purposes only. Since GCC generates assembly language, we have no
12684 a priori knowledge of how many instruction bytes are generated for each
12685 source line, and therefore can use only the DW_LNE_set_address and
12686 DW_LNS_fixed_advance_pc line information commands. Accordingly, we fix
12687 this as '1', which is "correct enough" for all architectures,
12688 and don't let the target override. */
12689 dw2_asm_output_data (1, 1, "Minimum Instruction Length");
12691 if (dwarf_version >= 4)
12692 dw2_asm_output_data (1, DWARF_LINE_DEFAULT_MAX_OPS_PER_INSN,
12693 "Maximum Operations Per Instruction");
12694 dw2_asm_output_data (1, DWARF_LINE_DEFAULT_IS_STMT_START,
12695 "Default is_stmt_start flag");
12696 dw2_asm_output_data (1, DWARF_LINE_BASE,
12697 "Line Base Value (Special Opcodes)");
12698 dw2_asm_output_data (1, DWARF_LINE_RANGE,
12699 "Line Range Value (Special Opcodes)");
12700 dw2_asm_output_data (1, DWARF_LINE_OPCODE_BASE,
12701 "Special Opcode Base");
12703 for (opc = 1; opc < DWARF_LINE_OPCODE_BASE; opc++)
12705 int n_op_args;
12706 switch (opc)
12708 case DW_LNS_advance_pc:
12709 case DW_LNS_advance_line:
12710 case DW_LNS_set_file:
12711 case DW_LNS_set_column:
12712 case DW_LNS_fixed_advance_pc:
12713 case DW_LNS_set_isa:
12714 n_op_args = 1;
12715 break;
12716 default:
12717 n_op_args = 0;
12718 break;
12721 dw2_asm_output_data (1, n_op_args, "opcode: %#x has %d args",
12722 opc, n_op_args);
12725 /* Write out the information about the files we use. */
12726 output_file_names ();
12727 ASM_OUTPUT_LABEL (asm_out_file, p2);
12728 if (prologue_only)
12730 /* Output the marker for the end of the line number info. */
12731 ASM_OUTPUT_LABEL (asm_out_file, l2);
12732 return;
12735 if (separate_line_info)
12737 dw_line_info_table *table;
12738 size_t i;
12740 FOR_EACH_VEC_ELT (*separate_line_info, i, table)
12741 if (table->in_use)
12743 output_one_line_info_table (table);
12744 saw_one = true;
12747 if (cold_text_section_line_info && cold_text_section_line_info->in_use)
12749 output_one_line_info_table (cold_text_section_line_info);
12750 saw_one = true;
12753 /* ??? Some Darwin linkers crash on a .debug_line section with no
12754 sequences. Further, merely a DW_LNE_end_sequence entry is not
12755 sufficient -- the address column must also be initialized.
12756 Make sure to output at least one set_address/end_sequence pair,
12757 choosing .text since that section is always present. */
12758 if (text_section_line_info->in_use || !saw_one)
12759 output_one_line_info_table (text_section_line_info);
12761 /* Output the marker for the end of the line number info. */
12762 ASM_OUTPUT_LABEL (asm_out_file, l2);
12765 /* Return true if DW_AT_endianity should be emitted according to REVERSE. */
12767 static inline bool
12768 need_endianity_attribute_p (bool reverse)
12770 return reverse && (dwarf_version >= 3 || !dwarf_strict);
12773 /* Given a pointer to a tree node for some base type, return a pointer to
12774 a DIE that describes the given type. REVERSE is true if the type is
12775 to be interpreted in the reverse storage order wrt the target order.
12777 This routine must only be called for GCC type nodes that correspond to
12778 Dwarf base (fundamental) types. */
12780 static dw_die_ref
12781 base_type_die (tree type, bool reverse)
12783 dw_die_ref base_type_result;
12784 enum dwarf_type encoding;
12785 bool fpt_used = false;
12786 struct fixed_point_type_info fpt_info;
12787 tree type_bias = NULL_TREE;
12789 /* If this is a subtype that should not be emitted as a subrange type,
12790 use the base type. See subrange_type_for_debug_p. */
12791 if (TREE_CODE (type) == INTEGER_TYPE && TREE_TYPE (type) != NULL_TREE)
12792 type = TREE_TYPE (type);
12794 switch (TREE_CODE (type))
12796 case INTEGER_TYPE:
12797 if ((dwarf_version >= 4 || !dwarf_strict)
12798 && TYPE_NAME (type)
12799 && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
12800 && DECL_IS_BUILTIN (TYPE_NAME (type))
12801 && DECL_NAME (TYPE_NAME (type)))
12803 const char *name = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type)));
12804 if (strcmp (name, "char16_t") == 0
12805 || strcmp (name, "char32_t") == 0)
12807 encoding = DW_ATE_UTF;
12808 break;
12811 if ((dwarf_version >= 3 || !dwarf_strict)
12812 && lang_hooks.types.get_fixed_point_type_info)
12814 memset (&fpt_info, 0, sizeof (fpt_info));
12815 if (lang_hooks.types.get_fixed_point_type_info (type, &fpt_info))
12817 fpt_used = true;
12818 encoding = ((TYPE_UNSIGNED (type))
12819 ? DW_ATE_unsigned_fixed
12820 : DW_ATE_signed_fixed);
12821 break;
12824 if (TYPE_STRING_FLAG (type))
12826 if (TYPE_UNSIGNED (type))
12827 encoding = DW_ATE_unsigned_char;
12828 else
12829 encoding = DW_ATE_signed_char;
12831 else if (TYPE_UNSIGNED (type))
12832 encoding = DW_ATE_unsigned;
12833 else
12834 encoding = DW_ATE_signed;
12836 if (!dwarf_strict
12837 && lang_hooks.types.get_type_bias)
12838 type_bias = lang_hooks.types.get_type_bias (type);
12839 break;
12841 case REAL_TYPE:
12842 if (DECIMAL_FLOAT_MODE_P (TYPE_MODE (type)))
12844 if (dwarf_version >= 3 || !dwarf_strict)
12845 encoding = DW_ATE_decimal_float;
12846 else
12847 encoding = DW_ATE_lo_user;
12849 else
12850 encoding = DW_ATE_float;
12851 break;
12853 case FIXED_POINT_TYPE:
12854 if (!(dwarf_version >= 3 || !dwarf_strict))
12855 encoding = DW_ATE_lo_user;
12856 else if (TYPE_UNSIGNED (type))
12857 encoding = DW_ATE_unsigned_fixed;
12858 else
12859 encoding = DW_ATE_signed_fixed;
12860 break;
12862 /* Dwarf2 doesn't know anything about complex ints, so use
12863 a user defined type for it. */
12864 case COMPLEX_TYPE:
12865 if (TREE_CODE (TREE_TYPE (type)) == REAL_TYPE)
12866 encoding = DW_ATE_complex_float;
12867 else
12868 encoding = DW_ATE_lo_user;
12869 break;
12871 case BOOLEAN_TYPE:
12872 /* GNU FORTRAN/Ada/C++ BOOLEAN type. */
12873 encoding = DW_ATE_boolean;
12874 break;
12876 default:
12877 /* No other TREE_CODEs are Dwarf fundamental types. */
12878 gcc_unreachable ();
12881 base_type_result = new_die_raw (DW_TAG_base_type);
12883 add_AT_unsigned (base_type_result, DW_AT_byte_size,
12884 int_size_in_bytes (type));
12885 add_AT_unsigned (base_type_result, DW_AT_encoding, encoding);
12887 if (need_endianity_attribute_p (reverse))
12888 add_AT_unsigned (base_type_result, DW_AT_endianity,
12889 BYTES_BIG_ENDIAN ? DW_END_little : DW_END_big);
12891 add_alignment_attribute (base_type_result, type);
12893 if (fpt_used)
12895 switch (fpt_info.scale_factor_kind)
12897 case fixed_point_scale_factor_binary:
12898 add_AT_int (base_type_result, DW_AT_binary_scale,
12899 fpt_info.scale_factor.binary);
12900 break;
12902 case fixed_point_scale_factor_decimal:
12903 add_AT_int (base_type_result, DW_AT_decimal_scale,
12904 fpt_info.scale_factor.decimal);
12905 break;
12907 case fixed_point_scale_factor_arbitrary:
12908 /* Arbitrary scale factors cannot be described in standard DWARF,
12909 yet. */
12910 if (!dwarf_strict)
12912 /* Describe the scale factor as a rational constant. */
12913 const dw_die_ref scale_factor
12914 = new_die (DW_TAG_constant, comp_unit_die (), type);
12916 add_AT_unsigned (scale_factor, DW_AT_GNU_numerator,
12917 fpt_info.scale_factor.arbitrary.numerator);
12918 add_AT_int (scale_factor, DW_AT_GNU_denominator,
12919 fpt_info.scale_factor.arbitrary.denominator);
12921 add_AT_die_ref (base_type_result, DW_AT_small, scale_factor);
12923 break;
12925 default:
12926 gcc_unreachable ();
12930 if (type_bias)
12931 add_scalar_info (base_type_result, DW_AT_GNU_bias, type_bias,
12932 dw_scalar_form_constant
12933 | dw_scalar_form_exprloc
12934 | dw_scalar_form_reference,
12935 NULL);
12937 return base_type_result;
12940 /* A C++ function with deduced return type can have a TEMPLATE_TYPE_PARM
12941 named 'auto' in its type: return true for it, false otherwise. */
12943 static inline bool
12944 is_cxx_auto (tree type)
12946 if (is_cxx ())
12948 tree name = TYPE_IDENTIFIER (type);
12949 if (name == get_identifier ("auto")
12950 || name == get_identifier ("decltype(auto)"))
12951 return true;
12953 return false;
12956 /* Given a pointer to an arbitrary ..._TYPE tree node, return nonzero if the
12957 given input type is a Dwarf "fundamental" type. Otherwise return null. */
12959 static inline int
12960 is_base_type (tree type)
12962 switch (TREE_CODE (type))
12964 case INTEGER_TYPE:
12965 case REAL_TYPE:
12966 case FIXED_POINT_TYPE:
12967 case COMPLEX_TYPE:
12968 case BOOLEAN_TYPE:
12969 return 1;
12971 case VOID_TYPE:
12972 case ARRAY_TYPE:
12973 case RECORD_TYPE:
12974 case UNION_TYPE:
12975 case QUAL_UNION_TYPE:
12976 case ENUMERAL_TYPE:
12977 case FUNCTION_TYPE:
12978 case METHOD_TYPE:
12979 case POINTER_TYPE:
12980 case REFERENCE_TYPE:
12981 case NULLPTR_TYPE:
12982 case OFFSET_TYPE:
12983 case LANG_TYPE:
12984 case VECTOR_TYPE:
12985 return 0;
12987 default:
12988 if (is_cxx_auto (type))
12989 return 0;
12990 gcc_unreachable ();
12993 return 0;
12996 /* Given a pointer to a tree node, assumed to be some kind of a ..._TYPE
12997 node, return the size in bits for the type if it is a constant, or else
12998 return the alignment for the type if the type's size is not constant, or
12999 else return BITS_PER_WORD if the type actually turns out to be an
13000 ERROR_MARK node. */
13002 static inline unsigned HOST_WIDE_INT
13003 simple_type_size_in_bits (const_tree type)
13005 if (TREE_CODE (type) == ERROR_MARK)
13006 return BITS_PER_WORD;
13007 else if (TYPE_SIZE (type) == NULL_TREE)
13008 return 0;
13009 else if (tree_fits_uhwi_p (TYPE_SIZE (type)))
13010 return tree_to_uhwi (TYPE_SIZE (type));
13011 else
13012 return TYPE_ALIGN (type);
13015 /* Similarly, but return an offset_int instead of UHWI. */
13017 static inline offset_int
13018 offset_int_type_size_in_bits (const_tree type)
13020 if (TREE_CODE (type) == ERROR_MARK)
13021 return BITS_PER_WORD;
13022 else if (TYPE_SIZE (type) == NULL_TREE)
13023 return 0;
13024 else if (TREE_CODE (TYPE_SIZE (type)) == INTEGER_CST)
13025 return wi::to_offset (TYPE_SIZE (type));
13026 else
13027 return TYPE_ALIGN (type);
13030 /* Given a pointer to a tree node for a subrange type, return a pointer
13031 to a DIE that describes the given type. */
13033 static dw_die_ref
13034 subrange_type_die (tree type, tree low, tree high, tree bias,
13035 dw_die_ref context_die)
13037 dw_die_ref subrange_die;
13038 const HOST_WIDE_INT size_in_bytes = int_size_in_bytes (type);
13040 if (context_die == NULL)
13041 context_die = comp_unit_die ();
13043 subrange_die = new_die (DW_TAG_subrange_type, context_die, type);
13045 if (int_size_in_bytes (TREE_TYPE (type)) != size_in_bytes)
13047 /* The size of the subrange type and its base type do not match,
13048 so we need to generate a size attribute for the subrange type. */
13049 add_AT_unsigned (subrange_die, DW_AT_byte_size, size_in_bytes);
13052 add_alignment_attribute (subrange_die, type);
13054 if (low)
13055 add_bound_info (subrange_die, DW_AT_lower_bound, low, NULL);
13056 if (high)
13057 add_bound_info (subrange_die, DW_AT_upper_bound, high, NULL);
13058 if (bias && !dwarf_strict)
13059 add_scalar_info (subrange_die, DW_AT_GNU_bias, bias,
13060 dw_scalar_form_constant
13061 | dw_scalar_form_exprloc
13062 | dw_scalar_form_reference,
13063 NULL);
13065 return subrange_die;
13068 /* Returns the (const and/or volatile) cv_qualifiers associated with
13069 the decl node. This will normally be augmented with the
13070 cv_qualifiers of the underlying type in add_type_attribute. */
13072 static int
13073 decl_quals (const_tree decl)
13075 return ((TREE_READONLY (decl)
13076 /* The C++ front-end correctly marks reference-typed
13077 variables as readonly, but from a language (and debug
13078 info) standpoint they are not const-qualified. */
13079 && TREE_CODE (TREE_TYPE (decl)) != REFERENCE_TYPE
13080 ? TYPE_QUAL_CONST : TYPE_UNQUALIFIED)
13081 | (TREE_THIS_VOLATILE (decl)
13082 ? TYPE_QUAL_VOLATILE : TYPE_UNQUALIFIED));
13085 /* Determine the TYPE whose qualifiers match the largest strict subset
13086 of the given TYPE_QUALS, and return its qualifiers. Ignore all
13087 qualifiers outside QUAL_MASK. */
13089 static int
13090 get_nearest_type_subqualifiers (tree type, int type_quals, int qual_mask)
13092 tree t;
13093 int best_rank = 0, best_qual = 0, max_rank;
13095 type_quals &= qual_mask;
13096 max_rank = popcount_hwi (type_quals) - 1;
13098 for (t = TYPE_MAIN_VARIANT (type); t && best_rank < max_rank;
13099 t = TYPE_NEXT_VARIANT (t))
13101 int q = TYPE_QUALS (t) & qual_mask;
13103 if ((q & type_quals) == q && q != type_quals
13104 && check_base_type (t, type))
13106 int rank = popcount_hwi (q);
13108 if (rank > best_rank)
13110 best_rank = rank;
13111 best_qual = q;
13116 return best_qual;
13119 struct dwarf_qual_info_t { int q; enum dwarf_tag t; };
13120 static const dwarf_qual_info_t dwarf_qual_info[] =
13122 { TYPE_QUAL_CONST, DW_TAG_const_type },
13123 { TYPE_QUAL_VOLATILE, DW_TAG_volatile_type },
13124 { TYPE_QUAL_RESTRICT, DW_TAG_restrict_type },
13125 { TYPE_QUAL_ATOMIC, DW_TAG_atomic_type }
13127 static const unsigned int dwarf_qual_info_size
13128 = sizeof (dwarf_qual_info) / sizeof (dwarf_qual_info[0]);
13130 /* If DIE is a qualified DIE of some base DIE with the same parent,
13131 return the base DIE, otherwise return NULL. Set MASK to the
13132 qualifiers added compared to the returned DIE. */
13134 static dw_die_ref
13135 qualified_die_p (dw_die_ref die, int *mask, unsigned int depth)
13137 unsigned int i;
13138 for (i = 0; i < dwarf_qual_info_size; i++)
13139 if (die->die_tag == dwarf_qual_info[i].t)
13140 break;
13141 if (i == dwarf_qual_info_size)
13142 return NULL;
13143 if (vec_safe_length (die->die_attr) != 1)
13144 return NULL;
13145 dw_die_ref type = get_AT_ref (die, DW_AT_type);
13146 if (type == NULL || type->die_parent != die->die_parent)
13147 return NULL;
13148 *mask |= dwarf_qual_info[i].q;
13149 if (depth)
13151 dw_die_ref ret = qualified_die_p (type, mask, depth - 1);
13152 if (ret)
13153 return ret;
13155 return type;
13158 /* Given a pointer to an arbitrary ..._TYPE tree node, return a debugging
13159 entry that chains the modifiers specified by CV_QUALS in front of the
13160 given type. REVERSE is true if the type is to be interpreted in the
13161 reverse storage order wrt the target order. */
13163 static dw_die_ref
13164 modified_type_die (tree type, int cv_quals, bool reverse,
13165 dw_die_ref context_die)
13167 enum tree_code code = TREE_CODE (type);
13168 dw_die_ref mod_type_die;
13169 dw_die_ref sub_die = NULL;
13170 tree item_type = NULL;
13171 tree qualified_type;
13172 tree name, low, high;
13173 dw_die_ref mod_scope;
13174 /* Only these cv-qualifiers are currently handled. */
13175 const int cv_qual_mask = (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE
13176 | TYPE_QUAL_RESTRICT | TYPE_QUAL_ATOMIC |
13177 ENCODE_QUAL_ADDR_SPACE(~0U));
13178 const bool reverse_base_type
13179 = need_endianity_attribute_p (reverse) && is_base_type (type);
13181 if (code == ERROR_MARK)
13182 return NULL;
13184 if (lang_hooks.types.get_debug_type)
13186 tree debug_type = lang_hooks.types.get_debug_type (type);
13188 if (debug_type != NULL_TREE && debug_type != type)
13189 return modified_type_die (debug_type, cv_quals, reverse, context_die);
13192 cv_quals &= cv_qual_mask;
13194 /* Don't emit DW_TAG_restrict_type for DWARFv2, since it is a type
13195 tag modifier (and not an attribute) old consumers won't be able
13196 to handle it. */
13197 if (dwarf_version < 3)
13198 cv_quals &= ~TYPE_QUAL_RESTRICT;
13200 /* Likewise for DW_TAG_atomic_type for DWARFv5. */
13201 if (dwarf_version < 5)
13202 cv_quals &= ~TYPE_QUAL_ATOMIC;
13204 /* See if we already have the appropriately qualified variant of
13205 this type. */
13206 qualified_type = get_qualified_type (type, cv_quals);
13208 if (qualified_type == sizetype)
13210 /* Try not to expose the internal sizetype type's name. */
13211 if (TYPE_NAME (qualified_type)
13212 && TREE_CODE (TYPE_NAME (qualified_type)) == TYPE_DECL)
13214 tree t = TREE_TYPE (TYPE_NAME (qualified_type));
13216 gcc_checking_assert (TREE_CODE (t) == INTEGER_TYPE
13217 && (TYPE_PRECISION (t)
13218 == TYPE_PRECISION (qualified_type))
13219 && (TYPE_UNSIGNED (t)
13220 == TYPE_UNSIGNED (qualified_type)));
13221 qualified_type = t;
13223 else if (qualified_type == sizetype
13224 && TREE_CODE (sizetype) == TREE_CODE (size_type_node)
13225 && TYPE_PRECISION (sizetype) == TYPE_PRECISION (size_type_node)
13226 && TYPE_UNSIGNED (sizetype) == TYPE_UNSIGNED (size_type_node))
13227 qualified_type = size_type_node;
13228 if (type == sizetype)
13229 type = qualified_type;
13232 /* If we do, then we can just use its DIE, if it exists. */
13233 if (qualified_type)
13235 mod_type_die = lookup_type_die (qualified_type);
13237 /* DW_AT_endianity doesn't come from a qualifier on the type, so it is
13238 dealt with specially: the DIE with the attribute, if it exists, is
13239 placed immediately after the regular DIE for the same base type. */
13240 if (mod_type_die
13241 && (!reverse_base_type
13242 || ((mod_type_die = mod_type_die->die_sib) != NULL
13243 && get_AT_unsigned (mod_type_die, DW_AT_endianity))))
13244 return mod_type_die;
13247 name = qualified_type ? TYPE_NAME (qualified_type) : NULL;
13249 /* Handle C typedef types. */
13250 if (name
13251 && TREE_CODE (name) == TYPE_DECL
13252 && DECL_ORIGINAL_TYPE (name)
13253 && !DECL_ARTIFICIAL (name))
13255 tree dtype = TREE_TYPE (name);
13257 /* Skip the typedef for base types with DW_AT_endianity, no big deal. */
13258 if (qualified_type == dtype && !reverse_base_type)
13260 tree origin = decl_ultimate_origin (name);
13262 /* Typedef variants that have an abstract origin don't get their own
13263 type DIE (see gen_typedef_die), so fall back on the ultimate
13264 abstract origin instead. */
13265 if (origin != NULL && origin != name)
13266 return modified_type_die (TREE_TYPE (origin), cv_quals, reverse,
13267 context_die);
13269 /* For a named type, use the typedef. */
13270 gen_type_die (qualified_type, context_die);
13271 return lookup_type_die (qualified_type);
13273 else
13275 int dquals = TYPE_QUALS_NO_ADDR_SPACE (dtype);
13276 dquals &= cv_qual_mask;
13277 if ((dquals & ~cv_quals) != TYPE_UNQUALIFIED
13278 || (cv_quals == dquals && DECL_ORIGINAL_TYPE (name) != type))
13279 /* cv-unqualified version of named type. Just use
13280 the unnamed type to which it refers. */
13281 return modified_type_die (DECL_ORIGINAL_TYPE (name), cv_quals,
13282 reverse, context_die);
13283 /* Else cv-qualified version of named type; fall through. */
13287 mod_scope = scope_die_for (type, context_die);
13289 if (cv_quals)
13291 int sub_quals = 0, first_quals = 0;
13292 unsigned i;
13293 dw_die_ref first = NULL, last = NULL;
13295 /* Determine a lesser qualified type that most closely matches
13296 this one. Then generate DW_TAG_* entries for the remaining
13297 qualifiers. */
13298 sub_quals = get_nearest_type_subqualifiers (type, cv_quals,
13299 cv_qual_mask);
13300 if (sub_quals && use_debug_types)
13302 bool needed = false;
13303 /* If emitting type units, make sure the order of qualifiers
13304 is canonical. Thus, start from unqualified type if
13305 an earlier qualifier is missing in sub_quals, but some later
13306 one is present there. */
13307 for (i = 0; i < dwarf_qual_info_size; i++)
13308 if (dwarf_qual_info[i].q & cv_quals & ~sub_quals)
13309 needed = true;
13310 else if (needed && (dwarf_qual_info[i].q & cv_quals))
13312 sub_quals = 0;
13313 break;
13316 mod_type_die = modified_type_die (type, sub_quals, reverse, context_die);
13317 if (mod_scope && mod_type_die && mod_type_die->die_parent == mod_scope)
13319 /* As not all intermediate qualified DIEs have corresponding
13320 tree types, ensure that qualified DIEs in the same scope
13321 as their DW_AT_type are emitted after their DW_AT_type,
13322 only with other qualified DIEs for the same type possibly
13323 in between them. Determine the range of such qualified
13324 DIEs now (first being the base type, last being corresponding
13325 last qualified DIE for it). */
13326 unsigned int count = 0;
13327 first = qualified_die_p (mod_type_die, &first_quals,
13328 dwarf_qual_info_size);
13329 if (first == NULL)
13330 first = mod_type_die;
13331 gcc_assert ((first_quals & ~sub_quals) == 0);
13332 for (count = 0, last = first;
13333 count < (1U << dwarf_qual_info_size);
13334 count++, last = last->die_sib)
13336 int quals = 0;
13337 if (last == mod_scope->die_child)
13338 break;
13339 if (qualified_die_p (last->die_sib, &quals, dwarf_qual_info_size)
13340 != first)
13341 break;
13345 for (i = 0; i < dwarf_qual_info_size; i++)
13346 if (dwarf_qual_info[i].q & cv_quals & ~sub_quals)
13348 dw_die_ref d;
13349 if (first && first != last)
13351 for (d = first->die_sib; ; d = d->die_sib)
13353 int quals = 0;
13354 qualified_die_p (d, &quals, dwarf_qual_info_size);
13355 if (quals == (first_quals | dwarf_qual_info[i].q))
13356 break;
13357 if (d == last)
13359 d = NULL;
13360 break;
13363 if (d)
13365 mod_type_die = d;
13366 continue;
13369 if (first)
13371 d = new_die_raw (dwarf_qual_info[i].t);
13372 add_child_die_after (mod_scope, d, last);
13373 last = d;
13375 else
13376 d = new_die (dwarf_qual_info[i].t, mod_scope, type);
13377 if (mod_type_die)
13378 add_AT_die_ref (d, DW_AT_type, mod_type_die);
13379 mod_type_die = d;
13380 first_quals |= dwarf_qual_info[i].q;
13383 else if (code == POINTER_TYPE || code == REFERENCE_TYPE)
13385 dwarf_tag tag = DW_TAG_pointer_type;
13386 if (code == REFERENCE_TYPE)
13388 if (TYPE_REF_IS_RVALUE (type) && dwarf_version >= 4)
13389 tag = DW_TAG_rvalue_reference_type;
13390 else
13391 tag = DW_TAG_reference_type;
13393 mod_type_die = new_die (tag, mod_scope, type);
13395 add_AT_unsigned (mod_type_die, DW_AT_byte_size,
13396 simple_type_size_in_bits (type) / BITS_PER_UNIT);
13397 add_alignment_attribute (mod_type_die, type);
13398 item_type = TREE_TYPE (type);
13400 addr_space_t as = TYPE_ADDR_SPACE (item_type);
13401 if (!ADDR_SPACE_GENERIC_P (as))
13403 int action = targetm.addr_space.debug (as);
13404 if (action >= 0)
13406 /* Positive values indicate an address_class. */
13407 add_AT_unsigned (mod_type_die, DW_AT_address_class, action);
13409 else
13411 /* Negative values indicate an (inverted) segment base reg. */
13412 dw_loc_descr_ref d
13413 = one_reg_loc_descriptor (~action, VAR_INIT_STATUS_INITIALIZED);
13414 add_AT_loc (mod_type_die, DW_AT_segment, d);
13418 else if (code == INTEGER_TYPE
13419 && TREE_TYPE (type) != NULL_TREE
13420 && subrange_type_for_debug_p (type, &low, &high))
13422 tree bias = NULL_TREE;
13423 if (lang_hooks.types.get_type_bias)
13424 bias = lang_hooks.types.get_type_bias (type);
13425 mod_type_die = subrange_type_die (type, low, high, bias, context_die);
13426 item_type = TREE_TYPE (type);
13428 else if (is_base_type (type))
13430 mod_type_die = base_type_die (type, reverse);
13432 /* The DIE with DW_AT_endianity is placed right after the naked DIE. */
13433 if (reverse_base_type)
13435 dw_die_ref after_die
13436 = modified_type_die (type, cv_quals, false, context_die);
13437 add_child_die_after (comp_unit_die (), mod_type_die, after_die);
13439 else
13440 add_child_die (comp_unit_die (), mod_type_die);
13442 add_pubtype (type, mod_type_die);
13444 else
13446 gen_type_die (type, context_die);
13448 /* We have to get the type_main_variant here (and pass that to the
13449 `lookup_type_die' routine) because the ..._TYPE node we have
13450 might simply be a *copy* of some original type node (where the
13451 copy was created to help us keep track of typedef names) and
13452 that copy might have a different TYPE_UID from the original
13453 ..._TYPE node. */
13454 if (TREE_CODE (type) == FUNCTION_TYPE
13455 || TREE_CODE (type) == METHOD_TYPE)
13457 /* For function/method types, can't just use type_main_variant here,
13458 because that can have different ref-qualifiers for C++,
13459 but try to canonicalize. */
13460 tree main = TYPE_MAIN_VARIANT (type);
13461 for (tree t = main; t; t = TYPE_NEXT_VARIANT (t))
13462 if (TYPE_QUALS_NO_ADDR_SPACE (t) == 0
13463 && check_base_type (t, main)
13464 && check_lang_type (t, type))
13465 return lookup_type_die (t);
13466 return lookup_type_die (type);
13468 else if (TREE_CODE (type) != VECTOR_TYPE
13469 && TREE_CODE (type) != ARRAY_TYPE)
13470 return lookup_type_die (type_main_variant (type));
13471 else
13472 /* Vectors have the debugging information in the type,
13473 not the main variant. */
13474 return lookup_type_die (type);
13477 /* Builtin types don't have a DECL_ORIGINAL_TYPE. For those,
13478 don't output a DW_TAG_typedef, since there isn't one in the
13479 user's program; just attach a DW_AT_name to the type.
13480 Don't attach a DW_AT_name to DW_TAG_const_type or DW_TAG_volatile_type
13481 if the base type already has the same name. */
13482 if (name
13483 && ((TREE_CODE (name) != TYPE_DECL
13484 && (qualified_type == TYPE_MAIN_VARIANT (type)
13485 || (cv_quals == TYPE_UNQUALIFIED)))
13486 || (TREE_CODE (name) == TYPE_DECL
13487 && TREE_TYPE (name) == qualified_type
13488 && DECL_NAME (name))))
13490 if (TREE_CODE (name) == TYPE_DECL)
13491 /* Could just call add_name_and_src_coords_attributes here,
13492 but since this is a builtin type it doesn't have any
13493 useful source coordinates anyway. */
13494 name = DECL_NAME (name);
13495 add_name_attribute (mod_type_die, IDENTIFIER_POINTER (name));
13497 /* This probably indicates a bug. */
13498 else if (mod_type_die && mod_type_die->die_tag == DW_TAG_base_type)
13500 name = TYPE_IDENTIFIER (type);
13501 add_name_attribute (mod_type_die,
13502 name ? IDENTIFIER_POINTER (name) : "__unknown__");
13505 if (qualified_type && !reverse_base_type)
13506 equate_type_number_to_die (qualified_type, mod_type_die);
13508 if (item_type)
13509 /* We must do this after the equate_type_number_to_die call, in case
13510 this is a recursive type. This ensures that the modified_type_die
13511 recursion will terminate even if the type is recursive. Recursive
13512 types are possible in Ada. */
13513 sub_die = modified_type_die (item_type,
13514 TYPE_QUALS_NO_ADDR_SPACE (item_type),
13515 reverse,
13516 context_die);
13518 if (sub_die != NULL)
13519 add_AT_die_ref (mod_type_die, DW_AT_type, sub_die);
13521 add_gnat_descriptive_type_attribute (mod_type_die, type, context_die);
13522 if (TYPE_ARTIFICIAL (type))
13523 add_AT_flag (mod_type_die, DW_AT_artificial, 1);
13525 return mod_type_die;
13528 /* Generate DIEs for the generic parameters of T.
13529 T must be either a generic type or a generic function.
13530 See http://gcc.gnu.org/wiki/TemplateParmsDwarf for more. */
13532 static void
13533 gen_generic_params_dies (tree t)
13535 tree parms, args;
13536 int parms_num, i;
13537 dw_die_ref die = NULL;
13538 int non_default;
13540 if (!t || (TYPE_P (t) && !COMPLETE_TYPE_P (t)))
13541 return;
13543 if (TYPE_P (t))
13544 die = lookup_type_die (t);
13545 else if (DECL_P (t))
13546 die = lookup_decl_die (t);
13548 gcc_assert (die);
13550 parms = lang_hooks.get_innermost_generic_parms (t);
13551 if (!parms)
13552 /* T has no generic parameter. It means T is neither a generic type
13553 or function. End of story. */
13554 return;
13556 parms_num = TREE_VEC_LENGTH (parms);
13557 args = lang_hooks.get_innermost_generic_args (t);
13558 if (TREE_CHAIN (args) && TREE_CODE (TREE_CHAIN (args)) == INTEGER_CST)
13559 non_default = int_cst_value (TREE_CHAIN (args));
13560 else
13561 non_default = TREE_VEC_LENGTH (args);
13562 for (i = 0; i < parms_num; i++)
13564 tree parm, arg, arg_pack_elems;
13565 dw_die_ref parm_die;
13567 parm = TREE_VEC_ELT (parms, i);
13568 arg = TREE_VEC_ELT (args, i);
13569 arg_pack_elems = lang_hooks.types.get_argument_pack_elems (arg);
13570 gcc_assert (parm && TREE_VALUE (parm) && arg);
13572 if (parm && TREE_VALUE (parm) && arg)
13574 /* If PARM represents a template parameter pack,
13575 emit a DW_TAG_GNU_template_parameter_pack DIE, followed
13576 by DW_TAG_template_*_parameter DIEs for the argument
13577 pack elements of ARG. Note that ARG would then be
13578 an argument pack. */
13579 if (arg_pack_elems)
13580 parm_die = template_parameter_pack_die (TREE_VALUE (parm),
13581 arg_pack_elems,
13582 die);
13583 else
13584 parm_die = generic_parameter_die (TREE_VALUE (parm), arg,
13585 true /* emit name */, die);
13586 if (i >= non_default)
13587 add_AT_flag (parm_die, DW_AT_default_value, 1);
13592 /* Create and return a DIE for PARM which should be
13593 the representation of a generic type parameter.
13594 For instance, in the C++ front end, PARM would be a template parameter.
13595 ARG is the argument to PARM.
13596 EMIT_NAME_P if tree, the DIE will have DW_AT_name attribute set to the
13597 name of the PARM.
13598 PARENT_DIE is the parent DIE which the new created DIE should be added to,
13599 as a child node. */
13601 static dw_die_ref
13602 generic_parameter_die (tree parm, tree arg,
13603 bool emit_name_p,
13604 dw_die_ref parent_die)
13606 dw_die_ref tmpl_die = NULL;
13607 const char *name = NULL;
13609 /* C++2a accepts class literals as template parameters, and var
13610 decls with initializers represent them. The VAR_DECLs would be
13611 rejected, but we can take the DECL_INITIAL constructor and
13612 attempt to expand it. */
13613 if (arg && VAR_P (arg))
13614 arg = DECL_INITIAL (arg);
13616 if (!parm || !DECL_NAME (parm) || !arg)
13617 return NULL;
13619 /* We support non-type generic parameters and arguments,
13620 type generic parameters and arguments, as well as
13621 generic generic parameters (a.k.a. template template parameters in C++)
13622 and arguments. */
13623 if (TREE_CODE (parm) == PARM_DECL)
13624 /* PARM is a nontype generic parameter */
13625 tmpl_die = new_die (DW_TAG_template_value_param, parent_die, parm);
13626 else if (TREE_CODE (parm) == TYPE_DECL)
13627 /* PARM is a type generic parameter. */
13628 tmpl_die = new_die (DW_TAG_template_type_param, parent_die, parm);
13629 else if (lang_hooks.decls.generic_generic_parameter_decl_p (parm))
13630 /* PARM is a generic generic parameter.
13631 Its DIE is a GNU extension. It shall have a
13632 DW_AT_name attribute to represent the name of the template template
13633 parameter, and a DW_AT_GNU_template_name attribute to represent the
13634 name of the template template argument. */
13635 tmpl_die = new_die (DW_TAG_GNU_template_template_param,
13636 parent_die, parm);
13637 else
13638 gcc_unreachable ();
13640 if (tmpl_die)
13642 tree tmpl_type;
13644 /* If PARM is a generic parameter pack, it means we are
13645 emitting debug info for a template argument pack element.
13646 In other terms, ARG is a template argument pack element.
13647 In that case, we don't emit any DW_AT_name attribute for
13648 the die. */
13649 if (emit_name_p)
13651 name = IDENTIFIER_POINTER (DECL_NAME (parm));
13652 gcc_assert (name);
13653 add_AT_string (tmpl_die, DW_AT_name, name);
13656 if (!lang_hooks.decls.generic_generic_parameter_decl_p (parm))
13658 /* DWARF3, 5.6.8 says if PARM is a non-type generic parameter
13659 TMPL_DIE should have a child DW_AT_type attribute that is set
13660 to the type of the argument to PARM, which is ARG.
13661 If PARM is a type generic parameter, TMPL_DIE should have a
13662 child DW_AT_type that is set to ARG. */
13663 tmpl_type = TYPE_P (arg) ? arg : TREE_TYPE (arg);
13664 add_type_attribute (tmpl_die, tmpl_type,
13665 (TREE_THIS_VOLATILE (tmpl_type)
13666 ? TYPE_QUAL_VOLATILE : TYPE_UNQUALIFIED),
13667 false, parent_die);
13669 else
13671 /* So TMPL_DIE is a DIE representing a
13672 a generic generic template parameter, a.k.a template template
13673 parameter in C++ and arg is a template. */
13675 /* The DW_AT_GNU_template_name attribute of the DIE must be set
13676 to the name of the argument. */
13677 name = dwarf2_name (TYPE_P (arg) ? TYPE_NAME (arg) : arg, 1);
13678 if (name)
13679 add_AT_string (tmpl_die, DW_AT_GNU_template_name, name);
13682 if (TREE_CODE (parm) == PARM_DECL)
13683 /* So PARM is a non-type generic parameter.
13684 DWARF3 5.6.8 says we must set a DW_AT_const_value child
13685 attribute of TMPL_DIE which value represents the value
13686 of ARG.
13687 We must be careful here:
13688 The value of ARG might reference some function decls.
13689 We might currently be emitting debug info for a generic
13690 type and types are emitted before function decls, we don't
13691 know if the function decls referenced by ARG will actually be
13692 emitted after cgraph computations.
13693 So must defer the generation of the DW_AT_const_value to
13694 after cgraph is ready. */
13695 append_entry_to_tmpl_value_parm_die_table (tmpl_die, arg);
13698 return tmpl_die;
13701 /* Generate and return a DW_TAG_GNU_template_parameter_pack DIE representing.
13702 PARM_PACK must be a template parameter pack. The returned DIE
13703 will be child DIE of PARENT_DIE. */
13705 static dw_die_ref
13706 template_parameter_pack_die (tree parm_pack,
13707 tree parm_pack_args,
13708 dw_die_ref parent_die)
13710 dw_die_ref die;
13711 int j;
13713 gcc_assert (parent_die && parm_pack);
13715 die = new_die (DW_TAG_GNU_template_parameter_pack, parent_die, parm_pack);
13716 add_name_and_src_coords_attributes (die, parm_pack);
13717 for (j = 0; j < TREE_VEC_LENGTH (parm_pack_args); j++)
13718 generic_parameter_die (parm_pack,
13719 TREE_VEC_ELT (parm_pack_args, j),
13720 false /* Don't emit DW_AT_name */,
13721 die);
13722 return die;
13725 /* Return the DBX register number described by a given RTL node. */
13727 static unsigned int
13728 dbx_reg_number (const_rtx rtl)
13730 unsigned regno = REGNO (rtl);
13732 gcc_assert (regno < FIRST_PSEUDO_REGISTER);
13734 #ifdef LEAF_REG_REMAP
13735 if (crtl->uses_only_leaf_regs)
13737 int leaf_reg = LEAF_REG_REMAP (regno);
13738 if (leaf_reg != -1)
13739 regno = (unsigned) leaf_reg;
13741 #endif
13743 regno = DBX_REGISTER_NUMBER (regno);
13744 gcc_assert (regno != INVALID_REGNUM);
13745 return regno;
13748 /* Optionally add a DW_OP_piece term to a location description expression.
13749 DW_OP_piece is only added if the location description expression already
13750 doesn't end with DW_OP_piece. */
13752 static void
13753 add_loc_descr_op_piece (dw_loc_descr_ref *list_head, int size)
13755 dw_loc_descr_ref loc;
13757 if (*list_head != NULL)
13759 /* Find the end of the chain. */
13760 for (loc = *list_head; loc->dw_loc_next != NULL; loc = loc->dw_loc_next)
13763 if (loc->dw_loc_opc != DW_OP_piece)
13764 loc->dw_loc_next = new_loc_descr (DW_OP_piece, size, 0);
13768 /* Return a location descriptor that designates a machine register or
13769 zero if there is none. */
13771 static dw_loc_descr_ref
13772 reg_loc_descriptor (rtx rtl, enum var_init_status initialized)
13774 rtx regs;
13776 if (REGNO (rtl) >= FIRST_PSEUDO_REGISTER)
13777 return 0;
13779 /* We only use "frame base" when we're sure we're talking about the
13780 post-prologue local stack frame. We do this by *not* running
13781 register elimination until this point, and recognizing the special
13782 argument pointer and soft frame pointer rtx's.
13783 Use DW_OP_fbreg offset DW_OP_stack_value in this case. */
13784 if ((rtl == arg_pointer_rtx || rtl == frame_pointer_rtx)
13785 && eliminate_regs (rtl, VOIDmode, NULL_RTX) != rtl)
13787 dw_loc_descr_ref result = NULL;
13789 if (dwarf_version >= 4 || !dwarf_strict)
13791 result = mem_loc_descriptor (rtl, GET_MODE (rtl), VOIDmode,
13792 initialized);
13793 if (result)
13794 add_loc_descr (&result,
13795 new_loc_descr (DW_OP_stack_value, 0, 0));
13797 return result;
13800 regs = targetm.dwarf_register_span (rtl);
13802 if (REG_NREGS (rtl) > 1 || regs)
13803 return multiple_reg_loc_descriptor (rtl, regs, initialized);
13804 else
13806 unsigned int dbx_regnum = dbx_reg_number (rtl);
13807 if (dbx_regnum == IGNORED_DWARF_REGNUM)
13808 return 0;
13809 return one_reg_loc_descriptor (dbx_regnum, initialized);
13813 /* Return a location descriptor that designates a machine register for
13814 a given hard register number. */
13816 static dw_loc_descr_ref
13817 one_reg_loc_descriptor (unsigned int regno, enum var_init_status initialized)
13819 dw_loc_descr_ref reg_loc_descr;
13821 if (regno <= 31)
13822 reg_loc_descr
13823 = new_loc_descr ((enum dwarf_location_atom) (DW_OP_reg0 + regno), 0, 0);
13824 else
13825 reg_loc_descr = new_loc_descr (DW_OP_regx, regno, 0);
13827 if (initialized == VAR_INIT_STATUS_UNINITIALIZED)
13828 add_loc_descr (&reg_loc_descr, new_loc_descr (DW_OP_GNU_uninit, 0, 0));
13830 return reg_loc_descr;
13833 /* Given an RTL of a register, return a location descriptor that
13834 designates a value that spans more than one register. */
13836 static dw_loc_descr_ref
13837 multiple_reg_loc_descriptor (rtx rtl, rtx regs,
13838 enum var_init_status initialized)
13840 int size, i;
13841 dw_loc_descr_ref loc_result = NULL;
13843 /* Simple, contiguous registers. */
13844 if (regs == NULL_RTX)
13846 unsigned reg = REGNO (rtl);
13847 int nregs;
13849 #ifdef LEAF_REG_REMAP
13850 if (crtl->uses_only_leaf_regs)
13852 int leaf_reg = LEAF_REG_REMAP (reg);
13853 if (leaf_reg != -1)
13854 reg = (unsigned) leaf_reg;
13856 #endif
13858 gcc_assert ((unsigned) DBX_REGISTER_NUMBER (reg) == dbx_reg_number (rtl));
13859 nregs = REG_NREGS (rtl);
13861 /* At present we only track constant-sized pieces. */
13862 if (!GET_MODE_SIZE (GET_MODE (rtl)).is_constant (&size))
13863 return NULL;
13864 size /= nregs;
13866 loc_result = NULL;
13867 while (nregs--)
13869 dw_loc_descr_ref t;
13871 t = one_reg_loc_descriptor (DBX_REGISTER_NUMBER (reg),
13872 VAR_INIT_STATUS_INITIALIZED);
13873 add_loc_descr (&loc_result, t);
13874 add_loc_descr_op_piece (&loc_result, size);
13875 ++reg;
13877 return loc_result;
13880 /* Now onto stupid register sets in non contiguous locations. */
13882 gcc_assert (GET_CODE (regs) == PARALLEL);
13884 /* At present we only track constant-sized pieces. */
13885 if (!GET_MODE_SIZE (GET_MODE (XVECEXP (regs, 0, 0))).is_constant (&size))
13886 return NULL;
13887 loc_result = NULL;
13889 for (i = 0; i < XVECLEN (regs, 0); ++i)
13891 dw_loc_descr_ref t;
13893 t = one_reg_loc_descriptor (dbx_reg_number (XVECEXP (regs, 0, i)),
13894 VAR_INIT_STATUS_INITIALIZED);
13895 add_loc_descr (&loc_result, t);
13896 add_loc_descr_op_piece (&loc_result, size);
13899 if (loc_result && initialized == VAR_INIT_STATUS_UNINITIALIZED)
13900 add_loc_descr (&loc_result, new_loc_descr (DW_OP_GNU_uninit, 0, 0));
13901 return loc_result;
13904 static unsigned long size_of_int_loc_descriptor (HOST_WIDE_INT);
13906 /* Return a location descriptor that designates a constant i,
13907 as a compound operation from constant (i >> shift), constant shift
13908 and DW_OP_shl. */
13910 static dw_loc_descr_ref
13911 int_shift_loc_descriptor (HOST_WIDE_INT i, int shift)
13913 dw_loc_descr_ref ret = int_loc_descriptor (i >> shift);
13914 add_loc_descr (&ret, int_loc_descriptor (shift));
13915 add_loc_descr (&ret, new_loc_descr (DW_OP_shl, 0, 0));
13916 return ret;
13919 /* Return a location descriptor that designates constant POLY_I. */
13921 static dw_loc_descr_ref
13922 int_loc_descriptor (poly_int64 poly_i)
13924 enum dwarf_location_atom op;
13926 HOST_WIDE_INT i;
13927 if (!poly_i.is_constant (&i))
13929 /* Create location descriptions for the non-constant part and
13930 add any constant offset at the end. */
13931 dw_loc_descr_ref ret = NULL;
13932 HOST_WIDE_INT constant = poly_i.coeffs[0];
13933 for (unsigned int j = 1; j < NUM_POLY_INT_COEFFS; ++j)
13935 HOST_WIDE_INT coeff = poly_i.coeffs[j];
13936 if (coeff != 0)
13938 dw_loc_descr_ref start = ret;
13939 unsigned int factor;
13940 int bias;
13941 unsigned int regno = targetm.dwarf_poly_indeterminate_value
13942 (j, &factor, &bias);
13944 /* Add COEFF * ((REGNO / FACTOR) - BIAS) to the value:
13945 add COEFF * (REGNO / FACTOR) now and subtract
13946 COEFF * BIAS from the final constant part. */
13947 constant -= coeff * bias;
13948 add_loc_descr (&ret, new_reg_loc_descr (regno, 0));
13949 if (coeff % factor == 0)
13950 coeff /= factor;
13951 else
13953 int amount = exact_log2 (factor);
13954 gcc_assert (amount >= 0);
13955 add_loc_descr (&ret, int_loc_descriptor (amount));
13956 add_loc_descr (&ret, new_loc_descr (DW_OP_shr, 0, 0));
13958 if (coeff != 1)
13960 add_loc_descr (&ret, int_loc_descriptor (coeff));
13961 add_loc_descr (&ret, new_loc_descr (DW_OP_mul, 0, 0));
13963 if (start)
13964 add_loc_descr (&ret, new_loc_descr (DW_OP_plus, 0, 0));
13967 loc_descr_plus_const (&ret, constant);
13968 return ret;
13971 /* Pick the smallest representation of a constant, rather than just
13972 defaulting to the LEB encoding. */
13973 if (i >= 0)
13975 int clz = clz_hwi (i);
13976 int ctz = ctz_hwi (i);
13977 if (i <= 31)
13978 op = (enum dwarf_location_atom) (DW_OP_lit0 + i);
13979 else if (i <= 0xff)
13980 op = DW_OP_const1u;
13981 else if (i <= 0xffff)
13982 op = DW_OP_const2u;
13983 else if (clz + ctz >= HOST_BITS_PER_WIDE_INT - 5
13984 && clz + 5 + 255 >= HOST_BITS_PER_WIDE_INT)
13985 /* DW_OP_litX DW_OP_litY DW_OP_shl takes just 3 bytes and
13986 DW_OP_litX DW_OP_const1u Y DW_OP_shl takes just 4 bytes,
13987 while DW_OP_const4u is 5 bytes. */
13988 return int_shift_loc_descriptor (i, HOST_BITS_PER_WIDE_INT - clz - 5);
13989 else if (clz + ctz >= HOST_BITS_PER_WIDE_INT - 8
13990 && clz + 8 + 31 >= HOST_BITS_PER_WIDE_INT)
13991 /* DW_OP_const1u X DW_OP_litY DW_OP_shl takes just 4 bytes,
13992 while DW_OP_const4u is 5 bytes. */
13993 return int_shift_loc_descriptor (i, HOST_BITS_PER_WIDE_INT - clz - 8);
13995 else if (DWARF2_ADDR_SIZE == 4 && i > 0x7fffffff
13996 && size_of_int_loc_descriptor ((HOST_WIDE_INT) (int32_t) i)
13997 <= 4)
13999 /* As i >= 2**31, the double cast above will yield a negative number.
14000 Since wrapping is defined in DWARF expressions we can output big
14001 positive integers as small negative ones, regardless of the size
14002 of host wide ints.
14004 Here, since the evaluator will handle 32-bit values and since i >=
14005 2**31, we know it's going to be interpreted as a negative literal:
14006 store it this way if we can do better than 5 bytes this way. */
14007 return int_loc_descriptor ((HOST_WIDE_INT) (int32_t) i);
14009 else if (HOST_BITS_PER_WIDE_INT == 32 || i <= 0xffffffff)
14010 op = DW_OP_const4u;
14012 /* Past this point, i >= 0x100000000 and thus DW_OP_constu will take at
14013 least 6 bytes: see if we can do better before falling back to it. */
14014 else if (clz + ctz >= HOST_BITS_PER_WIDE_INT - 8
14015 && clz + 8 + 255 >= HOST_BITS_PER_WIDE_INT)
14016 /* DW_OP_const1u X DW_OP_const1u Y DW_OP_shl takes just 5 bytes. */
14017 return int_shift_loc_descriptor (i, HOST_BITS_PER_WIDE_INT - clz - 8);
14018 else if (clz + ctz >= HOST_BITS_PER_WIDE_INT - 16
14019 && clz + 16 + (size_of_uleb128 (i) > 5 ? 255 : 31)
14020 >= HOST_BITS_PER_WIDE_INT)
14021 /* DW_OP_const2u X DW_OP_litY DW_OP_shl takes just 5 bytes,
14022 DW_OP_const2u X DW_OP_const1u Y DW_OP_shl takes 6 bytes. */
14023 return int_shift_loc_descriptor (i, HOST_BITS_PER_WIDE_INT - clz - 16);
14024 else if (clz + ctz >= HOST_BITS_PER_WIDE_INT - 32
14025 && clz + 32 + 31 >= HOST_BITS_PER_WIDE_INT
14026 && size_of_uleb128 (i) > 6)
14027 /* DW_OP_const4u X DW_OP_litY DW_OP_shl takes just 7 bytes. */
14028 return int_shift_loc_descriptor (i, HOST_BITS_PER_WIDE_INT - clz - 32);
14029 else
14030 op = DW_OP_constu;
14032 else
14034 if (i >= -0x80)
14035 op = DW_OP_const1s;
14036 else if (i >= -0x8000)
14037 op = DW_OP_const2s;
14038 else if (HOST_BITS_PER_WIDE_INT == 32 || i >= -0x80000000)
14040 if (size_of_int_loc_descriptor (i) < 5)
14042 dw_loc_descr_ref ret = int_loc_descriptor (-i);
14043 add_loc_descr (&ret, new_loc_descr (DW_OP_neg, 0, 0));
14044 return ret;
14046 op = DW_OP_const4s;
14048 else
14050 if (size_of_int_loc_descriptor (i)
14051 < (unsigned long) 1 + size_of_sleb128 (i))
14053 dw_loc_descr_ref ret = int_loc_descriptor (-i);
14054 add_loc_descr (&ret, new_loc_descr (DW_OP_neg, 0, 0));
14055 return ret;
14057 op = DW_OP_consts;
14061 return new_loc_descr (op, i, 0);
14064 /* Likewise, for unsigned constants. */
14066 static dw_loc_descr_ref
14067 uint_loc_descriptor (unsigned HOST_WIDE_INT i)
14069 const unsigned HOST_WIDE_INT max_int = INTTYPE_MAXIMUM (HOST_WIDE_INT);
14070 const unsigned HOST_WIDE_INT max_uint
14071 = INTTYPE_MAXIMUM (unsigned HOST_WIDE_INT);
14073 /* If possible, use the clever signed constants handling. */
14074 if (i <= max_int)
14075 return int_loc_descriptor ((HOST_WIDE_INT) i);
14077 /* Here, we are left with positive numbers that cannot be represented as
14078 HOST_WIDE_INT, i.e.:
14079 max (HOST_WIDE_INT) < i <= max (unsigned HOST_WIDE_INT)
14081 Using DW_OP_const4/8/./u operation to encode them consumes a lot of bytes
14082 whereas may be better to output a negative integer: thanks to integer
14083 wrapping, we know that:
14084 x = x - 2 ** DWARF2_ADDR_SIZE
14085 = x - 2 * (max (HOST_WIDE_INT) + 1)
14086 So numbers close to max (unsigned HOST_WIDE_INT) could be represented as
14087 small negative integers. Let's try that in cases it will clearly improve
14088 the encoding: there is no gain turning DW_OP_const4u into
14089 DW_OP_const4s. */
14090 if (DWARF2_ADDR_SIZE * 8 == HOST_BITS_PER_WIDE_INT
14091 && ((DWARF2_ADDR_SIZE == 4 && i > max_uint - 0x8000)
14092 || (DWARF2_ADDR_SIZE == 8 && i > max_uint - 0x80000000)))
14094 const unsigned HOST_WIDE_INT first_shift = i - max_int - 1;
14096 /* Now, -1 < first_shift <= max (HOST_WIDE_INT)
14097 i.e. 0 <= first_shift <= max (HOST_WIDE_INT). */
14098 const HOST_WIDE_INT second_shift
14099 = (HOST_WIDE_INT) first_shift - (HOST_WIDE_INT) max_int - 1;
14101 /* So we finally have:
14102 -max (HOST_WIDE_INT) - 1 <= second_shift <= -1.
14103 i.e. min (HOST_WIDE_INT) <= second_shift < 0. */
14104 return int_loc_descriptor (second_shift);
14107 /* Last chance: fallback to a simple constant operation. */
14108 return new_loc_descr
14109 ((HOST_BITS_PER_WIDE_INT == 32 || i <= 0xffffffff)
14110 ? DW_OP_const4u
14111 : DW_OP_const8u,
14112 i, 0);
14115 /* Generate and return a location description that computes the unsigned
14116 comparison of the two stack top entries (a OP b where b is the top-most
14117 entry and a is the second one). The KIND of comparison can be LT_EXPR,
14118 LE_EXPR, GT_EXPR or GE_EXPR. */
14120 static dw_loc_descr_ref
14121 uint_comparison_loc_list (enum tree_code kind)
14123 enum dwarf_location_atom op, flip_op;
14124 dw_loc_descr_ref ret, bra_node, jmp_node, tmp;
14126 switch (kind)
14128 case LT_EXPR:
14129 op = DW_OP_lt;
14130 break;
14131 case LE_EXPR:
14132 op = DW_OP_le;
14133 break;
14134 case GT_EXPR:
14135 op = DW_OP_gt;
14136 break;
14137 case GE_EXPR:
14138 op = DW_OP_ge;
14139 break;
14140 default:
14141 gcc_unreachable ();
14144 bra_node = new_loc_descr (DW_OP_bra, 0, 0);
14145 jmp_node = new_loc_descr (DW_OP_skip, 0, 0);
14147 /* Until DWARFv4, operations all work on signed integers. It is nevertheless
14148 possible to perform unsigned comparisons: we just have to distinguish
14149 three cases:
14151 1. when a and b have the same sign (as signed integers); then we should
14152 return: a OP(signed) b;
14154 2. when a is a negative signed integer while b is a positive one, then a
14155 is a greater unsigned integer than b; likewise when a and b's roles
14156 are flipped.
14158 So first, compare the sign of the two operands. */
14159 ret = new_loc_descr (DW_OP_over, 0, 0);
14160 add_loc_descr (&ret, new_loc_descr (DW_OP_over, 0, 0));
14161 add_loc_descr (&ret, new_loc_descr (DW_OP_xor, 0, 0));
14162 /* If they have different signs (i.e. they have different sign bits), then
14163 the stack top value has now the sign bit set and thus it's smaller than
14164 zero. */
14165 add_loc_descr (&ret, new_loc_descr (DW_OP_lit0, 0, 0));
14166 add_loc_descr (&ret, new_loc_descr (DW_OP_lt, 0, 0));
14167 add_loc_descr (&ret, bra_node);
14169 /* We are in case 1. At this point, we know both operands have the same
14170 sign, to it's safe to use the built-in signed comparison. */
14171 add_loc_descr (&ret, new_loc_descr (op, 0, 0));
14172 add_loc_descr (&ret, jmp_node);
14174 /* We are in case 2. Here, we know both operands do not have the same sign,
14175 so we have to flip the signed comparison. */
14176 flip_op = (kind == LT_EXPR || kind == LE_EXPR) ? DW_OP_gt : DW_OP_lt;
14177 tmp = new_loc_descr (flip_op, 0, 0);
14178 bra_node->dw_loc_oprnd1.val_class = dw_val_class_loc;
14179 bra_node->dw_loc_oprnd1.v.val_loc = tmp;
14180 add_loc_descr (&ret, tmp);
14182 /* This dummy operation is necessary to make the two branches join. */
14183 tmp = new_loc_descr (DW_OP_nop, 0, 0);
14184 jmp_node->dw_loc_oprnd1.val_class = dw_val_class_loc;
14185 jmp_node->dw_loc_oprnd1.v.val_loc = tmp;
14186 add_loc_descr (&ret, tmp);
14188 return ret;
14191 /* Likewise, but takes the location description lists (might be destructive on
14192 them). Return NULL if either is NULL or if concatenation fails. */
14194 static dw_loc_list_ref
14195 loc_list_from_uint_comparison (dw_loc_list_ref left, dw_loc_list_ref right,
14196 enum tree_code kind)
14198 if (left == NULL || right == NULL)
14199 return NULL;
14201 add_loc_list (&left, right);
14202 if (left == NULL)
14203 return NULL;
14205 add_loc_descr_to_each (left, uint_comparison_loc_list (kind));
14206 return left;
14209 /* Return size_of_locs (int_shift_loc_descriptor (i, shift))
14210 without actually allocating it. */
14212 static unsigned long
14213 size_of_int_shift_loc_descriptor (HOST_WIDE_INT i, int shift)
14215 return size_of_int_loc_descriptor (i >> shift)
14216 + size_of_int_loc_descriptor (shift)
14217 + 1;
14220 /* Return size_of_locs (int_loc_descriptor (i)) without
14221 actually allocating it. */
14223 static unsigned long
14224 size_of_int_loc_descriptor (HOST_WIDE_INT i)
14226 unsigned long s;
14228 if (i >= 0)
14230 int clz, ctz;
14231 if (i <= 31)
14232 return 1;
14233 else if (i <= 0xff)
14234 return 2;
14235 else if (i <= 0xffff)
14236 return 3;
14237 clz = clz_hwi (i);
14238 ctz = ctz_hwi (i);
14239 if (clz + ctz >= HOST_BITS_PER_WIDE_INT - 5
14240 && clz + 5 + 255 >= HOST_BITS_PER_WIDE_INT)
14241 return size_of_int_shift_loc_descriptor (i, HOST_BITS_PER_WIDE_INT
14242 - clz - 5);
14243 else if (clz + ctz >= HOST_BITS_PER_WIDE_INT - 8
14244 && clz + 8 + 31 >= HOST_BITS_PER_WIDE_INT)
14245 return size_of_int_shift_loc_descriptor (i, HOST_BITS_PER_WIDE_INT
14246 - clz - 8);
14247 else if (DWARF2_ADDR_SIZE == 4 && i > 0x7fffffff
14248 && size_of_int_loc_descriptor ((HOST_WIDE_INT) (int32_t) i)
14249 <= 4)
14250 return size_of_int_loc_descriptor ((HOST_WIDE_INT) (int32_t) i);
14251 else if (HOST_BITS_PER_WIDE_INT == 32 || i <= 0xffffffff)
14252 return 5;
14253 s = size_of_uleb128 ((unsigned HOST_WIDE_INT) i);
14254 if (clz + ctz >= HOST_BITS_PER_WIDE_INT - 8
14255 && clz + 8 + 255 >= HOST_BITS_PER_WIDE_INT)
14256 return size_of_int_shift_loc_descriptor (i, HOST_BITS_PER_WIDE_INT
14257 - clz - 8);
14258 else if (clz + ctz >= HOST_BITS_PER_WIDE_INT - 16
14259 && clz + 16 + (s > 5 ? 255 : 31) >= HOST_BITS_PER_WIDE_INT)
14260 return size_of_int_shift_loc_descriptor (i, HOST_BITS_PER_WIDE_INT
14261 - clz - 16);
14262 else if (clz + ctz >= HOST_BITS_PER_WIDE_INT - 32
14263 && clz + 32 + 31 >= HOST_BITS_PER_WIDE_INT
14264 && s > 6)
14265 return size_of_int_shift_loc_descriptor (i, HOST_BITS_PER_WIDE_INT
14266 - clz - 32);
14267 else
14268 return 1 + s;
14270 else
14272 if (i >= -0x80)
14273 return 2;
14274 else if (i >= -0x8000)
14275 return 3;
14276 else if (HOST_BITS_PER_WIDE_INT == 32 || i >= -0x80000000)
14278 if (-(unsigned HOST_WIDE_INT) i != (unsigned HOST_WIDE_INT) i)
14280 s = size_of_int_loc_descriptor (-i) + 1;
14281 if (s < 5)
14282 return s;
14284 return 5;
14286 else
14288 unsigned long r = 1 + size_of_sleb128 (i);
14289 if (-(unsigned HOST_WIDE_INT) i != (unsigned HOST_WIDE_INT) i)
14291 s = size_of_int_loc_descriptor (-i) + 1;
14292 if (s < r)
14293 return s;
14295 return r;
14300 /* Return loc description representing "address" of integer value.
14301 This can appear only as toplevel expression. */
14303 static dw_loc_descr_ref
14304 address_of_int_loc_descriptor (int size, HOST_WIDE_INT i)
14306 int litsize;
14307 dw_loc_descr_ref loc_result = NULL;
14309 if (!(dwarf_version >= 4 || !dwarf_strict))
14310 return NULL;
14312 litsize = size_of_int_loc_descriptor (i);
14313 /* Determine if DW_OP_stack_value or DW_OP_implicit_value
14314 is more compact. For DW_OP_stack_value we need:
14315 litsize + 1 (DW_OP_stack_value)
14316 and for DW_OP_implicit_value:
14317 1 (DW_OP_implicit_value) + 1 (length) + size. */
14318 if ((int) DWARF2_ADDR_SIZE >= size && litsize + 1 <= 1 + 1 + size)
14320 loc_result = int_loc_descriptor (i);
14321 add_loc_descr (&loc_result,
14322 new_loc_descr (DW_OP_stack_value, 0, 0));
14323 return loc_result;
14326 loc_result = new_loc_descr (DW_OP_implicit_value,
14327 size, 0);
14328 loc_result->dw_loc_oprnd2.val_class = dw_val_class_const;
14329 loc_result->dw_loc_oprnd2.v.val_int = i;
14330 return loc_result;
14333 /* Return a location descriptor that designates a base+offset location. */
14335 static dw_loc_descr_ref
14336 based_loc_descr (rtx reg, poly_int64 offset,
14337 enum var_init_status initialized)
14339 unsigned int regno;
14340 dw_loc_descr_ref result;
14341 dw_fde_ref fde = cfun->fde;
14343 /* We only use "frame base" when we're sure we're talking about the
14344 post-prologue local stack frame. We do this by *not* running
14345 register elimination until this point, and recognizing the special
14346 argument pointer and soft frame pointer rtx's. */
14347 if (reg == arg_pointer_rtx || reg == frame_pointer_rtx)
14349 rtx elim = (ira_use_lra_p
14350 ? lra_eliminate_regs (reg, VOIDmode, NULL_RTX)
14351 : eliminate_regs (reg, VOIDmode, NULL_RTX));
14353 if (elim != reg)
14355 /* Allow hard frame pointer here even if frame pointer
14356 isn't used since hard frame pointer is encoded with
14357 DW_OP_fbreg which uses the DW_AT_frame_base attribute,
14358 not hard frame pointer directly. */
14359 elim = strip_offset_and_add (elim, &offset);
14360 gcc_assert (elim == hard_frame_pointer_rtx
14361 || elim == stack_pointer_rtx);
14363 /* If drap register is used to align stack, use frame
14364 pointer + offset to access stack variables. If stack
14365 is aligned without drap, use stack pointer + offset to
14366 access stack variables. */
14367 if (crtl->stack_realign_tried
14368 && reg == frame_pointer_rtx)
14370 int base_reg
14371 = DWARF_FRAME_REGNUM ((fde && fde->drap_reg != INVALID_REGNUM)
14372 ? HARD_FRAME_POINTER_REGNUM
14373 : REGNO (elim));
14374 return new_reg_loc_descr (base_reg, offset);
14377 gcc_assert (frame_pointer_fb_offset_valid);
14378 offset += frame_pointer_fb_offset;
14379 HOST_WIDE_INT const_offset;
14380 if (offset.is_constant (&const_offset))
14381 return new_loc_descr (DW_OP_fbreg, const_offset, 0);
14382 else
14384 dw_loc_descr_ref ret = new_loc_descr (DW_OP_fbreg, 0, 0);
14385 loc_descr_plus_const (&ret, offset);
14386 return ret;
14391 regno = REGNO (reg);
14392 #ifdef LEAF_REG_REMAP
14393 if (crtl->uses_only_leaf_regs)
14395 int leaf_reg = LEAF_REG_REMAP (regno);
14396 if (leaf_reg != -1)
14397 regno = (unsigned) leaf_reg;
14399 #endif
14400 regno = DWARF_FRAME_REGNUM (regno);
14402 HOST_WIDE_INT const_offset;
14403 if (!optimize && fde
14404 && (fde->drap_reg == regno || fde->vdrap_reg == regno)
14405 && offset.is_constant (&const_offset))
14407 /* Use cfa+offset to represent the location of arguments passed
14408 on the stack when drap is used to align stack.
14409 Only do this when not optimizing, for optimized code var-tracking
14410 is supposed to track where the arguments live and the register
14411 used as vdrap or drap in some spot might be used for something
14412 else in other part of the routine. */
14413 return new_loc_descr (DW_OP_fbreg, const_offset, 0);
14416 result = new_reg_loc_descr (regno, offset);
14418 if (initialized == VAR_INIT_STATUS_UNINITIALIZED)
14419 add_loc_descr (&result, new_loc_descr (DW_OP_GNU_uninit, 0, 0));
14421 return result;
14424 /* Return true if this RTL expression describes a base+offset calculation. */
14426 static inline int
14427 is_based_loc (const_rtx rtl)
14429 return (GET_CODE (rtl) == PLUS
14430 && ((REG_P (XEXP (rtl, 0))
14431 && REGNO (XEXP (rtl, 0)) < FIRST_PSEUDO_REGISTER
14432 && CONST_INT_P (XEXP (rtl, 1)))));
14435 /* Try to handle TLS MEMs, for which mem_loc_descriptor on XEXP (mem, 0)
14436 failed. */
14438 static dw_loc_descr_ref
14439 tls_mem_loc_descriptor (rtx mem)
14441 tree base;
14442 dw_loc_descr_ref loc_result;
14444 if (MEM_EXPR (mem) == NULL_TREE || !MEM_OFFSET_KNOWN_P (mem))
14445 return NULL;
14447 base = get_base_address (MEM_EXPR (mem));
14448 if (base == NULL
14449 || !VAR_P (base)
14450 || !DECL_THREAD_LOCAL_P (base))
14451 return NULL;
14453 loc_result = loc_descriptor_from_tree (MEM_EXPR (mem), 1, NULL);
14454 if (loc_result == NULL)
14455 return NULL;
14457 if (maybe_ne (MEM_OFFSET (mem), 0))
14458 loc_descr_plus_const (&loc_result, MEM_OFFSET (mem));
14460 return loc_result;
14463 /* Output debug info about reason why we failed to expand expression as dwarf
14464 expression. */
14466 static void
14467 expansion_failed (tree expr, rtx rtl, char const *reason)
14469 if (dump_file && (dump_flags & TDF_DETAILS))
14471 fprintf (dump_file, "Failed to expand as dwarf: ");
14472 if (expr)
14473 print_generic_expr (dump_file, expr, dump_flags);
14474 if (rtl)
14476 fprintf (dump_file, "\n");
14477 print_rtl (dump_file, rtl);
14479 fprintf (dump_file, "\nReason: %s\n", reason);
14483 /* Helper function for const_ok_for_output. */
14485 static bool
14486 const_ok_for_output_1 (rtx rtl)
14488 if (targetm.const_not_ok_for_debug_p (rtl))
14490 if (GET_CODE (rtl) != UNSPEC)
14492 expansion_failed (NULL_TREE, rtl,
14493 "Expression rejected for debug by the backend.\n");
14494 return false;
14497 /* If delegitimize_address couldn't do anything with the UNSPEC, and
14498 the target hook doesn't explicitly allow it in debug info, assume
14499 we can't express it in the debug info. */
14500 /* Don't complain about TLS UNSPECs, those are just too hard to
14501 delegitimize. Note this could be a non-decl SYMBOL_REF such as
14502 one in a constant pool entry, so testing SYMBOL_REF_TLS_MODEL
14503 rather than DECL_THREAD_LOCAL_P is not just an optimization. */
14504 if (flag_checking
14505 && (XVECLEN (rtl, 0) == 0
14506 || GET_CODE (XVECEXP (rtl, 0, 0)) != SYMBOL_REF
14507 || SYMBOL_REF_TLS_MODEL (XVECEXP (rtl, 0, 0)) == TLS_MODEL_NONE))
14508 inform (current_function_decl
14509 ? DECL_SOURCE_LOCATION (current_function_decl)
14510 : UNKNOWN_LOCATION,
14511 #if NUM_UNSPEC_VALUES > 0
14512 "non-delegitimized UNSPEC %s (%d) found in variable location",
14513 ((XINT (rtl, 1) >= 0 && XINT (rtl, 1) < NUM_UNSPEC_VALUES)
14514 ? unspec_strings[XINT (rtl, 1)] : "unknown"),
14515 #else
14516 "non-delegitimized UNSPEC %d found in variable location",
14517 #endif
14518 XINT (rtl, 1));
14519 expansion_failed (NULL_TREE, rtl,
14520 "UNSPEC hasn't been delegitimized.\n");
14521 return false;
14524 if (CONST_POLY_INT_P (rtl))
14525 return false;
14527 /* FIXME: Refer to PR60655. It is possible for simplification
14528 of rtl expressions in var tracking to produce such expressions.
14529 We should really identify / validate expressions
14530 enclosed in CONST that can be handled by assemblers on various
14531 targets and only handle legitimate cases here. */
14532 switch (GET_CODE (rtl))
14534 case SYMBOL_REF:
14535 break;
14536 case NOT:
14537 case NEG:
14538 return false;
14539 case PLUS:
14541 /* Make sure SYMBOL_REFs/UNSPECs are at most in one of the
14542 operands. */
14543 subrtx_var_iterator::array_type array;
14544 bool first = false;
14545 FOR_EACH_SUBRTX_VAR (iter, array, XEXP (rtl, 0), ALL)
14546 if (SYMBOL_REF_P (*iter)
14547 || LABEL_P (*iter)
14548 || GET_CODE (*iter) == UNSPEC)
14550 first = true;
14551 break;
14553 if (!first)
14554 return true;
14555 FOR_EACH_SUBRTX_VAR (iter, array, XEXP (rtl, 1), ALL)
14556 if (SYMBOL_REF_P (*iter)
14557 || LABEL_P (*iter)
14558 || GET_CODE (*iter) == UNSPEC)
14559 return false;
14560 return true;
14562 case MINUS:
14564 /* Disallow negation of SYMBOL_REFs or UNSPECs when they
14565 appear in the second operand of MINUS. */
14566 subrtx_var_iterator::array_type array;
14567 FOR_EACH_SUBRTX_VAR (iter, array, XEXP (rtl, 1), ALL)
14568 if (SYMBOL_REF_P (*iter)
14569 || LABEL_P (*iter)
14570 || GET_CODE (*iter) == UNSPEC)
14571 return false;
14572 return true;
14574 default:
14575 return true;
14578 if (CONSTANT_POOL_ADDRESS_P (rtl))
14580 bool marked;
14581 get_pool_constant_mark (rtl, &marked);
14582 /* If all references to this pool constant were optimized away,
14583 it was not output and thus we can't represent it. */
14584 if (!marked)
14586 expansion_failed (NULL_TREE, rtl,
14587 "Constant was removed from constant pool.\n");
14588 return false;
14592 if (SYMBOL_REF_TLS_MODEL (rtl) != TLS_MODEL_NONE)
14593 return false;
14595 /* Avoid references to external symbols in debug info, on several targets
14596 the linker might even refuse to link when linking a shared library,
14597 and in many other cases the relocations for .debug_info/.debug_loc are
14598 dropped, so the address becomes zero anyway. Hidden symbols, guaranteed
14599 to be defined within the same shared library or executable are fine. */
14600 if (SYMBOL_REF_EXTERNAL_P (rtl))
14602 tree decl = SYMBOL_REF_DECL (rtl);
14604 if (decl == NULL || !targetm.binds_local_p (decl))
14606 expansion_failed (NULL_TREE, rtl,
14607 "Symbol not defined in current TU.\n");
14608 return false;
14612 return true;
14615 /* Return true if constant RTL can be emitted in DW_OP_addr or
14616 DW_AT_const_value. TLS SYMBOL_REFs, external SYMBOL_REFs or
14617 non-marked constant pool SYMBOL_REFs can't be referenced in it. */
14619 static bool
14620 const_ok_for_output (rtx rtl)
14622 if (GET_CODE (rtl) == SYMBOL_REF)
14623 return const_ok_for_output_1 (rtl);
14625 if (GET_CODE (rtl) == CONST)
14627 subrtx_var_iterator::array_type array;
14628 FOR_EACH_SUBRTX_VAR (iter, array, XEXP (rtl, 0), ALL)
14629 if (!const_ok_for_output_1 (*iter))
14630 return false;
14631 return true;
14634 return true;
14637 /* Return a reference to DW_TAG_base_type corresponding to MODE and UNSIGNEDP
14638 if possible, NULL otherwise. */
14640 static dw_die_ref
14641 base_type_for_mode (machine_mode mode, bool unsignedp)
14643 dw_die_ref type_die;
14644 tree type = lang_hooks.types.type_for_mode (mode, unsignedp);
14646 if (type == NULL)
14647 return NULL;
14648 switch (TREE_CODE (type))
14650 case INTEGER_TYPE:
14651 case REAL_TYPE:
14652 break;
14653 default:
14654 return NULL;
14656 type_die = lookup_type_die (type);
14657 if (!type_die)
14658 type_die = modified_type_die (type, TYPE_UNQUALIFIED, false,
14659 comp_unit_die ());
14660 if (type_die == NULL || type_die->die_tag != DW_TAG_base_type)
14661 return NULL;
14662 return type_die;
14665 /* For OP descriptor assumed to be in unsigned MODE, convert it to a unsigned
14666 type matching MODE, or, if MODE is narrower than or as wide as
14667 DWARF2_ADDR_SIZE, untyped. Return NULL if the conversion is not
14668 possible. */
14670 static dw_loc_descr_ref
14671 convert_descriptor_to_mode (scalar_int_mode mode, dw_loc_descr_ref op)
14673 machine_mode outer_mode = mode;
14674 dw_die_ref type_die;
14675 dw_loc_descr_ref cvt;
14677 if (GET_MODE_SIZE (mode) <= DWARF2_ADDR_SIZE)
14679 add_loc_descr (&op, new_loc_descr (dwarf_OP (DW_OP_convert), 0, 0));
14680 return op;
14682 type_die = base_type_for_mode (outer_mode, 1);
14683 if (type_die == NULL)
14684 return NULL;
14685 cvt = new_loc_descr (dwarf_OP (DW_OP_convert), 0, 0);
14686 cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
14687 cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die;
14688 cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
14689 add_loc_descr (&op, cvt);
14690 return op;
14693 /* Return location descriptor for comparison OP with operands OP0 and OP1. */
14695 static dw_loc_descr_ref
14696 compare_loc_descriptor (enum dwarf_location_atom op, dw_loc_descr_ref op0,
14697 dw_loc_descr_ref op1)
14699 dw_loc_descr_ref ret = op0;
14700 add_loc_descr (&ret, op1);
14701 add_loc_descr (&ret, new_loc_descr (op, 0, 0));
14702 if (STORE_FLAG_VALUE != 1)
14704 add_loc_descr (&ret, int_loc_descriptor (STORE_FLAG_VALUE));
14705 add_loc_descr (&ret, new_loc_descr (DW_OP_mul, 0, 0));
14707 return ret;
14710 /* Subroutine of scompare_loc_descriptor for the case in which we're
14711 comparing two scalar integer operands OP0 and OP1 that have mode OP_MODE,
14712 and in which OP_MODE is bigger than DWARF2_ADDR_SIZE. */
14714 static dw_loc_descr_ref
14715 scompare_loc_descriptor_wide (enum dwarf_location_atom op,
14716 scalar_int_mode op_mode,
14717 dw_loc_descr_ref op0, dw_loc_descr_ref op1)
14719 dw_die_ref type_die = base_type_for_mode (op_mode, 0);
14720 dw_loc_descr_ref cvt;
14722 if (type_die == NULL)
14723 return NULL;
14724 cvt = new_loc_descr (dwarf_OP (DW_OP_convert), 0, 0);
14725 cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
14726 cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die;
14727 cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
14728 add_loc_descr (&op0, cvt);
14729 cvt = new_loc_descr (dwarf_OP (DW_OP_convert), 0, 0);
14730 cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
14731 cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die;
14732 cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
14733 add_loc_descr (&op1, cvt);
14734 return compare_loc_descriptor (op, op0, op1);
14737 /* Subroutine of scompare_loc_descriptor for the case in which we're
14738 comparing two scalar integer operands OP0 and OP1 that have mode OP_MODE,
14739 and in which OP_MODE is smaller than DWARF2_ADDR_SIZE. */
14741 static dw_loc_descr_ref
14742 scompare_loc_descriptor_narrow (enum dwarf_location_atom op, rtx rtl,
14743 scalar_int_mode op_mode,
14744 dw_loc_descr_ref op0, dw_loc_descr_ref op1)
14746 int shift = (DWARF2_ADDR_SIZE - GET_MODE_SIZE (op_mode)) * BITS_PER_UNIT;
14747 /* For eq/ne, if the operands are known to be zero-extended,
14748 there is no need to do the fancy shifting up. */
14749 if (op == DW_OP_eq || op == DW_OP_ne)
14751 dw_loc_descr_ref last0, last1;
14752 for (last0 = op0; last0->dw_loc_next != NULL; last0 = last0->dw_loc_next)
14754 for (last1 = op1; last1->dw_loc_next != NULL; last1 = last1->dw_loc_next)
14756 /* deref_size zero extends, and for constants we can check
14757 whether they are zero extended or not. */
14758 if (((last0->dw_loc_opc == DW_OP_deref_size
14759 && last0->dw_loc_oprnd1.v.val_int <= GET_MODE_SIZE (op_mode))
14760 || (CONST_INT_P (XEXP (rtl, 0))
14761 && (unsigned HOST_WIDE_INT) INTVAL (XEXP (rtl, 0))
14762 == (INTVAL (XEXP (rtl, 0)) & GET_MODE_MASK (op_mode))))
14763 && ((last1->dw_loc_opc == DW_OP_deref_size
14764 && last1->dw_loc_oprnd1.v.val_int <= GET_MODE_SIZE (op_mode))
14765 || (CONST_INT_P (XEXP (rtl, 1))
14766 && (unsigned HOST_WIDE_INT) INTVAL (XEXP (rtl, 1))
14767 == (INTVAL (XEXP (rtl, 1)) & GET_MODE_MASK (op_mode)))))
14768 return compare_loc_descriptor (op, op0, op1);
14770 /* EQ/NE comparison against constant in narrower type than
14771 DWARF2_ADDR_SIZE can be performed either as
14772 DW_OP_const1u <shift> DW_OP_shl DW_OP_const* <cst << shift>
14773 DW_OP_{eq,ne}
14775 DW_OP_const*u <mode_mask> DW_OP_and DW_OP_const* <cst & mode_mask>
14776 DW_OP_{eq,ne}. Pick whatever is shorter. */
14777 if (CONST_INT_P (XEXP (rtl, 1))
14778 && GET_MODE_BITSIZE (op_mode) < HOST_BITS_PER_WIDE_INT
14779 && (size_of_int_loc_descriptor (shift) + 1
14780 + size_of_int_loc_descriptor (UINTVAL (XEXP (rtl, 1)) << shift)
14781 >= size_of_int_loc_descriptor (GET_MODE_MASK (op_mode)) + 1
14782 + size_of_int_loc_descriptor (INTVAL (XEXP (rtl, 1))
14783 & GET_MODE_MASK (op_mode))))
14785 add_loc_descr (&op0, int_loc_descriptor (GET_MODE_MASK (op_mode)));
14786 add_loc_descr (&op0, new_loc_descr (DW_OP_and, 0, 0));
14787 op1 = int_loc_descriptor (INTVAL (XEXP (rtl, 1))
14788 & GET_MODE_MASK (op_mode));
14789 return compare_loc_descriptor (op, op0, op1);
14792 add_loc_descr (&op0, int_loc_descriptor (shift));
14793 add_loc_descr (&op0, new_loc_descr (DW_OP_shl, 0, 0));
14794 if (CONST_INT_P (XEXP (rtl, 1)))
14795 op1 = int_loc_descriptor (UINTVAL (XEXP (rtl, 1)) << shift);
14796 else
14798 add_loc_descr (&op1, int_loc_descriptor (shift));
14799 add_loc_descr (&op1, new_loc_descr (DW_OP_shl, 0, 0));
14801 return compare_loc_descriptor (op, op0, op1);
14804 /* Return location descriptor for unsigned comparison OP RTL. */
14806 static dw_loc_descr_ref
14807 scompare_loc_descriptor (enum dwarf_location_atom op, rtx rtl,
14808 machine_mode mem_mode)
14810 machine_mode op_mode = GET_MODE (XEXP (rtl, 0));
14811 dw_loc_descr_ref op0, op1;
14813 if (op_mode == VOIDmode)
14814 op_mode = GET_MODE (XEXP (rtl, 1));
14815 if (op_mode == VOIDmode)
14816 return NULL;
14818 scalar_int_mode int_op_mode;
14819 if (dwarf_strict
14820 && dwarf_version < 5
14821 && (!is_a <scalar_int_mode> (op_mode, &int_op_mode)
14822 || GET_MODE_SIZE (int_op_mode) > DWARF2_ADDR_SIZE))
14823 return NULL;
14825 op0 = mem_loc_descriptor (XEXP (rtl, 0), op_mode, mem_mode,
14826 VAR_INIT_STATUS_INITIALIZED);
14827 op1 = mem_loc_descriptor (XEXP (rtl, 1), op_mode, mem_mode,
14828 VAR_INIT_STATUS_INITIALIZED);
14830 if (op0 == NULL || op1 == NULL)
14831 return NULL;
14833 if (is_a <scalar_int_mode> (op_mode, &int_op_mode))
14835 if (GET_MODE_SIZE (int_op_mode) < DWARF2_ADDR_SIZE)
14836 return scompare_loc_descriptor_narrow (op, rtl, int_op_mode, op0, op1);
14838 if (GET_MODE_SIZE (int_op_mode) > DWARF2_ADDR_SIZE)
14839 return scompare_loc_descriptor_wide (op, int_op_mode, op0, op1);
14841 return compare_loc_descriptor (op, op0, op1);
14844 /* Return location descriptor for unsigned comparison OP RTL. */
14846 static dw_loc_descr_ref
14847 ucompare_loc_descriptor (enum dwarf_location_atom op, rtx rtl,
14848 machine_mode mem_mode)
14850 dw_loc_descr_ref op0, op1;
14852 machine_mode test_op_mode = GET_MODE (XEXP (rtl, 0));
14853 if (test_op_mode == VOIDmode)
14854 test_op_mode = GET_MODE (XEXP (rtl, 1));
14856 scalar_int_mode op_mode;
14857 if (!is_a <scalar_int_mode> (test_op_mode, &op_mode))
14858 return NULL;
14860 if (dwarf_strict
14861 && dwarf_version < 5
14862 && GET_MODE_SIZE (op_mode) > DWARF2_ADDR_SIZE)
14863 return NULL;
14865 op0 = mem_loc_descriptor (XEXP (rtl, 0), op_mode, mem_mode,
14866 VAR_INIT_STATUS_INITIALIZED);
14867 op1 = mem_loc_descriptor (XEXP (rtl, 1), op_mode, mem_mode,
14868 VAR_INIT_STATUS_INITIALIZED);
14870 if (op0 == NULL || op1 == NULL)
14871 return NULL;
14873 if (GET_MODE_SIZE (op_mode) < DWARF2_ADDR_SIZE)
14875 HOST_WIDE_INT mask = GET_MODE_MASK (op_mode);
14876 dw_loc_descr_ref last0, last1;
14877 for (last0 = op0; last0->dw_loc_next != NULL; last0 = last0->dw_loc_next)
14879 for (last1 = op1; last1->dw_loc_next != NULL; last1 = last1->dw_loc_next)
14881 if (CONST_INT_P (XEXP (rtl, 0)))
14882 op0 = int_loc_descriptor (INTVAL (XEXP (rtl, 0)) & mask);
14883 /* deref_size zero extends, so no need to mask it again. */
14884 else if (last0->dw_loc_opc != DW_OP_deref_size
14885 || last0->dw_loc_oprnd1.v.val_int > GET_MODE_SIZE (op_mode))
14887 add_loc_descr (&op0, int_loc_descriptor (mask));
14888 add_loc_descr (&op0, new_loc_descr (DW_OP_and, 0, 0));
14890 if (CONST_INT_P (XEXP (rtl, 1)))
14891 op1 = int_loc_descriptor (INTVAL (XEXP (rtl, 1)) & mask);
14892 /* deref_size zero extends, so no need to mask it again. */
14893 else if (last1->dw_loc_opc != DW_OP_deref_size
14894 || last1->dw_loc_oprnd1.v.val_int > GET_MODE_SIZE (op_mode))
14896 add_loc_descr (&op1, int_loc_descriptor (mask));
14897 add_loc_descr (&op1, new_loc_descr (DW_OP_and, 0, 0));
14900 else if (GET_MODE_SIZE (op_mode) == DWARF2_ADDR_SIZE)
14902 HOST_WIDE_INT bias = 1;
14903 bias <<= (DWARF2_ADDR_SIZE * BITS_PER_UNIT - 1);
14904 add_loc_descr (&op0, new_loc_descr (DW_OP_plus_uconst, bias, 0));
14905 if (CONST_INT_P (XEXP (rtl, 1)))
14906 op1 = int_loc_descriptor ((unsigned HOST_WIDE_INT) bias
14907 + INTVAL (XEXP (rtl, 1)));
14908 else
14909 add_loc_descr (&op1, new_loc_descr (DW_OP_plus_uconst,
14910 bias, 0));
14912 return compare_loc_descriptor (op, op0, op1);
14915 /* Return location descriptor for {U,S}{MIN,MAX}. */
14917 static dw_loc_descr_ref
14918 minmax_loc_descriptor (rtx rtl, machine_mode mode,
14919 machine_mode mem_mode)
14921 enum dwarf_location_atom op;
14922 dw_loc_descr_ref op0, op1, ret;
14923 dw_loc_descr_ref bra_node, drop_node;
14925 scalar_int_mode int_mode;
14926 if (dwarf_strict
14927 && dwarf_version < 5
14928 && (!is_a <scalar_int_mode> (mode, &int_mode)
14929 || GET_MODE_SIZE (int_mode) > DWARF2_ADDR_SIZE))
14930 return NULL;
14932 op0 = mem_loc_descriptor (XEXP (rtl, 0), mode, mem_mode,
14933 VAR_INIT_STATUS_INITIALIZED);
14934 op1 = mem_loc_descriptor (XEXP (rtl, 1), mode, mem_mode,
14935 VAR_INIT_STATUS_INITIALIZED);
14937 if (op0 == NULL || op1 == NULL)
14938 return NULL;
14940 add_loc_descr (&op0, new_loc_descr (DW_OP_dup, 0, 0));
14941 add_loc_descr (&op1, new_loc_descr (DW_OP_swap, 0, 0));
14942 add_loc_descr (&op1, new_loc_descr (DW_OP_over, 0, 0));
14943 if (GET_CODE (rtl) == UMIN || GET_CODE (rtl) == UMAX)
14945 /* Checked by the caller. */
14946 int_mode = as_a <scalar_int_mode> (mode);
14947 if (GET_MODE_SIZE (int_mode) < DWARF2_ADDR_SIZE)
14949 HOST_WIDE_INT mask = GET_MODE_MASK (int_mode);
14950 add_loc_descr (&op0, int_loc_descriptor (mask));
14951 add_loc_descr (&op0, new_loc_descr (DW_OP_and, 0, 0));
14952 add_loc_descr (&op1, int_loc_descriptor (mask));
14953 add_loc_descr (&op1, new_loc_descr (DW_OP_and, 0, 0));
14955 else if (GET_MODE_SIZE (int_mode) == DWARF2_ADDR_SIZE)
14957 HOST_WIDE_INT bias = 1;
14958 bias <<= (DWARF2_ADDR_SIZE * BITS_PER_UNIT - 1);
14959 add_loc_descr (&op0, new_loc_descr (DW_OP_plus_uconst, bias, 0));
14960 add_loc_descr (&op1, new_loc_descr (DW_OP_plus_uconst, bias, 0));
14963 else if (is_a <scalar_int_mode> (mode, &int_mode)
14964 && GET_MODE_SIZE (int_mode) < DWARF2_ADDR_SIZE)
14966 int shift = (DWARF2_ADDR_SIZE - GET_MODE_SIZE (int_mode)) * BITS_PER_UNIT;
14967 add_loc_descr (&op0, int_loc_descriptor (shift));
14968 add_loc_descr (&op0, new_loc_descr (DW_OP_shl, 0, 0));
14969 add_loc_descr (&op1, int_loc_descriptor (shift));
14970 add_loc_descr (&op1, new_loc_descr (DW_OP_shl, 0, 0));
14972 else if (is_a <scalar_int_mode> (mode, &int_mode)
14973 && GET_MODE_SIZE (int_mode) > DWARF2_ADDR_SIZE)
14975 dw_die_ref type_die = base_type_for_mode (int_mode, 0);
14976 dw_loc_descr_ref cvt;
14977 if (type_die == NULL)
14978 return NULL;
14979 cvt = new_loc_descr (dwarf_OP (DW_OP_convert), 0, 0);
14980 cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
14981 cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die;
14982 cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
14983 add_loc_descr (&op0, cvt);
14984 cvt = new_loc_descr (dwarf_OP (DW_OP_convert), 0, 0);
14985 cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
14986 cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die;
14987 cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
14988 add_loc_descr (&op1, cvt);
14991 if (GET_CODE (rtl) == SMIN || GET_CODE (rtl) == UMIN)
14992 op = DW_OP_lt;
14993 else
14994 op = DW_OP_gt;
14995 ret = op0;
14996 add_loc_descr (&ret, op1);
14997 add_loc_descr (&ret, new_loc_descr (op, 0, 0));
14998 bra_node = new_loc_descr (DW_OP_bra, 0, 0);
14999 add_loc_descr (&ret, bra_node);
15000 add_loc_descr (&ret, new_loc_descr (DW_OP_swap, 0, 0));
15001 drop_node = new_loc_descr (DW_OP_drop, 0, 0);
15002 add_loc_descr (&ret, drop_node);
15003 bra_node->dw_loc_oprnd1.val_class = dw_val_class_loc;
15004 bra_node->dw_loc_oprnd1.v.val_loc = drop_node;
15005 if ((GET_CODE (rtl) == SMIN || GET_CODE (rtl) == SMAX)
15006 && is_a <scalar_int_mode> (mode, &int_mode)
15007 && GET_MODE_SIZE (int_mode) > DWARF2_ADDR_SIZE)
15008 ret = convert_descriptor_to_mode (int_mode, ret);
15009 return ret;
15012 /* Helper function for mem_loc_descriptor. Perform OP binary op,
15013 but after converting arguments to type_die, afterwards
15014 convert back to unsigned. */
15016 static dw_loc_descr_ref
15017 typed_binop (enum dwarf_location_atom op, rtx rtl, dw_die_ref type_die,
15018 scalar_int_mode mode, machine_mode mem_mode)
15020 dw_loc_descr_ref cvt, op0, op1;
15022 if (type_die == NULL)
15023 return NULL;
15024 op0 = mem_loc_descriptor (XEXP (rtl, 0), mode, mem_mode,
15025 VAR_INIT_STATUS_INITIALIZED);
15026 op1 = mem_loc_descriptor (XEXP (rtl, 1), mode, mem_mode,
15027 VAR_INIT_STATUS_INITIALIZED);
15028 if (op0 == NULL || op1 == NULL)
15029 return NULL;
15030 cvt = new_loc_descr (dwarf_OP (DW_OP_convert), 0, 0);
15031 cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
15032 cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die;
15033 cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
15034 add_loc_descr (&op0, cvt);
15035 cvt = new_loc_descr (dwarf_OP (DW_OP_convert), 0, 0);
15036 cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
15037 cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die;
15038 cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
15039 add_loc_descr (&op1, cvt);
15040 add_loc_descr (&op0, op1);
15041 add_loc_descr (&op0, new_loc_descr (op, 0, 0));
15042 return convert_descriptor_to_mode (mode, op0);
15045 /* CLZ (where constV is CLZ_DEFINED_VALUE_AT_ZERO computed value,
15046 const0 is DW_OP_lit0 or corresponding typed constant,
15047 const1 is DW_OP_lit1 or corresponding typed constant
15048 and constMSB is constant with just the MSB bit set
15049 for the mode):
15050 DW_OP_dup DW_OP_bra <L1> DW_OP_drop constV DW_OP_skip <L4>
15051 L1: const0 DW_OP_swap
15052 L2: DW_OP_dup constMSB DW_OP_and DW_OP_bra <L3> const1 DW_OP_shl
15053 DW_OP_swap DW_OP_plus_uconst <1> DW_OP_swap DW_OP_skip <L2>
15054 L3: DW_OP_drop
15055 L4: DW_OP_nop
15057 CTZ is similar:
15058 DW_OP_dup DW_OP_bra <L1> DW_OP_drop constV DW_OP_skip <L4>
15059 L1: const0 DW_OP_swap
15060 L2: DW_OP_dup const1 DW_OP_and DW_OP_bra <L3> const1 DW_OP_shr
15061 DW_OP_swap DW_OP_plus_uconst <1> DW_OP_swap DW_OP_skip <L2>
15062 L3: DW_OP_drop
15063 L4: DW_OP_nop
15065 FFS is similar:
15066 DW_OP_dup DW_OP_bra <L1> DW_OP_drop const0 DW_OP_skip <L4>
15067 L1: const1 DW_OP_swap
15068 L2: DW_OP_dup const1 DW_OP_and DW_OP_bra <L3> const1 DW_OP_shr
15069 DW_OP_swap DW_OP_plus_uconst <1> DW_OP_swap DW_OP_skip <L2>
15070 L3: DW_OP_drop
15071 L4: DW_OP_nop */
15073 static dw_loc_descr_ref
15074 clz_loc_descriptor (rtx rtl, scalar_int_mode mode,
15075 machine_mode mem_mode)
15077 dw_loc_descr_ref op0, ret, tmp;
15078 HOST_WIDE_INT valv;
15079 dw_loc_descr_ref l1jump, l1label;
15080 dw_loc_descr_ref l2jump, l2label;
15081 dw_loc_descr_ref l3jump, l3label;
15082 dw_loc_descr_ref l4jump, l4label;
15083 rtx msb;
15085 if (GET_MODE (XEXP (rtl, 0)) != mode)
15086 return NULL;
15088 op0 = mem_loc_descriptor (XEXP (rtl, 0), mode, mem_mode,
15089 VAR_INIT_STATUS_INITIALIZED);
15090 if (op0 == NULL)
15091 return NULL;
15092 ret = op0;
15093 if (GET_CODE (rtl) == CLZ)
15095 if (!CLZ_DEFINED_VALUE_AT_ZERO (mode, valv))
15096 valv = GET_MODE_BITSIZE (mode);
15098 else if (GET_CODE (rtl) == FFS)
15099 valv = 0;
15100 else if (!CTZ_DEFINED_VALUE_AT_ZERO (mode, valv))
15101 valv = GET_MODE_BITSIZE (mode);
15102 add_loc_descr (&ret, new_loc_descr (DW_OP_dup, 0, 0));
15103 l1jump = new_loc_descr (DW_OP_bra, 0, 0);
15104 add_loc_descr (&ret, l1jump);
15105 add_loc_descr (&ret, new_loc_descr (DW_OP_drop, 0, 0));
15106 tmp = mem_loc_descriptor (GEN_INT (valv), mode, mem_mode,
15107 VAR_INIT_STATUS_INITIALIZED);
15108 if (tmp == NULL)
15109 return NULL;
15110 add_loc_descr (&ret, tmp);
15111 l4jump = new_loc_descr (DW_OP_skip, 0, 0);
15112 add_loc_descr (&ret, l4jump);
15113 l1label = mem_loc_descriptor (GET_CODE (rtl) == FFS
15114 ? const1_rtx : const0_rtx,
15115 mode, mem_mode,
15116 VAR_INIT_STATUS_INITIALIZED);
15117 if (l1label == NULL)
15118 return NULL;
15119 add_loc_descr (&ret, l1label);
15120 add_loc_descr (&ret, new_loc_descr (DW_OP_swap, 0, 0));
15121 l2label = new_loc_descr (DW_OP_dup, 0, 0);
15122 add_loc_descr (&ret, l2label);
15123 if (GET_CODE (rtl) != CLZ)
15124 msb = const1_rtx;
15125 else if (GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT)
15126 msb = GEN_INT (HOST_WIDE_INT_1U
15127 << (GET_MODE_BITSIZE (mode) - 1));
15128 else
15129 msb = immed_wide_int_const
15130 (wi::set_bit_in_zero (GET_MODE_PRECISION (mode) - 1,
15131 GET_MODE_PRECISION (mode)), mode);
15132 if (GET_CODE (msb) == CONST_INT && INTVAL (msb) < 0)
15133 tmp = new_loc_descr (HOST_BITS_PER_WIDE_INT == 32
15134 ? DW_OP_const4u : HOST_BITS_PER_WIDE_INT == 64
15135 ? DW_OP_const8u : DW_OP_constu, INTVAL (msb), 0);
15136 else
15137 tmp = mem_loc_descriptor (msb, mode, mem_mode,
15138 VAR_INIT_STATUS_INITIALIZED);
15139 if (tmp == NULL)
15140 return NULL;
15141 add_loc_descr (&ret, tmp);
15142 add_loc_descr (&ret, new_loc_descr (DW_OP_and, 0, 0));
15143 l3jump = new_loc_descr (DW_OP_bra, 0, 0);
15144 add_loc_descr (&ret, l3jump);
15145 tmp = mem_loc_descriptor (const1_rtx, mode, mem_mode,
15146 VAR_INIT_STATUS_INITIALIZED);
15147 if (tmp == NULL)
15148 return NULL;
15149 add_loc_descr (&ret, tmp);
15150 add_loc_descr (&ret, new_loc_descr (GET_CODE (rtl) == CLZ
15151 ? DW_OP_shl : DW_OP_shr, 0, 0));
15152 add_loc_descr (&ret, new_loc_descr (DW_OP_swap, 0, 0));
15153 add_loc_descr (&ret, new_loc_descr (DW_OP_plus_uconst, 1, 0));
15154 add_loc_descr (&ret, new_loc_descr (DW_OP_swap, 0, 0));
15155 l2jump = new_loc_descr (DW_OP_skip, 0, 0);
15156 add_loc_descr (&ret, l2jump);
15157 l3label = new_loc_descr (DW_OP_drop, 0, 0);
15158 add_loc_descr (&ret, l3label);
15159 l4label = new_loc_descr (DW_OP_nop, 0, 0);
15160 add_loc_descr (&ret, l4label);
15161 l1jump->dw_loc_oprnd1.val_class = dw_val_class_loc;
15162 l1jump->dw_loc_oprnd1.v.val_loc = l1label;
15163 l2jump->dw_loc_oprnd1.val_class = dw_val_class_loc;
15164 l2jump->dw_loc_oprnd1.v.val_loc = l2label;
15165 l3jump->dw_loc_oprnd1.val_class = dw_val_class_loc;
15166 l3jump->dw_loc_oprnd1.v.val_loc = l3label;
15167 l4jump->dw_loc_oprnd1.val_class = dw_val_class_loc;
15168 l4jump->dw_loc_oprnd1.v.val_loc = l4label;
15169 return ret;
15172 /* POPCOUNT (const0 is DW_OP_lit0 or corresponding typed constant,
15173 const1 is DW_OP_lit1 or corresponding typed constant):
15174 const0 DW_OP_swap
15175 L1: DW_OP_dup DW_OP_bra <L2> DW_OP_dup DW_OP_rot const1 DW_OP_and
15176 DW_OP_plus DW_OP_swap const1 DW_OP_shr DW_OP_skip <L1>
15177 L2: DW_OP_drop
15179 PARITY is similar:
15180 L1: DW_OP_dup DW_OP_bra <L2> DW_OP_dup DW_OP_rot const1 DW_OP_and
15181 DW_OP_xor DW_OP_swap const1 DW_OP_shr DW_OP_skip <L1>
15182 L2: DW_OP_drop */
15184 static dw_loc_descr_ref
15185 popcount_loc_descriptor (rtx rtl, scalar_int_mode mode,
15186 machine_mode mem_mode)
15188 dw_loc_descr_ref op0, ret, tmp;
15189 dw_loc_descr_ref l1jump, l1label;
15190 dw_loc_descr_ref l2jump, l2label;
15192 if (GET_MODE (XEXP (rtl, 0)) != mode)
15193 return NULL;
15195 op0 = mem_loc_descriptor (XEXP (rtl, 0), mode, mem_mode,
15196 VAR_INIT_STATUS_INITIALIZED);
15197 if (op0 == NULL)
15198 return NULL;
15199 ret = op0;
15200 tmp = mem_loc_descriptor (const0_rtx, mode, mem_mode,
15201 VAR_INIT_STATUS_INITIALIZED);
15202 if (tmp == NULL)
15203 return NULL;
15204 add_loc_descr (&ret, tmp);
15205 add_loc_descr (&ret, new_loc_descr (DW_OP_swap, 0, 0));
15206 l1label = new_loc_descr (DW_OP_dup, 0, 0);
15207 add_loc_descr (&ret, l1label);
15208 l2jump = new_loc_descr (DW_OP_bra, 0, 0);
15209 add_loc_descr (&ret, l2jump);
15210 add_loc_descr (&ret, new_loc_descr (DW_OP_dup, 0, 0));
15211 add_loc_descr (&ret, new_loc_descr (DW_OP_rot, 0, 0));
15212 tmp = mem_loc_descriptor (const1_rtx, mode, mem_mode,
15213 VAR_INIT_STATUS_INITIALIZED);
15214 if (tmp == NULL)
15215 return NULL;
15216 add_loc_descr (&ret, tmp);
15217 add_loc_descr (&ret, new_loc_descr (DW_OP_and, 0, 0));
15218 add_loc_descr (&ret, new_loc_descr (GET_CODE (rtl) == POPCOUNT
15219 ? DW_OP_plus : DW_OP_xor, 0, 0));
15220 add_loc_descr (&ret, new_loc_descr (DW_OP_swap, 0, 0));
15221 tmp = mem_loc_descriptor (const1_rtx, mode, mem_mode,
15222 VAR_INIT_STATUS_INITIALIZED);
15223 add_loc_descr (&ret, tmp);
15224 add_loc_descr (&ret, new_loc_descr (DW_OP_shr, 0, 0));
15225 l1jump = new_loc_descr (DW_OP_skip, 0, 0);
15226 add_loc_descr (&ret, l1jump);
15227 l2label = new_loc_descr (DW_OP_drop, 0, 0);
15228 add_loc_descr (&ret, l2label);
15229 l1jump->dw_loc_oprnd1.val_class = dw_val_class_loc;
15230 l1jump->dw_loc_oprnd1.v.val_loc = l1label;
15231 l2jump->dw_loc_oprnd1.val_class = dw_val_class_loc;
15232 l2jump->dw_loc_oprnd1.v.val_loc = l2label;
15233 return ret;
15236 /* BSWAP (constS is initial shift count, either 56 or 24):
15237 constS const0
15238 L1: DW_OP_pick <2> constS DW_OP_pick <3> DW_OP_minus DW_OP_shr
15239 const255 DW_OP_and DW_OP_pick <2> DW_OP_shl DW_OP_or
15240 DW_OP_swap DW_OP_dup const0 DW_OP_eq DW_OP_bra <L2> const8
15241 DW_OP_minus DW_OP_swap DW_OP_skip <L1>
15242 L2: DW_OP_drop DW_OP_swap DW_OP_drop */
15244 static dw_loc_descr_ref
15245 bswap_loc_descriptor (rtx rtl, scalar_int_mode mode,
15246 machine_mode mem_mode)
15248 dw_loc_descr_ref op0, ret, tmp;
15249 dw_loc_descr_ref l1jump, l1label;
15250 dw_loc_descr_ref l2jump, l2label;
15252 if (BITS_PER_UNIT != 8
15253 || (GET_MODE_BITSIZE (mode) != 32
15254 && GET_MODE_BITSIZE (mode) != 64))
15255 return NULL;
15257 op0 = mem_loc_descriptor (XEXP (rtl, 0), mode, mem_mode,
15258 VAR_INIT_STATUS_INITIALIZED);
15259 if (op0 == NULL)
15260 return NULL;
15262 ret = op0;
15263 tmp = mem_loc_descriptor (GEN_INT (GET_MODE_BITSIZE (mode) - 8),
15264 mode, mem_mode,
15265 VAR_INIT_STATUS_INITIALIZED);
15266 if (tmp == NULL)
15267 return NULL;
15268 add_loc_descr (&ret, tmp);
15269 tmp = mem_loc_descriptor (const0_rtx, mode, mem_mode,
15270 VAR_INIT_STATUS_INITIALIZED);
15271 if (tmp == NULL)
15272 return NULL;
15273 add_loc_descr (&ret, tmp);
15274 l1label = new_loc_descr (DW_OP_pick, 2, 0);
15275 add_loc_descr (&ret, l1label);
15276 tmp = mem_loc_descriptor (GEN_INT (GET_MODE_BITSIZE (mode) - 8),
15277 mode, mem_mode,
15278 VAR_INIT_STATUS_INITIALIZED);
15279 add_loc_descr (&ret, tmp);
15280 add_loc_descr (&ret, new_loc_descr (DW_OP_pick, 3, 0));
15281 add_loc_descr (&ret, new_loc_descr (DW_OP_minus, 0, 0));
15282 add_loc_descr (&ret, new_loc_descr (DW_OP_shr, 0, 0));
15283 tmp = mem_loc_descriptor (GEN_INT (255), mode, mem_mode,
15284 VAR_INIT_STATUS_INITIALIZED);
15285 if (tmp == NULL)
15286 return NULL;
15287 add_loc_descr (&ret, tmp);
15288 add_loc_descr (&ret, new_loc_descr (DW_OP_and, 0, 0));
15289 add_loc_descr (&ret, new_loc_descr (DW_OP_pick, 2, 0));
15290 add_loc_descr (&ret, new_loc_descr (DW_OP_shl, 0, 0));
15291 add_loc_descr (&ret, new_loc_descr (DW_OP_or, 0, 0));
15292 add_loc_descr (&ret, new_loc_descr (DW_OP_swap, 0, 0));
15293 add_loc_descr (&ret, new_loc_descr (DW_OP_dup, 0, 0));
15294 tmp = mem_loc_descriptor (const0_rtx, mode, mem_mode,
15295 VAR_INIT_STATUS_INITIALIZED);
15296 add_loc_descr (&ret, tmp);
15297 add_loc_descr (&ret, new_loc_descr (DW_OP_eq, 0, 0));
15298 l2jump = new_loc_descr (DW_OP_bra, 0, 0);
15299 add_loc_descr (&ret, l2jump);
15300 tmp = mem_loc_descriptor (GEN_INT (8), mode, mem_mode,
15301 VAR_INIT_STATUS_INITIALIZED);
15302 add_loc_descr (&ret, tmp);
15303 add_loc_descr (&ret, new_loc_descr (DW_OP_minus, 0, 0));
15304 add_loc_descr (&ret, new_loc_descr (DW_OP_swap, 0, 0));
15305 l1jump = new_loc_descr (DW_OP_skip, 0, 0);
15306 add_loc_descr (&ret, l1jump);
15307 l2label = new_loc_descr (DW_OP_drop, 0, 0);
15308 add_loc_descr (&ret, l2label);
15309 add_loc_descr (&ret, new_loc_descr (DW_OP_swap, 0, 0));
15310 add_loc_descr (&ret, new_loc_descr (DW_OP_drop, 0, 0));
15311 l1jump->dw_loc_oprnd1.val_class = dw_val_class_loc;
15312 l1jump->dw_loc_oprnd1.v.val_loc = l1label;
15313 l2jump->dw_loc_oprnd1.val_class = dw_val_class_loc;
15314 l2jump->dw_loc_oprnd1.v.val_loc = l2label;
15315 return ret;
15318 /* ROTATE (constMASK is mode mask, BITSIZE is bitsize of mode):
15319 DW_OP_over DW_OP_over DW_OP_shl [ constMASK DW_OP_and ] DW_OP_rot
15320 [ DW_OP_swap constMASK DW_OP_and DW_OP_swap ] DW_OP_neg
15321 DW_OP_plus_uconst <BITSIZE> DW_OP_shr DW_OP_or
15323 ROTATERT is similar:
15324 DW_OP_over DW_OP_over DW_OP_neg DW_OP_plus_uconst <BITSIZE>
15325 DW_OP_shl [ constMASK DW_OP_and ] DW_OP_rot
15326 [ DW_OP_swap constMASK DW_OP_and DW_OP_swap ] DW_OP_shr DW_OP_or */
15328 static dw_loc_descr_ref
15329 rotate_loc_descriptor (rtx rtl, scalar_int_mode mode,
15330 machine_mode mem_mode)
15332 rtx rtlop1 = XEXP (rtl, 1);
15333 dw_loc_descr_ref op0, op1, ret, mask[2] = { NULL, NULL };
15334 int i;
15336 if (is_narrower_int_mode (GET_MODE (rtlop1), mode))
15337 rtlop1 = gen_rtx_ZERO_EXTEND (mode, rtlop1);
15338 op0 = mem_loc_descriptor (XEXP (rtl, 0), mode, mem_mode,
15339 VAR_INIT_STATUS_INITIALIZED);
15340 op1 = mem_loc_descriptor (rtlop1, mode, mem_mode,
15341 VAR_INIT_STATUS_INITIALIZED);
15342 if (op0 == NULL || op1 == NULL)
15343 return NULL;
15344 if (GET_MODE_SIZE (mode) < DWARF2_ADDR_SIZE)
15345 for (i = 0; i < 2; i++)
15347 if (GET_MODE_BITSIZE (mode) < HOST_BITS_PER_WIDE_INT)
15348 mask[i] = mem_loc_descriptor (GEN_INT (GET_MODE_MASK (mode)),
15349 mode, mem_mode,
15350 VAR_INIT_STATUS_INITIALIZED);
15351 else if (GET_MODE_BITSIZE (mode) == HOST_BITS_PER_WIDE_INT)
15352 mask[i] = new_loc_descr (HOST_BITS_PER_WIDE_INT == 32
15353 ? DW_OP_const4u
15354 : HOST_BITS_PER_WIDE_INT == 64
15355 ? DW_OP_const8u : DW_OP_constu,
15356 GET_MODE_MASK (mode), 0);
15357 else
15358 mask[i] = NULL;
15359 if (mask[i] == NULL)
15360 return NULL;
15361 add_loc_descr (&mask[i], new_loc_descr (DW_OP_and, 0, 0));
15363 ret = op0;
15364 add_loc_descr (&ret, op1);
15365 add_loc_descr (&ret, new_loc_descr (DW_OP_over, 0, 0));
15366 add_loc_descr (&ret, new_loc_descr (DW_OP_over, 0, 0));
15367 if (GET_CODE (rtl) == ROTATERT)
15369 add_loc_descr (&ret, new_loc_descr (DW_OP_neg, 0, 0));
15370 add_loc_descr (&ret, new_loc_descr (DW_OP_plus_uconst,
15371 GET_MODE_BITSIZE (mode), 0));
15373 add_loc_descr (&ret, new_loc_descr (DW_OP_shl, 0, 0));
15374 if (mask[0] != NULL)
15375 add_loc_descr (&ret, mask[0]);
15376 add_loc_descr (&ret, new_loc_descr (DW_OP_rot, 0, 0));
15377 if (mask[1] != NULL)
15379 add_loc_descr (&ret, new_loc_descr (DW_OP_swap, 0, 0));
15380 add_loc_descr (&ret, mask[1]);
15381 add_loc_descr (&ret, new_loc_descr (DW_OP_swap, 0, 0));
15383 if (GET_CODE (rtl) == ROTATE)
15385 add_loc_descr (&ret, new_loc_descr (DW_OP_neg, 0, 0));
15386 add_loc_descr (&ret, new_loc_descr (DW_OP_plus_uconst,
15387 GET_MODE_BITSIZE (mode), 0));
15389 add_loc_descr (&ret, new_loc_descr (DW_OP_shr, 0, 0));
15390 add_loc_descr (&ret, new_loc_descr (DW_OP_or, 0, 0));
15391 return ret;
15394 /* Helper function for mem_loc_descriptor. Return DW_OP_GNU_parameter_ref
15395 for DEBUG_PARAMETER_REF RTL. */
15397 static dw_loc_descr_ref
15398 parameter_ref_descriptor (rtx rtl)
15400 dw_loc_descr_ref ret;
15401 dw_die_ref ref;
15403 if (dwarf_strict)
15404 return NULL;
15405 gcc_assert (TREE_CODE (DEBUG_PARAMETER_REF_DECL (rtl)) == PARM_DECL);
15406 /* With LTO during LTRANS we get the late DIE that refers to the early
15407 DIE, thus we add another indirection here. This seems to confuse
15408 gdb enough to make gcc.dg/guality/pr68860-1.c FAIL with LTO. */
15409 ref = lookup_decl_die (DEBUG_PARAMETER_REF_DECL (rtl));
15410 ret = new_loc_descr (DW_OP_GNU_parameter_ref, 0, 0);
15411 if (ref)
15413 ret->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
15414 ret->dw_loc_oprnd1.v.val_die_ref.die = ref;
15415 ret->dw_loc_oprnd1.v.val_die_ref.external = 0;
15417 else
15419 ret->dw_loc_oprnd1.val_class = dw_val_class_decl_ref;
15420 ret->dw_loc_oprnd1.v.val_decl_ref = DEBUG_PARAMETER_REF_DECL (rtl);
15422 return ret;
15425 /* The following routine converts the RTL for a variable or parameter
15426 (resident in memory) into an equivalent Dwarf representation of a
15427 mechanism for getting the address of that same variable onto the top of a
15428 hypothetical "address evaluation" stack.
15430 When creating memory location descriptors, we are effectively transforming
15431 the RTL for a memory-resident object into its Dwarf postfix expression
15432 equivalent. This routine recursively descends an RTL tree, turning
15433 it into Dwarf postfix code as it goes.
15435 MODE is the mode that should be assumed for the rtl if it is VOIDmode.
15437 MEM_MODE is the mode of the memory reference, needed to handle some
15438 autoincrement addressing modes.
15440 Return 0 if we can't represent the location. */
15442 dw_loc_descr_ref
15443 mem_loc_descriptor (rtx rtl, machine_mode mode,
15444 machine_mode mem_mode,
15445 enum var_init_status initialized)
15447 dw_loc_descr_ref mem_loc_result = NULL;
15448 enum dwarf_location_atom op;
15449 dw_loc_descr_ref op0, op1;
15450 rtx inner = NULL_RTX;
15451 poly_int64 offset;
15453 if (mode == VOIDmode)
15454 mode = GET_MODE (rtl);
15456 /* Note that for a dynamically sized array, the location we will generate a
15457 description of here will be the lowest numbered location which is
15458 actually within the array. That's *not* necessarily the same as the
15459 zeroth element of the array. */
15461 rtl = targetm.delegitimize_address (rtl);
15463 if (mode != GET_MODE (rtl) && GET_MODE (rtl) != VOIDmode)
15464 return NULL;
15466 scalar_int_mode int_mode = BImode, inner_mode, op1_mode;
15467 switch (GET_CODE (rtl))
15469 case POST_INC:
15470 case POST_DEC:
15471 case POST_MODIFY:
15472 return mem_loc_descriptor (XEXP (rtl, 0), mode, mem_mode, initialized);
15474 case SUBREG:
15475 /* The case of a subreg may arise when we have a local (register)
15476 variable or a formal (register) parameter which doesn't quite fill
15477 up an entire register. For now, just assume that it is
15478 legitimate to make the Dwarf info refer to the whole register which
15479 contains the given subreg. */
15480 if (!subreg_lowpart_p (rtl))
15481 break;
15482 inner = SUBREG_REG (rtl);
15483 /* FALLTHRU */
15484 case TRUNCATE:
15485 if (inner == NULL_RTX)
15486 inner = XEXP (rtl, 0);
15487 if (is_a <scalar_int_mode> (mode, &int_mode)
15488 && is_a <scalar_int_mode> (GET_MODE (inner), &inner_mode)
15489 && (GET_MODE_SIZE (int_mode) <= DWARF2_ADDR_SIZE
15490 #ifdef POINTERS_EXTEND_UNSIGNED
15491 || (int_mode == Pmode && mem_mode != VOIDmode)
15492 #endif
15494 && GET_MODE_SIZE (inner_mode) <= DWARF2_ADDR_SIZE)
15496 mem_loc_result = mem_loc_descriptor (inner,
15497 inner_mode,
15498 mem_mode, initialized);
15499 break;
15501 if (dwarf_strict && dwarf_version < 5)
15502 break;
15503 if (is_a <scalar_int_mode> (mode, &int_mode)
15504 && is_a <scalar_int_mode> (GET_MODE (inner), &inner_mode)
15505 ? GET_MODE_SIZE (int_mode) <= GET_MODE_SIZE (inner_mode)
15506 : known_eq (GET_MODE_SIZE (mode), GET_MODE_SIZE (GET_MODE (inner))))
15508 dw_die_ref type_die;
15509 dw_loc_descr_ref cvt;
15511 mem_loc_result = mem_loc_descriptor (inner,
15512 GET_MODE (inner),
15513 mem_mode, initialized);
15514 if (mem_loc_result == NULL)
15515 break;
15516 type_die = base_type_for_mode (mode, SCALAR_INT_MODE_P (mode));
15517 if (type_die == NULL)
15519 mem_loc_result = NULL;
15520 break;
15522 if (maybe_ne (GET_MODE_SIZE (mode), GET_MODE_SIZE (GET_MODE (inner))))
15523 cvt = new_loc_descr (dwarf_OP (DW_OP_convert), 0, 0);
15524 else
15525 cvt = new_loc_descr (dwarf_OP (DW_OP_reinterpret), 0, 0);
15526 cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
15527 cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die;
15528 cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
15529 add_loc_descr (&mem_loc_result, cvt);
15530 if (is_a <scalar_int_mode> (mode, &int_mode)
15531 && GET_MODE_SIZE (int_mode) <= DWARF2_ADDR_SIZE)
15533 /* Convert it to untyped afterwards. */
15534 cvt = new_loc_descr (dwarf_OP (DW_OP_convert), 0, 0);
15535 add_loc_descr (&mem_loc_result, cvt);
15538 break;
15540 case REG:
15541 if (!is_a <scalar_int_mode> (mode, &int_mode)
15542 || (GET_MODE_SIZE (int_mode) > DWARF2_ADDR_SIZE
15543 && rtl != arg_pointer_rtx
15544 && rtl != frame_pointer_rtx
15545 #ifdef POINTERS_EXTEND_UNSIGNED
15546 && (int_mode != Pmode || mem_mode == VOIDmode)
15547 #endif
15550 dw_die_ref type_die;
15551 unsigned int dbx_regnum;
15553 if (dwarf_strict && dwarf_version < 5)
15554 break;
15555 if (REGNO (rtl) >= FIRST_PSEUDO_REGISTER)
15556 break;
15557 type_die = base_type_for_mode (mode, SCALAR_INT_MODE_P (mode));
15558 if (type_die == NULL)
15559 break;
15561 dbx_regnum = dbx_reg_number (rtl);
15562 if (dbx_regnum == IGNORED_DWARF_REGNUM)
15563 break;
15564 mem_loc_result = new_loc_descr (dwarf_OP (DW_OP_regval_type),
15565 dbx_regnum, 0);
15566 mem_loc_result->dw_loc_oprnd2.val_class = dw_val_class_die_ref;
15567 mem_loc_result->dw_loc_oprnd2.v.val_die_ref.die = type_die;
15568 mem_loc_result->dw_loc_oprnd2.v.val_die_ref.external = 0;
15569 break;
15571 /* Whenever a register number forms a part of the description of the
15572 method for calculating the (dynamic) address of a memory resident
15573 object, DWARF rules require the register number be referred to as
15574 a "base register". This distinction is not based in any way upon
15575 what category of register the hardware believes the given register
15576 belongs to. This is strictly DWARF terminology we're dealing with
15577 here. Note that in cases where the location of a memory-resident
15578 data object could be expressed as: OP_ADD (OP_BASEREG (basereg),
15579 OP_CONST (0)) the actual DWARF location descriptor that we generate
15580 may just be OP_BASEREG (basereg). This may look deceptively like
15581 the object in question was allocated to a register (rather than in
15582 memory) so DWARF consumers need to be aware of the subtle
15583 distinction between OP_REG and OP_BASEREG. */
15584 if (REGNO (rtl) < FIRST_PSEUDO_REGISTER)
15585 mem_loc_result = based_loc_descr (rtl, 0, VAR_INIT_STATUS_INITIALIZED);
15586 else if (stack_realign_drap
15587 && crtl->drap_reg
15588 && crtl->args.internal_arg_pointer == rtl
15589 && REGNO (crtl->drap_reg) < FIRST_PSEUDO_REGISTER)
15591 /* If RTL is internal_arg_pointer, which has been optimized
15592 out, use DRAP instead. */
15593 mem_loc_result = based_loc_descr (crtl->drap_reg, 0,
15594 VAR_INIT_STATUS_INITIALIZED);
15596 break;
15598 case SIGN_EXTEND:
15599 case ZERO_EXTEND:
15600 if (!is_a <scalar_int_mode> (mode, &int_mode)
15601 || !is_a <scalar_int_mode> (GET_MODE (XEXP (rtl, 0)), &inner_mode))
15602 break;
15603 op0 = mem_loc_descriptor (XEXP (rtl, 0), inner_mode,
15604 mem_mode, VAR_INIT_STATUS_INITIALIZED);
15605 if (op0 == 0)
15606 break;
15607 else if (GET_CODE (rtl) == ZERO_EXTEND
15608 && GET_MODE_SIZE (int_mode) <= DWARF2_ADDR_SIZE
15609 && GET_MODE_BITSIZE (inner_mode) < HOST_BITS_PER_WIDE_INT
15610 /* If DW_OP_const{1,2,4}u won't be used, it is shorter
15611 to expand zero extend as two shifts instead of
15612 masking. */
15613 && GET_MODE_SIZE (inner_mode) <= 4)
15615 mem_loc_result = op0;
15616 add_loc_descr (&mem_loc_result,
15617 int_loc_descriptor (GET_MODE_MASK (inner_mode)));
15618 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_and, 0, 0));
15620 else if (GET_MODE_SIZE (int_mode) <= DWARF2_ADDR_SIZE)
15622 int shift = DWARF2_ADDR_SIZE - GET_MODE_SIZE (inner_mode);
15623 shift *= BITS_PER_UNIT;
15624 if (GET_CODE (rtl) == SIGN_EXTEND)
15625 op = DW_OP_shra;
15626 else
15627 op = DW_OP_shr;
15628 mem_loc_result = op0;
15629 add_loc_descr (&mem_loc_result, int_loc_descriptor (shift));
15630 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_shl, 0, 0));
15631 add_loc_descr (&mem_loc_result, int_loc_descriptor (shift));
15632 add_loc_descr (&mem_loc_result, new_loc_descr (op, 0, 0));
15634 else if (!dwarf_strict || dwarf_version >= 5)
15636 dw_die_ref type_die1, type_die2;
15637 dw_loc_descr_ref cvt;
15639 type_die1 = base_type_for_mode (inner_mode,
15640 GET_CODE (rtl) == ZERO_EXTEND);
15641 if (type_die1 == NULL)
15642 break;
15643 type_die2 = base_type_for_mode (int_mode, 1);
15644 if (type_die2 == NULL)
15645 break;
15646 mem_loc_result = op0;
15647 cvt = new_loc_descr (dwarf_OP (DW_OP_convert), 0, 0);
15648 cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
15649 cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die1;
15650 cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
15651 add_loc_descr (&mem_loc_result, cvt);
15652 cvt = new_loc_descr (dwarf_OP (DW_OP_convert), 0, 0);
15653 cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
15654 cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die2;
15655 cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
15656 add_loc_descr (&mem_loc_result, cvt);
15658 break;
15660 case MEM:
15662 rtx new_rtl = avoid_constant_pool_reference (rtl);
15663 if (new_rtl != rtl)
15665 mem_loc_result = mem_loc_descriptor (new_rtl, mode, mem_mode,
15666 initialized);
15667 if (mem_loc_result != NULL)
15668 return mem_loc_result;
15671 mem_loc_result = mem_loc_descriptor (XEXP (rtl, 0),
15672 get_address_mode (rtl), mode,
15673 VAR_INIT_STATUS_INITIALIZED);
15674 if (mem_loc_result == NULL)
15675 mem_loc_result = tls_mem_loc_descriptor (rtl);
15676 if (mem_loc_result != NULL)
15678 if (!is_a <scalar_int_mode> (mode, &int_mode)
15679 || GET_MODE_SIZE (int_mode) > DWARF2_ADDR_SIZE)
15681 dw_die_ref type_die;
15682 dw_loc_descr_ref deref;
15683 HOST_WIDE_INT size;
15685 if (dwarf_strict && dwarf_version < 5)
15686 return NULL;
15687 if (!GET_MODE_SIZE (mode).is_constant (&size))
15688 return NULL;
15689 type_die
15690 = base_type_for_mode (mode, SCALAR_INT_MODE_P (mode));
15691 if (type_die == NULL)
15692 return NULL;
15693 deref = new_loc_descr (dwarf_OP (DW_OP_deref_type), size, 0);
15694 deref->dw_loc_oprnd2.val_class = dw_val_class_die_ref;
15695 deref->dw_loc_oprnd2.v.val_die_ref.die = type_die;
15696 deref->dw_loc_oprnd2.v.val_die_ref.external = 0;
15697 add_loc_descr (&mem_loc_result, deref);
15699 else if (GET_MODE_SIZE (int_mode) == DWARF2_ADDR_SIZE)
15700 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_deref, 0, 0));
15701 else
15702 add_loc_descr (&mem_loc_result,
15703 new_loc_descr (DW_OP_deref_size,
15704 GET_MODE_SIZE (int_mode), 0));
15706 break;
15708 case LO_SUM:
15709 return mem_loc_descriptor (XEXP (rtl, 1), mode, mem_mode, initialized);
15711 case LABEL_REF:
15712 /* Some ports can transform a symbol ref into a label ref, because
15713 the symbol ref is too far away and has to be dumped into a constant
15714 pool. */
15715 case CONST:
15716 case SYMBOL_REF:
15717 case UNSPEC:
15718 if (!is_a <scalar_int_mode> (mode, &int_mode)
15719 || (GET_MODE_SIZE (int_mode) > DWARF2_ADDR_SIZE
15720 #ifdef POINTERS_EXTEND_UNSIGNED
15721 && (int_mode != Pmode || mem_mode == VOIDmode)
15722 #endif
15724 break;
15726 if (GET_CODE (rtl) == UNSPEC)
15728 /* If delegitimize_address couldn't do anything with the UNSPEC, we
15729 can't express it in the debug info. This can happen e.g. with some
15730 TLS UNSPECs. Allow UNSPECs formerly from CONST that the backend
15731 approves. */
15732 bool not_ok = false;
15733 subrtx_var_iterator::array_type array;
15734 FOR_EACH_SUBRTX_VAR (iter, array, rtl, ALL)
15735 if (*iter != rtl && !CONSTANT_P (*iter))
15737 not_ok = true;
15738 break;
15741 if (not_ok)
15742 break;
15744 FOR_EACH_SUBRTX_VAR (iter, array, rtl, ALL)
15745 if (!const_ok_for_output_1 (*iter))
15747 not_ok = true;
15748 break;
15751 if (not_ok)
15752 break;
15754 rtl = gen_rtx_CONST (GET_MODE (rtl), rtl);
15755 goto symref;
15758 if (GET_CODE (rtl) == SYMBOL_REF
15759 && SYMBOL_REF_TLS_MODEL (rtl) != TLS_MODEL_NONE)
15761 dw_loc_descr_ref temp;
15763 /* If this is not defined, we have no way to emit the data. */
15764 if (!targetm.have_tls || !targetm.asm_out.output_dwarf_dtprel)
15765 break;
15767 temp = new_addr_loc_descr (rtl, dtprel_true);
15769 /* We check for DWARF 5 here because gdb did not implement
15770 DW_OP_form_tls_address until after 7.12. */
15771 mem_loc_result = new_loc_descr ((dwarf_version >= 5
15772 ? DW_OP_form_tls_address
15773 : DW_OP_GNU_push_tls_address),
15774 0, 0);
15775 add_loc_descr (&mem_loc_result, temp);
15777 break;
15780 if (!const_ok_for_output (rtl))
15782 if (GET_CODE (rtl) == CONST)
15783 switch (GET_CODE (XEXP (rtl, 0)))
15785 case NOT:
15786 op = DW_OP_not;
15787 goto try_const_unop;
15788 case NEG:
15789 op = DW_OP_neg;
15790 goto try_const_unop;
15791 try_const_unop:
15792 rtx arg;
15793 arg = XEXP (XEXP (rtl, 0), 0);
15794 if (!CONSTANT_P (arg))
15795 arg = gen_rtx_CONST (int_mode, arg);
15796 op0 = mem_loc_descriptor (arg, int_mode, mem_mode,
15797 initialized);
15798 if (op0)
15800 mem_loc_result = op0;
15801 add_loc_descr (&mem_loc_result, new_loc_descr (op, 0, 0));
15803 break;
15804 default:
15805 mem_loc_result = mem_loc_descriptor (XEXP (rtl, 0), int_mode,
15806 mem_mode, initialized);
15807 break;
15809 break;
15812 symref:
15813 mem_loc_result = new_addr_loc_descr (rtl, dtprel_false);
15814 vec_safe_push (used_rtx_array, rtl);
15815 break;
15817 case CONCAT:
15818 case CONCATN:
15819 case VAR_LOCATION:
15820 case DEBUG_IMPLICIT_PTR:
15821 expansion_failed (NULL_TREE, rtl,
15822 "CONCAT/CONCATN/VAR_LOCATION is handled only by loc_descriptor");
15823 return 0;
15825 case ENTRY_VALUE:
15826 if (dwarf_strict && dwarf_version < 5)
15827 return NULL;
15828 if (REG_P (ENTRY_VALUE_EXP (rtl)))
15830 if (!is_a <scalar_int_mode> (mode, &int_mode)
15831 || GET_MODE_SIZE (int_mode) > DWARF2_ADDR_SIZE)
15832 op0 = mem_loc_descriptor (ENTRY_VALUE_EXP (rtl), mode,
15833 VOIDmode, VAR_INIT_STATUS_INITIALIZED);
15834 else
15836 unsigned int dbx_regnum = dbx_reg_number (ENTRY_VALUE_EXP (rtl));
15837 if (dbx_regnum == IGNORED_DWARF_REGNUM)
15838 return NULL;
15839 op0 = one_reg_loc_descriptor (dbx_regnum,
15840 VAR_INIT_STATUS_INITIALIZED);
15843 else if (MEM_P (ENTRY_VALUE_EXP (rtl))
15844 && REG_P (XEXP (ENTRY_VALUE_EXP (rtl), 0)))
15846 op0 = mem_loc_descriptor (ENTRY_VALUE_EXP (rtl), mode,
15847 VOIDmode, VAR_INIT_STATUS_INITIALIZED);
15848 if (op0 && op0->dw_loc_opc == DW_OP_fbreg)
15849 return NULL;
15851 else
15852 gcc_unreachable ();
15853 if (op0 == NULL)
15854 return NULL;
15855 mem_loc_result = new_loc_descr (dwarf_OP (DW_OP_entry_value), 0, 0);
15856 mem_loc_result->dw_loc_oprnd1.val_class = dw_val_class_loc;
15857 mem_loc_result->dw_loc_oprnd1.v.val_loc = op0;
15858 break;
15860 case DEBUG_PARAMETER_REF:
15861 mem_loc_result = parameter_ref_descriptor (rtl);
15862 break;
15864 case PRE_MODIFY:
15865 /* Extract the PLUS expression nested inside and fall into
15866 PLUS code below. */
15867 rtl = XEXP (rtl, 1);
15868 goto plus;
15870 case PRE_INC:
15871 case PRE_DEC:
15872 /* Turn these into a PLUS expression and fall into the PLUS code
15873 below. */
15874 rtl = gen_rtx_PLUS (mode, XEXP (rtl, 0),
15875 gen_int_mode (GET_CODE (rtl) == PRE_INC
15876 ? GET_MODE_UNIT_SIZE (mem_mode)
15877 : -GET_MODE_UNIT_SIZE (mem_mode),
15878 mode));
15880 /* fall through */
15882 case PLUS:
15883 plus:
15884 if (is_based_loc (rtl)
15885 && is_a <scalar_int_mode> (mode, &int_mode)
15886 && (GET_MODE_SIZE (int_mode) <= DWARF2_ADDR_SIZE
15887 || XEXP (rtl, 0) == arg_pointer_rtx
15888 || XEXP (rtl, 0) == frame_pointer_rtx))
15889 mem_loc_result = based_loc_descr (XEXP (rtl, 0),
15890 INTVAL (XEXP (rtl, 1)),
15891 VAR_INIT_STATUS_INITIALIZED);
15892 else
15894 mem_loc_result = mem_loc_descriptor (XEXP (rtl, 0), mode, mem_mode,
15895 VAR_INIT_STATUS_INITIALIZED);
15896 if (mem_loc_result == 0)
15897 break;
15899 if (CONST_INT_P (XEXP (rtl, 1))
15900 && (GET_MODE_SIZE (as_a <scalar_int_mode> (mode))
15901 <= DWARF2_ADDR_SIZE))
15902 loc_descr_plus_const (&mem_loc_result, INTVAL (XEXP (rtl, 1)));
15903 else
15905 op1 = mem_loc_descriptor (XEXP (rtl, 1), mode, mem_mode,
15906 VAR_INIT_STATUS_INITIALIZED);
15907 if (op1 == 0)
15908 return NULL;
15909 add_loc_descr (&mem_loc_result, op1);
15910 add_loc_descr (&mem_loc_result,
15911 new_loc_descr (DW_OP_plus, 0, 0));
15914 break;
15916 /* If a pseudo-reg is optimized away, it is possible for it to
15917 be replaced with a MEM containing a multiply or shift. */
15918 case MINUS:
15919 op = DW_OP_minus;
15920 goto do_binop;
15922 case MULT:
15923 op = DW_OP_mul;
15924 goto do_binop;
15926 case DIV:
15927 if ((!dwarf_strict || dwarf_version >= 5)
15928 && is_a <scalar_int_mode> (mode, &int_mode)
15929 && GET_MODE_SIZE (int_mode) > DWARF2_ADDR_SIZE)
15931 mem_loc_result = typed_binop (DW_OP_div, rtl,
15932 base_type_for_mode (mode, 0),
15933 int_mode, mem_mode);
15934 break;
15936 op = DW_OP_div;
15937 goto do_binop;
15939 case UMOD:
15940 op = DW_OP_mod;
15941 goto do_binop;
15943 case ASHIFT:
15944 op = DW_OP_shl;
15945 goto do_shift;
15947 case ASHIFTRT:
15948 op = DW_OP_shra;
15949 goto do_shift;
15951 case LSHIFTRT:
15952 op = DW_OP_shr;
15953 goto do_shift;
15955 do_shift:
15956 if (!is_a <scalar_int_mode> (mode, &int_mode))
15957 break;
15958 op0 = mem_loc_descriptor (XEXP (rtl, 0), int_mode, mem_mode,
15959 VAR_INIT_STATUS_INITIALIZED);
15961 rtx rtlop1 = XEXP (rtl, 1);
15962 if (is_a <scalar_int_mode> (GET_MODE (rtlop1), &op1_mode)
15963 && GET_MODE_BITSIZE (op1_mode) < GET_MODE_BITSIZE (int_mode))
15964 rtlop1 = gen_rtx_ZERO_EXTEND (int_mode, rtlop1);
15965 op1 = mem_loc_descriptor (rtlop1, int_mode, mem_mode,
15966 VAR_INIT_STATUS_INITIALIZED);
15969 if (op0 == 0 || op1 == 0)
15970 break;
15972 mem_loc_result = op0;
15973 add_loc_descr (&mem_loc_result, op1);
15974 add_loc_descr (&mem_loc_result, new_loc_descr (op, 0, 0));
15975 break;
15977 case AND:
15978 op = DW_OP_and;
15979 goto do_binop;
15981 case IOR:
15982 op = DW_OP_or;
15983 goto do_binop;
15985 case XOR:
15986 op = DW_OP_xor;
15987 goto do_binop;
15989 do_binop:
15990 op0 = mem_loc_descriptor (XEXP (rtl, 0), mode, mem_mode,
15991 VAR_INIT_STATUS_INITIALIZED);
15992 op1 = mem_loc_descriptor (XEXP (rtl, 1), mode, mem_mode,
15993 VAR_INIT_STATUS_INITIALIZED);
15995 if (op0 == 0 || op1 == 0)
15996 break;
15998 mem_loc_result = op0;
15999 add_loc_descr (&mem_loc_result, op1);
16000 add_loc_descr (&mem_loc_result, new_loc_descr (op, 0, 0));
16001 break;
16003 case MOD:
16004 if ((!dwarf_strict || dwarf_version >= 5)
16005 && is_a <scalar_int_mode> (mode, &int_mode)
16006 && GET_MODE_SIZE (int_mode) > DWARF2_ADDR_SIZE)
16008 mem_loc_result = typed_binop (DW_OP_mod, rtl,
16009 base_type_for_mode (mode, 0),
16010 int_mode, mem_mode);
16011 break;
16014 op0 = mem_loc_descriptor (XEXP (rtl, 0), mode, mem_mode,
16015 VAR_INIT_STATUS_INITIALIZED);
16016 op1 = mem_loc_descriptor (XEXP (rtl, 1), mode, mem_mode,
16017 VAR_INIT_STATUS_INITIALIZED);
16019 if (op0 == 0 || op1 == 0)
16020 break;
16022 mem_loc_result = op0;
16023 add_loc_descr (&mem_loc_result, op1);
16024 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_over, 0, 0));
16025 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_over, 0, 0));
16026 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_div, 0, 0));
16027 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_mul, 0, 0));
16028 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_minus, 0, 0));
16029 break;
16031 case UDIV:
16032 if ((!dwarf_strict || dwarf_version >= 5)
16033 && is_a <scalar_int_mode> (mode, &int_mode))
16035 if (GET_MODE_SIZE (int_mode) > DWARF2_ADDR_SIZE)
16037 op = DW_OP_div;
16038 goto do_binop;
16040 mem_loc_result = typed_binop (DW_OP_div, rtl,
16041 base_type_for_mode (int_mode, 1),
16042 int_mode, mem_mode);
16044 break;
16046 case NOT:
16047 op = DW_OP_not;
16048 goto do_unop;
16050 case ABS:
16051 op = DW_OP_abs;
16052 goto do_unop;
16054 case NEG:
16055 op = DW_OP_neg;
16056 goto do_unop;
16058 do_unop:
16059 op0 = mem_loc_descriptor (XEXP (rtl, 0), mode, mem_mode,
16060 VAR_INIT_STATUS_INITIALIZED);
16062 if (op0 == 0)
16063 break;
16065 mem_loc_result = op0;
16066 add_loc_descr (&mem_loc_result, new_loc_descr (op, 0, 0));
16067 break;
16069 case CONST_INT:
16070 if (!is_a <scalar_int_mode> (mode, &int_mode)
16071 || GET_MODE_SIZE (int_mode) <= DWARF2_ADDR_SIZE
16072 #ifdef POINTERS_EXTEND_UNSIGNED
16073 || (int_mode == Pmode
16074 && mem_mode != VOIDmode
16075 && trunc_int_for_mode (INTVAL (rtl), ptr_mode) == INTVAL (rtl))
16076 #endif
16079 mem_loc_result = int_loc_descriptor (INTVAL (rtl));
16080 break;
16082 if ((!dwarf_strict || dwarf_version >= 5)
16083 && (GET_MODE_BITSIZE (int_mode) == HOST_BITS_PER_WIDE_INT
16084 || GET_MODE_BITSIZE (int_mode) == HOST_BITS_PER_DOUBLE_INT))
16086 dw_die_ref type_die = base_type_for_mode (int_mode, 1);
16087 scalar_int_mode amode;
16088 if (type_die == NULL)
16089 return NULL;
16090 if (INTVAL (rtl) >= 0
16091 && (int_mode_for_size (DWARF2_ADDR_SIZE * BITS_PER_UNIT, 0)
16092 .exists (&amode))
16093 && trunc_int_for_mode (INTVAL (rtl), amode) == INTVAL (rtl)
16094 /* const DW_OP_convert <XXX> vs.
16095 DW_OP_const_type <XXX, 1, const>. */
16096 && size_of_int_loc_descriptor (INTVAL (rtl)) + 1 + 1
16097 < (unsigned long) 1 + 1 + 1 + GET_MODE_SIZE (int_mode))
16099 mem_loc_result = int_loc_descriptor (INTVAL (rtl));
16100 op0 = new_loc_descr (dwarf_OP (DW_OP_convert), 0, 0);
16101 op0->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
16102 op0->dw_loc_oprnd1.v.val_die_ref.die = type_die;
16103 op0->dw_loc_oprnd1.v.val_die_ref.external = 0;
16104 add_loc_descr (&mem_loc_result, op0);
16105 return mem_loc_result;
16107 mem_loc_result = new_loc_descr (dwarf_OP (DW_OP_const_type), 0,
16108 INTVAL (rtl));
16109 mem_loc_result->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
16110 mem_loc_result->dw_loc_oprnd1.v.val_die_ref.die = type_die;
16111 mem_loc_result->dw_loc_oprnd1.v.val_die_ref.external = 0;
16112 if (GET_MODE_BITSIZE (int_mode) == HOST_BITS_PER_WIDE_INT)
16113 mem_loc_result->dw_loc_oprnd2.val_class = dw_val_class_const;
16114 else
16116 mem_loc_result->dw_loc_oprnd2.val_class
16117 = dw_val_class_const_double;
16118 mem_loc_result->dw_loc_oprnd2.v.val_double
16119 = double_int::from_shwi (INTVAL (rtl));
16122 break;
16124 case CONST_DOUBLE:
16125 if (!dwarf_strict || dwarf_version >= 5)
16127 dw_die_ref type_die;
16129 /* Note that if TARGET_SUPPORTS_WIDE_INT == 0, a
16130 CONST_DOUBLE rtx could represent either a large integer
16131 or a floating-point constant. If TARGET_SUPPORTS_WIDE_INT != 0,
16132 the value is always a floating point constant.
16134 When it is an integer, a CONST_DOUBLE is used whenever
16135 the constant requires 2 HWIs to be adequately represented.
16136 We output CONST_DOUBLEs as blocks. */
16137 if (mode == VOIDmode
16138 || (GET_MODE (rtl) == VOIDmode
16139 && maybe_ne (GET_MODE_BITSIZE (mode),
16140 HOST_BITS_PER_DOUBLE_INT)))
16141 break;
16142 type_die = base_type_for_mode (mode, SCALAR_INT_MODE_P (mode));
16143 if (type_die == NULL)
16144 return NULL;
16145 mem_loc_result = new_loc_descr (dwarf_OP (DW_OP_const_type), 0, 0);
16146 mem_loc_result->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
16147 mem_loc_result->dw_loc_oprnd1.v.val_die_ref.die = type_die;
16148 mem_loc_result->dw_loc_oprnd1.v.val_die_ref.external = 0;
16149 #if TARGET_SUPPORTS_WIDE_INT == 0
16150 if (!SCALAR_FLOAT_MODE_P (mode))
16152 mem_loc_result->dw_loc_oprnd2.val_class
16153 = dw_val_class_const_double;
16154 mem_loc_result->dw_loc_oprnd2.v.val_double
16155 = rtx_to_double_int (rtl);
16157 else
16158 #endif
16160 scalar_float_mode float_mode = as_a <scalar_float_mode> (mode);
16161 unsigned int length = GET_MODE_SIZE (float_mode);
16162 unsigned char *array = ggc_vec_alloc<unsigned char> (length);
16164 insert_float (rtl, array);
16165 mem_loc_result->dw_loc_oprnd2.val_class = dw_val_class_vec;
16166 mem_loc_result->dw_loc_oprnd2.v.val_vec.length = length / 4;
16167 mem_loc_result->dw_loc_oprnd2.v.val_vec.elt_size = 4;
16168 mem_loc_result->dw_loc_oprnd2.v.val_vec.array = array;
16171 break;
16173 case CONST_WIDE_INT:
16174 if (!dwarf_strict || dwarf_version >= 5)
16176 dw_die_ref type_die;
16178 type_die = base_type_for_mode (mode, SCALAR_INT_MODE_P (mode));
16179 if (type_die == NULL)
16180 return NULL;
16181 mem_loc_result = new_loc_descr (dwarf_OP (DW_OP_const_type), 0, 0);
16182 mem_loc_result->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
16183 mem_loc_result->dw_loc_oprnd1.v.val_die_ref.die = type_die;
16184 mem_loc_result->dw_loc_oprnd1.v.val_die_ref.external = 0;
16185 mem_loc_result->dw_loc_oprnd2.val_class
16186 = dw_val_class_wide_int;
16187 mem_loc_result->dw_loc_oprnd2.v.val_wide = ggc_alloc<wide_int> ();
16188 *mem_loc_result->dw_loc_oprnd2.v.val_wide = rtx_mode_t (rtl, mode);
16190 break;
16192 case CONST_POLY_INT:
16193 mem_loc_result = int_loc_descriptor (rtx_to_poly_int64 (rtl));
16194 break;
16196 case EQ:
16197 mem_loc_result = scompare_loc_descriptor (DW_OP_eq, rtl, mem_mode);
16198 break;
16200 case GE:
16201 mem_loc_result = scompare_loc_descriptor (DW_OP_ge, rtl, mem_mode);
16202 break;
16204 case GT:
16205 mem_loc_result = scompare_loc_descriptor (DW_OP_gt, rtl, mem_mode);
16206 break;
16208 case LE:
16209 mem_loc_result = scompare_loc_descriptor (DW_OP_le, rtl, mem_mode);
16210 break;
16212 case LT:
16213 mem_loc_result = scompare_loc_descriptor (DW_OP_lt, rtl, mem_mode);
16214 break;
16216 case NE:
16217 mem_loc_result = scompare_loc_descriptor (DW_OP_ne, rtl, mem_mode);
16218 break;
16220 case GEU:
16221 mem_loc_result = ucompare_loc_descriptor (DW_OP_ge, rtl, mem_mode);
16222 break;
16224 case GTU:
16225 mem_loc_result = ucompare_loc_descriptor (DW_OP_gt, rtl, mem_mode);
16226 break;
16228 case LEU:
16229 mem_loc_result = ucompare_loc_descriptor (DW_OP_le, rtl, mem_mode);
16230 break;
16232 case LTU:
16233 mem_loc_result = ucompare_loc_descriptor (DW_OP_lt, rtl, mem_mode);
16234 break;
16236 case UMIN:
16237 case UMAX:
16238 if (!SCALAR_INT_MODE_P (mode))
16239 break;
16240 /* FALLTHRU */
16241 case SMIN:
16242 case SMAX:
16243 mem_loc_result = minmax_loc_descriptor (rtl, mode, mem_mode);
16244 break;
16246 case ZERO_EXTRACT:
16247 case SIGN_EXTRACT:
16248 if (CONST_INT_P (XEXP (rtl, 1))
16249 && CONST_INT_P (XEXP (rtl, 2))
16250 && is_a <scalar_int_mode> (mode, &int_mode)
16251 && is_a <scalar_int_mode> (GET_MODE (XEXP (rtl, 0)), &inner_mode)
16252 && GET_MODE_SIZE (int_mode) <= DWARF2_ADDR_SIZE
16253 && GET_MODE_SIZE (inner_mode) <= DWARF2_ADDR_SIZE
16254 && ((unsigned) INTVAL (XEXP (rtl, 1))
16255 + (unsigned) INTVAL (XEXP (rtl, 2))
16256 <= GET_MODE_BITSIZE (int_mode)))
16258 int shift, size;
16259 op0 = mem_loc_descriptor (XEXP (rtl, 0), inner_mode,
16260 mem_mode, VAR_INIT_STATUS_INITIALIZED);
16261 if (op0 == 0)
16262 break;
16263 if (GET_CODE (rtl) == SIGN_EXTRACT)
16264 op = DW_OP_shra;
16265 else
16266 op = DW_OP_shr;
16267 mem_loc_result = op0;
16268 size = INTVAL (XEXP (rtl, 1));
16269 shift = INTVAL (XEXP (rtl, 2));
16270 if (BITS_BIG_ENDIAN)
16271 shift = GET_MODE_BITSIZE (inner_mode) - shift - size;
16272 if (shift + size != (int) DWARF2_ADDR_SIZE)
16274 add_loc_descr (&mem_loc_result,
16275 int_loc_descriptor (DWARF2_ADDR_SIZE
16276 - shift - size));
16277 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_shl, 0, 0));
16279 if (size != (int) DWARF2_ADDR_SIZE)
16281 add_loc_descr (&mem_loc_result,
16282 int_loc_descriptor (DWARF2_ADDR_SIZE - size));
16283 add_loc_descr (&mem_loc_result, new_loc_descr (op, 0, 0));
16286 break;
16288 case IF_THEN_ELSE:
16290 dw_loc_descr_ref op2, bra_node, drop_node;
16291 op0 = mem_loc_descriptor (XEXP (rtl, 0),
16292 GET_MODE (XEXP (rtl, 0)) == VOIDmode
16293 ? word_mode : GET_MODE (XEXP (rtl, 0)),
16294 mem_mode, VAR_INIT_STATUS_INITIALIZED);
16295 op1 = mem_loc_descriptor (XEXP (rtl, 1), mode, mem_mode,
16296 VAR_INIT_STATUS_INITIALIZED);
16297 op2 = mem_loc_descriptor (XEXP (rtl, 2), mode, mem_mode,
16298 VAR_INIT_STATUS_INITIALIZED);
16299 if (op0 == NULL || op1 == NULL || op2 == NULL)
16300 break;
16302 mem_loc_result = op1;
16303 add_loc_descr (&mem_loc_result, op2);
16304 add_loc_descr (&mem_loc_result, op0);
16305 bra_node = new_loc_descr (DW_OP_bra, 0, 0);
16306 add_loc_descr (&mem_loc_result, bra_node);
16307 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_swap, 0, 0));
16308 drop_node = new_loc_descr (DW_OP_drop, 0, 0);
16309 add_loc_descr (&mem_loc_result, drop_node);
16310 bra_node->dw_loc_oprnd1.val_class = dw_val_class_loc;
16311 bra_node->dw_loc_oprnd1.v.val_loc = drop_node;
16313 break;
16315 case FLOAT_EXTEND:
16316 case FLOAT_TRUNCATE:
16317 case FLOAT:
16318 case UNSIGNED_FLOAT:
16319 case FIX:
16320 case UNSIGNED_FIX:
16321 if (!dwarf_strict || dwarf_version >= 5)
16323 dw_die_ref type_die;
16324 dw_loc_descr_ref cvt;
16326 op0 = mem_loc_descriptor (XEXP (rtl, 0), GET_MODE (XEXP (rtl, 0)),
16327 mem_mode, VAR_INIT_STATUS_INITIALIZED);
16328 if (op0 == NULL)
16329 break;
16330 if (is_a <scalar_int_mode> (GET_MODE (XEXP (rtl, 0)), &int_mode)
16331 && (GET_CODE (rtl) == FLOAT
16332 || GET_MODE_SIZE (int_mode) <= DWARF2_ADDR_SIZE))
16334 type_die = base_type_for_mode (int_mode,
16335 GET_CODE (rtl) == UNSIGNED_FLOAT);
16336 if (type_die == NULL)
16337 break;
16338 cvt = new_loc_descr (dwarf_OP (DW_OP_convert), 0, 0);
16339 cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
16340 cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die;
16341 cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
16342 add_loc_descr (&op0, cvt);
16344 type_die = base_type_for_mode (mode, GET_CODE (rtl) == UNSIGNED_FIX);
16345 if (type_die == NULL)
16346 break;
16347 cvt = new_loc_descr (dwarf_OP (DW_OP_convert), 0, 0);
16348 cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
16349 cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die;
16350 cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
16351 add_loc_descr (&op0, cvt);
16352 if (is_a <scalar_int_mode> (mode, &int_mode)
16353 && (GET_CODE (rtl) == FIX
16354 || GET_MODE_SIZE (int_mode) < DWARF2_ADDR_SIZE))
16356 op0 = convert_descriptor_to_mode (int_mode, op0);
16357 if (op0 == NULL)
16358 break;
16360 mem_loc_result = op0;
16362 break;
16364 case CLZ:
16365 case CTZ:
16366 case FFS:
16367 if (is_a <scalar_int_mode> (mode, &int_mode))
16368 mem_loc_result = clz_loc_descriptor (rtl, int_mode, mem_mode);
16369 break;
16371 case POPCOUNT:
16372 case PARITY:
16373 if (is_a <scalar_int_mode> (mode, &int_mode))
16374 mem_loc_result = popcount_loc_descriptor (rtl, int_mode, mem_mode);
16375 break;
16377 case BSWAP:
16378 if (is_a <scalar_int_mode> (mode, &int_mode))
16379 mem_loc_result = bswap_loc_descriptor (rtl, int_mode, mem_mode);
16380 break;
16382 case ROTATE:
16383 case ROTATERT:
16384 if (is_a <scalar_int_mode> (mode, &int_mode))
16385 mem_loc_result = rotate_loc_descriptor (rtl, int_mode, mem_mode);
16386 break;
16388 case COMPARE:
16389 /* In theory, we could implement the above. */
16390 /* DWARF cannot represent the unsigned compare operations
16391 natively. */
16392 case SS_MULT:
16393 case US_MULT:
16394 case SS_DIV:
16395 case US_DIV:
16396 case SS_PLUS:
16397 case US_PLUS:
16398 case SS_MINUS:
16399 case US_MINUS:
16400 case SS_NEG:
16401 case US_NEG:
16402 case SS_ABS:
16403 case SS_ASHIFT:
16404 case US_ASHIFT:
16405 case SS_TRUNCATE:
16406 case US_TRUNCATE:
16407 case UNORDERED:
16408 case ORDERED:
16409 case UNEQ:
16410 case UNGE:
16411 case UNGT:
16412 case UNLE:
16413 case UNLT:
16414 case LTGT:
16415 case FRACT_CONVERT:
16416 case UNSIGNED_FRACT_CONVERT:
16417 case SAT_FRACT:
16418 case UNSIGNED_SAT_FRACT:
16419 case SQRT:
16420 case ASM_OPERANDS:
16421 case VEC_MERGE:
16422 case VEC_SELECT:
16423 case VEC_CONCAT:
16424 case VEC_DUPLICATE:
16425 case VEC_SERIES:
16426 case HIGH:
16427 case FMA:
16428 case STRICT_LOW_PART:
16429 case CONST_VECTOR:
16430 case CONST_FIXED:
16431 case CLRSB:
16432 case CLOBBER:
16433 case CLOBBER_HIGH:
16434 break;
16436 case CONST_STRING:
16437 resolve_one_addr (&rtl);
16438 goto symref;
16440 /* RTL sequences inside PARALLEL record a series of DWARF operations for
16441 the expression. An UNSPEC rtx represents a raw DWARF operation,
16442 new_loc_descr is called for it to build the operation directly.
16443 Otherwise mem_loc_descriptor is called recursively. */
16444 case PARALLEL:
16446 int index = 0;
16447 dw_loc_descr_ref exp_result = NULL;
16449 for (; index < XVECLEN (rtl, 0); index++)
16451 rtx elem = XVECEXP (rtl, 0, index);
16452 if (GET_CODE (elem) == UNSPEC)
16454 /* Each DWARF operation UNSPEC contain two operands, if
16455 one operand is not used for the operation, const0_rtx is
16456 passed. */
16457 gcc_assert (XVECLEN (elem, 0) == 2);
16459 HOST_WIDE_INT dw_op = XINT (elem, 1);
16460 HOST_WIDE_INT oprnd1 = INTVAL (XVECEXP (elem, 0, 0));
16461 HOST_WIDE_INT oprnd2 = INTVAL (XVECEXP (elem, 0, 1));
16462 exp_result
16463 = new_loc_descr ((enum dwarf_location_atom) dw_op, oprnd1,
16464 oprnd2);
16466 else
16467 exp_result
16468 = mem_loc_descriptor (elem, mode, mem_mode,
16469 VAR_INIT_STATUS_INITIALIZED);
16471 if (!mem_loc_result)
16472 mem_loc_result = exp_result;
16473 else
16474 add_loc_descr (&mem_loc_result, exp_result);
16477 break;
16480 default:
16481 if (flag_checking)
16483 print_rtl (stderr, rtl);
16484 gcc_unreachable ();
16486 break;
16489 if (mem_loc_result && initialized == VAR_INIT_STATUS_UNINITIALIZED)
16490 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_GNU_uninit, 0, 0));
16492 return mem_loc_result;
16495 /* Return a descriptor that describes the concatenation of two locations.
16496 This is typically a complex variable. */
16498 static dw_loc_descr_ref
16499 concat_loc_descriptor (rtx x0, rtx x1, enum var_init_status initialized)
16501 /* At present we only track constant-sized pieces. */
16502 unsigned int size0, size1;
16503 if (!GET_MODE_SIZE (GET_MODE (x0)).is_constant (&size0)
16504 || !GET_MODE_SIZE (GET_MODE (x1)).is_constant (&size1))
16505 return 0;
16507 dw_loc_descr_ref cc_loc_result = NULL;
16508 dw_loc_descr_ref x0_ref
16509 = loc_descriptor (x0, VOIDmode, VAR_INIT_STATUS_INITIALIZED);
16510 dw_loc_descr_ref x1_ref
16511 = loc_descriptor (x1, VOIDmode, VAR_INIT_STATUS_INITIALIZED);
16513 if (x0_ref == 0 || x1_ref == 0)
16514 return 0;
16516 cc_loc_result = x0_ref;
16517 add_loc_descr_op_piece (&cc_loc_result, size0);
16519 add_loc_descr (&cc_loc_result, x1_ref);
16520 add_loc_descr_op_piece (&cc_loc_result, size1);
16522 if (initialized == VAR_INIT_STATUS_UNINITIALIZED)
16523 add_loc_descr (&cc_loc_result, new_loc_descr (DW_OP_GNU_uninit, 0, 0));
16525 return cc_loc_result;
16528 /* Return a descriptor that describes the concatenation of N
16529 locations. */
16531 static dw_loc_descr_ref
16532 concatn_loc_descriptor (rtx concatn, enum var_init_status initialized)
16534 unsigned int i;
16535 dw_loc_descr_ref cc_loc_result = NULL;
16536 unsigned int n = XVECLEN (concatn, 0);
16537 unsigned int size;
16539 for (i = 0; i < n; ++i)
16541 dw_loc_descr_ref ref;
16542 rtx x = XVECEXP (concatn, 0, i);
16544 /* At present we only track constant-sized pieces. */
16545 if (!GET_MODE_SIZE (GET_MODE (x)).is_constant (&size))
16546 return NULL;
16548 ref = loc_descriptor (x, VOIDmode, VAR_INIT_STATUS_INITIALIZED);
16549 if (ref == NULL)
16550 return NULL;
16552 add_loc_descr (&cc_loc_result, ref);
16553 add_loc_descr_op_piece (&cc_loc_result, size);
16556 if (cc_loc_result && initialized == VAR_INIT_STATUS_UNINITIALIZED)
16557 add_loc_descr (&cc_loc_result, new_loc_descr (DW_OP_GNU_uninit, 0, 0));
16559 return cc_loc_result;
16562 /* Helper function for loc_descriptor. Return DW_OP_implicit_pointer
16563 for DEBUG_IMPLICIT_PTR RTL. */
16565 static dw_loc_descr_ref
16566 implicit_ptr_descriptor (rtx rtl, HOST_WIDE_INT offset)
16568 dw_loc_descr_ref ret;
16569 dw_die_ref ref;
16571 if (dwarf_strict && dwarf_version < 5)
16572 return NULL;
16573 gcc_assert (TREE_CODE (DEBUG_IMPLICIT_PTR_DECL (rtl)) == VAR_DECL
16574 || TREE_CODE (DEBUG_IMPLICIT_PTR_DECL (rtl)) == PARM_DECL
16575 || TREE_CODE (DEBUG_IMPLICIT_PTR_DECL (rtl)) == RESULT_DECL);
16576 ref = lookup_decl_die (DEBUG_IMPLICIT_PTR_DECL (rtl));
16577 ret = new_loc_descr (dwarf_OP (DW_OP_implicit_pointer), 0, offset);
16578 ret->dw_loc_oprnd2.val_class = dw_val_class_const;
16579 if (ref)
16581 ret->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
16582 ret->dw_loc_oprnd1.v.val_die_ref.die = ref;
16583 ret->dw_loc_oprnd1.v.val_die_ref.external = 0;
16585 else
16587 ret->dw_loc_oprnd1.val_class = dw_val_class_decl_ref;
16588 ret->dw_loc_oprnd1.v.val_decl_ref = DEBUG_IMPLICIT_PTR_DECL (rtl);
16590 return ret;
16593 /* Output a proper Dwarf location descriptor for a variable or parameter
16594 which is either allocated in a register or in a memory location. For a
16595 register, we just generate an OP_REG and the register number. For a
16596 memory location we provide a Dwarf postfix expression describing how to
16597 generate the (dynamic) address of the object onto the address stack.
16599 MODE is mode of the decl if this loc_descriptor is going to be used in
16600 .debug_loc section where DW_OP_stack_value and DW_OP_implicit_value are
16601 allowed, VOIDmode otherwise.
16603 If we don't know how to describe it, return 0. */
16605 static dw_loc_descr_ref
16606 loc_descriptor (rtx rtl, machine_mode mode,
16607 enum var_init_status initialized)
16609 dw_loc_descr_ref loc_result = NULL;
16610 scalar_int_mode int_mode;
16612 switch (GET_CODE (rtl))
16614 case SUBREG:
16615 /* The case of a subreg may arise when we have a local (register)
16616 variable or a formal (register) parameter which doesn't quite fill
16617 up an entire register. For now, just assume that it is
16618 legitimate to make the Dwarf info refer to the whole register which
16619 contains the given subreg. */
16620 if (REG_P (SUBREG_REG (rtl)) && subreg_lowpart_p (rtl))
16621 loc_result = loc_descriptor (SUBREG_REG (rtl),
16622 GET_MODE (SUBREG_REG (rtl)), initialized);
16623 else
16624 goto do_default;
16625 break;
16627 case REG:
16628 loc_result = reg_loc_descriptor (rtl, initialized);
16629 break;
16631 case MEM:
16632 loc_result = mem_loc_descriptor (XEXP (rtl, 0), get_address_mode (rtl),
16633 GET_MODE (rtl), initialized);
16634 if (loc_result == NULL)
16635 loc_result = tls_mem_loc_descriptor (rtl);
16636 if (loc_result == NULL)
16638 rtx new_rtl = avoid_constant_pool_reference (rtl);
16639 if (new_rtl != rtl)
16640 loc_result = loc_descriptor (new_rtl, mode, initialized);
16642 break;
16644 case CONCAT:
16645 loc_result = concat_loc_descriptor (XEXP (rtl, 0), XEXP (rtl, 1),
16646 initialized);
16647 break;
16649 case CONCATN:
16650 loc_result = concatn_loc_descriptor (rtl, initialized);
16651 break;
16653 case VAR_LOCATION:
16654 /* Single part. */
16655 if (GET_CODE (PAT_VAR_LOCATION_LOC (rtl)) != PARALLEL)
16657 rtx loc = PAT_VAR_LOCATION_LOC (rtl);
16658 if (GET_CODE (loc) == EXPR_LIST)
16659 loc = XEXP (loc, 0);
16660 loc_result = loc_descriptor (loc, mode, initialized);
16661 break;
16664 rtl = XEXP (rtl, 1);
16665 /* FALLTHRU */
16667 case PARALLEL:
16669 rtvec par_elems = XVEC (rtl, 0);
16670 int num_elem = GET_NUM_ELEM (par_elems);
16671 machine_mode mode;
16672 int i, size;
16674 /* Create the first one, so we have something to add to. */
16675 loc_result = loc_descriptor (XEXP (RTVEC_ELT (par_elems, 0), 0),
16676 VOIDmode, initialized);
16677 if (loc_result == NULL)
16678 return NULL;
16679 mode = GET_MODE (XEXP (RTVEC_ELT (par_elems, 0), 0));
16680 /* At present we only track constant-sized pieces. */
16681 if (!GET_MODE_SIZE (mode).is_constant (&size))
16682 return NULL;
16683 add_loc_descr_op_piece (&loc_result, size);
16684 for (i = 1; i < num_elem; i++)
16686 dw_loc_descr_ref temp;
16688 temp = loc_descriptor (XEXP (RTVEC_ELT (par_elems, i), 0),
16689 VOIDmode, initialized);
16690 if (temp == NULL)
16691 return NULL;
16692 add_loc_descr (&loc_result, temp);
16693 mode = GET_MODE (XEXP (RTVEC_ELT (par_elems, i), 0));
16694 /* At present we only track constant-sized pieces. */
16695 if (!GET_MODE_SIZE (mode).is_constant (&size))
16696 return NULL;
16697 add_loc_descr_op_piece (&loc_result, size);
16700 break;
16702 case CONST_INT:
16703 if (mode != VOIDmode && mode != BLKmode)
16705 int_mode = as_a <scalar_int_mode> (mode);
16706 loc_result = address_of_int_loc_descriptor (GET_MODE_SIZE (int_mode),
16707 INTVAL (rtl));
16709 break;
16711 case CONST_DOUBLE:
16712 if (mode == VOIDmode)
16713 mode = GET_MODE (rtl);
16715 if (mode != VOIDmode && (dwarf_version >= 4 || !dwarf_strict))
16717 gcc_assert (mode == GET_MODE (rtl) || VOIDmode == GET_MODE (rtl));
16719 /* Note that a CONST_DOUBLE rtx could represent either an integer
16720 or a floating-point constant. A CONST_DOUBLE is used whenever
16721 the constant requires more than one word in order to be
16722 adequately represented. We output CONST_DOUBLEs as blocks. */
16723 scalar_mode smode = as_a <scalar_mode> (mode);
16724 loc_result = new_loc_descr (DW_OP_implicit_value,
16725 GET_MODE_SIZE (smode), 0);
16726 #if TARGET_SUPPORTS_WIDE_INT == 0
16727 if (!SCALAR_FLOAT_MODE_P (smode))
16729 loc_result->dw_loc_oprnd2.val_class = dw_val_class_const_double;
16730 loc_result->dw_loc_oprnd2.v.val_double
16731 = rtx_to_double_int (rtl);
16733 else
16734 #endif
16736 unsigned int length = GET_MODE_SIZE (smode);
16737 unsigned char *array = ggc_vec_alloc<unsigned char> (length);
16739 insert_float (rtl, array);
16740 loc_result->dw_loc_oprnd2.val_class = dw_val_class_vec;
16741 loc_result->dw_loc_oprnd2.v.val_vec.length = length / 4;
16742 loc_result->dw_loc_oprnd2.v.val_vec.elt_size = 4;
16743 loc_result->dw_loc_oprnd2.v.val_vec.array = array;
16746 break;
16748 case CONST_WIDE_INT:
16749 if (mode == VOIDmode)
16750 mode = GET_MODE (rtl);
16752 if (mode != VOIDmode && (dwarf_version >= 4 || !dwarf_strict))
16754 int_mode = as_a <scalar_int_mode> (mode);
16755 loc_result = new_loc_descr (DW_OP_implicit_value,
16756 GET_MODE_SIZE (int_mode), 0);
16757 loc_result->dw_loc_oprnd2.val_class = dw_val_class_wide_int;
16758 loc_result->dw_loc_oprnd2.v.val_wide = ggc_alloc<wide_int> ();
16759 *loc_result->dw_loc_oprnd2.v.val_wide = rtx_mode_t (rtl, int_mode);
16761 break;
16763 case CONST_VECTOR:
16764 if (mode == VOIDmode)
16765 mode = GET_MODE (rtl);
16767 if (mode != VOIDmode && (dwarf_version >= 4 || !dwarf_strict))
16769 unsigned int length;
16770 if (!CONST_VECTOR_NUNITS (rtl).is_constant (&length))
16771 return NULL;
16773 unsigned int elt_size = GET_MODE_UNIT_SIZE (GET_MODE (rtl));
16774 unsigned char *array
16775 = ggc_vec_alloc<unsigned char> (length * elt_size);
16776 unsigned int i;
16777 unsigned char *p;
16778 machine_mode imode = GET_MODE_INNER (mode);
16780 gcc_assert (mode == GET_MODE (rtl) || VOIDmode == GET_MODE (rtl));
16781 switch (GET_MODE_CLASS (mode))
16783 case MODE_VECTOR_INT:
16784 for (i = 0, p = array; i < length; i++, p += elt_size)
16786 rtx elt = CONST_VECTOR_ELT (rtl, i);
16787 insert_wide_int (rtx_mode_t (elt, imode), p, elt_size);
16789 break;
16791 case MODE_VECTOR_FLOAT:
16792 for (i = 0, p = array; i < length; i++, p += elt_size)
16794 rtx elt = CONST_VECTOR_ELT (rtl, i);
16795 insert_float (elt, p);
16797 break;
16799 default:
16800 gcc_unreachable ();
16803 loc_result = new_loc_descr (DW_OP_implicit_value,
16804 length * elt_size, 0);
16805 loc_result->dw_loc_oprnd2.val_class = dw_val_class_vec;
16806 loc_result->dw_loc_oprnd2.v.val_vec.length = length;
16807 loc_result->dw_loc_oprnd2.v.val_vec.elt_size = elt_size;
16808 loc_result->dw_loc_oprnd2.v.val_vec.array = array;
16810 break;
16812 case CONST:
16813 if (mode == VOIDmode
16814 || CONST_SCALAR_INT_P (XEXP (rtl, 0))
16815 || CONST_DOUBLE_AS_FLOAT_P (XEXP (rtl, 0))
16816 || GET_CODE (XEXP (rtl, 0)) == CONST_VECTOR)
16818 loc_result = loc_descriptor (XEXP (rtl, 0), mode, initialized);
16819 break;
16821 /* FALLTHROUGH */
16822 case SYMBOL_REF:
16823 if (!const_ok_for_output (rtl))
16824 break;
16825 /* FALLTHROUGH */
16826 case LABEL_REF:
16827 if (is_a <scalar_int_mode> (mode, &int_mode)
16828 && GET_MODE_SIZE (int_mode) == DWARF2_ADDR_SIZE
16829 && (dwarf_version >= 4 || !dwarf_strict))
16831 loc_result = new_addr_loc_descr (rtl, dtprel_false);
16832 add_loc_descr (&loc_result, new_loc_descr (DW_OP_stack_value, 0, 0));
16833 vec_safe_push (used_rtx_array, rtl);
16835 break;
16837 case DEBUG_IMPLICIT_PTR:
16838 loc_result = implicit_ptr_descriptor (rtl, 0);
16839 break;
16841 case PLUS:
16842 if (GET_CODE (XEXP (rtl, 0)) == DEBUG_IMPLICIT_PTR
16843 && CONST_INT_P (XEXP (rtl, 1)))
16845 loc_result
16846 = implicit_ptr_descriptor (XEXP (rtl, 0), INTVAL (XEXP (rtl, 1)));
16847 break;
16849 /* FALLTHRU */
16850 do_default:
16851 default:
16852 if ((is_a <scalar_int_mode> (mode, &int_mode)
16853 && GET_MODE (rtl) == int_mode
16854 && GET_MODE_SIZE (int_mode) <= DWARF2_ADDR_SIZE
16855 && dwarf_version >= 4)
16856 || (!dwarf_strict && mode != VOIDmode && mode != BLKmode))
16858 /* Value expression. */
16859 loc_result = mem_loc_descriptor (rtl, mode, VOIDmode, initialized);
16860 if (loc_result)
16861 add_loc_descr (&loc_result,
16862 new_loc_descr (DW_OP_stack_value, 0, 0));
16864 break;
16867 return loc_result;
16870 /* We need to figure out what section we should use as the base for the
16871 address ranges where a given location is valid.
16872 1. If this particular DECL has a section associated with it, use that.
16873 2. If this function has a section associated with it, use that.
16874 3. Otherwise, use the text section.
16875 XXX: If you split a variable across multiple sections, we won't notice. */
16877 static const char *
16878 secname_for_decl (const_tree decl)
16880 const char *secname;
16882 if (VAR_OR_FUNCTION_DECL_P (decl)
16883 && (DECL_EXTERNAL (decl) || TREE_PUBLIC (decl) || TREE_STATIC (decl))
16884 && DECL_SECTION_NAME (decl))
16885 secname = DECL_SECTION_NAME (decl);
16886 else if (current_function_decl && DECL_SECTION_NAME (current_function_decl))
16888 if (in_cold_section_p)
16890 section *sec = current_function_section ();
16891 if (sec->common.flags & SECTION_NAMED)
16892 return sec->named.name;
16894 secname = DECL_SECTION_NAME (current_function_decl);
16896 else if (cfun && in_cold_section_p)
16897 secname = crtl->subsections.cold_section_label;
16898 else
16899 secname = text_section_label;
16901 return secname;
16904 /* Return true when DECL_BY_REFERENCE is defined and set for DECL. */
16906 static bool
16907 decl_by_reference_p (tree decl)
16909 return ((TREE_CODE (decl) == PARM_DECL || TREE_CODE (decl) == RESULT_DECL
16910 || VAR_P (decl))
16911 && DECL_BY_REFERENCE (decl));
16914 /* Helper function for dw_loc_list. Compute proper Dwarf location descriptor
16915 for VARLOC. */
16917 static dw_loc_descr_ref
16918 dw_loc_list_1 (tree loc, rtx varloc, int want_address,
16919 enum var_init_status initialized)
16921 int have_address = 0;
16922 dw_loc_descr_ref descr;
16923 machine_mode mode;
16925 if (want_address != 2)
16927 gcc_assert (GET_CODE (varloc) == VAR_LOCATION);
16928 /* Single part. */
16929 if (GET_CODE (PAT_VAR_LOCATION_LOC (varloc)) != PARALLEL)
16931 varloc = PAT_VAR_LOCATION_LOC (varloc);
16932 if (GET_CODE (varloc) == EXPR_LIST)
16933 varloc = XEXP (varloc, 0);
16934 mode = GET_MODE (varloc);
16935 if (MEM_P (varloc))
16937 rtx addr = XEXP (varloc, 0);
16938 descr = mem_loc_descriptor (addr, get_address_mode (varloc),
16939 mode, initialized);
16940 if (descr)
16941 have_address = 1;
16942 else
16944 rtx x = avoid_constant_pool_reference (varloc);
16945 if (x != varloc)
16946 descr = mem_loc_descriptor (x, mode, VOIDmode,
16947 initialized);
16950 else
16951 descr = mem_loc_descriptor (varloc, mode, VOIDmode, initialized);
16953 else
16954 return 0;
16956 else
16958 if (GET_CODE (varloc) == VAR_LOCATION)
16959 mode = DECL_MODE (PAT_VAR_LOCATION_DECL (varloc));
16960 else
16961 mode = DECL_MODE (loc);
16962 descr = loc_descriptor (varloc, mode, initialized);
16963 have_address = 1;
16966 if (!descr)
16967 return 0;
16969 if (want_address == 2 && !have_address
16970 && (dwarf_version >= 4 || !dwarf_strict))
16972 if (int_size_in_bytes (TREE_TYPE (loc)) > DWARF2_ADDR_SIZE)
16974 expansion_failed (loc, NULL_RTX,
16975 "DWARF address size mismatch");
16976 return 0;
16978 add_loc_descr (&descr, new_loc_descr (DW_OP_stack_value, 0, 0));
16979 have_address = 1;
16981 /* Show if we can't fill the request for an address. */
16982 if (want_address && !have_address)
16984 expansion_failed (loc, NULL_RTX,
16985 "Want address and only have value");
16986 return 0;
16989 /* If we've got an address and don't want one, dereference. */
16990 if (!want_address && have_address)
16992 HOST_WIDE_INT size = int_size_in_bytes (TREE_TYPE (loc));
16993 enum dwarf_location_atom op;
16995 if (size > DWARF2_ADDR_SIZE || size == -1)
16997 expansion_failed (loc, NULL_RTX,
16998 "DWARF address size mismatch");
16999 return 0;
17001 else if (size == DWARF2_ADDR_SIZE)
17002 op = DW_OP_deref;
17003 else
17004 op = DW_OP_deref_size;
17006 add_loc_descr (&descr, new_loc_descr (op, size, 0));
17009 return descr;
17012 /* Create a DW_OP_piece or DW_OP_bit_piece for bitsize, or return NULL
17013 if it is not possible. */
17015 static dw_loc_descr_ref
17016 new_loc_descr_op_bit_piece (HOST_WIDE_INT bitsize, HOST_WIDE_INT offset)
17018 if ((bitsize % BITS_PER_UNIT) == 0 && offset == 0)
17019 return new_loc_descr (DW_OP_piece, bitsize / BITS_PER_UNIT, 0);
17020 else if (dwarf_version >= 3 || !dwarf_strict)
17021 return new_loc_descr (DW_OP_bit_piece, bitsize, offset);
17022 else
17023 return NULL;
17026 /* Helper function for dw_loc_list. Compute proper Dwarf location descriptor
17027 for VAR_LOC_NOTE for variable DECL that has been optimized by SRA. */
17029 static dw_loc_descr_ref
17030 dw_sra_loc_expr (tree decl, rtx loc)
17032 rtx p;
17033 unsigned HOST_WIDE_INT padsize = 0;
17034 dw_loc_descr_ref descr, *descr_tail;
17035 unsigned HOST_WIDE_INT decl_size;
17036 rtx varloc;
17037 enum var_init_status initialized;
17039 if (DECL_SIZE (decl) == NULL
17040 || !tree_fits_uhwi_p (DECL_SIZE (decl)))
17041 return NULL;
17043 decl_size = tree_to_uhwi (DECL_SIZE (decl));
17044 descr = NULL;
17045 descr_tail = &descr;
17047 for (p = loc; p; p = XEXP (p, 1))
17049 unsigned HOST_WIDE_INT bitsize = decl_piece_bitsize (p);
17050 rtx loc_note = *decl_piece_varloc_ptr (p);
17051 dw_loc_descr_ref cur_descr;
17052 dw_loc_descr_ref *tail, last = NULL;
17053 unsigned HOST_WIDE_INT opsize = 0;
17055 if (loc_note == NULL_RTX
17056 || NOTE_VAR_LOCATION_LOC (loc_note) == NULL_RTX)
17058 padsize += bitsize;
17059 continue;
17061 initialized = NOTE_VAR_LOCATION_STATUS (loc_note);
17062 varloc = NOTE_VAR_LOCATION (loc_note);
17063 cur_descr = dw_loc_list_1 (decl, varloc, 2, initialized);
17064 if (cur_descr == NULL)
17066 padsize += bitsize;
17067 continue;
17070 /* Check that cur_descr either doesn't use
17071 DW_OP_*piece operations, or their sum is equal
17072 to bitsize. Otherwise we can't embed it. */
17073 for (tail = &cur_descr; *tail != NULL;
17074 tail = &(*tail)->dw_loc_next)
17075 if ((*tail)->dw_loc_opc == DW_OP_piece)
17077 opsize += (*tail)->dw_loc_oprnd1.v.val_unsigned
17078 * BITS_PER_UNIT;
17079 last = *tail;
17081 else if ((*tail)->dw_loc_opc == DW_OP_bit_piece)
17083 opsize += (*tail)->dw_loc_oprnd1.v.val_unsigned;
17084 last = *tail;
17087 if (last != NULL && opsize != bitsize)
17089 padsize += bitsize;
17090 /* Discard the current piece of the descriptor and release any
17091 addr_table entries it uses. */
17092 remove_loc_list_addr_table_entries (cur_descr);
17093 continue;
17096 /* If there is a hole, add DW_OP_*piece after empty DWARF
17097 expression, which means that those bits are optimized out. */
17098 if (padsize)
17100 if (padsize > decl_size)
17102 remove_loc_list_addr_table_entries (cur_descr);
17103 goto discard_descr;
17105 decl_size -= padsize;
17106 *descr_tail = new_loc_descr_op_bit_piece (padsize, 0);
17107 if (*descr_tail == NULL)
17109 remove_loc_list_addr_table_entries (cur_descr);
17110 goto discard_descr;
17112 descr_tail = &(*descr_tail)->dw_loc_next;
17113 padsize = 0;
17115 *descr_tail = cur_descr;
17116 descr_tail = tail;
17117 if (bitsize > decl_size)
17118 goto discard_descr;
17119 decl_size -= bitsize;
17120 if (last == NULL)
17122 HOST_WIDE_INT offset = 0;
17123 if (GET_CODE (varloc) == VAR_LOCATION
17124 && GET_CODE (PAT_VAR_LOCATION_LOC (varloc)) != PARALLEL)
17126 varloc = PAT_VAR_LOCATION_LOC (varloc);
17127 if (GET_CODE (varloc) == EXPR_LIST)
17128 varloc = XEXP (varloc, 0);
17132 if (GET_CODE (varloc) == CONST
17133 || GET_CODE (varloc) == SIGN_EXTEND
17134 || GET_CODE (varloc) == ZERO_EXTEND)
17135 varloc = XEXP (varloc, 0);
17136 else if (GET_CODE (varloc) == SUBREG)
17137 varloc = SUBREG_REG (varloc);
17138 else
17139 break;
17141 while (1);
17142 /* DW_OP_bit_size offset should be zero for register
17143 or implicit location descriptions and empty location
17144 descriptions, but for memory addresses needs big endian
17145 adjustment. */
17146 if (MEM_P (varloc))
17148 unsigned HOST_WIDE_INT memsize;
17149 if (!poly_uint64 (MEM_SIZE (varloc)).is_constant (&memsize))
17150 goto discard_descr;
17151 memsize *= BITS_PER_UNIT;
17152 if (memsize != bitsize)
17154 if (BYTES_BIG_ENDIAN != WORDS_BIG_ENDIAN
17155 && (memsize > BITS_PER_WORD || bitsize > BITS_PER_WORD))
17156 goto discard_descr;
17157 if (memsize < bitsize)
17158 goto discard_descr;
17159 if (BITS_BIG_ENDIAN)
17160 offset = memsize - bitsize;
17164 *descr_tail = new_loc_descr_op_bit_piece (bitsize, offset);
17165 if (*descr_tail == NULL)
17166 goto discard_descr;
17167 descr_tail = &(*descr_tail)->dw_loc_next;
17171 /* If there were any non-empty expressions, add padding till the end of
17172 the decl. */
17173 if (descr != NULL && decl_size != 0)
17175 *descr_tail = new_loc_descr_op_bit_piece (decl_size, 0);
17176 if (*descr_tail == NULL)
17177 goto discard_descr;
17179 return descr;
17181 discard_descr:
17182 /* Discard the descriptor and release any addr_table entries it uses. */
17183 remove_loc_list_addr_table_entries (descr);
17184 return NULL;
17187 /* Return the dwarf representation of the location list LOC_LIST of
17188 DECL. WANT_ADDRESS has the same meaning as in loc_list_from_tree
17189 function. */
17191 static dw_loc_list_ref
17192 dw_loc_list (var_loc_list *loc_list, tree decl, int want_address)
17194 const char *endname, *secname;
17195 var_loc_view endview;
17196 rtx varloc;
17197 enum var_init_status initialized;
17198 struct var_loc_node *node;
17199 dw_loc_descr_ref descr;
17200 char label_id[MAX_ARTIFICIAL_LABEL_BYTES];
17201 dw_loc_list_ref list = NULL;
17202 dw_loc_list_ref *listp = &list;
17204 /* Now that we know what section we are using for a base,
17205 actually construct the list of locations.
17206 The first location information is what is passed to the
17207 function that creates the location list, and the remaining
17208 locations just get added on to that list.
17209 Note that we only know the start address for a location
17210 (IE location changes), so to build the range, we use
17211 the range [current location start, next location start].
17212 This means we have to special case the last node, and generate
17213 a range of [last location start, end of function label]. */
17215 if (cfun && crtl->has_bb_partition)
17217 bool save_in_cold_section_p = in_cold_section_p;
17218 in_cold_section_p = first_function_block_is_cold;
17219 if (loc_list->last_before_switch == NULL)
17220 in_cold_section_p = !in_cold_section_p;
17221 secname = secname_for_decl (decl);
17222 in_cold_section_p = save_in_cold_section_p;
17224 else
17225 secname = secname_for_decl (decl);
17227 for (node = loc_list->first; node; node = node->next)
17229 bool range_across_switch = false;
17230 if (GET_CODE (node->loc) == EXPR_LIST
17231 || NOTE_VAR_LOCATION_LOC (node->loc) != NULL_RTX)
17233 if (GET_CODE (node->loc) == EXPR_LIST)
17235 descr = NULL;
17236 /* This requires DW_OP_{,bit_}piece, which is not usable
17237 inside DWARF expressions. */
17238 if (want_address == 2)
17239 descr = dw_sra_loc_expr (decl, node->loc);
17241 else
17243 initialized = NOTE_VAR_LOCATION_STATUS (node->loc);
17244 varloc = NOTE_VAR_LOCATION (node->loc);
17245 descr = dw_loc_list_1 (decl, varloc, want_address, initialized);
17247 if (descr)
17249 /* If section switch happens in between node->label
17250 and node->next->label (or end of function) and
17251 we can't emit it as a single entry list,
17252 emit two ranges, first one ending at the end
17253 of first partition and second one starting at the
17254 beginning of second partition. */
17255 if (node == loc_list->last_before_switch
17256 && (node != loc_list->first || loc_list->first->next
17257 /* If we are to emit a view number, we will emit
17258 a loclist rather than a single location
17259 expression for the entire function (see
17260 loc_list_has_views), so we have to split the
17261 range that straddles across partitions. */
17262 || !ZERO_VIEW_P (node->view))
17263 && current_function_decl)
17265 endname = cfun->fde->dw_fde_end;
17266 endview = 0;
17267 range_across_switch = true;
17269 /* The variable has a location between NODE->LABEL and
17270 NODE->NEXT->LABEL. */
17271 else if (node->next)
17272 endname = node->next->label, endview = node->next->view;
17273 /* If the variable has a location at the last label
17274 it keeps its location until the end of function. */
17275 else if (!current_function_decl)
17276 endname = text_end_label, endview = 0;
17277 else
17279 ASM_GENERATE_INTERNAL_LABEL (label_id, FUNC_END_LABEL,
17280 current_function_funcdef_no);
17281 endname = ggc_strdup (label_id);
17282 endview = 0;
17285 *listp = new_loc_list (descr, node->label, node->view,
17286 endname, endview, secname);
17287 if (TREE_CODE (decl) == PARM_DECL
17288 && node == loc_list->first
17289 && NOTE_P (node->loc)
17290 && strcmp (node->label, endname) == 0)
17291 (*listp)->force = true;
17292 listp = &(*listp)->dw_loc_next;
17296 if (cfun
17297 && crtl->has_bb_partition
17298 && node == loc_list->last_before_switch)
17300 bool save_in_cold_section_p = in_cold_section_p;
17301 in_cold_section_p = !first_function_block_is_cold;
17302 secname = secname_for_decl (decl);
17303 in_cold_section_p = save_in_cold_section_p;
17306 if (range_across_switch)
17308 if (GET_CODE (node->loc) == EXPR_LIST)
17309 descr = dw_sra_loc_expr (decl, node->loc);
17310 else
17312 initialized = NOTE_VAR_LOCATION_STATUS (node->loc);
17313 varloc = NOTE_VAR_LOCATION (node->loc);
17314 descr = dw_loc_list_1 (decl, varloc, want_address,
17315 initialized);
17317 gcc_assert (descr);
17318 /* The variable has a location between NODE->LABEL and
17319 NODE->NEXT->LABEL. */
17320 if (node->next)
17321 endname = node->next->label, endview = node->next->view;
17322 else
17323 endname = cfun->fde->dw_fde_second_end, endview = 0;
17324 *listp = new_loc_list (descr, cfun->fde->dw_fde_second_begin, 0,
17325 endname, endview, secname);
17326 listp = &(*listp)->dw_loc_next;
17330 /* Try to avoid the overhead of a location list emitting a location
17331 expression instead, but only if we didn't have more than one
17332 location entry in the first place. If some entries were not
17333 representable, we don't want to pretend a single entry that was
17334 applies to the entire scope in which the variable is
17335 available. */
17336 if (list && loc_list->first->next)
17337 gen_llsym (list);
17338 else
17339 maybe_gen_llsym (list);
17341 return list;
17344 /* Return if the loc_list has only single element and thus can be represented
17345 as location description. */
17347 static bool
17348 single_element_loc_list_p (dw_loc_list_ref list)
17350 gcc_assert (!list->dw_loc_next || list->ll_symbol);
17351 return !list->ll_symbol;
17354 /* Duplicate a single element of location list. */
17356 static inline dw_loc_descr_ref
17357 copy_loc_descr (dw_loc_descr_ref ref)
17359 dw_loc_descr_ref copy = ggc_alloc<dw_loc_descr_node> ();
17360 memcpy (copy, ref, sizeof (dw_loc_descr_node));
17361 return copy;
17364 /* To each location in list LIST append loc descr REF. */
17366 static void
17367 add_loc_descr_to_each (dw_loc_list_ref list, dw_loc_descr_ref ref)
17369 dw_loc_descr_ref copy;
17370 add_loc_descr (&list->expr, ref);
17371 list = list->dw_loc_next;
17372 while (list)
17374 copy = copy_loc_descr (ref);
17375 add_loc_descr (&list->expr, copy);
17376 while (copy->dw_loc_next)
17377 copy = copy->dw_loc_next = copy_loc_descr (copy->dw_loc_next);
17378 list = list->dw_loc_next;
17382 /* To each location in list LIST prepend loc descr REF. */
17384 static void
17385 prepend_loc_descr_to_each (dw_loc_list_ref list, dw_loc_descr_ref ref)
17387 dw_loc_descr_ref copy;
17388 dw_loc_descr_ref ref_end = list->expr;
17389 add_loc_descr (&ref, list->expr);
17390 list->expr = ref;
17391 list = list->dw_loc_next;
17392 while (list)
17394 dw_loc_descr_ref end = list->expr;
17395 list->expr = copy = copy_loc_descr (ref);
17396 while (copy->dw_loc_next != ref_end)
17397 copy = copy->dw_loc_next = copy_loc_descr (copy->dw_loc_next);
17398 copy->dw_loc_next = end;
17399 list = list->dw_loc_next;
17403 /* Given two lists RET and LIST
17404 produce location list that is result of adding expression in LIST
17405 to expression in RET on each position in program.
17406 Might be destructive on both RET and LIST.
17408 TODO: We handle only simple cases of RET or LIST having at most one
17409 element. General case would involve sorting the lists in program order
17410 and merging them that will need some additional work.
17411 Adding that will improve quality of debug info especially for SRA-ed
17412 structures. */
17414 static void
17415 add_loc_list (dw_loc_list_ref *ret, dw_loc_list_ref list)
17417 if (!list)
17418 return;
17419 if (!*ret)
17421 *ret = list;
17422 return;
17424 if (!list->dw_loc_next)
17426 add_loc_descr_to_each (*ret, list->expr);
17427 return;
17429 if (!(*ret)->dw_loc_next)
17431 prepend_loc_descr_to_each (list, (*ret)->expr);
17432 *ret = list;
17433 return;
17435 expansion_failed (NULL_TREE, NULL_RTX,
17436 "Don't know how to merge two non-trivial"
17437 " location lists.\n");
17438 *ret = NULL;
17439 return;
17442 /* LOC is constant expression. Try a luck, look it up in constant
17443 pool and return its loc_descr of its address. */
17445 static dw_loc_descr_ref
17446 cst_pool_loc_descr (tree loc)
17448 /* Get an RTL for this, if something has been emitted. */
17449 rtx rtl = lookup_constant_def (loc);
17451 if (!rtl || !MEM_P (rtl))
17453 gcc_assert (!rtl);
17454 return 0;
17456 gcc_assert (GET_CODE (XEXP (rtl, 0)) == SYMBOL_REF);
17458 /* TODO: We might get more coverage if we was actually delaying expansion
17459 of all expressions till end of compilation when constant pools are fully
17460 populated. */
17461 if (!TREE_ASM_WRITTEN (SYMBOL_REF_DECL (XEXP (rtl, 0))))
17463 expansion_failed (loc, NULL_RTX,
17464 "CST value in contant pool but not marked.");
17465 return 0;
17467 return mem_loc_descriptor (XEXP (rtl, 0), get_address_mode (rtl),
17468 GET_MODE (rtl), VAR_INIT_STATUS_INITIALIZED);
17471 /* Return dw_loc_list representing address of addr_expr LOC
17472 by looking for inner INDIRECT_REF expression and turning
17473 it into simple arithmetics.
17475 See loc_list_from_tree for the meaning of CONTEXT. */
17477 static dw_loc_list_ref
17478 loc_list_for_address_of_addr_expr_of_indirect_ref (tree loc, bool toplev,
17479 loc_descr_context *context)
17481 tree obj, offset;
17482 poly_int64 bitsize, bitpos, bytepos;
17483 machine_mode mode;
17484 int unsignedp, reversep, volatilep = 0;
17485 dw_loc_list_ref list_ret = NULL, list_ret1 = NULL;
17487 obj = get_inner_reference (TREE_OPERAND (loc, 0),
17488 &bitsize, &bitpos, &offset, &mode,
17489 &unsignedp, &reversep, &volatilep);
17490 STRIP_NOPS (obj);
17491 if (!multiple_p (bitpos, BITS_PER_UNIT, &bytepos))
17493 expansion_failed (loc, NULL_RTX, "bitfield access");
17494 return 0;
17496 if (!INDIRECT_REF_P (obj))
17498 expansion_failed (obj,
17499 NULL_RTX, "no indirect ref in inner refrence");
17500 return 0;
17502 if (!offset && known_eq (bitpos, 0))
17503 list_ret = loc_list_from_tree (TREE_OPERAND (obj, 0), toplev ? 2 : 1,
17504 context);
17505 else if (toplev
17506 && int_size_in_bytes (TREE_TYPE (loc)) <= DWARF2_ADDR_SIZE
17507 && (dwarf_version >= 4 || !dwarf_strict))
17509 list_ret = loc_list_from_tree (TREE_OPERAND (obj, 0), 0, context);
17510 if (!list_ret)
17511 return 0;
17512 if (offset)
17514 /* Variable offset. */
17515 list_ret1 = loc_list_from_tree (offset, 0, context);
17516 if (list_ret1 == 0)
17517 return 0;
17518 add_loc_list (&list_ret, list_ret1);
17519 if (!list_ret)
17520 return 0;
17521 add_loc_descr_to_each (list_ret,
17522 new_loc_descr (DW_OP_plus, 0, 0));
17524 HOST_WIDE_INT value;
17525 if (bytepos.is_constant (&value) && value > 0)
17526 add_loc_descr_to_each (list_ret,
17527 new_loc_descr (DW_OP_plus_uconst, value, 0));
17528 else if (maybe_ne (bytepos, 0))
17529 loc_list_plus_const (list_ret, bytepos);
17530 add_loc_descr_to_each (list_ret,
17531 new_loc_descr (DW_OP_stack_value, 0, 0));
17533 return list_ret;
17536 /* Set LOC to the next operation that is not a DW_OP_nop operation. In the case
17537 all operations from LOC are nops, move to the last one. Insert in NOPS all
17538 operations that are skipped. */
17540 static void
17541 loc_descr_to_next_no_nop (dw_loc_descr_ref &loc,
17542 hash_set<dw_loc_descr_ref> &nops)
17544 while (loc->dw_loc_next != NULL && loc->dw_loc_opc == DW_OP_nop)
17546 nops.add (loc);
17547 loc = loc->dw_loc_next;
17551 /* Helper for loc_descr_without_nops: free the location description operation
17552 P. */
17554 bool
17555 free_loc_descr (const dw_loc_descr_ref &loc, void *data ATTRIBUTE_UNUSED)
17557 ggc_free (loc);
17558 return true;
17561 /* Remove all DW_OP_nop operations from LOC except, if it exists, the one that
17562 finishes LOC. */
17564 static void
17565 loc_descr_without_nops (dw_loc_descr_ref &loc)
17567 if (loc->dw_loc_opc == DW_OP_nop && loc->dw_loc_next == NULL)
17568 return;
17570 /* Set of all DW_OP_nop operations we remove. */
17571 hash_set<dw_loc_descr_ref> nops;
17573 /* First, strip all prefix NOP operations in order to keep the head of the
17574 operations list. */
17575 loc_descr_to_next_no_nop (loc, nops);
17577 for (dw_loc_descr_ref cur = loc; cur != NULL;)
17579 /* For control flow operations: strip "prefix" nops in destination
17580 labels. */
17581 if (cur->dw_loc_oprnd1.val_class == dw_val_class_loc)
17582 loc_descr_to_next_no_nop (cur->dw_loc_oprnd1.v.val_loc, nops);
17583 if (cur->dw_loc_oprnd2.val_class == dw_val_class_loc)
17584 loc_descr_to_next_no_nop (cur->dw_loc_oprnd2.v.val_loc, nops);
17586 /* Do the same for the operations that follow, then move to the next
17587 iteration. */
17588 if (cur->dw_loc_next != NULL)
17589 loc_descr_to_next_no_nop (cur->dw_loc_next, nops);
17590 cur = cur->dw_loc_next;
17593 nops.traverse<void *, free_loc_descr> (NULL);
17597 struct dwarf_procedure_info;
17599 /* Helper structure for location descriptions generation. */
17600 struct loc_descr_context
17602 /* The type that is implicitly referenced by DW_OP_push_object_address, or
17603 NULL_TREE if DW_OP_push_object_address in invalid for this location
17604 description. This is used when processing PLACEHOLDER_EXPR nodes. */
17605 tree context_type;
17606 /* The ..._DECL node that should be translated as a
17607 DW_OP_push_object_address operation. */
17608 tree base_decl;
17609 /* Information about the DWARF procedure we are currently generating. NULL if
17610 we are not generating a DWARF procedure. */
17611 struct dwarf_procedure_info *dpi;
17612 /* True if integral PLACEHOLDER_EXPR stands for the first argument passed
17613 by consumer. Used for DW_TAG_generic_subrange attributes. */
17614 bool placeholder_arg;
17615 /* True if PLACEHOLDER_EXPR has been seen. */
17616 bool placeholder_seen;
17619 /* DWARF procedures generation
17621 DWARF expressions (aka. location descriptions) are used to encode variable
17622 things such as sizes or offsets. Such computations can have redundant parts
17623 that can be factorized in order to reduce the size of the output debug
17624 information. This is the whole point of DWARF procedures.
17626 Thanks to stor-layout.c, size and offset expressions in GENERIC trees are
17627 already factorized into functions ("size functions") in order to handle very
17628 big and complex types. Such functions are quite simple: they have integral
17629 arguments, they return an integral result and their body contains only a
17630 return statement with arithmetic expressions. This is the only kind of
17631 function we are interested in translating into DWARF procedures, here.
17633 DWARF expressions and DWARF procedure are executed using a stack, so we have
17634 to define some calling convention for them to interact. Let's say that:
17636 - Before calling a DWARF procedure, DWARF expressions must push on the stack
17637 all arguments in reverse order (right-to-left) so that when the DWARF
17638 procedure execution starts, the first argument is the top of the stack.
17640 - Then, when returning, the DWARF procedure must have consumed all arguments
17641 on the stack, must have pushed the result and touched nothing else.
17643 - Each integral argument and the result are integral types can be hold in a
17644 single stack slot.
17646 - We call "frame offset" the number of stack slots that are "under DWARF
17647 procedure control": it includes the arguments slots, the temporaries and
17648 the result slot. Thus, it is equal to the number of arguments when the
17649 procedure execution starts and must be equal to one (the result) when it
17650 returns. */
17652 /* Helper structure used when generating operations for a DWARF procedure. */
17653 struct dwarf_procedure_info
17655 /* The FUNCTION_DECL node corresponding to the DWARF procedure that is
17656 currently translated. */
17657 tree fndecl;
17658 /* The number of arguments FNDECL takes. */
17659 unsigned args_count;
17662 /* Return a pointer to a newly created DIE node for a DWARF procedure. Add
17663 LOCATION as its DW_AT_location attribute. If FNDECL is not NULL_TREE,
17664 equate it to this DIE. */
17666 static dw_die_ref
17667 new_dwarf_proc_die (dw_loc_descr_ref location, tree fndecl,
17668 dw_die_ref parent_die)
17670 dw_die_ref dwarf_proc_die;
17672 if ((dwarf_version < 3 && dwarf_strict)
17673 || location == NULL)
17674 return NULL;
17676 dwarf_proc_die = new_die (DW_TAG_dwarf_procedure, parent_die, fndecl);
17677 if (fndecl)
17678 equate_decl_number_to_die (fndecl, dwarf_proc_die);
17679 add_AT_loc (dwarf_proc_die, DW_AT_location, location);
17680 return dwarf_proc_die;
17683 /* Return whether TYPE is a supported type as a DWARF procedure argument
17684 type or return type (we handle only scalar types and pointer types that
17685 aren't wider than the DWARF expression evaluation stack. */
17687 static bool
17688 is_handled_procedure_type (tree type)
17690 return ((INTEGRAL_TYPE_P (type)
17691 || TREE_CODE (type) == OFFSET_TYPE
17692 || TREE_CODE (type) == POINTER_TYPE)
17693 && int_size_in_bytes (type) <= DWARF2_ADDR_SIZE);
17696 /* Helper for resolve_args_picking: do the same but stop when coming across
17697 visited nodes. For each node we visit, register in FRAME_OFFSETS the frame
17698 offset *before* evaluating the corresponding operation. */
17700 static bool
17701 resolve_args_picking_1 (dw_loc_descr_ref loc, unsigned initial_frame_offset,
17702 struct dwarf_procedure_info *dpi,
17703 hash_map<dw_loc_descr_ref, unsigned> &frame_offsets)
17705 /* The "frame_offset" identifier is already used to name a macro... */
17706 unsigned frame_offset_ = initial_frame_offset;
17707 dw_loc_descr_ref l;
17709 for (l = loc; l != NULL;)
17711 bool existed;
17712 unsigned &l_frame_offset = frame_offsets.get_or_insert (l, &existed);
17714 /* If we already met this node, there is nothing to compute anymore. */
17715 if (existed)
17717 /* Make sure that the stack size is consistent wherever the execution
17718 flow comes from. */
17719 gcc_assert ((unsigned) l_frame_offset == frame_offset_);
17720 break;
17722 l_frame_offset = frame_offset_;
17724 /* If needed, relocate the picking offset with respect to the frame
17725 offset. */
17726 if (l->frame_offset_rel)
17728 unsigned HOST_WIDE_INT off;
17729 switch (l->dw_loc_opc)
17731 case DW_OP_pick:
17732 off = l->dw_loc_oprnd1.v.val_unsigned;
17733 break;
17734 case DW_OP_dup:
17735 off = 0;
17736 break;
17737 case DW_OP_over:
17738 off = 1;
17739 break;
17740 default:
17741 gcc_unreachable ();
17743 /* frame_offset_ is the size of the current stack frame, including
17744 incoming arguments. Besides, the arguments are pushed
17745 right-to-left. Thus, in order to access the Nth argument from
17746 this operation node, the picking has to skip temporaries *plus*
17747 one stack slot per argument (0 for the first one, 1 for the second
17748 one, etc.).
17750 The targetted argument number (N) is already set as the operand,
17751 and the number of temporaries can be computed with:
17752 frame_offsets_ - dpi->args_count */
17753 off += frame_offset_ - dpi->args_count;
17755 /* DW_OP_pick handles only offsets from 0 to 255 (inclusive)... */
17756 if (off > 255)
17757 return false;
17759 if (off == 0)
17761 l->dw_loc_opc = DW_OP_dup;
17762 l->dw_loc_oprnd1.v.val_unsigned = 0;
17764 else if (off == 1)
17766 l->dw_loc_opc = DW_OP_over;
17767 l->dw_loc_oprnd1.v.val_unsigned = 0;
17769 else
17771 l->dw_loc_opc = DW_OP_pick;
17772 l->dw_loc_oprnd1.v.val_unsigned = off;
17776 /* Update frame_offset according to the effect the current operation has
17777 on the stack. */
17778 switch (l->dw_loc_opc)
17780 case DW_OP_deref:
17781 case DW_OP_swap:
17782 case DW_OP_rot:
17783 case DW_OP_abs:
17784 case DW_OP_neg:
17785 case DW_OP_not:
17786 case DW_OP_plus_uconst:
17787 case DW_OP_skip:
17788 case DW_OP_reg0:
17789 case DW_OP_reg1:
17790 case DW_OP_reg2:
17791 case DW_OP_reg3:
17792 case DW_OP_reg4:
17793 case DW_OP_reg5:
17794 case DW_OP_reg6:
17795 case DW_OP_reg7:
17796 case DW_OP_reg8:
17797 case DW_OP_reg9:
17798 case DW_OP_reg10:
17799 case DW_OP_reg11:
17800 case DW_OP_reg12:
17801 case DW_OP_reg13:
17802 case DW_OP_reg14:
17803 case DW_OP_reg15:
17804 case DW_OP_reg16:
17805 case DW_OP_reg17:
17806 case DW_OP_reg18:
17807 case DW_OP_reg19:
17808 case DW_OP_reg20:
17809 case DW_OP_reg21:
17810 case DW_OP_reg22:
17811 case DW_OP_reg23:
17812 case DW_OP_reg24:
17813 case DW_OP_reg25:
17814 case DW_OP_reg26:
17815 case DW_OP_reg27:
17816 case DW_OP_reg28:
17817 case DW_OP_reg29:
17818 case DW_OP_reg30:
17819 case DW_OP_reg31:
17820 case DW_OP_bregx:
17821 case DW_OP_piece:
17822 case DW_OP_deref_size:
17823 case DW_OP_nop:
17824 case DW_OP_bit_piece:
17825 case DW_OP_implicit_value:
17826 case DW_OP_stack_value:
17827 break;
17829 case DW_OP_addr:
17830 case DW_OP_const1u:
17831 case DW_OP_const1s:
17832 case DW_OP_const2u:
17833 case DW_OP_const2s:
17834 case DW_OP_const4u:
17835 case DW_OP_const4s:
17836 case DW_OP_const8u:
17837 case DW_OP_const8s:
17838 case DW_OP_constu:
17839 case DW_OP_consts:
17840 case DW_OP_dup:
17841 case DW_OP_over:
17842 case DW_OP_pick:
17843 case DW_OP_lit0:
17844 case DW_OP_lit1:
17845 case DW_OP_lit2:
17846 case DW_OP_lit3:
17847 case DW_OP_lit4:
17848 case DW_OP_lit5:
17849 case DW_OP_lit6:
17850 case DW_OP_lit7:
17851 case DW_OP_lit8:
17852 case DW_OP_lit9:
17853 case DW_OP_lit10:
17854 case DW_OP_lit11:
17855 case DW_OP_lit12:
17856 case DW_OP_lit13:
17857 case DW_OP_lit14:
17858 case DW_OP_lit15:
17859 case DW_OP_lit16:
17860 case DW_OP_lit17:
17861 case DW_OP_lit18:
17862 case DW_OP_lit19:
17863 case DW_OP_lit20:
17864 case DW_OP_lit21:
17865 case DW_OP_lit22:
17866 case DW_OP_lit23:
17867 case DW_OP_lit24:
17868 case DW_OP_lit25:
17869 case DW_OP_lit26:
17870 case DW_OP_lit27:
17871 case DW_OP_lit28:
17872 case DW_OP_lit29:
17873 case DW_OP_lit30:
17874 case DW_OP_lit31:
17875 case DW_OP_breg0:
17876 case DW_OP_breg1:
17877 case DW_OP_breg2:
17878 case DW_OP_breg3:
17879 case DW_OP_breg4:
17880 case DW_OP_breg5:
17881 case DW_OP_breg6:
17882 case DW_OP_breg7:
17883 case DW_OP_breg8:
17884 case DW_OP_breg9:
17885 case DW_OP_breg10:
17886 case DW_OP_breg11:
17887 case DW_OP_breg12:
17888 case DW_OP_breg13:
17889 case DW_OP_breg14:
17890 case DW_OP_breg15:
17891 case DW_OP_breg16:
17892 case DW_OP_breg17:
17893 case DW_OP_breg18:
17894 case DW_OP_breg19:
17895 case DW_OP_breg20:
17896 case DW_OP_breg21:
17897 case DW_OP_breg22:
17898 case DW_OP_breg23:
17899 case DW_OP_breg24:
17900 case DW_OP_breg25:
17901 case DW_OP_breg26:
17902 case DW_OP_breg27:
17903 case DW_OP_breg28:
17904 case DW_OP_breg29:
17905 case DW_OP_breg30:
17906 case DW_OP_breg31:
17907 case DW_OP_fbreg:
17908 case DW_OP_push_object_address:
17909 case DW_OP_call_frame_cfa:
17910 case DW_OP_GNU_variable_value:
17911 case DW_OP_GNU_addr_index:
17912 case DW_OP_GNU_const_index:
17913 ++frame_offset_;
17914 break;
17916 case DW_OP_drop:
17917 case DW_OP_xderef:
17918 case DW_OP_and:
17919 case DW_OP_div:
17920 case DW_OP_minus:
17921 case DW_OP_mod:
17922 case DW_OP_mul:
17923 case DW_OP_or:
17924 case DW_OP_plus:
17925 case DW_OP_shl:
17926 case DW_OP_shr:
17927 case DW_OP_shra:
17928 case DW_OP_xor:
17929 case DW_OP_bra:
17930 case DW_OP_eq:
17931 case DW_OP_ge:
17932 case DW_OP_gt:
17933 case DW_OP_le:
17934 case DW_OP_lt:
17935 case DW_OP_ne:
17936 case DW_OP_regx:
17937 case DW_OP_xderef_size:
17938 --frame_offset_;
17939 break;
17941 case DW_OP_call2:
17942 case DW_OP_call4:
17943 case DW_OP_call_ref:
17945 dw_die_ref dwarf_proc = l->dw_loc_oprnd1.v.val_die_ref.die;
17946 int *stack_usage = dwarf_proc_stack_usage_map->get (dwarf_proc);
17948 if (stack_usage == NULL)
17949 return false;
17950 frame_offset_ += *stack_usage;
17951 break;
17954 case DW_OP_implicit_pointer:
17955 case DW_OP_entry_value:
17956 case DW_OP_const_type:
17957 case DW_OP_regval_type:
17958 case DW_OP_deref_type:
17959 case DW_OP_convert:
17960 case DW_OP_reinterpret:
17961 case DW_OP_form_tls_address:
17962 case DW_OP_GNU_push_tls_address:
17963 case DW_OP_GNU_uninit:
17964 case DW_OP_GNU_encoded_addr:
17965 case DW_OP_GNU_implicit_pointer:
17966 case DW_OP_GNU_entry_value:
17967 case DW_OP_GNU_const_type:
17968 case DW_OP_GNU_regval_type:
17969 case DW_OP_GNU_deref_type:
17970 case DW_OP_GNU_convert:
17971 case DW_OP_GNU_reinterpret:
17972 case DW_OP_GNU_parameter_ref:
17973 /* loc_list_from_tree will probably not output these operations for
17974 size functions, so assume they will not appear here. */
17975 /* Fall through... */
17977 default:
17978 gcc_unreachable ();
17981 /* Now, follow the control flow (except subroutine calls). */
17982 switch (l->dw_loc_opc)
17984 case DW_OP_bra:
17985 if (!resolve_args_picking_1 (l->dw_loc_next, frame_offset_, dpi,
17986 frame_offsets))
17987 return false;
17988 /* Fall through. */
17990 case DW_OP_skip:
17991 l = l->dw_loc_oprnd1.v.val_loc;
17992 break;
17994 case DW_OP_stack_value:
17995 return true;
17997 default:
17998 l = l->dw_loc_next;
17999 break;
18003 return true;
18006 /* Make a DFS over operations reachable through LOC (i.e. follow branch
18007 operations) in order to resolve the operand of DW_OP_pick operations that
18008 target DWARF procedure arguments (DPI). INITIAL_FRAME_OFFSET is the frame
18009 offset *before* LOC is executed. Return if all relocations were
18010 successful. */
18012 static bool
18013 resolve_args_picking (dw_loc_descr_ref loc, unsigned initial_frame_offset,
18014 struct dwarf_procedure_info *dpi)
18016 /* Associate to all visited operations the frame offset *before* evaluating
18017 this operation. */
18018 hash_map<dw_loc_descr_ref, unsigned> frame_offsets;
18020 return resolve_args_picking_1 (loc, initial_frame_offset, dpi,
18021 frame_offsets);
18024 /* Try to generate a DWARF procedure that computes the same result as FNDECL.
18025 Return NULL if it is not possible. */
18027 static dw_die_ref
18028 function_to_dwarf_procedure (tree fndecl)
18030 struct loc_descr_context ctx;
18031 struct dwarf_procedure_info dpi;
18032 dw_die_ref dwarf_proc_die;
18033 tree tree_body = DECL_SAVED_TREE (fndecl);
18034 dw_loc_descr_ref loc_body, epilogue;
18036 tree cursor;
18037 unsigned i;
18039 /* Do not generate multiple DWARF procedures for the same function
18040 declaration. */
18041 dwarf_proc_die = lookup_decl_die (fndecl);
18042 if (dwarf_proc_die != NULL)
18043 return dwarf_proc_die;
18045 /* DWARF procedures are available starting with the DWARFv3 standard. */
18046 if (dwarf_version < 3 && dwarf_strict)
18047 return NULL;
18049 /* We handle only functions for which we still have a body, that return a
18050 supported type and that takes arguments with supported types. Note that
18051 there is no point translating functions that return nothing. */
18052 if (tree_body == NULL_TREE
18053 || DECL_RESULT (fndecl) == NULL_TREE
18054 || !is_handled_procedure_type (TREE_TYPE (DECL_RESULT (fndecl))))
18055 return NULL;
18057 for (cursor = DECL_ARGUMENTS (fndecl);
18058 cursor != NULL_TREE;
18059 cursor = TREE_CHAIN (cursor))
18060 if (!is_handled_procedure_type (TREE_TYPE (cursor)))
18061 return NULL;
18063 /* Match only "expr" in: RETURN_EXPR (MODIFY_EXPR (RESULT_DECL, expr)). */
18064 if (TREE_CODE (tree_body) != RETURN_EXPR)
18065 return NULL;
18066 tree_body = TREE_OPERAND (tree_body, 0);
18067 if (TREE_CODE (tree_body) != MODIFY_EXPR
18068 || TREE_OPERAND (tree_body, 0) != DECL_RESULT (fndecl))
18069 return NULL;
18070 tree_body = TREE_OPERAND (tree_body, 1);
18072 /* Try to translate the body expression itself. Note that this will probably
18073 cause an infinite recursion if its call graph has a cycle. This is very
18074 unlikely for size functions, however, so don't bother with such things at
18075 the moment. */
18076 ctx.context_type = NULL_TREE;
18077 ctx.base_decl = NULL_TREE;
18078 ctx.dpi = &dpi;
18079 ctx.placeholder_arg = false;
18080 ctx.placeholder_seen = false;
18081 dpi.fndecl = fndecl;
18082 dpi.args_count = list_length (DECL_ARGUMENTS (fndecl));
18083 loc_body = loc_descriptor_from_tree (tree_body, 0, &ctx);
18084 if (!loc_body)
18085 return NULL;
18087 /* After evaluating all operands in "loc_body", we should still have on the
18088 stack all arguments plus the desired function result (top of the stack).
18089 Generate code in order to keep only the result in our stack frame. */
18090 epilogue = NULL;
18091 for (i = 0; i < dpi.args_count; ++i)
18093 dw_loc_descr_ref op_couple = new_loc_descr (DW_OP_swap, 0, 0);
18094 op_couple->dw_loc_next = new_loc_descr (DW_OP_drop, 0, 0);
18095 op_couple->dw_loc_next->dw_loc_next = epilogue;
18096 epilogue = op_couple;
18098 add_loc_descr (&loc_body, epilogue);
18099 if (!resolve_args_picking (loc_body, dpi.args_count, &dpi))
18100 return NULL;
18102 /* Trailing nops from loc_descriptor_from_tree (if any) cannot be removed
18103 because they are considered useful. Now there is an epilogue, they are
18104 not anymore, so give it another try. */
18105 loc_descr_without_nops (loc_body);
18107 /* fndecl may be used both as a regular DW_TAG_subprogram DIE and as
18108 a DW_TAG_dwarf_procedure, so we may have a conflict, here. It's unlikely,
18109 though, given that size functions do not come from source, so they should
18110 not have a dedicated DW_TAG_subprogram DIE. */
18111 dwarf_proc_die
18112 = new_dwarf_proc_die (loc_body, fndecl,
18113 get_context_die (DECL_CONTEXT (fndecl)));
18115 /* The called DWARF procedure consumes one stack slot per argument and
18116 returns one stack slot. */
18117 dwarf_proc_stack_usage_map->put (dwarf_proc_die, 1 - dpi.args_count);
18119 return dwarf_proc_die;
18123 /* Generate Dwarf location list representing LOC.
18124 If WANT_ADDRESS is false, expression computing LOC will be computed
18125 If WANT_ADDRESS is 1, expression computing address of LOC will be returned
18126 if WANT_ADDRESS is 2, expression computing address useable in location
18127 will be returned (i.e. DW_OP_reg can be used
18128 to refer to register values).
18130 CONTEXT provides information to customize the location descriptions
18131 generation. Its context_type field specifies what type is implicitly
18132 referenced by DW_OP_push_object_address. If it is NULL_TREE, this operation
18133 will not be generated.
18135 Its DPI field determines whether we are generating a DWARF expression for a
18136 DWARF procedure, so PARM_DECL references are processed specifically.
18138 If CONTEXT is NULL, the behavior is the same as if context_type, base_decl
18139 and dpi fields were null. */
18141 static dw_loc_list_ref
18142 loc_list_from_tree_1 (tree loc, int want_address,
18143 struct loc_descr_context *context)
18145 dw_loc_descr_ref ret = NULL, ret1 = NULL;
18146 dw_loc_list_ref list_ret = NULL, list_ret1 = NULL;
18147 int have_address = 0;
18148 enum dwarf_location_atom op;
18150 /* ??? Most of the time we do not take proper care for sign/zero
18151 extending the values properly. Hopefully this won't be a real
18152 problem... */
18154 if (context != NULL
18155 && context->base_decl == loc
18156 && want_address == 0)
18158 if (dwarf_version >= 3 || !dwarf_strict)
18159 return new_loc_list (new_loc_descr (DW_OP_push_object_address, 0, 0),
18160 NULL, 0, NULL, 0, NULL);
18161 else
18162 return NULL;
18165 switch (TREE_CODE (loc))
18167 case ERROR_MARK:
18168 expansion_failed (loc, NULL_RTX, "ERROR_MARK");
18169 return 0;
18171 case PLACEHOLDER_EXPR:
18172 /* This case involves extracting fields from an object to determine the
18173 position of other fields. It is supposed to appear only as the first
18174 operand of COMPONENT_REF nodes and to reference precisely the type
18175 that the context allows. */
18176 if (context != NULL
18177 && TREE_TYPE (loc) == context->context_type
18178 && want_address >= 1)
18180 if (dwarf_version >= 3 || !dwarf_strict)
18182 ret = new_loc_descr (DW_OP_push_object_address, 0, 0);
18183 have_address = 1;
18184 break;
18186 else
18187 return NULL;
18189 /* For DW_TAG_generic_subrange attributes, PLACEHOLDER_EXPR stands for
18190 the single argument passed by consumer. */
18191 else if (context != NULL
18192 && context->placeholder_arg
18193 && INTEGRAL_TYPE_P (TREE_TYPE (loc))
18194 && want_address == 0)
18196 ret = new_loc_descr (DW_OP_pick, 0, 0);
18197 ret->frame_offset_rel = 1;
18198 context->placeholder_seen = true;
18199 break;
18201 else
18202 expansion_failed (loc, NULL_RTX,
18203 "PLACEHOLDER_EXPR for an unexpected type");
18204 break;
18206 case CALL_EXPR:
18208 const int nargs = call_expr_nargs (loc);
18209 tree callee = get_callee_fndecl (loc);
18210 int i;
18211 dw_die_ref dwarf_proc;
18213 if (callee == NULL_TREE)
18214 goto call_expansion_failed;
18216 /* We handle only functions that return an integer. */
18217 if (!is_handled_procedure_type (TREE_TYPE (TREE_TYPE (callee))))
18218 goto call_expansion_failed;
18220 dwarf_proc = function_to_dwarf_procedure (callee);
18221 if (dwarf_proc == NULL)
18222 goto call_expansion_failed;
18224 /* Evaluate arguments right-to-left so that the first argument will
18225 be the top-most one on the stack. */
18226 for (i = nargs - 1; i >= 0; --i)
18228 dw_loc_descr_ref loc_descr
18229 = loc_descriptor_from_tree (CALL_EXPR_ARG (loc, i), 0,
18230 context);
18232 if (loc_descr == NULL)
18233 goto call_expansion_failed;
18235 add_loc_descr (&ret, loc_descr);
18238 ret1 = new_loc_descr (DW_OP_call4, 0, 0);
18239 ret1->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
18240 ret1->dw_loc_oprnd1.v.val_die_ref.die = dwarf_proc;
18241 ret1->dw_loc_oprnd1.v.val_die_ref.external = 0;
18242 add_loc_descr (&ret, ret1);
18243 break;
18245 call_expansion_failed:
18246 expansion_failed (loc, NULL_RTX, "CALL_EXPR");
18247 /* There are no opcodes for these operations. */
18248 return 0;
18251 case PREINCREMENT_EXPR:
18252 case PREDECREMENT_EXPR:
18253 case POSTINCREMENT_EXPR:
18254 case POSTDECREMENT_EXPR:
18255 expansion_failed (loc, NULL_RTX, "PRE/POST INDCREMENT/DECREMENT");
18256 /* There are no opcodes for these operations. */
18257 return 0;
18259 case ADDR_EXPR:
18260 /* If we already want an address, see if there is INDIRECT_REF inside
18261 e.g. for &this->field. */
18262 if (want_address)
18264 list_ret = loc_list_for_address_of_addr_expr_of_indirect_ref
18265 (loc, want_address == 2, context);
18266 if (list_ret)
18267 have_address = 1;
18268 else if (decl_address_ip_invariant_p (TREE_OPERAND (loc, 0))
18269 && (ret = cst_pool_loc_descr (loc)))
18270 have_address = 1;
18272 /* Otherwise, process the argument and look for the address. */
18273 if (!list_ret && !ret)
18274 list_ret = loc_list_from_tree_1 (TREE_OPERAND (loc, 0), 1, context);
18275 else
18277 if (want_address)
18278 expansion_failed (loc, NULL_RTX, "need address of ADDR_EXPR");
18279 return NULL;
18281 break;
18283 case VAR_DECL:
18284 if (DECL_THREAD_LOCAL_P (loc))
18286 rtx rtl;
18287 enum dwarf_location_atom tls_op;
18288 enum dtprel_bool dtprel = dtprel_false;
18290 if (targetm.have_tls)
18292 /* If this is not defined, we have no way to emit the
18293 data. */
18294 if (!targetm.asm_out.output_dwarf_dtprel)
18295 return 0;
18297 /* The way DW_OP_GNU_push_tls_address is specified, we
18298 can only look up addresses of objects in the current
18299 module. We used DW_OP_addr as first op, but that's
18300 wrong, because DW_OP_addr is relocated by the debug
18301 info consumer, while DW_OP_GNU_push_tls_address
18302 operand shouldn't be. */
18303 if (DECL_EXTERNAL (loc) && !targetm.binds_local_p (loc))
18304 return 0;
18305 dtprel = dtprel_true;
18306 /* We check for DWARF 5 here because gdb did not implement
18307 DW_OP_form_tls_address until after 7.12. */
18308 tls_op = (dwarf_version >= 5 ? DW_OP_form_tls_address
18309 : DW_OP_GNU_push_tls_address);
18311 else
18313 if (!targetm.emutls.debug_form_tls_address
18314 || !(dwarf_version >= 3 || !dwarf_strict))
18315 return 0;
18316 /* We stuffed the control variable into the DECL_VALUE_EXPR
18317 to signal (via DECL_HAS_VALUE_EXPR_P) that the decl should
18318 no longer appear in gimple code. We used the control
18319 variable in specific so that we could pick it up here. */
18320 loc = DECL_VALUE_EXPR (loc);
18321 tls_op = DW_OP_form_tls_address;
18324 rtl = rtl_for_decl_location (loc);
18325 if (rtl == NULL_RTX)
18326 return 0;
18328 if (!MEM_P (rtl))
18329 return 0;
18330 rtl = XEXP (rtl, 0);
18331 if (! CONSTANT_P (rtl))
18332 return 0;
18334 ret = new_addr_loc_descr (rtl, dtprel);
18335 ret1 = new_loc_descr (tls_op, 0, 0);
18336 add_loc_descr (&ret, ret1);
18338 have_address = 1;
18339 break;
18341 /* FALLTHRU */
18343 case PARM_DECL:
18344 if (context != NULL && context->dpi != NULL
18345 && DECL_CONTEXT (loc) == context->dpi->fndecl)
18347 /* We are generating code for a DWARF procedure and we want to access
18348 one of its arguments: find the appropriate argument offset and let
18349 the resolve_args_picking pass compute the offset that complies
18350 with the stack frame size. */
18351 unsigned i = 0;
18352 tree cursor;
18354 for (cursor = DECL_ARGUMENTS (context->dpi->fndecl);
18355 cursor != NULL_TREE && cursor != loc;
18356 cursor = TREE_CHAIN (cursor), ++i)
18358 /* If we are translating a DWARF procedure, all referenced parameters
18359 must belong to the current function. */
18360 gcc_assert (cursor != NULL_TREE);
18362 ret = new_loc_descr (DW_OP_pick, i, 0);
18363 ret->frame_offset_rel = 1;
18364 break;
18366 /* FALLTHRU */
18368 case RESULT_DECL:
18369 if (DECL_HAS_VALUE_EXPR_P (loc))
18370 return loc_list_from_tree_1 (DECL_VALUE_EXPR (loc),
18371 want_address, context);
18372 /* FALLTHRU */
18374 case FUNCTION_DECL:
18376 rtx rtl;
18377 var_loc_list *loc_list = lookup_decl_loc (loc);
18379 if (loc_list && loc_list->first)
18381 list_ret = dw_loc_list (loc_list, loc, want_address);
18382 have_address = want_address != 0;
18383 break;
18385 rtl = rtl_for_decl_location (loc);
18386 if (rtl == NULL_RTX)
18388 if (TREE_CODE (loc) != FUNCTION_DECL
18389 && early_dwarf
18390 && current_function_decl
18391 && want_address != 1
18392 && ! DECL_IGNORED_P (loc)
18393 && (INTEGRAL_TYPE_P (TREE_TYPE (loc))
18394 || POINTER_TYPE_P (TREE_TYPE (loc)))
18395 && DECL_CONTEXT (loc) == current_function_decl
18396 && (GET_MODE_SIZE (SCALAR_INT_TYPE_MODE (TREE_TYPE (loc)))
18397 <= DWARF2_ADDR_SIZE))
18399 dw_die_ref ref = lookup_decl_die (loc);
18400 ret = new_loc_descr (DW_OP_GNU_variable_value, 0, 0);
18401 if (ref)
18403 ret->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
18404 ret->dw_loc_oprnd1.v.val_die_ref.die = ref;
18405 ret->dw_loc_oprnd1.v.val_die_ref.external = 0;
18407 else
18409 ret->dw_loc_oprnd1.val_class = dw_val_class_decl_ref;
18410 ret->dw_loc_oprnd1.v.val_decl_ref = loc;
18412 break;
18414 expansion_failed (loc, NULL_RTX, "DECL has no RTL");
18415 return 0;
18417 else if (CONST_INT_P (rtl))
18419 HOST_WIDE_INT val = INTVAL (rtl);
18420 if (TYPE_UNSIGNED (TREE_TYPE (loc)))
18421 val &= GET_MODE_MASK (DECL_MODE (loc));
18422 ret = int_loc_descriptor (val);
18424 else if (GET_CODE (rtl) == CONST_STRING)
18426 expansion_failed (loc, NULL_RTX, "CONST_STRING");
18427 return 0;
18429 else if (CONSTANT_P (rtl) && const_ok_for_output (rtl))
18430 ret = new_addr_loc_descr (rtl, dtprel_false);
18431 else
18433 machine_mode mode, mem_mode;
18435 /* Certain constructs can only be represented at top-level. */
18436 if (want_address == 2)
18438 ret = loc_descriptor (rtl, VOIDmode,
18439 VAR_INIT_STATUS_INITIALIZED);
18440 have_address = 1;
18442 else
18444 mode = GET_MODE (rtl);
18445 mem_mode = VOIDmode;
18446 if (MEM_P (rtl))
18448 mem_mode = mode;
18449 mode = get_address_mode (rtl);
18450 rtl = XEXP (rtl, 0);
18451 have_address = 1;
18453 ret = mem_loc_descriptor (rtl, mode, mem_mode,
18454 VAR_INIT_STATUS_INITIALIZED);
18456 if (!ret)
18457 expansion_failed (loc, rtl,
18458 "failed to produce loc descriptor for rtl");
18461 break;
18463 case MEM_REF:
18464 if (!integer_zerop (TREE_OPERAND (loc, 1)))
18466 have_address = 1;
18467 goto do_plus;
18469 /* Fallthru. */
18470 case INDIRECT_REF:
18471 list_ret = loc_list_from_tree_1 (TREE_OPERAND (loc, 0), 0, context);
18472 have_address = 1;
18473 break;
18475 case TARGET_MEM_REF:
18476 case SSA_NAME:
18477 case DEBUG_EXPR_DECL:
18478 return NULL;
18480 case COMPOUND_EXPR:
18481 return loc_list_from_tree_1 (TREE_OPERAND (loc, 1), want_address,
18482 context);
18484 CASE_CONVERT:
18485 case VIEW_CONVERT_EXPR:
18486 case SAVE_EXPR:
18487 case MODIFY_EXPR:
18488 case NON_LVALUE_EXPR:
18489 return loc_list_from_tree_1 (TREE_OPERAND (loc, 0), want_address,
18490 context);
18492 case COMPONENT_REF:
18493 case BIT_FIELD_REF:
18494 case ARRAY_REF:
18495 case ARRAY_RANGE_REF:
18496 case REALPART_EXPR:
18497 case IMAGPART_EXPR:
18499 tree obj, offset;
18500 poly_int64 bitsize, bitpos, bytepos;
18501 machine_mode mode;
18502 int unsignedp, reversep, volatilep = 0;
18504 obj = get_inner_reference (loc, &bitsize, &bitpos, &offset, &mode,
18505 &unsignedp, &reversep, &volatilep);
18507 gcc_assert (obj != loc);
18509 list_ret = loc_list_from_tree_1 (obj,
18510 want_address == 2
18511 && known_eq (bitpos, 0)
18512 && !offset ? 2 : 1,
18513 context);
18514 /* TODO: We can extract value of the small expression via shifting even
18515 for nonzero bitpos. */
18516 if (list_ret == 0)
18517 return 0;
18518 if (!multiple_p (bitpos, BITS_PER_UNIT, &bytepos)
18519 || !multiple_p (bitsize, BITS_PER_UNIT))
18521 expansion_failed (loc, NULL_RTX,
18522 "bitfield access");
18523 return 0;
18526 if (offset != NULL_TREE)
18528 /* Variable offset. */
18529 list_ret1 = loc_list_from_tree_1 (offset, 0, context);
18530 if (list_ret1 == 0)
18531 return 0;
18532 add_loc_list (&list_ret, list_ret1);
18533 if (!list_ret)
18534 return 0;
18535 add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_plus, 0, 0));
18538 HOST_WIDE_INT value;
18539 if (bytepos.is_constant (&value) && value > 0)
18540 add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_plus_uconst,
18541 value, 0));
18542 else if (maybe_ne (bytepos, 0))
18543 loc_list_plus_const (list_ret, bytepos);
18545 have_address = 1;
18546 break;
18549 case INTEGER_CST:
18550 if ((want_address || !tree_fits_shwi_p (loc))
18551 && (ret = cst_pool_loc_descr (loc)))
18552 have_address = 1;
18553 else if (want_address == 2
18554 && tree_fits_shwi_p (loc)
18555 && (ret = address_of_int_loc_descriptor
18556 (int_size_in_bytes (TREE_TYPE (loc)),
18557 tree_to_shwi (loc))))
18558 have_address = 1;
18559 else if (tree_fits_shwi_p (loc))
18560 ret = int_loc_descriptor (tree_to_shwi (loc));
18561 else if (tree_fits_uhwi_p (loc))
18562 ret = uint_loc_descriptor (tree_to_uhwi (loc));
18563 else
18565 expansion_failed (loc, NULL_RTX,
18566 "Integer operand is not host integer");
18567 return 0;
18569 break;
18571 case CONSTRUCTOR:
18572 case REAL_CST:
18573 case STRING_CST:
18574 case COMPLEX_CST:
18575 if ((ret = cst_pool_loc_descr (loc)))
18576 have_address = 1;
18577 else if (TREE_CODE (loc) == CONSTRUCTOR)
18579 tree type = TREE_TYPE (loc);
18580 unsigned HOST_WIDE_INT size = int_size_in_bytes (type);
18581 unsigned HOST_WIDE_INT offset = 0;
18582 unsigned HOST_WIDE_INT cnt;
18583 constructor_elt *ce;
18585 if (TREE_CODE (type) == RECORD_TYPE)
18587 /* This is very limited, but it's enough to output
18588 pointers to member functions, as long as the
18589 referenced function is defined in the current
18590 translation unit. */
18591 FOR_EACH_VEC_SAFE_ELT (CONSTRUCTOR_ELTS (loc), cnt, ce)
18593 tree val = ce->value;
18595 tree field = ce->index;
18597 if (val)
18598 STRIP_NOPS (val);
18600 if (!field || DECL_BIT_FIELD (field))
18602 expansion_failed (loc, NULL_RTX,
18603 "bitfield in record type constructor");
18604 size = offset = (unsigned HOST_WIDE_INT)-1;
18605 ret = NULL;
18606 break;
18609 HOST_WIDE_INT fieldsize = tree_to_shwi (DECL_SIZE_UNIT (field));
18610 unsigned HOST_WIDE_INT pos = int_byte_position (field);
18611 gcc_assert (pos + fieldsize <= size);
18612 if (pos < offset)
18614 expansion_failed (loc, NULL_RTX,
18615 "out-of-order fields in record constructor");
18616 size = offset = (unsigned HOST_WIDE_INT)-1;
18617 ret = NULL;
18618 break;
18620 if (pos > offset)
18622 ret1 = new_loc_descr (DW_OP_piece, pos - offset, 0);
18623 add_loc_descr (&ret, ret1);
18624 offset = pos;
18626 if (val && fieldsize != 0)
18628 ret1 = loc_descriptor_from_tree (val, want_address, context);
18629 if (!ret1)
18631 expansion_failed (loc, NULL_RTX,
18632 "unsupported expression in field");
18633 size = offset = (unsigned HOST_WIDE_INT)-1;
18634 ret = NULL;
18635 break;
18637 add_loc_descr (&ret, ret1);
18639 if (fieldsize)
18641 ret1 = new_loc_descr (DW_OP_piece, fieldsize, 0);
18642 add_loc_descr (&ret, ret1);
18643 offset = pos + fieldsize;
18647 if (offset != size)
18649 ret1 = new_loc_descr (DW_OP_piece, size - offset, 0);
18650 add_loc_descr (&ret, ret1);
18651 offset = size;
18654 have_address = !!want_address;
18656 else
18657 expansion_failed (loc, NULL_RTX,
18658 "constructor of non-record type");
18660 else
18661 /* We can construct small constants here using int_loc_descriptor. */
18662 expansion_failed (loc, NULL_RTX,
18663 "constructor or constant not in constant pool");
18664 break;
18666 case TRUTH_AND_EXPR:
18667 case TRUTH_ANDIF_EXPR:
18668 case BIT_AND_EXPR:
18669 op = DW_OP_and;
18670 goto do_binop;
18672 case TRUTH_XOR_EXPR:
18673 case BIT_XOR_EXPR:
18674 op = DW_OP_xor;
18675 goto do_binop;
18677 case TRUTH_OR_EXPR:
18678 case TRUTH_ORIF_EXPR:
18679 case BIT_IOR_EXPR:
18680 op = DW_OP_or;
18681 goto do_binop;
18683 case FLOOR_DIV_EXPR:
18684 case CEIL_DIV_EXPR:
18685 case ROUND_DIV_EXPR:
18686 case TRUNC_DIV_EXPR:
18687 case EXACT_DIV_EXPR:
18688 if (TYPE_UNSIGNED (TREE_TYPE (loc)))
18689 return 0;
18690 op = DW_OP_div;
18691 goto do_binop;
18693 case MINUS_EXPR:
18694 op = DW_OP_minus;
18695 goto do_binop;
18697 case FLOOR_MOD_EXPR:
18698 case CEIL_MOD_EXPR:
18699 case ROUND_MOD_EXPR:
18700 case TRUNC_MOD_EXPR:
18701 if (TYPE_UNSIGNED (TREE_TYPE (loc)))
18703 op = DW_OP_mod;
18704 goto do_binop;
18706 list_ret = loc_list_from_tree_1 (TREE_OPERAND (loc, 0), 0, context);
18707 list_ret1 = loc_list_from_tree_1 (TREE_OPERAND (loc, 1), 0, context);
18708 if (list_ret == 0 || list_ret1 == 0)
18709 return 0;
18711 add_loc_list (&list_ret, list_ret1);
18712 if (list_ret == 0)
18713 return 0;
18714 add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_over, 0, 0));
18715 add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_over, 0, 0));
18716 add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_div, 0, 0));
18717 add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_mul, 0, 0));
18718 add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_minus, 0, 0));
18719 break;
18721 case MULT_EXPR:
18722 op = DW_OP_mul;
18723 goto do_binop;
18725 case LSHIFT_EXPR:
18726 op = DW_OP_shl;
18727 goto do_binop;
18729 case RSHIFT_EXPR:
18730 op = (TYPE_UNSIGNED (TREE_TYPE (loc)) ? DW_OP_shr : DW_OP_shra);
18731 goto do_binop;
18733 case POINTER_PLUS_EXPR:
18734 case PLUS_EXPR:
18735 do_plus:
18736 if (tree_fits_shwi_p (TREE_OPERAND (loc, 1)))
18738 /* Big unsigned numbers can fit in HOST_WIDE_INT but it may be
18739 smarter to encode their opposite. The DW_OP_plus_uconst operation
18740 takes 1 + X bytes, X being the size of the ULEB128 addend. On the
18741 other hand, a "<push literal>; DW_OP_minus" pattern takes 1 + Y
18742 bytes, Y being the size of the operation that pushes the opposite
18743 of the addend. So let's choose the smallest representation. */
18744 const tree tree_addend = TREE_OPERAND (loc, 1);
18745 offset_int wi_addend;
18746 HOST_WIDE_INT shwi_addend;
18747 dw_loc_descr_ref loc_naddend;
18749 list_ret = loc_list_from_tree_1 (TREE_OPERAND (loc, 0), 0, context);
18750 if (list_ret == 0)
18751 return 0;
18753 /* Try to get the literal to push. It is the opposite of the addend,
18754 so as we rely on wrapping during DWARF evaluation, first decode
18755 the literal as a "DWARF-sized" signed number. */
18756 wi_addend = wi::to_offset (tree_addend);
18757 wi_addend = wi::sext (wi_addend, DWARF2_ADDR_SIZE * 8);
18758 shwi_addend = wi_addend.to_shwi ();
18759 loc_naddend = (shwi_addend != INTTYPE_MINIMUM (HOST_WIDE_INT))
18760 ? int_loc_descriptor (-shwi_addend)
18761 : NULL;
18763 if (loc_naddend != NULL
18764 && ((unsigned) size_of_uleb128 (shwi_addend)
18765 > size_of_loc_descr (loc_naddend)))
18767 add_loc_descr_to_each (list_ret, loc_naddend);
18768 add_loc_descr_to_each (list_ret,
18769 new_loc_descr (DW_OP_minus, 0, 0));
18771 else
18773 for (dw_loc_descr_ref loc_cur = loc_naddend; loc_cur != NULL; )
18775 loc_naddend = loc_cur;
18776 loc_cur = loc_cur->dw_loc_next;
18777 ggc_free (loc_naddend);
18779 loc_list_plus_const (list_ret, wi_addend.to_shwi ());
18781 break;
18784 op = DW_OP_plus;
18785 goto do_binop;
18787 case LE_EXPR:
18788 op = DW_OP_le;
18789 goto do_comp_binop;
18791 case GE_EXPR:
18792 op = DW_OP_ge;
18793 goto do_comp_binop;
18795 case LT_EXPR:
18796 op = DW_OP_lt;
18797 goto do_comp_binop;
18799 case GT_EXPR:
18800 op = DW_OP_gt;
18801 goto do_comp_binop;
18803 do_comp_binop:
18804 if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc, 0))))
18806 list_ret = loc_list_from_tree (TREE_OPERAND (loc, 0), 0, context);
18807 list_ret1 = loc_list_from_tree (TREE_OPERAND (loc, 1), 0, context);
18808 list_ret = loc_list_from_uint_comparison (list_ret, list_ret1,
18809 TREE_CODE (loc));
18810 break;
18812 else
18813 goto do_binop;
18815 case EQ_EXPR:
18816 op = DW_OP_eq;
18817 goto do_binop;
18819 case NE_EXPR:
18820 op = DW_OP_ne;
18821 goto do_binop;
18823 do_binop:
18824 list_ret = loc_list_from_tree_1 (TREE_OPERAND (loc, 0), 0, context);
18825 list_ret1 = loc_list_from_tree_1 (TREE_OPERAND (loc, 1), 0, context);
18826 if (list_ret == 0 || list_ret1 == 0)
18827 return 0;
18829 add_loc_list (&list_ret, list_ret1);
18830 if (list_ret == 0)
18831 return 0;
18832 add_loc_descr_to_each (list_ret, new_loc_descr (op, 0, 0));
18833 break;
18835 case TRUTH_NOT_EXPR:
18836 case BIT_NOT_EXPR:
18837 op = DW_OP_not;
18838 goto do_unop;
18840 case ABS_EXPR:
18841 op = DW_OP_abs;
18842 goto do_unop;
18844 case NEGATE_EXPR:
18845 op = DW_OP_neg;
18846 goto do_unop;
18848 do_unop:
18849 list_ret = loc_list_from_tree_1 (TREE_OPERAND (loc, 0), 0, context);
18850 if (list_ret == 0)
18851 return 0;
18853 add_loc_descr_to_each (list_ret, new_loc_descr (op, 0, 0));
18854 break;
18856 case MIN_EXPR:
18857 case MAX_EXPR:
18859 const enum tree_code code =
18860 TREE_CODE (loc) == MIN_EXPR ? GT_EXPR : LT_EXPR;
18862 loc = build3 (COND_EXPR, TREE_TYPE (loc),
18863 build2 (code, integer_type_node,
18864 TREE_OPERAND (loc, 0), TREE_OPERAND (loc, 1)),
18865 TREE_OPERAND (loc, 1), TREE_OPERAND (loc, 0));
18868 /* fall through */
18870 case COND_EXPR:
18872 dw_loc_descr_ref lhs
18873 = loc_descriptor_from_tree (TREE_OPERAND (loc, 1), 0, context);
18874 dw_loc_list_ref rhs
18875 = loc_list_from_tree_1 (TREE_OPERAND (loc, 2), 0, context);
18876 dw_loc_descr_ref bra_node, jump_node, tmp;
18878 list_ret = loc_list_from_tree_1 (TREE_OPERAND (loc, 0), 0, context);
18879 if (list_ret == 0 || lhs == 0 || rhs == 0)
18880 return 0;
18882 bra_node = new_loc_descr (DW_OP_bra, 0, 0);
18883 add_loc_descr_to_each (list_ret, bra_node);
18885 add_loc_list (&list_ret, rhs);
18886 jump_node = new_loc_descr (DW_OP_skip, 0, 0);
18887 add_loc_descr_to_each (list_ret, jump_node);
18889 add_loc_descr_to_each (list_ret, lhs);
18890 bra_node->dw_loc_oprnd1.val_class = dw_val_class_loc;
18891 bra_node->dw_loc_oprnd1.v.val_loc = lhs;
18893 /* ??? Need a node to point the skip at. Use a nop. */
18894 tmp = new_loc_descr (DW_OP_nop, 0, 0);
18895 add_loc_descr_to_each (list_ret, tmp);
18896 jump_node->dw_loc_oprnd1.val_class = dw_val_class_loc;
18897 jump_node->dw_loc_oprnd1.v.val_loc = tmp;
18899 break;
18901 case FIX_TRUNC_EXPR:
18902 return 0;
18904 default:
18905 /* Leave front-end specific codes as simply unknown. This comes
18906 up, for instance, with the C STMT_EXPR. */
18907 if ((unsigned int) TREE_CODE (loc)
18908 >= (unsigned int) LAST_AND_UNUSED_TREE_CODE)
18910 expansion_failed (loc, NULL_RTX,
18911 "language specific tree node");
18912 return 0;
18915 /* Otherwise this is a generic code; we should just lists all of
18916 these explicitly. We forgot one. */
18917 if (flag_checking)
18918 gcc_unreachable ();
18920 /* In a release build, we want to degrade gracefully: better to
18921 generate incomplete debugging information than to crash. */
18922 return NULL;
18925 if (!ret && !list_ret)
18926 return 0;
18928 if (want_address == 2 && !have_address
18929 && (dwarf_version >= 4 || !dwarf_strict))
18931 if (int_size_in_bytes (TREE_TYPE (loc)) > DWARF2_ADDR_SIZE)
18933 expansion_failed (loc, NULL_RTX,
18934 "DWARF address size mismatch");
18935 return 0;
18937 if (ret)
18938 add_loc_descr (&ret, new_loc_descr (DW_OP_stack_value, 0, 0));
18939 else
18940 add_loc_descr_to_each (list_ret,
18941 new_loc_descr (DW_OP_stack_value, 0, 0));
18942 have_address = 1;
18944 /* Show if we can't fill the request for an address. */
18945 if (want_address && !have_address)
18947 expansion_failed (loc, NULL_RTX,
18948 "Want address and only have value");
18949 return 0;
18952 gcc_assert (!ret || !list_ret);
18954 /* If we've got an address and don't want one, dereference. */
18955 if (!want_address && have_address)
18957 HOST_WIDE_INT size = int_size_in_bytes (TREE_TYPE (loc));
18959 if (size > DWARF2_ADDR_SIZE || size == -1)
18961 expansion_failed (loc, NULL_RTX,
18962 "DWARF address size mismatch");
18963 return 0;
18965 else if (size == DWARF2_ADDR_SIZE)
18966 op = DW_OP_deref;
18967 else
18968 op = DW_OP_deref_size;
18970 if (ret)
18971 add_loc_descr (&ret, new_loc_descr (op, size, 0));
18972 else
18973 add_loc_descr_to_each (list_ret, new_loc_descr (op, size, 0));
18975 if (ret)
18976 list_ret = new_loc_list (ret, NULL, 0, NULL, 0, NULL);
18978 return list_ret;
18981 /* Likewise, but strip useless DW_OP_nop operations in the resulting
18982 expressions. */
18984 static dw_loc_list_ref
18985 loc_list_from_tree (tree loc, int want_address,
18986 struct loc_descr_context *context)
18988 dw_loc_list_ref result = loc_list_from_tree_1 (loc, want_address, context);
18990 for (dw_loc_list_ref loc_cur = result;
18991 loc_cur != NULL; loc_cur = loc_cur->dw_loc_next)
18992 loc_descr_without_nops (loc_cur->expr);
18993 return result;
18996 /* Same as above but return only single location expression. */
18997 static dw_loc_descr_ref
18998 loc_descriptor_from_tree (tree loc, int want_address,
18999 struct loc_descr_context *context)
19001 dw_loc_list_ref ret = loc_list_from_tree (loc, want_address, context);
19002 if (!ret)
19003 return NULL;
19004 if (ret->dw_loc_next)
19006 expansion_failed (loc, NULL_RTX,
19007 "Location list where only loc descriptor needed");
19008 return NULL;
19010 return ret->expr;
19013 /* Given a pointer to what is assumed to be a FIELD_DECL node, return a
19014 pointer to the declared type for the relevant field variable, or return
19015 `integer_type_node' if the given node turns out to be an
19016 ERROR_MARK node. */
19018 static inline tree
19019 field_type (const_tree decl)
19021 tree type;
19023 if (TREE_CODE (decl) == ERROR_MARK)
19024 return integer_type_node;
19026 type = DECL_BIT_FIELD_TYPE (decl);
19027 if (type == NULL_TREE)
19028 type = TREE_TYPE (decl);
19030 return type;
19033 /* Given a pointer to a tree node, return the alignment in bits for
19034 it, or else return BITS_PER_WORD if the node actually turns out to
19035 be an ERROR_MARK node. */
19037 static inline unsigned
19038 simple_type_align_in_bits (const_tree type)
19040 return (TREE_CODE (type) != ERROR_MARK) ? TYPE_ALIGN (type) : BITS_PER_WORD;
19043 static inline unsigned
19044 simple_decl_align_in_bits (const_tree decl)
19046 return (TREE_CODE (decl) != ERROR_MARK) ? DECL_ALIGN (decl) : BITS_PER_WORD;
19049 /* Return the result of rounding T up to ALIGN. */
19051 static inline offset_int
19052 round_up_to_align (const offset_int &t, unsigned int align)
19054 return wi::udiv_trunc (t + align - 1, align) * align;
19057 /* Compute the size of TYPE in bytes. If possible, return NULL and store the
19058 size as an integer constant in CST_SIZE. Otherwise, if possible, return a
19059 DWARF expression that computes the size. Return NULL and set CST_SIZE to -1
19060 if we fail to return the size in one of these two forms. */
19062 static dw_loc_descr_ref
19063 type_byte_size (const_tree type, HOST_WIDE_INT *cst_size)
19065 tree tree_size;
19066 struct loc_descr_context ctx;
19068 /* Return a constant integer in priority, if possible. */
19069 *cst_size = int_size_in_bytes (type);
19070 if (*cst_size != -1)
19071 return NULL;
19073 ctx.context_type = const_cast<tree> (type);
19074 ctx.base_decl = NULL_TREE;
19075 ctx.dpi = NULL;
19076 ctx.placeholder_arg = false;
19077 ctx.placeholder_seen = false;
19079 type = TYPE_MAIN_VARIANT (type);
19080 tree_size = TYPE_SIZE_UNIT (type);
19081 return ((tree_size != NULL_TREE)
19082 ? loc_descriptor_from_tree (tree_size, 0, &ctx)
19083 : NULL);
19086 /* Helper structure for RECORD_TYPE processing. */
19087 struct vlr_context
19089 /* Root RECORD_TYPE. It is needed to generate data member location
19090 descriptions in variable-length records (VLR), but also to cope with
19091 variants, which are composed of nested structures multiplexed with
19092 QUAL_UNION_TYPE nodes. Each time such a structure is passed to a
19093 function processing a FIELD_DECL, it is required to be non null. */
19094 tree struct_type;
19095 /* When generating a variant part in a RECORD_TYPE (i.e. a nested
19096 QUAL_UNION_TYPE), this holds an expression that computes the offset for
19097 this variant part as part of the root record (in storage units). For
19098 regular records, it must be NULL_TREE. */
19099 tree variant_part_offset;
19102 /* Given a pointer to a FIELD_DECL, compute the byte offset of the lowest
19103 addressed byte of the "containing object" for the given FIELD_DECL. If
19104 possible, return a native constant through CST_OFFSET (in which case NULL is
19105 returned); otherwise return a DWARF expression that computes the offset.
19107 Set *CST_OFFSET to 0 and return NULL if we are unable to determine what
19108 that offset is, either because the argument turns out to be a pointer to an
19109 ERROR_MARK node, or because the offset expression is too complex for us.
19111 CTX is required: see the comment for VLR_CONTEXT. */
19113 static dw_loc_descr_ref
19114 field_byte_offset (const_tree decl, struct vlr_context *ctx,
19115 HOST_WIDE_INT *cst_offset)
19117 tree tree_result;
19118 dw_loc_list_ref loc_result;
19120 *cst_offset = 0;
19122 if (TREE_CODE (decl) == ERROR_MARK)
19123 return NULL;
19124 else
19125 gcc_assert (TREE_CODE (decl) == FIELD_DECL);
19127 /* We cannot handle variable bit offsets at the moment, so abort if it's the
19128 case. */
19129 if (TREE_CODE (DECL_FIELD_BIT_OFFSET (decl)) != INTEGER_CST)
19130 return NULL;
19132 /* We used to handle only constant offsets in all cases. Now, we handle
19133 properly dynamic byte offsets only when PCC bitfield type doesn't
19134 matter. */
19135 if (PCC_BITFIELD_TYPE_MATTERS
19136 && TREE_CODE (DECL_FIELD_OFFSET (decl)) == INTEGER_CST)
19138 offset_int object_offset_in_bits;
19139 offset_int object_offset_in_bytes;
19140 offset_int bitpos_int;
19141 tree type;
19142 tree field_size_tree;
19143 offset_int deepest_bitpos;
19144 offset_int field_size_in_bits;
19145 unsigned int type_align_in_bits;
19146 unsigned int decl_align_in_bits;
19147 offset_int type_size_in_bits;
19149 bitpos_int = wi::to_offset (bit_position (decl));
19150 type = field_type (decl);
19151 type_size_in_bits = offset_int_type_size_in_bits (type);
19152 type_align_in_bits = simple_type_align_in_bits (type);
19154 field_size_tree = DECL_SIZE (decl);
19156 /* The size could be unspecified if there was an error, or for
19157 a flexible array member. */
19158 if (!field_size_tree)
19159 field_size_tree = bitsize_zero_node;
19161 /* If the size of the field is not constant, use the type size. */
19162 if (TREE_CODE (field_size_tree) == INTEGER_CST)
19163 field_size_in_bits = wi::to_offset (field_size_tree);
19164 else
19165 field_size_in_bits = type_size_in_bits;
19167 decl_align_in_bits = simple_decl_align_in_bits (decl);
19169 /* The GCC front-end doesn't make any attempt to keep track of the
19170 starting bit offset (relative to the start of the containing
19171 structure type) of the hypothetical "containing object" for a
19172 bit-field. Thus, when computing the byte offset value for the
19173 start of the "containing object" of a bit-field, we must deduce
19174 this information on our own. This can be rather tricky to do in
19175 some cases. For example, handling the following structure type
19176 definition when compiling for an i386/i486 target (which only
19177 aligns long long's to 32-bit boundaries) can be very tricky:
19179 struct S { int field1; long long field2:31; };
19181 Fortunately, there is a simple rule-of-thumb which can be used
19182 in such cases. When compiling for an i386/i486, GCC will
19183 allocate 8 bytes for the structure shown above. It decides to
19184 do this based upon one simple rule for bit-field allocation.
19185 GCC allocates each "containing object" for each bit-field at
19186 the first (i.e. lowest addressed) legitimate alignment boundary
19187 (based upon the required minimum alignment for the declared
19188 type of the field) which it can possibly use, subject to the
19189 condition that there is still enough available space remaining
19190 in the containing object (when allocated at the selected point)
19191 to fully accommodate all of the bits of the bit-field itself.
19193 This simple rule makes it obvious why GCC allocates 8 bytes for
19194 each object of the structure type shown above. When looking
19195 for a place to allocate the "containing object" for `field2',
19196 the compiler simply tries to allocate a 64-bit "containing
19197 object" at each successive 32-bit boundary (starting at zero)
19198 until it finds a place to allocate that 64- bit field such that
19199 at least 31 contiguous (and previously unallocated) bits remain
19200 within that selected 64 bit field. (As it turns out, for the
19201 example above, the compiler finds it is OK to allocate the
19202 "containing object" 64-bit field at bit-offset zero within the
19203 structure type.)
19205 Here we attempt to work backwards from the limited set of facts
19206 we're given, and we try to deduce from those facts, where GCC
19207 must have believed that the containing object started (within
19208 the structure type). The value we deduce is then used (by the
19209 callers of this routine) to generate DW_AT_location and
19210 DW_AT_bit_offset attributes for fields (both bit-fields and, in
19211 the case of DW_AT_location, regular fields as well). */
19213 /* Figure out the bit-distance from the start of the structure to
19214 the "deepest" bit of the bit-field. */
19215 deepest_bitpos = bitpos_int + field_size_in_bits;
19217 /* This is the tricky part. Use some fancy footwork to deduce
19218 where the lowest addressed bit of the containing object must
19219 be. */
19220 object_offset_in_bits = deepest_bitpos - type_size_in_bits;
19222 /* Round up to type_align by default. This works best for
19223 bitfields. */
19224 object_offset_in_bits
19225 = round_up_to_align (object_offset_in_bits, type_align_in_bits);
19227 if (wi::gtu_p (object_offset_in_bits, bitpos_int))
19229 object_offset_in_bits = deepest_bitpos - type_size_in_bits;
19231 /* Round up to decl_align instead. */
19232 object_offset_in_bits
19233 = round_up_to_align (object_offset_in_bits, decl_align_in_bits);
19236 object_offset_in_bytes
19237 = wi::lrshift (object_offset_in_bits, LOG2_BITS_PER_UNIT);
19238 if (ctx->variant_part_offset == NULL_TREE)
19240 *cst_offset = object_offset_in_bytes.to_shwi ();
19241 return NULL;
19243 tree_result = wide_int_to_tree (sizetype, object_offset_in_bytes);
19245 else
19246 tree_result = byte_position (decl);
19248 if (ctx->variant_part_offset != NULL_TREE)
19249 tree_result = fold_build2 (PLUS_EXPR, TREE_TYPE (tree_result),
19250 ctx->variant_part_offset, tree_result);
19252 /* If the byte offset is a constant, it's simplier to handle a native
19253 constant rather than a DWARF expression. */
19254 if (TREE_CODE (tree_result) == INTEGER_CST)
19256 *cst_offset = wi::to_offset (tree_result).to_shwi ();
19257 return NULL;
19259 struct loc_descr_context loc_ctx = {
19260 ctx->struct_type, /* context_type */
19261 NULL_TREE, /* base_decl */
19262 NULL, /* dpi */
19263 false, /* placeholder_arg */
19264 false /* placeholder_seen */
19266 loc_result = loc_list_from_tree (tree_result, 0, &loc_ctx);
19268 /* We want a DWARF expression: abort if we only have a location list with
19269 multiple elements. */
19270 if (!loc_result || !single_element_loc_list_p (loc_result))
19271 return NULL;
19272 else
19273 return loc_result->expr;
19276 /* The following routines define various Dwarf attributes and any data
19277 associated with them. */
19279 /* Add a location description attribute value to a DIE.
19281 This emits location attributes suitable for whole variables and
19282 whole parameters. Note that the location attributes for struct fields are
19283 generated by the routine `data_member_location_attribute' below. */
19285 static inline void
19286 add_AT_location_description (dw_die_ref die, enum dwarf_attribute attr_kind,
19287 dw_loc_list_ref descr)
19289 bool check_no_locviews = true;
19290 if (descr == 0)
19291 return;
19292 if (single_element_loc_list_p (descr))
19293 add_AT_loc (die, attr_kind, descr->expr);
19294 else
19296 add_AT_loc_list (die, attr_kind, descr);
19297 gcc_assert (descr->ll_symbol);
19298 if (attr_kind == DW_AT_location && descr->vl_symbol
19299 && dwarf2out_locviews_in_attribute ())
19301 add_AT_view_list (die, DW_AT_GNU_locviews);
19302 check_no_locviews = false;
19306 if (check_no_locviews)
19307 gcc_assert (!get_AT (die, DW_AT_GNU_locviews));
19310 /* Add DW_AT_accessibility attribute to DIE if needed. */
19312 static void
19313 add_accessibility_attribute (dw_die_ref die, tree decl)
19315 /* In DWARF3+ the default is DW_ACCESS_private only in DW_TAG_class_type
19316 children, otherwise the default is DW_ACCESS_public. In DWARF2
19317 the default has always been DW_ACCESS_public. */
19318 if (TREE_PROTECTED (decl))
19319 add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_protected);
19320 else if (TREE_PRIVATE (decl))
19322 if (dwarf_version == 2
19323 || die->die_parent == NULL
19324 || die->die_parent->die_tag != DW_TAG_class_type)
19325 add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_private);
19327 else if (dwarf_version > 2
19328 && die->die_parent
19329 && die->die_parent->die_tag == DW_TAG_class_type)
19330 add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_public);
19333 /* Attach the specialized form of location attribute used for data members of
19334 struct and union types. In the special case of a FIELD_DECL node which
19335 represents a bit-field, the "offset" part of this special location
19336 descriptor must indicate the distance in bytes from the lowest-addressed
19337 byte of the containing struct or union type to the lowest-addressed byte of
19338 the "containing object" for the bit-field. (See the `field_byte_offset'
19339 function above).
19341 For any given bit-field, the "containing object" is a hypothetical object
19342 (of some integral or enum type) within which the given bit-field lives. The
19343 type of this hypothetical "containing object" is always the same as the
19344 declared type of the individual bit-field itself (for GCC anyway... the
19345 DWARF spec doesn't actually mandate this). Note that it is the size (in
19346 bytes) of the hypothetical "containing object" which will be given in the
19347 DW_AT_byte_size attribute for this bit-field. (See the
19348 `byte_size_attribute' function below.) It is also used when calculating the
19349 value of the DW_AT_bit_offset attribute. (See the `bit_offset_attribute'
19350 function below.)
19352 CTX is required: see the comment for VLR_CONTEXT. */
19354 static void
19355 add_data_member_location_attribute (dw_die_ref die,
19356 tree decl,
19357 struct vlr_context *ctx)
19359 HOST_WIDE_INT offset;
19360 dw_loc_descr_ref loc_descr = 0;
19362 if (TREE_CODE (decl) == TREE_BINFO)
19364 /* We're working on the TAG_inheritance for a base class. */
19365 if (BINFO_VIRTUAL_P (decl) && is_cxx ())
19367 /* For C++ virtual bases we can't just use BINFO_OFFSET, as they
19368 aren't at a fixed offset from all (sub)objects of the same
19369 type. We need to extract the appropriate offset from our
19370 vtable. The following dwarf expression means
19372 BaseAddr = ObAddr + *((*ObAddr) - Offset)
19374 This is specific to the V3 ABI, of course. */
19376 dw_loc_descr_ref tmp;
19378 /* Make a copy of the object address. */
19379 tmp = new_loc_descr (DW_OP_dup, 0, 0);
19380 add_loc_descr (&loc_descr, tmp);
19382 /* Extract the vtable address. */
19383 tmp = new_loc_descr (DW_OP_deref, 0, 0);
19384 add_loc_descr (&loc_descr, tmp);
19386 /* Calculate the address of the offset. */
19387 offset = tree_to_shwi (BINFO_VPTR_FIELD (decl));
19388 gcc_assert (offset < 0);
19390 tmp = int_loc_descriptor (-offset);
19391 add_loc_descr (&loc_descr, tmp);
19392 tmp = new_loc_descr (DW_OP_minus, 0, 0);
19393 add_loc_descr (&loc_descr, tmp);
19395 /* Extract the offset. */
19396 tmp = new_loc_descr (DW_OP_deref, 0, 0);
19397 add_loc_descr (&loc_descr, tmp);
19399 /* Add it to the object address. */
19400 tmp = new_loc_descr (DW_OP_plus, 0, 0);
19401 add_loc_descr (&loc_descr, tmp);
19403 else
19404 offset = tree_to_shwi (BINFO_OFFSET (decl));
19406 else
19408 loc_descr = field_byte_offset (decl, ctx, &offset);
19410 /* If loc_descr is available then we know the field offset is dynamic.
19411 However, GDB does not handle dynamic field offsets very well at the
19412 moment. */
19413 if (loc_descr != NULL && gnat_encodings != DWARF_GNAT_ENCODINGS_MINIMAL)
19415 loc_descr = NULL;
19416 offset = 0;
19419 /* Data member location evalutation starts with the base address on the
19420 stack. Compute the field offset and add it to this base address. */
19421 else if (loc_descr != NULL)
19422 add_loc_descr (&loc_descr, new_loc_descr (DW_OP_plus, 0, 0));
19425 if (! loc_descr)
19427 /* While DW_AT_data_bit_offset has been added already in DWARF4,
19428 e.g. GDB only added support to it in November 2016. For DWARF5
19429 we need newer debug info consumers anyway. We might change this
19430 to dwarf_version >= 4 once most consumers catched up. */
19431 if (dwarf_version >= 5
19432 && TREE_CODE (decl) == FIELD_DECL
19433 && DECL_BIT_FIELD_TYPE (decl))
19435 tree off = bit_position (decl);
19436 if (tree_fits_uhwi_p (off) && get_AT (die, DW_AT_bit_size))
19438 remove_AT (die, DW_AT_byte_size);
19439 remove_AT (die, DW_AT_bit_offset);
19440 add_AT_unsigned (die, DW_AT_data_bit_offset, tree_to_uhwi (off));
19441 return;
19444 if (dwarf_version > 2)
19446 /* Don't need to output a location expression, just the constant. */
19447 if (offset < 0)
19448 add_AT_int (die, DW_AT_data_member_location, offset);
19449 else
19450 add_AT_unsigned (die, DW_AT_data_member_location, offset);
19451 return;
19453 else
19455 enum dwarf_location_atom op;
19457 /* The DWARF2 standard says that we should assume that the structure
19458 address is already on the stack, so we can specify a structure
19459 field address by using DW_OP_plus_uconst. */
19460 op = DW_OP_plus_uconst;
19461 loc_descr = new_loc_descr (op, offset, 0);
19465 add_AT_loc (die, DW_AT_data_member_location, loc_descr);
19468 /* Writes integer values to dw_vec_const array. */
19470 static void
19471 insert_int (HOST_WIDE_INT val, unsigned int size, unsigned char *dest)
19473 while (size != 0)
19475 *dest++ = val & 0xff;
19476 val >>= 8;
19477 --size;
19481 /* Reads integers from dw_vec_const array. Inverse of insert_int. */
19483 static HOST_WIDE_INT
19484 extract_int (const unsigned char *src, unsigned int size)
19486 HOST_WIDE_INT val = 0;
19488 src += size;
19489 while (size != 0)
19491 val <<= 8;
19492 val |= *--src & 0xff;
19493 --size;
19495 return val;
19498 /* Writes wide_int values to dw_vec_const array. */
19500 static void
19501 insert_wide_int (const wide_int &val, unsigned char *dest, int elt_size)
19503 int i;
19505 if (elt_size <= HOST_BITS_PER_WIDE_INT/BITS_PER_UNIT)
19507 insert_int ((HOST_WIDE_INT) val.elt (0), elt_size, dest);
19508 return;
19511 /* We'd have to extend this code to support odd sizes. */
19512 gcc_assert (elt_size % (HOST_BITS_PER_WIDE_INT / BITS_PER_UNIT) == 0);
19514 int n = elt_size / (HOST_BITS_PER_WIDE_INT / BITS_PER_UNIT);
19516 if (WORDS_BIG_ENDIAN)
19517 for (i = n - 1; i >= 0; i--)
19519 insert_int ((HOST_WIDE_INT) val.elt (i), sizeof (HOST_WIDE_INT), dest);
19520 dest += sizeof (HOST_WIDE_INT);
19522 else
19523 for (i = 0; i < n; i++)
19525 insert_int ((HOST_WIDE_INT) val.elt (i), sizeof (HOST_WIDE_INT), dest);
19526 dest += sizeof (HOST_WIDE_INT);
19530 /* Writes floating point values to dw_vec_const array. */
19532 static void
19533 insert_float (const_rtx rtl, unsigned char *array)
19535 long val[4];
19536 int i;
19537 scalar_float_mode mode = as_a <scalar_float_mode> (GET_MODE (rtl));
19539 real_to_target (val, CONST_DOUBLE_REAL_VALUE (rtl), mode);
19541 /* real_to_target puts 32-bit pieces in each long. Pack them. */
19542 for (i = 0; i < GET_MODE_SIZE (mode) / 4; i++)
19544 insert_int (val[i], 4, array);
19545 array += 4;
19549 /* Attach a DW_AT_const_value attribute for a variable or a parameter which
19550 does not have a "location" either in memory or in a register. These
19551 things can arise in GNU C when a constant is passed as an actual parameter
19552 to an inlined function. They can also arise in C++ where declared
19553 constants do not necessarily get memory "homes". */
19555 static bool
19556 add_const_value_attribute (dw_die_ref die, rtx rtl)
19558 switch (GET_CODE (rtl))
19560 case CONST_INT:
19562 HOST_WIDE_INT val = INTVAL (rtl);
19564 if (val < 0)
19565 add_AT_int (die, DW_AT_const_value, val);
19566 else
19567 add_AT_unsigned (die, DW_AT_const_value, (unsigned HOST_WIDE_INT) val);
19569 return true;
19571 case CONST_WIDE_INT:
19573 wide_int w1 = rtx_mode_t (rtl, MAX_MODE_INT);
19574 unsigned int prec = MIN (wi::min_precision (w1, UNSIGNED),
19575 (unsigned int)CONST_WIDE_INT_NUNITS (rtl) * HOST_BITS_PER_WIDE_INT);
19576 wide_int w = wi::zext (w1, prec);
19577 add_AT_wide (die, DW_AT_const_value, w);
19579 return true;
19581 case CONST_DOUBLE:
19582 /* Note that a CONST_DOUBLE rtx could represent either an integer or a
19583 floating-point constant. A CONST_DOUBLE is used whenever the
19584 constant requires more than one word in order to be adequately
19585 represented. */
19586 if (TARGET_SUPPORTS_WIDE_INT == 0
19587 && !SCALAR_FLOAT_MODE_P (GET_MODE (rtl)))
19588 add_AT_double (die, DW_AT_const_value,
19589 CONST_DOUBLE_HIGH (rtl), CONST_DOUBLE_LOW (rtl));
19590 else
19592 scalar_float_mode mode = as_a <scalar_float_mode> (GET_MODE (rtl));
19593 unsigned int length = GET_MODE_SIZE (mode);
19594 unsigned char *array = ggc_vec_alloc<unsigned char> (length);
19596 insert_float (rtl, array);
19597 add_AT_vec (die, DW_AT_const_value, length / 4, 4, array);
19599 return true;
19601 case CONST_VECTOR:
19603 unsigned int length;
19604 if (!CONST_VECTOR_NUNITS (rtl).is_constant (&length))
19605 return false;
19607 machine_mode mode = GET_MODE (rtl);
19608 unsigned int elt_size = GET_MODE_UNIT_SIZE (mode);
19609 unsigned char *array
19610 = ggc_vec_alloc<unsigned char> (length * elt_size);
19611 unsigned int i;
19612 unsigned char *p;
19613 machine_mode imode = GET_MODE_INNER (mode);
19615 switch (GET_MODE_CLASS (mode))
19617 case MODE_VECTOR_INT:
19618 for (i = 0, p = array; i < length; i++, p += elt_size)
19620 rtx elt = CONST_VECTOR_ELT (rtl, i);
19621 insert_wide_int (rtx_mode_t (elt, imode), p, elt_size);
19623 break;
19625 case MODE_VECTOR_FLOAT:
19626 for (i = 0, p = array; i < length; i++, p += elt_size)
19628 rtx elt = CONST_VECTOR_ELT (rtl, i);
19629 insert_float (elt, p);
19631 break;
19633 default:
19634 gcc_unreachable ();
19637 add_AT_vec (die, DW_AT_const_value, length, elt_size, array);
19639 return true;
19641 case CONST_STRING:
19642 if (dwarf_version >= 4 || !dwarf_strict)
19644 dw_loc_descr_ref loc_result;
19645 resolve_one_addr (&rtl);
19646 rtl_addr:
19647 loc_result = new_addr_loc_descr (rtl, dtprel_false);
19648 add_loc_descr (&loc_result, new_loc_descr (DW_OP_stack_value, 0, 0));
19649 add_AT_loc (die, DW_AT_location, loc_result);
19650 vec_safe_push (used_rtx_array, rtl);
19651 return true;
19653 return false;
19655 case CONST:
19656 if (CONSTANT_P (XEXP (rtl, 0)))
19657 return add_const_value_attribute (die, XEXP (rtl, 0));
19658 /* FALLTHROUGH */
19659 case SYMBOL_REF:
19660 if (!const_ok_for_output (rtl))
19661 return false;
19662 /* FALLTHROUGH */
19663 case LABEL_REF:
19664 if (dwarf_version >= 4 || !dwarf_strict)
19665 goto rtl_addr;
19666 return false;
19668 case PLUS:
19669 /* In cases where an inlined instance of an inline function is passed
19670 the address of an `auto' variable (which is local to the caller) we
19671 can get a situation where the DECL_RTL of the artificial local
19672 variable (for the inlining) which acts as a stand-in for the
19673 corresponding formal parameter (of the inline function) will look
19674 like (plus:SI (reg:SI FRAME_PTR) (const_int ...)). This is not
19675 exactly a compile-time constant expression, but it isn't the address
19676 of the (artificial) local variable either. Rather, it represents the
19677 *value* which the artificial local variable always has during its
19678 lifetime. We currently have no way to represent such quasi-constant
19679 values in Dwarf, so for now we just punt and generate nothing. */
19680 return false;
19682 case HIGH:
19683 case CONST_FIXED:
19684 case MINUS:
19685 case SIGN_EXTEND:
19686 case ZERO_EXTEND:
19687 return false;
19689 case MEM:
19690 if (GET_CODE (XEXP (rtl, 0)) == CONST_STRING
19691 && MEM_READONLY_P (rtl)
19692 && GET_MODE (rtl) == BLKmode)
19694 add_AT_string (die, DW_AT_const_value, XSTR (XEXP (rtl, 0), 0));
19695 return true;
19697 return false;
19699 default:
19700 /* No other kinds of rtx should be possible here. */
19701 gcc_unreachable ();
19703 return false;
19706 /* Determine whether the evaluation of EXPR references any variables
19707 or functions which aren't otherwise used (and therefore may not be
19708 output). */
19709 static tree
19710 reference_to_unused (tree * tp, int * walk_subtrees,
19711 void * data ATTRIBUTE_UNUSED)
19713 if (! EXPR_P (*tp) && ! CONSTANT_CLASS_P (*tp))
19714 *walk_subtrees = 0;
19716 if (DECL_P (*tp) && ! TREE_PUBLIC (*tp) && ! TREE_USED (*tp)
19717 && ! TREE_ASM_WRITTEN (*tp))
19718 return *tp;
19719 /* ??? The C++ FE emits debug information for using decls, so
19720 putting gcc_unreachable here falls over. See PR31899. For now
19721 be conservative. */
19722 else if (!symtab->global_info_ready && VAR_OR_FUNCTION_DECL_P (*tp))
19723 return *tp;
19724 else if (VAR_P (*tp))
19726 varpool_node *node = varpool_node::get (*tp);
19727 if (!node || !node->definition)
19728 return *tp;
19730 else if (TREE_CODE (*tp) == FUNCTION_DECL
19731 && (!DECL_EXTERNAL (*tp) || DECL_DECLARED_INLINE_P (*tp)))
19733 /* The call graph machinery must have finished analyzing,
19734 optimizing and gimplifying the CU by now.
19735 So if *TP has no call graph node associated
19736 to it, it means *TP will not be emitted. */
19737 if (!cgraph_node::get (*tp))
19738 return *tp;
19740 else if (TREE_CODE (*tp) == STRING_CST && !TREE_ASM_WRITTEN (*tp))
19741 return *tp;
19743 return NULL_TREE;
19746 /* Generate an RTL constant from a decl initializer INIT with decl type TYPE,
19747 for use in a later add_const_value_attribute call. */
19749 static rtx
19750 rtl_for_decl_init (tree init, tree type)
19752 rtx rtl = NULL_RTX;
19754 STRIP_NOPS (init);
19756 /* If a variable is initialized with a string constant without embedded
19757 zeros, build CONST_STRING. */
19758 if (TREE_CODE (init) == STRING_CST && TREE_CODE (type) == ARRAY_TYPE)
19760 tree enttype = TREE_TYPE (type);
19761 tree domain = TYPE_DOMAIN (type);
19762 scalar_int_mode mode;
19764 if (is_int_mode (TYPE_MODE (enttype), &mode)
19765 && GET_MODE_SIZE (mode) == 1
19766 && domain
19767 && TYPE_MAX_VALUE (domain)
19768 && TREE_CODE (TYPE_MAX_VALUE (domain)) == INTEGER_CST
19769 && integer_zerop (TYPE_MIN_VALUE (domain))
19770 && compare_tree_int (TYPE_MAX_VALUE (domain),
19771 TREE_STRING_LENGTH (init) - 1) == 0
19772 && ((size_t) TREE_STRING_LENGTH (init)
19773 == strlen (TREE_STRING_POINTER (init)) + 1))
19775 rtl = gen_rtx_CONST_STRING (VOIDmode,
19776 ggc_strdup (TREE_STRING_POINTER (init)));
19777 rtl = gen_rtx_MEM (BLKmode, rtl);
19778 MEM_READONLY_P (rtl) = 1;
19781 /* Other aggregates, and complex values, could be represented using
19782 CONCAT: FIXME! */
19783 else if (AGGREGATE_TYPE_P (type)
19784 || (TREE_CODE (init) == VIEW_CONVERT_EXPR
19785 && AGGREGATE_TYPE_P (TREE_TYPE (TREE_OPERAND (init, 0))))
19786 || TREE_CODE (type) == COMPLEX_TYPE)
19788 /* Vectors only work if their mode is supported by the target.
19789 FIXME: generic vectors ought to work too. */
19790 else if (TREE_CODE (type) == VECTOR_TYPE
19791 && !VECTOR_MODE_P (TYPE_MODE (type)))
19793 /* If the initializer is something that we know will expand into an
19794 immediate RTL constant, expand it now. We must be careful not to
19795 reference variables which won't be output. */
19796 else if (initializer_constant_valid_p (init, type)
19797 && ! walk_tree (&init, reference_to_unused, NULL, NULL))
19799 /* Convert vector CONSTRUCTOR initializers to VECTOR_CST if
19800 possible. */
19801 if (TREE_CODE (type) == VECTOR_TYPE)
19802 switch (TREE_CODE (init))
19804 case VECTOR_CST:
19805 break;
19806 case CONSTRUCTOR:
19807 if (TREE_CONSTANT (init))
19809 vec<constructor_elt, va_gc> *elts = CONSTRUCTOR_ELTS (init);
19810 bool constant_p = true;
19811 tree value;
19812 unsigned HOST_WIDE_INT ix;
19814 /* Even when ctor is constant, it might contain non-*_CST
19815 elements (e.g. { 1.0/0.0 - 1.0/0.0, 0.0 }) and those don't
19816 belong into VECTOR_CST nodes. */
19817 FOR_EACH_CONSTRUCTOR_VALUE (elts, ix, value)
19818 if (!CONSTANT_CLASS_P (value))
19820 constant_p = false;
19821 break;
19824 if (constant_p)
19826 init = build_vector_from_ctor (type, elts);
19827 break;
19830 /* FALLTHRU */
19832 default:
19833 return NULL;
19836 rtl = expand_expr (init, NULL_RTX, VOIDmode, EXPAND_INITIALIZER);
19838 /* If expand_expr returns a MEM, it wasn't immediate. */
19839 gcc_assert (!rtl || !MEM_P (rtl));
19842 return rtl;
19845 /* Generate RTL for the variable DECL to represent its location. */
19847 static rtx
19848 rtl_for_decl_location (tree decl)
19850 rtx rtl;
19852 /* Here we have to decide where we are going to say the parameter "lives"
19853 (as far as the debugger is concerned). We only have a couple of
19854 choices. GCC provides us with DECL_RTL and with DECL_INCOMING_RTL.
19856 DECL_RTL normally indicates where the parameter lives during most of the
19857 activation of the function. If optimization is enabled however, this
19858 could be either NULL or else a pseudo-reg. Both of those cases indicate
19859 that the parameter doesn't really live anywhere (as far as the code
19860 generation parts of GCC are concerned) during most of the function's
19861 activation. That will happen (for example) if the parameter is never
19862 referenced within the function.
19864 We could just generate a location descriptor here for all non-NULL
19865 non-pseudo values of DECL_RTL and ignore all of the rest, but we can be
19866 a little nicer than that if we also consider DECL_INCOMING_RTL in cases
19867 where DECL_RTL is NULL or is a pseudo-reg.
19869 Note however that we can only get away with using DECL_INCOMING_RTL as
19870 a backup substitute for DECL_RTL in certain limited cases. In cases
19871 where DECL_ARG_TYPE (decl) indicates the same type as TREE_TYPE (decl),
19872 we can be sure that the parameter was passed using the same type as it is
19873 declared to have within the function, and that its DECL_INCOMING_RTL
19874 points us to a place where a value of that type is passed.
19876 In cases where DECL_ARG_TYPE (decl) and TREE_TYPE (decl) are different,
19877 we cannot (in general) use DECL_INCOMING_RTL as a substitute for DECL_RTL
19878 because in these cases DECL_INCOMING_RTL points us to a value of some
19879 type which is *different* from the type of the parameter itself. Thus,
19880 if we tried to use DECL_INCOMING_RTL to generate a location attribute in
19881 such cases, the debugger would end up (for example) trying to fetch a
19882 `float' from a place which actually contains the first part of a
19883 `double'. That would lead to really incorrect and confusing
19884 output at debug-time.
19886 So, in general, we *do not* use DECL_INCOMING_RTL as a backup for DECL_RTL
19887 in cases where DECL_ARG_TYPE (decl) != TREE_TYPE (decl). There
19888 are a couple of exceptions however. On little-endian machines we can
19889 get away with using DECL_INCOMING_RTL even when DECL_ARG_TYPE (decl) is
19890 not the same as TREE_TYPE (decl), but only when DECL_ARG_TYPE (decl) is
19891 an integral type that is smaller than TREE_TYPE (decl). These cases arise
19892 when (on a little-endian machine) a non-prototyped function has a
19893 parameter declared to be of type `short' or `char'. In such cases,
19894 TREE_TYPE (decl) will be `short' or `char', DECL_ARG_TYPE (decl) will
19895 be `int', and DECL_INCOMING_RTL will point to the lowest-order byte of the
19896 passed `int' value. If the debugger then uses that address to fetch
19897 a `short' or a `char' (on a little-endian machine) the result will be
19898 the correct data, so we allow for such exceptional cases below.
19900 Note that our goal here is to describe the place where the given formal
19901 parameter lives during most of the function's activation (i.e. between the
19902 end of the prologue and the start of the epilogue). We'll do that as best
19903 as we can. Note however that if the given formal parameter is modified
19904 sometime during the execution of the function, then a stack backtrace (at
19905 debug-time) will show the function as having been called with the *new*
19906 value rather than the value which was originally passed in. This happens
19907 rarely enough that it is not a major problem, but it *is* a problem, and
19908 I'd like to fix it.
19910 A future version of dwarf2out.c may generate two additional attributes for
19911 any given DW_TAG_formal_parameter DIE which will describe the "passed
19912 type" and the "passed location" for the given formal parameter in addition
19913 to the attributes we now generate to indicate the "declared type" and the
19914 "active location" for each parameter. This additional set of attributes
19915 could be used by debuggers for stack backtraces. Separately, note that
19916 sometimes DECL_RTL can be NULL and DECL_INCOMING_RTL can be NULL also.
19917 This happens (for example) for inlined-instances of inline function formal
19918 parameters which are never referenced. This really shouldn't be
19919 happening. All PARM_DECL nodes should get valid non-NULL
19920 DECL_INCOMING_RTL values. FIXME. */
19922 /* Use DECL_RTL as the "location" unless we find something better. */
19923 rtl = DECL_RTL_IF_SET (decl);
19925 /* When generating abstract instances, ignore everything except
19926 constants, symbols living in memory, and symbols living in
19927 fixed registers. */
19928 if (! reload_completed)
19930 if (rtl
19931 && (CONSTANT_P (rtl)
19932 || (MEM_P (rtl)
19933 && CONSTANT_P (XEXP (rtl, 0)))
19934 || (REG_P (rtl)
19935 && VAR_P (decl)
19936 && TREE_STATIC (decl))))
19938 rtl = targetm.delegitimize_address (rtl);
19939 return rtl;
19941 rtl = NULL_RTX;
19943 else if (TREE_CODE (decl) == PARM_DECL)
19945 if (rtl == NULL_RTX
19946 || is_pseudo_reg (rtl)
19947 || (MEM_P (rtl)
19948 && is_pseudo_reg (XEXP (rtl, 0))
19949 && DECL_INCOMING_RTL (decl)
19950 && MEM_P (DECL_INCOMING_RTL (decl))
19951 && GET_MODE (rtl) == GET_MODE (DECL_INCOMING_RTL (decl))))
19953 tree declared_type = TREE_TYPE (decl);
19954 tree passed_type = DECL_ARG_TYPE (decl);
19955 machine_mode dmode = TYPE_MODE (declared_type);
19956 machine_mode pmode = TYPE_MODE (passed_type);
19958 /* This decl represents a formal parameter which was optimized out.
19959 Note that DECL_INCOMING_RTL may be NULL in here, but we handle
19960 all cases where (rtl == NULL_RTX) just below. */
19961 if (dmode == pmode)
19962 rtl = DECL_INCOMING_RTL (decl);
19963 else if ((rtl == NULL_RTX || is_pseudo_reg (rtl))
19964 && SCALAR_INT_MODE_P (dmode)
19965 && known_le (GET_MODE_SIZE (dmode), GET_MODE_SIZE (pmode))
19966 && DECL_INCOMING_RTL (decl))
19968 rtx inc = DECL_INCOMING_RTL (decl);
19969 if (REG_P (inc))
19970 rtl = inc;
19971 else if (MEM_P (inc))
19973 if (BYTES_BIG_ENDIAN)
19974 rtl = adjust_address_nv (inc, dmode,
19975 GET_MODE_SIZE (pmode)
19976 - GET_MODE_SIZE (dmode));
19977 else
19978 rtl = inc;
19983 /* If the parm was passed in registers, but lives on the stack, then
19984 make a big endian correction if the mode of the type of the
19985 parameter is not the same as the mode of the rtl. */
19986 /* ??? This is the same series of checks that are made in dbxout.c before
19987 we reach the big endian correction code there. It isn't clear if all
19988 of these checks are necessary here, but keeping them all is the safe
19989 thing to do. */
19990 else if (MEM_P (rtl)
19991 && XEXP (rtl, 0) != const0_rtx
19992 && ! CONSTANT_P (XEXP (rtl, 0))
19993 /* Not passed in memory. */
19994 && !MEM_P (DECL_INCOMING_RTL (decl))
19995 /* Not passed by invisible reference. */
19996 && (!REG_P (XEXP (rtl, 0))
19997 || REGNO (XEXP (rtl, 0)) == HARD_FRAME_POINTER_REGNUM
19998 || REGNO (XEXP (rtl, 0)) == STACK_POINTER_REGNUM
19999 #if !HARD_FRAME_POINTER_IS_ARG_POINTER
20000 || REGNO (XEXP (rtl, 0)) == ARG_POINTER_REGNUM
20001 #endif
20003 /* Big endian correction check. */
20004 && BYTES_BIG_ENDIAN
20005 && TYPE_MODE (TREE_TYPE (decl)) != GET_MODE (rtl)
20006 && known_lt (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl))),
20007 UNITS_PER_WORD))
20009 machine_mode addr_mode = get_address_mode (rtl);
20010 poly_int64 offset = (UNITS_PER_WORD
20011 - GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl))));
20013 rtl = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (decl)),
20014 plus_constant (addr_mode, XEXP (rtl, 0), offset));
20017 else if (VAR_P (decl)
20018 && rtl
20019 && MEM_P (rtl)
20020 && GET_MODE (rtl) != TYPE_MODE (TREE_TYPE (decl)))
20022 machine_mode addr_mode = get_address_mode (rtl);
20023 poly_int64 offset = byte_lowpart_offset (TYPE_MODE (TREE_TYPE (decl)),
20024 GET_MODE (rtl));
20026 /* If a variable is declared "register" yet is smaller than
20027 a register, then if we store the variable to memory, it
20028 looks like we're storing a register-sized value, when in
20029 fact we are not. We need to adjust the offset of the
20030 storage location to reflect the actual value's bytes,
20031 else gdb will not be able to display it. */
20032 if (maybe_ne (offset, 0))
20033 rtl = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (decl)),
20034 plus_constant (addr_mode, XEXP (rtl, 0), offset));
20037 /* A variable with no DECL_RTL but a DECL_INITIAL is a compile-time constant,
20038 and will have been substituted directly into all expressions that use it.
20039 C does not have such a concept, but C++ and other languages do. */
20040 if (!rtl && VAR_P (decl) && DECL_INITIAL (decl))
20041 rtl = rtl_for_decl_init (DECL_INITIAL (decl), TREE_TYPE (decl));
20043 if (rtl)
20044 rtl = targetm.delegitimize_address (rtl);
20046 /* If we don't look past the constant pool, we risk emitting a
20047 reference to a constant pool entry that isn't referenced from
20048 code, and thus is not emitted. */
20049 if (rtl)
20050 rtl = avoid_constant_pool_reference (rtl);
20052 /* Try harder to get a rtl. If this symbol ends up not being emitted
20053 in the current CU, resolve_addr will remove the expression referencing
20054 it. */
20055 if (rtl == NULL_RTX
20056 && !(early_dwarf && (flag_generate_lto || flag_generate_offload))
20057 && VAR_P (decl)
20058 && !DECL_EXTERNAL (decl)
20059 && TREE_STATIC (decl)
20060 && DECL_NAME (decl)
20061 && !DECL_HARD_REGISTER (decl)
20062 && DECL_MODE (decl) != VOIDmode)
20064 rtl = make_decl_rtl_for_debug (decl);
20065 if (!MEM_P (rtl)
20066 || GET_CODE (XEXP (rtl, 0)) != SYMBOL_REF
20067 || SYMBOL_REF_DECL (XEXP (rtl, 0)) != decl)
20068 rtl = NULL_RTX;
20071 return rtl;
20074 /* Check whether decl is a Fortran COMMON symbol. If not, NULL_TREE is
20075 returned. If so, the decl for the COMMON block is returned, and the
20076 value is the offset into the common block for the symbol. */
20078 static tree
20079 fortran_common (tree decl, HOST_WIDE_INT *value)
20081 tree val_expr, cvar;
20082 machine_mode mode;
20083 poly_int64 bitsize, bitpos;
20084 tree offset;
20085 HOST_WIDE_INT cbitpos;
20086 int unsignedp, reversep, volatilep = 0;
20088 /* If the decl isn't a VAR_DECL, or if it isn't static, or if
20089 it does not have a value (the offset into the common area), or if it
20090 is thread local (as opposed to global) then it isn't common, and shouldn't
20091 be handled as such. */
20092 if (!VAR_P (decl)
20093 || !TREE_STATIC (decl)
20094 || !DECL_HAS_VALUE_EXPR_P (decl)
20095 || !is_fortran ())
20096 return NULL_TREE;
20098 val_expr = DECL_VALUE_EXPR (decl);
20099 if (TREE_CODE (val_expr) != COMPONENT_REF)
20100 return NULL_TREE;
20102 cvar = get_inner_reference (val_expr, &bitsize, &bitpos, &offset, &mode,
20103 &unsignedp, &reversep, &volatilep);
20105 if (cvar == NULL_TREE
20106 || !VAR_P (cvar)
20107 || DECL_ARTIFICIAL (cvar)
20108 || !TREE_PUBLIC (cvar)
20109 /* We don't expect to have to cope with variable offsets,
20110 since at present all static data must have a constant size. */
20111 || !bitpos.is_constant (&cbitpos))
20112 return NULL_TREE;
20114 *value = 0;
20115 if (offset != NULL)
20117 if (!tree_fits_shwi_p (offset))
20118 return NULL_TREE;
20119 *value = tree_to_shwi (offset);
20121 if (cbitpos != 0)
20122 *value += cbitpos / BITS_PER_UNIT;
20124 return cvar;
20127 /* Generate *either* a DW_AT_location attribute or else a DW_AT_const_value
20128 data attribute for a variable or a parameter. We generate the
20129 DW_AT_const_value attribute only in those cases where the given variable
20130 or parameter does not have a true "location" either in memory or in a
20131 register. This can happen (for example) when a constant is passed as an
20132 actual argument in a call to an inline function. (It's possible that
20133 these things can crop up in other ways also.) Note that one type of
20134 constant value which can be passed into an inlined function is a constant
20135 pointer. This can happen for example if an actual argument in an inlined
20136 function call evaluates to a compile-time constant address.
20138 CACHE_P is true if it is worth caching the location list for DECL,
20139 so that future calls can reuse it rather than regenerate it from scratch.
20140 This is true for BLOCK_NONLOCALIZED_VARS in inlined subroutines,
20141 since we will need to refer to them each time the function is inlined. */
20143 static bool
20144 add_location_or_const_value_attribute (dw_die_ref die, tree decl, bool cache_p)
20146 rtx rtl;
20147 dw_loc_list_ref list;
20148 var_loc_list *loc_list;
20149 cached_dw_loc_list *cache;
20151 if (early_dwarf)
20152 return false;
20154 if (TREE_CODE (decl) == ERROR_MARK)
20155 return false;
20157 if (get_AT (die, DW_AT_location)
20158 || get_AT (die, DW_AT_const_value))
20159 return true;
20161 gcc_assert (VAR_P (decl) || TREE_CODE (decl) == PARM_DECL
20162 || TREE_CODE (decl) == RESULT_DECL);
20164 /* Try to get some constant RTL for this decl, and use that as the value of
20165 the location. */
20167 rtl = rtl_for_decl_location (decl);
20168 if (rtl && (CONSTANT_P (rtl) || GET_CODE (rtl) == CONST_STRING)
20169 && add_const_value_attribute (die, rtl))
20170 return true;
20172 /* See if we have single element location list that is equivalent to
20173 a constant value. That way we are better to use add_const_value_attribute
20174 rather than expanding constant value equivalent. */
20175 loc_list = lookup_decl_loc (decl);
20176 if (loc_list
20177 && loc_list->first
20178 && loc_list->first->next == NULL
20179 && NOTE_P (loc_list->first->loc)
20180 && NOTE_VAR_LOCATION (loc_list->first->loc)
20181 && NOTE_VAR_LOCATION_LOC (loc_list->first->loc))
20183 struct var_loc_node *node;
20185 node = loc_list->first;
20186 rtl = NOTE_VAR_LOCATION_LOC (node->loc);
20187 if (GET_CODE (rtl) == EXPR_LIST)
20188 rtl = XEXP (rtl, 0);
20189 if ((CONSTANT_P (rtl) || GET_CODE (rtl) == CONST_STRING)
20190 && add_const_value_attribute (die, rtl))
20191 return true;
20193 /* If this decl is from BLOCK_NONLOCALIZED_VARS, we might need its
20194 list several times. See if we've already cached the contents. */
20195 list = NULL;
20196 if (loc_list == NULL || cached_dw_loc_list_table == NULL)
20197 cache_p = false;
20198 if (cache_p)
20200 cache = cached_dw_loc_list_table->find_with_hash (decl, DECL_UID (decl));
20201 if (cache)
20202 list = cache->loc_list;
20204 if (list == NULL)
20206 list = loc_list_from_tree (decl, decl_by_reference_p (decl) ? 0 : 2,
20207 NULL);
20208 /* It is usually worth caching this result if the decl is from
20209 BLOCK_NONLOCALIZED_VARS and if the list has at least two elements. */
20210 if (cache_p && list && list->dw_loc_next)
20212 cached_dw_loc_list **slot
20213 = cached_dw_loc_list_table->find_slot_with_hash (decl,
20214 DECL_UID (decl),
20215 INSERT);
20216 cache = ggc_cleared_alloc<cached_dw_loc_list> ();
20217 cache->decl_id = DECL_UID (decl);
20218 cache->loc_list = list;
20219 *slot = cache;
20222 if (list)
20224 add_AT_location_description (die, DW_AT_location, list);
20225 return true;
20227 /* None of that worked, so it must not really have a location;
20228 try adding a constant value attribute from the DECL_INITIAL. */
20229 return tree_add_const_value_attribute_for_decl (die, decl);
20232 /* Helper function for tree_add_const_value_attribute. Natively encode
20233 initializer INIT into an array. Return true if successful. */
20235 static bool
20236 native_encode_initializer (tree init, unsigned char *array, int size)
20238 tree type;
20240 if (init == NULL_TREE)
20241 return false;
20243 STRIP_NOPS (init);
20244 switch (TREE_CODE (init))
20246 case STRING_CST:
20247 type = TREE_TYPE (init);
20248 if (TREE_CODE (type) == ARRAY_TYPE)
20250 tree enttype = TREE_TYPE (type);
20251 scalar_int_mode mode;
20253 if (!is_int_mode (TYPE_MODE (enttype), &mode)
20254 || GET_MODE_SIZE (mode) != 1)
20255 return false;
20256 if (int_size_in_bytes (type) != size)
20257 return false;
20258 if (size > TREE_STRING_LENGTH (init))
20260 memcpy (array, TREE_STRING_POINTER (init),
20261 TREE_STRING_LENGTH (init));
20262 memset (array + TREE_STRING_LENGTH (init),
20263 '\0', size - TREE_STRING_LENGTH (init));
20265 else
20266 memcpy (array, TREE_STRING_POINTER (init), size);
20267 return true;
20269 return false;
20270 case CONSTRUCTOR:
20271 type = TREE_TYPE (init);
20272 if (int_size_in_bytes (type) != size)
20273 return false;
20274 if (TREE_CODE (type) == ARRAY_TYPE)
20276 HOST_WIDE_INT min_index;
20277 unsigned HOST_WIDE_INT cnt;
20278 int curpos = 0, fieldsize;
20279 constructor_elt *ce;
20281 if (TYPE_DOMAIN (type) == NULL_TREE
20282 || !tree_fits_shwi_p (TYPE_MIN_VALUE (TYPE_DOMAIN (type))))
20283 return false;
20285 fieldsize = int_size_in_bytes (TREE_TYPE (type));
20286 if (fieldsize <= 0)
20287 return false;
20289 min_index = tree_to_shwi (TYPE_MIN_VALUE (TYPE_DOMAIN (type)));
20290 memset (array, '\0', size);
20291 FOR_EACH_VEC_SAFE_ELT (CONSTRUCTOR_ELTS (init), cnt, ce)
20293 tree val = ce->value;
20294 tree index = ce->index;
20295 int pos = curpos;
20296 if (index && TREE_CODE (index) == RANGE_EXPR)
20297 pos = (tree_to_shwi (TREE_OPERAND (index, 0)) - min_index)
20298 * fieldsize;
20299 else if (index)
20300 pos = (tree_to_shwi (index) - min_index) * fieldsize;
20302 if (val)
20304 STRIP_NOPS (val);
20305 if (!native_encode_initializer (val, array + pos, fieldsize))
20306 return false;
20308 curpos = pos + fieldsize;
20309 if (index && TREE_CODE (index) == RANGE_EXPR)
20311 int count = tree_to_shwi (TREE_OPERAND (index, 1))
20312 - tree_to_shwi (TREE_OPERAND (index, 0));
20313 while (count-- > 0)
20315 if (val)
20316 memcpy (array + curpos, array + pos, fieldsize);
20317 curpos += fieldsize;
20320 gcc_assert (curpos <= size);
20322 return true;
20324 else if (TREE_CODE (type) == RECORD_TYPE
20325 || TREE_CODE (type) == UNION_TYPE)
20327 tree field = NULL_TREE;
20328 unsigned HOST_WIDE_INT cnt;
20329 constructor_elt *ce;
20331 if (int_size_in_bytes (type) != size)
20332 return false;
20334 if (TREE_CODE (type) == RECORD_TYPE)
20335 field = TYPE_FIELDS (type);
20337 FOR_EACH_VEC_SAFE_ELT (CONSTRUCTOR_ELTS (init), cnt, ce)
20339 tree val = ce->value;
20340 int pos, fieldsize;
20342 if (ce->index != 0)
20343 field = ce->index;
20345 if (val)
20346 STRIP_NOPS (val);
20348 if (field == NULL_TREE || DECL_BIT_FIELD (field))
20349 return false;
20351 if (TREE_CODE (TREE_TYPE (field)) == ARRAY_TYPE
20352 && TYPE_DOMAIN (TREE_TYPE (field))
20353 && ! TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (field))))
20354 return false;
20355 else if (DECL_SIZE_UNIT (field) == NULL_TREE
20356 || !tree_fits_shwi_p (DECL_SIZE_UNIT (field)))
20357 return false;
20358 fieldsize = tree_to_shwi (DECL_SIZE_UNIT (field));
20359 pos = int_byte_position (field);
20360 gcc_assert (pos + fieldsize <= size);
20361 if (val && fieldsize != 0
20362 && !native_encode_initializer (val, array + pos, fieldsize))
20363 return false;
20365 return true;
20367 return false;
20368 case VIEW_CONVERT_EXPR:
20369 case NON_LVALUE_EXPR:
20370 return native_encode_initializer (TREE_OPERAND (init, 0), array, size);
20371 default:
20372 return native_encode_expr (init, array, size) == size;
20376 /* Attach a DW_AT_const_value attribute to DIE. The value of the
20377 attribute is the const value T. */
20379 static bool
20380 tree_add_const_value_attribute (dw_die_ref die, tree t)
20382 tree init;
20383 tree type = TREE_TYPE (t);
20384 rtx rtl;
20386 if (!t || !TREE_TYPE (t) || TREE_TYPE (t) == error_mark_node)
20387 return false;
20389 init = t;
20390 gcc_assert (!DECL_P (init));
20392 if (TREE_CODE (init) == INTEGER_CST)
20394 if (tree_fits_uhwi_p (init))
20396 add_AT_unsigned (die, DW_AT_const_value, tree_to_uhwi (init));
20397 return true;
20399 if (tree_fits_shwi_p (init))
20401 add_AT_int (die, DW_AT_const_value, tree_to_shwi (init));
20402 return true;
20405 if (! early_dwarf)
20407 rtl = rtl_for_decl_init (init, type);
20408 if (rtl)
20409 return add_const_value_attribute (die, rtl);
20411 /* If the host and target are sane, try harder. */
20412 if (CHAR_BIT == 8 && BITS_PER_UNIT == 8
20413 && initializer_constant_valid_p (init, type))
20415 HOST_WIDE_INT size = int_size_in_bytes (TREE_TYPE (init));
20416 if (size > 0 && (int) size == size)
20418 unsigned char *array = ggc_cleared_vec_alloc<unsigned char> (size);
20420 if (native_encode_initializer (init, array, size))
20422 add_AT_vec (die, DW_AT_const_value, size, 1, array);
20423 return true;
20425 ggc_free (array);
20428 return false;
20431 /* Attach a DW_AT_const_value attribute to VAR_DIE. The value of the
20432 attribute is the const value of T, where T is an integral constant
20433 variable with static storage duration
20434 (so it can't be a PARM_DECL or a RESULT_DECL). */
20436 static bool
20437 tree_add_const_value_attribute_for_decl (dw_die_ref var_die, tree decl)
20440 if (!decl
20441 || (!VAR_P (decl) && TREE_CODE (decl) != CONST_DECL)
20442 || (VAR_P (decl) && !TREE_STATIC (decl)))
20443 return false;
20445 if (TREE_READONLY (decl)
20446 && ! TREE_THIS_VOLATILE (decl)
20447 && DECL_INITIAL (decl))
20448 /* OK */;
20449 else
20450 return false;
20452 /* Don't add DW_AT_const_value if abstract origin already has one. */
20453 if (get_AT (var_die, DW_AT_const_value))
20454 return false;
20456 return tree_add_const_value_attribute (var_die, DECL_INITIAL (decl));
20459 /* Convert the CFI instructions for the current function into a
20460 location list. This is used for DW_AT_frame_base when we targeting
20461 a dwarf2 consumer that does not support the dwarf3
20462 DW_OP_call_frame_cfa. OFFSET is a constant to be added to all CFA
20463 expressions. */
20465 static dw_loc_list_ref
20466 convert_cfa_to_fb_loc_list (HOST_WIDE_INT offset)
20468 int ix;
20469 dw_fde_ref fde;
20470 dw_loc_list_ref list, *list_tail;
20471 dw_cfi_ref cfi;
20472 dw_cfa_location last_cfa, next_cfa;
20473 const char *start_label, *last_label, *section;
20474 dw_cfa_location remember;
20476 fde = cfun->fde;
20477 gcc_assert (fde != NULL);
20479 section = secname_for_decl (current_function_decl);
20480 list_tail = &list;
20481 list = NULL;
20483 memset (&next_cfa, 0, sizeof (next_cfa));
20484 next_cfa.reg = INVALID_REGNUM;
20485 remember = next_cfa;
20487 start_label = fde->dw_fde_begin;
20489 /* ??? Bald assumption that the CIE opcode list does not contain
20490 advance opcodes. */
20491 FOR_EACH_VEC_ELT (*cie_cfi_vec, ix, cfi)
20492 lookup_cfa_1 (cfi, &next_cfa, &remember);
20494 last_cfa = next_cfa;
20495 last_label = start_label;
20497 if (fde->dw_fde_second_begin && fde->dw_fde_switch_cfi_index == 0)
20499 /* If the first partition contained no CFI adjustments, the
20500 CIE opcodes apply to the whole first partition. */
20501 *list_tail = new_loc_list (build_cfa_loc (&last_cfa, offset),
20502 fde->dw_fde_begin, 0, fde->dw_fde_end, 0, section);
20503 list_tail =&(*list_tail)->dw_loc_next;
20504 start_label = last_label = fde->dw_fde_second_begin;
20507 FOR_EACH_VEC_SAFE_ELT (fde->dw_fde_cfi, ix, cfi)
20509 switch (cfi->dw_cfi_opc)
20511 case DW_CFA_set_loc:
20512 case DW_CFA_advance_loc1:
20513 case DW_CFA_advance_loc2:
20514 case DW_CFA_advance_loc4:
20515 if (!cfa_equal_p (&last_cfa, &next_cfa))
20517 *list_tail = new_loc_list (build_cfa_loc (&last_cfa, offset),
20518 start_label, 0, last_label, 0, section);
20520 list_tail = &(*list_tail)->dw_loc_next;
20521 last_cfa = next_cfa;
20522 start_label = last_label;
20524 last_label = cfi->dw_cfi_oprnd1.dw_cfi_addr;
20525 break;
20527 case DW_CFA_advance_loc:
20528 /* The encoding is complex enough that we should never emit this. */
20529 gcc_unreachable ();
20531 default:
20532 lookup_cfa_1 (cfi, &next_cfa, &remember);
20533 break;
20535 if (ix + 1 == fde->dw_fde_switch_cfi_index)
20537 if (!cfa_equal_p (&last_cfa, &next_cfa))
20539 *list_tail = new_loc_list (build_cfa_loc (&last_cfa, offset),
20540 start_label, 0, last_label, 0, section);
20542 list_tail = &(*list_tail)->dw_loc_next;
20543 last_cfa = next_cfa;
20544 start_label = last_label;
20546 *list_tail = new_loc_list (build_cfa_loc (&last_cfa, offset),
20547 start_label, 0, fde->dw_fde_end, 0, section);
20548 list_tail = &(*list_tail)->dw_loc_next;
20549 start_label = last_label = fde->dw_fde_second_begin;
20553 if (!cfa_equal_p (&last_cfa, &next_cfa))
20555 *list_tail = new_loc_list (build_cfa_loc (&last_cfa, offset),
20556 start_label, 0, last_label, 0, section);
20557 list_tail = &(*list_tail)->dw_loc_next;
20558 start_label = last_label;
20561 *list_tail = new_loc_list (build_cfa_loc (&next_cfa, offset),
20562 start_label, 0,
20563 fde->dw_fde_second_begin
20564 ? fde->dw_fde_second_end : fde->dw_fde_end, 0,
20565 section);
20567 maybe_gen_llsym (list);
20569 return list;
20572 /* Compute a displacement from the "steady-state frame pointer" to the
20573 frame base (often the same as the CFA), and store it in
20574 frame_pointer_fb_offset. OFFSET is added to the displacement
20575 before the latter is negated. */
20577 static void
20578 compute_frame_pointer_to_fb_displacement (poly_int64 offset)
20580 rtx reg, elim;
20582 #ifdef FRAME_POINTER_CFA_OFFSET
20583 reg = frame_pointer_rtx;
20584 offset += FRAME_POINTER_CFA_OFFSET (current_function_decl);
20585 #else
20586 reg = arg_pointer_rtx;
20587 offset += ARG_POINTER_CFA_OFFSET (current_function_decl);
20588 #endif
20590 elim = (ira_use_lra_p
20591 ? lra_eliminate_regs (reg, VOIDmode, NULL_RTX)
20592 : eliminate_regs (reg, VOIDmode, NULL_RTX));
20593 elim = strip_offset_and_add (elim, &offset);
20595 frame_pointer_fb_offset = -offset;
20597 /* ??? AVR doesn't set up valid eliminations when there is no stack frame
20598 in which to eliminate. This is because it's stack pointer isn't
20599 directly accessible as a register within the ISA. To work around
20600 this, assume that while we cannot provide a proper value for
20601 frame_pointer_fb_offset, we won't need one either. We can use
20602 hard frame pointer in debug info even if frame pointer isn't used
20603 since hard frame pointer in debug info is encoded with DW_OP_fbreg
20604 which uses the DW_AT_frame_base attribute, not hard frame pointer
20605 directly. */
20606 frame_pointer_fb_offset_valid
20607 = (elim == hard_frame_pointer_rtx || elim == stack_pointer_rtx);
20610 /* Generate a DW_AT_name attribute given some string value to be included as
20611 the value of the attribute. */
20613 static void
20614 add_name_attribute (dw_die_ref die, const char *name_string)
20616 if (name_string != NULL && *name_string != 0)
20618 if (demangle_name_func)
20619 name_string = (*demangle_name_func) (name_string);
20621 add_AT_string (die, DW_AT_name, name_string);
20625 /* Generate a DW_AT_description attribute given some string value to be included
20626 as the value of the attribute. */
20628 static void
20629 add_desc_attribute (dw_die_ref die, const char *name_string)
20631 if (!flag_describe_dies || (dwarf_version < 3 && dwarf_strict))
20632 return;
20634 if (name_string == NULL || *name_string == 0)
20635 return;
20637 if (demangle_name_func)
20638 name_string = (*demangle_name_func) (name_string);
20640 add_AT_string (die, DW_AT_description, name_string);
20643 /* Generate a DW_AT_description attribute given some decl to be included
20644 as the value of the attribute. */
20646 static void
20647 add_desc_attribute (dw_die_ref die, tree decl)
20649 tree decl_name;
20651 if (!flag_describe_dies || (dwarf_version < 3 && dwarf_strict))
20652 return;
20654 if (decl == NULL_TREE || !DECL_P (decl))
20655 return;
20656 decl_name = DECL_NAME (decl);
20658 if (decl_name != NULL && IDENTIFIER_POINTER (decl_name) != NULL)
20660 const char *name = dwarf2_name (decl, 0);
20661 add_desc_attribute (die, name ? name : IDENTIFIER_POINTER (decl_name));
20663 else
20665 char *desc = print_generic_expr_to_str (decl);
20666 add_desc_attribute (die, desc);
20667 free (desc);
20671 /* Retrieve the descriptive type of TYPE, if any, make sure it has a
20672 DIE and attach a DW_AT_GNAT_descriptive_type attribute to the DIE
20673 of TYPE accordingly.
20675 ??? This is a temporary measure until after we're able to generate
20676 regular DWARF for the complex Ada type system. */
20678 static void
20679 add_gnat_descriptive_type_attribute (dw_die_ref die, tree type,
20680 dw_die_ref context_die)
20682 tree dtype;
20683 dw_die_ref dtype_die;
20685 if (!lang_hooks.types.descriptive_type)
20686 return;
20688 dtype = lang_hooks.types.descriptive_type (type);
20689 if (!dtype)
20690 return;
20692 dtype_die = lookup_type_die (dtype);
20693 if (!dtype_die)
20695 gen_type_die (dtype, context_die);
20696 dtype_die = lookup_type_die (dtype);
20697 gcc_assert (dtype_die);
20700 add_AT_die_ref (die, DW_AT_GNAT_descriptive_type, dtype_die);
20703 /* Retrieve the comp_dir string suitable for use with DW_AT_comp_dir. */
20705 static const char *
20706 comp_dir_string (void)
20708 const char *wd;
20709 char *wd_plus_sep = NULL;
20710 static const char *cached_wd = NULL;
20712 if (cached_wd != NULL)
20713 return cached_wd;
20715 wd = get_src_pwd ();
20716 if (wd == NULL)
20717 return NULL;
20719 if (DWARF2_DIR_SHOULD_END_WITH_SEPARATOR)
20721 size_t wdlen = strlen (wd);
20722 wd_plus_sep = XNEWVEC (char, wdlen + 2);
20723 strcpy (wd_plus_sep, wd);
20724 wd_plus_sep [wdlen] = DIR_SEPARATOR;
20725 wd_plus_sep [wdlen + 1] = 0;
20726 wd = wd_plus_sep;
20729 cached_wd = remap_debug_filename (wd);
20731 /* remap_debug_filename can just pass through wd or return a new gc string.
20732 These two types can't be both stored in a GTY(())-tagged string, but since
20733 the cached value lives forever just copy it if needed. */
20734 if (cached_wd != wd)
20736 cached_wd = xstrdup (cached_wd);
20737 if (DWARF2_DIR_SHOULD_END_WITH_SEPARATOR && wd_plus_sep != NULL)
20738 free (wd_plus_sep);
20741 return cached_wd;
20744 /* Generate a DW_AT_comp_dir attribute for DIE. */
20746 static void
20747 add_comp_dir_attribute (dw_die_ref die)
20749 const char * wd = comp_dir_string ();
20750 if (wd != NULL)
20751 add_AT_string (die, DW_AT_comp_dir, wd);
20754 /* Given a tree node VALUE describing a scalar attribute ATTR (i.e. a bound, a
20755 pointer computation, ...), output a representation for that bound according
20756 to the accepted FORMS (see enum dw_scalar_form) and add it to DIE. See
20757 loc_list_from_tree for the meaning of CONTEXT. */
20759 static void
20760 add_scalar_info (dw_die_ref die, enum dwarf_attribute attr, tree value,
20761 int forms, struct loc_descr_context *context)
20763 dw_die_ref context_die, decl_die = NULL;
20764 dw_loc_list_ref list;
20765 bool strip_conversions = true;
20766 bool placeholder_seen = false;
20768 while (strip_conversions)
20769 switch (TREE_CODE (value))
20771 case ERROR_MARK:
20772 case SAVE_EXPR:
20773 return;
20775 CASE_CONVERT:
20776 case VIEW_CONVERT_EXPR:
20777 value = TREE_OPERAND (value, 0);
20778 break;
20780 default:
20781 strip_conversions = false;
20782 break;
20785 /* If possible and permitted, output the attribute as a constant. */
20786 if ((forms & dw_scalar_form_constant) != 0
20787 && TREE_CODE (value) == INTEGER_CST)
20789 unsigned int prec = simple_type_size_in_bits (TREE_TYPE (value));
20791 /* If HOST_WIDE_INT is big enough then represent the bound as
20792 a constant value. We need to choose a form based on
20793 whether the type is signed or unsigned. We cannot just
20794 call add_AT_unsigned if the value itself is positive
20795 (add_AT_unsigned might add the unsigned value encoded as
20796 DW_FORM_data[1248]). Some DWARF consumers will lookup the
20797 bounds type and then sign extend any unsigned values found
20798 for signed types. This is needed only for
20799 DW_AT_{lower,upper}_bound, since for most other attributes,
20800 consumers will treat DW_FORM_data[1248] as unsigned values,
20801 regardless of the underlying type. */
20802 if (prec <= HOST_BITS_PER_WIDE_INT
20803 || tree_fits_uhwi_p (value))
20805 if (TYPE_UNSIGNED (TREE_TYPE (value)))
20806 add_AT_unsigned (die, attr, TREE_INT_CST_LOW (value));
20807 else
20808 add_AT_int (die, attr, TREE_INT_CST_LOW (value));
20810 else
20811 /* Otherwise represent the bound as an unsigned value with
20812 the precision of its type. The precision and signedness
20813 of the type will be necessary to re-interpret it
20814 unambiguously. */
20815 add_AT_wide (die, attr, wi::to_wide (value));
20816 return;
20819 /* Otherwise, if it's possible and permitted too, output a reference to
20820 another DIE. */
20821 if ((forms & dw_scalar_form_reference) != 0)
20823 tree decl = NULL_TREE;
20825 /* Some type attributes reference an outer type. For instance, the upper
20826 bound of an array may reference an embedding record (this happens in
20827 Ada). */
20828 if (TREE_CODE (value) == COMPONENT_REF
20829 && TREE_CODE (TREE_OPERAND (value, 0)) == PLACEHOLDER_EXPR
20830 && TREE_CODE (TREE_OPERAND (value, 1)) == FIELD_DECL)
20831 decl = TREE_OPERAND (value, 1);
20833 else if (VAR_P (value)
20834 || TREE_CODE (value) == PARM_DECL
20835 || TREE_CODE (value) == RESULT_DECL)
20836 decl = value;
20838 if (decl != NULL_TREE)
20840 decl_die = lookup_decl_die (decl);
20842 /* ??? Can this happen, or should the variable have been bound
20843 first? Probably it can, since I imagine that we try to create
20844 the types of parameters in the order in which they exist in
20845 the list, and won't have created a forward reference to a
20846 later parameter. */
20847 if (decl_die != NULL)
20849 if (get_AT (decl_die, DW_AT_location)
20850 || get_AT (decl_die, DW_AT_data_member_location)
20851 || get_AT (decl_die, DW_AT_const_value))
20853 add_AT_die_ref (die, attr, decl_die);
20854 return;
20860 /* Last chance: try to create a stack operation procedure to evaluate the
20861 value. Do nothing if even that is not possible or permitted. */
20862 if ((forms & dw_scalar_form_exprloc) == 0)
20863 return;
20865 list = loc_list_from_tree (value, 2, context);
20866 if (context && context->placeholder_arg)
20868 placeholder_seen = context->placeholder_seen;
20869 context->placeholder_seen = false;
20871 if (list == NULL || single_element_loc_list_p (list))
20873 /* If this attribute is not a reference nor constant, it is
20874 a DWARF expression rather than location description. For that
20875 loc_list_from_tree (value, 0, &context) is needed. */
20876 dw_loc_list_ref list2 = loc_list_from_tree (value, 0, context);
20877 if (list2 && single_element_loc_list_p (list2))
20879 if (placeholder_seen)
20881 struct dwarf_procedure_info dpi;
20882 dpi.fndecl = NULL_TREE;
20883 dpi.args_count = 1;
20884 if (!resolve_args_picking (list2->expr, 1, &dpi))
20885 return;
20887 add_AT_loc (die, attr, list2->expr);
20888 return;
20892 /* If that failed to give a single element location list, fall back to
20893 outputting this as a reference... still if permitted. */
20894 if (list == NULL
20895 || (forms & dw_scalar_form_reference) == 0
20896 || placeholder_seen)
20897 return;
20899 if (!decl_die)
20901 if (current_function_decl == 0)
20902 context_die = comp_unit_die ();
20903 else
20904 context_die = lookup_decl_die (current_function_decl);
20906 decl_die = new_die (DW_TAG_variable, context_die, value);
20907 add_AT_flag (decl_die, DW_AT_artificial, 1);
20908 add_type_attribute (decl_die, TREE_TYPE (value), TYPE_QUAL_CONST, false,
20909 context_die);
20912 add_AT_location_description (decl_die, DW_AT_location, list);
20913 add_AT_die_ref (die, attr, decl_die);
20916 /* Return the default for DW_AT_lower_bound, or -1 if there is not any
20917 default. */
20919 static int
20920 lower_bound_default (void)
20922 switch (get_AT_unsigned (comp_unit_die (), DW_AT_language))
20924 case DW_LANG_C:
20925 case DW_LANG_C89:
20926 case DW_LANG_C99:
20927 case DW_LANG_C11:
20928 case DW_LANG_C_plus_plus:
20929 case DW_LANG_C_plus_plus_11:
20930 case DW_LANG_C_plus_plus_14:
20931 case DW_LANG_ObjC:
20932 case DW_LANG_ObjC_plus_plus:
20933 return 0;
20934 case DW_LANG_Fortran77:
20935 case DW_LANG_Fortran90:
20936 case DW_LANG_Fortran95:
20937 case DW_LANG_Fortran03:
20938 case DW_LANG_Fortran08:
20939 return 1;
20940 case DW_LANG_UPC:
20941 case DW_LANG_D:
20942 case DW_LANG_Python:
20943 return dwarf_version >= 4 ? 0 : -1;
20944 case DW_LANG_Ada95:
20945 case DW_LANG_Ada83:
20946 case DW_LANG_Cobol74:
20947 case DW_LANG_Cobol85:
20948 case DW_LANG_Modula2:
20949 case DW_LANG_PLI:
20950 return dwarf_version >= 4 ? 1 : -1;
20951 default:
20952 return -1;
20956 /* Given a tree node describing an array bound (either lower or upper) output
20957 a representation for that bound. */
20959 static void
20960 add_bound_info (dw_die_ref subrange_die, enum dwarf_attribute bound_attr,
20961 tree bound, struct loc_descr_context *context)
20963 int dflt;
20965 while (1)
20966 switch (TREE_CODE (bound))
20968 /* Strip all conversions. */
20969 CASE_CONVERT:
20970 case VIEW_CONVERT_EXPR:
20971 bound = TREE_OPERAND (bound, 0);
20972 break;
20974 /* All fixed-bounds are represented by INTEGER_CST nodes. Lower bounds
20975 are even omitted when they are the default. */
20976 case INTEGER_CST:
20977 /* If the value for this bound is the default one, we can even omit the
20978 attribute. */
20979 if (bound_attr == DW_AT_lower_bound
20980 && tree_fits_shwi_p (bound)
20981 && (dflt = lower_bound_default ()) != -1
20982 && tree_to_shwi (bound) == dflt)
20983 return;
20985 /* FALLTHRU */
20987 default:
20988 /* Because of the complex interaction there can be with other GNAT
20989 encodings, GDB isn't ready yet to handle proper DWARF description
20990 for self-referencial subrange bounds: let GNAT encodings do the
20991 magic in such a case. */
20992 if (is_ada ()
20993 && gnat_encodings != DWARF_GNAT_ENCODINGS_MINIMAL
20994 && contains_placeholder_p (bound))
20995 return;
20997 add_scalar_info (subrange_die, bound_attr, bound,
20998 dw_scalar_form_constant
20999 | dw_scalar_form_exprloc
21000 | dw_scalar_form_reference,
21001 context);
21002 return;
21006 /* Add subscript info to TYPE_DIE, describing an array TYPE, collapsing
21007 possibly nested array subscripts in a flat sequence if COLLAPSE_P is true.
21008 Note that the block of subscript information for an array type also
21009 includes information about the element type of the given array type.
21011 This function reuses previously set type and bound information if
21012 available. */
21014 static void
21015 add_subscript_info (dw_die_ref type_die, tree type, bool collapse_p)
21017 unsigned dimension_number;
21018 tree lower, upper;
21019 dw_die_ref child = type_die->die_child;
21021 for (dimension_number = 0;
21022 TREE_CODE (type) == ARRAY_TYPE && (dimension_number == 0 || collapse_p);
21023 type = TREE_TYPE (type), dimension_number++)
21025 tree domain = TYPE_DOMAIN (type);
21027 if (TYPE_STRING_FLAG (type) && is_fortran () && dimension_number > 0)
21028 break;
21030 /* Arrays come in three flavors: Unspecified bounds, fixed bounds,
21031 and (in GNU C only) variable bounds. Handle all three forms
21032 here. */
21034 /* Find and reuse a previously generated DW_TAG_subrange_type if
21035 available.
21037 For multi-dimensional arrays, as we iterate through the
21038 various dimensions in the enclosing for loop above, we also
21039 iterate through the DIE children and pick at each
21040 DW_TAG_subrange_type previously generated (if available).
21041 Each child DW_TAG_subrange_type DIE describes the range of
21042 the current dimension. At this point we should have as many
21043 DW_TAG_subrange_type's as we have dimensions in the
21044 array. */
21045 dw_die_ref subrange_die = NULL;
21046 if (child)
21047 while (1)
21049 child = child->die_sib;
21050 if (child->die_tag == DW_TAG_subrange_type)
21051 subrange_die = child;
21052 if (child == type_die->die_child)
21054 /* If we wrapped around, stop looking next time. */
21055 child = NULL;
21056 break;
21058 if (child->die_tag == DW_TAG_subrange_type)
21059 break;
21061 if (!subrange_die)
21062 subrange_die = new_die (DW_TAG_subrange_type, type_die, NULL);
21064 if (domain)
21066 /* We have an array type with specified bounds. */
21067 lower = TYPE_MIN_VALUE (domain);
21068 upper = TYPE_MAX_VALUE (domain);
21070 /* Define the index type. */
21071 if (TREE_TYPE (domain)
21072 && !get_AT (subrange_die, DW_AT_type))
21074 /* ??? This is probably an Ada unnamed subrange type. Ignore the
21075 TREE_TYPE field. We can't emit debug info for this
21076 because it is an unnamed integral type. */
21077 if (TREE_CODE (domain) == INTEGER_TYPE
21078 && TYPE_NAME (domain) == NULL_TREE
21079 && TREE_CODE (TREE_TYPE (domain)) == INTEGER_TYPE
21080 && TYPE_NAME (TREE_TYPE (domain)) == NULL_TREE)
21082 else
21083 add_type_attribute (subrange_die, TREE_TYPE (domain),
21084 TYPE_UNQUALIFIED, false, type_die);
21087 /* ??? If upper is NULL, the array has unspecified length,
21088 but it does have a lower bound. This happens with Fortran
21089 dimension arr(N:*)
21090 Since the debugger is definitely going to need to know N
21091 to produce useful results, go ahead and output the lower
21092 bound solo, and hope the debugger can cope. */
21094 if (!get_AT (subrange_die, DW_AT_lower_bound))
21095 add_bound_info (subrange_die, DW_AT_lower_bound, lower, NULL);
21096 if (!get_AT (subrange_die, DW_AT_upper_bound)
21097 && !get_AT (subrange_die, DW_AT_count))
21099 if (upper)
21100 add_bound_info (subrange_die, DW_AT_upper_bound, upper, NULL);
21101 else if ((is_c () || is_cxx ()) && COMPLETE_TYPE_P (type))
21102 /* Zero-length array. */
21103 add_bound_info (subrange_die, DW_AT_count,
21104 build_int_cst (TREE_TYPE (lower), 0), NULL);
21108 /* Otherwise we have an array type with an unspecified length. The
21109 DWARF-2 spec does not say how to handle this; let's just leave out the
21110 bounds. */
21114 /* Add a DW_AT_byte_size attribute to DIE with TREE_NODE's size. */
21116 static void
21117 add_byte_size_attribute (dw_die_ref die, tree tree_node)
21119 dw_die_ref decl_die;
21120 HOST_WIDE_INT size;
21121 dw_loc_descr_ref size_expr = NULL;
21123 switch (TREE_CODE (tree_node))
21125 case ERROR_MARK:
21126 size = 0;
21127 break;
21128 case ENUMERAL_TYPE:
21129 case RECORD_TYPE:
21130 case UNION_TYPE:
21131 case QUAL_UNION_TYPE:
21132 if (TREE_CODE (TYPE_SIZE_UNIT (tree_node)) == VAR_DECL
21133 && (decl_die = lookup_decl_die (TYPE_SIZE_UNIT (tree_node))))
21135 add_AT_die_ref (die, DW_AT_byte_size, decl_die);
21136 return;
21138 size_expr = type_byte_size (tree_node, &size);
21139 break;
21140 case FIELD_DECL:
21141 /* For a data member of a struct or union, the DW_AT_byte_size is
21142 generally given as the number of bytes normally allocated for an
21143 object of the *declared* type of the member itself. This is true
21144 even for bit-fields. */
21145 size = int_size_in_bytes (field_type (tree_node));
21146 break;
21147 default:
21148 gcc_unreachable ();
21151 /* Support for dynamically-sized objects was introduced by DWARFv3.
21152 At the moment, GDB does not handle variable byte sizes very well,
21153 though. */
21154 if ((dwarf_version >= 3 || !dwarf_strict)
21155 && gnat_encodings == DWARF_GNAT_ENCODINGS_MINIMAL
21156 && size_expr != NULL)
21157 add_AT_loc (die, DW_AT_byte_size, size_expr);
21159 /* Note that `size' might be -1 when we get to this point. If it is, that
21160 indicates that the byte size of the entity in question is variable and
21161 that we could not generate a DWARF expression that computes it. */
21162 if (size >= 0)
21163 add_AT_unsigned (die, DW_AT_byte_size, size);
21166 /* Add a DW_AT_alignment attribute to DIE with TREE_NODE's non-default
21167 alignment. */
21169 static void
21170 add_alignment_attribute (dw_die_ref die, tree tree_node)
21172 if (dwarf_version < 5 && dwarf_strict)
21173 return;
21175 unsigned align;
21177 if (DECL_P (tree_node))
21179 if (!DECL_USER_ALIGN (tree_node))
21180 return;
21182 align = DECL_ALIGN_UNIT (tree_node);
21184 else if (TYPE_P (tree_node))
21186 if (!TYPE_USER_ALIGN (tree_node))
21187 return;
21189 align = TYPE_ALIGN_UNIT (tree_node);
21191 else
21192 gcc_unreachable ();
21194 add_AT_unsigned (die, DW_AT_alignment, align);
21197 /* For a FIELD_DECL node which represents a bit-field, output an attribute
21198 which specifies the distance in bits from the highest order bit of the
21199 "containing object" for the bit-field to the highest order bit of the
21200 bit-field itself.
21202 For any given bit-field, the "containing object" is a hypothetical object
21203 (of some integral or enum type) within which the given bit-field lives. The
21204 type of this hypothetical "containing object" is always the same as the
21205 declared type of the individual bit-field itself. The determination of the
21206 exact location of the "containing object" for a bit-field is rather
21207 complicated. It's handled by the `field_byte_offset' function (above).
21209 CTX is required: see the comment for VLR_CONTEXT.
21211 Note that it is the size (in bytes) of the hypothetical "containing object"
21212 which will be given in the DW_AT_byte_size attribute for this bit-field.
21213 (See `byte_size_attribute' above). */
21215 static inline void
21216 add_bit_offset_attribute (dw_die_ref die, tree decl, struct vlr_context *ctx)
21218 HOST_WIDE_INT object_offset_in_bytes;
21219 tree original_type = DECL_BIT_FIELD_TYPE (decl);
21220 HOST_WIDE_INT bitpos_int;
21221 HOST_WIDE_INT highest_order_object_bit_offset;
21222 HOST_WIDE_INT highest_order_field_bit_offset;
21223 HOST_WIDE_INT bit_offset;
21225 field_byte_offset (decl, ctx, &object_offset_in_bytes);
21227 /* Must be a field and a bit field. */
21228 gcc_assert (original_type && TREE_CODE (decl) == FIELD_DECL);
21230 /* We can't yet handle bit-fields whose offsets are variable, so if we
21231 encounter such things, just return without generating any attribute
21232 whatsoever. Likewise for variable or too large size. */
21233 if (! tree_fits_shwi_p (bit_position (decl))
21234 || ! tree_fits_uhwi_p (DECL_SIZE (decl)))
21235 return;
21237 bitpos_int = int_bit_position (decl);
21239 /* Note that the bit offset is always the distance (in bits) from the
21240 highest-order bit of the "containing object" to the highest-order bit of
21241 the bit-field itself. Since the "high-order end" of any object or field
21242 is different on big-endian and little-endian machines, the computation
21243 below must take account of these differences. */
21244 highest_order_object_bit_offset = object_offset_in_bytes * BITS_PER_UNIT;
21245 highest_order_field_bit_offset = bitpos_int;
21247 if (! BYTES_BIG_ENDIAN)
21249 highest_order_field_bit_offset += tree_to_shwi (DECL_SIZE (decl));
21250 highest_order_object_bit_offset +=
21251 simple_type_size_in_bits (original_type);
21254 bit_offset
21255 = (! BYTES_BIG_ENDIAN
21256 ? highest_order_object_bit_offset - highest_order_field_bit_offset
21257 : highest_order_field_bit_offset - highest_order_object_bit_offset);
21259 if (bit_offset < 0)
21260 add_AT_int (die, DW_AT_bit_offset, bit_offset);
21261 else
21262 add_AT_unsigned (die, DW_AT_bit_offset, (unsigned HOST_WIDE_INT) bit_offset);
21265 /* For a FIELD_DECL node which represents a bit field, output an attribute
21266 which specifies the length in bits of the given field. */
21268 static inline void
21269 add_bit_size_attribute (dw_die_ref die, tree decl)
21271 /* Must be a field and a bit field. */
21272 gcc_assert (TREE_CODE (decl) == FIELD_DECL
21273 && DECL_BIT_FIELD_TYPE (decl));
21275 if (tree_fits_uhwi_p (DECL_SIZE (decl)))
21276 add_AT_unsigned (die, DW_AT_bit_size, tree_to_uhwi (DECL_SIZE (decl)));
21279 /* If the compiled language is ANSI C, then add a 'prototyped'
21280 attribute, if arg types are given for the parameters of a function. */
21282 static inline void
21283 add_prototyped_attribute (dw_die_ref die, tree func_type)
21285 switch (get_AT_unsigned (comp_unit_die (), DW_AT_language))
21287 case DW_LANG_C:
21288 case DW_LANG_C89:
21289 case DW_LANG_C99:
21290 case DW_LANG_C11:
21291 case DW_LANG_ObjC:
21292 if (prototype_p (func_type))
21293 add_AT_flag (die, DW_AT_prototyped, 1);
21294 break;
21295 default:
21296 break;
21300 /* Add an 'abstract_origin' attribute below a given DIE. The DIE is found
21301 by looking in the type declaration, the object declaration equate table or
21302 the block mapping. */
21304 static inline void
21305 add_abstract_origin_attribute (dw_die_ref die, tree origin)
21307 dw_die_ref origin_die = NULL;
21309 /* For late LTO debug output we want to refer directly to the abstract
21310 DIE in the early debug rather to the possibly existing concrete
21311 instance and avoid creating that just for this purpose. */
21312 sym_off_pair *desc;
21313 if (in_lto_p
21314 && external_die_map
21315 && (desc = external_die_map->get (origin)))
21317 add_AT_external_die_ref (die, DW_AT_abstract_origin,
21318 desc->sym, desc->off);
21319 return;
21322 if (DECL_P (origin))
21323 origin_die = lookup_decl_die (origin);
21324 else if (TYPE_P (origin))
21325 origin_die = lookup_type_die (origin);
21326 else if (TREE_CODE (origin) == BLOCK)
21327 origin_die = lookup_block_die (origin);
21329 /* XXX: Functions that are never lowered don't always have correct block
21330 trees (in the case of java, they simply have no block tree, in some other
21331 languages). For these functions, there is nothing we can really do to
21332 output correct debug info for inlined functions in all cases. Rather
21333 than die, we'll just produce deficient debug info now, in that we will
21334 have variables without a proper abstract origin. In the future, when all
21335 functions are lowered, we should re-add a gcc_assert (origin_die)
21336 here. */
21338 if (origin_die)
21339 add_AT_die_ref (die, DW_AT_abstract_origin, origin_die);
21342 /* We do not currently support the pure_virtual attribute. */
21344 static inline void
21345 add_pure_or_virtual_attribute (dw_die_ref die, tree func_decl)
21347 if (DECL_VINDEX (func_decl))
21349 add_AT_unsigned (die, DW_AT_virtuality, DW_VIRTUALITY_virtual);
21351 if (tree_fits_shwi_p (DECL_VINDEX (func_decl)))
21352 add_AT_loc (die, DW_AT_vtable_elem_location,
21353 new_loc_descr (DW_OP_constu,
21354 tree_to_shwi (DECL_VINDEX (func_decl)),
21355 0));
21357 /* GNU extension: Record what type this method came from originally. */
21358 if (debug_info_level > DINFO_LEVEL_TERSE
21359 && DECL_CONTEXT (func_decl))
21360 add_AT_die_ref (die, DW_AT_containing_type,
21361 lookup_type_die (DECL_CONTEXT (func_decl)));
21365 /* Add a DW_AT_linkage_name or DW_AT_MIPS_linkage_name attribute for the
21366 given decl. This used to be a vendor extension until after DWARF 4
21367 standardized it. */
21369 static void
21370 add_linkage_attr (dw_die_ref die, tree decl)
21372 const char *name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
21374 /* Mimic what assemble_name_raw does with a leading '*'. */
21375 if (name[0] == '*')
21376 name = &name[1];
21378 if (dwarf_version >= 4)
21379 add_AT_string (die, DW_AT_linkage_name, name);
21380 else
21381 add_AT_string (die, DW_AT_MIPS_linkage_name, name);
21384 /* Add source coordinate attributes for the given decl. */
21386 static void
21387 add_src_coords_attributes (dw_die_ref die, tree decl)
21389 expanded_location s;
21391 if (LOCATION_LOCUS (DECL_SOURCE_LOCATION (decl)) == UNKNOWN_LOCATION)
21392 return;
21393 s = expand_location (DECL_SOURCE_LOCATION (decl));
21394 add_AT_file (die, DW_AT_decl_file, lookup_filename (s.file));
21395 add_AT_unsigned (die, DW_AT_decl_line, s.line);
21396 if (debug_column_info && s.column)
21397 add_AT_unsigned (die, DW_AT_decl_column, s.column);
21400 /* Add DW_AT_{,MIPS_}linkage_name attribute for the given decl. */
21402 static void
21403 add_linkage_name_raw (dw_die_ref die, tree decl)
21405 /* Defer until we have an assembler name set. */
21406 if (!DECL_ASSEMBLER_NAME_SET_P (decl))
21408 limbo_die_node *asm_name;
21410 asm_name = ggc_cleared_alloc<limbo_die_node> ();
21411 asm_name->die = die;
21412 asm_name->created_for = decl;
21413 asm_name->next = deferred_asm_name;
21414 deferred_asm_name = asm_name;
21416 else if (DECL_ASSEMBLER_NAME (decl) != DECL_NAME (decl))
21417 add_linkage_attr (die, decl);
21420 /* Add DW_AT_{,MIPS_}linkage_name attribute for the given decl if desired. */
21422 static void
21423 add_linkage_name (dw_die_ref die, tree decl)
21425 if (debug_info_level > DINFO_LEVEL_NONE
21426 && VAR_OR_FUNCTION_DECL_P (decl)
21427 && TREE_PUBLIC (decl)
21428 && !(VAR_P (decl) && DECL_REGISTER (decl))
21429 && die->die_tag != DW_TAG_member)
21430 add_linkage_name_raw (die, decl);
21433 /* Add a DW_AT_name attribute and source coordinate attribute for the
21434 given decl, but only if it actually has a name. */
21436 static void
21437 add_name_and_src_coords_attributes (dw_die_ref die, tree decl,
21438 bool no_linkage_name)
21440 tree decl_name;
21442 decl_name = DECL_NAME (decl);
21443 if (decl_name != NULL && IDENTIFIER_POINTER (decl_name) != NULL)
21445 const char *name = dwarf2_name (decl, 0);
21446 if (name)
21447 add_name_attribute (die, name);
21448 else
21449 add_desc_attribute (die, decl);
21451 if (! DECL_ARTIFICIAL (decl))
21452 add_src_coords_attributes (die, decl);
21454 if (!no_linkage_name)
21455 add_linkage_name (die, decl);
21457 else
21458 add_desc_attribute (die, decl);
21460 #ifdef VMS_DEBUGGING_INFO
21461 /* Get the function's name, as described by its RTL. This may be different
21462 from the DECL_NAME name used in the source file. */
21463 if (TREE_CODE (decl) == FUNCTION_DECL && TREE_ASM_WRITTEN (decl))
21465 add_AT_addr (die, DW_AT_VMS_rtnbeg_pd_address,
21466 XEXP (DECL_RTL (decl), 0), false);
21467 vec_safe_push (used_rtx_array, XEXP (DECL_RTL (decl), 0));
21469 #endif /* VMS_DEBUGGING_INFO */
21472 /* Add VALUE as a DW_AT_discr_value attribute to DIE. */
21474 static void
21475 add_discr_value (dw_die_ref die, dw_discr_value *value)
21477 dw_attr_node attr;
21479 attr.dw_attr = DW_AT_discr_value;
21480 attr.dw_attr_val.val_class = dw_val_class_discr_value;
21481 attr.dw_attr_val.val_entry = NULL;
21482 attr.dw_attr_val.v.val_discr_value.pos = value->pos;
21483 if (value->pos)
21484 attr.dw_attr_val.v.val_discr_value.v.uval = value->v.uval;
21485 else
21486 attr.dw_attr_val.v.val_discr_value.v.sval = value->v.sval;
21487 add_dwarf_attr (die, &attr);
21490 /* Add DISCR_LIST as a DW_AT_discr_list to DIE. */
21492 static void
21493 add_discr_list (dw_die_ref die, dw_discr_list_ref discr_list)
21495 dw_attr_node attr;
21497 attr.dw_attr = DW_AT_discr_list;
21498 attr.dw_attr_val.val_class = dw_val_class_discr_list;
21499 attr.dw_attr_val.val_entry = NULL;
21500 attr.dw_attr_val.v.val_discr_list = discr_list;
21501 add_dwarf_attr (die, &attr);
21504 static inline dw_discr_list_ref
21505 AT_discr_list (dw_attr_node *attr)
21507 return attr->dw_attr_val.v.val_discr_list;
21510 #ifdef VMS_DEBUGGING_INFO
21511 /* Output the debug main pointer die for VMS */
21513 void
21514 dwarf2out_vms_debug_main_pointer (void)
21516 char label[MAX_ARTIFICIAL_LABEL_BYTES];
21517 dw_die_ref die;
21519 /* Allocate the VMS debug main subprogram die. */
21520 die = new_die_raw (DW_TAG_subprogram);
21521 add_name_attribute (die, VMS_DEBUG_MAIN_POINTER);
21522 ASM_GENERATE_INTERNAL_LABEL (label, PROLOGUE_END_LABEL,
21523 current_function_funcdef_no);
21524 add_AT_lbl_id (die, DW_AT_entry_pc, label);
21526 /* Make it the first child of comp_unit_die (). */
21527 die->die_parent = comp_unit_die ();
21528 if (comp_unit_die ()->die_child)
21530 die->die_sib = comp_unit_die ()->die_child->die_sib;
21531 comp_unit_die ()->die_child->die_sib = die;
21533 else
21535 die->die_sib = die;
21536 comp_unit_die ()->die_child = die;
21539 #endif /* VMS_DEBUGGING_INFO */
21541 /* walk_tree helper function for uses_local_type, below. */
21543 static tree
21544 uses_local_type_r (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
21546 if (!TYPE_P (*tp))
21547 *walk_subtrees = 0;
21548 else
21550 tree name = TYPE_NAME (*tp);
21551 if (name && DECL_P (name) && decl_function_context (name))
21552 return *tp;
21554 return NULL_TREE;
21557 /* If TYPE involves a function-local type (including a local typedef to a
21558 non-local type), returns that type; otherwise returns NULL_TREE. */
21560 static tree
21561 uses_local_type (tree type)
21563 tree used = walk_tree_without_duplicates (&type, uses_local_type_r, NULL);
21564 return used;
21567 /* Return the DIE for the scope that immediately contains this type.
21568 Non-named types that do not involve a function-local type get global
21569 scope. Named types nested in namespaces or other types get their
21570 containing scope. All other types (i.e. function-local named types) get
21571 the current active scope. */
21573 static dw_die_ref
21574 scope_die_for (tree t, dw_die_ref context_die)
21576 dw_die_ref scope_die = NULL;
21577 tree containing_scope;
21579 /* Non-types always go in the current scope. */
21580 gcc_assert (TYPE_P (t));
21582 /* Use the scope of the typedef, rather than the scope of the type
21583 it refers to. */
21584 if (TYPE_NAME (t) && DECL_P (TYPE_NAME (t)))
21585 containing_scope = DECL_CONTEXT (TYPE_NAME (t));
21586 else
21587 containing_scope = TYPE_CONTEXT (t);
21589 /* Use the containing namespace if there is one. */
21590 if (containing_scope && TREE_CODE (containing_scope) == NAMESPACE_DECL)
21592 if (context_die == lookup_decl_die (containing_scope))
21593 /* OK */;
21594 else if (debug_info_level > DINFO_LEVEL_TERSE)
21595 context_die = get_context_die (containing_scope);
21596 else
21597 containing_scope = NULL_TREE;
21600 /* Ignore function type "scopes" from the C frontend. They mean that
21601 a tagged type is local to a parmlist of a function declarator, but
21602 that isn't useful to DWARF. */
21603 if (containing_scope && TREE_CODE (containing_scope) == FUNCTION_TYPE)
21604 containing_scope = NULL_TREE;
21606 if (SCOPE_FILE_SCOPE_P (containing_scope))
21608 /* If T uses a local type keep it local as well, to avoid references
21609 to function-local DIEs from outside the function. */
21610 if (current_function_decl && uses_local_type (t))
21611 scope_die = context_die;
21612 else
21613 scope_die = comp_unit_die ();
21615 else if (TYPE_P (containing_scope))
21617 /* For types, we can just look up the appropriate DIE. */
21618 if (debug_info_level > DINFO_LEVEL_TERSE)
21619 scope_die = get_context_die (containing_scope);
21620 else
21622 scope_die = lookup_type_die_strip_naming_typedef (containing_scope);
21623 if (scope_die == NULL)
21624 scope_die = comp_unit_die ();
21627 else
21628 scope_die = context_die;
21630 return scope_die;
21633 /* Returns nonzero if CONTEXT_DIE is internal to a function. */
21635 static inline int
21636 local_scope_p (dw_die_ref context_die)
21638 for (; context_die; context_die = context_die->die_parent)
21639 if (context_die->die_tag == DW_TAG_inlined_subroutine
21640 || context_die->die_tag == DW_TAG_subprogram)
21641 return 1;
21643 return 0;
21646 /* Returns nonzero if CONTEXT_DIE is a class. */
21648 static inline int
21649 class_scope_p (dw_die_ref context_die)
21651 return (context_die
21652 && (context_die->die_tag == DW_TAG_structure_type
21653 || context_die->die_tag == DW_TAG_class_type
21654 || context_die->die_tag == DW_TAG_interface_type
21655 || context_die->die_tag == DW_TAG_union_type));
21658 /* Returns nonzero if CONTEXT_DIE is a class or namespace, for deciding
21659 whether or not to treat a DIE in this context as a declaration. */
21661 static inline int
21662 class_or_namespace_scope_p (dw_die_ref context_die)
21664 return (class_scope_p (context_die)
21665 || (context_die && context_die->die_tag == DW_TAG_namespace));
21668 /* Many forms of DIEs require a "type description" attribute. This
21669 routine locates the proper "type descriptor" die for the type given
21670 by 'type' plus any additional qualifiers given by 'cv_quals', and
21671 adds a DW_AT_type attribute below the given die. */
21673 static void
21674 add_type_attribute (dw_die_ref object_die, tree type, int cv_quals,
21675 bool reverse, dw_die_ref context_die)
21677 enum tree_code code = TREE_CODE (type);
21678 dw_die_ref type_die = NULL;
21680 /* ??? If this type is an unnamed subrange type of an integral, floating-point
21681 or fixed-point type, use the inner type. This is because we have no
21682 support for unnamed types in base_type_die. This can happen if this is
21683 an Ada subrange type. Correct solution is emit a subrange type die. */
21684 if ((code == INTEGER_TYPE || code == REAL_TYPE || code == FIXED_POINT_TYPE)
21685 && TREE_TYPE (type) != 0 && TYPE_NAME (type) == 0)
21686 type = TREE_TYPE (type), code = TREE_CODE (type);
21688 if (code == ERROR_MARK
21689 /* Handle a special case. For functions whose return type is void, we
21690 generate *no* type attribute. (Note that no object may have type
21691 `void', so this only applies to function return types). */
21692 || code == VOID_TYPE)
21693 return;
21695 type_die = modified_type_die (type,
21696 cv_quals | TYPE_QUALS (type),
21697 reverse,
21698 context_die);
21700 if (type_die != NULL)
21701 add_AT_die_ref (object_die, DW_AT_type, type_die);
21704 /* Given an object die, add the calling convention attribute for the
21705 function call type. */
21706 static void
21707 add_calling_convention_attribute (dw_die_ref subr_die, tree decl)
21709 enum dwarf_calling_convention value = DW_CC_normal;
21711 value = ((enum dwarf_calling_convention)
21712 targetm.dwarf_calling_convention (TREE_TYPE (decl)));
21714 if (is_fortran ()
21715 && id_equal (DECL_ASSEMBLER_NAME (decl), "MAIN__"))
21717 /* DWARF 2 doesn't provide a way to identify a program's source-level
21718 entry point. DW_AT_calling_convention attributes are only meant
21719 to describe functions' calling conventions. However, lacking a
21720 better way to signal the Fortran main program, we used this for
21721 a long time, following existing custom. Now, DWARF 4 has
21722 DW_AT_main_subprogram, which we add below, but some tools still
21723 rely on the old way, which we thus keep. */
21724 value = DW_CC_program;
21726 if (dwarf_version >= 4 || !dwarf_strict)
21727 add_AT_flag (subr_die, DW_AT_main_subprogram, 1);
21730 /* Only add the attribute if the backend requests it, and
21731 is not DW_CC_normal. */
21732 if (value && (value != DW_CC_normal))
21733 add_AT_unsigned (subr_die, DW_AT_calling_convention, value);
21736 /* Given a tree pointer to a struct, class, union, or enum type node, return
21737 a pointer to the (string) tag name for the given type, or zero if the type
21738 was declared without a tag. */
21740 static const char *
21741 type_tag (const_tree type)
21743 const char *name = 0;
21745 if (TYPE_NAME (type) != 0)
21747 tree t = 0;
21749 /* Find the IDENTIFIER_NODE for the type name. */
21750 if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE
21751 && !TYPE_NAMELESS (type))
21752 t = TYPE_NAME (type);
21754 /* The g++ front end makes the TYPE_NAME of *each* tagged type point to
21755 a TYPE_DECL node, regardless of whether or not a `typedef' was
21756 involved. */
21757 else if (TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
21758 && ! DECL_IGNORED_P (TYPE_NAME (type)))
21760 /* We want to be extra verbose. Don't call dwarf_name if
21761 DECL_NAME isn't set. The default hook for decl_printable_name
21762 doesn't like that, and in this context it's correct to return
21763 0, instead of "<anonymous>" or the like. */
21764 if (DECL_NAME (TYPE_NAME (type))
21765 && !DECL_NAMELESS (TYPE_NAME (type)))
21766 name = lang_hooks.dwarf_name (TYPE_NAME (type), 2);
21769 /* Now get the name as a string, or invent one. */
21770 if (!name && t != 0)
21771 name = IDENTIFIER_POINTER (t);
21774 return (name == 0 || *name == '\0') ? 0 : name;
21777 /* Return the type associated with a data member, make a special check
21778 for bit field types. */
21780 static inline tree
21781 member_declared_type (const_tree member)
21783 return (DECL_BIT_FIELD_TYPE (member)
21784 ? DECL_BIT_FIELD_TYPE (member) : TREE_TYPE (member));
21787 /* Get the decl's label, as described by its RTL. This may be different
21788 from the DECL_NAME name used in the source file. */
21790 #if 0
21791 static const char *
21792 decl_start_label (tree decl)
21794 rtx x;
21795 const char *fnname;
21797 x = DECL_RTL (decl);
21798 gcc_assert (MEM_P (x));
21800 x = XEXP (x, 0);
21801 gcc_assert (GET_CODE (x) == SYMBOL_REF);
21803 fnname = XSTR (x, 0);
21804 return fnname;
21806 #endif
21808 /* For variable-length arrays that have been previously generated, but
21809 may be incomplete due to missing subscript info, fill the subscript
21810 info. Return TRUE if this is one of those cases. */
21811 static bool
21812 fill_variable_array_bounds (tree type)
21814 if (TREE_ASM_WRITTEN (type)
21815 && TREE_CODE (type) == ARRAY_TYPE
21816 && variably_modified_type_p (type, NULL))
21818 dw_die_ref array_die = lookup_type_die (type);
21819 if (!array_die)
21820 return false;
21821 add_subscript_info (array_die, type, !is_ada ());
21822 return true;
21824 return false;
21827 /* These routines generate the internal representation of the DIE's for
21828 the compilation unit. Debugging information is collected by walking
21829 the declaration trees passed in from dwarf2out_decl(). */
21831 static void
21832 gen_array_type_die (tree type, dw_die_ref context_die)
21834 dw_die_ref array_die;
21836 /* GNU compilers represent multidimensional array types as sequences of one
21837 dimensional array types whose element types are themselves array types.
21838 We sometimes squish that down to a single array_type DIE with multiple
21839 subscripts in the Dwarf debugging info. The draft Dwarf specification
21840 say that we are allowed to do this kind of compression in C, because
21841 there is no difference between an array of arrays and a multidimensional
21842 array. We don't do this for Ada to remain as close as possible to the
21843 actual representation, which is especially important against the language
21844 flexibilty wrt arrays of variable size. */
21846 bool collapse_nested_arrays = !is_ada ();
21848 if (fill_variable_array_bounds (type))
21849 return;
21851 dw_die_ref scope_die = scope_die_for (type, context_die);
21852 tree element_type;
21854 /* Emit DW_TAG_string_type for Fortran character types (with kind 1 only, as
21855 DW_TAG_string_type doesn't have DW_AT_type attribute). */
21856 if (TREE_CODE (type) == ARRAY_TYPE
21857 && TYPE_STRING_FLAG (type)
21858 && is_fortran ()
21859 && TYPE_MODE (TREE_TYPE (type)) == TYPE_MODE (char_type_node))
21861 HOST_WIDE_INT size;
21863 array_die = new_die (DW_TAG_string_type, scope_die, type);
21864 add_name_attribute (array_die, type_tag (type));
21865 equate_type_number_to_die (type, array_die);
21866 size = int_size_in_bytes (type);
21867 if (size >= 0)
21868 add_AT_unsigned (array_die, DW_AT_byte_size, size);
21869 /* ??? We can't annotate types late, but for LTO we may not
21870 generate a location early either (gfortran.dg/save_6.f90). */
21871 else if (! (early_dwarf && (flag_generate_lto || flag_generate_offload))
21872 && TYPE_DOMAIN (type) != NULL_TREE
21873 && TYPE_MAX_VALUE (TYPE_DOMAIN (type)) != NULL_TREE)
21875 tree szdecl = TYPE_MAX_VALUE (TYPE_DOMAIN (type));
21876 tree rszdecl = szdecl;
21878 size = int_size_in_bytes (TREE_TYPE (szdecl));
21879 if (!DECL_P (szdecl))
21881 if (TREE_CODE (szdecl) == INDIRECT_REF
21882 && DECL_P (TREE_OPERAND (szdecl, 0)))
21884 rszdecl = TREE_OPERAND (szdecl, 0);
21885 if (int_size_in_bytes (TREE_TYPE (rszdecl))
21886 != DWARF2_ADDR_SIZE)
21887 size = 0;
21889 else
21890 size = 0;
21892 if (size > 0)
21894 dw_loc_list_ref loc
21895 = loc_list_from_tree (rszdecl, szdecl == rszdecl ? 2 : 0,
21896 NULL);
21897 if (loc)
21899 add_AT_location_description (array_die, DW_AT_string_length,
21900 loc);
21901 if (size != DWARF2_ADDR_SIZE)
21902 add_AT_unsigned (array_die, dwarf_version >= 5
21903 ? DW_AT_string_length_byte_size
21904 : DW_AT_byte_size, size);
21908 return;
21911 array_die = new_die (DW_TAG_array_type, scope_die, type);
21912 add_name_attribute (array_die, type_tag (type));
21913 equate_type_number_to_die (type, array_die);
21915 if (TREE_CODE (type) == VECTOR_TYPE)
21916 add_AT_flag (array_die, DW_AT_GNU_vector, 1);
21918 /* For Fortran multidimensional arrays use DW_ORD_col_major ordering. */
21919 if (is_fortran ()
21920 && TREE_CODE (type) == ARRAY_TYPE
21921 && TREE_CODE (TREE_TYPE (type)) == ARRAY_TYPE
21922 && !TYPE_STRING_FLAG (TREE_TYPE (type)))
21923 add_AT_unsigned (array_die, DW_AT_ordering, DW_ORD_col_major);
21925 #if 0
21926 /* We default the array ordering. Debuggers will probably do the right
21927 things even if DW_AT_ordering is not present. It's not even an issue
21928 until we start to get into multidimensional arrays anyway. If a debugger
21929 is ever caught doing the Wrong Thing for multi-dimensional arrays,
21930 then we'll have to put the DW_AT_ordering attribute back in. (But if
21931 and when we find out that we need to put these in, we will only do so
21932 for multidimensional arrays. */
21933 add_AT_unsigned (array_die, DW_AT_ordering, DW_ORD_row_major);
21934 #endif
21936 if (TREE_CODE (type) == VECTOR_TYPE)
21938 /* For VECTOR_TYPEs we use an array die with appropriate bounds. */
21939 dw_die_ref subrange_die = new_die (DW_TAG_subrange_type, array_die, NULL);
21940 add_bound_info (subrange_die, DW_AT_lower_bound, size_zero_node, NULL);
21941 add_bound_info (subrange_die, DW_AT_upper_bound,
21942 size_int (TYPE_VECTOR_SUBPARTS (type) - 1), NULL);
21944 else
21945 add_subscript_info (array_die, type, collapse_nested_arrays);
21947 /* Add representation of the type of the elements of this array type and
21948 emit the corresponding DIE if we haven't done it already. */
21949 element_type = TREE_TYPE (type);
21950 if (collapse_nested_arrays)
21951 while (TREE_CODE (element_type) == ARRAY_TYPE)
21953 if (TYPE_STRING_FLAG (element_type) && is_fortran ())
21954 break;
21955 element_type = TREE_TYPE (element_type);
21958 add_type_attribute (array_die, element_type, TYPE_UNQUALIFIED,
21959 TREE_CODE (type) == ARRAY_TYPE
21960 && TYPE_REVERSE_STORAGE_ORDER (type),
21961 context_die);
21963 add_gnat_descriptive_type_attribute (array_die, type, context_die);
21964 if (TYPE_ARTIFICIAL (type))
21965 add_AT_flag (array_die, DW_AT_artificial, 1);
21967 if (get_AT (array_die, DW_AT_name))
21968 add_pubtype (type, array_die);
21970 add_alignment_attribute (array_die, type);
21973 /* This routine generates DIE for array with hidden descriptor, details
21974 are filled into *info by a langhook. */
21976 static void
21977 gen_descr_array_type_die (tree type, struct array_descr_info *info,
21978 dw_die_ref context_die)
21980 const dw_die_ref scope_die = scope_die_for (type, context_die);
21981 const dw_die_ref array_die = new_die (DW_TAG_array_type, scope_die, type);
21982 struct loc_descr_context context = { type, info->base_decl, NULL,
21983 false, false };
21984 enum dwarf_tag subrange_tag = DW_TAG_subrange_type;
21985 int dim;
21987 add_name_attribute (array_die, type_tag (type));
21988 equate_type_number_to_die (type, array_die);
21990 if (info->ndimensions > 1)
21991 switch (info->ordering)
21993 case array_descr_ordering_row_major:
21994 add_AT_unsigned (array_die, DW_AT_ordering, DW_ORD_row_major);
21995 break;
21996 case array_descr_ordering_column_major:
21997 add_AT_unsigned (array_die, DW_AT_ordering, DW_ORD_col_major);
21998 break;
21999 default:
22000 break;
22003 if (dwarf_version >= 3 || !dwarf_strict)
22005 if (info->data_location)
22006 add_scalar_info (array_die, DW_AT_data_location, info->data_location,
22007 dw_scalar_form_exprloc, &context);
22008 if (info->associated)
22009 add_scalar_info (array_die, DW_AT_associated, info->associated,
22010 dw_scalar_form_constant
22011 | dw_scalar_form_exprloc
22012 | dw_scalar_form_reference, &context);
22013 if (info->allocated)
22014 add_scalar_info (array_die, DW_AT_allocated, info->allocated,
22015 dw_scalar_form_constant
22016 | dw_scalar_form_exprloc
22017 | dw_scalar_form_reference, &context);
22018 if (info->stride)
22020 const enum dwarf_attribute attr
22021 = (info->stride_in_bits) ? DW_AT_bit_stride : DW_AT_byte_stride;
22022 const int forms
22023 = (info->stride_in_bits)
22024 ? dw_scalar_form_constant
22025 : (dw_scalar_form_constant
22026 | dw_scalar_form_exprloc
22027 | dw_scalar_form_reference);
22029 add_scalar_info (array_die, attr, info->stride, forms, &context);
22032 if (dwarf_version >= 5)
22034 if (info->rank)
22036 add_scalar_info (array_die, DW_AT_rank, info->rank,
22037 dw_scalar_form_constant
22038 | dw_scalar_form_exprloc, &context);
22039 subrange_tag = DW_TAG_generic_subrange;
22040 context.placeholder_arg = true;
22044 add_gnat_descriptive_type_attribute (array_die, type, context_die);
22046 for (dim = 0; dim < info->ndimensions; dim++)
22048 dw_die_ref subrange_die = new_die (subrange_tag, array_die, NULL);
22050 if (info->dimen[dim].bounds_type)
22051 add_type_attribute (subrange_die,
22052 info->dimen[dim].bounds_type, TYPE_UNQUALIFIED,
22053 false, context_die);
22054 if (info->dimen[dim].lower_bound)
22055 add_bound_info (subrange_die, DW_AT_lower_bound,
22056 info->dimen[dim].lower_bound, &context);
22057 if (info->dimen[dim].upper_bound)
22058 add_bound_info (subrange_die, DW_AT_upper_bound,
22059 info->dimen[dim].upper_bound, &context);
22060 if ((dwarf_version >= 3 || !dwarf_strict) && info->dimen[dim].stride)
22061 add_scalar_info (subrange_die, DW_AT_byte_stride,
22062 info->dimen[dim].stride,
22063 dw_scalar_form_constant
22064 | dw_scalar_form_exprloc
22065 | dw_scalar_form_reference,
22066 &context);
22069 gen_type_die (info->element_type, context_die);
22070 add_type_attribute (array_die, info->element_type, TYPE_UNQUALIFIED,
22071 TREE_CODE (type) == ARRAY_TYPE
22072 && TYPE_REVERSE_STORAGE_ORDER (type),
22073 context_die);
22075 if (get_AT (array_die, DW_AT_name))
22076 add_pubtype (type, array_die);
22078 add_alignment_attribute (array_die, type);
22081 #if 0
22082 static void
22083 gen_entry_point_die (tree decl, dw_die_ref context_die)
22085 tree origin = decl_ultimate_origin (decl);
22086 dw_die_ref decl_die = new_die (DW_TAG_entry_point, context_die, decl);
22088 if (origin != NULL)
22089 add_abstract_origin_attribute (decl_die, origin);
22090 else
22092 add_name_and_src_coords_attributes (decl_die, decl);
22093 add_type_attribute (decl_die, TREE_TYPE (TREE_TYPE (decl)),
22094 TYPE_UNQUALIFIED, false, context_die);
22097 if (DECL_ABSTRACT_P (decl))
22098 equate_decl_number_to_die (decl, decl_die);
22099 else
22100 add_AT_lbl_id (decl_die, DW_AT_low_pc, decl_start_label (decl));
22102 #endif
22104 /* Walk through the list of incomplete types again, trying once more to
22105 emit full debugging info for them. */
22107 static void
22108 retry_incomplete_types (void)
22110 set_early_dwarf s;
22111 int i;
22113 for (i = vec_safe_length (incomplete_types) - 1; i >= 0; i--)
22114 if (should_emit_struct_debug ((*incomplete_types)[i], DINFO_USAGE_DIR_USE))
22115 gen_type_die ((*incomplete_types)[i], comp_unit_die ());
22116 vec_safe_truncate (incomplete_types, 0);
22119 /* Determine what tag to use for a record type. */
22121 static enum dwarf_tag
22122 record_type_tag (tree type)
22124 if (! lang_hooks.types.classify_record)
22125 return DW_TAG_structure_type;
22127 switch (lang_hooks.types.classify_record (type))
22129 case RECORD_IS_STRUCT:
22130 return DW_TAG_structure_type;
22132 case RECORD_IS_CLASS:
22133 return DW_TAG_class_type;
22135 case RECORD_IS_INTERFACE:
22136 if (dwarf_version >= 3 || !dwarf_strict)
22137 return DW_TAG_interface_type;
22138 return DW_TAG_structure_type;
22140 default:
22141 gcc_unreachable ();
22145 /* Generate a DIE to represent an enumeration type. Note that these DIEs
22146 include all of the information about the enumeration values also. Each
22147 enumerated type name/value is listed as a child of the enumerated type
22148 DIE. */
22150 static dw_die_ref
22151 gen_enumeration_type_die (tree type, dw_die_ref context_die)
22153 dw_die_ref type_die = lookup_type_die (type);
22154 dw_die_ref orig_type_die = type_die;
22156 if (type_die == NULL)
22158 type_die = new_die (DW_TAG_enumeration_type,
22159 scope_die_for (type, context_die), type);
22160 equate_type_number_to_die (type, type_die);
22161 add_name_attribute (type_die, type_tag (type));
22162 if ((dwarf_version >= 4 || !dwarf_strict)
22163 && ENUM_IS_SCOPED (type))
22164 add_AT_flag (type_die, DW_AT_enum_class, 1);
22165 if (ENUM_IS_OPAQUE (type) && TYPE_SIZE (type))
22166 add_AT_flag (type_die, DW_AT_declaration, 1);
22167 if (!dwarf_strict)
22168 add_AT_unsigned (type_die, DW_AT_encoding,
22169 TYPE_UNSIGNED (type)
22170 ? DW_ATE_unsigned
22171 : DW_ATE_signed);
22173 else if (! TYPE_SIZE (type) || ENUM_IS_OPAQUE (type))
22174 return type_die;
22175 else
22176 remove_AT (type_die, DW_AT_declaration);
22178 /* Handle a GNU C/C++ extension, i.e. incomplete enum types. If the
22179 given enum type is incomplete, do not generate the DW_AT_byte_size
22180 attribute or the DW_AT_element_list attribute. */
22181 if (TYPE_SIZE (type))
22183 tree link;
22185 if (!ENUM_IS_OPAQUE (type))
22186 TREE_ASM_WRITTEN (type) = 1;
22187 if (!orig_type_die || !get_AT (type_die, DW_AT_byte_size))
22188 add_byte_size_attribute (type_die, type);
22189 if (!orig_type_die || !get_AT (type_die, DW_AT_alignment))
22190 add_alignment_attribute (type_die, type);
22191 if ((dwarf_version >= 3 || !dwarf_strict)
22192 && (!orig_type_die || !get_AT (type_die, DW_AT_type)))
22194 tree underlying = lang_hooks.types.enum_underlying_base_type (type);
22195 add_type_attribute (type_die, underlying, TYPE_UNQUALIFIED, false,
22196 context_die);
22198 if (TYPE_STUB_DECL (type) != NULL_TREE)
22200 if (!orig_type_die || !get_AT (type_die, DW_AT_decl_file))
22201 add_src_coords_attributes (type_die, TYPE_STUB_DECL (type));
22202 if (!orig_type_die || !get_AT (type_die, DW_AT_accessibility))
22203 add_accessibility_attribute (type_die, TYPE_STUB_DECL (type));
22206 /* If the first reference to this type was as the return type of an
22207 inline function, then it may not have a parent. Fix this now. */
22208 if (type_die->die_parent == NULL)
22209 add_child_die (scope_die_for (type, context_die), type_die);
22211 for (link = TYPE_VALUES (type);
22212 link != NULL; link = TREE_CHAIN (link))
22214 dw_die_ref enum_die = new_die (DW_TAG_enumerator, type_die, link);
22215 tree value = TREE_VALUE (link);
22217 gcc_assert (!ENUM_IS_OPAQUE (type));
22218 add_name_attribute (enum_die,
22219 IDENTIFIER_POINTER (TREE_PURPOSE (link)));
22221 if (TREE_CODE (value) == CONST_DECL)
22222 value = DECL_INITIAL (value);
22224 if (simple_type_size_in_bits (TREE_TYPE (value))
22225 <= HOST_BITS_PER_WIDE_INT || tree_fits_shwi_p (value))
22227 /* For constant forms created by add_AT_unsigned DWARF
22228 consumers (GDB, elfutils, etc.) always zero extend
22229 the value. Only when the actual value is negative
22230 do we need to use add_AT_int to generate a constant
22231 form that can represent negative values. */
22232 HOST_WIDE_INT val = TREE_INT_CST_LOW (value);
22233 if (TYPE_UNSIGNED (TREE_TYPE (value)) || val >= 0)
22234 add_AT_unsigned (enum_die, DW_AT_const_value,
22235 (unsigned HOST_WIDE_INT) val);
22236 else
22237 add_AT_int (enum_die, DW_AT_const_value, val);
22239 else
22240 /* Enumeration constants may be wider than HOST_WIDE_INT. Handle
22241 that here. TODO: This should be re-worked to use correct
22242 signed/unsigned double tags for all cases. */
22243 add_AT_wide (enum_die, DW_AT_const_value, wi::to_wide (value));
22246 add_gnat_descriptive_type_attribute (type_die, type, context_die);
22247 if (TYPE_ARTIFICIAL (type)
22248 && (!orig_type_die || !get_AT (type_die, DW_AT_artificial)))
22249 add_AT_flag (type_die, DW_AT_artificial, 1);
22251 else
22252 add_AT_flag (type_die, DW_AT_declaration, 1);
22254 add_pubtype (type, type_die);
22256 return type_die;
22259 /* Generate a DIE to represent either a real live formal parameter decl or to
22260 represent just the type of some formal parameter position in some function
22261 type.
22263 Note that this routine is a bit unusual because its argument may be a
22264 ..._DECL node (i.e. either a PARM_DECL or perhaps a VAR_DECL which
22265 represents an inlining of some PARM_DECL) or else some sort of a ..._TYPE
22266 node. If it's the former then this function is being called to output a
22267 DIE to represent a formal parameter object (or some inlining thereof). If
22268 it's the latter, then this function is only being called to output a
22269 DW_TAG_formal_parameter DIE to stand as a placeholder for some formal
22270 argument type of some subprogram type.
22271 If EMIT_NAME_P is true, name and source coordinate attributes
22272 are emitted. */
22274 static dw_die_ref
22275 gen_formal_parameter_die (tree node, tree origin, bool emit_name_p,
22276 dw_die_ref context_die)
22278 tree node_or_origin = node ? node : origin;
22279 tree ultimate_origin;
22280 dw_die_ref parm_die = NULL;
22282 if (DECL_P (node_or_origin))
22284 parm_die = lookup_decl_die (node);
22286 /* If the contexts differ, we may not be talking about the same
22287 thing.
22288 ??? When in LTO the DIE parent is the "abstract" copy and the
22289 context_die is the specification "copy". But this whole block
22290 should eventually be no longer needed. */
22291 if (parm_die && parm_die->die_parent != context_die && !in_lto_p)
22293 if (!DECL_ABSTRACT_P (node))
22295 /* This can happen when creating an inlined instance, in
22296 which case we need to create a new DIE that will get
22297 annotated with DW_AT_abstract_origin. */
22298 parm_die = NULL;
22300 else
22301 gcc_unreachable ();
22304 if (parm_die && parm_die->die_parent == NULL)
22306 /* Check that parm_die already has the right attributes that
22307 we would have added below. If any attributes are
22308 missing, fall through to add them. */
22309 if (! DECL_ABSTRACT_P (node_or_origin)
22310 && !get_AT (parm_die, DW_AT_location)
22311 && !get_AT (parm_die, DW_AT_const_value))
22312 /* We are missing location info, and are about to add it. */
22314 else
22316 add_child_die (context_die, parm_die);
22317 return parm_die;
22322 /* If we have a previously generated DIE, use it, unless this is an
22323 concrete instance (origin != NULL), in which case we need a new
22324 DIE with a corresponding DW_AT_abstract_origin. */
22325 bool reusing_die;
22326 if (parm_die && origin == NULL)
22327 reusing_die = true;
22328 else
22330 parm_die = new_die (DW_TAG_formal_parameter, context_die, node);
22331 reusing_die = false;
22334 switch (TREE_CODE_CLASS (TREE_CODE (node_or_origin)))
22336 case tcc_declaration:
22337 ultimate_origin = decl_ultimate_origin (node_or_origin);
22338 if (node || ultimate_origin)
22339 origin = ultimate_origin;
22341 if (reusing_die)
22342 goto add_location;
22344 if (origin != NULL)
22345 add_abstract_origin_attribute (parm_die, origin);
22346 else if (emit_name_p)
22347 add_name_and_src_coords_attributes (parm_die, node);
22348 if (origin == NULL
22349 || (! DECL_ABSTRACT_P (node_or_origin)
22350 && variably_modified_type_p (TREE_TYPE (node_or_origin),
22351 decl_function_context
22352 (node_or_origin))))
22354 tree type = TREE_TYPE (node_or_origin);
22355 if (decl_by_reference_p (node_or_origin))
22356 add_type_attribute (parm_die, TREE_TYPE (type),
22357 TYPE_UNQUALIFIED,
22358 false, context_die);
22359 else
22360 add_type_attribute (parm_die, type,
22361 decl_quals (node_or_origin),
22362 false, context_die);
22364 if (origin == NULL && DECL_ARTIFICIAL (node))
22365 add_AT_flag (parm_die, DW_AT_artificial, 1);
22366 add_location:
22367 if (node && node != origin)
22368 equate_decl_number_to_die (node, parm_die);
22369 if (! DECL_ABSTRACT_P (node_or_origin))
22370 add_location_or_const_value_attribute (parm_die, node_or_origin,
22371 node == NULL);
22373 break;
22375 case tcc_type:
22376 /* We were called with some kind of a ..._TYPE node. */
22377 add_type_attribute (parm_die, node_or_origin, TYPE_UNQUALIFIED, false,
22378 context_die);
22379 break;
22381 default:
22382 gcc_unreachable ();
22385 return parm_die;
22388 /* Generate and return a DW_TAG_GNU_formal_parameter_pack. Also generate
22389 children DW_TAG_formal_parameter DIEs representing the arguments of the
22390 parameter pack.
22392 PARM_PACK must be a function parameter pack.
22393 PACK_ARG is the first argument of the parameter pack. Its TREE_CHAIN
22394 must point to the subsequent arguments of the function PACK_ARG belongs to.
22395 SUBR_DIE is the DIE of the function PACK_ARG belongs to.
22396 If NEXT_ARG is non NULL, *NEXT_ARG is set to the function argument
22397 following the last one for which a DIE was generated. */
22399 static dw_die_ref
22400 gen_formal_parameter_pack_die (tree parm_pack,
22401 tree pack_arg,
22402 dw_die_ref subr_die,
22403 tree *next_arg)
22405 tree arg;
22406 dw_die_ref parm_pack_die;
22408 gcc_assert (parm_pack
22409 && lang_hooks.function_parameter_pack_p (parm_pack)
22410 && subr_die);
22412 parm_pack_die = new_die (DW_TAG_GNU_formal_parameter_pack, subr_die, parm_pack);
22413 add_src_coords_attributes (parm_pack_die, parm_pack);
22415 for (arg = pack_arg; arg; arg = DECL_CHAIN (arg))
22417 if (! lang_hooks.decls.function_parm_expanded_from_pack_p (arg,
22418 parm_pack))
22419 break;
22420 gen_formal_parameter_die (arg, NULL,
22421 false /* Don't emit name attribute. */,
22422 parm_pack_die);
22424 if (next_arg)
22425 *next_arg = arg;
22426 return parm_pack_die;
22429 /* Generate a special type of DIE used as a stand-in for a trailing ellipsis
22430 at the end of an (ANSI prototyped) formal parameters list. */
22432 static void
22433 gen_unspecified_parameters_die (tree decl_or_type, dw_die_ref context_die)
22435 new_die (DW_TAG_unspecified_parameters, context_die, decl_or_type);
22438 /* Generate a list of nameless DW_TAG_formal_parameter DIEs (and perhaps a
22439 DW_TAG_unspecified_parameters DIE) to represent the types of the formal
22440 parameters as specified in some function type specification (except for
22441 those which appear as part of a function *definition*). */
22443 static void
22444 gen_formal_types_die (tree function_or_method_type, dw_die_ref context_die)
22446 tree link;
22447 tree formal_type = NULL;
22448 tree first_parm_type;
22449 tree arg;
22451 if (TREE_CODE (function_or_method_type) == FUNCTION_DECL)
22453 arg = DECL_ARGUMENTS (function_or_method_type);
22454 function_or_method_type = TREE_TYPE (function_or_method_type);
22456 else
22457 arg = NULL_TREE;
22459 first_parm_type = TYPE_ARG_TYPES (function_or_method_type);
22461 /* Make our first pass over the list of formal parameter types and output a
22462 DW_TAG_formal_parameter DIE for each one. */
22463 for (link = first_parm_type; link; )
22465 dw_die_ref parm_die;
22467 formal_type = TREE_VALUE (link);
22468 if (formal_type == void_type_node)
22469 break;
22471 /* Output a (nameless) DIE to represent the formal parameter itself. */
22472 parm_die = gen_formal_parameter_die (formal_type, NULL,
22473 true /* Emit name attribute. */,
22474 context_die);
22475 if (TREE_CODE (function_or_method_type) == METHOD_TYPE
22476 && link == first_parm_type)
22478 add_AT_flag (parm_die, DW_AT_artificial, 1);
22479 if (dwarf_version >= 3 || !dwarf_strict)
22480 add_AT_die_ref (context_die, DW_AT_object_pointer, parm_die);
22482 else if (arg && DECL_ARTIFICIAL (arg))
22483 add_AT_flag (parm_die, DW_AT_artificial, 1);
22485 link = TREE_CHAIN (link);
22486 if (arg)
22487 arg = DECL_CHAIN (arg);
22490 /* If this function type has an ellipsis, add a
22491 DW_TAG_unspecified_parameters DIE to the end of the parameter list. */
22492 if (formal_type != void_type_node)
22493 gen_unspecified_parameters_die (function_or_method_type, context_die);
22495 /* Make our second (and final) pass over the list of formal parameter types
22496 and output DIEs to represent those types (as necessary). */
22497 for (link = TYPE_ARG_TYPES (function_or_method_type);
22498 link && TREE_VALUE (link);
22499 link = TREE_CHAIN (link))
22500 gen_type_die (TREE_VALUE (link), context_die);
22503 /* We want to generate the DIE for TYPE so that we can generate the
22504 die for MEMBER, which has been defined; we will need to refer back
22505 to the member declaration nested within TYPE. If we're trying to
22506 generate minimal debug info for TYPE, processing TYPE won't do the
22507 trick; we need to attach the member declaration by hand. */
22509 static void
22510 gen_type_die_for_member (tree type, tree member, dw_die_ref context_die)
22512 gen_type_die (type, context_die);
22514 /* If we're trying to avoid duplicate debug info, we may not have
22515 emitted the member decl for this function. Emit it now. */
22516 if (TYPE_STUB_DECL (type)
22517 && TYPE_DECL_SUPPRESS_DEBUG (TYPE_STUB_DECL (type))
22518 && ! lookup_decl_die (member))
22520 dw_die_ref type_die;
22521 gcc_assert (!decl_ultimate_origin (member));
22523 type_die = lookup_type_die_strip_naming_typedef (type);
22524 if (TREE_CODE (member) == FUNCTION_DECL)
22525 gen_subprogram_die (member, type_die);
22526 else if (TREE_CODE (member) == FIELD_DECL)
22528 /* Ignore the nameless fields that are used to skip bits but handle
22529 C++ anonymous unions and structs. */
22530 if (DECL_NAME (member) != NULL_TREE
22531 || TREE_CODE (TREE_TYPE (member)) == UNION_TYPE
22532 || TREE_CODE (TREE_TYPE (member)) == RECORD_TYPE)
22534 struct vlr_context vlr_ctx = {
22535 DECL_CONTEXT (member), /* struct_type */
22536 NULL_TREE /* variant_part_offset */
22538 gen_type_die (member_declared_type (member), type_die);
22539 gen_field_die (member, &vlr_ctx, type_die);
22542 else
22543 gen_variable_die (member, NULL_TREE, type_die);
22547 /* Forward declare these functions, because they are mutually recursive
22548 with their set_block_* pairing functions. */
22549 static void set_decl_origin_self (tree);
22551 /* Given a pointer to some BLOCK node, if the BLOCK_ABSTRACT_ORIGIN for the
22552 given BLOCK node is NULL, set the BLOCK_ABSTRACT_ORIGIN for the node so
22553 that it points to the node itself, thus indicating that the node is its
22554 own (abstract) origin. Additionally, if the BLOCK_ABSTRACT_ORIGIN for
22555 the given node is NULL, recursively descend the decl/block tree which
22556 it is the root of, and for each other ..._DECL or BLOCK node contained
22557 therein whose DECL_ABSTRACT_ORIGINs or BLOCK_ABSTRACT_ORIGINs are also
22558 still NULL, set *their* DECL_ABSTRACT_ORIGIN or BLOCK_ABSTRACT_ORIGIN
22559 values to point to themselves. */
22561 static void
22562 set_block_origin_self (tree stmt)
22564 if (BLOCK_ABSTRACT_ORIGIN (stmt) == NULL_TREE)
22566 BLOCK_ABSTRACT_ORIGIN (stmt) = stmt;
22569 tree local_decl;
22571 for (local_decl = BLOCK_VARS (stmt);
22572 local_decl != NULL_TREE;
22573 local_decl = DECL_CHAIN (local_decl))
22574 /* Do not recurse on nested functions since the inlining status
22575 of parent and child can be different as per the DWARF spec. */
22576 if (TREE_CODE (local_decl) != FUNCTION_DECL
22577 && !DECL_EXTERNAL (local_decl))
22578 set_decl_origin_self (local_decl);
22582 tree subblock;
22584 for (subblock = BLOCK_SUBBLOCKS (stmt);
22585 subblock != NULL_TREE;
22586 subblock = BLOCK_CHAIN (subblock))
22587 set_block_origin_self (subblock); /* Recurse. */
22592 /* Given a pointer to some ..._DECL node, if the DECL_ABSTRACT_ORIGIN for
22593 the given ..._DECL node is NULL, set the DECL_ABSTRACT_ORIGIN for the
22594 node to so that it points to the node itself, thus indicating that the
22595 node represents its own (abstract) origin. Additionally, if the
22596 DECL_ABSTRACT_ORIGIN for the given node is NULL, recursively descend
22597 the decl/block tree of which the given node is the root of, and for
22598 each other ..._DECL or BLOCK node contained therein whose
22599 DECL_ABSTRACT_ORIGINs or BLOCK_ABSTRACT_ORIGINs are also still NULL,
22600 set *their* DECL_ABSTRACT_ORIGIN or BLOCK_ABSTRACT_ORIGIN values to
22601 point to themselves. */
22603 static void
22604 set_decl_origin_self (tree decl)
22606 if (DECL_ABSTRACT_ORIGIN (decl) == NULL_TREE)
22608 DECL_ABSTRACT_ORIGIN (decl) = decl;
22609 if (TREE_CODE (decl) == FUNCTION_DECL)
22611 tree arg;
22613 for (arg = DECL_ARGUMENTS (decl); arg; arg = DECL_CHAIN (arg))
22614 DECL_ABSTRACT_ORIGIN (arg) = arg;
22615 if (DECL_INITIAL (decl) != NULL_TREE
22616 && DECL_INITIAL (decl) != error_mark_node)
22617 set_block_origin_self (DECL_INITIAL (decl));
22622 /* Mark the early DIE for DECL as the abstract instance. */
22624 static void
22625 dwarf2out_abstract_function (tree decl)
22627 dw_die_ref old_die;
22629 /* Make sure we have the actual abstract inline, not a clone. */
22630 decl = DECL_ORIGIN (decl);
22632 if (DECL_IGNORED_P (decl))
22633 return;
22635 /* In LTO we're all set. We already created abstract instances
22636 early and we want to avoid creating a concrete instance of that
22637 if we don't output it. */
22638 if (in_lto_p)
22639 return;
22641 old_die = lookup_decl_die (decl);
22642 gcc_assert (old_die != NULL);
22643 if (get_AT (old_die, DW_AT_inline))
22644 /* We've already generated the abstract instance. */
22645 return;
22647 /* Go ahead and put DW_AT_inline on the DIE. */
22648 if (DECL_DECLARED_INLINE_P (decl))
22650 if (cgraph_function_possibly_inlined_p (decl))
22651 add_AT_unsigned (old_die, DW_AT_inline, DW_INL_declared_inlined);
22652 else
22653 add_AT_unsigned (old_die, DW_AT_inline, DW_INL_declared_not_inlined);
22655 else
22657 if (cgraph_function_possibly_inlined_p (decl))
22658 add_AT_unsigned (old_die, DW_AT_inline, DW_INL_inlined);
22659 else
22660 add_AT_unsigned (old_die, DW_AT_inline, DW_INL_not_inlined);
22663 if (DECL_DECLARED_INLINE_P (decl)
22664 && lookup_attribute ("artificial", DECL_ATTRIBUTES (decl)))
22665 add_AT_flag (old_die, DW_AT_artificial, 1);
22667 set_decl_origin_self (decl);
22670 /* Helper function of premark_used_types() which gets called through
22671 htab_traverse.
22673 Marks the DIE of a given type in *SLOT as perennial, so it never gets
22674 marked as unused by prune_unused_types. */
22676 bool
22677 premark_used_types_helper (tree const &type, void *)
22679 dw_die_ref die;
22681 die = lookup_type_die (type);
22682 if (die != NULL)
22683 die->die_perennial_p = 1;
22684 return true;
22687 /* Helper function of premark_types_used_by_global_vars which gets called
22688 through htab_traverse.
22690 Marks the DIE of a given type in *SLOT as perennial, so it never gets
22691 marked as unused by prune_unused_types. The DIE of the type is marked
22692 only if the global variable using the type will actually be emitted. */
22695 premark_types_used_by_global_vars_helper (types_used_by_vars_entry **slot,
22696 void *)
22698 struct types_used_by_vars_entry *entry;
22699 dw_die_ref die;
22701 entry = (struct types_used_by_vars_entry *) *slot;
22702 gcc_assert (entry->type != NULL
22703 && entry->var_decl != NULL);
22704 die = lookup_type_die (entry->type);
22705 if (die)
22707 /* Ask cgraph if the global variable really is to be emitted.
22708 If yes, then we'll keep the DIE of ENTRY->TYPE. */
22709 varpool_node *node = varpool_node::get (entry->var_decl);
22710 if (node && node->definition)
22712 die->die_perennial_p = 1;
22713 /* Keep the parent DIEs as well. */
22714 while ((die = die->die_parent) && die->die_perennial_p == 0)
22715 die->die_perennial_p = 1;
22718 return 1;
22721 /* Mark all members of used_types_hash as perennial. */
22723 static void
22724 premark_used_types (struct function *fun)
22726 if (fun && fun->used_types_hash)
22727 fun->used_types_hash->traverse<void *, premark_used_types_helper> (NULL);
22730 /* Mark all members of types_used_by_vars_entry as perennial. */
22732 static void
22733 premark_types_used_by_global_vars (void)
22735 if (types_used_by_vars_hash)
22736 types_used_by_vars_hash
22737 ->traverse<void *, premark_types_used_by_global_vars_helper> (NULL);
22740 /* Mark all variables used by the symtab as perennial. */
22742 static void
22743 premark_used_variables (void)
22745 /* Mark DIEs in the symtab as used. */
22746 varpool_node *var;
22747 FOR_EACH_VARIABLE (var)
22749 dw_die_ref die = lookup_decl_die (var->decl);
22750 if (die)
22751 die->die_perennial_p = 1;
22755 /* Generate a DW_TAG_call_site DIE in function DECL under SUBR_DIE
22756 for CA_LOC call arg loc node. */
22758 static dw_die_ref
22759 gen_call_site_die (tree decl, dw_die_ref subr_die,
22760 struct call_arg_loc_node *ca_loc)
22762 dw_die_ref stmt_die = NULL, die;
22763 tree block = ca_loc->block;
22765 while (block
22766 && block != DECL_INITIAL (decl)
22767 && TREE_CODE (block) == BLOCK)
22769 stmt_die = lookup_block_die (block);
22770 if (stmt_die)
22771 break;
22772 block = BLOCK_SUPERCONTEXT (block);
22774 if (stmt_die == NULL)
22775 stmt_die = subr_die;
22776 die = new_die (dwarf_TAG (DW_TAG_call_site), stmt_die, NULL_TREE);
22777 add_AT_lbl_id (die, dwarf_AT (DW_AT_call_return_pc), ca_loc->label);
22778 if (ca_loc->tail_call_p)
22779 add_AT_flag (die, dwarf_AT (DW_AT_call_tail_call), 1);
22780 if (ca_loc->symbol_ref)
22782 dw_die_ref tdie = lookup_decl_die (SYMBOL_REF_DECL (ca_loc->symbol_ref));
22783 if (tdie)
22784 add_AT_die_ref (die, dwarf_AT (DW_AT_call_origin), tdie);
22785 else
22786 add_AT_addr (die, dwarf_AT (DW_AT_call_origin), ca_loc->symbol_ref,
22787 false);
22789 return die;
22792 /* Generate a DIE to represent a declared function (either file-scope or
22793 block-local). */
22795 static void
22796 gen_subprogram_die (tree decl, dw_die_ref context_die)
22798 tree origin = decl_ultimate_origin (decl);
22799 dw_die_ref subr_die;
22800 dw_die_ref old_die = lookup_decl_die (decl);
22802 /* This function gets called multiple times for different stages of
22803 the debug process. For example, for func() in this code:
22805 namespace S
22807 void func() { ... }
22810 ...we get called 4 times. Twice in early debug and twice in
22811 late debug:
22813 Early debug
22814 -----------
22816 1. Once while generating func() within the namespace. This is
22817 the declaration. The declaration bit below is set, as the
22818 context is the namespace.
22820 A new DIE will be generated with DW_AT_declaration set.
22822 2. Once for func() itself. This is the specification. The
22823 declaration bit below is clear as the context is the CU.
22825 We will use the cached DIE from (1) to create a new DIE with
22826 DW_AT_specification pointing to the declaration in (1).
22828 Late debug via rest_of_handle_final()
22829 -------------------------------------
22831 3. Once generating func() within the namespace. This is also the
22832 declaration, as in (1), but this time we will early exit below
22833 as we have a cached DIE and a declaration needs no additional
22834 annotations (no locations), as the source declaration line
22835 info is enough.
22837 4. Once for func() itself. As in (2), this is the specification,
22838 but this time we will re-use the cached DIE, and just annotate
22839 it with the location information that should now be available.
22841 For something without namespaces, but with abstract instances, we
22842 are also called a multiple times:
22844 class Base
22846 public:
22847 Base (); // constructor declaration (1)
22850 Base::Base () { } // constructor specification (2)
22852 Early debug
22853 -----------
22855 1. Once for the Base() constructor by virtue of it being a
22856 member of the Base class. This is done via
22857 rest_of_type_compilation.
22859 This is a declaration, so a new DIE will be created with
22860 DW_AT_declaration.
22862 2. Once for the Base() constructor definition, but this time
22863 while generating the abstract instance of the base
22864 constructor (__base_ctor) which is being generated via early
22865 debug of reachable functions.
22867 Even though we have a cached version of the declaration (1),
22868 we will create a DW_AT_specification of the declaration DIE
22869 in (1).
22871 3. Once for the __base_ctor itself, but this time, we generate
22872 an DW_AT_abstract_origin version of the DW_AT_specification in
22873 (2).
22875 Late debug via rest_of_handle_final
22876 -----------------------------------
22878 4. One final time for the __base_ctor (which will have a cached
22879 DIE with DW_AT_abstract_origin created in (3). This time,
22880 we will just annotate the location information now
22881 available.
22883 int declaration = (current_function_decl != decl
22884 || class_or_namespace_scope_p (context_die));
22886 /* A declaration that has been previously dumped needs no
22887 additional information. */
22888 if (old_die && declaration)
22889 return;
22891 /* Now that the C++ front end lazily declares artificial member fns, we
22892 might need to retrofit the declaration into its class. */
22893 if (!declaration && !origin && !old_die
22894 && DECL_CONTEXT (decl) && TYPE_P (DECL_CONTEXT (decl))
22895 && !class_or_namespace_scope_p (context_die)
22896 && debug_info_level > DINFO_LEVEL_TERSE)
22897 old_die = force_decl_die (decl);
22899 /* A concrete instance, tag a new DIE with DW_AT_abstract_origin. */
22900 if (origin != NULL)
22902 gcc_assert (!declaration || local_scope_p (context_die));
22904 /* Fixup die_parent for the abstract instance of a nested
22905 inline function. */
22906 if (old_die && old_die->die_parent == NULL)
22907 add_child_die (context_die, old_die);
22909 if (old_die && get_AT_ref (old_die, DW_AT_abstract_origin))
22911 /* If we have a DW_AT_abstract_origin we have a working
22912 cached version. */
22913 subr_die = old_die;
22915 else
22917 subr_die = new_die (DW_TAG_subprogram, context_die, decl);
22918 add_abstract_origin_attribute (subr_die, origin);
22919 /* This is where the actual code for a cloned function is.
22920 Let's emit linkage name attribute for it. This helps
22921 debuggers to e.g, set breakpoints into
22922 constructors/destructors when the user asks "break
22923 K::K". */
22924 add_linkage_name (subr_die, decl);
22927 /* A cached copy, possibly from early dwarf generation. Reuse as
22928 much as possible. */
22929 else if (old_die)
22931 if (!get_AT_flag (old_die, DW_AT_declaration)
22932 /* We can have a normal definition following an inline one in the
22933 case of redefinition of GNU C extern inlines.
22934 It seems reasonable to use AT_specification in this case. */
22935 && !get_AT (old_die, DW_AT_inline))
22937 /* Detect and ignore this case, where we are trying to output
22938 something we have already output. */
22939 if (get_AT (old_die, DW_AT_low_pc)
22940 || get_AT (old_die, DW_AT_ranges))
22941 return;
22943 /* If we have no location information, this must be a
22944 partially generated DIE from early dwarf generation.
22945 Fall through and generate it. */
22948 /* If the definition comes from the same place as the declaration,
22949 maybe use the old DIE. We always want the DIE for this function
22950 that has the *_pc attributes to be under comp_unit_die so the
22951 debugger can find it. We also need to do this for abstract
22952 instances of inlines, since the spec requires the out-of-line copy
22953 to have the same parent. For local class methods, this doesn't
22954 apply; we just use the old DIE. */
22955 expanded_location s = expand_location (DECL_SOURCE_LOCATION (decl));
22956 struct dwarf_file_data * file_index = lookup_filename (s.file);
22957 if (((is_unit_die (old_die->die_parent)
22958 /* This condition fixes the inconsistency/ICE with the
22959 following Fortran test (or some derivative thereof) while
22960 building libgfortran:
22962 module some_m
22963 contains
22964 logical function funky (FLAG)
22965 funky = .true.
22966 end function
22967 end module
22969 || (old_die->die_parent
22970 && old_die->die_parent->die_tag == DW_TAG_module)
22971 || local_scope_p (old_die->die_parent)
22972 || context_die == NULL)
22973 && (DECL_ARTIFICIAL (decl)
22974 || (get_AT_file (old_die, DW_AT_decl_file) == file_index
22975 && (get_AT_unsigned (old_die, DW_AT_decl_line)
22976 == (unsigned) s.line)
22977 && (!debug_column_info
22978 || s.column == 0
22979 || (get_AT_unsigned (old_die, DW_AT_decl_column)
22980 == (unsigned) s.column)))))
22981 /* With LTO if there's an abstract instance for
22982 the old DIE, this is a concrete instance and
22983 thus re-use the DIE. */
22984 || get_AT (old_die, DW_AT_abstract_origin))
22986 subr_die = old_die;
22988 /* Clear out the declaration attribute, but leave the
22989 parameters so they can be augmented with location
22990 information later. Unless this was a declaration, in
22991 which case, wipe out the nameless parameters and recreate
22992 them further down. */
22993 if (remove_AT (subr_die, DW_AT_declaration))
22996 remove_AT (subr_die, DW_AT_object_pointer);
22997 remove_child_TAG (subr_die, DW_TAG_formal_parameter);
23000 /* Make a specification pointing to the previously built
23001 declaration. */
23002 else
23004 subr_die = new_die (DW_TAG_subprogram, context_die, decl);
23005 add_AT_specification (subr_die, old_die);
23006 add_pubname (decl, subr_die);
23007 if (get_AT_file (old_die, DW_AT_decl_file) != file_index)
23008 add_AT_file (subr_die, DW_AT_decl_file, file_index);
23009 if (get_AT_unsigned (old_die, DW_AT_decl_line) != (unsigned) s.line)
23010 add_AT_unsigned (subr_die, DW_AT_decl_line, s.line);
23011 if (debug_column_info
23012 && s.column
23013 && (get_AT_unsigned (old_die, DW_AT_decl_column)
23014 != (unsigned) s.column))
23015 add_AT_unsigned (subr_die, DW_AT_decl_column, s.column);
23017 /* If the prototype had an 'auto' or 'decltype(auto)' return type,
23018 emit the real type on the definition die. */
23019 if (is_cxx () && debug_info_level > DINFO_LEVEL_TERSE)
23021 dw_die_ref die = get_AT_ref (old_die, DW_AT_type);
23022 if (die == auto_die || die == decltype_auto_die)
23023 add_type_attribute (subr_die, TREE_TYPE (TREE_TYPE (decl)),
23024 TYPE_UNQUALIFIED, false, context_die);
23027 /* When we process the method declaration, we haven't seen
23028 the out-of-class defaulted definition yet, so we have to
23029 recheck now. */
23030 if ((dwarf_version >= 5 || ! dwarf_strict)
23031 && !get_AT (subr_die, DW_AT_defaulted))
23033 int defaulted
23034 = lang_hooks.decls.decl_dwarf_attribute (decl,
23035 DW_AT_defaulted);
23036 if (defaulted != -1)
23038 /* Other values must have been handled before. */
23039 gcc_assert (defaulted == DW_DEFAULTED_out_of_class);
23040 add_AT_unsigned (subr_die, DW_AT_defaulted, defaulted);
23045 /* Create a fresh DIE for anything else. */
23046 else
23048 subr_die = new_die (DW_TAG_subprogram, context_die, decl);
23050 if (TREE_PUBLIC (decl))
23051 add_AT_flag (subr_die, DW_AT_external, 1);
23053 add_name_and_src_coords_attributes (subr_die, decl);
23054 add_pubname (decl, subr_die);
23055 if (debug_info_level > DINFO_LEVEL_TERSE)
23057 add_prototyped_attribute (subr_die, TREE_TYPE (decl));
23058 add_type_attribute (subr_die, TREE_TYPE (TREE_TYPE (decl)),
23059 TYPE_UNQUALIFIED, false, context_die);
23062 add_pure_or_virtual_attribute (subr_die, decl);
23063 if (DECL_ARTIFICIAL (decl))
23064 add_AT_flag (subr_die, DW_AT_artificial, 1);
23066 if (TREE_THIS_VOLATILE (decl) && (dwarf_version >= 5 || !dwarf_strict))
23067 add_AT_flag (subr_die, DW_AT_noreturn, 1);
23069 add_alignment_attribute (subr_die, decl);
23071 add_accessibility_attribute (subr_die, decl);
23074 /* Unless we have an existing non-declaration DIE, equate the new
23075 DIE. */
23076 if (!old_die || is_declaration_die (old_die))
23077 equate_decl_number_to_die (decl, subr_die);
23079 if (declaration)
23081 if (!old_die || !get_AT (old_die, DW_AT_inline))
23083 add_AT_flag (subr_die, DW_AT_declaration, 1);
23085 /* If this is an explicit function declaration then generate
23086 a DW_AT_explicit attribute. */
23087 if ((dwarf_version >= 3 || !dwarf_strict)
23088 && lang_hooks.decls.decl_dwarf_attribute (decl,
23089 DW_AT_explicit) == 1)
23090 add_AT_flag (subr_die, DW_AT_explicit, 1);
23092 /* If this is a C++11 deleted special function member then generate
23093 a DW_AT_deleted attribute. */
23094 if ((dwarf_version >= 5 || !dwarf_strict)
23095 && lang_hooks.decls.decl_dwarf_attribute (decl,
23096 DW_AT_deleted) == 1)
23097 add_AT_flag (subr_die, DW_AT_deleted, 1);
23099 /* If this is a C++11 defaulted special function member then
23100 generate a DW_AT_defaulted attribute. */
23101 if (dwarf_version >= 5 || !dwarf_strict)
23103 int defaulted
23104 = lang_hooks.decls.decl_dwarf_attribute (decl,
23105 DW_AT_defaulted);
23106 if (defaulted != -1)
23107 add_AT_unsigned (subr_die, DW_AT_defaulted, defaulted);
23110 /* If this is a C++11 non-static member function with & ref-qualifier
23111 then generate a DW_AT_reference attribute. */
23112 if ((dwarf_version >= 5 || !dwarf_strict)
23113 && lang_hooks.decls.decl_dwarf_attribute (decl,
23114 DW_AT_reference) == 1)
23115 add_AT_flag (subr_die, DW_AT_reference, 1);
23117 /* If this is a C++11 non-static member function with &&
23118 ref-qualifier then generate a DW_AT_reference attribute. */
23119 if ((dwarf_version >= 5 || !dwarf_strict)
23120 && lang_hooks.decls.decl_dwarf_attribute (decl,
23121 DW_AT_rvalue_reference)
23122 == 1)
23123 add_AT_flag (subr_die, DW_AT_rvalue_reference, 1);
23126 /* For non DECL_EXTERNALs, if range information is available, fill
23127 the DIE with it. */
23128 else if (!DECL_EXTERNAL (decl) && !early_dwarf)
23130 HOST_WIDE_INT cfa_fb_offset;
23132 struct function *fun = DECL_STRUCT_FUNCTION (decl);
23134 if (!crtl->has_bb_partition)
23136 dw_fde_ref fde = fun->fde;
23137 if (fde->dw_fde_begin)
23139 /* We have already generated the labels. */
23140 add_AT_low_high_pc (subr_die, fde->dw_fde_begin,
23141 fde->dw_fde_end, false);
23143 else
23145 /* Create start/end labels and add the range. */
23146 char label_id_low[MAX_ARTIFICIAL_LABEL_BYTES];
23147 char label_id_high[MAX_ARTIFICIAL_LABEL_BYTES];
23148 ASM_GENERATE_INTERNAL_LABEL (label_id_low, FUNC_BEGIN_LABEL,
23149 current_function_funcdef_no);
23150 ASM_GENERATE_INTERNAL_LABEL (label_id_high, FUNC_END_LABEL,
23151 current_function_funcdef_no);
23152 add_AT_low_high_pc (subr_die, label_id_low, label_id_high,
23153 false);
23156 #if VMS_DEBUGGING_INFO
23157 /* HP OpenVMS Industry Standard 64: DWARF Extensions
23158 Section 2.3 Prologue and Epilogue Attributes:
23159 When a breakpoint is set on entry to a function, it is generally
23160 desirable for execution to be suspended, not on the very first
23161 instruction of the function, but rather at a point after the
23162 function's frame has been set up, after any language defined local
23163 declaration processing has been completed, and before execution of
23164 the first statement of the function begins. Debuggers generally
23165 cannot properly determine where this point is. Similarly for a
23166 breakpoint set on exit from a function. The prologue and epilogue
23167 attributes allow a compiler to communicate the location(s) to use. */
23170 if (fde->dw_fde_vms_end_prologue)
23171 add_AT_vms_delta (subr_die, DW_AT_HP_prologue,
23172 fde->dw_fde_begin, fde->dw_fde_vms_end_prologue);
23174 if (fde->dw_fde_vms_begin_epilogue)
23175 add_AT_vms_delta (subr_die, DW_AT_HP_epilogue,
23176 fde->dw_fde_begin, fde->dw_fde_vms_begin_epilogue);
23178 #endif
23181 else
23183 /* Generate pubnames entries for the split function code ranges. */
23184 dw_fde_ref fde = fun->fde;
23186 if (fde->dw_fde_second_begin)
23188 if (dwarf_version >= 3 || !dwarf_strict)
23190 /* We should use ranges for non-contiguous code section
23191 addresses. Use the actual code range for the initial
23192 section, since the HOT/COLD labels might precede an
23193 alignment offset. */
23194 bool range_list_added = false;
23195 add_ranges_by_labels (subr_die, fde->dw_fde_begin,
23196 fde->dw_fde_end, &range_list_added,
23197 false);
23198 add_ranges_by_labels (subr_die, fde->dw_fde_second_begin,
23199 fde->dw_fde_second_end,
23200 &range_list_added, false);
23201 if (range_list_added)
23202 add_ranges (NULL);
23204 else
23206 /* There is no real support in DW2 for this .. so we make
23207 a work-around. First, emit the pub name for the segment
23208 containing the function label. Then make and emit a
23209 simplified subprogram DIE for the second segment with the
23210 name pre-fixed by __hot/cold_sect_of_. We use the same
23211 linkage name for the second die so that gdb will find both
23212 sections when given "b foo". */
23213 const char *name = NULL;
23214 tree decl_name = DECL_NAME (decl);
23215 dw_die_ref seg_die;
23217 /* Do the 'primary' section. */
23218 add_AT_low_high_pc (subr_die, fde->dw_fde_begin,
23219 fde->dw_fde_end, false);
23221 /* Build a minimal DIE for the secondary section. */
23222 seg_die = new_die (DW_TAG_subprogram,
23223 subr_die->die_parent, decl);
23225 if (TREE_PUBLIC (decl))
23226 add_AT_flag (seg_die, DW_AT_external, 1);
23228 if (decl_name != NULL
23229 && IDENTIFIER_POINTER (decl_name) != NULL)
23231 name = dwarf2_name (decl, 1);
23232 if (! DECL_ARTIFICIAL (decl))
23233 add_src_coords_attributes (seg_die, decl);
23235 add_linkage_name (seg_die, decl);
23237 gcc_assert (name != NULL);
23238 add_pure_or_virtual_attribute (seg_die, decl);
23239 if (DECL_ARTIFICIAL (decl))
23240 add_AT_flag (seg_die, DW_AT_artificial, 1);
23242 name = concat ("__second_sect_of_", name, NULL);
23243 add_AT_low_high_pc (seg_die, fde->dw_fde_second_begin,
23244 fde->dw_fde_second_end, false);
23245 add_name_attribute (seg_die, name);
23246 if (want_pubnames ())
23247 add_pubname_string (name, seg_die);
23250 else
23251 add_AT_low_high_pc (subr_die, fde->dw_fde_begin, fde->dw_fde_end,
23252 false);
23255 cfa_fb_offset = CFA_FRAME_BASE_OFFSET (decl);
23257 /* We define the "frame base" as the function's CFA. This is more
23258 convenient for several reasons: (1) It's stable across the prologue
23259 and epilogue, which makes it better than just a frame pointer,
23260 (2) With dwarf3, there exists a one-byte encoding that allows us
23261 to reference the .debug_frame data by proxy, but failing that,
23262 (3) We can at least reuse the code inspection and interpretation
23263 code that determines the CFA position at various points in the
23264 function. */
23265 if (dwarf_version >= 3 && targetm.debug_unwind_info () == UI_DWARF2)
23267 dw_loc_descr_ref op = new_loc_descr (DW_OP_call_frame_cfa, 0, 0);
23268 add_AT_loc (subr_die, DW_AT_frame_base, op);
23270 else
23272 dw_loc_list_ref list = convert_cfa_to_fb_loc_list (cfa_fb_offset);
23273 if (list->dw_loc_next)
23274 add_AT_loc_list (subr_die, DW_AT_frame_base, list);
23275 else
23276 add_AT_loc (subr_die, DW_AT_frame_base, list->expr);
23279 /* Compute a displacement from the "steady-state frame pointer" to
23280 the CFA. The former is what all stack slots and argument slots
23281 will reference in the rtl; the latter is what we've told the
23282 debugger about. We'll need to adjust all frame_base references
23283 by this displacement. */
23284 compute_frame_pointer_to_fb_displacement (cfa_fb_offset);
23286 if (fun->static_chain_decl)
23288 /* DWARF requires here a location expression that computes the
23289 address of the enclosing subprogram's frame base. The machinery
23290 in tree-nested.c is supposed to store this specific address in the
23291 last field of the FRAME record. */
23292 const tree frame_type
23293 = TREE_TYPE (TREE_TYPE (fun->static_chain_decl));
23294 const tree fb_decl = tree_last (TYPE_FIELDS (frame_type));
23296 tree fb_expr
23297 = build1 (INDIRECT_REF, frame_type, fun->static_chain_decl);
23298 fb_expr = build3 (COMPONENT_REF, TREE_TYPE (fb_decl),
23299 fb_expr, fb_decl, NULL_TREE);
23301 add_AT_location_description (subr_die, DW_AT_static_link,
23302 loc_list_from_tree (fb_expr, 0, NULL));
23305 resolve_variable_values ();
23308 /* Generate child dies for template paramaters. */
23309 if (early_dwarf && debug_info_level > DINFO_LEVEL_TERSE)
23310 gen_generic_params_dies (decl);
23312 /* Now output descriptions of the arguments for this function. This gets
23313 (unnecessarily?) complex because of the fact that the DECL_ARGUMENT list
23314 for a FUNCTION_DECL doesn't indicate cases where there was a trailing
23315 `...' at the end of the formal parameter list. In order to find out if
23316 there was a trailing ellipsis or not, we must instead look at the type
23317 associated with the FUNCTION_DECL. This will be a node of type
23318 FUNCTION_TYPE. If the chain of type nodes hanging off of this
23319 FUNCTION_TYPE node ends with a void_type_node then there should *not* be
23320 an ellipsis at the end. */
23322 /* In the case where we are describing a mere function declaration, all we
23323 need to do here (and all we *can* do here) is to describe the *types* of
23324 its formal parameters. */
23325 if (debug_info_level <= DINFO_LEVEL_TERSE)
23327 else if (declaration)
23328 gen_formal_types_die (decl, subr_die);
23329 else
23331 /* Generate DIEs to represent all known formal parameters. */
23332 tree parm = DECL_ARGUMENTS (decl);
23333 tree generic_decl = early_dwarf
23334 ? lang_hooks.decls.get_generic_function_decl (decl) : NULL;
23335 tree generic_decl_parm = generic_decl
23336 ? DECL_ARGUMENTS (generic_decl)
23337 : NULL;
23339 /* Now we want to walk the list of parameters of the function and
23340 emit their relevant DIEs.
23342 We consider the case of DECL being an instance of a generic function
23343 as well as it being a normal function.
23345 If DECL is an instance of a generic function we walk the
23346 parameters of the generic function declaration _and_ the parameters of
23347 DECL itself. This is useful because we want to emit specific DIEs for
23348 function parameter packs and those are declared as part of the
23349 generic function declaration. In that particular case,
23350 the parameter pack yields a DW_TAG_GNU_formal_parameter_pack DIE.
23351 That DIE has children DIEs representing the set of arguments
23352 of the pack. Note that the set of pack arguments can be empty.
23353 In that case, the DW_TAG_GNU_formal_parameter_pack DIE will not have any
23354 children DIE.
23356 Otherwise, we just consider the parameters of DECL. */
23357 while (generic_decl_parm || parm)
23359 if (generic_decl_parm
23360 && lang_hooks.function_parameter_pack_p (generic_decl_parm))
23361 gen_formal_parameter_pack_die (generic_decl_parm,
23362 parm, subr_die,
23363 &parm);
23364 else if (parm)
23366 dw_die_ref parm_die = gen_decl_die (parm, NULL, NULL, subr_die);
23368 if (early_dwarf
23369 && parm == DECL_ARGUMENTS (decl)
23370 && TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE
23371 && parm_die
23372 && (dwarf_version >= 3 || !dwarf_strict))
23373 add_AT_die_ref (subr_die, DW_AT_object_pointer, parm_die);
23375 parm = DECL_CHAIN (parm);
23378 if (generic_decl_parm)
23379 generic_decl_parm = DECL_CHAIN (generic_decl_parm);
23382 /* Decide whether we need an unspecified_parameters DIE at the end.
23383 There are 2 more cases to do this for: 1) the ansi ... declaration -
23384 this is detectable when the end of the arg list is not a
23385 void_type_node 2) an unprototyped function declaration (not a
23386 definition). This just means that we have no info about the
23387 parameters at all. */
23388 if (early_dwarf)
23390 if (prototype_p (TREE_TYPE (decl)))
23392 /* This is the prototyped case, check for.... */
23393 if (stdarg_p (TREE_TYPE (decl)))
23394 gen_unspecified_parameters_die (decl, subr_die);
23396 else if (DECL_INITIAL (decl) == NULL_TREE)
23397 gen_unspecified_parameters_die (decl, subr_die);
23401 if (subr_die != old_die)
23402 /* Add the calling convention attribute if requested. */
23403 add_calling_convention_attribute (subr_die, decl);
23405 /* Output Dwarf info for all of the stuff within the body of the function
23406 (if it has one - it may be just a declaration).
23408 OUTER_SCOPE is a pointer to the outermost BLOCK node created to represent
23409 a function. This BLOCK actually represents the outermost binding contour
23410 for the function, i.e. the contour in which the function's formal
23411 parameters and labels get declared. Curiously, it appears that the front
23412 end doesn't actually put the PARM_DECL nodes for the current function onto
23413 the BLOCK_VARS list for this outer scope, but are strung off of the
23414 DECL_ARGUMENTS list for the function instead.
23416 The BLOCK_VARS list for the `outer_scope' does provide us with a list of
23417 the LABEL_DECL nodes for the function however, and we output DWARF info
23418 for those in decls_for_scope. Just within the `outer_scope' there will be
23419 a BLOCK node representing the function's outermost pair of curly braces,
23420 and any blocks used for the base and member initializers of a C++
23421 constructor function. */
23422 tree outer_scope = DECL_INITIAL (decl);
23423 if (! declaration && outer_scope && TREE_CODE (outer_scope) != ERROR_MARK)
23425 int call_site_note_count = 0;
23426 int tail_call_site_note_count = 0;
23428 /* Emit a DW_TAG_variable DIE for a named return value. */
23429 if (DECL_NAME (DECL_RESULT (decl)))
23430 gen_decl_die (DECL_RESULT (decl), NULL, NULL, subr_die);
23432 /* The first time through decls_for_scope we will generate the
23433 DIEs for the locals. The second time, we fill in the
23434 location info. */
23435 decls_for_scope (outer_scope, subr_die);
23437 if (call_arg_locations && (!dwarf_strict || dwarf_version >= 5))
23439 struct call_arg_loc_node *ca_loc;
23440 for (ca_loc = call_arg_locations; ca_loc; ca_loc = ca_loc->next)
23442 dw_die_ref die = NULL;
23443 rtx tloc = NULL_RTX, tlocc = NULL_RTX;
23444 rtx arg, next_arg;
23445 tree arg_decl = NULL_TREE;
23447 for (arg = (ca_loc->call_arg_loc_note != NULL_RTX
23448 ? XEXP (ca_loc->call_arg_loc_note, 0)
23449 : NULL_RTX);
23450 arg; arg = next_arg)
23452 dw_loc_descr_ref reg, val;
23453 machine_mode mode = GET_MODE (XEXP (XEXP (arg, 0), 1));
23454 dw_die_ref cdie, tdie = NULL;
23456 next_arg = XEXP (arg, 1);
23457 if (REG_P (XEXP (XEXP (arg, 0), 0))
23458 && next_arg
23459 && MEM_P (XEXP (XEXP (next_arg, 0), 0))
23460 && REG_P (XEXP (XEXP (XEXP (next_arg, 0), 0), 0))
23461 && REGNO (XEXP (XEXP (arg, 0), 0))
23462 == REGNO (XEXP (XEXP (XEXP (next_arg, 0), 0), 0)))
23463 next_arg = XEXP (next_arg, 1);
23464 if (mode == VOIDmode)
23466 mode = GET_MODE (XEXP (XEXP (arg, 0), 0));
23467 if (mode == VOIDmode)
23468 mode = GET_MODE (XEXP (arg, 0));
23470 if (mode == VOIDmode || mode == BLKmode)
23471 continue;
23472 /* Get dynamic information about call target only if we
23473 have no static information: we cannot generate both
23474 DW_AT_call_origin and DW_AT_call_target
23475 attributes. */
23476 if (ca_loc->symbol_ref == NULL_RTX)
23478 if (XEXP (XEXP (arg, 0), 0) == pc_rtx)
23480 tloc = XEXP (XEXP (arg, 0), 1);
23481 continue;
23483 else if (GET_CODE (XEXP (XEXP (arg, 0), 0)) == CLOBBER
23484 && XEXP (XEXP (XEXP (arg, 0), 0), 0) == pc_rtx)
23486 tlocc = XEXP (XEXP (arg, 0), 1);
23487 continue;
23490 reg = NULL;
23491 if (REG_P (XEXP (XEXP (arg, 0), 0)))
23492 reg = reg_loc_descriptor (XEXP (XEXP (arg, 0), 0),
23493 VAR_INIT_STATUS_INITIALIZED);
23494 else if (MEM_P (XEXP (XEXP (arg, 0), 0)))
23496 rtx mem = XEXP (XEXP (arg, 0), 0);
23497 reg = mem_loc_descriptor (XEXP (mem, 0),
23498 get_address_mode (mem),
23499 GET_MODE (mem),
23500 VAR_INIT_STATUS_INITIALIZED);
23502 else if (GET_CODE (XEXP (XEXP (arg, 0), 0))
23503 == DEBUG_PARAMETER_REF)
23505 tree tdecl
23506 = DEBUG_PARAMETER_REF_DECL (XEXP (XEXP (arg, 0), 0));
23507 tdie = lookup_decl_die (tdecl);
23508 if (tdie == NULL)
23509 continue;
23510 arg_decl = tdecl;
23512 else
23513 continue;
23514 if (reg == NULL
23515 && GET_CODE (XEXP (XEXP (arg, 0), 0))
23516 != DEBUG_PARAMETER_REF)
23517 continue;
23518 val = mem_loc_descriptor (XEXP (XEXP (arg, 0), 1), mode,
23519 VOIDmode,
23520 VAR_INIT_STATUS_INITIALIZED);
23521 if (val == NULL)
23522 continue;
23523 if (die == NULL)
23524 die = gen_call_site_die (decl, subr_die, ca_loc);
23525 cdie = new_die (dwarf_TAG (DW_TAG_call_site_parameter), die,
23526 NULL_TREE);
23527 add_desc_attribute (cdie, arg_decl);
23528 if (reg != NULL)
23529 add_AT_loc (cdie, DW_AT_location, reg);
23530 else if (tdie != NULL)
23531 add_AT_die_ref (cdie, dwarf_AT (DW_AT_call_parameter),
23532 tdie);
23533 add_AT_loc (cdie, dwarf_AT (DW_AT_call_value), val);
23534 if (next_arg != XEXP (arg, 1))
23536 mode = GET_MODE (XEXP (XEXP (XEXP (arg, 1), 0), 1));
23537 if (mode == VOIDmode)
23538 mode = GET_MODE (XEXP (XEXP (XEXP (arg, 1), 0), 0));
23539 val = mem_loc_descriptor (XEXP (XEXP (XEXP (arg, 1),
23540 0), 1),
23541 mode, VOIDmode,
23542 VAR_INIT_STATUS_INITIALIZED);
23543 if (val != NULL)
23544 add_AT_loc (cdie, dwarf_AT (DW_AT_call_data_value),
23545 val);
23548 if (die == NULL
23549 && (ca_loc->symbol_ref || tloc))
23550 die = gen_call_site_die (decl, subr_die, ca_loc);
23551 if (die != NULL && (tloc != NULL_RTX || tlocc != NULL_RTX))
23553 dw_loc_descr_ref tval = NULL;
23555 if (tloc != NULL_RTX)
23556 tval = mem_loc_descriptor (tloc,
23557 GET_MODE (tloc) == VOIDmode
23558 ? Pmode : GET_MODE (tloc),
23559 VOIDmode,
23560 VAR_INIT_STATUS_INITIALIZED);
23561 if (tval)
23562 add_AT_loc (die, dwarf_AT (DW_AT_call_target), tval);
23563 else if (tlocc != NULL_RTX)
23565 tval = mem_loc_descriptor (tlocc,
23566 GET_MODE (tlocc) == VOIDmode
23567 ? Pmode : GET_MODE (tlocc),
23568 VOIDmode,
23569 VAR_INIT_STATUS_INITIALIZED);
23570 if (tval)
23571 add_AT_loc (die,
23572 dwarf_AT (DW_AT_call_target_clobbered),
23573 tval);
23576 if (die != NULL)
23578 call_site_note_count++;
23579 if (ca_loc->tail_call_p)
23580 tail_call_site_note_count++;
23584 call_arg_locations = NULL;
23585 call_arg_loc_last = NULL;
23586 if (tail_call_site_count >= 0
23587 && tail_call_site_count == tail_call_site_note_count
23588 && (!dwarf_strict || dwarf_version >= 5))
23590 if (call_site_count >= 0
23591 && call_site_count == call_site_note_count)
23592 add_AT_flag (subr_die, dwarf_AT (DW_AT_call_all_calls), 1);
23593 else
23594 add_AT_flag (subr_die, dwarf_AT (DW_AT_call_all_tail_calls), 1);
23596 call_site_count = -1;
23597 tail_call_site_count = -1;
23600 /* Mark used types after we have created DIEs for the functions scopes. */
23601 premark_used_types (DECL_STRUCT_FUNCTION (decl));
23604 /* Returns a hash value for X (which really is a die_struct). */
23606 hashval_t
23607 block_die_hasher::hash (die_struct *d)
23609 return (hashval_t) d->decl_id ^ htab_hash_pointer (d->die_parent);
23612 /* Return nonzero if decl_id and die_parent of die_struct X is the same
23613 as decl_id and die_parent of die_struct Y. */
23615 bool
23616 block_die_hasher::equal (die_struct *x, die_struct *y)
23618 return x->decl_id == y->decl_id && x->die_parent == y->die_parent;
23621 /* Hold information about markers for inlined entry points. */
23622 struct GTY ((for_user)) inline_entry_data
23624 /* The block that's the inlined_function_outer_scope for an inlined
23625 function. */
23626 tree block;
23628 /* The label at the inlined entry point. */
23629 const char *label_pfx;
23630 unsigned int label_num;
23632 /* The view number to be used as the inlined entry point. */
23633 var_loc_view view;
23636 struct inline_entry_data_hasher : ggc_ptr_hash <inline_entry_data>
23638 typedef tree compare_type;
23639 static inline hashval_t hash (const inline_entry_data *);
23640 static inline bool equal (const inline_entry_data *, const_tree);
23643 /* Hash table routines for inline_entry_data. */
23645 inline hashval_t
23646 inline_entry_data_hasher::hash (const inline_entry_data *data)
23648 return htab_hash_pointer (data->block);
23651 inline bool
23652 inline_entry_data_hasher::equal (const inline_entry_data *data,
23653 const_tree block)
23655 return data->block == block;
23658 /* Inlined entry points pending DIE creation in this compilation unit. */
23660 static GTY(()) hash_table<inline_entry_data_hasher> *inline_entry_data_table;
23663 /* Return TRUE if DECL, which may have been previously generated as
23664 OLD_DIE, is a candidate for a DW_AT_specification. DECLARATION is
23665 true if decl (or its origin) is either an extern declaration or a
23666 class/namespace scoped declaration.
23668 The declare_in_namespace support causes us to get two DIEs for one
23669 variable, both of which are declarations. We want to avoid
23670 considering one to be a specification, so we must test for
23671 DECLARATION and DW_AT_declaration. */
23672 static inline bool
23673 decl_will_get_specification_p (dw_die_ref old_die, tree decl, bool declaration)
23675 return (old_die && TREE_STATIC (decl) && !declaration
23676 && get_AT_flag (old_die, DW_AT_declaration) == 1);
23679 /* Return true if DECL is a local static. */
23681 static inline bool
23682 local_function_static (tree decl)
23684 gcc_assert (VAR_P (decl));
23685 return TREE_STATIC (decl)
23686 && DECL_CONTEXT (decl)
23687 && TREE_CODE (DECL_CONTEXT (decl)) == FUNCTION_DECL;
23690 /* Generate a DIE to represent a declared data object.
23691 Either DECL or ORIGIN must be non-null. */
23693 static void
23694 gen_variable_die (tree decl, tree origin, dw_die_ref context_die)
23696 HOST_WIDE_INT off = 0;
23697 tree com_decl;
23698 tree decl_or_origin = decl ? decl : origin;
23699 tree ultimate_origin;
23700 dw_die_ref var_die;
23701 dw_die_ref old_die = decl ? lookup_decl_die (decl) : NULL;
23702 bool declaration = (DECL_EXTERNAL (decl_or_origin)
23703 || class_or_namespace_scope_p (context_die));
23704 bool specialization_p = false;
23705 bool no_linkage_name = false;
23707 /* While C++ inline static data members have definitions inside of the
23708 class, force the first DIE to be a declaration, then let gen_member_die
23709 reparent it to the class context and call gen_variable_die again
23710 to create the outside of the class DIE for the definition. */
23711 if (!declaration
23712 && old_die == NULL
23713 && decl
23714 && DECL_CONTEXT (decl)
23715 && TYPE_P (DECL_CONTEXT (decl))
23716 && lang_hooks.decls.decl_dwarf_attribute (decl, DW_AT_inline) != -1)
23718 declaration = true;
23719 if (dwarf_version < 5)
23720 no_linkage_name = true;
23723 ultimate_origin = decl_ultimate_origin (decl_or_origin);
23724 if (decl || ultimate_origin)
23725 origin = ultimate_origin;
23726 com_decl = fortran_common (decl_or_origin, &off);
23728 /* Symbol in common gets emitted as a child of the common block, in the form
23729 of a data member. */
23730 if (com_decl)
23732 dw_die_ref com_die;
23733 dw_loc_list_ref loc = NULL;
23734 die_node com_die_arg;
23736 var_die = lookup_decl_die (decl_or_origin);
23737 if (var_die)
23739 if (! early_dwarf && get_AT (var_die, DW_AT_location) == NULL)
23741 loc = loc_list_from_tree (com_decl, off ? 1 : 2, NULL);
23742 if (loc)
23744 if (off)
23746 /* Optimize the common case. */
23747 if (single_element_loc_list_p (loc)
23748 && loc->expr->dw_loc_opc == DW_OP_addr
23749 && loc->expr->dw_loc_next == NULL
23750 && GET_CODE (loc->expr->dw_loc_oprnd1.v.val_addr)
23751 == SYMBOL_REF)
23753 rtx x = loc->expr->dw_loc_oprnd1.v.val_addr;
23754 loc->expr->dw_loc_oprnd1.v.val_addr
23755 = plus_constant (GET_MODE (x), x , off);
23757 else
23758 loc_list_plus_const (loc, off);
23760 add_AT_location_description (var_die, DW_AT_location, loc);
23761 remove_AT (var_die, DW_AT_declaration);
23764 return;
23767 if (common_block_die_table == NULL)
23768 common_block_die_table = hash_table<block_die_hasher>::create_ggc (10);
23770 com_die_arg.decl_id = DECL_UID (com_decl);
23771 com_die_arg.die_parent = context_die;
23772 com_die = common_block_die_table->find (&com_die_arg);
23773 if (! early_dwarf)
23774 loc = loc_list_from_tree (com_decl, 2, NULL);
23775 if (com_die == NULL)
23777 const char *cnam
23778 = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (com_decl));
23779 die_node **slot;
23781 com_die = new_die (DW_TAG_common_block, context_die, decl);
23782 add_name_and_src_coords_attributes (com_die, com_decl);
23783 if (loc)
23785 add_AT_location_description (com_die, DW_AT_location, loc);
23786 /* Avoid sharing the same loc descriptor between
23787 DW_TAG_common_block and DW_TAG_variable. */
23788 loc = loc_list_from_tree (com_decl, 2, NULL);
23790 else if (DECL_EXTERNAL (decl_or_origin))
23791 add_AT_flag (com_die, DW_AT_declaration, 1);
23792 if (want_pubnames ())
23793 add_pubname_string (cnam, com_die); /* ??? needed? */
23794 com_die->decl_id = DECL_UID (com_decl);
23795 slot = common_block_die_table->find_slot (com_die, INSERT);
23796 *slot = com_die;
23798 else if (get_AT (com_die, DW_AT_location) == NULL && loc)
23800 add_AT_location_description (com_die, DW_AT_location, loc);
23801 loc = loc_list_from_tree (com_decl, 2, NULL);
23802 remove_AT (com_die, DW_AT_declaration);
23804 var_die = new_die (DW_TAG_variable, com_die, decl);
23805 add_name_and_src_coords_attributes (var_die, decl_or_origin);
23806 add_type_attribute (var_die, TREE_TYPE (decl_or_origin),
23807 decl_quals (decl_or_origin), false,
23808 context_die);
23809 add_alignment_attribute (var_die, decl);
23810 add_AT_flag (var_die, DW_AT_external, 1);
23811 if (loc)
23813 if (off)
23815 /* Optimize the common case. */
23816 if (single_element_loc_list_p (loc)
23817 && loc->expr->dw_loc_opc == DW_OP_addr
23818 && loc->expr->dw_loc_next == NULL
23819 && GET_CODE (loc->expr->dw_loc_oprnd1.v.val_addr) == SYMBOL_REF)
23821 rtx x = loc->expr->dw_loc_oprnd1.v.val_addr;
23822 loc->expr->dw_loc_oprnd1.v.val_addr
23823 = plus_constant (GET_MODE (x), x, off);
23825 else
23826 loc_list_plus_const (loc, off);
23828 add_AT_location_description (var_die, DW_AT_location, loc);
23830 else if (DECL_EXTERNAL (decl_or_origin))
23831 add_AT_flag (var_die, DW_AT_declaration, 1);
23832 if (decl)
23833 equate_decl_number_to_die (decl, var_die);
23834 return;
23837 if (old_die)
23839 if (declaration)
23841 /* A declaration that has been previously dumped, needs no
23842 further annotations, since it doesn't need location on
23843 the second pass. */
23844 return;
23846 else if (decl_will_get_specification_p (old_die, decl, declaration)
23847 && !get_AT (old_die, DW_AT_specification))
23849 /* Fall-thru so we can make a new variable die along with a
23850 DW_AT_specification. */
23852 else if (origin && old_die->die_parent != context_die)
23854 /* If we will be creating an inlined instance, we need a
23855 new DIE that will get annotated with
23856 DW_AT_abstract_origin. */
23857 gcc_assert (!DECL_ABSTRACT_P (decl));
23859 else
23861 /* If a DIE was dumped early, it still needs location info.
23862 Skip to where we fill the location bits. */
23863 var_die = old_die;
23865 /* ??? In LTRANS we cannot annotate early created variably
23866 modified type DIEs without copying them and adjusting all
23867 references to them. Thus we dumped them again. Also add a
23868 reference to them but beware of -g0 compile and -g link
23869 in which case the reference will be already present. */
23870 tree type = TREE_TYPE (decl_or_origin);
23871 if (in_lto_p
23872 && ! get_AT (var_die, DW_AT_type)
23873 && variably_modified_type_p
23874 (type, decl_function_context (decl_or_origin)))
23876 if (decl_by_reference_p (decl_or_origin))
23877 add_type_attribute (var_die, TREE_TYPE (type),
23878 TYPE_UNQUALIFIED, false, context_die);
23879 else
23880 add_type_attribute (var_die, type, decl_quals (decl_or_origin),
23881 false, context_die);
23884 goto gen_variable_die_location;
23888 /* For static data members, the declaration in the class is supposed
23889 to have DW_TAG_member tag in DWARF{3,4} and we emit it for compatibility
23890 also in DWARF2; the specification should still be DW_TAG_variable
23891 referencing the DW_TAG_member DIE. */
23892 if (declaration && class_scope_p (context_die) && dwarf_version < 5)
23893 var_die = new_die (DW_TAG_member, context_die, decl);
23894 else
23895 var_die = new_die (DW_TAG_variable, context_die, decl);
23897 if (origin != NULL)
23898 add_abstract_origin_attribute (var_die, origin);
23900 /* Loop unrolling can create multiple blocks that refer to the same
23901 static variable, so we must test for the DW_AT_declaration flag.
23903 ??? Loop unrolling/reorder_blocks should perhaps be rewritten to
23904 copy decls and set the DECL_ABSTRACT_P flag on them instead of
23905 sharing them.
23907 ??? Duplicated blocks have been rewritten to use .debug_ranges. */
23908 else if (decl_will_get_specification_p (old_die, decl, declaration))
23910 /* This is a definition of a C++ class level static. */
23911 add_AT_specification (var_die, old_die);
23912 specialization_p = true;
23913 if (DECL_NAME (decl))
23915 expanded_location s = expand_location (DECL_SOURCE_LOCATION (decl));
23916 struct dwarf_file_data * file_index = lookup_filename (s.file);
23918 if (get_AT_file (old_die, DW_AT_decl_file) != file_index)
23919 add_AT_file (var_die, DW_AT_decl_file, file_index);
23921 if (get_AT_unsigned (old_die, DW_AT_decl_line) != (unsigned) s.line)
23922 add_AT_unsigned (var_die, DW_AT_decl_line, s.line);
23924 if (debug_column_info
23925 && s.column
23926 && (get_AT_unsigned (old_die, DW_AT_decl_column)
23927 != (unsigned) s.column))
23928 add_AT_unsigned (var_die, DW_AT_decl_column, s.column);
23930 if (old_die->die_tag == DW_TAG_member)
23931 add_linkage_name (var_die, decl);
23934 else
23935 add_name_and_src_coords_attributes (var_die, decl, no_linkage_name);
23937 if ((origin == NULL && !specialization_p)
23938 || (origin != NULL
23939 && !DECL_ABSTRACT_P (decl_or_origin)
23940 && variably_modified_type_p (TREE_TYPE (decl_or_origin),
23941 decl_function_context
23942 (decl_or_origin))))
23944 tree type = TREE_TYPE (decl_or_origin);
23946 if (decl_by_reference_p (decl_or_origin))
23947 add_type_attribute (var_die, TREE_TYPE (type), TYPE_UNQUALIFIED, false,
23948 context_die);
23949 else
23950 add_type_attribute (var_die, type, decl_quals (decl_or_origin), false,
23951 context_die);
23954 if (origin == NULL && !specialization_p)
23956 if (TREE_PUBLIC (decl))
23957 add_AT_flag (var_die, DW_AT_external, 1);
23959 if (DECL_ARTIFICIAL (decl))
23960 add_AT_flag (var_die, DW_AT_artificial, 1);
23962 add_alignment_attribute (var_die, decl);
23964 add_accessibility_attribute (var_die, decl);
23967 if (declaration)
23968 add_AT_flag (var_die, DW_AT_declaration, 1);
23970 if (decl && (DECL_ABSTRACT_P (decl)
23971 || !old_die || is_declaration_die (old_die)))
23972 equate_decl_number_to_die (decl, var_die);
23974 gen_variable_die_location:
23975 if (! declaration
23976 && (! DECL_ABSTRACT_P (decl_or_origin)
23977 /* Local static vars are shared between all clones/inlines,
23978 so emit DW_AT_location on the abstract DIE if DECL_RTL is
23979 already set. */
23980 || (VAR_P (decl_or_origin)
23981 && TREE_STATIC (decl_or_origin)
23982 && DECL_RTL_SET_P (decl_or_origin))))
23984 if (early_dwarf)
23985 add_pubname (decl_or_origin, var_die);
23986 else
23987 add_location_or_const_value_attribute (var_die, decl_or_origin,
23988 decl == NULL);
23990 else
23991 tree_add_const_value_attribute_for_decl (var_die, decl_or_origin);
23993 if ((dwarf_version >= 4 || !dwarf_strict)
23994 && lang_hooks.decls.decl_dwarf_attribute (decl_or_origin,
23995 DW_AT_const_expr) == 1
23996 && !get_AT (var_die, DW_AT_const_expr)
23997 && !specialization_p)
23998 add_AT_flag (var_die, DW_AT_const_expr, 1);
24000 if (!dwarf_strict)
24002 int inl = lang_hooks.decls.decl_dwarf_attribute (decl_or_origin,
24003 DW_AT_inline);
24004 if (inl != -1
24005 && !get_AT (var_die, DW_AT_inline)
24006 && !specialization_p)
24007 add_AT_unsigned (var_die, DW_AT_inline, inl);
24011 /* Generate a DIE to represent a named constant. */
24013 static void
24014 gen_const_die (tree decl, dw_die_ref context_die)
24016 dw_die_ref const_die;
24017 tree type = TREE_TYPE (decl);
24019 const_die = lookup_decl_die (decl);
24020 if (const_die)
24021 return;
24023 const_die = new_die (DW_TAG_constant, context_die, decl);
24024 equate_decl_number_to_die (decl, const_die);
24025 add_name_and_src_coords_attributes (const_die, decl);
24026 add_type_attribute (const_die, type, TYPE_QUAL_CONST, false, context_die);
24027 if (TREE_PUBLIC (decl))
24028 add_AT_flag (const_die, DW_AT_external, 1);
24029 if (DECL_ARTIFICIAL (decl))
24030 add_AT_flag (const_die, DW_AT_artificial, 1);
24031 tree_add_const_value_attribute_for_decl (const_die, decl);
24034 /* Generate a DIE to represent a label identifier. */
24036 static void
24037 gen_label_die (tree decl, dw_die_ref context_die)
24039 tree origin = decl_ultimate_origin (decl);
24040 dw_die_ref lbl_die = lookup_decl_die (decl);
24041 rtx insn;
24042 char label[MAX_ARTIFICIAL_LABEL_BYTES];
24044 if (!lbl_die)
24046 lbl_die = new_die (DW_TAG_label, context_die, decl);
24047 equate_decl_number_to_die (decl, lbl_die);
24049 if (origin != NULL)
24050 add_abstract_origin_attribute (lbl_die, origin);
24051 else
24052 add_name_and_src_coords_attributes (lbl_die, decl);
24055 if (DECL_ABSTRACT_P (decl))
24056 equate_decl_number_to_die (decl, lbl_die);
24057 else if (! early_dwarf)
24059 insn = DECL_RTL_IF_SET (decl);
24061 /* Deleted labels are programmer specified labels which have been
24062 eliminated because of various optimizations. We still emit them
24063 here so that it is possible to put breakpoints on them. */
24064 if (insn
24065 && (LABEL_P (insn)
24066 || ((NOTE_P (insn)
24067 && NOTE_KIND (insn) == NOTE_INSN_DELETED_LABEL))))
24069 /* When optimization is enabled (via -O) some parts of the compiler
24070 (e.g. jump.c and cse.c) may try to delete CODE_LABEL insns which
24071 represent source-level labels which were explicitly declared by
24072 the user. This really shouldn't be happening though, so catch
24073 it if it ever does happen. */
24074 gcc_assert (!as_a<rtx_insn *> (insn)->deleted ());
24076 ASM_GENERATE_INTERNAL_LABEL (label, "L", CODE_LABEL_NUMBER (insn));
24077 add_AT_lbl_id (lbl_die, DW_AT_low_pc, label);
24079 else if (insn
24080 && NOTE_P (insn)
24081 && NOTE_KIND (insn) == NOTE_INSN_DELETED_DEBUG_LABEL
24082 && CODE_LABEL_NUMBER (insn) != -1)
24084 ASM_GENERATE_INTERNAL_LABEL (label, "LDL", CODE_LABEL_NUMBER (insn));
24085 add_AT_lbl_id (lbl_die, DW_AT_low_pc, label);
24090 /* A helper function for gen_inlined_subroutine_die. Add source coordinate
24091 attributes to the DIE for a block STMT, to describe where the inlined
24092 function was called from. This is similar to add_src_coords_attributes. */
24094 static inline void
24095 add_call_src_coords_attributes (tree stmt, dw_die_ref die)
24097 /* We can end up with BUILTINS_LOCATION here. */
24098 if (RESERVED_LOCATION_P (BLOCK_SOURCE_LOCATION (stmt)))
24099 return;
24101 expanded_location s = expand_location (BLOCK_SOURCE_LOCATION (stmt));
24103 if (dwarf_version >= 3 || !dwarf_strict)
24105 add_AT_file (die, DW_AT_call_file, lookup_filename (s.file));
24106 add_AT_unsigned (die, DW_AT_call_line, s.line);
24107 if (debug_column_info && s.column)
24108 add_AT_unsigned (die, DW_AT_call_column, s.column);
24113 /* A helper function for gen_lexical_block_die and gen_inlined_subroutine_die.
24114 Add low_pc and high_pc attributes to the DIE for a block STMT. */
24116 static inline void
24117 add_high_low_attributes (tree stmt, dw_die_ref die)
24119 char label[MAX_ARTIFICIAL_LABEL_BYTES];
24121 if (inline_entry_data **iedp
24122 = !inline_entry_data_table ? NULL
24123 : inline_entry_data_table->find_slot_with_hash (stmt,
24124 htab_hash_pointer (stmt),
24125 NO_INSERT))
24127 inline_entry_data *ied = *iedp;
24128 gcc_assert (MAY_HAVE_DEBUG_MARKER_INSNS);
24129 gcc_assert (debug_inline_points);
24130 gcc_assert (inlined_function_outer_scope_p (stmt));
24132 ASM_GENERATE_INTERNAL_LABEL (label, ied->label_pfx, ied->label_num);
24133 add_AT_lbl_id (die, DW_AT_entry_pc, label);
24135 if (debug_variable_location_views && !ZERO_VIEW_P (ied->view)
24136 && !dwarf_strict)
24138 if (!output_asm_line_debug_info ())
24139 add_AT_unsigned (die, DW_AT_GNU_entry_view, ied->view);
24140 else
24142 ASM_GENERATE_INTERNAL_LABEL (label, "LVU", ied->view);
24143 /* FIXME: this will resolve to a small number. Could we
24144 possibly emit smaller data? Ideally we'd emit a
24145 uleb128, but that would make the size of DIEs
24146 impossible for the compiler to compute, since it's
24147 the assembler that computes the value of the view
24148 label in this case. Ideally, we'd have a single form
24149 encompassing both the address and the view, and
24150 indirecting them through a table might make things
24151 easier, but even that would be more wasteful,
24152 space-wise, than what we have now. */
24153 add_AT_symview (die, DW_AT_GNU_entry_view, label);
24157 inline_entry_data_table->clear_slot (iedp);
24160 if (BLOCK_FRAGMENT_CHAIN (stmt)
24161 && (dwarf_version >= 3 || !dwarf_strict))
24163 tree chain, superblock = NULL_TREE;
24164 dw_die_ref pdie;
24165 dw_attr_node *attr = NULL;
24167 if (!debug_inline_points && inlined_function_outer_scope_p (stmt))
24169 ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_BEGIN_LABEL,
24170 BLOCK_NUMBER (stmt));
24171 add_AT_lbl_id (die, DW_AT_entry_pc, label);
24174 /* Optimize duplicate .debug_ranges lists or even tails of
24175 lists. If this BLOCK has same ranges as its supercontext,
24176 lookup DW_AT_ranges attribute in the supercontext (and
24177 recursively so), verify that the ranges_table contains the
24178 right values and use it instead of adding a new .debug_range. */
24179 for (chain = stmt, pdie = die;
24180 BLOCK_SAME_RANGE (chain);
24181 chain = BLOCK_SUPERCONTEXT (chain))
24183 dw_attr_node *new_attr;
24185 pdie = pdie->die_parent;
24186 if (pdie == NULL)
24187 break;
24188 if (BLOCK_SUPERCONTEXT (chain) == NULL_TREE)
24189 break;
24190 new_attr = get_AT (pdie, DW_AT_ranges);
24191 if (new_attr == NULL
24192 || new_attr->dw_attr_val.val_class != dw_val_class_range_list)
24193 break;
24194 attr = new_attr;
24195 superblock = BLOCK_SUPERCONTEXT (chain);
24197 if (attr != NULL
24198 && ((*ranges_table)[attr->dw_attr_val.v.val_offset].num
24199 == (int)BLOCK_NUMBER (superblock))
24200 && BLOCK_FRAGMENT_CHAIN (superblock))
24202 unsigned long off = attr->dw_attr_val.v.val_offset;
24203 unsigned long supercnt = 0, thiscnt = 0;
24204 for (chain = BLOCK_FRAGMENT_CHAIN (superblock);
24205 chain; chain = BLOCK_FRAGMENT_CHAIN (chain))
24207 ++supercnt;
24208 gcc_checking_assert ((*ranges_table)[off + supercnt].num
24209 == (int)BLOCK_NUMBER (chain));
24211 gcc_checking_assert ((*ranges_table)[off + supercnt + 1].num == 0);
24212 for (chain = BLOCK_FRAGMENT_CHAIN (stmt);
24213 chain; chain = BLOCK_FRAGMENT_CHAIN (chain))
24214 ++thiscnt;
24215 gcc_assert (supercnt >= thiscnt);
24216 add_AT_range_list (die, DW_AT_ranges, off + supercnt - thiscnt,
24217 false);
24218 note_rnglist_head (off + supercnt - thiscnt);
24219 return;
24222 unsigned int offset = add_ranges (stmt, true);
24223 add_AT_range_list (die, DW_AT_ranges, offset, false);
24224 note_rnglist_head (offset);
24226 bool prev_in_cold = BLOCK_IN_COLD_SECTION_P (stmt);
24227 chain = BLOCK_FRAGMENT_CHAIN (stmt);
24230 add_ranges (chain, prev_in_cold != BLOCK_IN_COLD_SECTION_P (chain));
24231 prev_in_cold = BLOCK_IN_COLD_SECTION_P (chain);
24232 chain = BLOCK_FRAGMENT_CHAIN (chain);
24234 while (chain);
24235 add_ranges (NULL);
24237 else
24239 char label_high[MAX_ARTIFICIAL_LABEL_BYTES];
24240 ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_BEGIN_LABEL,
24241 BLOCK_NUMBER (stmt));
24242 ASM_GENERATE_INTERNAL_LABEL (label_high, BLOCK_END_LABEL,
24243 BLOCK_NUMBER (stmt));
24244 add_AT_low_high_pc (die, label, label_high, false);
24248 /* Generate a DIE for a lexical block. */
24250 static void
24251 gen_lexical_block_die (tree stmt, dw_die_ref context_die)
24253 dw_die_ref old_die = lookup_block_die (stmt);
24254 dw_die_ref stmt_die = NULL;
24255 if (!old_die)
24257 stmt_die = new_die (DW_TAG_lexical_block, context_die, stmt);
24258 equate_block_to_die (stmt, stmt_die);
24261 if (BLOCK_ABSTRACT_ORIGIN (stmt))
24263 /* If this is an inlined or conrecte instance, create a new lexical
24264 die for anything below to attach DW_AT_abstract_origin to. */
24265 if (old_die)
24266 stmt_die = new_die (DW_TAG_lexical_block, context_die, stmt);
24268 tree origin = block_ultimate_origin (stmt);
24269 if (origin != NULL_TREE && (origin != stmt || old_die))
24270 add_abstract_origin_attribute (stmt_die, origin);
24272 old_die = NULL;
24275 if (old_die)
24276 stmt_die = old_die;
24278 /* A non abstract block whose blocks have already been reordered
24279 should have the instruction range for this block. If so, set the
24280 high/low attributes. */
24281 if (!early_dwarf && TREE_ASM_WRITTEN (stmt))
24283 gcc_assert (stmt_die);
24284 add_high_low_attributes (stmt, stmt_die);
24287 decls_for_scope (stmt, stmt_die);
24290 /* Generate a DIE for an inlined subprogram. */
24292 static void
24293 gen_inlined_subroutine_die (tree stmt, dw_die_ref context_die)
24295 tree decl = block_ultimate_origin (stmt);
24297 /* Make sure any inlined functions are known to be inlineable. */
24298 gcc_checking_assert (DECL_ABSTRACT_P (decl)
24299 || cgraph_function_possibly_inlined_p (decl));
24301 dw_die_ref subr_die = new_die (DW_TAG_inlined_subroutine, context_die, stmt);
24303 if (call_arg_locations || debug_inline_points)
24304 equate_block_to_die (stmt, subr_die);
24305 add_abstract_origin_attribute (subr_die, decl);
24306 if (TREE_ASM_WRITTEN (stmt))
24307 add_high_low_attributes (stmt, subr_die);
24308 add_call_src_coords_attributes (stmt, subr_die);
24310 /* The inliner creates an extra BLOCK for the parameter setup,
24311 we want to merge that with the actual outermost BLOCK of the
24312 inlined function to avoid duplicate locals in consumers.
24313 Do that by doing the recursion to subblocks on the single subblock
24314 of STMT. */
24315 bool unwrap_one = false;
24316 if (BLOCK_SUBBLOCKS (stmt) && !BLOCK_CHAIN (BLOCK_SUBBLOCKS (stmt)))
24318 tree origin = block_ultimate_origin (BLOCK_SUBBLOCKS (stmt));
24319 if (origin
24320 && TREE_CODE (origin) == BLOCK
24321 && BLOCK_SUPERCONTEXT (origin) == decl)
24322 unwrap_one = true;
24324 decls_for_scope (stmt, subr_die, !unwrap_one);
24325 if (unwrap_one)
24326 decls_for_scope (BLOCK_SUBBLOCKS (stmt), subr_die);
24329 /* Generate a DIE for a field in a record, or structure. CTX is required: see
24330 the comment for VLR_CONTEXT. */
24332 static void
24333 gen_field_die (tree decl, struct vlr_context *ctx, dw_die_ref context_die)
24335 dw_die_ref decl_die;
24337 if (TREE_TYPE (decl) == error_mark_node)
24338 return;
24340 decl_die = new_die (DW_TAG_member, context_die, decl);
24341 add_name_and_src_coords_attributes (decl_die, decl);
24342 add_type_attribute (decl_die, member_declared_type (decl), decl_quals (decl),
24343 TYPE_REVERSE_STORAGE_ORDER (DECL_FIELD_CONTEXT (decl)),
24344 context_die);
24346 if (DECL_BIT_FIELD_TYPE (decl))
24348 add_byte_size_attribute (decl_die, decl);
24349 add_bit_size_attribute (decl_die, decl);
24350 add_bit_offset_attribute (decl_die, decl, ctx);
24353 add_alignment_attribute (decl_die, decl);
24355 /* If we have a variant part offset, then we are supposed to process a member
24356 of a QUAL_UNION_TYPE, which is how we represent variant parts in
24357 trees. */
24358 gcc_assert (ctx->variant_part_offset == NULL_TREE
24359 || TREE_CODE (DECL_FIELD_CONTEXT (decl)) != QUAL_UNION_TYPE);
24360 if (TREE_CODE (DECL_FIELD_CONTEXT (decl)) != UNION_TYPE)
24361 add_data_member_location_attribute (decl_die, decl, ctx);
24363 if (DECL_ARTIFICIAL (decl))
24364 add_AT_flag (decl_die, DW_AT_artificial, 1);
24366 add_accessibility_attribute (decl_die, decl);
24368 /* Equate decl number to die, so that we can look up this decl later on. */
24369 equate_decl_number_to_die (decl, decl_die);
24372 /* Generate a DIE for a pointer to a member type. TYPE can be an
24373 OFFSET_TYPE, for a pointer to data member, or a RECORD_TYPE, for a
24374 pointer to member function. */
24376 static void
24377 gen_ptr_to_mbr_type_die (tree type, dw_die_ref context_die)
24379 if (lookup_type_die (type))
24380 return;
24382 dw_die_ref ptr_die = new_die (DW_TAG_ptr_to_member_type,
24383 scope_die_for (type, context_die), type);
24385 equate_type_number_to_die (type, ptr_die);
24386 add_AT_die_ref (ptr_die, DW_AT_containing_type,
24387 lookup_type_die (TYPE_OFFSET_BASETYPE (type)));
24388 add_type_attribute (ptr_die, TREE_TYPE (type), TYPE_UNQUALIFIED, false,
24389 context_die);
24390 add_alignment_attribute (ptr_die, type);
24392 if (TREE_CODE (TREE_TYPE (type)) != FUNCTION_TYPE
24393 && TREE_CODE (TREE_TYPE (type)) != METHOD_TYPE)
24395 dw_loc_descr_ref op = new_loc_descr (DW_OP_plus, 0, 0);
24396 add_AT_loc (ptr_die, DW_AT_use_location, op);
24400 static char *producer_string;
24402 /* Return a heap allocated producer string including command line options
24403 if -grecord-gcc-switches. */
24405 static char *
24406 gen_producer_string (void)
24408 size_t j;
24409 auto_vec<const char *> switches;
24410 const char *language_string = lang_hooks.name;
24411 char *producer, *tail;
24412 const char *p;
24413 size_t len = dwarf_record_gcc_switches ? 0 : 3;
24414 size_t plen = strlen (language_string) + 1 + strlen (version_string);
24416 for (j = 1; dwarf_record_gcc_switches && j < save_decoded_options_count; j++)
24417 switch (save_decoded_options[j].opt_index)
24419 case OPT_o:
24420 case OPT_d:
24421 case OPT_dumpbase:
24422 case OPT_dumpdir:
24423 case OPT_auxbase:
24424 case OPT_auxbase_strip:
24425 case OPT_quiet:
24426 case OPT_version:
24427 case OPT_v:
24428 case OPT_w:
24429 case OPT_L:
24430 case OPT_D:
24431 case OPT_I:
24432 case OPT_U:
24433 case OPT_SPECIAL_unknown:
24434 case OPT_SPECIAL_ignore:
24435 case OPT_SPECIAL_deprecated:
24436 case OPT_SPECIAL_program_name:
24437 case OPT_SPECIAL_input_file:
24438 case OPT_grecord_gcc_switches:
24439 case OPT__output_pch_:
24440 case OPT_fdiagnostics_show_location_:
24441 case OPT_fdiagnostics_show_option:
24442 case OPT_fdiagnostics_show_caret:
24443 case OPT_fdiagnostics_show_labels:
24444 case OPT_fdiagnostics_show_line_numbers:
24445 case OPT_fdiagnostics_color_:
24446 case OPT_fdiagnostics_format_:
24447 case OPT_fverbose_asm:
24448 case OPT____:
24449 case OPT__sysroot_:
24450 case OPT_nostdinc:
24451 case OPT_nostdinc__:
24452 case OPT_fpreprocessed:
24453 case OPT_fltrans_output_list_:
24454 case OPT_fresolution_:
24455 case OPT_fdebug_prefix_map_:
24456 case OPT_fmacro_prefix_map_:
24457 case OPT_ffile_prefix_map_:
24458 case OPT_fcompare_debug:
24459 case OPT_fchecking:
24460 case OPT_fchecking_:
24461 /* Ignore these. */
24462 continue;
24463 case OPT_flto_:
24465 const char *lto_canonical = "-flto";
24466 switches.safe_push (lto_canonical);
24467 len += strlen (lto_canonical) + 1;
24468 break;
24470 default:
24471 if (cl_options[save_decoded_options[j].opt_index].flags
24472 & CL_NO_DWARF_RECORD)
24473 continue;
24474 gcc_checking_assert (save_decoded_options[j].canonical_option[0][0]
24475 == '-');
24476 switch (save_decoded_options[j].canonical_option[0][1])
24478 case 'M':
24479 case 'i':
24480 case 'W':
24481 continue;
24482 case 'f':
24483 if (strncmp (save_decoded_options[j].canonical_option[0] + 2,
24484 "dump", 4) == 0)
24485 continue;
24486 break;
24487 default:
24488 break;
24490 switches.safe_push (save_decoded_options[j].orig_option_with_args_text);
24491 len += strlen (save_decoded_options[j].orig_option_with_args_text) + 1;
24492 break;
24495 producer = XNEWVEC (char, plen + 1 + len + 1);
24496 tail = producer;
24497 sprintf (tail, "%s %s", language_string, version_string);
24498 tail += plen;
24500 FOR_EACH_VEC_ELT (switches, j, p)
24502 len = strlen (p);
24503 *tail = ' ';
24504 memcpy (tail + 1, p, len);
24505 tail += len + 1;
24508 *tail = '\0';
24509 return producer;
24512 /* Given a C and/or C++ language/version string return the "highest".
24513 C++ is assumed to be "higher" than C in this case. Used for merging
24514 LTO translation unit languages. */
24515 static const char *
24516 highest_c_language (const char *lang1, const char *lang2)
24518 if (strcmp ("GNU C++17", lang1) == 0 || strcmp ("GNU C++17", lang2) == 0)
24519 return "GNU C++17";
24520 if (strcmp ("GNU C++14", lang1) == 0 || strcmp ("GNU C++14", lang2) == 0)
24521 return "GNU C++14";
24522 if (strcmp ("GNU C++11", lang1) == 0 || strcmp ("GNU C++11", lang2) == 0)
24523 return "GNU C++11";
24524 if (strcmp ("GNU C++98", lang1) == 0 || strcmp ("GNU C++98", lang2) == 0)
24525 return "GNU C++98";
24527 if (strcmp ("GNU C2X", lang1) == 0 || strcmp ("GNU C2X", lang2) == 0)
24528 return "GNU C2X";
24529 if (strcmp ("GNU C17", lang1) == 0 || strcmp ("GNU C17", lang2) == 0)
24530 return "GNU C17";
24531 if (strcmp ("GNU C11", lang1) == 0 || strcmp ("GNU C11", lang2) == 0)
24532 return "GNU C11";
24533 if (strcmp ("GNU C99", lang1) == 0 || strcmp ("GNU C99", lang2) == 0)
24534 return "GNU C99";
24535 if (strcmp ("GNU C89", lang1) == 0 || strcmp ("GNU C89", lang2) == 0)
24536 return "GNU C89";
24538 gcc_unreachable ();
24542 /* Generate the DIE for the compilation unit. */
24544 static dw_die_ref
24545 gen_compile_unit_die (const char *filename)
24547 dw_die_ref die;
24548 const char *language_string = lang_hooks.name;
24549 int language;
24551 die = new_die (DW_TAG_compile_unit, NULL, NULL);
24553 if (filename)
24555 add_name_attribute (die, filename);
24556 /* Don't add cwd for <built-in>. */
24557 if (filename[0] != '<')
24558 add_comp_dir_attribute (die);
24561 add_AT_string (die, DW_AT_producer, producer_string ? producer_string : "");
24563 /* If our producer is LTO try to figure out a common language to use
24564 from the global list of translation units. */
24565 if (strcmp (language_string, "GNU GIMPLE") == 0)
24567 unsigned i;
24568 tree t;
24569 const char *common_lang = NULL;
24571 FOR_EACH_VEC_SAFE_ELT (all_translation_units, i, t)
24573 if (!TRANSLATION_UNIT_LANGUAGE (t))
24574 continue;
24575 if (!common_lang)
24576 common_lang = TRANSLATION_UNIT_LANGUAGE (t);
24577 else if (strcmp (common_lang, TRANSLATION_UNIT_LANGUAGE (t)) == 0)
24579 else if (strncmp (common_lang, "GNU C", 5) == 0
24580 && strncmp (TRANSLATION_UNIT_LANGUAGE (t), "GNU C", 5) == 0)
24581 /* Mixing C and C++ is ok, use C++ in that case. */
24582 common_lang = highest_c_language (common_lang,
24583 TRANSLATION_UNIT_LANGUAGE (t));
24584 else
24586 /* Fall back to C. */
24587 common_lang = NULL;
24588 break;
24592 if (common_lang)
24593 language_string = common_lang;
24596 language = DW_LANG_C;
24597 if (strncmp (language_string, "GNU C", 5) == 0
24598 && ISDIGIT (language_string[5]))
24600 language = DW_LANG_C89;
24601 if (dwarf_version >= 3 || !dwarf_strict)
24603 if (strcmp (language_string, "GNU C89") != 0)
24604 language = DW_LANG_C99;
24606 if (dwarf_version >= 5 /* || !dwarf_strict */)
24607 if (strcmp (language_string, "GNU C11") == 0
24608 || strcmp (language_string, "GNU C17") == 0
24609 || strcmp (language_string, "GNU C2X"))
24610 language = DW_LANG_C11;
24613 else if (strncmp (language_string, "GNU C++", 7) == 0)
24615 language = DW_LANG_C_plus_plus;
24616 if (dwarf_version >= 5 /* || !dwarf_strict */)
24618 if (strcmp (language_string, "GNU C++11") == 0)
24619 language = DW_LANG_C_plus_plus_11;
24620 else if (strcmp (language_string, "GNU C++14") == 0)
24621 language = DW_LANG_C_plus_plus_14;
24622 else if (strcmp (language_string, "GNU C++17") == 0)
24623 /* For now. */
24624 language = DW_LANG_C_plus_plus_14;
24627 else if (strcmp (language_string, "GNU F77") == 0)
24628 language = DW_LANG_Fortran77;
24629 else if (dwarf_version >= 3 || !dwarf_strict)
24631 if (strcmp (language_string, "GNU Ada") == 0)
24632 language = DW_LANG_Ada95;
24633 else if (strncmp (language_string, "GNU Fortran", 11) == 0)
24635 language = DW_LANG_Fortran95;
24636 if (dwarf_version >= 5 /* || !dwarf_strict */)
24638 if (strcmp (language_string, "GNU Fortran2003") == 0)
24639 language = DW_LANG_Fortran03;
24640 else if (strcmp (language_string, "GNU Fortran2008") == 0)
24641 language = DW_LANG_Fortran08;
24644 else if (strcmp (language_string, "GNU Objective-C") == 0)
24645 language = DW_LANG_ObjC;
24646 else if (strcmp (language_string, "GNU Objective-C++") == 0)
24647 language = DW_LANG_ObjC_plus_plus;
24648 else if (strcmp (language_string, "GNU D") == 0)
24649 language = DW_LANG_D;
24650 else if (dwarf_version >= 5 || !dwarf_strict)
24652 if (strcmp (language_string, "GNU Go") == 0)
24653 language = DW_LANG_Go;
24656 /* Use a degraded Fortran setting in strict DWARF2 so is_fortran works. */
24657 else if (strncmp (language_string, "GNU Fortran", 11) == 0)
24658 language = DW_LANG_Fortran90;
24659 /* Likewise for Ada. */
24660 else if (strcmp (language_string, "GNU Ada") == 0)
24661 language = DW_LANG_Ada83;
24663 add_AT_unsigned (die, DW_AT_language, language);
24665 switch (language)
24667 case DW_LANG_Fortran77:
24668 case DW_LANG_Fortran90:
24669 case DW_LANG_Fortran95:
24670 case DW_LANG_Fortran03:
24671 case DW_LANG_Fortran08:
24672 /* Fortran has case insensitive identifiers and the front-end
24673 lowercases everything. */
24674 add_AT_unsigned (die, DW_AT_identifier_case, DW_ID_down_case);
24675 break;
24676 default:
24677 /* The default DW_ID_case_sensitive doesn't need to be specified. */
24678 break;
24680 return die;
24683 /* Generate the DIE for a base class. */
24685 static void
24686 gen_inheritance_die (tree binfo, tree access, tree type,
24687 dw_die_ref context_die)
24689 dw_die_ref die = new_die (DW_TAG_inheritance, context_die, binfo);
24690 struct vlr_context ctx = { type, NULL };
24692 add_type_attribute (die, BINFO_TYPE (binfo), TYPE_UNQUALIFIED, false,
24693 context_die);
24694 add_data_member_location_attribute (die, binfo, &ctx);
24696 if (BINFO_VIRTUAL_P (binfo))
24697 add_AT_unsigned (die, DW_AT_virtuality, DW_VIRTUALITY_virtual);
24699 /* In DWARF3+ the default is DW_ACCESS_private only in DW_TAG_class_type
24700 children, otherwise the default is DW_ACCESS_public. In DWARF2
24701 the default has always been DW_ACCESS_private. */
24702 if (access == access_public_node)
24704 if (dwarf_version == 2
24705 || context_die->die_tag == DW_TAG_class_type)
24706 add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_public);
24708 else if (access == access_protected_node)
24709 add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_protected);
24710 else if (dwarf_version > 2
24711 && context_die->die_tag != DW_TAG_class_type)
24712 add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_private);
24715 /* Return whether DECL is a FIELD_DECL that represents the variant part of a
24716 structure. */
24718 static bool
24719 is_variant_part (tree decl)
24721 return (TREE_CODE (decl) == FIELD_DECL
24722 && TREE_CODE (TREE_TYPE (decl)) == QUAL_UNION_TYPE);
24725 /* Check that OPERAND is a reference to a field in STRUCT_TYPE. If it is,
24726 return the FIELD_DECL. Return NULL_TREE otherwise. */
24728 static tree
24729 analyze_discr_in_predicate (tree operand, tree struct_type)
24731 while (CONVERT_EXPR_P (operand))
24732 operand = TREE_OPERAND (operand, 0);
24734 /* Match field access to members of struct_type only. */
24735 if (TREE_CODE (operand) == COMPONENT_REF
24736 && TREE_CODE (TREE_OPERAND (operand, 0)) == PLACEHOLDER_EXPR
24737 && TREE_TYPE (TREE_OPERAND (operand, 0)) == struct_type
24738 && TREE_CODE (TREE_OPERAND (operand, 1)) == FIELD_DECL)
24739 return TREE_OPERAND (operand, 1);
24740 else
24741 return NULL_TREE;
24744 /* Check that SRC is a constant integer that can be represented as a native
24745 integer constant (either signed or unsigned). If so, store it into DEST and
24746 return true. Return false otherwise. */
24748 static bool
24749 get_discr_value (tree src, dw_discr_value *dest)
24751 tree discr_type = TREE_TYPE (src);
24753 if (lang_hooks.types.get_debug_type)
24755 tree debug_type = lang_hooks.types.get_debug_type (discr_type);
24756 if (debug_type != NULL)
24757 discr_type = debug_type;
24760 if (TREE_CODE (src) != INTEGER_CST || !INTEGRAL_TYPE_P (discr_type))
24761 return false;
24763 /* Signedness can vary between the original type and the debug type. This
24764 can happen for character types in Ada for instance: the character type
24765 used for code generation can be signed, to be compatible with the C one,
24766 but from a debugger point of view, it must be unsigned. */
24767 bool is_orig_unsigned = TYPE_UNSIGNED (TREE_TYPE (src));
24768 bool is_debug_unsigned = TYPE_UNSIGNED (discr_type);
24770 if (is_orig_unsigned != is_debug_unsigned)
24771 src = fold_convert (discr_type, src);
24773 if (!(is_debug_unsigned ? tree_fits_uhwi_p (src) : tree_fits_shwi_p (src)))
24774 return false;
24776 dest->pos = is_debug_unsigned;
24777 if (is_debug_unsigned)
24778 dest->v.uval = tree_to_uhwi (src);
24779 else
24780 dest->v.sval = tree_to_shwi (src);
24782 return true;
24785 /* Try to extract synthetic properties out of VARIANT_PART_DECL, which is a
24786 FIELD_DECL in STRUCT_TYPE that represents a variant part. If unsuccessful,
24787 store NULL_TREE in DISCR_DECL. Otherwise:
24789 - store the discriminant field in STRUCT_TYPE that controls the variant
24790 part to *DISCR_DECL
24792 - put in *DISCR_LISTS_P an array where for each variant, the item
24793 represents the corresponding matching list of discriminant values.
24795 - put in *DISCR_LISTS_LENGTH the number of variants, which is the size of
24796 the above array.
24798 Note that when the array is allocated (i.e. when the analysis is
24799 successful), it is up to the caller to free the array. */
24801 static void
24802 analyze_variants_discr (tree variant_part_decl,
24803 tree struct_type,
24804 tree *discr_decl,
24805 dw_discr_list_ref **discr_lists_p,
24806 unsigned *discr_lists_length)
24808 tree variant_part_type = TREE_TYPE (variant_part_decl);
24809 tree variant;
24810 dw_discr_list_ref *discr_lists;
24811 unsigned i;
24813 /* Compute how many variants there are in this variant part. */
24814 *discr_lists_length = 0;
24815 for (variant = TYPE_FIELDS (variant_part_type);
24816 variant != NULL_TREE;
24817 variant = DECL_CHAIN (variant))
24818 ++*discr_lists_length;
24820 *discr_decl = NULL_TREE;
24821 *discr_lists_p
24822 = (dw_discr_list_ref *) xcalloc (*discr_lists_length,
24823 sizeof (**discr_lists_p));
24824 discr_lists = *discr_lists_p;
24826 /* And then analyze all variants to extract discriminant information for all
24827 of them. This analysis is conservative: as soon as we detect something we
24828 do not support, abort everything and pretend we found nothing. */
24829 for (variant = TYPE_FIELDS (variant_part_type), i = 0;
24830 variant != NULL_TREE;
24831 variant = DECL_CHAIN (variant), ++i)
24833 tree match_expr = DECL_QUALIFIER (variant);
24835 /* Now, try to analyze the predicate and deduce a discriminant for
24836 it. */
24837 if (match_expr == boolean_true_node)
24838 /* Typically happens for the default variant: it matches all cases that
24839 previous variants rejected. Don't output any matching value for
24840 this one. */
24841 continue;
24843 /* The following loop tries to iterate over each discriminant
24844 possibility: single values or ranges. */
24845 while (match_expr != NULL_TREE)
24847 tree next_round_match_expr;
24848 tree candidate_discr = NULL_TREE;
24849 dw_discr_list_ref new_node = NULL;
24851 /* Possibilities are matched one after the other by nested
24852 TRUTH_ORIF_EXPR expressions. Process the current possibility and
24853 continue with the rest at next iteration. */
24854 if (TREE_CODE (match_expr) == TRUTH_ORIF_EXPR)
24856 next_round_match_expr = TREE_OPERAND (match_expr, 0);
24857 match_expr = TREE_OPERAND (match_expr, 1);
24859 else
24860 next_round_match_expr = NULL_TREE;
24862 if (match_expr == boolean_false_node)
24863 /* This sub-expression matches nothing: just wait for the next
24864 one. */
24867 else if (TREE_CODE (match_expr) == EQ_EXPR)
24869 /* We are matching: <discr_field> == <integer_cst>
24870 This sub-expression matches a single value. */
24871 tree integer_cst = TREE_OPERAND (match_expr, 1);
24873 candidate_discr
24874 = analyze_discr_in_predicate (TREE_OPERAND (match_expr, 0),
24875 struct_type);
24877 new_node = ggc_cleared_alloc<dw_discr_list_node> ();
24878 if (!get_discr_value (integer_cst,
24879 &new_node->dw_discr_lower_bound))
24880 goto abort;
24881 new_node->dw_discr_range = false;
24884 else if (TREE_CODE (match_expr) == TRUTH_ANDIF_EXPR)
24886 /* We are matching:
24887 <discr_field> > <integer_cst>
24888 && <discr_field> < <integer_cst>.
24889 This sub-expression matches the range of values between the
24890 two matched integer constants. Note that comparisons can be
24891 inclusive or exclusive. */
24892 tree candidate_discr_1, candidate_discr_2;
24893 tree lower_cst, upper_cst;
24894 bool lower_cst_included, upper_cst_included;
24895 tree lower_op = TREE_OPERAND (match_expr, 0);
24896 tree upper_op = TREE_OPERAND (match_expr, 1);
24898 /* When the comparison is exclusive, the integer constant is not
24899 the discriminant range bound we are looking for: we will have
24900 to increment or decrement it. */
24901 if (TREE_CODE (lower_op) == GE_EXPR)
24902 lower_cst_included = true;
24903 else if (TREE_CODE (lower_op) == GT_EXPR)
24904 lower_cst_included = false;
24905 else
24906 goto abort;
24908 if (TREE_CODE (upper_op) == LE_EXPR)
24909 upper_cst_included = true;
24910 else if (TREE_CODE (upper_op) == LT_EXPR)
24911 upper_cst_included = false;
24912 else
24913 goto abort;
24915 /* Extract the discriminant from the first operand and check it
24916 is consistant with the same analysis in the second
24917 operand. */
24918 candidate_discr_1
24919 = analyze_discr_in_predicate (TREE_OPERAND (lower_op, 0),
24920 struct_type);
24921 candidate_discr_2
24922 = analyze_discr_in_predicate (TREE_OPERAND (upper_op, 0),
24923 struct_type);
24924 if (candidate_discr_1 == candidate_discr_2)
24925 candidate_discr = candidate_discr_1;
24926 else
24927 goto abort;
24929 /* Extract bounds from both. */
24930 new_node = ggc_cleared_alloc<dw_discr_list_node> ();
24931 lower_cst = TREE_OPERAND (lower_op, 1);
24932 upper_cst = TREE_OPERAND (upper_op, 1);
24934 if (!lower_cst_included)
24935 lower_cst
24936 = fold_build2 (PLUS_EXPR, TREE_TYPE (lower_cst), lower_cst,
24937 build_int_cst (TREE_TYPE (lower_cst), 1));
24938 if (!upper_cst_included)
24939 upper_cst
24940 = fold_build2 (MINUS_EXPR, TREE_TYPE (upper_cst), upper_cst,
24941 build_int_cst (TREE_TYPE (upper_cst), 1));
24943 if (!get_discr_value (lower_cst,
24944 &new_node->dw_discr_lower_bound)
24945 || !get_discr_value (upper_cst,
24946 &new_node->dw_discr_upper_bound))
24947 goto abort;
24949 new_node->dw_discr_range = true;
24952 else if ((candidate_discr
24953 = analyze_discr_in_predicate (match_expr, struct_type))
24954 && TREE_TYPE (candidate_discr) == boolean_type_node)
24956 /* We are matching: <discr_field> for a boolean discriminant.
24957 This sub-expression matches boolean_true_node. */
24958 new_node = ggc_cleared_alloc<dw_discr_list_node> ();
24959 if (!get_discr_value (boolean_true_node,
24960 &new_node->dw_discr_lower_bound))
24961 goto abort;
24962 new_node->dw_discr_range = false;
24965 else
24966 /* Unsupported sub-expression: we cannot determine the set of
24967 matching discriminant values. Abort everything. */
24968 goto abort;
24970 /* If the discriminant info is not consistant with what we saw so
24971 far, consider the analysis failed and abort everything. */
24972 if (candidate_discr == NULL_TREE
24973 || (*discr_decl != NULL_TREE && candidate_discr != *discr_decl))
24974 goto abort;
24975 else
24976 *discr_decl = candidate_discr;
24978 if (new_node != NULL)
24980 new_node->dw_discr_next = discr_lists[i];
24981 discr_lists[i] = new_node;
24983 match_expr = next_round_match_expr;
24987 /* If we reach this point, we could match everything we were interested
24988 in. */
24989 return;
24991 abort:
24992 /* Clean all data structure and return no result. */
24993 free (*discr_lists_p);
24994 *discr_lists_p = NULL;
24995 *discr_decl = NULL_TREE;
24998 /* Generate a DIE to represent VARIANT_PART_DECL, a variant part that is part
24999 of STRUCT_TYPE, a record type. This new DIE is emitted as the next child
25000 under CONTEXT_DIE.
25002 Variant parts are supposed to be implemented as a FIELD_DECL whose type is a
25003 QUAL_UNION_TYPE: this is the VARIANT_PART_DECL parameter. The members for
25004 this type, which are record types, represent the available variants and each
25005 has a DECL_QUALIFIER attribute. The discriminant and the discriminant
25006 values are inferred from these attributes.
25008 In trees, the offsets for the fields inside these sub-records are relative
25009 to the variant part itself, whereas the corresponding DIEs should have
25010 offset attributes that are relative to the embedding record base address.
25011 This is why the caller must provide a VARIANT_PART_OFFSET expression: it
25012 must be an expression that computes the offset of the variant part to
25013 describe in DWARF. */
25015 static void
25016 gen_variant_part (tree variant_part_decl, struct vlr_context *vlr_ctx,
25017 dw_die_ref context_die)
25019 const tree variant_part_type = TREE_TYPE (variant_part_decl);
25020 tree variant_part_offset = vlr_ctx->variant_part_offset;
25021 struct loc_descr_context ctx = {
25022 vlr_ctx->struct_type, /* context_type */
25023 NULL_TREE, /* base_decl */
25024 NULL, /* dpi */
25025 false, /* placeholder_arg */
25026 false /* placeholder_seen */
25029 /* The FIELD_DECL node in STRUCT_TYPE that acts as the discriminant, or
25030 NULL_TREE if there is no such field. */
25031 tree discr_decl = NULL_TREE;
25032 dw_discr_list_ref *discr_lists;
25033 unsigned discr_lists_length = 0;
25034 unsigned i;
25036 dw_die_ref dwarf_proc_die = NULL;
25037 dw_die_ref variant_part_die
25038 = new_die (DW_TAG_variant_part, context_die, variant_part_type);
25040 equate_decl_number_to_die (variant_part_decl, variant_part_die);
25042 analyze_variants_discr (variant_part_decl, vlr_ctx->struct_type,
25043 &discr_decl, &discr_lists, &discr_lists_length);
25045 if (discr_decl != NULL_TREE)
25047 dw_die_ref discr_die = lookup_decl_die (discr_decl);
25049 if (discr_die)
25050 add_AT_die_ref (variant_part_die, DW_AT_discr, discr_die);
25051 else
25052 /* We have no DIE for the discriminant, so just discard all
25053 discrimimant information in the output. */
25054 discr_decl = NULL_TREE;
25057 /* If the offset for this variant part is more complex than a constant,
25058 create a DWARF procedure for it so that we will not have to generate DWARF
25059 expressions for it for each member. */
25060 if (TREE_CODE (variant_part_offset) != INTEGER_CST
25061 && (dwarf_version >= 3 || !dwarf_strict))
25063 const tree dwarf_proc_fndecl
25064 = build_decl (UNKNOWN_LOCATION, FUNCTION_DECL, NULL_TREE,
25065 build_function_type (TREE_TYPE (variant_part_offset),
25066 NULL_TREE));
25067 const tree dwarf_proc_call = build_call_expr (dwarf_proc_fndecl, 0);
25068 const dw_loc_descr_ref dwarf_proc_body
25069 = loc_descriptor_from_tree (variant_part_offset, 0, &ctx);
25071 dwarf_proc_die = new_dwarf_proc_die (dwarf_proc_body,
25072 dwarf_proc_fndecl, context_die);
25073 if (dwarf_proc_die != NULL)
25074 variant_part_offset = dwarf_proc_call;
25077 /* Output DIEs for all variants. */
25078 i = 0;
25079 for (tree variant = TYPE_FIELDS (variant_part_type);
25080 variant != NULL_TREE;
25081 variant = DECL_CHAIN (variant), ++i)
25083 tree variant_type = TREE_TYPE (variant);
25084 dw_die_ref variant_die;
25086 /* All variants (i.e. members of a variant part) are supposed to be
25087 encoded as structures. Sub-variant parts are QUAL_UNION_TYPE fields
25088 under these records. */
25089 gcc_assert (TREE_CODE (variant_type) == RECORD_TYPE);
25091 variant_die = new_die (DW_TAG_variant, variant_part_die, variant_type);
25092 equate_decl_number_to_die (variant, variant_die);
25094 /* Output discriminant values this variant matches, if any. */
25095 if (discr_decl == NULL || discr_lists[i] == NULL)
25096 /* In the case we have discriminant information at all, this is
25097 probably the default variant: as the standard says, don't
25098 output any discriminant value/list attribute. */
25100 else if (discr_lists[i]->dw_discr_next == NULL
25101 && !discr_lists[i]->dw_discr_range)
25102 /* If there is only one accepted value, don't bother outputting a
25103 list. */
25104 add_discr_value (variant_die, &discr_lists[i]->dw_discr_lower_bound);
25105 else
25106 add_discr_list (variant_die, discr_lists[i]);
25108 for (tree member = TYPE_FIELDS (variant_type);
25109 member != NULL_TREE;
25110 member = DECL_CHAIN (member))
25112 struct vlr_context vlr_sub_ctx = {
25113 vlr_ctx->struct_type, /* struct_type */
25114 NULL /* variant_part_offset */
25116 if (is_variant_part (member))
25118 /* All offsets for fields inside variant parts are relative to
25119 the top-level embedding RECORD_TYPE's base address. On the
25120 other hand, offsets in GCC's types are relative to the
25121 nested-most variant part. So we have to sum offsets each time
25122 we recurse. */
25124 vlr_sub_ctx.variant_part_offset
25125 = fold_build2 (PLUS_EXPR, TREE_TYPE (variant_part_offset),
25126 variant_part_offset, byte_position (member));
25127 gen_variant_part (member, &vlr_sub_ctx, variant_die);
25129 else
25131 vlr_sub_ctx.variant_part_offset = variant_part_offset;
25132 gen_decl_die (member, NULL, &vlr_sub_ctx, variant_die);
25137 free (discr_lists);
25140 /* Generate a DIE for a class member. */
25142 static void
25143 gen_member_die (tree type, dw_die_ref context_die)
25145 tree member;
25146 tree binfo = TYPE_BINFO (type);
25148 gcc_assert (TYPE_MAIN_VARIANT (type) == type);
25150 /* If this is not an incomplete type, output descriptions of each of its
25151 members. Note that as we output the DIEs necessary to represent the
25152 members of this record or union type, we will also be trying to output
25153 DIEs to represent the *types* of those members. However the `type'
25154 function (above) will specifically avoid generating type DIEs for member
25155 types *within* the list of member DIEs for this (containing) type except
25156 for those types (of members) which are explicitly marked as also being
25157 members of this (containing) type themselves. The g++ front- end can
25158 force any given type to be treated as a member of some other (containing)
25159 type by setting the TYPE_CONTEXT of the given (member) type to point to
25160 the TREE node representing the appropriate (containing) type. */
25162 /* First output info about the base classes. */
25163 if (binfo && early_dwarf)
25165 vec<tree, va_gc> *accesses = BINFO_BASE_ACCESSES (binfo);
25166 int i;
25167 tree base;
25169 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base); i++)
25170 gen_inheritance_die (base,
25171 (accesses ? (*accesses)[i] : access_public_node),
25172 type,
25173 context_die);
25176 /* Now output info about the members. */
25177 for (member = TYPE_FIELDS (type); member; member = DECL_CHAIN (member))
25179 /* Ignore clones. */
25180 if (DECL_ABSTRACT_ORIGIN (member))
25181 continue;
25183 struct vlr_context vlr_ctx = { type, NULL_TREE };
25184 bool static_inline_p
25185 = (VAR_P (member)
25186 && TREE_STATIC (member)
25187 && (lang_hooks.decls.decl_dwarf_attribute (member, DW_AT_inline)
25188 != -1));
25190 /* If we thought we were generating minimal debug info for TYPE
25191 and then changed our minds, some of the member declarations
25192 may have already been defined. Don't define them again, but
25193 do put them in the right order. */
25195 if (dw_die_ref child = lookup_decl_die (member))
25197 /* Handle inline static data members, which only have in-class
25198 declarations. */
25199 bool splice = true;
25201 dw_die_ref ref = NULL;
25202 if (child->die_tag == DW_TAG_variable
25203 && child->die_parent == comp_unit_die ())
25205 ref = get_AT_ref (child, DW_AT_specification);
25207 /* For C++17 inline static data members followed by redundant
25208 out of class redeclaration, we might get here with
25209 child being the DIE created for the out of class
25210 redeclaration and with its DW_AT_specification being
25211 the DIE created for in-class definition. We want to
25212 reparent the latter, and don't want to create another
25213 DIE with DW_AT_specification in that case, because
25214 we already have one. */
25215 if (ref
25216 && static_inline_p
25217 && ref->die_tag == DW_TAG_variable
25218 && ref->die_parent == comp_unit_die ()
25219 && get_AT (ref, DW_AT_specification) == NULL)
25221 child = ref;
25222 ref = NULL;
25223 static_inline_p = false;
25226 if (!ref)
25228 reparent_child (child, context_die);
25229 if (dwarf_version < 5)
25230 child->die_tag = DW_TAG_member;
25231 splice = false;
25235 if (splice)
25236 splice_child_die (context_die, child);
25239 /* Do not generate standard DWARF for variant parts if we are generating
25240 the corresponding GNAT encodings: DIEs generated for both would
25241 conflict in our mappings. */
25242 else if (is_variant_part (member)
25243 && gnat_encodings == DWARF_GNAT_ENCODINGS_MINIMAL)
25245 vlr_ctx.variant_part_offset = byte_position (member);
25246 gen_variant_part (member, &vlr_ctx, context_die);
25248 else
25250 vlr_ctx.variant_part_offset = NULL_TREE;
25251 gen_decl_die (member, NULL, &vlr_ctx, context_die);
25254 /* For C++ inline static data members emit immediately a DW_TAG_variable
25255 DIE that will refer to that DW_TAG_member/DW_TAG_variable through
25256 DW_AT_specification. */
25257 if (static_inline_p)
25259 int old_extern = DECL_EXTERNAL (member);
25260 DECL_EXTERNAL (member) = 0;
25261 gen_decl_die (member, NULL, NULL, comp_unit_die ());
25262 DECL_EXTERNAL (member) = old_extern;
25267 /* Generate a DIE for a structure or union type. If TYPE_DECL_SUPPRESS_DEBUG
25268 is set, we pretend that the type was never defined, so we only get the
25269 member DIEs needed by later specification DIEs. */
25271 static void
25272 gen_struct_or_union_type_die (tree type, dw_die_ref context_die,
25273 enum debug_info_usage usage)
25275 if (TREE_ASM_WRITTEN (type))
25277 /* Fill in the bound of variable-length fields in late dwarf if
25278 still incomplete. */
25279 if (!early_dwarf && variably_modified_type_p (type, NULL))
25280 for (tree member = TYPE_FIELDS (type);
25281 member;
25282 member = DECL_CHAIN (member))
25283 fill_variable_array_bounds (TREE_TYPE (member));
25284 return;
25287 dw_die_ref type_die = lookup_type_die (type);
25288 dw_die_ref scope_die = 0;
25289 int nested = 0;
25290 int complete = (TYPE_SIZE (type)
25291 && (! TYPE_STUB_DECL (type)
25292 || ! TYPE_DECL_SUPPRESS_DEBUG (TYPE_STUB_DECL (type))));
25293 int ns_decl = (context_die && context_die->die_tag == DW_TAG_namespace);
25294 complete = complete && should_emit_struct_debug (type, usage);
25296 if (type_die && ! complete)
25297 return;
25299 if (TYPE_CONTEXT (type) != NULL_TREE
25300 && (AGGREGATE_TYPE_P (TYPE_CONTEXT (type))
25301 || TREE_CODE (TYPE_CONTEXT (type)) == NAMESPACE_DECL))
25302 nested = 1;
25304 scope_die = scope_die_for (type, context_die);
25306 /* Generate child dies for template paramaters. */
25307 if (!type_die && debug_info_level > DINFO_LEVEL_TERSE)
25308 schedule_generic_params_dies_gen (type);
25310 if (! type_die || (nested && is_cu_die (scope_die)))
25311 /* First occurrence of type or toplevel definition of nested class. */
25313 dw_die_ref old_die = type_die;
25315 type_die = new_die (TREE_CODE (type) == RECORD_TYPE
25316 ? record_type_tag (type) : DW_TAG_union_type,
25317 scope_die, type);
25318 equate_type_number_to_die (type, type_die);
25319 if (old_die)
25320 add_AT_specification (type_die, old_die);
25321 else
25322 add_name_attribute (type_die, type_tag (type));
25324 else
25325 remove_AT (type_die, DW_AT_declaration);
25327 /* If this type has been completed, then give it a byte_size attribute and
25328 then give a list of members. */
25329 if (complete && !ns_decl)
25331 /* Prevent infinite recursion in cases where the type of some member of
25332 this type is expressed in terms of this type itself. */
25333 TREE_ASM_WRITTEN (type) = 1;
25334 add_byte_size_attribute (type_die, type);
25335 add_alignment_attribute (type_die, type);
25336 if (TYPE_STUB_DECL (type) != NULL_TREE)
25338 add_src_coords_attributes (type_die, TYPE_STUB_DECL (type));
25339 add_accessibility_attribute (type_die, TYPE_STUB_DECL (type));
25342 /* If the first reference to this type was as the return type of an
25343 inline function, then it may not have a parent. Fix this now. */
25344 if (type_die->die_parent == NULL)
25345 add_child_die (scope_die, type_die);
25347 gen_member_die (type, type_die);
25349 add_gnat_descriptive_type_attribute (type_die, type, context_die);
25350 if (TYPE_ARTIFICIAL (type))
25351 add_AT_flag (type_die, DW_AT_artificial, 1);
25353 /* GNU extension: Record what type our vtable lives in. */
25354 if (TYPE_VFIELD (type))
25356 tree vtype = DECL_FCONTEXT (TYPE_VFIELD (type));
25358 gen_type_die (vtype, context_die);
25359 add_AT_die_ref (type_die, DW_AT_containing_type,
25360 lookup_type_die (vtype));
25363 else
25365 add_AT_flag (type_die, DW_AT_declaration, 1);
25367 /* We don't need to do this for function-local types. */
25368 if (TYPE_STUB_DECL (type)
25369 && ! decl_function_context (TYPE_STUB_DECL (type)))
25370 vec_safe_push (incomplete_types, type);
25373 if (get_AT (type_die, DW_AT_name))
25374 add_pubtype (type, type_die);
25377 /* Generate a DIE for a subroutine _type_. */
25379 static void
25380 gen_subroutine_type_die (tree type, dw_die_ref context_die)
25382 tree return_type = TREE_TYPE (type);
25383 dw_die_ref subr_die
25384 = new_die (DW_TAG_subroutine_type,
25385 scope_die_for (type, context_die), type);
25387 equate_type_number_to_die (type, subr_die);
25388 add_prototyped_attribute (subr_die, type);
25389 add_type_attribute (subr_die, return_type, TYPE_UNQUALIFIED, false,
25390 context_die);
25391 add_alignment_attribute (subr_die, type);
25392 gen_formal_types_die (type, subr_die);
25394 if (get_AT (subr_die, DW_AT_name))
25395 add_pubtype (type, subr_die);
25396 if ((dwarf_version >= 5 || !dwarf_strict)
25397 && lang_hooks.types.type_dwarf_attribute (type, DW_AT_reference) != -1)
25398 add_AT_flag (subr_die, DW_AT_reference, 1);
25399 if ((dwarf_version >= 5 || !dwarf_strict)
25400 && lang_hooks.types.type_dwarf_attribute (type,
25401 DW_AT_rvalue_reference) != -1)
25402 add_AT_flag (subr_die, DW_AT_rvalue_reference, 1);
25405 /* Generate a DIE for a type definition. */
25407 static void
25408 gen_typedef_die (tree decl, dw_die_ref context_die)
25410 dw_die_ref type_die;
25411 tree type;
25413 if (TREE_ASM_WRITTEN (decl))
25415 if (DECL_ORIGINAL_TYPE (decl))
25416 fill_variable_array_bounds (DECL_ORIGINAL_TYPE (decl));
25417 return;
25420 /* As we avoid creating DIEs for local typedefs (see decl_ultimate_origin
25421 checks in process_scope_var and modified_type_die), this should be called
25422 only for original types. */
25423 gcc_assert (decl_ultimate_origin (decl) == NULL
25424 || decl_ultimate_origin (decl) == decl);
25426 TREE_ASM_WRITTEN (decl) = 1;
25427 type_die = new_die (DW_TAG_typedef, context_die, decl);
25429 add_name_and_src_coords_attributes (type_die, decl);
25430 if (DECL_ORIGINAL_TYPE (decl))
25432 type = DECL_ORIGINAL_TYPE (decl);
25433 if (type == error_mark_node)
25434 return;
25436 gcc_assert (type != TREE_TYPE (decl));
25437 equate_type_number_to_die (TREE_TYPE (decl), type_die);
25439 else
25441 type = TREE_TYPE (decl);
25442 if (type == error_mark_node)
25443 return;
25445 if (is_naming_typedef_decl (TYPE_NAME (type)))
25447 /* Here, we are in the case of decl being a typedef naming
25448 an anonymous type, e.g:
25449 typedef struct {...} foo;
25450 In that case TREE_TYPE (decl) is not a typedef variant
25451 type and TYPE_NAME of the anonymous type is set to the
25452 TYPE_DECL of the typedef. This construct is emitted by
25453 the C++ FE.
25455 TYPE is the anonymous struct named by the typedef
25456 DECL. As we need the DW_AT_type attribute of the
25457 DW_TAG_typedef to point to the DIE of TYPE, let's
25458 generate that DIE right away. add_type_attribute
25459 called below will then pick (via lookup_type_die) that
25460 anonymous struct DIE. */
25461 if (!TREE_ASM_WRITTEN (type))
25462 gen_tagged_type_die (type, context_die, DINFO_USAGE_DIR_USE);
25464 /* This is a GNU Extension. We are adding a
25465 DW_AT_linkage_name attribute to the DIE of the
25466 anonymous struct TYPE. The value of that attribute
25467 is the name of the typedef decl naming the anonymous
25468 struct. This greatly eases the work of consumers of
25469 this debug info. */
25470 add_linkage_name_raw (lookup_type_die (type), decl);
25474 add_type_attribute (type_die, type, decl_quals (decl), false,
25475 context_die);
25477 if (is_naming_typedef_decl (decl))
25478 /* We want that all subsequent calls to lookup_type_die with
25479 TYPE in argument yield the DW_TAG_typedef we have just
25480 created. */
25481 equate_type_number_to_die (type, type_die);
25483 add_alignment_attribute (type_die, TREE_TYPE (decl));
25485 add_accessibility_attribute (type_die, decl);
25487 if (DECL_ABSTRACT_P (decl))
25488 equate_decl_number_to_die (decl, type_die);
25490 if (get_AT (type_die, DW_AT_name))
25491 add_pubtype (decl, type_die);
25494 /* Generate a DIE for a struct, class, enum or union type. */
25496 static void
25497 gen_tagged_type_die (tree type,
25498 dw_die_ref context_die,
25499 enum debug_info_usage usage)
25501 if (type == NULL_TREE
25502 || !is_tagged_type (type))
25503 return;
25505 if (TREE_ASM_WRITTEN (type))
25507 /* If this is a nested type whose containing class hasn't been written
25508 out yet, writing it out will cover this one, too. This does not apply
25509 to instantiations of member class templates; they need to be added to
25510 the containing class as they are generated. FIXME: This hurts the
25511 idea of combining type decls from multiple TUs, since we can't predict
25512 what set of template instantiations we'll get. */
25513 else if (TYPE_CONTEXT (type)
25514 && AGGREGATE_TYPE_P (TYPE_CONTEXT (type))
25515 && ! TREE_ASM_WRITTEN (TYPE_CONTEXT (type)))
25517 gen_type_die_with_usage (TYPE_CONTEXT (type), context_die, usage);
25519 if (TREE_ASM_WRITTEN (type))
25520 return;
25522 /* If that failed, attach ourselves to the stub. */
25523 context_die = lookup_type_die (TYPE_CONTEXT (type));
25525 else if (TYPE_CONTEXT (type) != NULL_TREE
25526 && (TREE_CODE (TYPE_CONTEXT (type)) == FUNCTION_DECL))
25528 /* If this type is local to a function that hasn't been written
25529 out yet, use a NULL context for now; it will be fixed up in
25530 decls_for_scope. */
25531 context_die = lookup_decl_die (TYPE_CONTEXT (type));
25532 /* A declaration DIE doesn't count; nested types need to go in the
25533 specification. */
25534 if (context_die && is_declaration_die (context_die))
25535 context_die = NULL;
25537 else
25538 context_die = declare_in_namespace (type, context_die);
25540 if (TREE_CODE (type) == ENUMERAL_TYPE)
25542 /* This might have been written out by the call to
25543 declare_in_namespace. */
25544 if (!TREE_ASM_WRITTEN (type))
25545 gen_enumeration_type_die (type, context_die);
25547 else
25548 gen_struct_or_union_type_die (type, context_die, usage);
25550 /* Don't set TREE_ASM_WRITTEN on an incomplete struct; we want to fix
25551 it up if it is ever completed. gen_*_type_die will set it for us
25552 when appropriate. */
25555 /* Generate a type description DIE. */
25557 static void
25558 gen_type_die_with_usage (tree type, dw_die_ref context_die,
25559 enum debug_info_usage usage)
25561 struct array_descr_info info;
25563 if (type == NULL_TREE || type == error_mark_node)
25564 return;
25566 if (flag_checking && type)
25567 verify_type (type);
25569 if (TYPE_NAME (type) != NULL_TREE
25570 && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
25571 && is_redundant_typedef (TYPE_NAME (type))
25572 && DECL_ORIGINAL_TYPE (TYPE_NAME (type)))
25573 /* The DECL of this type is a typedef we don't want to emit debug
25574 info for but we want debug info for its underlying typedef.
25575 This can happen for e.g, the injected-class-name of a C++
25576 type. */
25577 type = DECL_ORIGINAL_TYPE (TYPE_NAME (type));
25579 /* If TYPE is a typedef type variant, let's generate debug info
25580 for the parent typedef which TYPE is a type of. */
25581 if (typedef_variant_p (type))
25583 if (TREE_ASM_WRITTEN (type))
25584 return;
25586 tree name = TYPE_NAME (type);
25587 tree origin = decl_ultimate_origin (name);
25588 if (origin != NULL && origin != name)
25590 gen_decl_die (origin, NULL, NULL, context_die);
25591 return;
25594 /* Prevent broken recursion; we can't hand off to the same type. */
25595 gcc_assert (DECL_ORIGINAL_TYPE (name) != type);
25597 /* Give typedefs the right scope. */
25598 context_die = scope_die_for (type, context_die);
25600 TREE_ASM_WRITTEN (type) = 1;
25602 gen_decl_die (name, NULL, NULL, context_die);
25603 return;
25606 /* If type is an anonymous tagged type named by a typedef, let's
25607 generate debug info for the typedef. */
25608 if (is_naming_typedef_decl (TYPE_NAME (type)))
25610 /* Give typedefs the right scope. */
25611 context_die = scope_die_for (type, context_die);
25613 gen_decl_die (TYPE_NAME (type), NULL, NULL, context_die);
25614 return;
25617 if (lang_hooks.types.get_debug_type)
25619 tree debug_type = lang_hooks.types.get_debug_type (type);
25621 if (debug_type != NULL_TREE && debug_type != type)
25623 gen_type_die_with_usage (debug_type, context_die, usage);
25624 return;
25628 /* We are going to output a DIE to represent the unqualified version
25629 of this type (i.e. without any const or volatile qualifiers) so
25630 get the main variant (i.e. the unqualified version) of this type
25631 now. (Vectors and arrays are special because the debugging info is in the
25632 cloned type itself. Similarly function/method types can contain extra
25633 ref-qualification). */
25634 if (TREE_CODE (type) == FUNCTION_TYPE
25635 || TREE_CODE (type) == METHOD_TYPE)
25637 /* For function/method types, can't use type_main_variant here,
25638 because that can have different ref-qualifiers for C++,
25639 but try to canonicalize. */
25640 tree main = TYPE_MAIN_VARIANT (type);
25641 for (tree t = main; t; t = TYPE_NEXT_VARIANT (t))
25642 if (TYPE_QUALS_NO_ADDR_SPACE (t) == 0
25643 && check_base_type (t, main)
25644 && check_lang_type (t, type))
25646 type = t;
25647 break;
25650 else if (TREE_CODE (type) != VECTOR_TYPE
25651 && TREE_CODE (type) != ARRAY_TYPE)
25652 type = type_main_variant (type);
25654 /* If this is an array type with hidden descriptor, handle it first. */
25655 if (!TREE_ASM_WRITTEN (type)
25656 && lang_hooks.types.get_array_descr_info)
25658 memset (&info, 0, sizeof (info));
25659 if (lang_hooks.types.get_array_descr_info (type, &info))
25661 /* Fortran sometimes emits array types with no dimension. */
25662 gcc_assert (info.ndimensions >= 0
25663 && (info.ndimensions
25664 <= DWARF2OUT_ARRAY_DESCR_INFO_MAX_DIMEN));
25665 gen_descr_array_type_die (type, &info, context_die);
25666 TREE_ASM_WRITTEN (type) = 1;
25667 return;
25671 if (TREE_ASM_WRITTEN (type))
25673 /* Variable-length types may be incomplete even if
25674 TREE_ASM_WRITTEN. For such types, fall through to
25675 gen_array_type_die() and possibly fill in
25676 DW_AT_{upper,lower}_bound attributes. */
25677 if ((TREE_CODE (type) != ARRAY_TYPE
25678 && TREE_CODE (type) != RECORD_TYPE
25679 && TREE_CODE (type) != UNION_TYPE
25680 && TREE_CODE (type) != QUAL_UNION_TYPE)
25681 || !variably_modified_type_p (type, NULL))
25682 return;
25685 switch (TREE_CODE (type))
25687 case ERROR_MARK:
25688 break;
25690 case POINTER_TYPE:
25691 case REFERENCE_TYPE:
25692 /* We must set TREE_ASM_WRITTEN in case this is a recursive type. This
25693 ensures that the gen_type_die recursion will terminate even if the
25694 type is recursive. Recursive types are possible in Ada. */
25695 /* ??? We could perhaps do this for all types before the switch
25696 statement. */
25697 TREE_ASM_WRITTEN (type) = 1;
25699 /* For these types, all that is required is that we output a DIE (or a
25700 set of DIEs) to represent the "basis" type. */
25701 gen_type_die_with_usage (TREE_TYPE (type), context_die,
25702 DINFO_USAGE_IND_USE);
25703 break;
25705 case OFFSET_TYPE:
25706 /* This code is used for C++ pointer-to-data-member types.
25707 Output a description of the relevant class type. */
25708 gen_type_die_with_usage (TYPE_OFFSET_BASETYPE (type), context_die,
25709 DINFO_USAGE_IND_USE);
25711 /* Output a description of the type of the object pointed to. */
25712 gen_type_die_with_usage (TREE_TYPE (type), context_die,
25713 DINFO_USAGE_IND_USE);
25715 /* Now output a DIE to represent this pointer-to-data-member type
25716 itself. */
25717 gen_ptr_to_mbr_type_die (type, context_die);
25718 break;
25720 case FUNCTION_TYPE:
25721 /* Force out return type (in case it wasn't forced out already). */
25722 gen_type_die_with_usage (TREE_TYPE (type), context_die,
25723 DINFO_USAGE_DIR_USE);
25724 gen_subroutine_type_die (type, context_die);
25725 break;
25727 case METHOD_TYPE:
25728 /* Force out return type (in case it wasn't forced out already). */
25729 gen_type_die_with_usage (TREE_TYPE (type), context_die,
25730 DINFO_USAGE_DIR_USE);
25731 gen_subroutine_type_die (type, context_die);
25732 break;
25734 case ARRAY_TYPE:
25735 case VECTOR_TYPE:
25736 gen_array_type_die (type, context_die);
25737 break;
25739 case ENUMERAL_TYPE:
25740 case RECORD_TYPE:
25741 case UNION_TYPE:
25742 case QUAL_UNION_TYPE:
25743 gen_tagged_type_die (type, context_die, usage);
25744 return;
25746 case VOID_TYPE:
25747 case INTEGER_TYPE:
25748 case REAL_TYPE:
25749 case FIXED_POINT_TYPE:
25750 case COMPLEX_TYPE:
25751 case BOOLEAN_TYPE:
25752 /* No DIEs needed for fundamental types. */
25753 break;
25755 case NULLPTR_TYPE:
25756 case LANG_TYPE:
25757 /* Just use DW_TAG_unspecified_type. */
25759 dw_die_ref type_die = lookup_type_die (type);
25760 if (type_die == NULL)
25762 tree name = TYPE_IDENTIFIER (type);
25763 type_die = new_die (DW_TAG_unspecified_type, comp_unit_die (),
25764 type);
25765 add_name_attribute (type_die, IDENTIFIER_POINTER (name));
25766 equate_type_number_to_die (type, type_die);
25769 break;
25771 default:
25772 if (is_cxx_auto (type))
25774 tree name = TYPE_IDENTIFIER (type);
25775 dw_die_ref *die = (name == get_identifier ("auto")
25776 ? &auto_die : &decltype_auto_die);
25777 if (!*die)
25779 *die = new_die (DW_TAG_unspecified_type,
25780 comp_unit_die (), NULL_TREE);
25781 add_name_attribute (*die, IDENTIFIER_POINTER (name));
25783 equate_type_number_to_die (type, *die);
25784 break;
25786 gcc_unreachable ();
25789 TREE_ASM_WRITTEN (type) = 1;
25792 static void
25793 gen_type_die (tree type, dw_die_ref context_die)
25795 if (type != error_mark_node)
25797 gen_type_die_with_usage (type, context_die, DINFO_USAGE_DIR_USE);
25798 if (flag_checking)
25800 dw_die_ref die = lookup_type_die (type);
25801 if (die)
25802 check_die (die);
25807 /* Generate a DW_TAG_lexical_block DIE followed by DIEs to represent all of the
25808 things which are local to the given block. */
25810 static void
25811 gen_block_die (tree stmt, dw_die_ref context_die)
25813 int must_output_die = 0;
25814 bool inlined_func;
25816 /* Ignore blocks that are NULL. */
25817 if (stmt == NULL_TREE)
25818 return;
25820 inlined_func = inlined_function_outer_scope_p (stmt);
25822 /* If the block is one fragment of a non-contiguous block, do not
25823 process the variables, since they will have been done by the
25824 origin block. Do process subblocks. */
25825 if (BLOCK_FRAGMENT_ORIGIN (stmt))
25827 tree sub;
25829 for (sub = BLOCK_SUBBLOCKS (stmt); sub; sub = BLOCK_CHAIN (sub))
25830 gen_block_die (sub, context_die);
25832 return;
25835 /* Determine if we need to output any Dwarf DIEs at all to represent this
25836 block. */
25837 if (inlined_func)
25838 /* The outer scopes for inlinings *must* always be represented. We
25839 generate DW_TAG_inlined_subroutine DIEs for them. (See below.) */
25840 must_output_die = 1;
25841 else if (lookup_block_die (stmt))
25842 /* If we already have a DIE then it was filled early. Meanwhile
25843 we might have pruned all BLOCK_VARS as optimized out but we
25844 still want to generate high/low PC attributes so output it. */
25845 must_output_die = 1;
25846 else if (TREE_USED (stmt)
25847 || TREE_ASM_WRITTEN (stmt))
25849 /* Determine if this block directly contains any "significant"
25850 local declarations which we will need to output DIEs for. */
25851 if (debug_info_level > DINFO_LEVEL_TERSE)
25853 /* We are not in terse mode so any local declaration that
25854 is not ignored for debug purposes counts as being a
25855 "significant" one. */
25856 if (BLOCK_NUM_NONLOCALIZED_VARS (stmt))
25857 must_output_die = 1;
25858 else
25859 for (tree var = BLOCK_VARS (stmt); var; var = DECL_CHAIN (var))
25860 if (!DECL_IGNORED_P (var))
25862 must_output_die = 1;
25863 break;
25866 else if (!dwarf2out_ignore_block (stmt))
25867 must_output_die = 1;
25870 /* It would be a waste of space to generate a Dwarf DW_TAG_lexical_block
25871 DIE for any block which contains no significant local declarations at
25872 all. Rather, in such cases we just call `decls_for_scope' so that any
25873 needed Dwarf info for any sub-blocks will get properly generated. Note
25874 that in terse mode, our definition of what constitutes a "significant"
25875 local declaration gets restricted to include only inlined function
25876 instances and local (nested) function definitions. */
25877 if (must_output_die)
25879 if (inlined_func)
25880 gen_inlined_subroutine_die (stmt, context_die);
25881 else
25882 gen_lexical_block_die (stmt, context_die);
25884 else
25885 decls_for_scope (stmt, context_die);
25888 /* Process variable DECL (or variable with origin ORIGIN) within
25889 block STMT and add it to CONTEXT_DIE. */
25890 static void
25891 process_scope_var (tree stmt, tree decl, tree origin, dw_die_ref context_die)
25893 dw_die_ref die;
25894 tree decl_or_origin = decl ? decl : origin;
25896 if (TREE_CODE (decl_or_origin) == FUNCTION_DECL)
25897 die = lookup_decl_die (decl_or_origin);
25898 else if (TREE_CODE (decl_or_origin) == TYPE_DECL)
25900 if (TYPE_DECL_IS_STUB (decl_or_origin))
25901 die = lookup_type_die (TREE_TYPE (decl_or_origin));
25902 else
25903 die = lookup_decl_die (decl_or_origin);
25904 /* Avoid re-creating the DIE late if it was optimized as unused early. */
25905 if (! die && ! early_dwarf)
25906 return;
25908 else
25909 die = NULL;
25911 /* Avoid creating DIEs for local typedefs and concrete static variables that
25912 will only be pruned later. */
25913 if ((origin || decl_ultimate_origin (decl))
25914 && (TREE_CODE (decl_or_origin) == TYPE_DECL
25915 || (VAR_P (decl_or_origin) && TREE_STATIC (decl_or_origin))))
25917 origin = decl_ultimate_origin (decl_or_origin);
25918 if (decl && VAR_P (decl) && die != NULL)
25920 die = lookup_decl_die (origin);
25921 if (die != NULL)
25922 equate_decl_number_to_die (decl, die);
25924 return;
25927 if (die != NULL && die->die_parent == NULL)
25928 add_child_die (context_die, die);
25929 else if (TREE_CODE (decl_or_origin) == IMPORTED_DECL)
25931 if (early_dwarf)
25932 dwarf2out_imported_module_or_decl_1 (decl_or_origin, DECL_NAME (decl_or_origin),
25933 stmt, context_die);
25935 else
25937 if (decl && DECL_P (decl))
25939 die = lookup_decl_die (decl);
25941 /* Early created DIEs do not have a parent as the decls refer
25942 to the function as DECL_CONTEXT rather than the BLOCK. */
25943 if (die && die->die_parent == NULL)
25945 gcc_assert (in_lto_p);
25946 add_child_die (context_die, die);
25950 gen_decl_die (decl, origin, NULL, context_die);
25954 /* Generate all of the decls declared within a given scope and (recursively)
25955 all of its sub-blocks. */
25957 static void
25958 decls_for_scope (tree stmt, dw_die_ref context_die, bool recurse)
25960 tree decl;
25961 unsigned int i;
25962 tree subblocks;
25964 /* Ignore NULL blocks. */
25965 if (stmt == NULL_TREE)
25966 return;
25968 /* Output the DIEs to represent all of the data objects and typedefs
25969 declared directly within this block but not within any nested
25970 sub-blocks. Also, nested function and tag DIEs have been
25971 generated with a parent of NULL; fix that up now. We don't
25972 have to do this if we're at -g1. */
25973 if (debug_info_level > DINFO_LEVEL_TERSE)
25975 for (decl = BLOCK_VARS (stmt); decl != NULL; decl = DECL_CHAIN (decl))
25976 process_scope_var (stmt, decl, NULL_TREE, context_die);
25977 /* BLOCK_NONLOCALIZED_VARs simply generate DIE stubs with abstract
25978 origin - avoid doing this twice as we have no good way to see
25979 if we've done it once already. */
25980 if (! early_dwarf)
25981 for (i = 0; i < BLOCK_NUM_NONLOCALIZED_VARS (stmt); i++)
25983 decl = BLOCK_NONLOCALIZED_VAR (stmt, i);
25984 if (decl == current_function_decl)
25985 /* Ignore declarations of the current function, while they
25986 are declarations, gen_subprogram_die would treat them
25987 as definitions again, because they are equal to
25988 current_function_decl and endlessly recurse. */;
25989 else if (TREE_CODE (decl) == FUNCTION_DECL)
25990 process_scope_var (stmt, decl, NULL_TREE, context_die);
25991 else
25992 process_scope_var (stmt, NULL_TREE, decl, context_die);
25996 /* Even if we're at -g1, we need to process the subblocks in order to get
25997 inlined call information. */
25999 /* Output the DIEs to represent all sub-blocks (and the items declared
26000 therein) of this block. */
26001 if (recurse)
26002 for (subblocks = BLOCK_SUBBLOCKS (stmt);
26003 subblocks != NULL;
26004 subblocks = BLOCK_CHAIN (subblocks))
26005 gen_block_die (subblocks, context_die);
26008 /* Is this a typedef we can avoid emitting? */
26010 static bool
26011 is_redundant_typedef (const_tree decl)
26013 if (TYPE_DECL_IS_STUB (decl))
26014 return true;
26016 if (DECL_ARTIFICIAL (decl)
26017 && DECL_CONTEXT (decl)
26018 && is_tagged_type (DECL_CONTEXT (decl))
26019 && TREE_CODE (TYPE_NAME (DECL_CONTEXT (decl))) == TYPE_DECL
26020 && DECL_NAME (decl) == DECL_NAME (TYPE_NAME (DECL_CONTEXT (decl))))
26021 /* Also ignore the artificial member typedef for the class name. */
26022 return true;
26024 return false;
26027 /* Return TRUE if TYPE is a typedef that names a type for linkage
26028 purposes. This kind of typedefs is produced by the C++ FE for
26029 constructs like:
26031 typedef struct {...} foo;
26033 In that case, there is no typedef variant type produced for foo.
26034 Rather, the TREE_TYPE of the TYPE_DECL of foo is the anonymous
26035 struct type. */
26037 static bool
26038 is_naming_typedef_decl (const_tree decl)
26040 if (decl == NULL_TREE
26041 || TREE_CODE (decl) != TYPE_DECL
26042 || DECL_NAMELESS (decl)
26043 || !is_tagged_type (TREE_TYPE (decl))
26044 || DECL_IS_BUILTIN (decl)
26045 || is_redundant_typedef (decl)
26046 /* It looks like Ada produces TYPE_DECLs that are very similar
26047 to C++ naming typedefs but that have different
26048 semantics. Let's be specific to c++ for now. */
26049 || !is_cxx (decl))
26050 return FALSE;
26052 return (DECL_ORIGINAL_TYPE (decl) == NULL_TREE
26053 && TYPE_NAME (TREE_TYPE (decl)) == decl
26054 && (TYPE_STUB_DECL (TREE_TYPE (decl))
26055 != TYPE_NAME (TREE_TYPE (decl))));
26058 /* Looks up the DIE for a context. */
26060 static inline dw_die_ref
26061 lookup_context_die (tree context)
26063 if (context)
26065 /* Find die that represents this context. */
26066 if (TYPE_P (context))
26068 context = TYPE_MAIN_VARIANT (context);
26069 dw_die_ref ctx = lookup_type_die (context);
26070 if (!ctx)
26071 return NULL;
26072 return strip_naming_typedef (context, ctx);
26074 else
26075 return lookup_decl_die (context);
26077 return comp_unit_die ();
26080 /* Returns the DIE for a context. */
26082 static inline dw_die_ref
26083 get_context_die (tree context)
26085 if (context)
26087 /* Find die that represents this context. */
26088 if (TYPE_P (context))
26090 context = TYPE_MAIN_VARIANT (context);
26091 return strip_naming_typedef (context, force_type_die (context));
26093 else
26094 return force_decl_die (context);
26096 return comp_unit_die ();
26099 /* Returns the DIE for decl. A DIE will always be returned. */
26101 static dw_die_ref
26102 force_decl_die (tree decl)
26104 dw_die_ref decl_die;
26105 unsigned saved_external_flag;
26106 tree save_fn = NULL_TREE;
26107 decl_die = lookup_decl_die (decl);
26108 if (!decl_die)
26110 dw_die_ref context_die = get_context_die (DECL_CONTEXT (decl));
26112 decl_die = lookup_decl_die (decl);
26113 if (decl_die)
26114 return decl_die;
26116 switch (TREE_CODE (decl))
26118 case FUNCTION_DECL:
26119 /* Clear current_function_decl, so that gen_subprogram_die thinks
26120 that this is a declaration. At this point, we just want to force
26121 declaration die. */
26122 save_fn = current_function_decl;
26123 current_function_decl = NULL_TREE;
26124 gen_subprogram_die (decl, context_die);
26125 current_function_decl = save_fn;
26126 break;
26128 case VAR_DECL:
26129 /* Set external flag to force declaration die. Restore it after
26130 gen_decl_die() call. */
26131 saved_external_flag = DECL_EXTERNAL (decl);
26132 DECL_EXTERNAL (decl) = 1;
26133 gen_decl_die (decl, NULL, NULL, context_die);
26134 DECL_EXTERNAL (decl) = saved_external_flag;
26135 break;
26137 case NAMESPACE_DECL:
26138 if (dwarf_version >= 3 || !dwarf_strict)
26139 dwarf2out_decl (decl);
26140 else
26141 /* DWARF2 has neither DW_TAG_module, nor DW_TAG_namespace. */
26142 decl_die = comp_unit_die ();
26143 break;
26145 case TRANSLATION_UNIT_DECL:
26146 decl_die = comp_unit_die ();
26147 break;
26149 default:
26150 gcc_unreachable ();
26153 /* We should be able to find the DIE now. */
26154 if (!decl_die)
26155 decl_die = lookup_decl_die (decl);
26156 gcc_assert (decl_die);
26159 return decl_die;
26162 /* Returns the DIE for TYPE, that must not be a base type. A DIE is
26163 always returned. */
26165 static dw_die_ref
26166 force_type_die (tree type)
26168 dw_die_ref type_die;
26170 type_die = lookup_type_die (type);
26171 if (!type_die)
26173 dw_die_ref context_die = get_context_die (TYPE_CONTEXT (type));
26175 type_die = modified_type_die (type, TYPE_QUALS_NO_ADDR_SPACE (type),
26176 false, context_die);
26177 gcc_assert (type_die);
26179 return type_die;
26182 /* Force out any required namespaces to be able to output DECL,
26183 and return the new context_die for it, if it's changed. */
26185 static dw_die_ref
26186 setup_namespace_context (tree thing, dw_die_ref context_die)
26188 tree context = (DECL_P (thing)
26189 ? DECL_CONTEXT (thing) : TYPE_CONTEXT (thing));
26190 if (context && TREE_CODE (context) == NAMESPACE_DECL)
26191 /* Force out the namespace. */
26192 context_die = force_decl_die (context);
26194 return context_die;
26197 /* Emit a declaration DIE for THING (which is either a DECL or a tagged
26198 type) within its namespace, if appropriate.
26200 For compatibility with older debuggers, namespace DIEs only contain
26201 declarations; all definitions are emitted at CU scope, with
26202 DW_AT_specification pointing to the declaration (like with class
26203 members). */
26205 static dw_die_ref
26206 declare_in_namespace (tree thing, dw_die_ref context_die)
26208 dw_die_ref ns_context;
26210 if (debug_info_level <= DINFO_LEVEL_TERSE)
26211 return context_die;
26213 /* External declarations in the local scope only need to be emitted
26214 once, not once in the namespace and once in the scope.
26216 This avoids declaring the `extern' below in the
26217 namespace DIE as well as in the innermost scope:
26219 namespace S
26221 int i=5;
26222 int foo()
26224 int i=8;
26225 extern int i;
26226 return i;
26230 if (DECL_P (thing) && DECL_EXTERNAL (thing) && local_scope_p (context_die))
26231 return context_die;
26233 /* If this decl is from an inlined function, then don't try to emit it in its
26234 namespace, as we will get confused. It would have already been emitted
26235 when the abstract instance of the inline function was emitted anyways. */
26236 if (DECL_P (thing) && DECL_ABSTRACT_ORIGIN (thing))
26237 return context_die;
26239 ns_context = setup_namespace_context (thing, context_die);
26241 if (ns_context != context_die)
26243 if (is_fortran () || is_dlang ())
26244 return ns_context;
26245 if (DECL_P (thing))
26246 gen_decl_die (thing, NULL, NULL, ns_context);
26247 else
26248 gen_type_die (thing, ns_context);
26250 return context_die;
26253 /* Generate a DIE for a namespace or namespace alias. */
26255 static void
26256 gen_namespace_die (tree decl, dw_die_ref context_die)
26258 dw_die_ref namespace_die;
26260 /* Namespace aliases have a DECL_ABSTRACT_ORIGIN of the namespace
26261 they are an alias of. */
26262 if (DECL_ABSTRACT_ORIGIN (decl) == NULL)
26264 /* Output a real namespace or module. */
26265 context_die = setup_namespace_context (decl, comp_unit_die ());
26266 namespace_die = new_die (is_fortran () || is_dlang ()
26267 ? DW_TAG_module : DW_TAG_namespace,
26268 context_die, decl);
26269 /* For Fortran modules defined in different CU don't add src coords. */
26270 if (namespace_die->die_tag == DW_TAG_module && DECL_EXTERNAL (decl))
26272 const char *name = dwarf2_name (decl, 0);
26273 if (name)
26274 add_name_attribute (namespace_die, name);
26276 else
26277 add_name_and_src_coords_attributes (namespace_die, decl);
26278 if (DECL_EXTERNAL (decl))
26279 add_AT_flag (namespace_die, DW_AT_declaration, 1);
26280 equate_decl_number_to_die (decl, namespace_die);
26282 else
26284 /* Output a namespace alias. */
26286 /* Force out the namespace we are an alias of, if necessary. */
26287 dw_die_ref origin_die
26288 = force_decl_die (DECL_ABSTRACT_ORIGIN (decl));
26290 if (DECL_FILE_SCOPE_P (decl)
26291 || TREE_CODE (DECL_CONTEXT (decl)) == NAMESPACE_DECL)
26292 context_die = setup_namespace_context (decl, comp_unit_die ());
26293 /* Now create the namespace alias DIE. */
26294 namespace_die = new_die (DW_TAG_imported_declaration, context_die, decl);
26295 add_name_and_src_coords_attributes (namespace_die, decl);
26296 add_AT_die_ref (namespace_die, DW_AT_import, origin_die);
26297 equate_decl_number_to_die (decl, namespace_die);
26299 if ((dwarf_version >= 5 || !dwarf_strict)
26300 && lang_hooks.decls.decl_dwarf_attribute (decl,
26301 DW_AT_export_symbols) == 1)
26302 add_AT_flag (namespace_die, DW_AT_export_symbols, 1);
26304 /* Bypass dwarf2_name's check for DECL_NAMELESS. */
26305 if (want_pubnames ())
26306 add_pubname_string (lang_hooks.dwarf_name (decl, 1), namespace_die);
26309 /* Generate Dwarf debug information for a decl described by DECL.
26310 The return value is currently only meaningful for PARM_DECLs,
26311 for all other decls it returns NULL.
26313 If DECL is a FIELD_DECL, CTX is required: see the comment for VLR_CONTEXT.
26314 It can be NULL otherwise. */
26316 static dw_die_ref
26317 gen_decl_die (tree decl, tree origin, struct vlr_context *ctx,
26318 dw_die_ref context_die)
26320 tree decl_or_origin = decl ? decl : origin;
26321 tree class_origin = NULL, ultimate_origin;
26323 if (DECL_P (decl_or_origin) && DECL_IGNORED_P (decl_or_origin))
26324 return NULL;
26326 switch (TREE_CODE (decl_or_origin))
26328 case ERROR_MARK:
26329 break;
26331 case CONST_DECL:
26332 if (!is_fortran () && !is_ada () && !is_dlang ())
26334 /* The individual enumerators of an enum type get output when we output
26335 the Dwarf representation of the relevant enum type itself. */
26336 break;
26339 /* Emit its type. */
26340 gen_type_die (TREE_TYPE (decl), context_die);
26342 /* And its containing namespace. */
26343 context_die = declare_in_namespace (decl, context_die);
26345 gen_const_die (decl, context_die);
26346 break;
26348 case FUNCTION_DECL:
26349 #if 0
26350 /* FIXME */
26351 /* This doesn't work because the C frontend sets DECL_ABSTRACT_ORIGIN
26352 on local redeclarations of global functions. That seems broken. */
26353 if (current_function_decl != decl)
26354 /* This is only a declaration. */;
26355 #endif
26357 /* We should have abstract copies already and should not generate
26358 stray type DIEs in late LTO dumping. */
26359 if (! early_dwarf)
26362 /* If we're emitting a clone, emit info for the abstract instance. */
26363 else if (origin || DECL_ORIGIN (decl) != decl)
26364 dwarf2out_abstract_function (origin
26365 ? DECL_ORIGIN (origin)
26366 : DECL_ABSTRACT_ORIGIN (decl));
26368 /* If we're emitting a possibly inlined function emit it as
26369 abstract instance. */
26370 else if (cgraph_function_possibly_inlined_p (decl)
26371 && ! DECL_ABSTRACT_P (decl)
26372 && ! class_or_namespace_scope_p (context_die)
26373 /* dwarf2out_abstract_function won't emit a die if this is just
26374 a declaration. We must avoid setting DECL_ABSTRACT_ORIGIN in
26375 that case, because that works only if we have a die. */
26376 && DECL_INITIAL (decl) != NULL_TREE)
26377 dwarf2out_abstract_function (decl);
26379 /* Otherwise we're emitting the primary DIE for this decl. */
26380 else if (debug_info_level > DINFO_LEVEL_TERSE)
26382 /* Before we describe the FUNCTION_DECL itself, make sure that we
26383 have its containing type. */
26384 if (!origin)
26385 origin = decl_class_context (decl);
26386 if (origin != NULL_TREE)
26387 gen_type_die (origin, context_die);
26389 /* And its return type. */
26390 gen_type_die (TREE_TYPE (TREE_TYPE (decl)), context_die);
26392 /* And its virtual context. */
26393 if (DECL_VINDEX (decl) != NULL_TREE)
26394 gen_type_die (DECL_CONTEXT (decl), context_die);
26396 /* Make sure we have a member DIE for decl. */
26397 if (origin != NULL_TREE)
26398 gen_type_die_for_member (origin, decl, context_die);
26400 /* And its containing namespace. */
26401 context_die = declare_in_namespace (decl, context_die);
26404 /* Now output a DIE to represent the function itself. */
26405 if (decl)
26406 gen_subprogram_die (decl, context_die);
26407 break;
26409 case TYPE_DECL:
26410 /* If we are in terse mode, don't generate any DIEs to represent any
26411 actual typedefs. */
26412 if (debug_info_level <= DINFO_LEVEL_TERSE)
26413 break;
26415 /* In the special case of a TYPE_DECL node representing the declaration
26416 of some type tag, if the given TYPE_DECL is marked as having been
26417 instantiated from some other (original) TYPE_DECL node (e.g. one which
26418 was generated within the original definition of an inline function) we
26419 used to generate a special (abbreviated) DW_TAG_structure_type,
26420 DW_TAG_union_type, or DW_TAG_enumeration_type DIE here. But nothing
26421 should be actually referencing those DIEs, as variable DIEs with that
26422 type would be emitted already in the abstract origin, so it was always
26423 removed during unused type prunning. Don't add anything in this
26424 case. */
26425 if (TYPE_DECL_IS_STUB (decl) && decl_ultimate_origin (decl) != NULL_TREE)
26426 break;
26428 if (is_redundant_typedef (decl))
26429 gen_type_die (TREE_TYPE (decl), context_die);
26430 else
26431 /* Output a DIE to represent the typedef itself. */
26432 gen_typedef_die (decl, context_die);
26433 break;
26435 case LABEL_DECL:
26436 if (debug_info_level >= DINFO_LEVEL_NORMAL)
26437 gen_label_die (decl, context_die);
26438 break;
26440 case VAR_DECL:
26441 case RESULT_DECL:
26442 /* If we are in terse mode, don't generate any DIEs to represent any
26443 variable declarations or definitions. */
26444 if (debug_info_level <= DINFO_LEVEL_TERSE)
26445 break;
26447 /* Avoid generating stray type DIEs during late dwarf dumping.
26448 All types have been dumped early. */
26449 if (early_dwarf
26450 /* ??? But in LTRANS we cannot annotate early created variably
26451 modified type DIEs without copying them and adjusting all
26452 references to them. Dump them again as happens for inlining
26453 which copies both the decl and the types. */
26454 /* ??? And even non-LTO needs to re-visit type DIEs to fill
26455 in VLA bound information for example. */
26456 || (decl && variably_modified_type_p (TREE_TYPE (decl),
26457 current_function_decl)))
26459 /* Output any DIEs that are needed to specify the type of this data
26460 object. */
26461 if (decl_by_reference_p (decl_or_origin))
26462 gen_type_die (TREE_TYPE (TREE_TYPE (decl_or_origin)), context_die);
26463 else
26464 gen_type_die (TREE_TYPE (decl_or_origin), context_die);
26467 if (early_dwarf)
26469 /* And its containing type. */
26470 class_origin = decl_class_context (decl_or_origin);
26471 if (class_origin != NULL_TREE)
26472 gen_type_die_for_member (class_origin, decl_or_origin, context_die);
26474 /* And its containing namespace. */
26475 context_die = declare_in_namespace (decl_or_origin, context_die);
26478 /* Now output the DIE to represent the data object itself. This gets
26479 complicated because of the possibility that the VAR_DECL really
26480 represents an inlined instance of a formal parameter for an inline
26481 function. */
26482 ultimate_origin = decl_ultimate_origin (decl_or_origin);
26483 if (ultimate_origin != NULL_TREE
26484 && TREE_CODE (ultimate_origin) == PARM_DECL)
26485 gen_formal_parameter_die (decl, origin,
26486 true /* Emit name attribute. */,
26487 context_die);
26488 else
26489 gen_variable_die (decl, origin, context_die);
26490 break;
26492 case FIELD_DECL:
26493 gcc_assert (ctx != NULL && ctx->struct_type != NULL);
26494 /* Ignore the nameless fields that are used to skip bits but handle C++
26495 anonymous unions and structs. */
26496 if (DECL_NAME (decl) != NULL_TREE
26497 || TREE_CODE (TREE_TYPE (decl)) == UNION_TYPE
26498 || TREE_CODE (TREE_TYPE (decl)) == RECORD_TYPE)
26500 gen_type_die (member_declared_type (decl), context_die);
26501 gen_field_die (decl, ctx, context_die);
26503 break;
26505 case PARM_DECL:
26506 /* Avoid generating stray type DIEs during late dwarf dumping.
26507 All types have been dumped early. */
26508 if (early_dwarf
26509 /* ??? But in LTRANS we cannot annotate early created variably
26510 modified type DIEs without copying them and adjusting all
26511 references to them. Dump them again as happens for inlining
26512 which copies both the decl and the types. */
26513 /* ??? And even non-LTO needs to re-visit type DIEs to fill
26514 in VLA bound information for example. */
26515 || (decl && variably_modified_type_p (TREE_TYPE (decl),
26516 current_function_decl)))
26518 if (DECL_BY_REFERENCE (decl_or_origin))
26519 gen_type_die (TREE_TYPE (TREE_TYPE (decl_or_origin)), context_die);
26520 else
26521 gen_type_die (TREE_TYPE (decl_or_origin), context_die);
26523 return gen_formal_parameter_die (decl, origin,
26524 true /* Emit name attribute. */,
26525 context_die);
26527 case NAMESPACE_DECL:
26528 if (dwarf_version >= 3 || !dwarf_strict)
26529 gen_namespace_die (decl, context_die);
26530 break;
26532 case IMPORTED_DECL:
26533 dwarf2out_imported_module_or_decl_1 (decl, DECL_NAME (decl),
26534 DECL_CONTEXT (decl), context_die);
26535 break;
26537 case NAMELIST_DECL:
26538 gen_namelist_decl (DECL_NAME (decl), context_die,
26539 NAMELIST_DECL_ASSOCIATED_DECL (decl));
26540 break;
26542 default:
26543 /* Probably some frontend-internal decl. Assume we don't care. */
26544 gcc_assert ((int)TREE_CODE (decl) > NUM_TREE_CODES);
26545 break;
26548 return NULL;
26551 /* Output initial debug information for global DECL. Called at the
26552 end of the parsing process.
26554 This is the initial debug generation process. As such, the DIEs
26555 generated may be incomplete. A later debug generation pass
26556 (dwarf2out_late_global_decl) will augment the information generated
26557 in this pass (e.g., with complete location info). */
26559 static void
26560 dwarf2out_early_global_decl (tree decl)
26562 set_early_dwarf s;
26564 /* gen_decl_die() will set DECL_ABSTRACT because
26565 cgraph_function_possibly_inlined_p() returns true. This is in
26566 turn will cause DW_AT_inline attributes to be set.
26568 This happens because at early dwarf generation, there is no
26569 cgraph information, causing cgraph_function_possibly_inlined_p()
26570 to return true. Trick cgraph_function_possibly_inlined_p()
26571 while we generate dwarf early. */
26572 bool save = symtab->global_info_ready;
26573 symtab->global_info_ready = true;
26575 /* We don't handle TYPE_DECLs. If required, they'll be reached via
26576 other DECLs and they can point to template types or other things
26577 that dwarf2out can't handle when done via dwarf2out_decl. */
26578 if (TREE_CODE (decl) != TYPE_DECL
26579 && TREE_CODE (decl) != PARM_DECL)
26581 if (TREE_CODE (decl) == FUNCTION_DECL)
26583 tree save_fndecl = current_function_decl;
26585 /* For nested functions, make sure we have DIEs for the parents first
26586 so that all nested DIEs are generated at the proper scope in the
26587 first shot. */
26588 tree context = decl_function_context (decl);
26589 if (context != NULL)
26591 dw_die_ref context_die = lookup_decl_die (context);
26592 current_function_decl = context;
26594 /* Avoid emitting DIEs multiple times, but still process CONTEXT
26595 enough so that it lands in its own context. This avoids type
26596 pruning issues later on. */
26597 if (context_die == NULL || is_declaration_die (context_die))
26598 dwarf2out_early_global_decl (context);
26601 /* Emit an abstract origin of a function first. This happens
26602 with C++ constructor clones for example and makes
26603 dwarf2out_abstract_function happy which requires the early
26604 DIE of the abstract instance to be present. */
26605 tree origin = DECL_ABSTRACT_ORIGIN (decl);
26606 dw_die_ref origin_die;
26607 if (origin != NULL
26608 /* Do not emit the DIE multiple times but make sure to
26609 process it fully here in case we just saw a declaration. */
26610 && ((origin_die = lookup_decl_die (origin)) == NULL
26611 || is_declaration_die (origin_die)))
26613 current_function_decl = origin;
26614 dwarf2out_decl (origin);
26617 /* Emit the DIE for decl but avoid doing that multiple times. */
26618 dw_die_ref old_die;
26619 if ((old_die = lookup_decl_die (decl)) == NULL
26620 || is_declaration_die (old_die))
26622 current_function_decl = decl;
26623 dwarf2out_decl (decl);
26626 current_function_decl = save_fndecl;
26628 else
26629 dwarf2out_decl (decl);
26631 symtab->global_info_ready = save;
26634 /* Return whether EXPR is an expression with the following pattern:
26635 INDIRECT_REF (NOP_EXPR (INTEGER_CST)). */
26637 static bool
26638 is_trivial_indirect_ref (tree expr)
26640 if (expr == NULL_TREE || TREE_CODE (expr) != INDIRECT_REF)
26641 return false;
26643 tree nop = TREE_OPERAND (expr, 0);
26644 if (nop == NULL_TREE || TREE_CODE (nop) != NOP_EXPR)
26645 return false;
26647 tree int_cst = TREE_OPERAND (nop, 0);
26648 return int_cst != NULL_TREE && TREE_CODE (int_cst) == INTEGER_CST;
26651 /* Output debug information for global decl DECL. Called from
26652 toplev.c after compilation proper has finished. */
26654 static void
26655 dwarf2out_late_global_decl (tree decl)
26657 /* Fill-in any location information we were unable to determine
26658 on the first pass. */
26659 if (VAR_P (decl))
26661 dw_die_ref die = lookup_decl_die (decl);
26663 /* We may have to generate early debug late for LTO in case debug
26664 was not enabled at compile-time or the target doesn't support
26665 the LTO early debug scheme. */
26666 if (! die && in_lto_p)
26668 dwarf2out_decl (decl);
26669 die = lookup_decl_die (decl);
26672 if (die)
26674 /* We get called via the symtab code invoking late_global_decl
26675 for symbols that are optimized out.
26677 Do not add locations for those, except if they have a
26678 DECL_VALUE_EXPR, in which case they are relevant for debuggers.
26679 Still don't add a location if the DECL_VALUE_EXPR is not a trivial
26680 INDIRECT_REF expression, as this could generate relocations to
26681 text symbols in LTO object files, which is invalid. */
26682 varpool_node *node = varpool_node::get (decl);
26683 if ((! node || ! node->definition)
26684 && ! (DECL_HAS_VALUE_EXPR_P (decl)
26685 && is_trivial_indirect_ref (DECL_VALUE_EXPR (decl))))
26686 tree_add_const_value_attribute_for_decl (die, decl);
26687 else
26688 add_location_or_const_value_attribute (die, decl, false);
26693 /* Output debug information for type decl DECL. Called from toplev.c
26694 and from language front ends (to record built-in types). */
26695 static void
26696 dwarf2out_type_decl (tree decl, int local)
26698 if (!local)
26700 set_early_dwarf s;
26701 dwarf2out_decl (decl);
26705 /* Output debug information for imported module or decl DECL.
26706 NAME is non-NULL name in the lexical block if the decl has been renamed.
26707 LEXICAL_BLOCK is the lexical block (which TREE_CODE is a BLOCK)
26708 that DECL belongs to.
26709 LEXICAL_BLOCK_DIE is the DIE of LEXICAL_BLOCK. */
26710 static void
26711 dwarf2out_imported_module_or_decl_1 (tree decl,
26712 tree name,
26713 tree lexical_block,
26714 dw_die_ref lexical_block_die)
26716 expanded_location xloc;
26717 dw_die_ref imported_die = NULL;
26718 dw_die_ref at_import_die;
26720 if (TREE_CODE (decl) == IMPORTED_DECL)
26722 xloc = expand_location (DECL_SOURCE_LOCATION (decl));
26723 decl = IMPORTED_DECL_ASSOCIATED_DECL (decl);
26724 gcc_assert (decl);
26726 else
26727 xloc = expand_location (input_location);
26729 if (TREE_CODE (decl) == TYPE_DECL || TREE_CODE (decl) == CONST_DECL)
26731 at_import_die = force_type_die (TREE_TYPE (decl));
26732 /* For namespace N { typedef void T; } using N::T; base_type_die
26733 returns NULL, but DW_TAG_imported_declaration requires
26734 the DW_AT_import tag. Force creation of DW_TAG_typedef. */
26735 if (!at_import_die)
26737 gcc_assert (TREE_CODE (decl) == TYPE_DECL);
26738 gen_typedef_die (decl, get_context_die (DECL_CONTEXT (decl)));
26739 at_import_die = lookup_type_die (TREE_TYPE (decl));
26740 gcc_assert (at_import_die);
26743 else
26745 at_import_die = lookup_decl_die (decl);
26746 if (!at_import_die)
26748 /* If we're trying to avoid duplicate debug info, we may not have
26749 emitted the member decl for this field. Emit it now. */
26750 if (TREE_CODE (decl) == FIELD_DECL)
26752 tree type = DECL_CONTEXT (decl);
26754 if (TYPE_CONTEXT (type)
26755 && TYPE_P (TYPE_CONTEXT (type))
26756 && !should_emit_struct_debug (TYPE_CONTEXT (type),
26757 DINFO_USAGE_DIR_USE))
26758 return;
26759 gen_type_die_for_member (type, decl,
26760 get_context_die (TYPE_CONTEXT (type)));
26762 if (TREE_CODE (decl) == NAMELIST_DECL)
26763 at_import_die = gen_namelist_decl (DECL_NAME (decl),
26764 get_context_die (DECL_CONTEXT (decl)),
26765 NULL_TREE);
26766 else
26767 at_import_die = force_decl_die (decl);
26771 if (TREE_CODE (decl) == NAMESPACE_DECL)
26773 if (dwarf_version >= 3 || !dwarf_strict)
26774 imported_die = new_die (DW_TAG_imported_module,
26775 lexical_block_die,
26776 lexical_block);
26777 else
26778 return;
26780 else
26781 imported_die = new_die (DW_TAG_imported_declaration,
26782 lexical_block_die,
26783 lexical_block);
26785 add_AT_file (imported_die, DW_AT_decl_file, lookup_filename (xloc.file));
26786 add_AT_unsigned (imported_die, DW_AT_decl_line, xloc.line);
26787 if (debug_column_info && xloc.column)
26788 add_AT_unsigned (imported_die, DW_AT_decl_column, xloc.column);
26789 if (name)
26790 add_AT_string (imported_die, DW_AT_name,
26791 IDENTIFIER_POINTER (name));
26792 add_AT_die_ref (imported_die, DW_AT_import, at_import_die);
26795 /* Output debug information for imported module or decl DECL.
26796 NAME is non-NULL name in context if the decl has been renamed.
26797 CHILD is true if decl is one of the renamed decls as part of
26798 importing whole module.
26799 IMPLICIT is set if this hook is called for an implicit import
26800 such as inline namespace. */
26802 static void
26803 dwarf2out_imported_module_or_decl (tree decl, tree name, tree context,
26804 bool child, bool implicit)
26806 /* dw_die_ref at_import_die; */
26807 dw_die_ref scope_die;
26809 if (debug_info_level <= DINFO_LEVEL_TERSE)
26810 return;
26812 gcc_assert (decl);
26814 /* For DWARF5, just DW_AT_export_symbols on the DW_TAG_namespace
26815 should be enough, for DWARF4 and older even if we emit as extension
26816 DW_AT_export_symbols add the implicit DW_TAG_imported_module anyway
26817 for the benefit of consumers unaware of DW_AT_export_symbols. */
26818 if (implicit
26819 && dwarf_version >= 5
26820 && lang_hooks.decls.decl_dwarf_attribute (decl,
26821 DW_AT_export_symbols) == 1)
26822 return;
26824 set_early_dwarf s;
26826 /* To emit DW_TAG_imported_module or DW_TAG_imported_decl, we need two DIEs.
26827 We need decl DIE for reference and scope die. First, get DIE for the decl
26828 itself. */
26830 /* Get the scope die for decl context. Use comp_unit_die for global module
26831 or decl. If die is not found for non globals, force new die. */
26832 if (context
26833 && TYPE_P (context)
26834 && !should_emit_struct_debug (context, DINFO_USAGE_DIR_USE))
26835 return;
26837 scope_die = get_context_die (context);
26839 if (child)
26841 /* DW_TAG_imported_module was introduced in the DWARFv3 specification, so
26842 there is nothing we can do, here. */
26843 if (dwarf_version < 3 && dwarf_strict)
26844 return;
26846 gcc_assert (scope_die->die_child);
26847 gcc_assert (scope_die->die_child->die_tag == DW_TAG_imported_module);
26848 gcc_assert (TREE_CODE (decl) != NAMESPACE_DECL);
26849 scope_die = scope_die->die_child;
26852 /* OK, now we have DIEs for decl as well as scope. Emit imported die. */
26853 dwarf2out_imported_module_or_decl_1 (decl, name, context, scope_die);
26856 /* Output debug information for namelists. */
26858 static dw_die_ref
26859 gen_namelist_decl (tree name, dw_die_ref scope_die, tree item_decls)
26861 dw_die_ref nml_die, nml_item_die, nml_item_ref_die;
26862 tree value;
26863 unsigned i;
26865 if (debug_info_level <= DINFO_LEVEL_TERSE)
26866 return NULL;
26868 gcc_assert (scope_die != NULL);
26869 nml_die = new_die (DW_TAG_namelist, scope_die, NULL);
26870 add_AT_string (nml_die, DW_AT_name, IDENTIFIER_POINTER (name));
26872 /* If there are no item_decls, we have a nondefining namelist, e.g.
26873 with USE association; hence, set DW_AT_declaration. */
26874 if (item_decls == NULL_TREE)
26876 add_AT_flag (nml_die, DW_AT_declaration, 1);
26877 return nml_die;
26880 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (item_decls), i, value)
26882 nml_item_ref_die = lookup_decl_die (value);
26883 if (!nml_item_ref_die)
26884 nml_item_ref_die = force_decl_die (value);
26886 nml_item_die = new_die (DW_TAG_namelist_item, nml_die, NULL);
26887 add_AT_die_ref (nml_item_die, DW_AT_namelist_items, nml_item_ref_die);
26889 return nml_die;
26893 /* Write the debugging output for DECL and return the DIE. */
26895 static void
26896 dwarf2out_decl (tree decl)
26898 dw_die_ref context_die = comp_unit_die ();
26900 switch (TREE_CODE (decl))
26902 case ERROR_MARK:
26903 return;
26905 case FUNCTION_DECL:
26906 /* If we're a nested function, initially use a parent of NULL; if we're
26907 a plain function, this will be fixed up in decls_for_scope. If
26908 we're a method, it will be ignored, since we already have a DIE.
26909 Avoid doing this late though since clones of class methods may
26910 otherwise end up in limbo and create type DIEs late. */
26911 if (early_dwarf
26912 && decl_function_context (decl)
26913 /* But if we're in terse mode, we don't care about scope. */
26914 && debug_info_level > DINFO_LEVEL_TERSE)
26915 context_die = NULL;
26916 break;
26918 case VAR_DECL:
26919 /* For local statics lookup proper context die. */
26920 if (local_function_static (decl))
26921 context_die = lookup_decl_die (DECL_CONTEXT (decl));
26923 /* If we are in terse mode, don't generate any DIEs to represent any
26924 variable declarations or definitions. */
26925 if (debug_info_level <= DINFO_LEVEL_TERSE)
26926 return;
26927 break;
26929 case CONST_DECL:
26930 if (debug_info_level <= DINFO_LEVEL_TERSE)
26931 return;
26932 if (!is_fortran () && !is_ada () && !is_dlang ())
26933 return;
26934 if (TREE_STATIC (decl) && decl_function_context (decl))
26935 context_die = lookup_decl_die (DECL_CONTEXT (decl));
26936 break;
26938 case NAMESPACE_DECL:
26939 case IMPORTED_DECL:
26940 if (debug_info_level <= DINFO_LEVEL_TERSE)
26941 return;
26942 if (lookup_decl_die (decl) != NULL)
26943 return;
26944 break;
26946 case TYPE_DECL:
26947 /* Don't emit stubs for types unless they are needed by other DIEs. */
26948 if (TYPE_DECL_SUPPRESS_DEBUG (decl))
26949 return;
26951 /* Don't bother trying to generate any DIEs to represent any of the
26952 normal built-in types for the language we are compiling. */
26953 if (DECL_IS_BUILTIN (decl))
26954 return;
26956 /* If we are in terse mode, don't generate any DIEs for types. */
26957 if (debug_info_level <= DINFO_LEVEL_TERSE)
26958 return;
26960 /* If we're a function-scope tag, initially use a parent of NULL;
26961 this will be fixed up in decls_for_scope. */
26962 if (decl_function_context (decl))
26963 context_die = NULL;
26965 break;
26967 case NAMELIST_DECL:
26968 break;
26970 default:
26971 return;
26974 gen_decl_die (decl, NULL, NULL, context_die);
26976 if (flag_checking)
26978 dw_die_ref die = lookup_decl_die (decl);
26979 if (die)
26980 check_die (die);
26984 /* Write the debugging output for DECL. */
26986 static void
26987 dwarf2out_function_decl (tree decl)
26989 dwarf2out_decl (decl);
26990 call_arg_locations = NULL;
26991 call_arg_loc_last = NULL;
26992 call_site_count = -1;
26993 tail_call_site_count = -1;
26994 decl_loc_table->empty ();
26995 cached_dw_loc_list_table->empty ();
26998 /* Output a marker (i.e. a label) for the beginning of the generated code for
26999 a lexical block. */
27001 static void
27002 dwarf2out_begin_block (unsigned int line ATTRIBUTE_UNUSED,
27003 unsigned int blocknum)
27005 switch_to_section (current_function_section ());
27006 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, BLOCK_BEGIN_LABEL, blocknum);
27009 /* Output a marker (i.e. a label) for the end of the generated code for a
27010 lexical block. */
27012 static void
27013 dwarf2out_end_block (unsigned int line ATTRIBUTE_UNUSED, unsigned int blocknum)
27015 switch_to_section (current_function_section ());
27016 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, BLOCK_END_LABEL, blocknum);
27019 /* Returns nonzero if it is appropriate not to emit any debugging
27020 information for BLOCK, because it doesn't contain any instructions.
27022 Don't allow this for blocks with nested functions or local classes
27023 as we would end up with orphans, and in the presence of scheduling
27024 we may end up calling them anyway. */
27026 static bool
27027 dwarf2out_ignore_block (const_tree block)
27029 tree decl;
27030 unsigned int i;
27032 for (decl = BLOCK_VARS (block); decl; decl = DECL_CHAIN (decl))
27033 if (TREE_CODE (decl) == FUNCTION_DECL
27034 || (TREE_CODE (decl) == TYPE_DECL && TYPE_DECL_IS_STUB (decl)))
27035 return 0;
27036 for (i = 0; i < BLOCK_NUM_NONLOCALIZED_VARS (block); i++)
27038 decl = BLOCK_NONLOCALIZED_VAR (block, i);
27039 if (TREE_CODE (decl) == FUNCTION_DECL
27040 || (TREE_CODE (decl) == TYPE_DECL && TYPE_DECL_IS_STUB (decl)))
27041 return 0;
27044 return 1;
27047 /* Hash table routines for file_hash. */
27049 bool
27050 dwarf_file_hasher::equal (dwarf_file_data *p1, const char *p2)
27052 return filename_cmp (p1->filename, p2) == 0;
27055 hashval_t
27056 dwarf_file_hasher::hash (dwarf_file_data *p)
27058 return htab_hash_string (p->filename);
27061 /* Lookup FILE_NAME (in the list of filenames that we know about here in
27062 dwarf2out.c) and return its "index". The index of each (known) filename is
27063 just a unique number which is associated with only that one filename. We
27064 need such numbers for the sake of generating labels (in the .debug_sfnames
27065 section) and references to those files numbers (in the .debug_srcinfo
27066 and .debug_macinfo sections). If the filename given as an argument is not
27067 found in our current list, add it to the list and assign it the next
27068 available unique index number. */
27070 static struct dwarf_file_data *
27071 lookup_filename (const char *file_name)
27073 struct dwarf_file_data * created;
27075 if (!file_name)
27076 return NULL;
27078 dwarf_file_data **slot
27079 = file_table->find_slot_with_hash (file_name, htab_hash_string (file_name),
27080 INSERT);
27081 if (*slot)
27082 return *slot;
27084 created = ggc_alloc<dwarf_file_data> ();
27085 created->filename = file_name;
27086 created->emitted_number = 0;
27087 *slot = created;
27088 return created;
27091 /* If the assembler will construct the file table, then translate the compiler
27092 internal file table number into the assembler file table number, and emit
27093 a .file directive if we haven't already emitted one yet. The file table
27094 numbers are different because we prune debug info for unused variables and
27095 types, which may include filenames. */
27097 static int
27098 maybe_emit_file (struct dwarf_file_data * fd)
27100 if (! fd->emitted_number)
27102 if (last_emitted_file)
27103 fd->emitted_number = last_emitted_file->emitted_number + 1;
27104 else
27105 fd->emitted_number = 1;
27106 last_emitted_file = fd;
27108 if (output_asm_line_debug_info ())
27110 fprintf (asm_out_file, "\t.file %u ", fd->emitted_number);
27111 output_quoted_string (asm_out_file,
27112 remap_debug_filename (fd->filename));
27113 fputc ('\n', asm_out_file);
27117 return fd->emitted_number;
27120 /* Schedule generation of a DW_AT_const_value attribute to DIE.
27121 That generation should happen after function debug info has been
27122 generated. The value of the attribute is the constant value of ARG. */
27124 static void
27125 append_entry_to_tmpl_value_parm_die_table (dw_die_ref die, tree arg)
27127 die_arg_entry entry;
27129 if (!die || !arg)
27130 return;
27132 gcc_assert (early_dwarf);
27134 if (!tmpl_value_parm_die_table)
27135 vec_alloc (tmpl_value_parm_die_table, 32);
27137 entry.die = die;
27138 entry.arg = arg;
27139 vec_safe_push (tmpl_value_parm_die_table, entry);
27142 /* Return TRUE if T is an instance of generic type, FALSE
27143 otherwise. */
27145 static bool
27146 generic_type_p (tree t)
27148 if (t == NULL_TREE || !TYPE_P (t))
27149 return false;
27150 return lang_hooks.get_innermost_generic_parms (t) != NULL_TREE;
27153 /* Schedule the generation of the generic parameter dies for the
27154 instance of generic type T. The proper generation itself is later
27155 done by gen_scheduled_generic_parms_dies. */
27157 static void
27158 schedule_generic_params_dies_gen (tree t)
27160 if (!generic_type_p (t))
27161 return;
27163 gcc_assert (early_dwarf);
27165 if (!generic_type_instances)
27166 vec_alloc (generic_type_instances, 256);
27168 vec_safe_push (generic_type_instances, t);
27171 /* Add a DW_AT_const_value attribute to DIEs that were scheduled
27172 by append_entry_to_tmpl_value_parm_die_table. This function must
27173 be called after function DIEs have been generated. */
27175 static void
27176 gen_remaining_tmpl_value_param_die_attribute (void)
27178 if (tmpl_value_parm_die_table)
27180 unsigned i, j;
27181 die_arg_entry *e;
27183 /* We do this in two phases - first get the cases we can
27184 handle during early-finish, preserving those we cannot
27185 (containing symbolic constants where we don't yet know
27186 whether we are going to output the referenced symbols).
27187 For those we try again at late-finish. */
27188 j = 0;
27189 FOR_EACH_VEC_ELT (*tmpl_value_parm_die_table, i, e)
27191 if (!e->die->removed
27192 && !tree_add_const_value_attribute (e->die, e->arg))
27194 dw_loc_descr_ref loc = NULL;
27195 if (! early_dwarf
27196 && (dwarf_version >= 5 || !dwarf_strict))
27197 loc = loc_descriptor_from_tree (e->arg, 2, NULL);
27198 if (loc)
27199 add_AT_loc (e->die, DW_AT_location, loc);
27200 else
27201 (*tmpl_value_parm_die_table)[j++] = *e;
27204 tmpl_value_parm_die_table->truncate (j);
27208 /* Generate generic parameters DIEs for instances of generic types
27209 that have been previously scheduled by
27210 schedule_generic_params_dies_gen. This function must be called
27211 after all the types of the CU have been laid out. */
27213 static void
27214 gen_scheduled_generic_parms_dies (void)
27216 unsigned i;
27217 tree t;
27219 if (!generic_type_instances)
27220 return;
27222 FOR_EACH_VEC_ELT (*generic_type_instances, i, t)
27223 if (COMPLETE_TYPE_P (t))
27224 gen_generic_params_dies (t);
27226 generic_type_instances = NULL;
27230 /* Replace DW_AT_name for the decl with name. */
27232 static void
27233 dwarf2out_set_name (tree decl, tree name)
27235 dw_die_ref die;
27236 dw_attr_node *attr;
27237 const char *dname;
27239 die = TYPE_SYMTAB_DIE (decl);
27240 if (!die)
27241 return;
27243 dname = dwarf2_name (name, 0);
27244 if (!dname)
27245 return;
27247 attr = get_AT (die, DW_AT_name);
27248 if (attr)
27250 struct indirect_string_node *node;
27252 node = find_AT_string (dname);
27253 /* replace the string. */
27254 attr->dw_attr_val.v.val_str = node;
27257 else
27258 add_name_attribute (die, dname);
27261 /* True if before or during processing of the first function being emitted. */
27262 static bool in_first_function_p = true;
27263 /* True if loc_note during dwarf2out_var_location call might still be
27264 before first real instruction at address equal to .Ltext0. */
27265 static bool maybe_at_text_label_p = true;
27266 /* One above highest N where .LVLN label might be equal to .Ltext0 label. */
27267 static unsigned int first_loclabel_num_not_at_text_label;
27269 /* Look ahead for a real insn, or for a begin stmt marker. */
27271 static rtx_insn *
27272 dwarf2out_next_real_insn (rtx_insn *loc_note)
27274 rtx_insn *next_real = NEXT_INSN (loc_note);
27276 while (next_real)
27277 if (INSN_P (next_real))
27278 break;
27279 else
27280 next_real = NEXT_INSN (next_real);
27282 return next_real;
27285 /* Called by the final INSN scan whenever we see a var location. We
27286 use it to drop labels in the right places, and throw the location in
27287 our lookup table. */
27289 static void
27290 dwarf2out_var_location (rtx_insn *loc_note)
27292 char loclabel[MAX_ARTIFICIAL_LABEL_BYTES + 2];
27293 struct var_loc_node *newloc;
27294 rtx_insn *next_real, *next_note;
27295 rtx_insn *call_insn = NULL;
27296 static const char *last_label;
27297 static const char *last_postcall_label;
27298 static bool last_in_cold_section_p;
27299 static rtx_insn *expected_next_loc_note;
27300 tree decl;
27301 bool var_loc_p;
27302 var_loc_view view = 0;
27304 if (!NOTE_P (loc_note))
27306 if (CALL_P (loc_note))
27308 maybe_reset_location_view (loc_note, cur_line_info_table);
27309 call_site_count++;
27310 if (SIBLING_CALL_P (loc_note))
27311 tail_call_site_count++;
27312 if (find_reg_note (loc_note, REG_CALL_ARG_LOCATION, NULL_RTX))
27314 call_insn = loc_note;
27315 loc_note = NULL;
27316 var_loc_p = false;
27318 next_real = dwarf2out_next_real_insn (call_insn);
27319 next_note = NULL;
27320 cached_next_real_insn = NULL;
27321 goto create_label;
27323 if (optimize == 0 && !flag_var_tracking)
27325 /* When the var-tracking pass is not running, there is no note
27326 for indirect calls whose target is compile-time known. In this
27327 case, process such calls specifically so that we generate call
27328 sites for them anyway. */
27329 rtx x = PATTERN (loc_note);
27330 if (GET_CODE (x) == PARALLEL)
27331 x = XVECEXP (x, 0, 0);
27332 if (GET_CODE (x) == SET)
27333 x = SET_SRC (x);
27334 if (GET_CODE (x) == CALL)
27335 x = XEXP (x, 0);
27336 if (!MEM_P (x)
27337 || GET_CODE (XEXP (x, 0)) != SYMBOL_REF
27338 || !SYMBOL_REF_DECL (XEXP (x, 0))
27339 || (TREE_CODE (SYMBOL_REF_DECL (XEXP (x, 0)))
27340 != FUNCTION_DECL))
27342 call_insn = loc_note;
27343 loc_note = NULL;
27344 var_loc_p = false;
27346 next_real = dwarf2out_next_real_insn (call_insn);
27347 next_note = NULL;
27348 cached_next_real_insn = NULL;
27349 goto create_label;
27353 else if (!debug_variable_location_views)
27354 gcc_unreachable ();
27355 else
27356 maybe_reset_location_view (loc_note, cur_line_info_table);
27358 return;
27361 var_loc_p = NOTE_KIND (loc_note) == NOTE_INSN_VAR_LOCATION;
27362 if (var_loc_p && !DECL_P (NOTE_VAR_LOCATION_DECL (loc_note)))
27363 return;
27365 /* Optimize processing a large consecutive sequence of location
27366 notes so we don't spend too much time in next_real_insn. If the
27367 next insn is another location note, remember the next_real_insn
27368 calculation for next time. */
27369 next_real = cached_next_real_insn;
27370 if (next_real)
27372 if (expected_next_loc_note != loc_note)
27373 next_real = NULL;
27376 next_note = NEXT_INSN (loc_note);
27377 if (! next_note
27378 || next_note->deleted ()
27379 || ! NOTE_P (next_note)
27380 || (NOTE_KIND (next_note) != NOTE_INSN_VAR_LOCATION
27381 && NOTE_KIND (next_note) != NOTE_INSN_BEGIN_STMT
27382 && NOTE_KIND (next_note) != NOTE_INSN_INLINE_ENTRY))
27383 next_note = NULL;
27385 if (! next_real)
27386 next_real = dwarf2out_next_real_insn (loc_note);
27388 if (next_note)
27390 expected_next_loc_note = next_note;
27391 cached_next_real_insn = next_real;
27393 else
27394 cached_next_real_insn = NULL;
27396 /* If there are no instructions which would be affected by this note,
27397 don't do anything. */
27398 if (var_loc_p
27399 && next_real == NULL_RTX
27400 && !NOTE_DURING_CALL_P (loc_note))
27401 return;
27403 create_label:
27405 if (next_real == NULL_RTX)
27406 next_real = get_last_insn ();
27408 /* If there were any real insns between note we processed last time
27409 and this note (or if it is the first note), clear
27410 last_{,postcall_}label so that they are not reused this time. */
27411 if (last_var_location_insn == NULL_RTX
27412 || last_var_location_insn != next_real
27413 || last_in_cold_section_p != in_cold_section_p)
27415 last_label = NULL;
27416 last_postcall_label = NULL;
27419 if (var_loc_p)
27421 const char *label
27422 = NOTE_DURING_CALL_P (loc_note) ? last_postcall_label : last_label;
27423 view = cur_line_info_table->view;
27424 decl = NOTE_VAR_LOCATION_DECL (loc_note);
27425 newloc = add_var_loc_to_decl (decl, loc_note, label, view);
27426 if (newloc == NULL)
27427 return;
27429 else
27431 decl = NULL_TREE;
27432 newloc = NULL;
27435 /* If there were no real insns between note we processed last time
27436 and this note, use the label we emitted last time. Otherwise
27437 create a new label and emit it. */
27438 if (last_label == NULL)
27440 ASM_GENERATE_INTERNAL_LABEL (loclabel, "LVL", loclabel_num);
27441 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, "LVL", loclabel_num);
27442 loclabel_num++;
27443 last_label = ggc_strdup (loclabel);
27444 /* See if loclabel might be equal to .Ltext0. If yes,
27445 bump first_loclabel_num_not_at_text_label. */
27446 if (!have_multiple_function_sections
27447 && in_first_function_p
27448 && maybe_at_text_label_p)
27450 static rtx_insn *last_start;
27451 rtx_insn *insn;
27452 for (insn = loc_note; insn; insn = previous_insn (insn))
27453 if (insn == last_start)
27454 break;
27455 else if (!NONDEBUG_INSN_P (insn))
27456 continue;
27457 else
27459 rtx body = PATTERN (insn);
27460 if (GET_CODE (body) == USE || GET_CODE (body) == CLOBBER)
27461 continue;
27462 /* Inline asm could occupy zero bytes. */
27463 else if (GET_CODE (body) == ASM_INPUT
27464 || asm_noperands (body) >= 0)
27465 continue;
27466 #ifdef HAVE_ATTR_length /* ??? We don't include insn-attr.h. */
27467 else if (HAVE_ATTR_length && get_attr_min_length (insn) == 0)
27468 continue;
27469 #endif
27470 else
27472 /* Assume insn has non-zero length. */
27473 maybe_at_text_label_p = false;
27474 break;
27477 if (maybe_at_text_label_p)
27479 last_start = loc_note;
27480 first_loclabel_num_not_at_text_label = loclabel_num;
27485 gcc_assert ((loc_note == NULL_RTX && call_insn != NULL_RTX)
27486 || (loc_note != NULL_RTX && call_insn == NULL_RTX));
27488 if (!var_loc_p)
27490 struct call_arg_loc_node *ca_loc
27491 = ggc_cleared_alloc<call_arg_loc_node> ();
27492 rtx_insn *prev = call_insn;
27494 ca_loc->call_arg_loc_note
27495 = find_reg_note (call_insn, REG_CALL_ARG_LOCATION, NULL_RTX);
27496 ca_loc->next = NULL;
27497 ca_loc->label = last_label;
27498 gcc_assert (prev
27499 && (CALL_P (prev)
27500 || (NONJUMP_INSN_P (prev)
27501 && GET_CODE (PATTERN (prev)) == SEQUENCE
27502 && CALL_P (XVECEXP (PATTERN (prev), 0, 0)))));
27503 if (!CALL_P (prev))
27504 prev = as_a <rtx_sequence *> (PATTERN (prev))->insn (0);
27505 ca_loc->tail_call_p = SIBLING_CALL_P (prev);
27507 /* Look for a SYMBOL_REF in the "prev" instruction. */
27508 rtx x = get_call_rtx_from (PATTERN (prev));
27509 if (x)
27511 /* Try to get the call symbol, if any. */
27512 if (MEM_P (XEXP (x, 0)))
27513 x = XEXP (x, 0);
27514 /* First, look for a memory access to a symbol_ref. */
27515 if (GET_CODE (XEXP (x, 0)) == SYMBOL_REF
27516 && SYMBOL_REF_DECL (XEXP (x, 0))
27517 && TREE_CODE (SYMBOL_REF_DECL (XEXP (x, 0))) == FUNCTION_DECL)
27518 ca_loc->symbol_ref = XEXP (x, 0);
27519 /* Otherwise, look at a compile-time known user-level function
27520 declaration. */
27521 else if (MEM_P (x)
27522 && MEM_EXPR (x)
27523 && TREE_CODE (MEM_EXPR (x)) == FUNCTION_DECL)
27524 ca_loc->symbol_ref = XEXP (DECL_RTL (MEM_EXPR (x)), 0);
27527 ca_loc->block = insn_scope (prev);
27528 if (call_arg_locations)
27529 call_arg_loc_last->next = ca_loc;
27530 else
27531 call_arg_locations = ca_loc;
27532 call_arg_loc_last = ca_loc;
27534 else if (loc_note != NULL_RTX && !NOTE_DURING_CALL_P (loc_note))
27536 newloc->label = last_label;
27537 newloc->view = view;
27539 else
27541 if (!last_postcall_label)
27543 sprintf (loclabel, "%s-1", last_label);
27544 last_postcall_label = ggc_strdup (loclabel);
27546 newloc->label = last_postcall_label;
27547 /* ??? This view is at last_label, not last_label-1, but we
27548 could only assume view at last_label-1 is zero if we could
27549 assume calls always have length greater than one. This is
27550 probably true in general, though there might be a rare
27551 exception to this rule, e.g. if a call insn is optimized out
27552 by target magic. Then, even the -1 in the label will be
27553 wrong, which might invalidate the range. Anyway, using view,
27554 though technically possibly incorrect, will work as far as
27555 ranges go: since L-1 is in the middle of the call insn,
27556 (L-1).0 and (L-1).V shouldn't make any difference, and having
27557 the loclist entry refer to the .loc entry might be useful, so
27558 leave it like this. */
27559 newloc->view = view;
27562 if (var_loc_p && flag_debug_asm)
27564 const char *name, *sep, *patstr;
27565 if (decl && DECL_NAME (decl))
27566 name = IDENTIFIER_POINTER (DECL_NAME (decl));
27567 else
27568 name = "";
27569 if (NOTE_VAR_LOCATION_LOC (loc_note))
27571 sep = " => ";
27572 patstr = str_pattern_slim (NOTE_VAR_LOCATION_LOC (loc_note));
27574 else
27576 sep = " ";
27577 patstr = "RESET";
27579 fprintf (asm_out_file, "\t%s DEBUG %s%s%s\n", ASM_COMMENT_START,
27580 name, sep, patstr);
27583 last_var_location_insn = next_real;
27584 last_in_cold_section_p = in_cold_section_p;
27587 /* Check whether BLOCK, a lexical block, is nested within OUTER, or is
27588 OUTER itself. If BOTHWAYS, check not only that BLOCK can reach
27589 OUTER through BLOCK_SUPERCONTEXT links, but also that there is a
27590 path from OUTER to BLOCK through BLOCK_SUBBLOCKs and
27591 BLOCK_FRAGMENT_ORIGIN links. */
27592 static bool
27593 block_within_block_p (tree block, tree outer, bool bothways)
27595 if (block == outer)
27596 return true;
27598 /* Quickly check that OUTER is up BLOCK's supercontext chain. */
27599 for (tree context = BLOCK_SUPERCONTEXT (block);
27600 context != outer;
27601 context = BLOCK_SUPERCONTEXT (context))
27602 if (!context || TREE_CODE (context) != BLOCK)
27603 return false;
27605 if (!bothways)
27606 return true;
27608 /* Now check that each block is actually referenced by its
27609 parent. */
27610 for (tree context = BLOCK_SUPERCONTEXT (block); ;
27611 context = BLOCK_SUPERCONTEXT (context))
27613 if (BLOCK_FRAGMENT_ORIGIN (context))
27615 gcc_assert (!BLOCK_SUBBLOCKS (context));
27616 context = BLOCK_FRAGMENT_ORIGIN (context);
27618 for (tree sub = BLOCK_SUBBLOCKS (context);
27619 sub != block;
27620 sub = BLOCK_CHAIN (sub))
27621 if (!sub)
27622 return false;
27623 if (context == outer)
27624 return true;
27625 else
27626 block = context;
27630 /* Called during final while assembling the marker of the entry point
27631 for an inlined function. */
27633 static void
27634 dwarf2out_inline_entry (tree block)
27636 gcc_assert (debug_inline_points);
27638 /* If we can't represent it, don't bother. */
27639 if (!(dwarf_version >= 3 || !dwarf_strict))
27640 return;
27642 gcc_assert (DECL_P (block_ultimate_origin (block)));
27644 /* Sanity check the block tree. This would catch a case in which
27645 BLOCK got removed from the tree reachable from the outermost
27646 lexical block, but got retained in markers. It would still link
27647 back to its parents, but some ancestor would be missing a link
27648 down the path to the sub BLOCK. If the block got removed, its
27649 BLOCK_NUMBER will not be a usable value. */
27650 if (flag_checking)
27651 gcc_assert (block_within_block_p (block,
27652 DECL_INITIAL (current_function_decl),
27653 true));
27655 gcc_assert (inlined_function_outer_scope_p (block));
27656 gcc_assert (!lookup_block_die (block));
27658 if (BLOCK_FRAGMENT_ORIGIN (block))
27659 block = BLOCK_FRAGMENT_ORIGIN (block);
27660 /* Can the entry point ever not be at the beginning of an
27661 unfragmented lexical block? */
27662 else if (!(BLOCK_FRAGMENT_CHAIN (block)
27663 || (cur_line_info_table
27664 && !ZERO_VIEW_P (cur_line_info_table->view))))
27665 return;
27667 if (!inline_entry_data_table)
27668 inline_entry_data_table
27669 = hash_table<inline_entry_data_hasher>::create_ggc (10);
27672 inline_entry_data **iedp
27673 = inline_entry_data_table->find_slot_with_hash (block,
27674 htab_hash_pointer (block),
27675 INSERT);
27676 if (*iedp)
27677 /* ??? Ideally, we'd record all entry points for the same inlined
27678 function (some may have been duplicated by e.g. unrolling), but
27679 we have no way to represent that ATM. */
27680 return;
27682 inline_entry_data *ied = *iedp = ggc_cleared_alloc<inline_entry_data> ();
27683 ied->block = block;
27684 ied->label_pfx = BLOCK_INLINE_ENTRY_LABEL;
27685 ied->label_num = BLOCK_NUMBER (block);
27686 if (cur_line_info_table)
27687 ied->view = cur_line_info_table->view;
27689 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, BLOCK_INLINE_ENTRY_LABEL,
27690 BLOCK_NUMBER (block));
27693 /* Called from finalize_size_functions for size functions so that their body
27694 can be encoded in the debug info to describe the layout of variable-length
27695 structures. */
27697 static void
27698 dwarf2out_size_function (tree decl)
27700 function_to_dwarf_procedure (decl);
27703 /* Note in one location list that text section has changed. */
27706 var_location_switch_text_section_1 (var_loc_list **slot, void *)
27708 var_loc_list *list = *slot;
27709 if (list->first)
27710 list->last_before_switch
27711 = list->last->next ? list->last->next : list->last;
27712 return 1;
27715 /* Note in all location lists that text section has changed. */
27717 static void
27718 var_location_switch_text_section (void)
27720 if (decl_loc_table == NULL)
27721 return;
27723 decl_loc_table->traverse<void *, var_location_switch_text_section_1> (NULL);
27726 /* Create a new line number table. */
27728 static dw_line_info_table *
27729 new_line_info_table (void)
27731 dw_line_info_table *table;
27733 table = ggc_cleared_alloc<dw_line_info_table> ();
27734 table->file_num = 1;
27735 table->line_num = 1;
27736 table->is_stmt = DWARF_LINE_DEFAULT_IS_STMT_START;
27737 FORCE_RESET_NEXT_VIEW (table->view);
27738 table->symviews_since_reset = 0;
27740 return table;
27743 /* Lookup the "current" table into which we emit line info, so
27744 that we don't have to do it for every source line. */
27746 static void
27747 set_cur_line_info_table (section *sec)
27749 dw_line_info_table *table;
27751 if (sec == text_section)
27752 table = text_section_line_info;
27753 else if (sec == cold_text_section)
27755 table = cold_text_section_line_info;
27756 if (!table)
27758 cold_text_section_line_info = table = new_line_info_table ();
27759 table->end_label = cold_end_label;
27762 else
27764 const char *end_label;
27766 if (crtl->has_bb_partition)
27768 if (in_cold_section_p)
27769 end_label = crtl->subsections.cold_section_end_label;
27770 else
27771 end_label = crtl->subsections.hot_section_end_label;
27773 else
27775 char label[MAX_ARTIFICIAL_LABEL_BYTES];
27776 ASM_GENERATE_INTERNAL_LABEL (label, FUNC_END_LABEL,
27777 current_function_funcdef_no);
27778 end_label = ggc_strdup (label);
27781 table = new_line_info_table ();
27782 table->end_label = end_label;
27784 vec_safe_push (separate_line_info, table);
27787 if (output_asm_line_debug_info ())
27788 table->is_stmt = (cur_line_info_table
27789 ? cur_line_info_table->is_stmt
27790 : DWARF_LINE_DEFAULT_IS_STMT_START);
27791 cur_line_info_table = table;
27795 /* We need to reset the locations at the beginning of each
27796 function. We can't do this in the end_function hook, because the
27797 declarations that use the locations won't have been output when
27798 that hook is called. Also compute have_multiple_function_sections here. */
27800 static void
27801 dwarf2out_begin_function (tree fun)
27803 section *sec = function_section (fun);
27805 if (sec != text_section)
27806 have_multiple_function_sections = true;
27808 if (crtl->has_bb_partition && !cold_text_section)
27810 gcc_assert (current_function_decl == fun);
27811 cold_text_section = unlikely_text_section ();
27812 switch_to_section (cold_text_section);
27813 ASM_OUTPUT_LABEL (asm_out_file, cold_text_section_label);
27814 switch_to_section (sec);
27817 dwarf2out_note_section_used ();
27818 call_site_count = 0;
27819 tail_call_site_count = 0;
27821 set_cur_line_info_table (sec);
27822 FORCE_RESET_NEXT_VIEW (cur_line_info_table->view);
27825 /* Helper function of dwarf2out_end_function, called only after emitting
27826 the very first function into assembly. Check if some .debug_loc range
27827 might end with a .LVL* label that could be equal to .Ltext0.
27828 In that case we must force using absolute addresses in .debug_loc ranges,
27829 because this range could be .LVLN-.Ltext0 .. .LVLM-.Ltext0 for
27830 .LVLN == .LVLM == .Ltext0, thus 0 .. 0, which is a .debug_loc
27831 list terminator.
27832 Set have_multiple_function_sections to true in that case and
27833 terminate htab traversal. */
27836 find_empty_loc_ranges_at_text_label (var_loc_list **slot, int)
27838 var_loc_list *entry = *slot;
27839 struct var_loc_node *node;
27841 node = entry->first;
27842 if (node && node->next && node->next->label)
27844 unsigned int i;
27845 const char *label = node->next->label;
27846 char loclabel[MAX_ARTIFICIAL_LABEL_BYTES];
27848 for (i = 0; i < first_loclabel_num_not_at_text_label; i++)
27850 ASM_GENERATE_INTERNAL_LABEL (loclabel, "LVL", i);
27851 if (strcmp (label, loclabel) == 0)
27853 have_multiple_function_sections = true;
27854 return 0;
27858 return 1;
27861 /* Hook called after emitting a function into assembly.
27862 This does something only for the very first function emitted. */
27864 static void
27865 dwarf2out_end_function (unsigned int)
27867 if (in_first_function_p
27868 && !have_multiple_function_sections
27869 && first_loclabel_num_not_at_text_label
27870 && decl_loc_table)
27871 decl_loc_table->traverse<int, find_empty_loc_ranges_at_text_label> (0);
27872 in_first_function_p = false;
27873 maybe_at_text_label_p = false;
27876 /* Temporary holder for dwarf2out_register_main_translation_unit. Used to let
27877 front-ends register a translation unit even before dwarf2out_init is
27878 called. */
27879 static tree main_translation_unit = NULL_TREE;
27881 /* Hook called by front-ends after they built their main translation unit.
27882 Associate comp_unit_die to UNIT. */
27884 static void
27885 dwarf2out_register_main_translation_unit (tree unit)
27887 gcc_assert (TREE_CODE (unit) == TRANSLATION_UNIT_DECL
27888 && main_translation_unit == NULL_TREE);
27889 main_translation_unit = unit;
27890 /* If dwarf2out_init has not been called yet, it will perform the association
27891 itself looking at main_translation_unit. */
27892 if (decl_die_table != NULL)
27893 equate_decl_number_to_die (unit, comp_unit_die ());
27896 /* Add OPCODE+VAL as an entry at the end of the opcode array in TABLE. */
27898 static void
27899 push_dw_line_info_entry (dw_line_info_table *table,
27900 enum dw_line_info_opcode opcode, unsigned int val)
27902 dw_line_info_entry e;
27903 e.opcode = opcode;
27904 e.val = val;
27905 vec_safe_push (table->entries, e);
27908 /* Output a label to mark the beginning of a source code line entry
27909 and record information relating to this source line, in
27910 'line_info_table' for later output of the .debug_line section. */
27911 /* ??? The discriminator parameter ought to be unsigned. */
27913 static void
27914 dwarf2out_source_line (unsigned int line, unsigned int column,
27915 const char *filename,
27916 int discriminator, bool is_stmt)
27918 unsigned int file_num;
27919 dw_line_info_table *table;
27920 static var_loc_view lvugid;
27922 if (debug_info_level < DINFO_LEVEL_TERSE)
27923 return;
27925 table = cur_line_info_table;
27927 if (line == 0)
27929 if (debug_variable_location_views
27930 && output_asm_line_debug_info ()
27931 && table && !RESETTING_VIEW_P (table->view))
27933 /* If we're using the assembler to compute view numbers, we
27934 can't issue a .loc directive for line zero, so we can't
27935 get a view number at this point. We might attempt to
27936 compute it from the previous view, or equate it to a
27937 subsequent view (though it might not be there!), but
27938 since we're omitting the line number entry, we might as
27939 well omit the view number as well. That means pretending
27940 it's a view number zero, which might very well turn out
27941 to be correct. ??? Extend the assembler so that the
27942 compiler could emit e.g. ".locview .LVU#", to output a
27943 view without changing line number information. We'd then
27944 have to count it in symviews_since_reset; when it's omitted,
27945 it doesn't count. */
27946 if (!zero_view_p)
27947 zero_view_p = BITMAP_GGC_ALLOC ();
27948 bitmap_set_bit (zero_view_p, table->view);
27949 if (flag_debug_asm)
27951 char label[MAX_ARTIFICIAL_LABEL_BYTES];
27952 ASM_GENERATE_INTERNAL_LABEL (label, "LVU", table->view);
27953 fprintf (asm_out_file, "\t%s line 0, omitted view ",
27954 ASM_COMMENT_START);
27955 assemble_name (asm_out_file, label);
27956 putc ('\n', asm_out_file);
27958 table->view = ++lvugid;
27960 return;
27963 /* The discriminator column was added in dwarf4. Simplify the below
27964 by simply removing it if we're not supposed to output it. */
27965 if (dwarf_version < 4 && dwarf_strict)
27966 discriminator = 0;
27968 if (!debug_column_info)
27969 column = 0;
27971 file_num = maybe_emit_file (lookup_filename (filename));
27973 /* ??? TODO: Elide duplicate line number entries. Traditionally,
27974 the debugger has used the second (possibly duplicate) line number
27975 at the beginning of the function to mark the end of the prologue.
27976 We could eliminate any other duplicates within the function. For
27977 Dwarf3, we ought to include the DW_LNS_set_prologue_end mark in
27978 that second line number entry. */
27979 /* Recall that this end-of-prologue indication is *not* the same thing
27980 as the end_prologue debug hook. The NOTE_INSN_PROLOGUE_END note,
27981 to which the hook corresponds, follows the last insn that was
27982 emitted by gen_prologue. What we need is to precede the first insn
27983 that had been emitted after NOTE_INSN_FUNCTION_BEG, i.e. the first
27984 insn that corresponds to something the user wrote. These may be
27985 very different locations once scheduling is enabled. */
27987 if (0 && file_num == table->file_num
27988 && line == table->line_num
27989 && column == table->column_num
27990 && discriminator == table->discrim_num
27991 && is_stmt == table->is_stmt)
27992 return;
27994 switch_to_section (current_function_section ());
27996 /* If requested, emit something human-readable. */
27997 if (flag_debug_asm)
27999 if (debug_column_info)
28000 fprintf (asm_out_file, "\t%s %s:%d:%d\n", ASM_COMMENT_START,
28001 filename, line, column);
28002 else
28003 fprintf (asm_out_file, "\t%s %s:%d\n", ASM_COMMENT_START,
28004 filename, line);
28007 if (output_asm_line_debug_info ())
28009 /* Emit the .loc directive understood by GNU as. */
28010 /* "\t.loc %u %u 0 is_stmt %u discriminator %u",
28011 file_num, line, is_stmt, discriminator */
28012 fputs ("\t.loc ", asm_out_file);
28013 fprint_ul (asm_out_file, file_num);
28014 putc (' ', asm_out_file);
28015 fprint_ul (asm_out_file, line);
28016 putc (' ', asm_out_file);
28017 fprint_ul (asm_out_file, column);
28019 if (is_stmt != table->is_stmt)
28021 #if HAVE_GAS_LOC_STMT
28022 fputs (" is_stmt ", asm_out_file);
28023 putc (is_stmt ? '1' : '0', asm_out_file);
28024 #endif
28026 if (SUPPORTS_DISCRIMINATOR && discriminator != 0)
28028 gcc_assert (discriminator > 0);
28029 fputs (" discriminator ", asm_out_file);
28030 fprint_ul (asm_out_file, (unsigned long) discriminator);
28032 if (debug_variable_location_views)
28034 if (!RESETTING_VIEW_P (table->view))
28036 table->symviews_since_reset++;
28037 if (table->symviews_since_reset > symview_upper_bound)
28038 symview_upper_bound = table->symviews_since_reset;
28039 /* When we're using the assembler to compute view
28040 numbers, we output symbolic labels after "view" in
28041 .loc directives, and the assembler will set them for
28042 us, so that we can refer to the view numbers in
28043 location lists. The only exceptions are when we know
28044 a view will be zero: "-0" is a forced reset, used
28045 e.g. in the beginning of functions, whereas "0" tells
28046 the assembler to check that there was a PC change
28047 since the previous view, in a way that implicitly
28048 resets the next view. */
28049 fputs (" view ", asm_out_file);
28050 char label[MAX_ARTIFICIAL_LABEL_BYTES];
28051 ASM_GENERATE_INTERNAL_LABEL (label, "LVU", table->view);
28052 assemble_name (asm_out_file, label);
28053 table->view = ++lvugid;
28055 else
28057 table->symviews_since_reset = 0;
28058 if (FORCE_RESETTING_VIEW_P (table->view))
28059 fputs (" view -0", asm_out_file);
28060 else
28061 fputs (" view 0", asm_out_file);
28062 /* Mark the present view as a zero view. Earlier debug
28063 binds may have already added its id to loclists to be
28064 emitted later, so we can't reuse the id for something
28065 else. However, it's good to know whether a view is
28066 known to be zero, because then we may be able to
28067 optimize out locviews that are all zeros, so take
28068 note of it in zero_view_p. */
28069 if (!zero_view_p)
28070 zero_view_p = BITMAP_GGC_ALLOC ();
28071 bitmap_set_bit (zero_view_p, lvugid);
28072 table->view = ++lvugid;
28075 putc ('\n', asm_out_file);
28077 else
28079 unsigned int label_num = ++line_info_label_num;
28081 targetm.asm_out.internal_label (asm_out_file, LINE_CODE_LABEL, label_num);
28083 if (debug_variable_location_views && !RESETTING_VIEW_P (table->view))
28084 push_dw_line_info_entry (table, LI_adv_address, label_num);
28085 else
28086 push_dw_line_info_entry (table, LI_set_address, label_num);
28087 if (debug_variable_location_views)
28089 bool resetting = FORCE_RESETTING_VIEW_P (table->view);
28090 if (resetting)
28091 table->view = 0;
28093 if (flag_debug_asm)
28094 fprintf (asm_out_file, "\t%s view %s%d\n",
28095 ASM_COMMENT_START,
28096 resetting ? "-" : "",
28097 table->view);
28099 table->view++;
28101 if (file_num != table->file_num)
28102 push_dw_line_info_entry (table, LI_set_file, file_num);
28103 if (discriminator != table->discrim_num)
28104 push_dw_line_info_entry (table, LI_set_discriminator, discriminator);
28105 if (is_stmt != table->is_stmt)
28106 push_dw_line_info_entry (table, LI_negate_stmt, 0);
28107 push_dw_line_info_entry (table, LI_set_line, line);
28108 if (debug_column_info)
28109 push_dw_line_info_entry (table, LI_set_column, column);
28112 table->file_num = file_num;
28113 table->line_num = line;
28114 table->column_num = column;
28115 table->discrim_num = discriminator;
28116 table->is_stmt = is_stmt;
28117 table->in_use = true;
28120 /* Record the beginning of a new source file. */
28122 static void
28123 dwarf2out_start_source_file (unsigned int lineno, const char *filename)
28125 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
28127 macinfo_entry e;
28128 e.code = DW_MACINFO_start_file;
28129 e.lineno = lineno;
28130 e.info = ggc_strdup (filename);
28131 vec_safe_push (macinfo_table, e);
28135 /* Record the end of a source file. */
28137 static void
28138 dwarf2out_end_source_file (unsigned int lineno ATTRIBUTE_UNUSED)
28140 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
28142 macinfo_entry e;
28143 e.code = DW_MACINFO_end_file;
28144 e.lineno = lineno;
28145 e.info = NULL;
28146 vec_safe_push (macinfo_table, e);
28150 /* Called from debug_define in toplev.c. The `buffer' parameter contains
28151 the tail part of the directive line, i.e. the part which is past the
28152 initial whitespace, #, whitespace, directive-name, whitespace part. */
28154 static void
28155 dwarf2out_define (unsigned int lineno ATTRIBUTE_UNUSED,
28156 const char *buffer ATTRIBUTE_UNUSED)
28158 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
28160 macinfo_entry e;
28161 /* Insert a dummy first entry to be able to optimize the whole
28162 predefined macro block using DW_MACRO_import. */
28163 if (macinfo_table->is_empty () && lineno <= 1)
28165 e.code = 0;
28166 e.lineno = 0;
28167 e.info = NULL;
28168 vec_safe_push (macinfo_table, e);
28170 e.code = DW_MACINFO_define;
28171 e.lineno = lineno;
28172 e.info = ggc_strdup (buffer);
28173 vec_safe_push (macinfo_table, e);
28177 /* Called from debug_undef in toplev.c. The `buffer' parameter contains
28178 the tail part of the directive line, i.e. the part which is past the
28179 initial whitespace, #, whitespace, directive-name, whitespace part. */
28181 static void
28182 dwarf2out_undef (unsigned int lineno ATTRIBUTE_UNUSED,
28183 const char *buffer ATTRIBUTE_UNUSED)
28185 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
28187 macinfo_entry e;
28188 /* Insert a dummy first entry to be able to optimize the whole
28189 predefined macro block using DW_MACRO_import. */
28190 if (macinfo_table->is_empty () && lineno <= 1)
28192 e.code = 0;
28193 e.lineno = 0;
28194 e.info = NULL;
28195 vec_safe_push (macinfo_table, e);
28197 e.code = DW_MACINFO_undef;
28198 e.lineno = lineno;
28199 e.info = ggc_strdup (buffer);
28200 vec_safe_push (macinfo_table, e);
28204 /* Helpers to manipulate hash table of CUs. */
28206 struct macinfo_entry_hasher : nofree_ptr_hash <macinfo_entry>
28208 static inline hashval_t hash (const macinfo_entry *);
28209 static inline bool equal (const macinfo_entry *, const macinfo_entry *);
28212 inline hashval_t
28213 macinfo_entry_hasher::hash (const macinfo_entry *entry)
28215 return htab_hash_string (entry->info);
28218 inline bool
28219 macinfo_entry_hasher::equal (const macinfo_entry *entry1,
28220 const macinfo_entry *entry2)
28222 return !strcmp (entry1->info, entry2->info);
28225 typedef hash_table<macinfo_entry_hasher> macinfo_hash_type;
28227 /* Output a single .debug_macinfo entry. */
28229 static void
28230 output_macinfo_op (macinfo_entry *ref)
28232 int file_num;
28233 size_t len;
28234 struct indirect_string_node *node;
28235 char label[MAX_ARTIFICIAL_LABEL_BYTES];
28236 struct dwarf_file_data *fd;
28238 switch (ref->code)
28240 case DW_MACINFO_start_file:
28241 fd = lookup_filename (ref->info);
28242 file_num = maybe_emit_file (fd);
28243 dw2_asm_output_data (1, DW_MACINFO_start_file, "Start new file");
28244 dw2_asm_output_data_uleb128 (ref->lineno,
28245 "Included from line number %lu",
28246 (unsigned long) ref->lineno);
28247 dw2_asm_output_data_uleb128 (file_num, "file %s", ref->info);
28248 break;
28249 case DW_MACINFO_end_file:
28250 dw2_asm_output_data (1, DW_MACINFO_end_file, "End file");
28251 break;
28252 case DW_MACINFO_define:
28253 case DW_MACINFO_undef:
28254 len = strlen (ref->info) + 1;
28255 if (!dwarf_strict
28256 && len > DWARF_OFFSET_SIZE
28257 && !DWARF2_INDIRECT_STRING_SUPPORT_MISSING_ON_TARGET
28258 && (debug_str_section->common.flags & SECTION_MERGE) != 0)
28260 ref->code = ref->code == DW_MACINFO_define
28261 ? DW_MACRO_define_strp : DW_MACRO_undef_strp;
28262 output_macinfo_op (ref);
28263 return;
28265 dw2_asm_output_data (1, ref->code,
28266 ref->code == DW_MACINFO_define
28267 ? "Define macro" : "Undefine macro");
28268 dw2_asm_output_data_uleb128 (ref->lineno, "At line number %lu",
28269 (unsigned long) ref->lineno);
28270 dw2_asm_output_nstring (ref->info, -1, "The macro");
28271 break;
28272 case DW_MACRO_define_strp:
28273 case DW_MACRO_undef_strp:
28274 /* NB: dwarf2out_finish performs:
28275 1. save_macinfo_strings
28276 2. hash table traverse of index_string
28277 3. output_macinfo -> output_macinfo_op
28278 4. output_indirect_strings
28279 -> hash table traverse of output_index_string
28281 When output_macinfo_op is called, all index strings have been
28282 added to hash table by save_macinfo_strings and we can't pass
28283 INSERT to find_slot_with_hash which may expand hash table, even
28284 if no insertion is needed, and change hash table traverse order
28285 between index_string and output_index_string. */
28286 node = find_AT_string (ref->info, NO_INSERT);
28287 gcc_assert (node
28288 && (node->form == DW_FORM_strp
28289 || node->form == dwarf_FORM (DW_FORM_strx)));
28290 dw2_asm_output_data (1, ref->code,
28291 ref->code == DW_MACRO_define_strp
28292 ? "Define macro strp"
28293 : "Undefine macro strp");
28294 dw2_asm_output_data_uleb128 (ref->lineno, "At line number %lu",
28295 (unsigned long) ref->lineno);
28296 if (node->form == DW_FORM_strp)
28297 dw2_asm_output_offset (DWARF_OFFSET_SIZE, node->label,
28298 debug_str_section, "The macro: \"%s\"",
28299 ref->info);
28300 else
28301 dw2_asm_output_data_uleb128 (node->index, "The macro: \"%s\"",
28302 ref->info);
28303 break;
28304 case DW_MACRO_import:
28305 dw2_asm_output_data (1, ref->code, "Import");
28306 ASM_GENERATE_INTERNAL_LABEL (label,
28307 DEBUG_MACRO_SECTION_LABEL,
28308 ref->lineno + macinfo_label_base);
28309 dw2_asm_output_offset (DWARF_OFFSET_SIZE, label, NULL, NULL);
28310 break;
28311 default:
28312 fprintf (asm_out_file, "%s unrecognized macinfo code %lu\n",
28313 ASM_COMMENT_START, (unsigned long) ref->code);
28314 break;
28318 /* Attempt to make a sequence of define/undef macinfo ops shareable with
28319 other compilation unit .debug_macinfo sections. IDX is the first
28320 index of a define/undef, return the number of ops that should be
28321 emitted in a comdat .debug_macinfo section and emit
28322 a DW_MACRO_import entry referencing it.
28323 If the define/undef entry should be emitted normally, return 0. */
28325 static unsigned
28326 optimize_macinfo_range (unsigned int idx, vec<macinfo_entry, va_gc> *files,
28327 macinfo_hash_type **macinfo_htab)
28329 macinfo_entry *first, *second, *cur, *inc;
28330 char linebuf[sizeof (HOST_WIDE_INT) * 3 + 1];
28331 unsigned char checksum[16];
28332 struct md5_ctx ctx;
28333 char *grp_name, *tail;
28334 const char *base;
28335 unsigned int i, count, encoded_filename_len, linebuf_len;
28336 macinfo_entry **slot;
28338 first = &(*macinfo_table)[idx];
28339 second = &(*macinfo_table)[idx + 1];
28341 /* Optimize only if there are at least two consecutive define/undef ops,
28342 and either all of them are before first DW_MACINFO_start_file
28343 with lineno {0,1} (i.e. predefined macro block), or all of them are
28344 in some included header file. */
28345 if (second->code != DW_MACINFO_define && second->code != DW_MACINFO_undef)
28346 return 0;
28347 if (vec_safe_is_empty (files))
28349 if (first->lineno > 1 || second->lineno > 1)
28350 return 0;
28352 else if (first->lineno == 0)
28353 return 0;
28355 /* Find the last define/undef entry that can be grouped together
28356 with first and at the same time compute md5 checksum of their
28357 codes, linenumbers and strings. */
28358 md5_init_ctx (&ctx);
28359 for (i = idx; macinfo_table->iterate (i, &cur); i++)
28360 if (cur->code != DW_MACINFO_define && cur->code != DW_MACINFO_undef)
28361 break;
28362 else if (vec_safe_is_empty (files) && cur->lineno > 1)
28363 break;
28364 else
28366 unsigned char code = cur->code;
28367 md5_process_bytes (&code, 1, &ctx);
28368 checksum_uleb128 (cur->lineno, &ctx);
28369 md5_process_bytes (cur->info, strlen (cur->info) + 1, &ctx);
28371 md5_finish_ctx (&ctx, checksum);
28372 count = i - idx;
28374 /* From the containing include filename (if any) pick up just
28375 usable characters from its basename. */
28376 if (vec_safe_is_empty (files))
28377 base = "";
28378 else
28379 base = lbasename (files->last ().info);
28380 for (encoded_filename_len = 0, i = 0; base[i]; i++)
28381 if (ISIDNUM (base[i]) || base[i] == '.')
28382 encoded_filename_len++;
28383 /* Count . at the end. */
28384 if (encoded_filename_len)
28385 encoded_filename_len++;
28387 sprintf (linebuf, HOST_WIDE_INT_PRINT_UNSIGNED, first->lineno);
28388 linebuf_len = strlen (linebuf);
28390 /* The group name format is: wmN.[<encoded filename>.]<lineno>.<md5sum> */
28391 grp_name = XALLOCAVEC (char, 4 + encoded_filename_len + linebuf_len + 1
28392 + 16 * 2 + 1);
28393 memcpy (grp_name, DWARF_OFFSET_SIZE == 4 ? "wm4." : "wm8.", 4);
28394 tail = grp_name + 4;
28395 if (encoded_filename_len)
28397 for (i = 0; base[i]; i++)
28398 if (ISIDNUM (base[i]) || base[i] == '.')
28399 *tail++ = base[i];
28400 *tail++ = '.';
28402 memcpy (tail, linebuf, linebuf_len);
28403 tail += linebuf_len;
28404 *tail++ = '.';
28405 for (i = 0; i < 16; i++)
28406 sprintf (tail + i * 2, "%02x", checksum[i] & 0xff);
28408 /* Construct a macinfo_entry for DW_MACRO_import
28409 in the empty vector entry before the first define/undef. */
28410 inc = &(*macinfo_table)[idx - 1];
28411 inc->code = DW_MACRO_import;
28412 inc->lineno = 0;
28413 inc->info = ggc_strdup (grp_name);
28414 if (!*macinfo_htab)
28415 *macinfo_htab = new macinfo_hash_type (10);
28416 /* Avoid emitting duplicates. */
28417 slot = (*macinfo_htab)->find_slot (inc, INSERT);
28418 if (*slot != NULL)
28420 inc->code = 0;
28421 inc->info = NULL;
28422 /* If such an entry has been used before, just emit
28423 a DW_MACRO_import op. */
28424 inc = *slot;
28425 output_macinfo_op (inc);
28426 /* And clear all macinfo_entry in the range to avoid emitting them
28427 in the second pass. */
28428 for (i = idx; macinfo_table->iterate (i, &cur) && i < idx + count; i++)
28430 cur->code = 0;
28431 cur->info = NULL;
28434 else
28436 *slot = inc;
28437 inc->lineno = (*macinfo_htab)->elements ();
28438 output_macinfo_op (inc);
28440 return count;
28443 /* Save any strings needed by the macinfo table in the debug str
28444 table. All strings must be collected into the table by the time
28445 index_string is called. */
28447 static void
28448 save_macinfo_strings (void)
28450 unsigned len;
28451 unsigned i;
28452 macinfo_entry *ref;
28454 for (i = 0; macinfo_table && macinfo_table->iterate (i, &ref); i++)
28456 switch (ref->code)
28458 /* Match the logic in output_macinfo_op to decide on
28459 indirect strings. */
28460 case DW_MACINFO_define:
28461 case DW_MACINFO_undef:
28462 len = strlen (ref->info) + 1;
28463 if (!dwarf_strict
28464 && len > DWARF_OFFSET_SIZE
28465 && !DWARF2_INDIRECT_STRING_SUPPORT_MISSING_ON_TARGET
28466 && (debug_str_section->common.flags & SECTION_MERGE) != 0)
28467 set_indirect_string (find_AT_string (ref->info));
28468 break;
28469 case DW_MACINFO_start_file:
28470 /* -gsplit-dwarf -g3 will also output filename as indirect
28471 string. */
28472 if (!dwarf_split_debug_info)
28473 break;
28474 /* Fall through. */
28475 case DW_MACRO_define_strp:
28476 case DW_MACRO_undef_strp:
28477 set_indirect_string (find_AT_string (ref->info));
28478 break;
28479 default:
28480 break;
28485 /* Output macinfo section(s). */
28487 static void
28488 output_macinfo (const char *debug_line_label, bool early_lto_debug)
28490 unsigned i;
28491 unsigned long length = vec_safe_length (macinfo_table);
28492 macinfo_entry *ref;
28493 vec<macinfo_entry, va_gc> *files = NULL;
28494 macinfo_hash_type *macinfo_htab = NULL;
28495 char dl_section_ref[MAX_ARTIFICIAL_LABEL_BYTES];
28497 if (! length)
28498 return;
28500 /* output_macinfo* uses these interchangeably. */
28501 gcc_assert ((int) DW_MACINFO_define == (int) DW_MACRO_define
28502 && (int) DW_MACINFO_undef == (int) DW_MACRO_undef
28503 && (int) DW_MACINFO_start_file == (int) DW_MACRO_start_file
28504 && (int) DW_MACINFO_end_file == (int) DW_MACRO_end_file);
28506 /* AIX Assembler inserts the length, so adjust the reference to match the
28507 offset expected by debuggers. */
28508 strcpy (dl_section_ref, debug_line_label);
28509 if (XCOFF_DEBUGGING_INFO)
28510 strcat (dl_section_ref, DWARF_INITIAL_LENGTH_SIZE_STR);
28512 /* For .debug_macro emit the section header. */
28513 if (!dwarf_strict || dwarf_version >= 5)
28515 dw2_asm_output_data (2, dwarf_version >= 5 ? 5 : 4,
28516 "DWARF macro version number");
28517 if (DWARF_OFFSET_SIZE == 8)
28518 dw2_asm_output_data (1, 3, "Flags: 64-bit, lineptr present");
28519 else
28520 dw2_asm_output_data (1, 2, "Flags: 32-bit, lineptr present");
28521 dw2_asm_output_offset (DWARF_OFFSET_SIZE, debug_line_label,
28522 debug_line_section, NULL);
28525 /* In the first loop, it emits the primary .debug_macinfo section
28526 and after each emitted op the macinfo_entry is cleared.
28527 If a longer range of define/undef ops can be optimized using
28528 DW_MACRO_import, the DW_MACRO_import op is emitted and kept in
28529 the vector before the first define/undef in the range and the
28530 whole range of define/undef ops is not emitted and kept. */
28531 for (i = 0; macinfo_table->iterate (i, &ref); i++)
28533 switch (ref->code)
28535 case DW_MACINFO_start_file:
28536 vec_safe_push (files, *ref);
28537 break;
28538 case DW_MACINFO_end_file:
28539 if (!vec_safe_is_empty (files))
28540 files->pop ();
28541 break;
28542 case DW_MACINFO_define:
28543 case DW_MACINFO_undef:
28544 if ((!dwarf_strict || dwarf_version >= 5)
28545 && HAVE_COMDAT_GROUP
28546 && vec_safe_length (files) != 1
28547 && i > 0
28548 && i + 1 < length
28549 && (*macinfo_table)[i - 1].code == 0)
28551 unsigned count = optimize_macinfo_range (i, files, &macinfo_htab);
28552 if (count)
28554 i += count - 1;
28555 continue;
28558 break;
28559 case 0:
28560 /* A dummy entry may be inserted at the beginning to be able
28561 to optimize the whole block of predefined macros. */
28562 if (i == 0)
28563 continue;
28564 default:
28565 break;
28567 output_macinfo_op (ref);
28568 ref->info = NULL;
28569 ref->code = 0;
28572 if (!macinfo_htab)
28573 return;
28575 /* Save the number of transparent includes so we can adjust the
28576 label number for the fat LTO object DWARF. */
28577 unsigned macinfo_label_base_adj = macinfo_htab->elements ();
28579 delete macinfo_htab;
28580 macinfo_htab = NULL;
28582 /* If any DW_MACRO_import were used, on those DW_MACRO_import entries
28583 terminate the current chain and switch to a new comdat .debug_macinfo
28584 section and emit the define/undef entries within it. */
28585 for (i = 0; macinfo_table->iterate (i, &ref); i++)
28586 switch (ref->code)
28588 case 0:
28589 continue;
28590 case DW_MACRO_import:
28592 char label[MAX_ARTIFICIAL_LABEL_BYTES];
28593 tree comdat_key = get_identifier (ref->info);
28594 /* Terminate the previous .debug_macinfo section. */
28595 dw2_asm_output_data (1, 0, "End compilation unit");
28596 targetm.asm_out.named_section (debug_macinfo_section_name,
28597 SECTION_DEBUG
28598 | SECTION_LINKONCE
28599 | (early_lto_debug
28600 ? SECTION_EXCLUDE : 0),
28601 comdat_key);
28602 ASM_GENERATE_INTERNAL_LABEL (label,
28603 DEBUG_MACRO_SECTION_LABEL,
28604 ref->lineno + macinfo_label_base);
28605 ASM_OUTPUT_LABEL (asm_out_file, label);
28606 ref->code = 0;
28607 ref->info = NULL;
28608 dw2_asm_output_data (2, dwarf_version >= 5 ? 5 : 4,
28609 "DWARF macro version number");
28610 if (DWARF_OFFSET_SIZE == 8)
28611 dw2_asm_output_data (1, 1, "Flags: 64-bit");
28612 else
28613 dw2_asm_output_data (1, 0, "Flags: 32-bit");
28615 break;
28616 case DW_MACINFO_define:
28617 case DW_MACINFO_undef:
28618 output_macinfo_op (ref);
28619 ref->code = 0;
28620 ref->info = NULL;
28621 break;
28622 default:
28623 gcc_unreachable ();
28626 macinfo_label_base += macinfo_label_base_adj;
28629 /* Initialize the various sections and labels for dwarf output and prefix
28630 them with PREFIX if non-NULL. Returns the generation (zero based
28631 number of times function was called). */
28633 static unsigned
28634 init_sections_and_labels (bool early_lto_debug)
28636 /* As we may get called multiple times have a generation count for
28637 labels. */
28638 static unsigned generation = 0;
28640 if (early_lto_debug)
28642 if (!dwarf_split_debug_info)
28644 debug_info_section = get_section (DEBUG_LTO_INFO_SECTION,
28645 SECTION_DEBUG | SECTION_EXCLUDE,
28646 NULL);
28647 debug_abbrev_section = get_section (DEBUG_LTO_ABBREV_SECTION,
28648 SECTION_DEBUG | SECTION_EXCLUDE,
28649 NULL);
28650 debug_macinfo_section_name
28651 = ((dwarf_strict && dwarf_version < 5)
28652 ? DEBUG_LTO_MACINFO_SECTION : DEBUG_LTO_MACRO_SECTION);
28653 debug_macinfo_section = get_section (debug_macinfo_section_name,
28654 SECTION_DEBUG
28655 | SECTION_EXCLUDE, NULL);
28657 else
28659 /* ??? Which of the following do we need early? */
28660 debug_info_section = get_section (DEBUG_LTO_DWO_INFO_SECTION,
28661 SECTION_DEBUG | SECTION_EXCLUDE,
28662 NULL);
28663 debug_abbrev_section = get_section (DEBUG_LTO_DWO_ABBREV_SECTION,
28664 SECTION_DEBUG | SECTION_EXCLUDE,
28665 NULL);
28666 debug_skeleton_info_section = get_section (DEBUG_LTO_INFO_SECTION,
28667 SECTION_DEBUG
28668 | SECTION_EXCLUDE, NULL);
28669 debug_skeleton_abbrev_section
28670 = get_section (DEBUG_LTO_ABBREV_SECTION,
28671 SECTION_DEBUG | SECTION_EXCLUDE, NULL);
28672 ASM_GENERATE_INTERNAL_LABEL (debug_skeleton_abbrev_section_label,
28673 DEBUG_SKELETON_ABBREV_SECTION_LABEL,
28674 generation);
28676 /* Somewhat confusing detail: The skeleton_[abbrev|info] sections
28677 stay in the main .o, but the skeleton_line goes into the split
28678 off dwo. */
28679 debug_skeleton_line_section
28680 = get_section (DEBUG_LTO_LINE_SECTION,
28681 SECTION_DEBUG | SECTION_EXCLUDE, NULL);
28682 ASM_GENERATE_INTERNAL_LABEL (debug_skeleton_line_section_label,
28683 DEBUG_SKELETON_LINE_SECTION_LABEL,
28684 generation);
28685 debug_str_offsets_section
28686 = get_section (DEBUG_LTO_DWO_STR_OFFSETS_SECTION,
28687 SECTION_DEBUG | SECTION_EXCLUDE,
28688 NULL);
28689 ASM_GENERATE_INTERNAL_LABEL (debug_skeleton_info_section_label,
28690 DEBUG_SKELETON_INFO_SECTION_LABEL,
28691 generation);
28692 debug_str_dwo_section = get_section (DEBUG_LTO_STR_DWO_SECTION,
28693 DEBUG_STR_DWO_SECTION_FLAGS,
28694 NULL);
28695 debug_macinfo_section_name
28696 = ((dwarf_strict && dwarf_version < 5)
28697 ? DEBUG_LTO_DWO_MACINFO_SECTION : DEBUG_LTO_DWO_MACRO_SECTION);
28698 debug_macinfo_section = get_section (debug_macinfo_section_name,
28699 SECTION_DEBUG | SECTION_EXCLUDE,
28700 NULL);
28702 /* For macro info and the file table we have to refer to a
28703 debug_line section. */
28704 debug_line_section = get_section (DEBUG_LTO_LINE_SECTION,
28705 SECTION_DEBUG | SECTION_EXCLUDE, NULL);
28706 ASM_GENERATE_INTERNAL_LABEL (debug_line_section_label,
28707 DEBUG_LINE_SECTION_LABEL, generation);
28709 debug_str_section = get_section (DEBUG_LTO_STR_SECTION,
28710 DEBUG_STR_SECTION_FLAGS
28711 | SECTION_EXCLUDE, NULL);
28712 if (!dwarf_split_debug_info)
28713 debug_line_str_section
28714 = get_section (DEBUG_LTO_LINE_STR_SECTION,
28715 DEBUG_STR_SECTION_FLAGS | SECTION_EXCLUDE, NULL);
28717 else
28719 if (!dwarf_split_debug_info)
28721 debug_info_section = get_section (DEBUG_INFO_SECTION,
28722 SECTION_DEBUG, NULL);
28723 debug_abbrev_section = get_section (DEBUG_ABBREV_SECTION,
28724 SECTION_DEBUG, NULL);
28725 debug_loc_section = get_section (dwarf_version >= 5
28726 ? DEBUG_LOCLISTS_SECTION
28727 : DEBUG_LOC_SECTION,
28728 SECTION_DEBUG, NULL);
28729 debug_macinfo_section_name
28730 = ((dwarf_strict && dwarf_version < 5)
28731 ? DEBUG_MACINFO_SECTION : DEBUG_MACRO_SECTION);
28732 debug_macinfo_section = get_section (debug_macinfo_section_name,
28733 SECTION_DEBUG, NULL);
28735 else
28737 debug_info_section = get_section (DEBUG_DWO_INFO_SECTION,
28738 SECTION_DEBUG | SECTION_EXCLUDE,
28739 NULL);
28740 debug_abbrev_section = get_section (DEBUG_DWO_ABBREV_SECTION,
28741 SECTION_DEBUG | SECTION_EXCLUDE,
28742 NULL);
28743 debug_addr_section = get_section (DEBUG_ADDR_SECTION,
28744 SECTION_DEBUG, NULL);
28745 debug_skeleton_info_section = get_section (DEBUG_INFO_SECTION,
28746 SECTION_DEBUG, NULL);
28747 debug_skeleton_abbrev_section = get_section (DEBUG_ABBREV_SECTION,
28748 SECTION_DEBUG, NULL);
28749 ASM_GENERATE_INTERNAL_LABEL (debug_skeleton_abbrev_section_label,
28750 DEBUG_SKELETON_ABBREV_SECTION_LABEL,
28751 generation);
28753 /* Somewhat confusing detail: The skeleton_[abbrev|info] sections
28754 stay in the main .o, but the skeleton_line goes into the
28755 split off dwo. */
28756 debug_skeleton_line_section
28757 = get_section (DEBUG_DWO_LINE_SECTION,
28758 SECTION_DEBUG | SECTION_EXCLUDE, NULL);
28759 ASM_GENERATE_INTERNAL_LABEL (debug_skeleton_line_section_label,
28760 DEBUG_SKELETON_LINE_SECTION_LABEL,
28761 generation);
28762 debug_str_offsets_section
28763 = get_section (DEBUG_DWO_STR_OFFSETS_SECTION,
28764 SECTION_DEBUG | SECTION_EXCLUDE, NULL);
28765 ASM_GENERATE_INTERNAL_LABEL (debug_skeleton_info_section_label,
28766 DEBUG_SKELETON_INFO_SECTION_LABEL,
28767 generation);
28768 debug_loc_section = get_section (dwarf_version >= 5
28769 ? DEBUG_DWO_LOCLISTS_SECTION
28770 : DEBUG_DWO_LOC_SECTION,
28771 SECTION_DEBUG | SECTION_EXCLUDE,
28772 NULL);
28773 debug_str_dwo_section = get_section (DEBUG_STR_DWO_SECTION,
28774 DEBUG_STR_DWO_SECTION_FLAGS,
28775 NULL);
28776 debug_macinfo_section_name
28777 = ((dwarf_strict && dwarf_version < 5)
28778 ? DEBUG_DWO_MACINFO_SECTION : DEBUG_DWO_MACRO_SECTION);
28779 debug_macinfo_section = get_section (debug_macinfo_section_name,
28780 SECTION_DEBUG | SECTION_EXCLUDE,
28781 NULL);
28783 debug_aranges_section = get_section (DEBUG_ARANGES_SECTION,
28784 SECTION_DEBUG, NULL);
28785 debug_line_section = get_section (DEBUG_LINE_SECTION,
28786 SECTION_DEBUG, NULL);
28787 debug_pubnames_section = get_section (DEBUG_PUBNAMES_SECTION,
28788 SECTION_DEBUG, NULL);
28789 debug_pubtypes_section = get_section (DEBUG_PUBTYPES_SECTION,
28790 SECTION_DEBUG, NULL);
28791 debug_str_section = get_section (DEBUG_STR_SECTION,
28792 DEBUG_STR_SECTION_FLAGS, NULL);
28793 if (!dwarf_split_debug_info && !output_asm_line_debug_info ())
28794 debug_line_str_section = get_section (DEBUG_LINE_STR_SECTION,
28795 DEBUG_STR_SECTION_FLAGS, NULL);
28797 debug_ranges_section = get_section (dwarf_version >= 5
28798 ? DEBUG_RNGLISTS_SECTION
28799 : DEBUG_RANGES_SECTION,
28800 SECTION_DEBUG, NULL);
28801 debug_frame_section = get_section (DEBUG_FRAME_SECTION,
28802 SECTION_DEBUG, NULL);
28805 ASM_GENERATE_INTERNAL_LABEL (abbrev_section_label,
28806 DEBUG_ABBREV_SECTION_LABEL, generation);
28807 ASM_GENERATE_INTERNAL_LABEL (debug_info_section_label,
28808 DEBUG_INFO_SECTION_LABEL, generation);
28809 info_section_emitted = false;
28810 ASM_GENERATE_INTERNAL_LABEL (debug_line_section_label,
28811 DEBUG_LINE_SECTION_LABEL, generation);
28812 /* There are up to 4 unique ranges labels per generation.
28813 See also output_rnglists. */
28814 ASM_GENERATE_INTERNAL_LABEL (ranges_section_label,
28815 DEBUG_RANGES_SECTION_LABEL, generation * 4);
28816 if (dwarf_version >= 5 && dwarf_split_debug_info)
28817 ASM_GENERATE_INTERNAL_LABEL (ranges_base_label,
28818 DEBUG_RANGES_SECTION_LABEL,
28819 1 + generation * 4);
28820 ASM_GENERATE_INTERNAL_LABEL (debug_addr_section_label,
28821 DEBUG_ADDR_SECTION_LABEL, generation);
28822 ASM_GENERATE_INTERNAL_LABEL (macinfo_section_label,
28823 (dwarf_strict && dwarf_version < 5)
28824 ? DEBUG_MACINFO_SECTION_LABEL
28825 : DEBUG_MACRO_SECTION_LABEL, generation);
28826 ASM_GENERATE_INTERNAL_LABEL (loc_section_label, DEBUG_LOC_SECTION_LABEL,
28827 generation);
28829 ++generation;
28830 return generation - 1;
28833 /* Set up for Dwarf output at the start of compilation. */
28835 static void
28836 dwarf2out_init (const char *filename ATTRIBUTE_UNUSED)
28838 /* Allocate the file_table. */
28839 file_table = hash_table<dwarf_file_hasher>::create_ggc (50);
28841 #ifndef DWARF2_LINENO_DEBUGGING_INFO
28842 /* Allocate the decl_die_table. */
28843 decl_die_table = hash_table<decl_die_hasher>::create_ggc (10);
28845 /* Allocate the decl_loc_table. */
28846 decl_loc_table = hash_table<decl_loc_hasher>::create_ggc (10);
28848 /* Allocate the cached_dw_loc_list_table. */
28849 cached_dw_loc_list_table = hash_table<dw_loc_list_hasher>::create_ggc (10);
28851 /* Allocate the initial hunk of the abbrev_die_table. */
28852 vec_alloc (abbrev_die_table, 256);
28853 /* Zero-th entry is allocated, but unused. */
28854 abbrev_die_table->quick_push (NULL);
28856 /* Allocate the dwarf_proc_stack_usage_map. */
28857 dwarf_proc_stack_usage_map = new hash_map<dw_die_ref, int>;
28859 /* Allocate the pubtypes and pubnames vectors. */
28860 vec_alloc (pubname_table, 32);
28861 vec_alloc (pubtype_table, 32);
28863 vec_alloc (incomplete_types, 64);
28865 vec_alloc (used_rtx_array, 32);
28867 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
28868 vec_alloc (macinfo_table, 64);
28869 #endif
28871 /* If front-ends already registered a main translation unit but we were not
28872 ready to perform the association, do this now. */
28873 if (main_translation_unit != NULL_TREE)
28874 equate_decl_number_to_die (main_translation_unit, comp_unit_die ());
28877 /* Called before compile () starts outputtting functions, variables
28878 and toplevel asms into assembly. */
28880 static void
28881 dwarf2out_assembly_start (void)
28883 if (text_section_line_info)
28884 return;
28886 #ifndef DWARF2_LINENO_DEBUGGING_INFO
28887 ASM_GENERATE_INTERNAL_LABEL (text_section_label, TEXT_SECTION_LABEL, 0);
28888 ASM_GENERATE_INTERNAL_LABEL (text_end_label, TEXT_END_LABEL, 0);
28889 ASM_GENERATE_INTERNAL_LABEL (cold_text_section_label,
28890 COLD_TEXT_SECTION_LABEL, 0);
28891 ASM_GENERATE_INTERNAL_LABEL (cold_end_label, COLD_END_LABEL, 0);
28893 switch_to_section (text_section);
28894 ASM_OUTPUT_LABEL (asm_out_file, text_section_label);
28895 #endif
28897 /* Make sure the line number table for .text always exists. */
28898 text_section_line_info = new_line_info_table ();
28899 text_section_line_info->end_label = text_end_label;
28901 #ifdef DWARF2_LINENO_DEBUGGING_INFO
28902 cur_line_info_table = text_section_line_info;
28903 #endif
28905 if (HAVE_GAS_CFI_SECTIONS_DIRECTIVE
28906 && dwarf2out_do_cfi_asm ()
28907 && !dwarf2out_do_eh_frame ())
28908 fprintf (asm_out_file, "\t.cfi_sections\t.debug_frame\n");
28911 /* A helper function for dwarf2out_finish called through
28912 htab_traverse. Assign a string its index. All strings must be
28913 collected into the table by the time index_string is called,
28914 because the indexing code relies on htab_traverse to traverse nodes
28915 in the same order for each run. */
28918 index_string (indirect_string_node **h, unsigned int *index)
28920 indirect_string_node *node = *h;
28922 find_string_form (node);
28923 if (node->form == dwarf_FORM (DW_FORM_strx) && node->refcount > 0)
28925 gcc_assert (node->index == NO_INDEX_ASSIGNED);
28926 node->index = *index;
28927 *index += 1;
28929 return 1;
28932 /* A helper function for output_indirect_strings called through
28933 htab_traverse. Output the offset to a string and update the
28934 current offset. */
28937 output_index_string_offset (indirect_string_node **h, unsigned int *offset)
28939 indirect_string_node *node = *h;
28941 if (node->form == dwarf_FORM (DW_FORM_strx) && node->refcount > 0)
28943 /* Assert that this node has been assigned an index. */
28944 gcc_assert (node->index != NO_INDEX_ASSIGNED
28945 && node->index != NOT_INDEXED);
28946 dw2_asm_output_data (DWARF_OFFSET_SIZE, *offset,
28947 "indexed string 0x%x: %s", node->index, node->str);
28948 *offset += strlen (node->str) + 1;
28950 return 1;
28953 /* A helper function for dwarf2out_finish called through
28954 htab_traverse. Output the indexed string. */
28957 output_index_string (indirect_string_node **h, unsigned int *cur_idx)
28959 struct indirect_string_node *node = *h;
28961 if (node->form == dwarf_FORM (DW_FORM_strx) && node->refcount > 0)
28963 /* Assert that the strings are output in the same order as their
28964 indexes were assigned. */
28965 gcc_assert (*cur_idx == node->index);
28966 assemble_string (node->str, strlen (node->str) + 1);
28967 *cur_idx += 1;
28969 return 1;
28972 /* A helper function for output_indirect_strings. Counts the number
28973 of index strings offsets. Must match the logic of the functions
28974 output_index_string[_offsets] above. */
28976 count_index_strings (indirect_string_node **h, unsigned int *last_idx)
28978 struct indirect_string_node *node = *h;
28980 if (node->form == dwarf_FORM (DW_FORM_strx) && node->refcount > 0)
28981 *last_idx += 1;
28982 return 1;
28985 /* A helper function for dwarf2out_finish called through
28986 htab_traverse. Emit one queued .debug_str string. */
28989 output_indirect_string (indirect_string_node **h, enum dwarf_form form)
28991 struct indirect_string_node *node = *h;
28993 node->form = find_string_form (node);
28994 if (node->form == form && node->refcount > 0)
28996 ASM_OUTPUT_LABEL (asm_out_file, node->label);
28997 assemble_string (node->str, strlen (node->str) + 1);
29000 return 1;
29003 /* Output the indexed string table. */
29005 static void
29006 output_indirect_strings (void)
29008 switch_to_section (debug_str_section);
29009 if (!dwarf_split_debug_info)
29010 debug_str_hash->traverse<enum dwarf_form,
29011 output_indirect_string> (DW_FORM_strp);
29012 else
29014 unsigned int offset = 0;
29015 unsigned int cur_idx = 0;
29017 if (skeleton_debug_str_hash)
29018 skeleton_debug_str_hash->traverse<enum dwarf_form,
29019 output_indirect_string> (DW_FORM_strp);
29021 switch_to_section (debug_str_offsets_section);
29022 /* For DWARF5 the .debug_str_offsets[.dwo] section needs a unit
29023 header. Note that we don't need to generate a label to the
29024 actual index table following the header here, because this is
29025 for the split dwarf case only. In an .dwo file there is only
29026 one string offsets table (and one debug info section). But
29027 if we would start using string offset tables for the main (or
29028 skeleton) unit, then we have to add a DW_AT_str_offsets_base
29029 pointing to the actual index after the header. Split dwarf
29030 units will never have a string offsets base attribute. When
29031 a split unit is moved into a .dwp file the string offsets can
29032 be found through the .debug_cu_index section table. */
29033 if (dwarf_version >= 5)
29035 unsigned int last_idx = 0;
29036 unsigned long str_offsets_length;
29038 debug_str_hash->traverse_noresize
29039 <unsigned int *, count_index_strings> (&last_idx);
29040 str_offsets_length = last_idx * DWARF_OFFSET_SIZE + 4;
29041 if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
29042 dw2_asm_output_data (4, 0xffffffff,
29043 "Escape value for 64-bit DWARF extension");
29044 dw2_asm_output_data (DWARF_OFFSET_SIZE, str_offsets_length,
29045 "Length of string offsets unit");
29046 dw2_asm_output_data (2, 5, "DWARF string offsets version");
29047 dw2_asm_output_data (2, 0, "Header zero padding");
29049 debug_str_hash->traverse_noresize
29050 <unsigned int *, output_index_string_offset> (&offset);
29051 switch_to_section (debug_str_dwo_section);
29052 debug_str_hash->traverse_noresize<unsigned int *, output_index_string>
29053 (&cur_idx);
29057 /* Callback for htab_traverse to assign an index to an entry in the
29058 table, and to write that entry to the .debug_addr section. */
29061 output_addr_table_entry (addr_table_entry **slot, unsigned int *cur_index)
29063 addr_table_entry *entry = *slot;
29065 if (entry->refcount == 0)
29067 gcc_assert (entry->index == NO_INDEX_ASSIGNED
29068 || entry->index == NOT_INDEXED);
29069 return 1;
29072 gcc_assert (entry->index == *cur_index);
29073 (*cur_index)++;
29075 switch (entry->kind)
29077 case ate_kind_rtx:
29078 dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE, entry->addr.rtl,
29079 "0x%x", entry->index);
29080 break;
29081 case ate_kind_rtx_dtprel:
29082 gcc_assert (targetm.asm_out.output_dwarf_dtprel);
29083 targetm.asm_out.output_dwarf_dtprel (asm_out_file,
29084 DWARF2_ADDR_SIZE,
29085 entry->addr.rtl);
29086 fputc ('\n', asm_out_file);
29087 break;
29088 case ate_kind_label:
29089 dw2_asm_output_addr (DWARF2_ADDR_SIZE, entry->addr.label,
29090 "0x%x", entry->index);
29091 break;
29092 default:
29093 gcc_unreachable ();
29095 return 1;
29098 /* A helper function for dwarf2out_finish. Counts the number
29099 of indexed addresses. Must match the logic of the functions
29100 output_addr_table_entry above. */
29102 count_index_addrs (addr_table_entry **slot, unsigned int *last_idx)
29104 addr_table_entry *entry = *slot;
29106 if (entry->refcount > 0)
29107 *last_idx += 1;
29108 return 1;
29111 /* Produce the .debug_addr section. */
29113 static void
29114 output_addr_table (void)
29116 unsigned int index = 0;
29117 if (addr_index_table == NULL || addr_index_table->size () == 0)
29118 return;
29120 switch_to_section (debug_addr_section);
29121 /* GNU DebugFission https://gcc.gnu.org/wiki/DebugFission
29122 which GCC uses to implement -gsplit-dwarf as DWARF GNU extension
29123 before DWARF5, didn't have a header for .debug_addr units.
29124 DWARF5 specifies a small header when address tables are used. */
29125 if (dwarf_version >= 5)
29127 unsigned int last_idx = 0;
29128 unsigned long addrs_length;
29130 addr_index_table->traverse_noresize
29131 <unsigned int *, count_index_addrs> (&last_idx);
29132 addrs_length = last_idx * DWARF2_ADDR_SIZE + 4;
29134 if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
29135 dw2_asm_output_data (4, 0xffffffff,
29136 "Escape value for 64-bit DWARF extension");
29137 dw2_asm_output_data (DWARF_OFFSET_SIZE, addrs_length,
29138 "Length of Address Unit");
29139 dw2_asm_output_data (2, 5, "DWARF addr version");
29140 dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Size of Address");
29141 dw2_asm_output_data (1, 0, "Size of Segment Descriptor");
29143 ASM_OUTPUT_LABEL (asm_out_file, debug_addr_section_label);
29145 addr_index_table
29146 ->traverse_noresize<unsigned int *, output_addr_table_entry> (&index);
29149 #if ENABLE_ASSERT_CHECKING
29150 /* Verify that all marks are clear. */
29152 static void
29153 verify_marks_clear (dw_die_ref die)
29155 dw_die_ref c;
29157 gcc_assert (! die->die_mark);
29158 FOR_EACH_CHILD (die, c, verify_marks_clear (c));
29160 #endif /* ENABLE_ASSERT_CHECKING */
29162 /* Clear the marks for a die and its children.
29163 Be cool if the mark isn't set. */
29165 static void
29166 prune_unmark_dies (dw_die_ref die)
29168 dw_die_ref c;
29170 if (die->die_mark)
29171 die->die_mark = 0;
29172 FOR_EACH_CHILD (die, c, prune_unmark_dies (c));
29175 /* Given LOC that is referenced by a DIE we're marking as used, find all
29176 referenced DWARF procedures it references and mark them as used. */
29178 static void
29179 prune_unused_types_walk_loc_descr (dw_loc_descr_ref loc)
29181 for (; loc != NULL; loc = loc->dw_loc_next)
29182 switch (loc->dw_loc_opc)
29184 case DW_OP_implicit_pointer:
29185 case DW_OP_convert:
29186 case DW_OP_reinterpret:
29187 case DW_OP_GNU_implicit_pointer:
29188 case DW_OP_GNU_convert:
29189 case DW_OP_GNU_reinterpret:
29190 if (loc->dw_loc_oprnd1.val_class == dw_val_class_die_ref)
29191 prune_unused_types_mark (loc->dw_loc_oprnd1.v.val_die_ref.die, 1);
29192 break;
29193 case DW_OP_GNU_variable_value:
29194 if (loc->dw_loc_oprnd1.val_class == dw_val_class_decl_ref)
29196 dw_die_ref ref
29197 = lookup_decl_die (loc->dw_loc_oprnd1.v.val_decl_ref);
29198 if (ref == NULL)
29199 break;
29200 loc->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
29201 loc->dw_loc_oprnd1.v.val_die_ref.die = ref;
29202 loc->dw_loc_oprnd1.v.val_die_ref.external = 0;
29204 /* FALLTHRU */
29205 case DW_OP_call2:
29206 case DW_OP_call4:
29207 case DW_OP_call_ref:
29208 case DW_OP_const_type:
29209 case DW_OP_GNU_const_type:
29210 case DW_OP_GNU_parameter_ref:
29211 gcc_assert (loc->dw_loc_oprnd1.val_class == dw_val_class_die_ref);
29212 prune_unused_types_mark (loc->dw_loc_oprnd1.v.val_die_ref.die, 1);
29213 break;
29214 case DW_OP_regval_type:
29215 case DW_OP_deref_type:
29216 case DW_OP_GNU_regval_type:
29217 case DW_OP_GNU_deref_type:
29218 gcc_assert (loc->dw_loc_oprnd2.val_class == dw_val_class_die_ref);
29219 prune_unused_types_mark (loc->dw_loc_oprnd2.v.val_die_ref.die, 1);
29220 break;
29221 case DW_OP_entry_value:
29222 case DW_OP_GNU_entry_value:
29223 gcc_assert (loc->dw_loc_oprnd1.val_class == dw_val_class_loc);
29224 prune_unused_types_walk_loc_descr (loc->dw_loc_oprnd1.v.val_loc);
29225 break;
29226 default:
29227 break;
29231 /* Given DIE that we're marking as used, find any other dies
29232 it references as attributes and mark them as used. */
29234 static void
29235 prune_unused_types_walk_attribs (dw_die_ref die)
29237 dw_attr_node *a;
29238 unsigned ix;
29240 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
29242 switch (AT_class (a))
29244 /* Make sure DWARF procedures referenced by location descriptions will
29245 get emitted. */
29246 case dw_val_class_loc:
29247 prune_unused_types_walk_loc_descr (AT_loc (a));
29248 break;
29249 case dw_val_class_loc_list:
29250 for (dw_loc_list_ref list = AT_loc_list (a);
29251 list != NULL;
29252 list = list->dw_loc_next)
29253 prune_unused_types_walk_loc_descr (list->expr);
29254 break;
29256 case dw_val_class_view_list:
29257 /* This points to a loc_list in another attribute, so it's
29258 already covered. */
29259 break;
29261 case dw_val_class_die_ref:
29262 /* A reference to another DIE.
29263 Make sure that it will get emitted.
29264 If it was broken out into a comdat group, don't follow it. */
29265 if (! AT_ref (a)->comdat_type_p
29266 || a->dw_attr == DW_AT_specification)
29267 prune_unused_types_mark (a->dw_attr_val.v.val_die_ref.die, 1);
29268 break;
29270 case dw_val_class_str:
29271 /* Set the string's refcount to 0 so that prune_unused_types_mark
29272 accounts properly for it. */
29273 a->dw_attr_val.v.val_str->refcount = 0;
29274 break;
29276 default:
29277 break;
29282 /* Mark the generic parameters and arguments children DIEs of DIE. */
29284 static void
29285 prune_unused_types_mark_generic_parms_dies (dw_die_ref die)
29287 dw_die_ref c;
29289 if (die == NULL || die->die_child == NULL)
29290 return;
29291 c = die->die_child;
29294 if (is_template_parameter (c))
29295 prune_unused_types_mark (c, 1);
29296 c = c->die_sib;
29297 } while (c && c != die->die_child);
29300 /* Mark DIE as being used. If DOKIDS is true, then walk down
29301 to DIE's children. */
29303 static void
29304 prune_unused_types_mark (dw_die_ref die, int dokids)
29306 dw_die_ref c;
29308 if (die->die_mark == 0)
29310 /* We haven't done this node yet. Mark it as used. */
29311 die->die_mark = 1;
29312 /* If this is the DIE of a generic type instantiation,
29313 mark the children DIEs that describe its generic parms and
29314 args. */
29315 prune_unused_types_mark_generic_parms_dies (die);
29317 /* We also have to mark its parents as used.
29318 (But we don't want to mark our parent's kids due to this,
29319 unless it is a class.) */
29320 if (die->die_parent)
29321 prune_unused_types_mark (die->die_parent,
29322 class_scope_p (die->die_parent));
29324 /* Mark any referenced nodes. */
29325 prune_unused_types_walk_attribs (die);
29327 /* If this node is a specification,
29328 also mark the definition, if it exists. */
29329 if (get_AT_flag (die, DW_AT_declaration) && die->die_definition)
29330 prune_unused_types_mark (die->die_definition, 1);
29333 if (dokids && die->die_mark != 2)
29335 /* We need to walk the children, but haven't done so yet.
29336 Remember that we've walked the kids. */
29337 die->die_mark = 2;
29339 /* If this is an array type, we need to make sure our
29340 kids get marked, even if they're types. If we're
29341 breaking out types into comdat sections, do this
29342 for all type definitions. */
29343 if (die->die_tag == DW_TAG_array_type
29344 || (use_debug_types
29345 && is_type_die (die) && ! is_declaration_die (die)))
29346 FOR_EACH_CHILD (die, c, prune_unused_types_mark (c, 1));
29347 else
29348 FOR_EACH_CHILD (die, c, prune_unused_types_walk (c));
29352 /* For local classes, look if any static member functions were emitted
29353 and if so, mark them. */
29355 static void
29356 prune_unused_types_walk_local_classes (dw_die_ref die)
29358 dw_die_ref c;
29360 if (die->die_mark == 2)
29361 return;
29363 switch (die->die_tag)
29365 case DW_TAG_structure_type:
29366 case DW_TAG_union_type:
29367 case DW_TAG_class_type:
29368 case DW_TAG_interface_type:
29369 break;
29371 case DW_TAG_subprogram:
29372 if (!get_AT_flag (die, DW_AT_declaration)
29373 || die->die_definition != NULL)
29374 prune_unused_types_mark (die, 1);
29375 return;
29377 default:
29378 return;
29381 /* Mark children. */
29382 FOR_EACH_CHILD (die, c, prune_unused_types_walk_local_classes (c));
29385 /* Walk the tree DIE and mark types that we actually use. */
29387 static void
29388 prune_unused_types_walk (dw_die_ref die)
29390 dw_die_ref c;
29392 /* Don't do anything if this node is already marked and
29393 children have been marked as well. */
29394 if (die->die_mark == 2)
29395 return;
29397 switch (die->die_tag)
29399 case DW_TAG_structure_type:
29400 case DW_TAG_union_type:
29401 case DW_TAG_class_type:
29402 case DW_TAG_interface_type:
29403 if (die->die_perennial_p)
29404 break;
29406 for (c = die->die_parent; c; c = c->die_parent)
29407 if (c->die_tag == DW_TAG_subprogram)
29408 break;
29410 /* Finding used static member functions inside of classes
29411 is needed just for local classes, because for other classes
29412 static member function DIEs with DW_AT_specification
29413 are emitted outside of the DW_TAG_*_type. If we ever change
29414 it, we'd need to call this even for non-local classes. */
29415 if (c)
29416 prune_unused_types_walk_local_classes (die);
29418 /* It's a type node --- don't mark it. */
29419 return;
29421 case DW_TAG_const_type:
29422 case DW_TAG_packed_type:
29423 case DW_TAG_pointer_type:
29424 case DW_TAG_reference_type:
29425 case DW_TAG_rvalue_reference_type:
29426 case DW_TAG_volatile_type:
29427 case DW_TAG_typedef:
29428 case DW_TAG_array_type:
29429 case DW_TAG_friend:
29430 case DW_TAG_enumeration_type:
29431 case DW_TAG_subroutine_type:
29432 case DW_TAG_string_type:
29433 case DW_TAG_set_type:
29434 case DW_TAG_subrange_type:
29435 case DW_TAG_ptr_to_member_type:
29436 case DW_TAG_file_type:
29437 /* Type nodes are useful only when other DIEs reference them --- don't
29438 mark them. */
29439 /* FALLTHROUGH */
29441 case DW_TAG_dwarf_procedure:
29442 /* Likewise for DWARF procedures. */
29444 if (die->die_perennial_p)
29445 break;
29447 return;
29449 case DW_TAG_variable:
29450 if (flag_debug_only_used_symbols)
29452 if (die->die_perennial_p)
29453 break;
29455 /* premark_used_variables marks external variables --- don't mark
29456 them here. But function-local externals are always considered
29457 used. */
29458 if (get_AT (die, DW_AT_external))
29460 for (c = die->die_parent; c; c = c->die_parent)
29461 if (c->die_tag == DW_TAG_subprogram)
29462 break;
29463 if (!c)
29464 return;
29467 /* FALLTHROUGH */
29469 default:
29470 /* Mark everything else. */
29471 break;
29474 if (die->die_mark == 0)
29476 die->die_mark = 1;
29478 /* Now, mark any dies referenced from here. */
29479 prune_unused_types_walk_attribs (die);
29482 die->die_mark = 2;
29484 /* Mark children. */
29485 FOR_EACH_CHILD (die, c, prune_unused_types_walk (c));
29488 /* Increment the string counts on strings referred to from DIE's
29489 attributes. */
29491 static void
29492 prune_unused_types_update_strings (dw_die_ref die)
29494 dw_attr_node *a;
29495 unsigned ix;
29497 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
29498 if (AT_class (a) == dw_val_class_str)
29500 struct indirect_string_node *s = a->dw_attr_val.v.val_str;
29501 s->refcount++;
29502 /* Avoid unnecessarily putting strings that are used less than
29503 twice in the hash table. */
29504 if (s->refcount
29505 == ((DEBUG_STR_SECTION_FLAGS & SECTION_MERGE) ? 1 : 2))
29507 indirect_string_node **slot
29508 = debug_str_hash->find_slot_with_hash (s->str,
29509 htab_hash_string (s->str),
29510 INSERT);
29511 gcc_assert (*slot == NULL);
29512 *slot = s;
29517 /* Mark DIE and its children as removed. */
29519 static void
29520 mark_removed (dw_die_ref die)
29522 dw_die_ref c;
29523 die->removed = true;
29524 FOR_EACH_CHILD (die, c, mark_removed (c));
29527 /* Remove from the tree DIE any dies that aren't marked. */
29529 static void
29530 prune_unused_types_prune (dw_die_ref die)
29532 dw_die_ref c;
29534 gcc_assert (die->die_mark);
29535 prune_unused_types_update_strings (die);
29537 if (! die->die_child)
29538 return;
29540 c = die->die_child;
29541 do {
29542 dw_die_ref prev = c, next;
29543 for (c = c->die_sib; ! c->die_mark; c = next)
29544 if (c == die->die_child)
29546 /* No marked children between 'prev' and the end of the list. */
29547 if (prev == c)
29548 /* No marked children at all. */
29549 die->die_child = NULL;
29550 else
29552 prev->die_sib = c->die_sib;
29553 die->die_child = prev;
29555 c->die_sib = NULL;
29556 mark_removed (c);
29557 return;
29559 else
29561 next = c->die_sib;
29562 c->die_sib = NULL;
29563 mark_removed (c);
29566 if (c != prev->die_sib)
29567 prev->die_sib = c;
29568 prune_unused_types_prune (c);
29569 } while (c != die->die_child);
29572 /* Remove dies representing declarations that we never use. */
29574 static void
29575 prune_unused_types (void)
29577 unsigned int i;
29578 limbo_die_node *node;
29579 comdat_type_node *ctnode;
29580 pubname_entry *pub;
29581 dw_die_ref base_type;
29583 #if ENABLE_ASSERT_CHECKING
29584 /* All the marks should already be clear. */
29585 verify_marks_clear (comp_unit_die ());
29586 for (node = limbo_die_list; node; node = node->next)
29587 verify_marks_clear (node->die);
29588 for (ctnode = comdat_type_list; ctnode; ctnode = ctnode->next)
29589 verify_marks_clear (ctnode->root_die);
29590 #endif /* ENABLE_ASSERT_CHECKING */
29592 /* Mark types that are used in global variables. */
29593 premark_types_used_by_global_vars ();
29595 /* Mark variables used in the symtab. */
29596 if (flag_debug_only_used_symbols)
29597 premark_used_variables ();
29599 /* Set the mark on nodes that are actually used. */
29600 prune_unused_types_walk (comp_unit_die ());
29601 for (node = limbo_die_list; node; node = node->next)
29602 prune_unused_types_walk (node->die);
29603 for (ctnode = comdat_type_list; ctnode; ctnode = ctnode->next)
29605 prune_unused_types_walk (ctnode->root_die);
29606 prune_unused_types_mark (ctnode->type_die, 1);
29609 /* Also set the mark on nodes referenced from the pubname_table. Enumerators
29610 are unusual in that they are pubnames that are the children of pubtypes.
29611 They should only be marked via their parent DW_TAG_enumeration_type die,
29612 not as roots in themselves. */
29613 FOR_EACH_VEC_ELT (*pubname_table, i, pub)
29614 if (pub->die->die_tag != DW_TAG_enumerator)
29615 prune_unused_types_mark (pub->die, 1);
29616 for (i = 0; base_types.iterate (i, &base_type); i++)
29617 prune_unused_types_mark (base_type, 1);
29619 /* For -fvar-tracking-assignments, also set the mark on nodes that could be
29620 referenced by DW_TAG_call_site DW_AT_call_origin (i.e. direct call
29621 callees). */
29622 cgraph_node *cnode;
29623 FOR_EACH_FUNCTION (cnode)
29624 if (cnode->referred_to_p (false))
29626 dw_die_ref die = lookup_decl_die (cnode->decl);
29627 if (die == NULL || die->die_mark)
29628 continue;
29629 for (cgraph_edge *e = cnode->callers; e; e = e->next_caller)
29630 if (e->caller != cnode
29631 && opt_for_fn (e->caller->decl, flag_var_tracking_assignments))
29633 prune_unused_types_mark (die, 1);
29634 break;
29638 if (debug_str_hash)
29639 debug_str_hash->empty ();
29640 if (skeleton_debug_str_hash)
29641 skeleton_debug_str_hash->empty ();
29642 prune_unused_types_prune (comp_unit_die ());
29643 for (limbo_die_node **pnode = &limbo_die_list; *pnode; )
29645 node = *pnode;
29646 if (!node->die->die_mark)
29647 *pnode = node->next;
29648 else
29650 prune_unused_types_prune (node->die);
29651 pnode = &node->next;
29654 for (ctnode = comdat_type_list; ctnode; ctnode = ctnode->next)
29655 prune_unused_types_prune (ctnode->root_die);
29657 /* Leave the marks clear. */
29658 prune_unmark_dies (comp_unit_die ());
29659 for (node = limbo_die_list; node; node = node->next)
29660 prune_unmark_dies (node->die);
29661 for (ctnode = comdat_type_list; ctnode; ctnode = ctnode->next)
29662 prune_unmark_dies (ctnode->root_die);
29665 /* Helpers to manipulate hash table of comdat type units. */
29667 struct comdat_type_hasher : nofree_ptr_hash <comdat_type_node>
29669 static inline hashval_t hash (const comdat_type_node *);
29670 static inline bool equal (const comdat_type_node *, const comdat_type_node *);
29673 inline hashval_t
29674 comdat_type_hasher::hash (const comdat_type_node *type_node)
29676 hashval_t h;
29677 memcpy (&h, type_node->signature, sizeof (h));
29678 return h;
29681 inline bool
29682 comdat_type_hasher::equal (const comdat_type_node *type_node_1,
29683 const comdat_type_node *type_node_2)
29685 return (! memcmp (type_node_1->signature, type_node_2->signature,
29686 DWARF_TYPE_SIGNATURE_SIZE));
29689 /* Move a DW_AT_{,MIPS_}linkage_name attribute just added to dw_die_ref
29690 to the location it would have been added, should we know its
29691 DECL_ASSEMBLER_NAME when we added other attributes. This will
29692 probably improve compactness of debug info, removing equivalent
29693 abbrevs, and hide any differences caused by deferring the
29694 computation of the assembler name, triggered by e.g. PCH. */
29696 static inline void
29697 move_linkage_attr (dw_die_ref die)
29699 unsigned ix = vec_safe_length (die->die_attr);
29700 dw_attr_node linkage = (*die->die_attr)[ix - 1];
29702 gcc_assert (linkage.dw_attr == DW_AT_linkage_name
29703 || linkage.dw_attr == DW_AT_MIPS_linkage_name);
29705 while (--ix > 0)
29707 dw_attr_node *prev = &(*die->die_attr)[ix - 1];
29709 if (prev->dw_attr == DW_AT_decl_line
29710 || prev->dw_attr == DW_AT_decl_column
29711 || prev->dw_attr == DW_AT_name)
29712 break;
29715 if (ix != vec_safe_length (die->die_attr) - 1)
29717 die->die_attr->pop ();
29718 die->die_attr->quick_insert (ix, linkage);
29722 /* Helper function for resolve_addr, mark DW_TAG_base_type nodes
29723 referenced from typed stack ops and count how often they are used. */
29725 static void
29726 mark_base_types (dw_loc_descr_ref loc)
29728 dw_die_ref base_type = NULL;
29730 for (; loc; loc = loc->dw_loc_next)
29732 switch (loc->dw_loc_opc)
29734 case DW_OP_regval_type:
29735 case DW_OP_deref_type:
29736 case DW_OP_GNU_regval_type:
29737 case DW_OP_GNU_deref_type:
29738 base_type = loc->dw_loc_oprnd2.v.val_die_ref.die;
29739 break;
29740 case DW_OP_convert:
29741 case DW_OP_reinterpret:
29742 case DW_OP_GNU_convert:
29743 case DW_OP_GNU_reinterpret:
29744 if (loc->dw_loc_oprnd1.val_class == dw_val_class_unsigned_const)
29745 continue;
29746 /* FALLTHRU */
29747 case DW_OP_const_type:
29748 case DW_OP_GNU_const_type:
29749 base_type = loc->dw_loc_oprnd1.v.val_die_ref.die;
29750 break;
29751 case DW_OP_entry_value:
29752 case DW_OP_GNU_entry_value:
29753 mark_base_types (loc->dw_loc_oprnd1.v.val_loc);
29754 continue;
29755 default:
29756 continue;
29758 gcc_assert (base_type->die_parent == comp_unit_die ());
29759 if (base_type->die_mark)
29760 base_type->die_mark++;
29761 else
29763 base_types.safe_push (base_type);
29764 base_type->die_mark = 1;
29769 /* Comparison function for sorting marked base types. */
29771 static int
29772 base_type_cmp (const void *x, const void *y)
29774 dw_die_ref dx = *(const dw_die_ref *) x;
29775 dw_die_ref dy = *(const dw_die_ref *) y;
29776 unsigned int byte_size1, byte_size2;
29777 unsigned int encoding1, encoding2;
29778 unsigned int align1, align2;
29779 if (dx->die_mark > dy->die_mark)
29780 return -1;
29781 if (dx->die_mark < dy->die_mark)
29782 return 1;
29783 byte_size1 = get_AT_unsigned (dx, DW_AT_byte_size);
29784 byte_size2 = get_AT_unsigned (dy, DW_AT_byte_size);
29785 if (byte_size1 < byte_size2)
29786 return 1;
29787 if (byte_size1 > byte_size2)
29788 return -1;
29789 encoding1 = get_AT_unsigned (dx, DW_AT_encoding);
29790 encoding2 = get_AT_unsigned (dy, DW_AT_encoding);
29791 if (encoding1 < encoding2)
29792 return 1;
29793 if (encoding1 > encoding2)
29794 return -1;
29795 align1 = get_AT_unsigned (dx, DW_AT_alignment);
29796 align2 = get_AT_unsigned (dy, DW_AT_alignment);
29797 if (align1 < align2)
29798 return 1;
29799 if (align1 > align2)
29800 return -1;
29801 return 0;
29804 /* Move base types marked by mark_base_types as early as possible
29805 in the CU, sorted by decreasing usage count both to make the
29806 uleb128 references as small as possible and to make sure they
29807 will have die_offset already computed by calc_die_sizes when
29808 sizes of typed stack loc ops is computed. */
29810 static void
29811 move_marked_base_types (void)
29813 unsigned int i;
29814 dw_die_ref base_type, die, c;
29816 if (base_types.is_empty ())
29817 return;
29819 /* Sort by decreasing usage count, they will be added again in that
29820 order later on. */
29821 base_types.qsort (base_type_cmp);
29822 die = comp_unit_die ();
29823 c = die->die_child;
29826 dw_die_ref prev = c;
29827 c = c->die_sib;
29828 while (c->die_mark)
29830 remove_child_with_prev (c, prev);
29831 /* As base types got marked, there must be at least
29832 one node other than DW_TAG_base_type. */
29833 gcc_assert (die->die_child != NULL);
29834 c = prev->die_sib;
29837 while (c != die->die_child);
29838 gcc_assert (die->die_child);
29839 c = die->die_child;
29840 for (i = 0; base_types.iterate (i, &base_type); i++)
29842 base_type->die_mark = 0;
29843 base_type->die_sib = c->die_sib;
29844 c->die_sib = base_type;
29845 c = base_type;
29849 /* Helper function for resolve_addr, attempt to resolve
29850 one CONST_STRING, return true if successful. Similarly verify that
29851 SYMBOL_REFs refer to variables emitted in the current CU. */
29853 static bool
29854 resolve_one_addr (rtx *addr)
29856 rtx rtl = *addr;
29858 if (GET_CODE (rtl) == CONST_STRING)
29860 size_t len = strlen (XSTR (rtl, 0)) + 1;
29861 tree t = build_string (len, XSTR (rtl, 0));
29862 tree tlen = size_int (len - 1);
29863 TREE_TYPE (t)
29864 = build_array_type (char_type_node, build_index_type (tlen));
29865 rtl = lookup_constant_def (t);
29866 if (!rtl || !MEM_P (rtl))
29867 return false;
29868 rtl = XEXP (rtl, 0);
29869 if (GET_CODE (rtl) == SYMBOL_REF
29870 && SYMBOL_REF_DECL (rtl)
29871 && !TREE_ASM_WRITTEN (SYMBOL_REF_DECL (rtl)))
29872 return false;
29873 vec_safe_push (used_rtx_array, rtl);
29874 *addr = rtl;
29875 return true;
29878 if (GET_CODE (rtl) == SYMBOL_REF
29879 && SYMBOL_REF_DECL (rtl))
29881 if (TREE_CONSTANT_POOL_ADDRESS_P (rtl))
29883 if (!TREE_ASM_WRITTEN (DECL_INITIAL (SYMBOL_REF_DECL (rtl))))
29884 return false;
29886 else if (!TREE_ASM_WRITTEN (SYMBOL_REF_DECL (rtl)))
29887 return false;
29890 if (GET_CODE (rtl) == CONST)
29892 subrtx_ptr_iterator::array_type array;
29893 FOR_EACH_SUBRTX_PTR (iter, array, &XEXP (rtl, 0), ALL)
29894 if (!resolve_one_addr (*iter))
29895 return false;
29898 return true;
29901 /* For STRING_CST, return SYMBOL_REF of its constant pool entry,
29902 if possible, and create DW_TAG_dwarf_procedure that can be referenced
29903 from DW_OP_implicit_pointer if the string hasn't been seen yet. */
29905 static rtx
29906 string_cst_pool_decl (tree t)
29908 rtx rtl = output_constant_def (t, 1);
29909 unsigned char *array;
29910 dw_loc_descr_ref l;
29911 tree decl;
29912 size_t len;
29913 dw_die_ref ref;
29915 if (!rtl || !MEM_P (rtl))
29916 return NULL_RTX;
29917 rtl = XEXP (rtl, 0);
29918 if (GET_CODE (rtl) != SYMBOL_REF
29919 || SYMBOL_REF_DECL (rtl) == NULL_TREE)
29920 return NULL_RTX;
29922 decl = SYMBOL_REF_DECL (rtl);
29923 if (!lookup_decl_die (decl))
29925 len = TREE_STRING_LENGTH (t);
29926 vec_safe_push (used_rtx_array, rtl);
29927 ref = new_die (DW_TAG_dwarf_procedure, comp_unit_die (), decl);
29928 array = ggc_vec_alloc<unsigned char> (len);
29929 memcpy (array, TREE_STRING_POINTER (t), len);
29930 l = new_loc_descr (DW_OP_implicit_value, len, 0);
29931 l->dw_loc_oprnd2.val_class = dw_val_class_vec;
29932 l->dw_loc_oprnd2.v.val_vec.length = len;
29933 l->dw_loc_oprnd2.v.val_vec.elt_size = 1;
29934 l->dw_loc_oprnd2.v.val_vec.array = array;
29935 add_AT_loc (ref, DW_AT_location, l);
29936 equate_decl_number_to_die (decl, ref);
29938 return rtl;
29941 /* Helper function of resolve_addr_in_expr. LOC is
29942 a DW_OP_addr followed by DW_OP_stack_value, either at the start
29943 of exprloc or after DW_OP_{,bit_}piece, and val_addr can't be
29944 resolved. Replace it (both DW_OP_addr and DW_OP_stack_value)
29945 with DW_OP_implicit_pointer if possible
29946 and return true, if unsuccessful, return false. */
29948 static bool
29949 optimize_one_addr_into_implicit_ptr (dw_loc_descr_ref loc)
29951 rtx rtl = loc->dw_loc_oprnd1.v.val_addr;
29952 HOST_WIDE_INT offset = 0;
29953 dw_die_ref ref = NULL;
29954 tree decl;
29956 if (GET_CODE (rtl) == CONST
29957 && GET_CODE (XEXP (rtl, 0)) == PLUS
29958 && CONST_INT_P (XEXP (XEXP (rtl, 0), 1)))
29960 offset = INTVAL (XEXP (XEXP (rtl, 0), 1));
29961 rtl = XEXP (XEXP (rtl, 0), 0);
29963 if (GET_CODE (rtl) == CONST_STRING)
29965 size_t len = strlen (XSTR (rtl, 0)) + 1;
29966 tree t = build_string (len, XSTR (rtl, 0));
29967 tree tlen = size_int (len - 1);
29969 TREE_TYPE (t)
29970 = build_array_type (char_type_node, build_index_type (tlen));
29971 rtl = string_cst_pool_decl (t);
29972 if (!rtl)
29973 return false;
29975 if (GET_CODE (rtl) == SYMBOL_REF && SYMBOL_REF_DECL (rtl))
29977 decl = SYMBOL_REF_DECL (rtl);
29978 if (VAR_P (decl) && !DECL_EXTERNAL (decl))
29980 ref = lookup_decl_die (decl);
29981 if (ref && (get_AT (ref, DW_AT_location)
29982 || get_AT (ref, DW_AT_const_value)))
29984 loc->dw_loc_opc = dwarf_OP (DW_OP_implicit_pointer);
29985 loc->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
29986 loc->dw_loc_oprnd1.val_entry = NULL;
29987 loc->dw_loc_oprnd1.v.val_die_ref.die = ref;
29988 loc->dw_loc_oprnd1.v.val_die_ref.external = 0;
29989 loc->dw_loc_next = loc->dw_loc_next->dw_loc_next;
29990 loc->dw_loc_oprnd2.v.val_int = offset;
29991 return true;
29995 return false;
29998 /* Helper function for resolve_addr, handle one location
29999 expression, return false if at least one CONST_STRING or SYMBOL_REF in
30000 the location list couldn't be resolved. */
30002 static bool
30003 resolve_addr_in_expr (dw_attr_node *a, dw_loc_descr_ref loc)
30005 dw_loc_descr_ref keep = NULL;
30006 for (dw_loc_descr_ref prev = NULL; loc; prev = loc, loc = loc->dw_loc_next)
30007 switch (loc->dw_loc_opc)
30009 case DW_OP_addr:
30010 if (!resolve_one_addr (&loc->dw_loc_oprnd1.v.val_addr))
30012 if ((prev == NULL
30013 || prev->dw_loc_opc == DW_OP_piece
30014 || prev->dw_loc_opc == DW_OP_bit_piece)
30015 && loc->dw_loc_next
30016 && loc->dw_loc_next->dw_loc_opc == DW_OP_stack_value
30017 && (!dwarf_strict || dwarf_version >= 5)
30018 && optimize_one_addr_into_implicit_ptr (loc))
30019 break;
30020 return false;
30022 break;
30023 case DW_OP_GNU_addr_index:
30024 case DW_OP_addrx:
30025 case DW_OP_GNU_const_index:
30026 case DW_OP_constx:
30027 if ((loc->dw_loc_opc == DW_OP_GNU_addr_index
30028 || loc->dw_loc_opc == DW_OP_addrx)
30029 || ((loc->dw_loc_opc == DW_OP_GNU_const_index
30030 || loc->dw_loc_opc == DW_OP_constx)
30031 && loc->dtprel))
30033 rtx rtl = loc->dw_loc_oprnd1.val_entry->addr.rtl;
30034 if (!resolve_one_addr (&rtl))
30035 return false;
30036 remove_addr_table_entry (loc->dw_loc_oprnd1.val_entry);
30037 loc->dw_loc_oprnd1.val_entry
30038 = add_addr_table_entry (rtl, ate_kind_rtx);
30040 break;
30041 case DW_OP_const4u:
30042 case DW_OP_const8u:
30043 if (loc->dtprel
30044 && !resolve_one_addr (&loc->dw_loc_oprnd1.v.val_addr))
30045 return false;
30046 break;
30047 case DW_OP_plus_uconst:
30048 if (size_of_loc_descr (loc)
30049 > size_of_int_loc_descriptor (loc->dw_loc_oprnd1.v.val_unsigned)
30051 && loc->dw_loc_oprnd1.v.val_unsigned > 0)
30053 dw_loc_descr_ref repl
30054 = int_loc_descriptor (loc->dw_loc_oprnd1.v.val_unsigned);
30055 add_loc_descr (&repl, new_loc_descr (DW_OP_plus, 0, 0));
30056 add_loc_descr (&repl, loc->dw_loc_next);
30057 *loc = *repl;
30059 break;
30060 case DW_OP_implicit_value:
30061 if (loc->dw_loc_oprnd2.val_class == dw_val_class_addr
30062 && !resolve_one_addr (&loc->dw_loc_oprnd2.v.val_addr))
30063 return false;
30064 break;
30065 case DW_OP_implicit_pointer:
30066 case DW_OP_GNU_implicit_pointer:
30067 case DW_OP_GNU_parameter_ref:
30068 case DW_OP_GNU_variable_value:
30069 if (loc->dw_loc_oprnd1.val_class == dw_val_class_decl_ref)
30071 dw_die_ref ref
30072 = lookup_decl_die (loc->dw_loc_oprnd1.v.val_decl_ref);
30073 if (ref == NULL)
30074 return false;
30075 loc->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
30076 loc->dw_loc_oprnd1.v.val_die_ref.die = ref;
30077 loc->dw_loc_oprnd1.v.val_die_ref.external = 0;
30079 if (loc->dw_loc_opc == DW_OP_GNU_variable_value)
30081 if (prev == NULL
30082 && loc->dw_loc_next == NULL
30083 && AT_class (a) == dw_val_class_loc)
30084 switch (a->dw_attr)
30086 /* Following attributes allow both exprloc and reference,
30087 so if the whole expression is DW_OP_GNU_variable_value
30088 alone we could transform it into reference. */
30089 case DW_AT_byte_size:
30090 case DW_AT_bit_size:
30091 case DW_AT_lower_bound:
30092 case DW_AT_upper_bound:
30093 case DW_AT_bit_stride:
30094 case DW_AT_count:
30095 case DW_AT_allocated:
30096 case DW_AT_associated:
30097 case DW_AT_byte_stride:
30098 a->dw_attr_val.val_class = dw_val_class_die_ref;
30099 a->dw_attr_val.val_entry = NULL;
30100 a->dw_attr_val.v.val_die_ref.die
30101 = loc->dw_loc_oprnd1.v.val_die_ref.die;
30102 a->dw_attr_val.v.val_die_ref.external = 0;
30103 return true;
30104 default:
30105 break;
30107 if (dwarf_strict)
30108 return false;
30110 break;
30111 case DW_OP_const_type:
30112 case DW_OP_regval_type:
30113 case DW_OP_deref_type:
30114 case DW_OP_convert:
30115 case DW_OP_reinterpret:
30116 case DW_OP_GNU_const_type:
30117 case DW_OP_GNU_regval_type:
30118 case DW_OP_GNU_deref_type:
30119 case DW_OP_GNU_convert:
30120 case DW_OP_GNU_reinterpret:
30121 while (loc->dw_loc_next
30122 && (loc->dw_loc_next->dw_loc_opc == DW_OP_convert
30123 || loc->dw_loc_next->dw_loc_opc == DW_OP_GNU_convert))
30125 dw_die_ref base1, base2;
30126 unsigned enc1, enc2, size1, size2;
30127 if (loc->dw_loc_opc == DW_OP_regval_type
30128 || loc->dw_loc_opc == DW_OP_deref_type
30129 || loc->dw_loc_opc == DW_OP_GNU_regval_type
30130 || loc->dw_loc_opc == DW_OP_GNU_deref_type)
30131 base1 = loc->dw_loc_oprnd2.v.val_die_ref.die;
30132 else if (loc->dw_loc_oprnd1.val_class
30133 == dw_val_class_unsigned_const)
30134 break;
30135 else
30136 base1 = loc->dw_loc_oprnd1.v.val_die_ref.die;
30137 if (loc->dw_loc_next->dw_loc_oprnd1.val_class
30138 == dw_val_class_unsigned_const)
30139 break;
30140 base2 = loc->dw_loc_next->dw_loc_oprnd1.v.val_die_ref.die;
30141 gcc_assert (base1->die_tag == DW_TAG_base_type
30142 && base2->die_tag == DW_TAG_base_type);
30143 enc1 = get_AT_unsigned (base1, DW_AT_encoding);
30144 enc2 = get_AT_unsigned (base2, DW_AT_encoding);
30145 size1 = get_AT_unsigned (base1, DW_AT_byte_size);
30146 size2 = get_AT_unsigned (base2, DW_AT_byte_size);
30147 if (size1 == size2
30148 && (((enc1 == DW_ATE_unsigned || enc1 == DW_ATE_signed)
30149 && (enc2 == DW_ATE_unsigned || enc2 == DW_ATE_signed)
30150 && loc != keep)
30151 || enc1 == enc2))
30153 /* Optimize away next DW_OP_convert after
30154 adjusting LOC's base type die reference. */
30155 if (loc->dw_loc_opc == DW_OP_regval_type
30156 || loc->dw_loc_opc == DW_OP_deref_type
30157 || loc->dw_loc_opc == DW_OP_GNU_regval_type
30158 || loc->dw_loc_opc == DW_OP_GNU_deref_type)
30159 loc->dw_loc_oprnd2.v.val_die_ref.die = base2;
30160 else
30161 loc->dw_loc_oprnd1.v.val_die_ref.die = base2;
30162 loc->dw_loc_next = loc->dw_loc_next->dw_loc_next;
30163 continue;
30165 /* Don't change integer DW_OP_convert after e.g. floating
30166 point typed stack entry. */
30167 else if (enc1 != DW_ATE_unsigned && enc1 != DW_ATE_signed)
30168 keep = loc->dw_loc_next;
30169 break;
30171 break;
30172 default:
30173 break;
30175 return true;
30178 /* Helper function of resolve_addr. DIE had DW_AT_location of
30179 DW_OP_addr alone, which referred to DECL in DW_OP_addr's operand
30180 and DW_OP_addr couldn't be resolved. resolve_addr has already
30181 removed the DW_AT_location attribute. This function attempts to
30182 add a new DW_AT_location attribute with DW_OP_implicit_pointer
30183 to it or DW_AT_const_value attribute, if possible. */
30185 static void
30186 optimize_location_into_implicit_ptr (dw_die_ref die, tree decl)
30188 if (!VAR_P (decl)
30189 || lookup_decl_die (decl) != die
30190 || DECL_EXTERNAL (decl)
30191 || !TREE_STATIC (decl)
30192 || DECL_INITIAL (decl) == NULL_TREE
30193 || DECL_P (DECL_INITIAL (decl))
30194 || get_AT (die, DW_AT_const_value))
30195 return;
30197 tree init = DECL_INITIAL (decl);
30198 HOST_WIDE_INT offset = 0;
30199 /* For variables that have been optimized away and thus
30200 don't have a memory location, see if we can emit
30201 DW_AT_const_value instead. */
30202 if (tree_add_const_value_attribute (die, init))
30203 return;
30204 if (dwarf_strict && dwarf_version < 5)
30205 return;
30206 /* If init is ADDR_EXPR or POINTER_PLUS_EXPR of ADDR_EXPR,
30207 and ADDR_EXPR refers to a decl that has DW_AT_location or
30208 DW_AT_const_value (but isn't addressable, otherwise
30209 resolving the original DW_OP_addr wouldn't fail), see if
30210 we can add DW_OP_implicit_pointer. */
30211 STRIP_NOPS (init);
30212 if (TREE_CODE (init) == POINTER_PLUS_EXPR
30213 && tree_fits_shwi_p (TREE_OPERAND (init, 1)))
30215 offset = tree_to_shwi (TREE_OPERAND (init, 1));
30216 init = TREE_OPERAND (init, 0);
30217 STRIP_NOPS (init);
30219 if (TREE_CODE (init) != ADDR_EXPR)
30220 return;
30221 if ((TREE_CODE (TREE_OPERAND (init, 0)) == STRING_CST
30222 && !TREE_ASM_WRITTEN (TREE_OPERAND (init, 0)))
30223 || (TREE_CODE (TREE_OPERAND (init, 0)) == VAR_DECL
30224 && !DECL_EXTERNAL (TREE_OPERAND (init, 0))
30225 && TREE_OPERAND (init, 0) != decl))
30227 dw_die_ref ref;
30228 dw_loc_descr_ref l;
30230 if (TREE_CODE (TREE_OPERAND (init, 0)) == STRING_CST)
30232 rtx rtl = string_cst_pool_decl (TREE_OPERAND (init, 0));
30233 if (!rtl)
30234 return;
30235 decl = SYMBOL_REF_DECL (rtl);
30237 else
30238 decl = TREE_OPERAND (init, 0);
30239 ref = lookup_decl_die (decl);
30240 if (ref == NULL
30241 || (!get_AT (ref, DW_AT_location)
30242 && !get_AT (ref, DW_AT_const_value)))
30243 return;
30244 l = new_loc_descr (dwarf_OP (DW_OP_implicit_pointer), 0, offset);
30245 l->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
30246 l->dw_loc_oprnd1.v.val_die_ref.die = ref;
30247 l->dw_loc_oprnd1.v.val_die_ref.external = 0;
30248 add_AT_loc (die, DW_AT_location, l);
30252 /* Return NULL if l is a DWARF expression, or first op that is not
30253 valid DWARF expression. */
30255 static dw_loc_descr_ref
30256 non_dwarf_expression (dw_loc_descr_ref l)
30258 while (l)
30260 if (l->dw_loc_opc >= DW_OP_reg0 && l->dw_loc_opc <= DW_OP_reg31)
30261 return l;
30262 switch (l->dw_loc_opc)
30264 case DW_OP_regx:
30265 case DW_OP_implicit_value:
30266 case DW_OP_stack_value:
30267 case DW_OP_implicit_pointer:
30268 case DW_OP_GNU_implicit_pointer:
30269 case DW_OP_GNU_parameter_ref:
30270 case DW_OP_piece:
30271 case DW_OP_bit_piece:
30272 return l;
30273 default:
30274 break;
30276 l = l->dw_loc_next;
30278 return NULL;
30281 /* Return adjusted copy of EXPR:
30282 If it is empty DWARF expression, return it.
30283 If it is valid non-empty DWARF expression,
30284 return copy of EXPR with DW_OP_deref appended to it.
30285 If it is DWARF expression followed by DW_OP_reg{N,x}, return
30286 copy of the DWARF expression with DW_OP_breg{N,x} <0> appended.
30287 If it is DWARF expression followed by DW_OP_stack_value, return
30288 copy of the DWARF expression without anything appended.
30289 Otherwise, return NULL. */
30291 static dw_loc_descr_ref
30292 copy_deref_exprloc (dw_loc_descr_ref expr)
30294 dw_loc_descr_ref tail = NULL;
30296 if (expr == NULL)
30297 return NULL;
30299 dw_loc_descr_ref l = non_dwarf_expression (expr);
30300 if (l && l->dw_loc_next)
30301 return NULL;
30303 if (l)
30305 if (l->dw_loc_opc >= DW_OP_reg0 && l->dw_loc_opc <= DW_OP_reg31)
30306 tail = new_loc_descr ((enum dwarf_location_atom)
30307 (DW_OP_breg0 + (l->dw_loc_opc - DW_OP_reg0)),
30308 0, 0);
30309 else
30310 switch (l->dw_loc_opc)
30312 case DW_OP_regx:
30313 tail = new_loc_descr (DW_OP_bregx,
30314 l->dw_loc_oprnd1.v.val_unsigned, 0);
30315 break;
30316 case DW_OP_stack_value:
30317 break;
30318 default:
30319 return NULL;
30322 else
30323 tail = new_loc_descr (DW_OP_deref, 0, 0);
30325 dw_loc_descr_ref ret = NULL, *p = &ret;
30326 while (expr != l)
30328 *p = new_loc_descr (expr->dw_loc_opc, 0, 0);
30329 (*p)->dw_loc_oprnd1 = expr->dw_loc_oprnd1;
30330 (*p)->dw_loc_oprnd2 = expr->dw_loc_oprnd2;
30331 p = &(*p)->dw_loc_next;
30332 expr = expr->dw_loc_next;
30334 *p = tail;
30335 return ret;
30338 /* For DW_AT_string_length attribute with DW_OP_GNU_variable_value
30339 reference to a variable or argument, adjust it if needed and return:
30340 -1 if the DW_AT_string_length attribute and DW_AT_{string_length_,}byte_size
30341 attribute if present should be removed
30342 0 keep the attribute perhaps with minor modifications, no need to rescan
30343 1 if the attribute has been successfully adjusted. */
30345 static int
30346 optimize_string_length (dw_attr_node *a)
30348 dw_loc_descr_ref l = AT_loc (a), lv;
30349 dw_die_ref die;
30350 if (l->dw_loc_oprnd1.val_class == dw_val_class_decl_ref)
30352 tree decl = l->dw_loc_oprnd1.v.val_decl_ref;
30353 die = lookup_decl_die (decl);
30354 if (die)
30356 l->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
30357 l->dw_loc_oprnd1.v.val_die_ref.die = die;
30358 l->dw_loc_oprnd1.v.val_die_ref.external = 0;
30360 else
30361 return -1;
30363 else
30364 die = l->dw_loc_oprnd1.v.val_die_ref.die;
30366 /* DWARF5 allows reference class, so we can then reference the DIE.
30367 Only do this for DW_OP_GNU_variable_value DW_OP_stack_value. */
30368 if (l->dw_loc_next != NULL && dwarf_version >= 5)
30370 a->dw_attr_val.val_class = dw_val_class_die_ref;
30371 a->dw_attr_val.val_entry = NULL;
30372 a->dw_attr_val.v.val_die_ref.die = die;
30373 a->dw_attr_val.v.val_die_ref.external = 0;
30374 return 0;
30377 dw_attr_node *av = get_AT (die, DW_AT_location);
30378 dw_loc_list_ref d;
30379 bool non_dwarf_expr = false;
30381 if (av == NULL)
30382 return dwarf_strict ? -1 : 0;
30383 switch (AT_class (av))
30385 case dw_val_class_loc_list:
30386 for (d = AT_loc_list (av); d != NULL; d = d->dw_loc_next)
30387 if (d->expr && non_dwarf_expression (d->expr))
30388 non_dwarf_expr = true;
30389 break;
30390 case dw_val_class_view_list:
30391 gcc_unreachable ();
30392 case dw_val_class_loc:
30393 lv = AT_loc (av);
30394 if (lv == NULL)
30395 return dwarf_strict ? -1 : 0;
30396 if (non_dwarf_expression (lv))
30397 non_dwarf_expr = true;
30398 break;
30399 default:
30400 return dwarf_strict ? -1 : 0;
30403 /* If it is safe to transform DW_OP_GNU_variable_value DW_OP_stack_value
30404 into DW_OP_call4 or DW_OP_GNU_variable_value into
30405 DW_OP_call4 DW_OP_deref, do so. */
30406 if (!non_dwarf_expr
30407 && (l->dw_loc_next != NULL || AT_class (av) == dw_val_class_loc))
30409 l->dw_loc_opc = DW_OP_call4;
30410 if (l->dw_loc_next)
30411 l->dw_loc_next = NULL;
30412 else
30413 l->dw_loc_next = new_loc_descr (DW_OP_deref, 0, 0);
30414 return 0;
30417 /* For DW_OP_GNU_variable_value DW_OP_stack_value, we can just
30418 copy over the DW_AT_location attribute from die to a. */
30419 if (l->dw_loc_next != NULL)
30421 a->dw_attr_val = av->dw_attr_val;
30422 return 1;
30425 dw_loc_list_ref list, *p;
30426 switch (AT_class (av))
30428 case dw_val_class_loc_list:
30429 p = &list;
30430 list = NULL;
30431 for (d = AT_loc_list (av); d != NULL; d = d->dw_loc_next)
30433 lv = copy_deref_exprloc (d->expr);
30434 if (lv)
30436 *p = new_loc_list (lv, d->begin, d->vbegin, d->end, d->vend, d->section);
30437 p = &(*p)->dw_loc_next;
30439 else if (!dwarf_strict && d->expr)
30440 return 0;
30442 if (list == NULL)
30443 return dwarf_strict ? -1 : 0;
30444 a->dw_attr_val.val_class = dw_val_class_loc_list;
30445 gen_llsym (list);
30446 *AT_loc_list_ptr (a) = list;
30447 return 1;
30448 case dw_val_class_loc:
30449 lv = copy_deref_exprloc (AT_loc (av));
30450 if (lv == NULL)
30451 return dwarf_strict ? -1 : 0;
30452 a->dw_attr_val.v.val_loc = lv;
30453 return 1;
30454 default:
30455 gcc_unreachable ();
30459 /* Resolve DW_OP_addr and DW_AT_const_value CONST_STRING arguments to
30460 an address in .rodata section if the string literal is emitted there,
30461 or remove the containing location list or replace DW_AT_const_value
30462 with DW_AT_location and empty location expression, if it isn't found
30463 in .rodata. Similarly for SYMBOL_REFs, keep only those that refer
30464 to something that has been emitted in the current CU. */
30466 static void
30467 resolve_addr (dw_die_ref die)
30469 dw_die_ref c;
30470 dw_attr_node *a;
30471 dw_loc_list_ref *curr, *start, loc;
30472 unsigned ix;
30473 bool remove_AT_byte_size = false;
30475 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
30476 switch (AT_class (a))
30478 case dw_val_class_loc_list:
30479 start = curr = AT_loc_list_ptr (a);
30480 loc = *curr;
30481 gcc_assert (loc);
30482 /* The same list can be referenced more than once. See if we have
30483 already recorded the result from a previous pass. */
30484 if (loc->replaced)
30485 *curr = loc->dw_loc_next;
30486 else if (!loc->resolved_addr)
30488 /* As things stand, we do not expect or allow one die to
30489 reference a suffix of another die's location list chain.
30490 References must be identical or completely separate.
30491 There is therefore no need to cache the result of this
30492 pass on any list other than the first; doing so
30493 would lead to unnecessary writes. */
30494 while (*curr)
30496 gcc_assert (!(*curr)->replaced && !(*curr)->resolved_addr);
30497 if (!resolve_addr_in_expr (a, (*curr)->expr))
30499 dw_loc_list_ref next = (*curr)->dw_loc_next;
30500 dw_loc_descr_ref l = (*curr)->expr;
30502 if (next && (*curr)->ll_symbol)
30504 gcc_assert (!next->ll_symbol);
30505 next->ll_symbol = (*curr)->ll_symbol;
30506 next->vl_symbol = (*curr)->vl_symbol;
30508 if (dwarf_split_debug_info)
30509 remove_loc_list_addr_table_entries (l);
30510 *curr = next;
30512 else
30514 mark_base_types ((*curr)->expr);
30515 curr = &(*curr)->dw_loc_next;
30518 if (loc == *start)
30519 loc->resolved_addr = 1;
30520 else
30522 loc->replaced = 1;
30523 loc->dw_loc_next = *start;
30526 if (!*start)
30528 remove_AT (die, a->dw_attr);
30529 ix--;
30531 break;
30532 case dw_val_class_view_list:
30534 gcc_checking_assert (a->dw_attr == DW_AT_GNU_locviews);
30535 gcc_checking_assert (dwarf2out_locviews_in_attribute ());
30536 dw_val_node *llnode
30537 = view_list_to_loc_list_val_node (&a->dw_attr_val);
30538 /* If we no longer have a loclist, or it no longer needs
30539 views, drop this attribute. */
30540 if (!llnode || !llnode->v.val_loc_list->vl_symbol)
30542 remove_AT (die, a->dw_attr);
30543 ix--;
30545 break;
30547 case dw_val_class_loc:
30549 dw_loc_descr_ref l = AT_loc (a);
30550 /* DW_OP_GNU_variable_value DW_OP_stack_value or
30551 DW_OP_GNU_variable_value in DW_AT_string_length can be converted
30552 into DW_OP_call4 or DW_OP_call4 DW_OP_deref, which is standard
30553 DWARF4 unlike DW_OP_GNU_variable_value. Or for DWARF5
30554 DW_OP_GNU_variable_value DW_OP_stack_value can be replaced
30555 with DW_FORM_ref referencing the same DIE as
30556 DW_OP_GNU_variable_value used to reference. */
30557 if (a->dw_attr == DW_AT_string_length
30558 && l
30559 && l->dw_loc_opc == DW_OP_GNU_variable_value
30560 && (l->dw_loc_next == NULL
30561 || (l->dw_loc_next->dw_loc_next == NULL
30562 && l->dw_loc_next->dw_loc_opc == DW_OP_stack_value)))
30564 switch (optimize_string_length (a))
30566 case -1:
30567 remove_AT (die, a->dw_attr);
30568 ix--;
30569 /* If we drop DW_AT_string_length, we need to drop also
30570 DW_AT_{string_length_,}byte_size. */
30571 remove_AT_byte_size = true;
30572 continue;
30573 default:
30574 break;
30575 case 1:
30576 /* Even if we keep the optimized DW_AT_string_length,
30577 it might have changed AT_class, so process it again. */
30578 ix--;
30579 continue;
30582 /* For -gdwarf-2 don't attempt to optimize
30583 DW_AT_data_member_location containing
30584 DW_OP_plus_uconst - older consumers might
30585 rely on it being that op instead of a more complex,
30586 but shorter, location description. */
30587 if ((dwarf_version > 2
30588 || a->dw_attr != DW_AT_data_member_location
30589 || l == NULL
30590 || l->dw_loc_opc != DW_OP_plus_uconst
30591 || l->dw_loc_next != NULL)
30592 && !resolve_addr_in_expr (a, l))
30594 if (dwarf_split_debug_info)
30595 remove_loc_list_addr_table_entries (l);
30596 if (l != NULL
30597 && l->dw_loc_next == NULL
30598 && l->dw_loc_opc == DW_OP_addr
30599 && GET_CODE (l->dw_loc_oprnd1.v.val_addr) == SYMBOL_REF
30600 && SYMBOL_REF_DECL (l->dw_loc_oprnd1.v.val_addr)
30601 && a->dw_attr == DW_AT_location)
30603 tree decl = SYMBOL_REF_DECL (l->dw_loc_oprnd1.v.val_addr);
30604 remove_AT (die, a->dw_attr);
30605 ix--;
30606 optimize_location_into_implicit_ptr (die, decl);
30607 break;
30609 if (a->dw_attr == DW_AT_string_length)
30610 /* If we drop DW_AT_string_length, we need to drop also
30611 DW_AT_{string_length_,}byte_size. */
30612 remove_AT_byte_size = true;
30613 remove_AT (die, a->dw_attr);
30614 ix--;
30616 else
30617 mark_base_types (l);
30619 break;
30620 case dw_val_class_addr:
30621 if (a->dw_attr == DW_AT_const_value
30622 && !resolve_one_addr (&a->dw_attr_val.v.val_addr))
30624 if (AT_index (a) != NOT_INDEXED)
30625 remove_addr_table_entry (a->dw_attr_val.val_entry);
30626 remove_AT (die, a->dw_attr);
30627 ix--;
30629 if ((die->die_tag == DW_TAG_call_site
30630 && a->dw_attr == DW_AT_call_origin)
30631 || (die->die_tag == DW_TAG_GNU_call_site
30632 && a->dw_attr == DW_AT_abstract_origin))
30634 tree tdecl = SYMBOL_REF_DECL (a->dw_attr_val.v.val_addr);
30635 dw_die_ref tdie = lookup_decl_die (tdecl);
30636 dw_die_ref cdie;
30637 if (tdie == NULL
30638 && DECL_EXTERNAL (tdecl)
30639 && DECL_ABSTRACT_ORIGIN (tdecl) == NULL_TREE
30640 && (cdie = lookup_context_die (DECL_CONTEXT (tdecl))))
30642 dw_die_ref pdie = cdie;
30643 /* Make sure we don't add these DIEs into type units.
30644 We could emit skeleton DIEs for context (namespaces,
30645 outer structs/classes) and a skeleton DIE for the
30646 innermost context with DW_AT_signature pointing to the
30647 type unit. See PR78835. */
30648 while (pdie && pdie->die_tag != DW_TAG_type_unit)
30649 pdie = pdie->die_parent;
30650 if (pdie == NULL)
30652 /* Creating a full DIE for tdecl is overly expensive and
30653 at this point even wrong when in the LTO phase
30654 as it can end up generating new type DIEs we didn't
30655 output and thus optimize_external_refs will crash. */
30656 tdie = new_die (DW_TAG_subprogram, cdie, NULL_TREE);
30657 add_AT_flag (tdie, DW_AT_external, 1);
30658 add_AT_flag (tdie, DW_AT_declaration, 1);
30659 add_linkage_attr (tdie, tdecl);
30660 add_name_and_src_coords_attributes (tdie, tdecl, true);
30661 equate_decl_number_to_die (tdecl, tdie);
30664 if (tdie)
30666 a->dw_attr_val.val_class = dw_val_class_die_ref;
30667 a->dw_attr_val.v.val_die_ref.die = tdie;
30668 a->dw_attr_val.v.val_die_ref.external = 0;
30670 else
30672 if (AT_index (a) != NOT_INDEXED)
30673 remove_addr_table_entry (a->dw_attr_val.val_entry);
30674 remove_AT (die, a->dw_attr);
30675 ix--;
30678 break;
30679 default:
30680 break;
30683 if (remove_AT_byte_size)
30684 remove_AT (die, dwarf_version >= 5
30685 ? DW_AT_string_length_byte_size
30686 : DW_AT_byte_size);
30688 FOR_EACH_CHILD (die, c, resolve_addr (c));
30691 /* Helper routines for optimize_location_lists.
30692 This pass tries to share identical local lists in .debug_loc
30693 section. */
30695 /* Iteratively hash operands of LOC opcode into HSTATE. */
30697 static void
30698 hash_loc_operands (dw_loc_descr_ref loc, inchash::hash &hstate)
30700 dw_val_ref val1 = &loc->dw_loc_oprnd1;
30701 dw_val_ref val2 = &loc->dw_loc_oprnd2;
30703 switch (loc->dw_loc_opc)
30705 case DW_OP_const4u:
30706 case DW_OP_const8u:
30707 if (loc->dtprel)
30708 goto hash_addr;
30709 /* FALLTHRU */
30710 case DW_OP_const1u:
30711 case DW_OP_const1s:
30712 case DW_OP_const2u:
30713 case DW_OP_const2s:
30714 case DW_OP_const4s:
30715 case DW_OP_const8s:
30716 case DW_OP_constu:
30717 case DW_OP_consts:
30718 case DW_OP_pick:
30719 case DW_OP_plus_uconst:
30720 case DW_OP_breg0:
30721 case DW_OP_breg1:
30722 case DW_OP_breg2:
30723 case DW_OP_breg3:
30724 case DW_OP_breg4:
30725 case DW_OP_breg5:
30726 case DW_OP_breg6:
30727 case DW_OP_breg7:
30728 case DW_OP_breg8:
30729 case DW_OP_breg9:
30730 case DW_OP_breg10:
30731 case DW_OP_breg11:
30732 case DW_OP_breg12:
30733 case DW_OP_breg13:
30734 case DW_OP_breg14:
30735 case DW_OP_breg15:
30736 case DW_OP_breg16:
30737 case DW_OP_breg17:
30738 case DW_OP_breg18:
30739 case DW_OP_breg19:
30740 case DW_OP_breg20:
30741 case DW_OP_breg21:
30742 case DW_OP_breg22:
30743 case DW_OP_breg23:
30744 case DW_OP_breg24:
30745 case DW_OP_breg25:
30746 case DW_OP_breg26:
30747 case DW_OP_breg27:
30748 case DW_OP_breg28:
30749 case DW_OP_breg29:
30750 case DW_OP_breg30:
30751 case DW_OP_breg31:
30752 case DW_OP_regx:
30753 case DW_OP_fbreg:
30754 case DW_OP_piece:
30755 case DW_OP_deref_size:
30756 case DW_OP_xderef_size:
30757 hstate.add_object (val1->v.val_int);
30758 break;
30759 case DW_OP_skip:
30760 case DW_OP_bra:
30762 int offset;
30764 gcc_assert (val1->val_class == dw_val_class_loc);
30765 offset = val1->v.val_loc->dw_loc_addr - (loc->dw_loc_addr + 3);
30766 hstate.add_object (offset);
30768 break;
30769 case DW_OP_implicit_value:
30770 hstate.add_object (val1->v.val_unsigned);
30771 switch (val2->val_class)
30773 case dw_val_class_const:
30774 hstate.add_object (val2->v.val_int);
30775 break;
30776 case dw_val_class_vec:
30778 unsigned int elt_size = val2->v.val_vec.elt_size;
30779 unsigned int len = val2->v.val_vec.length;
30781 hstate.add_int (elt_size);
30782 hstate.add_int (len);
30783 hstate.add (val2->v.val_vec.array, len * elt_size);
30785 break;
30786 case dw_val_class_const_double:
30787 hstate.add_object (val2->v.val_double.low);
30788 hstate.add_object (val2->v.val_double.high);
30789 break;
30790 case dw_val_class_wide_int:
30791 hstate.add (val2->v.val_wide->get_val (),
30792 get_full_len (*val2->v.val_wide)
30793 * HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR);
30794 break;
30795 case dw_val_class_addr:
30796 inchash::add_rtx (val2->v.val_addr, hstate);
30797 break;
30798 default:
30799 gcc_unreachable ();
30801 break;
30802 case DW_OP_bregx:
30803 case DW_OP_bit_piece:
30804 hstate.add_object (val1->v.val_int);
30805 hstate.add_object (val2->v.val_int);
30806 break;
30807 case DW_OP_addr:
30808 hash_addr:
30809 if (loc->dtprel)
30811 unsigned char dtprel = 0xd1;
30812 hstate.add_object (dtprel);
30814 inchash::add_rtx (val1->v.val_addr, hstate);
30815 break;
30816 case DW_OP_GNU_addr_index:
30817 case DW_OP_addrx:
30818 case DW_OP_GNU_const_index:
30819 case DW_OP_constx:
30821 if (loc->dtprel)
30823 unsigned char dtprel = 0xd1;
30824 hstate.add_object (dtprel);
30826 inchash::add_rtx (val1->val_entry->addr.rtl, hstate);
30828 break;
30829 case DW_OP_implicit_pointer:
30830 case DW_OP_GNU_implicit_pointer:
30831 hstate.add_int (val2->v.val_int);
30832 break;
30833 case DW_OP_entry_value:
30834 case DW_OP_GNU_entry_value:
30835 hstate.add_object (val1->v.val_loc);
30836 break;
30837 case DW_OP_regval_type:
30838 case DW_OP_deref_type:
30839 case DW_OP_GNU_regval_type:
30840 case DW_OP_GNU_deref_type:
30842 unsigned int byte_size
30843 = get_AT_unsigned (val2->v.val_die_ref.die, DW_AT_byte_size);
30844 unsigned int encoding
30845 = get_AT_unsigned (val2->v.val_die_ref.die, DW_AT_encoding);
30846 hstate.add_object (val1->v.val_int);
30847 hstate.add_object (byte_size);
30848 hstate.add_object (encoding);
30850 break;
30851 case DW_OP_convert:
30852 case DW_OP_reinterpret:
30853 case DW_OP_GNU_convert:
30854 case DW_OP_GNU_reinterpret:
30855 if (val1->val_class == dw_val_class_unsigned_const)
30857 hstate.add_object (val1->v.val_unsigned);
30858 break;
30860 /* FALLTHRU */
30861 case DW_OP_const_type:
30862 case DW_OP_GNU_const_type:
30864 unsigned int byte_size
30865 = get_AT_unsigned (val1->v.val_die_ref.die, DW_AT_byte_size);
30866 unsigned int encoding
30867 = get_AT_unsigned (val1->v.val_die_ref.die, DW_AT_encoding);
30868 hstate.add_object (byte_size);
30869 hstate.add_object (encoding);
30870 if (loc->dw_loc_opc != DW_OP_const_type
30871 && loc->dw_loc_opc != DW_OP_GNU_const_type)
30872 break;
30873 hstate.add_object (val2->val_class);
30874 switch (val2->val_class)
30876 case dw_val_class_const:
30877 hstate.add_object (val2->v.val_int);
30878 break;
30879 case dw_val_class_vec:
30881 unsigned int elt_size = val2->v.val_vec.elt_size;
30882 unsigned int len = val2->v.val_vec.length;
30884 hstate.add_object (elt_size);
30885 hstate.add_object (len);
30886 hstate.add (val2->v.val_vec.array, len * elt_size);
30888 break;
30889 case dw_val_class_const_double:
30890 hstate.add_object (val2->v.val_double.low);
30891 hstate.add_object (val2->v.val_double.high);
30892 break;
30893 case dw_val_class_wide_int:
30894 hstate.add (val2->v.val_wide->get_val (),
30895 get_full_len (*val2->v.val_wide)
30896 * HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR);
30897 break;
30898 default:
30899 gcc_unreachable ();
30902 break;
30904 default:
30905 /* Other codes have no operands. */
30906 break;
30910 /* Iteratively hash the whole DWARF location expression LOC into HSTATE. */
30912 static inline void
30913 hash_locs (dw_loc_descr_ref loc, inchash::hash &hstate)
30915 dw_loc_descr_ref l;
30916 bool sizes_computed = false;
30917 /* Compute sizes, so that DW_OP_skip/DW_OP_bra can be checksummed. */
30918 size_of_locs (loc);
30920 for (l = loc; l != NULL; l = l->dw_loc_next)
30922 enum dwarf_location_atom opc = l->dw_loc_opc;
30923 hstate.add_object (opc);
30924 if ((opc == DW_OP_skip || opc == DW_OP_bra) && !sizes_computed)
30926 size_of_locs (loc);
30927 sizes_computed = true;
30929 hash_loc_operands (l, hstate);
30933 /* Compute hash of the whole location list LIST_HEAD. */
30935 static inline void
30936 hash_loc_list (dw_loc_list_ref list_head)
30938 dw_loc_list_ref curr = list_head;
30939 inchash::hash hstate;
30941 for (curr = list_head; curr != NULL; curr = curr->dw_loc_next)
30943 hstate.add (curr->begin, strlen (curr->begin) + 1);
30944 hstate.add (curr->end, strlen (curr->end) + 1);
30945 hstate.add_object (curr->vbegin);
30946 hstate.add_object (curr->vend);
30947 if (curr->section)
30948 hstate.add (curr->section, strlen (curr->section) + 1);
30949 hash_locs (curr->expr, hstate);
30951 list_head->hash = hstate.end ();
30954 /* Return true if X and Y opcodes have the same operands. */
30956 static inline bool
30957 compare_loc_operands (dw_loc_descr_ref x, dw_loc_descr_ref y)
30959 dw_val_ref valx1 = &x->dw_loc_oprnd1;
30960 dw_val_ref valx2 = &x->dw_loc_oprnd2;
30961 dw_val_ref valy1 = &y->dw_loc_oprnd1;
30962 dw_val_ref valy2 = &y->dw_loc_oprnd2;
30964 switch (x->dw_loc_opc)
30966 case DW_OP_const4u:
30967 case DW_OP_const8u:
30968 if (x->dtprel)
30969 goto hash_addr;
30970 /* FALLTHRU */
30971 case DW_OP_const1u:
30972 case DW_OP_const1s:
30973 case DW_OP_const2u:
30974 case DW_OP_const2s:
30975 case DW_OP_const4s:
30976 case DW_OP_const8s:
30977 case DW_OP_constu:
30978 case DW_OP_consts:
30979 case DW_OP_pick:
30980 case DW_OP_plus_uconst:
30981 case DW_OP_breg0:
30982 case DW_OP_breg1:
30983 case DW_OP_breg2:
30984 case DW_OP_breg3:
30985 case DW_OP_breg4:
30986 case DW_OP_breg5:
30987 case DW_OP_breg6:
30988 case DW_OP_breg7:
30989 case DW_OP_breg8:
30990 case DW_OP_breg9:
30991 case DW_OP_breg10:
30992 case DW_OP_breg11:
30993 case DW_OP_breg12:
30994 case DW_OP_breg13:
30995 case DW_OP_breg14:
30996 case DW_OP_breg15:
30997 case DW_OP_breg16:
30998 case DW_OP_breg17:
30999 case DW_OP_breg18:
31000 case DW_OP_breg19:
31001 case DW_OP_breg20:
31002 case DW_OP_breg21:
31003 case DW_OP_breg22:
31004 case DW_OP_breg23:
31005 case DW_OP_breg24:
31006 case DW_OP_breg25:
31007 case DW_OP_breg26:
31008 case DW_OP_breg27:
31009 case DW_OP_breg28:
31010 case DW_OP_breg29:
31011 case DW_OP_breg30:
31012 case DW_OP_breg31:
31013 case DW_OP_regx:
31014 case DW_OP_fbreg:
31015 case DW_OP_piece:
31016 case DW_OP_deref_size:
31017 case DW_OP_xderef_size:
31018 return valx1->v.val_int == valy1->v.val_int;
31019 case DW_OP_skip:
31020 case DW_OP_bra:
31021 /* If splitting debug info, the use of DW_OP_GNU_addr_index
31022 can cause irrelevant differences in dw_loc_addr. */
31023 gcc_assert (valx1->val_class == dw_val_class_loc
31024 && valy1->val_class == dw_val_class_loc
31025 && (dwarf_split_debug_info
31026 || x->dw_loc_addr == y->dw_loc_addr));
31027 return valx1->v.val_loc->dw_loc_addr == valy1->v.val_loc->dw_loc_addr;
31028 case DW_OP_implicit_value:
31029 if (valx1->v.val_unsigned != valy1->v.val_unsigned
31030 || valx2->val_class != valy2->val_class)
31031 return false;
31032 switch (valx2->val_class)
31034 case dw_val_class_const:
31035 return valx2->v.val_int == valy2->v.val_int;
31036 case dw_val_class_vec:
31037 return valx2->v.val_vec.elt_size == valy2->v.val_vec.elt_size
31038 && valx2->v.val_vec.length == valy2->v.val_vec.length
31039 && memcmp (valx2->v.val_vec.array, valy2->v.val_vec.array,
31040 valx2->v.val_vec.elt_size
31041 * valx2->v.val_vec.length) == 0;
31042 case dw_val_class_const_double:
31043 return valx2->v.val_double.low == valy2->v.val_double.low
31044 && valx2->v.val_double.high == valy2->v.val_double.high;
31045 case dw_val_class_wide_int:
31046 return *valx2->v.val_wide == *valy2->v.val_wide;
31047 case dw_val_class_addr:
31048 return rtx_equal_p (valx2->v.val_addr, valy2->v.val_addr);
31049 default:
31050 gcc_unreachable ();
31052 case DW_OP_bregx:
31053 case DW_OP_bit_piece:
31054 return valx1->v.val_int == valy1->v.val_int
31055 && valx2->v.val_int == valy2->v.val_int;
31056 case DW_OP_addr:
31057 hash_addr:
31058 return rtx_equal_p (valx1->v.val_addr, valy1->v.val_addr);
31059 case DW_OP_GNU_addr_index:
31060 case DW_OP_addrx:
31061 case DW_OP_GNU_const_index:
31062 case DW_OP_constx:
31064 rtx ax1 = valx1->val_entry->addr.rtl;
31065 rtx ay1 = valy1->val_entry->addr.rtl;
31066 return rtx_equal_p (ax1, ay1);
31068 case DW_OP_implicit_pointer:
31069 case DW_OP_GNU_implicit_pointer:
31070 return valx1->val_class == dw_val_class_die_ref
31071 && valx1->val_class == valy1->val_class
31072 && valx1->v.val_die_ref.die == valy1->v.val_die_ref.die
31073 && valx2->v.val_int == valy2->v.val_int;
31074 case DW_OP_entry_value:
31075 case DW_OP_GNU_entry_value:
31076 return compare_loc_operands (valx1->v.val_loc, valy1->v.val_loc);
31077 case DW_OP_const_type:
31078 case DW_OP_GNU_const_type:
31079 if (valx1->v.val_die_ref.die != valy1->v.val_die_ref.die
31080 || valx2->val_class != valy2->val_class)
31081 return false;
31082 switch (valx2->val_class)
31084 case dw_val_class_const:
31085 return valx2->v.val_int == valy2->v.val_int;
31086 case dw_val_class_vec:
31087 return valx2->v.val_vec.elt_size == valy2->v.val_vec.elt_size
31088 && valx2->v.val_vec.length == valy2->v.val_vec.length
31089 && memcmp (valx2->v.val_vec.array, valy2->v.val_vec.array,
31090 valx2->v.val_vec.elt_size
31091 * valx2->v.val_vec.length) == 0;
31092 case dw_val_class_const_double:
31093 return valx2->v.val_double.low == valy2->v.val_double.low
31094 && valx2->v.val_double.high == valy2->v.val_double.high;
31095 case dw_val_class_wide_int:
31096 return *valx2->v.val_wide == *valy2->v.val_wide;
31097 default:
31098 gcc_unreachable ();
31100 case DW_OP_regval_type:
31101 case DW_OP_deref_type:
31102 case DW_OP_GNU_regval_type:
31103 case DW_OP_GNU_deref_type:
31104 return valx1->v.val_int == valy1->v.val_int
31105 && valx2->v.val_die_ref.die == valy2->v.val_die_ref.die;
31106 case DW_OP_convert:
31107 case DW_OP_reinterpret:
31108 case DW_OP_GNU_convert:
31109 case DW_OP_GNU_reinterpret:
31110 if (valx1->val_class != valy1->val_class)
31111 return false;
31112 if (valx1->val_class == dw_val_class_unsigned_const)
31113 return valx1->v.val_unsigned == valy1->v.val_unsigned;
31114 return valx1->v.val_die_ref.die == valy1->v.val_die_ref.die;
31115 case DW_OP_GNU_parameter_ref:
31116 return valx1->val_class == dw_val_class_die_ref
31117 && valx1->val_class == valy1->val_class
31118 && valx1->v.val_die_ref.die == valy1->v.val_die_ref.die;
31119 default:
31120 /* Other codes have no operands. */
31121 return true;
31125 /* Return true if DWARF location expressions X and Y are the same. */
31127 static inline bool
31128 compare_locs (dw_loc_descr_ref x, dw_loc_descr_ref y)
31130 for (; x != NULL && y != NULL; x = x->dw_loc_next, y = y->dw_loc_next)
31131 if (x->dw_loc_opc != y->dw_loc_opc
31132 || x->dtprel != y->dtprel
31133 || !compare_loc_operands (x, y))
31134 break;
31135 return x == NULL && y == NULL;
31138 /* Hashtable helpers. */
31140 struct loc_list_hasher : nofree_ptr_hash <dw_loc_list_struct>
31142 static inline hashval_t hash (const dw_loc_list_struct *);
31143 static inline bool equal (const dw_loc_list_struct *,
31144 const dw_loc_list_struct *);
31147 /* Return precomputed hash of location list X. */
31149 inline hashval_t
31150 loc_list_hasher::hash (const dw_loc_list_struct *x)
31152 return x->hash;
31155 /* Return true if location lists A and B are the same. */
31157 inline bool
31158 loc_list_hasher::equal (const dw_loc_list_struct *a,
31159 const dw_loc_list_struct *b)
31161 if (a == b)
31162 return 1;
31163 if (a->hash != b->hash)
31164 return 0;
31165 for (; a != NULL && b != NULL; a = a->dw_loc_next, b = b->dw_loc_next)
31166 if (strcmp (a->begin, b->begin) != 0
31167 || strcmp (a->end, b->end) != 0
31168 || (a->section == NULL) != (b->section == NULL)
31169 || (a->section && strcmp (a->section, b->section) != 0)
31170 || a->vbegin != b->vbegin || a->vend != b->vend
31171 || !compare_locs (a->expr, b->expr))
31172 break;
31173 return a == NULL && b == NULL;
31176 typedef hash_table<loc_list_hasher> loc_list_hash_type;
31179 /* Recursively optimize location lists referenced from DIE
31180 children and share them whenever possible. */
31182 static void
31183 optimize_location_lists_1 (dw_die_ref die, loc_list_hash_type *htab)
31185 dw_die_ref c;
31186 dw_attr_node *a;
31187 unsigned ix;
31188 dw_loc_list_struct **slot;
31189 bool drop_locviews = false;
31190 bool has_locviews = false;
31192 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
31193 if (AT_class (a) == dw_val_class_loc_list)
31195 dw_loc_list_ref list = AT_loc_list (a);
31196 /* TODO: perform some optimizations here, before hashing
31197 it and storing into the hash table. */
31198 hash_loc_list (list);
31199 slot = htab->find_slot_with_hash (list, list->hash, INSERT);
31200 if (*slot == NULL)
31202 *slot = list;
31203 if (loc_list_has_views (list))
31204 gcc_assert (list->vl_symbol);
31205 else if (list->vl_symbol)
31207 drop_locviews = true;
31208 list->vl_symbol = NULL;
31211 else
31213 if (list->vl_symbol && !(*slot)->vl_symbol)
31214 drop_locviews = true;
31215 a->dw_attr_val.v.val_loc_list = *slot;
31218 else if (AT_class (a) == dw_val_class_view_list)
31220 gcc_checking_assert (a->dw_attr == DW_AT_GNU_locviews);
31221 has_locviews = true;
31225 if (drop_locviews && has_locviews)
31226 remove_AT (die, DW_AT_GNU_locviews);
31228 FOR_EACH_CHILD (die, c, optimize_location_lists_1 (c, htab));
31232 /* Recursively assign each location list a unique index into the debug_addr
31233 section. */
31235 static void
31236 index_location_lists (dw_die_ref die)
31238 dw_die_ref c;
31239 dw_attr_node *a;
31240 unsigned ix;
31242 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
31243 if (AT_class (a) == dw_val_class_loc_list)
31245 dw_loc_list_ref list = AT_loc_list (a);
31246 dw_loc_list_ref curr;
31247 for (curr = list; curr != NULL; curr = curr->dw_loc_next)
31249 /* Don't index an entry that has already been indexed
31250 or won't be output. Make sure skip_loc_list_entry doesn't
31251 call size_of_locs, because that might cause circular dependency,
31252 index_location_lists requiring address table indexes to be
31253 computed, but adding new indexes through add_addr_table_entry
31254 and address table index computation requiring no new additions
31255 to the hash table. In the rare case of DWARF[234] >= 64KB
31256 location expression, we'll just waste unused address table entry
31257 for it. */
31258 if (curr->begin_entry != NULL
31259 || skip_loc_list_entry (curr))
31260 continue;
31262 curr->begin_entry
31263 = add_addr_table_entry (xstrdup (curr->begin), ate_kind_label);
31267 FOR_EACH_CHILD (die, c, index_location_lists (c));
31270 /* Optimize location lists referenced from DIE
31271 children and share them whenever possible. */
31273 static void
31274 optimize_location_lists (dw_die_ref die)
31276 loc_list_hash_type htab (500);
31277 optimize_location_lists_1 (die, &htab);
31280 /* Traverse the limbo die list, and add parent/child links. The only
31281 dies without parents that should be here are concrete instances of
31282 inline functions, and the comp_unit_die. We can ignore the comp_unit_die.
31283 For concrete instances, we can get the parent die from the abstract
31284 instance. */
31286 static void
31287 flush_limbo_die_list (void)
31289 limbo_die_node *node;
31291 /* get_context_die calls force_decl_die, which can put new DIEs on the
31292 limbo list in LTO mode when nested functions are put in a different
31293 partition than that of their parent function. */
31294 while ((node = limbo_die_list))
31296 dw_die_ref die = node->die;
31297 limbo_die_list = node->next;
31299 if (die->die_parent == NULL)
31301 dw_die_ref origin = get_AT_ref (die, DW_AT_abstract_origin);
31303 if (origin && origin->die_parent)
31304 add_child_die (origin->die_parent, die);
31305 else if (is_cu_die (die))
31307 else if (seen_error ())
31308 /* It's OK to be confused by errors in the input. */
31309 add_child_die (comp_unit_die (), die);
31310 else
31312 /* In certain situations, the lexical block containing a
31313 nested function can be optimized away, which results
31314 in the nested function die being orphaned. Likewise
31315 with the return type of that nested function. Force
31316 this to be a child of the containing function.
31318 It may happen that even the containing function got fully
31319 inlined and optimized out. In that case we are lost and
31320 assign the empty child. This should not be big issue as
31321 the function is likely unreachable too. */
31322 gcc_assert (node->created_for);
31324 if (DECL_P (node->created_for))
31325 origin = get_context_die (DECL_CONTEXT (node->created_for));
31326 else if (TYPE_P (node->created_for))
31327 origin = scope_die_for (node->created_for, comp_unit_die ());
31328 else
31329 origin = comp_unit_die ();
31331 add_child_die (origin, die);
31337 /* Reset DIEs so we can output them again. */
31339 static void
31340 reset_dies (dw_die_ref die)
31342 dw_die_ref c;
31344 /* Remove stuff we re-generate. */
31345 die->die_mark = 0;
31346 die->die_offset = 0;
31347 die->die_abbrev = 0;
31348 remove_AT (die, DW_AT_sibling);
31350 FOR_EACH_CHILD (die, c, reset_dies (c));
31353 /* Output stuff that dwarf requires at the end of every file,
31354 and generate the DWARF-2 debugging info. */
31356 static void
31357 dwarf2out_finish (const char *filename)
31359 comdat_type_node *ctnode;
31360 dw_die_ref main_comp_unit_die;
31361 unsigned char checksum[16];
31362 char dl_section_ref[MAX_ARTIFICIAL_LABEL_BYTES];
31364 /* Flush out any latecomers to the limbo party. */
31365 flush_limbo_die_list ();
31367 if (inline_entry_data_table)
31368 gcc_assert (inline_entry_data_table->is_empty ());
31370 if (flag_checking)
31372 verify_die (comp_unit_die ());
31373 for (limbo_die_node *node = cu_die_list; node; node = node->next)
31374 verify_die (node->die);
31377 /* We shouldn't have any symbols with delayed asm names for
31378 DIEs generated after early finish. */
31379 gcc_assert (deferred_asm_name == NULL);
31381 gen_remaining_tmpl_value_param_die_attribute ();
31383 if (flag_generate_lto || flag_generate_offload)
31385 gcc_assert (flag_fat_lto_objects || flag_generate_offload);
31387 /* Prune stuff so that dwarf2out_finish runs successfully
31388 for the fat part of the object. */
31389 reset_dies (comp_unit_die ());
31390 for (limbo_die_node *node = cu_die_list; node; node = node->next)
31391 reset_dies (node->die);
31393 hash_table<comdat_type_hasher> comdat_type_table (100);
31394 for (ctnode = comdat_type_list; ctnode != NULL; ctnode = ctnode->next)
31396 comdat_type_node **slot
31397 = comdat_type_table.find_slot (ctnode, INSERT);
31399 /* Don't reset types twice. */
31400 if (*slot != HTAB_EMPTY_ENTRY)
31401 continue;
31403 /* Remove the pointer to the line table. */
31404 remove_AT (ctnode->root_die, DW_AT_stmt_list);
31406 if (debug_info_level >= DINFO_LEVEL_TERSE)
31407 reset_dies (ctnode->root_die);
31409 *slot = ctnode;
31412 /* Reset die CU symbol so we don't output it twice. */
31413 comp_unit_die ()->die_id.die_symbol = NULL;
31415 /* Remove DW_AT_macro and DW_AT_stmt_list from the early output. */
31416 remove_AT (comp_unit_die (), DW_AT_stmt_list);
31417 if (have_macinfo)
31418 remove_AT (comp_unit_die (), DEBUG_MACRO_ATTRIBUTE);
31420 /* Remove indirect string decisions. */
31421 debug_str_hash->traverse<void *, reset_indirect_string> (NULL);
31422 if (debug_line_str_hash)
31424 debug_line_str_hash->traverse<void *, reset_indirect_string> (NULL);
31425 debug_line_str_hash = NULL;
31429 #if ENABLE_ASSERT_CHECKING
31431 dw_die_ref die = comp_unit_die (), c;
31432 FOR_EACH_CHILD (die, c, gcc_assert (! c->die_mark));
31434 #endif
31435 for (ctnode = comdat_type_list; ctnode != NULL; ctnode = ctnode->next)
31436 resolve_addr (ctnode->root_die);
31437 resolve_addr (comp_unit_die ());
31438 move_marked_base_types ();
31440 if (dump_file)
31442 fprintf (dump_file, "DWARF for %s\n", filename);
31443 print_die (comp_unit_die (), dump_file);
31446 /* Initialize sections and labels used for actual assembler output. */
31447 unsigned generation = init_sections_and_labels (false);
31449 /* Traverse the DIE's and add sibling attributes to those DIE's that
31450 have children. */
31451 add_sibling_attributes (comp_unit_die ());
31452 limbo_die_node *node;
31453 for (node = cu_die_list; node; node = node->next)
31454 add_sibling_attributes (node->die);
31455 for (ctnode = comdat_type_list; ctnode != NULL; ctnode = ctnode->next)
31456 add_sibling_attributes (ctnode->root_die);
31458 /* When splitting DWARF info, we put some attributes in the
31459 skeleton compile_unit DIE that remains in the .o, while
31460 most attributes go in the DWO compile_unit_die. */
31461 if (dwarf_split_debug_info)
31463 limbo_die_node *cu;
31464 main_comp_unit_die = gen_compile_unit_die (NULL);
31465 if (dwarf_version >= 5)
31466 main_comp_unit_die->die_tag = DW_TAG_skeleton_unit;
31467 cu = limbo_die_list;
31468 gcc_assert (cu->die == main_comp_unit_die);
31469 limbo_die_list = limbo_die_list->next;
31470 cu->next = cu_die_list;
31471 cu_die_list = cu;
31473 else
31474 main_comp_unit_die = comp_unit_die ();
31476 /* Output a terminator label for the .text section. */
31477 switch_to_section (text_section);
31478 targetm.asm_out.internal_label (asm_out_file, TEXT_END_LABEL, 0);
31479 if (cold_text_section)
31481 switch_to_section (cold_text_section);
31482 targetm.asm_out.internal_label (asm_out_file, COLD_END_LABEL, 0);
31485 /* We can only use the low/high_pc attributes if all of the code was
31486 in .text. */
31487 if (!have_multiple_function_sections
31488 || (dwarf_version < 3 && dwarf_strict))
31490 /* Don't add if the CU has no associated code. */
31491 if (text_section_used)
31492 add_AT_low_high_pc (main_comp_unit_die, text_section_label,
31493 text_end_label, true);
31495 else
31497 unsigned fde_idx;
31498 dw_fde_ref fde;
31499 bool range_list_added = false;
31501 if (text_section_used)
31502 add_ranges_by_labels (main_comp_unit_die, text_section_label,
31503 text_end_label, &range_list_added, true);
31504 if (cold_text_section_used)
31505 add_ranges_by_labels (main_comp_unit_die, cold_text_section_label,
31506 cold_end_label, &range_list_added, true);
31508 FOR_EACH_VEC_ELT (*fde_vec, fde_idx, fde)
31510 if (DECL_IGNORED_P (fde->decl))
31511 continue;
31512 if (!fde->in_std_section)
31513 add_ranges_by_labels (main_comp_unit_die, fde->dw_fde_begin,
31514 fde->dw_fde_end, &range_list_added,
31515 true);
31516 if (fde->dw_fde_second_begin && !fde->second_in_std_section)
31517 add_ranges_by_labels (main_comp_unit_die, fde->dw_fde_second_begin,
31518 fde->dw_fde_second_end, &range_list_added,
31519 true);
31522 if (range_list_added)
31524 /* We need to give .debug_loc and .debug_ranges an appropriate
31525 "base address". Use zero so that these addresses become
31526 absolute. Historically, we've emitted the unexpected
31527 DW_AT_entry_pc instead of DW_AT_low_pc for this purpose.
31528 Emit both to give time for other tools to adapt. */
31529 add_AT_addr (main_comp_unit_die, DW_AT_low_pc, const0_rtx, true);
31530 if (! dwarf_strict && dwarf_version < 4)
31531 add_AT_addr (main_comp_unit_die, DW_AT_entry_pc, const0_rtx, true);
31533 add_ranges (NULL);
31537 /* AIX Assembler inserts the length, so adjust the reference to match the
31538 offset expected by debuggers. */
31539 strcpy (dl_section_ref, debug_line_section_label);
31540 if (XCOFF_DEBUGGING_INFO)
31541 strcat (dl_section_ref, DWARF_INITIAL_LENGTH_SIZE_STR);
31543 if (debug_info_level >= DINFO_LEVEL_TERSE)
31544 add_AT_lineptr (main_comp_unit_die, DW_AT_stmt_list,
31545 dl_section_ref);
31547 if (have_macinfo)
31548 add_AT_macptr (comp_unit_die (), DEBUG_MACRO_ATTRIBUTE,
31549 macinfo_section_label);
31551 if (dwarf_split_debug_info)
31553 if (have_location_lists)
31555 /* Since we generate the loclists in the split DWARF .dwo
31556 file itself, we don't need to generate a loclists_base
31557 attribute for the split compile unit DIE. That attribute
31558 (and using relocatable sec_offset FORMs) isn't allowed
31559 for a split compile unit. Only if the .debug_loclists
31560 section was in the main file, would we need to generate a
31561 loclists_base attribute here (for the full or skeleton
31562 unit DIE). */
31564 /* optimize_location_lists calculates the size of the lists,
31565 so index them first, and assign indices to the entries.
31566 Although optimize_location_lists will remove entries from
31567 the table, it only does so for duplicates, and therefore
31568 only reduces ref_counts to 1. */
31569 index_location_lists (comp_unit_die ());
31572 if (addr_index_table != NULL)
31574 unsigned int index = 0;
31575 addr_index_table
31576 ->traverse_noresize<unsigned int *, index_addr_table_entry>
31577 (&index);
31581 loc_list_idx = 0;
31582 if (have_location_lists)
31584 optimize_location_lists (comp_unit_die ());
31585 /* And finally assign indexes to the entries for -gsplit-dwarf. */
31586 if (dwarf_version >= 5 && dwarf_split_debug_info)
31587 assign_location_list_indexes (comp_unit_die ());
31590 save_macinfo_strings ();
31592 if (dwarf_split_debug_info)
31594 unsigned int index = 0;
31596 /* Add attributes common to skeleton compile_units and
31597 type_units. Because these attributes include strings, it
31598 must be done before freezing the string table. Top-level
31599 skeleton die attrs are added when the skeleton type unit is
31600 created, so ensure it is created by this point. */
31601 add_top_level_skeleton_die_attrs (main_comp_unit_die);
31602 debug_str_hash->traverse_noresize<unsigned int *, index_string> (&index);
31605 /* Output all of the compilation units. We put the main one last so that
31606 the offsets are available to output_pubnames. */
31607 for (node = cu_die_list; node; node = node->next)
31608 output_comp_unit (node->die, 0, NULL);
31610 hash_table<comdat_type_hasher> comdat_type_table (100);
31611 for (ctnode = comdat_type_list; ctnode != NULL; ctnode = ctnode->next)
31613 comdat_type_node **slot = comdat_type_table.find_slot (ctnode, INSERT);
31615 /* Don't output duplicate types. */
31616 if (*slot != HTAB_EMPTY_ENTRY)
31617 continue;
31619 /* Add a pointer to the line table for the main compilation unit
31620 so that the debugger can make sense of DW_AT_decl_file
31621 attributes. */
31622 if (debug_info_level >= DINFO_LEVEL_TERSE)
31623 add_AT_lineptr (ctnode->root_die, DW_AT_stmt_list,
31624 (!dwarf_split_debug_info
31625 ? dl_section_ref
31626 : debug_skeleton_line_section_label));
31628 output_comdat_type_unit (ctnode, false);
31629 *slot = ctnode;
31632 if (dwarf_split_debug_info)
31634 int mark;
31635 struct md5_ctx ctx;
31637 if (dwarf_version >= 5 && !vec_safe_is_empty (ranges_table))
31638 index_rnglists ();
31640 /* Compute a checksum of the comp_unit to use as the dwo_id. */
31641 md5_init_ctx (&ctx);
31642 mark = 0;
31643 die_checksum (comp_unit_die (), &ctx, &mark);
31644 unmark_all_dies (comp_unit_die ());
31645 md5_finish_ctx (&ctx, checksum);
31647 if (dwarf_version < 5)
31649 /* Use the first 8 bytes of the checksum as the dwo_id,
31650 and add it to both comp-unit DIEs. */
31651 add_AT_data8 (main_comp_unit_die, DW_AT_GNU_dwo_id, checksum);
31652 add_AT_data8 (comp_unit_die (), DW_AT_GNU_dwo_id, checksum);
31655 /* Add the base offset of the ranges table to the skeleton
31656 comp-unit DIE. */
31657 if (!vec_safe_is_empty (ranges_table))
31659 if (dwarf_version >= 5)
31660 add_AT_lineptr (main_comp_unit_die, DW_AT_rnglists_base,
31661 ranges_base_label);
31662 else
31663 add_AT_lineptr (main_comp_unit_die, DW_AT_GNU_ranges_base,
31664 ranges_section_label);
31667 output_addr_table ();
31670 /* Output the main compilation unit if non-empty or if .debug_macinfo
31671 or .debug_macro will be emitted. */
31672 output_comp_unit (comp_unit_die (), have_macinfo,
31673 dwarf_split_debug_info ? checksum : NULL);
31675 if (dwarf_split_debug_info && info_section_emitted)
31676 output_skeleton_debug_sections (main_comp_unit_die, checksum);
31678 /* Output the abbreviation table. */
31679 if (vec_safe_length (abbrev_die_table) != 1)
31681 switch_to_section (debug_abbrev_section);
31682 ASM_OUTPUT_LABEL (asm_out_file, abbrev_section_label);
31683 output_abbrev_section ();
31686 /* Output location list section if necessary. */
31687 if (have_location_lists)
31689 char l1[MAX_ARTIFICIAL_LABEL_BYTES];
31690 char l2[MAX_ARTIFICIAL_LABEL_BYTES];
31691 /* Output the location lists info. */
31692 switch_to_section (debug_loc_section);
31693 if (dwarf_version >= 5)
31695 ASM_GENERATE_INTERNAL_LABEL (l1, DEBUG_LOC_SECTION_LABEL, 2);
31696 ASM_GENERATE_INTERNAL_LABEL (l2, DEBUG_LOC_SECTION_LABEL, 3);
31697 if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
31698 dw2_asm_output_data (4, 0xffffffff,
31699 "Initial length escape value indicating "
31700 "64-bit DWARF extension");
31701 dw2_asm_output_delta (DWARF_OFFSET_SIZE, l2, l1,
31702 "Length of Location Lists");
31703 ASM_OUTPUT_LABEL (asm_out_file, l1);
31704 output_dwarf_version ();
31705 dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Address Size");
31706 dw2_asm_output_data (1, 0, "Segment Size");
31707 dw2_asm_output_data (4, dwarf_split_debug_info ? loc_list_idx : 0,
31708 "Offset Entry Count");
31710 ASM_OUTPUT_LABEL (asm_out_file, loc_section_label);
31711 if (dwarf_version >= 5 && dwarf_split_debug_info)
31713 unsigned int save_loc_list_idx = loc_list_idx;
31714 loc_list_idx = 0;
31715 output_loclists_offsets (comp_unit_die ());
31716 gcc_assert (save_loc_list_idx == loc_list_idx);
31718 output_location_lists (comp_unit_die ());
31719 if (dwarf_version >= 5)
31720 ASM_OUTPUT_LABEL (asm_out_file, l2);
31723 output_pubtables ();
31725 /* Output the address range information if a CU (.debug_info section)
31726 was emitted. We output an empty table even if we had no functions
31727 to put in it. This because the consumer has no way to tell the
31728 difference between an empty table that we omitted and failure to
31729 generate a table that would have contained data. */
31730 if (info_section_emitted)
31732 switch_to_section (debug_aranges_section);
31733 output_aranges ();
31736 /* Output ranges section if necessary. */
31737 if (!vec_safe_is_empty (ranges_table))
31739 if (dwarf_version >= 5)
31740 output_rnglists (generation);
31741 else
31742 output_ranges ();
31745 /* Have to end the macro section. */
31746 if (have_macinfo)
31748 switch_to_section (debug_macinfo_section);
31749 ASM_OUTPUT_LABEL (asm_out_file, macinfo_section_label);
31750 output_macinfo (!dwarf_split_debug_info ? debug_line_section_label
31751 : debug_skeleton_line_section_label, false);
31752 dw2_asm_output_data (1, 0, "End compilation unit");
31755 /* Output the source line correspondence table. We must do this
31756 even if there is no line information. Otherwise, on an empty
31757 translation unit, we will generate a present, but empty,
31758 .debug_info section. IRIX 6.5 `nm' will then complain when
31759 examining the file. This is done late so that any filenames
31760 used by the debug_info section are marked as 'used'. */
31761 switch_to_section (debug_line_section);
31762 ASM_OUTPUT_LABEL (asm_out_file, debug_line_section_label);
31763 if (! output_asm_line_debug_info ())
31764 output_line_info (false);
31766 if (dwarf_split_debug_info && info_section_emitted)
31768 switch_to_section (debug_skeleton_line_section);
31769 ASM_OUTPUT_LABEL (asm_out_file, debug_skeleton_line_section_label);
31770 output_line_info (true);
31773 /* If we emitted any indirect strings, output the string table too. */
31774 if (debug_str_hash || skeleton_debug_str_hash)
31775 output_indirect_strings ();
31776 if (debug_line_str_hash)
31778 switch_to_section (debug_line_str_section);
31779 const enum dwarf_form form = DW_FORM_line_strp;
31780 debug_line_str_hash->traverse<enum dwarf_form,
31781 output_indirect_string> (form);
31784 /* ??? Move lvugid out of dwarf2out_source_line and reset it too? */
31785 symview_upper_bound = 0;
31786 if (zero_view_p)
31787 bitmap_clear (zero_view_p);
31790 /* Returns a hash value for X (which really is a variable_value_struct). */
31792 inline hashval_t
31793 variable_value_hasher::hash (variable_value_struct *x)
31795 return (hashval_t) x->decl_id;
31798 /* Return nonzero if decl_id of variable_value_struct X is the same as
31799 UID of decl Y. */
31801 inline bool
31802 variable_value_hasher::equal (variable_value_struct *x, tree y)
31804 return x->decl_id == DECL_UID (y);
31807 /* Helper function for resolve_variable_value, handle
31808 DW_OP_GNU_variable_value in one location expression.
31809 Return true if exprloc has been changed into loclist. */
31811 static bool
31812 resolve_variable_value_in_expr (dw_attr_node *a, dw_loc_descr_ref loc)
31814 dw_loc_descr_ref next;
31815 for (dw_loc_descr_ref prev = NULL; loc; prev = loc, loc = next)
31817 next = loc->dw_loc_next;
31818 if (loc->dw_loc_opc != DW_OP_GNU_variable_value
31819 || loc->dw_loc_oprnd1.val_class != dw_val_class_decl_ref)
31820 continue;
31822 tree decl = loc->dw_loc_oprnd1.v.val_decl_ref;
31823 if (DECL_CONTEXT (decl) != current_function_decl)
31824 continue;
31826 dw_die_ref ref = lookup_decl_die (decl);
31827 if (ref)
31829 loc->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
31830 loc->dw_loc_oprnd1.v.val_die_ref.die = ref;
31831 loc->dw_loc_oprnd1.v.val_die_ref.external = 0;
31832 continue;
31834 dw_loc_list_ref l = loc_list_from_tree (decl, 0, NULL);
31835 if (l == NULL)
31836 continue;
31837 if (l->dw_loc_next)
31839 if (AT_class (a) != dw_val_class_loc)
31840 continue;
31841 switch (a->dw_attr)
31843 /* Following attributes allow both exprloc and loclist
31844 classes, so we can change them into a loclist. */
31845 case DW_AT_location:
31846 case DW_AT_string_length:
31847 case DW_AT_return_addr:
31848 case DW_AT_data_member_location:
31849 case DW_AT_frame_base:
31850 case DW_AT_segment:
31851 case DW_AT_static_link:
31852 case DW_AT_use_location:
31853 case DW_AT_vtable_elem_location:
31854 if (prev)
31856 prev->dw_loc_next = NULL;
31857 prepend_loc_descr_to_each (l, AT_loc (a));
31859 if (next)
31860 add_loc_descr_to_each (l, next);
31861 a->dw_attr_val.val_class = dw_val_class_loc_list;
31862 a->dw_attr_val.val_entry = NULL;
31863 a->dw_attr_val.v.val_loc_list = l;
31864 have_location_lists = true;
31865 return true;
31866 /* Following attributes allow both exprloc and reference,
31867 so if the whole expression is DW_OP_GNU_variable_value alone
31868 we could transform it into reference. */
31869 case DW_AT_byte_size:
31870 case DW_AT_bit_size:
31871 case DW_AT_lower_bound:
31872 case DW_AT_upper_bound:
31873 case DW_AT_bit_stride:
31874 case DW_AT_count:
31875 case DW_AT_allocated:
31876 case DW_AT_associated:
31877 case DW_AT_byte_stride:
31878 if (prev == NULL && next == NULL)
31879 break;
31880 /* FALLTHRU */
31881 default:
31882 if (dwarf_strict)
31883 continue;
31884 break;
31886 /* Create DW_TAG_variable that we can refer to. */
31887 gen_decl_die (decl, NULL_TREE, NULL,
31888 lookup_decl_die (current_function_decl));
31889 ref = lookup_decl_die (decl);
31890 if (ref)
31892 loc->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
31893 loc->dw_loc_oprnd1.v.val_die_ref.die = ref;
31894 loc->dw_loc_oprnd1.v.val_die_ref.external = 0;
31896 continue;
31898 if (prev)
31900 prev->dw_loc_next = l->expr;
31901 add_loc_descr (&prev->dw_loc_next, next);
31902 free_loc_descr (loc, NULL);
31903 next = prev->dw_loc_next;
31905 else
31907 memcpy (loc, l->expr, sizeof (dw_loc_descr_node));
31908 add_loc_descr (&loc, next);
31909 next = loc;
31911 loc = prev;
31913 return false;
31916 /* Attempt to resolve DW_OP_GNU_variable_value using loc_list_from_tree. */
31918 static void
31919 resolve_variable_value (dw_die_ref die)
31921 dw_attr_node *a;
31922 dw_loc_list_ref loc;
31923 unsigned ix;
31925 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
31926 switch (AT_class (a))
31928 case dw_val_class_loc:
31929 if (!resolve_variable_value_in_expr (a, AT_loc (a)))
31930 break;
31931 /* FALLTHRU */
31932 case dw_val_class_loc_list:
31933 loc = AT_loc_list (a);
31934 gcc_assert (loc);
31935 for (; loc; loc = loc->dw_loc_next)
31936 resolve_variable_value_in_expr (a, loc->expr);
31937 break;
31938 default:
31939 break;
31943 /* Attempt to optimize DW_OP_GNU_variable_value refering to
31944 temporaries in the current function. */
31946 static void
31947 resolve_variable_values (void)
31949 if (!variable_value_hash || !current_function_decl)
31950 return;
31952 struct variable_value_struct *node
31953 = variable_value_hash->find_with_hash (current_function_decl,
31954 DECL_UID (current_function_decl));
31956 if (node == NULL)
31957 return;
31959 unsigned int i;
31960 dw_die_ref die;
31961 FOR_EACH_VEC_SAFE_ELT (node->dies, i, die)
31962 resolve_variable_value (die);
31965 /* Helper function for note_variable_value, handle one location
31966 expression. */
31968 static void
31969 note_variable_value_in_expr (dw_die_ref die, dw_loc_descr_ref loc)
31971 for (; loc; loc = loc->dw_loc_next)
31972 if (loc->dw_loc_opc == DW_OP_GNU_variable_value
31973 && loc->dw_loc_oprnd1.val_class == dw_val_class_decl_ref)
31975 tree decl = loc->dw_loc_oprnd1.v.val_decl_ref;
31976 dw_die_ref ref = lookup_decl_die (decl);
31977 if (! ref && (flag_generate_lto || flag_generate_offload))
31979 /* ??? This is somewhat a hack because we do not create DIEs
31980 for variables not in BLOCK trees early but when generating
31981 early LTO output we need the dw_val_class_decl_ref to be
31982 fully resolved. For fat LTO objects we'd also like to
31983 undo this after LTO dwarf output. */
31984 gcc_assert (DECL_CONTEXT (decl));
31985 dw_die_ref ctx = lookup_decl_die (DECL_CONTEXT (decl));
31986 gcc_assert (ctx != NULL);
31987 gen_decl_die (decl, NULL_TREE, NULL, ctx);
31988 ref = lookup_decl_die (decl);
31989 gcc_assert (ref != NULL);
31991 if (ref)
31993 loc->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
31994 loc->dw_loc_oprnd1.v.val_die_ref.die = ref;
31995 loc->dw_loc_oprnd1.v.val_die_ref.external = 0;
31996 continue;
31998 if (VAR_P (decl)
31999 && DECL_CONTEXT (decl)
32000 && TREE_CODE (DECL_CONTEXT (decl)) == FUNCTION_DECL
32001 && lookup_decl_die (DECL_CONTEXT (decl)))
32003 if (!variable_value_hash)
32004 variable_value_hash
32005 = hash_table<variable_value_hasher>::create_ggc (10);
32007 tree fndecl = DECL_CONTEXT (decl);
32008 struct variable_value_struct *node;
32009 struct variable_value_struct **slot
32010 = variable_value_hash->find_slot_with_hash (fndecl,
32011 DECL_UID (fndecl),
32012 INSERT);
32013 if (*slot == NULL)
32015 node = ggc_cleared_alloc<variable_value_struct> ();
32016 node->decl_id = DECL_UID (fndecl);
32017 *slot = node;
32019 else
32020 node = *slot;
32022 vec_safe_push (node->dies, die);
32027 /* Walk the tree DIE and note DIEs with DW_OP_GNU_variable_value still
32028 with dw_val_class_decl_ref operand. */
32030 static void
32031 note_variable_value (dw_die_ref die)
32033 dw_die_ref c;
32034 dw_attr_node *a;
32035 dw_loc_list_ref loc;
32036 unsigned ix;
32038 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
32039 switch (AT_class (a))
32041 case dw_val_class_loc_list:
32042 loc = AT_loc_list (a);
32043 gcc_assert (loc);
32044 if (!loc->noted_variable_value)
32046 loc->noted_variable_value = 1;
32047 for (; loc; loc = loc->dw_loc_next)
32048 note_variable_value_in_expr (die, loc->expr);
32050 break;
32051 case dw_val_class_loc:
32052 note_variable_value_in_expr (die, AT_loc (a));
32053 break;
32054 default:
32055 break;
32058 /* Mark children. */
32059 FOR_EACH_CHILD (die, c, note_variable_value (c));
32062 /* Perform any cleanups needed after the early debug generation pass
32063 has run. */
32065 static void
32066 dwarf2out_early_finish (const char *filename)
32068 set_early_dwarf s;
32069 char dl_section_ref[MAX_ARTIFICIAL_LABEL_BYTES];
32071 /* PCH might result in DW_AT_producer string being restored from the
32072 header compilation, so always fill it with empty string initially
32073 and overwrite only here. */
32074 dw_attr_node *producer = get_AT (comp_unit_die (), DW_AT_producer);
32075 producer_string = gen_producer_string ();
32076 producer->dw_attr_val.v.val_str->refcount--;
32077 producer->dw_attr_val.v.val_str = find_AT_string (producer_string);
32079 /* Add the name for the main input file now. We delayed this from
32080 dwarf2out_init to avoid complications with PCH. */
32081 add_name_attribute (comp_unit_die (), remap_debug_filename (filename));
32082 add_comp_dir_attribute (comp_unit_die ());
32084 /* When emitting DWARF5 .debug_line_str, move DW_AT_name and
32085 DW_AT_comp_dir into .debug_line_str section. */
32086 if (!output_asm_line_debug_info ()
32087 && dwarf_version >= 5
32088 && DWARF5_USE_DEBUG_LINE_STR)
32090 for (int i = 0; i < 2; i++)
32092 dw_attr_node *a = get_AT (comp_unit_die (),
32093 i ? DW_AT_comp_dir : DW_AT_name);
32094 if (a == NULL
32095 || AT_class (a) != dw_val_class_str
32096 || strlen (AT_string (a)) + 1 <= DWARF_OFFSET_SIZE)
32097 continue;
32099 if (! debug_line_str_hash)
32100 debug_line_str_hash
32101 = hash_table<indirect_string_hasher>::create_ggc (10);
32103 struct indirect_string_node *node
32104 = find_AT_string_in_table (AT_string (a), debug_line_str_hash);
32105 set_indirect_string (node);
32106 node->form = DW_FORM_line_strp;
32107 a->dw_attr_val.v.val_str->refcount--;
32108 a->dw_attr_val.v.val_str = node;
32112 /* With LTO early dwarf was really finished at compile-time, so make
32113 sure to adjust the phase after annotating the LTRANS CU DIE. */
32114 if (in_lto_p)
32116 /* Force DW_TAG_imported_unit to be created now, otherwise
32117 we might end up without it or ordered after DW_TAG_inlined_subroutine
32118 referencing DIEs from it. */
32119 if (! flag_wpa && flag_incremental_link != INCREMENTAL_LINK_LTO)
32121 unsigned i;
32122 tree tu;
32123 if (external_die_map)
32124 FOR_EACH_VEC_SAFE_ELT (all_translation_units, i, tu)
32125 if (sym_off_pair *desc = external_die_map->get (tu))
32127 dw_die_ref import = new_die (DW_TAG_imported_unit,
32128 comp_unit_die (), NULL_TREE);
32129 add_AT_external_die_ref (import, DW_AT_import,
32130 desc->sym, desc->off);
32134 early_dwarf_finished = true;
32135 if (dump_file)
32137 fprintf (dump_file, "LTO EARLY DWARF for %s\n", filename);
32138 print_die (comp_unit_die (), dump_file);
32140 return;
32143 /* Walk through the list of incomplete types again, trying once more to
32144 emit full debugging info for them. */
32145 retry_incomplete_types ();
32147 /* The point here is to flush out the limbo list so that it is empty
32148 and we don't need to stream it for LTO. */
32149 flush_limbo_die_list ();
32151 gen_scheduled_generic_parms_dies ();
32152 gen_remaining_tmpl_value_param_die_attribute ();
32154 /* Add DW_AT_linkage_name for all deferred DIEs. */
32155 for (limbo_die_node *node = deferred_asm_name; node; node = node->next)
32157 tree decl = node->created_for;
32158 if (DECL_ASSEMBLER_NAME (decl) != DECL_NAME (decl)
32159 /* A missing DECL_ASSEMBLER_NAME can be a constant DIE that
32160 ended up in deferred_asm_name before we knew it was
32161 constant and never written to disk. */
32162 && DECL_ASSEMBLER_NAME (decl))
32164 add_linkage_attr (node->die, decl);
32165 move_linkage_attr (node->die);
32168 deferred_asm_name = NULL;
32170 if (flag_eliminate_unused_debug_types)
32171 prune_unused_types ();
32173 /* Generate separate COMDAT sections for type DIEs. */
32174 if (use_debug_types)
32176 break_out_comdat_types (comp_unit_die ());
32178 /* Each new type_unit DIE was added to the limbo die list when created.
32179 Since these have all been added to comdat_type_list, clear the
32180 limbo die list. */
32181 limbo_die_list = NULL;
32183 /* For each new comdat type unit, copy declarations for incomplete
32184 types to make the new unit self-contained (i.e., no direct
32185 references to the main compile unit). */
32186 for (comdat_type_node *ctnode = comdat_type_list;
32187 ctnode != NULL; ctnode = ctnode->next)
32188 copy_decls_for_unworthy_types (ctnode->root_die);
32189 copy_decls_for_unworthy_types (comp_unit_die ());
32191 /* In the process of copying declarations from one unit to another,
32192 we may have left some declarations behind that are no longer
32193 referenced. Prune them. */
32194 prune_unused_types ();
32197 /* Traverse the DIE's and note DIEs with DW_OP_GNU_variable_value still
32198 with dw_val_class_decl_ref operand. */
32199 note_variable_value (comp_unit_die ());
32200 for (limbo_die_node *node = cu_die_list; node; node = node->next)
32201 note_variable_value (node->die);
32202 for (comdat_type_node *ctnode = comdat_type_list; ctnode != NULL;
32203 ctnode = ctnode->next)
32204 note_variable_value (ctnode->root_die);
32205 for (limbo_die_node *node = limbo_die_list; node; node = node->next)
32206 note_variable_value (node->die);
32208 /* The AT_pubnames attribute needs to go in all skeleton dies, including
32209 both the main_cu and all skeleton TUs. Making this call unconditional
32210 would end up either adding a second copy of the AT_pubnames attribute, or
32211 requiring a special case in add_top_level_skeleton_die_attrs. */
32212 if (!dwarf_split_debug_info)
32213 add_AT_pubnames (comp_unit_die ());
32215 /* The early debug phase is now finished. */
32216 early_dwarf_finished = true;
32217 if (dump_file)
32219 fprintf (dump_file, "EARLY DWARF for %s\n", filename);
32220 print_die (comp_unit_die (), dump_file);
32223 /* Do not generate DWARF assembler now when not producing LTO bytecode. */
32224 if ((!flag_generate_lto && !flag_generate_offload)
32225 /* FIXME: Disable debug info generation for (PE-)COFF targets since the
32226 copy_lto_debug_sections operation of the simple object support in
32227 libiberty is not implemented for them yet. */
32228 || TARGET_PECOFF || TARGET_COFF)
32229 return;
32231 /* Now as we are going to output for LTO initialize sections and labels
32232 to the LTO variants. We don't need a random-seed postfix as other
32233 LTO sections as linking the LTO debug sections into one in a partial
32234 link is fine. */
32235 init_sections_and_labels (true);
32237 /* The output below is modeled after dwarf2out_finish with all
32238 location related output removed and some LTO specific changes.
32239 Some refactoring might make both smaller and easier to match up. */
32241 /* Traverse the DIE's and add add sibling attributes to those DIE's
32242 that have children. */
32243 add_sibling_attributes (comp_unit_die ());
32244 for (limbo_die_node *node = limbo_die_list; node; node = node->next)
32245 add_sibling_attributes (node->die);
32246 for (comdat_type_node *ctnode = comdat_type_list;
32247 ctnode != NULL; ctnode = ctnode->next)
32248 add_sibling_attributes (ctnode->root_die);
32250 /* AIX Assembler inserts the length, so adjust the reference to match the
32251 offset expected by debuggers. */
32252 strcpy (dl_section_ref, debug_line_section_label);
32253 if (XCOFF_DEBUGGING_INFO)
32254 strcat (dl_section_ref, DWARF_INITIAL_LENGTH_SIZE_STR);
32256 if (debug_info_level >= DINFO_LEVEL_TERSE)
32257 add_AT_lineptr (comp_unit_die (), DW_AT_stmt_list, dl_section_ref);
32259 if (have_macinfo)
32260 add_AT_macptr (comp_unit_die (), DEBUG_MACRO_ATTRIBUTE,
32261 macinfo_section_label);
32263 save_macinfo_strings ();
32265 if (dwarf_split_debug_info)
32267 unsigned int index = 0;
32268 debug_str_hash->traverse_noresize<unsigned int *, index_string> (&index);
32271 /* Output all of the compilation units. We put the main one last so that
32272 the offsets are available to output_pubnames. */
32273 for (limbo_die_node *node = limbo_die_list; node; node = node->next)
32274 output_comp_unit (node->die, 0, NULL);
32276 hash_table<comdat_type_hasher> comdat_type_table (100);
32277 for (comdat_type_node *ctnode = comdat_type_list;
32278 ctnode != NULL; ctnode = ctnode->next)
32280 comdat_type_node **slot = comdat_type_table.find_slot (ctnode, INSERT);
32282 /* Don't output duplicate types. */
32283 if (*slot != HTAB_EMPTY_ENTRY)
32284 continue;
32286 /* Add a pointer to the line table for the main compilation unit
32287 so that the debugger can make sense of DW_AT_decl_file
32288 attributes. */
32289 if (debug_info_level >= DINFO_LEVEL_TERSE)
32290 add_AT_lineptr (ctnode->root_die, DW_AT_stmt_list,
32291 (!dwarf_split_debug_info
32292 ? debug_line_section_label
32293 : debug_skeleton_line_section_label));
32295 output_comdat_type_unit (ctnode, true);
32296 *slot = ctnode;
32299 /* Stick a unique symbol to the main debuginfo section. */
32300 compute_comp_unit_symbol (comp_unit_die ());
32302 /* Output the main compilation unit. We always need it if only for
32303 the CU symbol. */
32304 output_comp_unit (comp_unit_die (), true, NULL);
32306 /* Output the abbreviation table. */
32307 if (vec_safe_length (abbrev_die_table) != 1)
32309 switch_to_section (debug_abbrev_section);
32310 ASM_OUTPUT_LABEL (asm_out_file, abbrev_section_label);
32311 output_abbrev_section ();
32314 /* Have to end the macro section. */
32315 if (have_macinfo)
32317 /* We have to save macinfo state if we need to output it again
32318 for the FAT part of the object. */
32319 vec<macinfo_entry, va_gc> *saved_macinfo_table = macinfo_table;
32320 if (flag_fat_lto_objects)
32321 macinfo_table = macinfo_table->copy ();
32323 switch_to_section (debug_macinfo_section);
32324 ASM_OUTPUT_LABEL (asm_out_file, macinfo_section_label);
32325 output_macinfo (debug_line_section_label, true);
32326 dw2_asm_output_data (1, 0, "End compilation unit");
32328 if (flag_fat_lto_objects)
32330 vec_free (macinfo_table);
32331 macinfo_table = saved_macinfo_table;
32335 /* Emit a skeleton debug_line section. */
32336 switch_to_section (debug_line_section);
32337 ASM_OUTPUT_LABEL (asm_out_file, debug_line_section_label);
32338 output_line_info (true);
32340 /* If we emitted any indirect strings, output the string table too. */
32341 if (debug_str_hash || skeleton_debug_str_hash)
32342 output_indirect_strings ();
32343 if (debug_line_str_hash)
32345 switch_to_section (debug_line_str_section);
32346 const enum dwarf_form form = DW_FORM_line_strp;
32347 debug_line_str_hash->traverse<enum dwarf_form,
32348 output_indirect_string> (form);
32351 /* Switch back to the text section. */
32352 switch_to_section (text_section);
32355 /* Reset all state within dwarf2out.c so that we can rerun the compiler
32356 within the same process. For use by toplev::finalize. */
32358 void
32359 dwarf2out_c_finalize (void)
32361 last_var_location_insn = NULL;
32362 cached_next_real_insn = NULL;
32363 used_rtx_array = NULL;
32364 incomplete_types = NULL;
32365 debug_info_section = NULL;
32366 debug_skeleton_info_section = NULL;
32367 debug_abbrev_section = NULL;
32368 debug_skeleton_abbrev_section = NULL;
32369 debug_aranges_section = NULL;
32370 debug_addr_section = NULL;
32371 debug_macinfo_section = NULL;
32372 debug_line_section = NULL;
32373 debug_skeleton_line_section = NULL;
32374 debug_loc_section = NULL;
32375 debug_pubnames_section = NULL;
32376 debug_pubtypes_section = NULL;
32377 debug_str_section = NULL;
32378 debug_line_str_section = NULL;
32379 debug_str_dwo_section = NULL;
32380 debug_str_offsets_section = NULL;
32381 debug_ranges_section = NULL;
32382 debug_frame_section = NULL;
32383 fde_vec = NULL;
32384 debug_str_hash = NULL;
32385 debug_line_str_hash = NULL;
32386 skeleton_debug_str_hash = NULL;
32387 dw2_string_counter = 0;
32388 have_multiple_function_sections = false;
32389 text_section_used = false;
32390 cold_text_section_used = false;
32391 cold_text_section = NULL;
32392 current_unit_personality = NULL;
32394 early_dwarf = false;
32395 early_dwarf_finished = false;
32397 next_die_offset = 0;
32398 single_comp_unit_die = NULL;
32399 comdat_type_list = NULL;
32400 limbo_die_list = NULL;
32401 file_table = NULL;
32402 decl_die_table = NULL;
32403 common_block_die_table = NULL;
32404 decl_loc_table = NULL;
32405 call_arg_locations = NULL;
32406 call_arg_loc_last = NULL;
32407 call_site_count = -1;
32408 tail_call_site_count = -1;
32409 cached_dw_loc_list_table = NULL;
32410 abbrev_die_table = NULL;
32411 delete dwarf_proc_stack_usage_map;
32412 dwarf_proc_stack_usage_map = NULL;
32413 line_info_label_num = 0;
32414 cur_line_info_table = NULL;
32415 text_section_line_info = NULL;
32416 cold_text_section_line_info = NULL;
32417 separate_line_info = NULL;
32418 info_section_emitted = false;
32419 pubname_table = NULL;
32420 pubtype_table = NULL;
32421 macinfo_table = NULL;
32422 ranges_table = NULL;
32423 ranges_by_label = NULL;
32424 rnglist_idx = 0;
32425 have_location_lists = false;
32426 loclabel_num = 0;
32427 poc_label_num = 0;
32428 last_emitted_file = NULL;
32429 label_num = 0;
32430 tmpl_value_parm_die_table = NULL;
32431 generic_type_instances = NULL;
32432 frame_pointer_fb_offset = 0;
32433 frame_pointer_fb_offset_valid = false;
32434 base_types.release ();
32435 XDELETEVEC (producer_string);
32436 producer_string = NULL;
32439 #include "gt-dwarf2out.h"