typeck.c (cp_truthvalue_conversion): Add tsubst_flags_t parameter and use it in calls...
[official-gcc.git] / gcc / dwarf2out.c
blob9f1d921ddadfae2d6670d8978a02d05f1b9b72a7
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 break;
16435 case CONST_STRING:
16436 resolve_one_addr (&rtl);
16437 goto symref;
16439 /* RTL sequences inside PARALLEL record a series of DWARF operations for
16440 the expression. An UNSPEC rtx represents a raw DWARF operation,
16441 new_loc_descr is called for it to build the operation directly.
16442 Otherwise mem_loc_descriptor is called recursively. */
16443 case PARALLEL:
16445 int index = 0;
16446 dw_loc_descr_ref exp_result = NULL;
16448 for (; index < XVECLEN (rtl, 0); index++)
16450 rtx elem = XVECEXP (rtl, 0, index);
16451 if (GET_CODE (elem) == UNSPEC)
16453 /* Each DWARF operation UNSPEC contain two operands, if
16454 one operand is not used for the operation, const0_rtx is
16455 passed. */
16456 gcc_assert (XVECLEN (elem, 0) == 2);
16458 HOST_WIDE_INT dw_op = XINT (elem, 1);
16459 HOST_WIDE_INT oprnd1 = INTVAL (XVECEXP (elem, 0, 0));
16460 HOST_WIDE_INT oprnd2 = INTVAL (XVECEXP (elem, 0, 1));
16461 exp_result
16462 = new_loc_descr ((enum dwarf_location_atom) dw_op, oprnd1,
16463 oprnd2);
16465 else
16466 exp_result
16467 = mem_loc_descriptor (elem, mode, mem_mode,
16468 VAR_INIT_STATUS_INITIALIZED);
16470 if (!mem_loc_result)
16471 mem_loc_result = exp_result;
16472 else
16473 add_loc_descr (&mem_loc_result, exp_result);
16476 break;
16479 default:
16480 if (flag_checking)
16482 print_rtl (stderr, rtl);
16483 gcc_unreachable ();
16485 break;
16488 if (mem_loc_result && initialized == VAR_INIT_STATUS_UNINITIALIZED)
16489 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_GNU_uninit, 0, 0));
16491 return mem_loc_result;
16494 /* Return a descriptor that describes the concatenation of two locations.
16495 This is typically a complex variable. */
16497 static dw_loc_descr_ref
16498 concat_loc_descriptor (rtx x0, rtx x1, enum var_init_status initialized)
16500 /* At present we only track constant-sized pieces. */
16501 unsigned int size0, size1;
16502 if (!GET_MODE_SIZE (GET_MODE (x0)).is_constant (&size0)
16503 || !GET_MODE_SIZE (GET_MODE (x1)).is_constant (&size1))
16504 return 0;
16506 dw_loc_descr_ref cc_loc_result = NULL;
16507 dw_loc_descr_ref x0_ref
16508 = loc_descriptor (x0, VOIDmode, VAR_INIT_STATUS_INITIALIZED);
16509 dw_loc_descr_ref x1_ref
16510 = loc_descriptor (x1, VOIDmode, VAR_INIT_STATUS_INITIALIZED);
16512 if (x0_ref == 0 || x1_ref == 0)
16513 return 0;
16515 cc_loc_result = x0_ref;
16516 add_loc_descr_op_piece (&cc_loc_result, size0);
16518 add_loc_descr (&cc_loc_result, x1_ref);
16519 add_loc_descr_op_piece (&cc_loc_result, size1);
16521 if (initialized == VAR_INIT_STATUS_UNINITIALIZED)
16522 add_loc_descr (&cc_loc_result, new_loc_descr (DW_OP_GNU_uninit, 0, 0));
16524 return cc_loc_result;
16527 /* Return a descriptor that describes the concatenation of N
16528 locations. */
16530 static dw_loc_descr_ref
16531 concatn_loc_descriptor (rtx concatn, enum var_init_status initialized)
16533 unsigned int i;
16534 dw_loc_descr_ref cc_loc_result = NULL;
16535 unsigned int n = XVECLEN (concatn, 0);
16536 unsigned int size;
16538 for (i = 0; i < n; ++i)
16540 dw_loc_descr_ref ref;
16541 rtx x = XVECEXP (concatn, 0, i);
16543 /* At present we only track constant-sized pieces. */
16544 if (!GET_MODE_SIZE (GET_MODE (x)).is_constant (&size))
16545 return NULL;
16547 ref = loc_descriptor (x, VOIDmode, VAR_INIT_STATUS_INITIALIZED);
16548 if (ref == NULL)
16549 return NULL;
16551 add_loc_descr (&cc_loc_result, ref);
16552 add_loc_descr_op_piece (&cc_loc_result, size);
16555 if (cc_loc_result && initialized == VAR_INIT_STATUS_UNINITIALIZED)
16556 add_loc_descr (&cc_loc_result, new_loc_descr (DW_OP_GNU_uninit, 0, 0));
16558 return cc_loc_result;
16561 /* Helper function for loc_descriptor. Return DW_OP_implicit_pointer
16562 for DEBUG_IMPLICIT_PTR RTL. */
16564 static dw_loc_descr_ref
16565 implicit_ptr_descriptor (rtx rtl, HOST_WIDE_INT offset)
16567 dw_loc_descr_ref ret;
16568 dw_die_ref ref;
16570 if (dwarf_strict && dwarf_version < 5)
16571 return NULL;
16572 gcc_assert (TREE_CODE (DEBUG_IMPLICIT_PTR_DECL (rtl)) == VAR_DECL
16573 || TREE_CODE (DEBUG_IMPLICIT_PTR_DECL (rtl)) == PARM_DECL
16574 || TREE_CODE (DEBUG_IMPLICIT_PTR_DECL (rtl)) == RESULT_DECL);
16575 ref = lookup_decl_die (DEBUG_IMPLICIT_PTR_DECL (rtl));
16576 ret = new_loc_descr (dwarf_OP (DW_OP_implicit_pointer), 0, offset);
16577 ret->dw_loc_oprnd2.val_class = dw_val_class_const;
16578 if (ref)
16580 ret->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
16581 ret->dw_loc_oprnd1.v.val_die_ref.die = ref;
16582 ret->dw_loc_oprnd1.v.val_die_ref.external = 0;
16584 else
16586 ret->dw_loc_oprnd1.val_class = dw_val_class_decl_ref;
16587 ret->dw_loc_oprnd1.v.val_decl_ref = DEBUG_IMPLICIT_PTR_DECL (rtl);
16589 return ret;
16592 /* Output a proper Dwarf location descriptor for a variable or parameter
16593 which is either allocated in a register or in a memory location. For a
16594 register, we just generate an OP_REG and the register number. For a
16595 memory location we provide a Dwarf postfix expression describing how to
16596 generate the (dynamic) address of the object onto the address stack.
16598 MODE is mode of the decl if this loc_descriptor is going to be used in
16599 .debug_loc section where DW_OP_stack_value and DW_OP_implicit_value are
16600 allowed, VOIDmode otherwise.
16602 If we don't know how to describe it, return 0. */
16604 static dw_loc_descr_ref
16605 loc_descriptor (rtx rtl, machine_mode mode,
16606 enum var_init_status initialized)
16608 dw_loc_descr_ref loc_result = NULL;
16609 scalar_int_mode int_mode;
16611 switch (GET_CODE (rtl))
16613 case SUBREG:
16614 /* The case of a subreg may arise when we have a local (register)
16615 variable or a formal (register) parameter which doesn't quite fill
16616 up an entire register. For now, just assume that it is
16617 legitimate to make the Dwarf info refer to the whole register which
16618 contains the given subreg. */
16619 if (REG_P (SUBREG_REG (rtl)) && subreg_lowpart_p (rtl))
16620 loc_result = loc_descriptor (SUBREG_REG (rtl),
16621 GET_MODE (SUBREG_REG (rtl)), initialized);
16622 else
16623 goto do_default;
16624 break;
16626 case REG:
16627 loc_result = reg_loc_descriptor (rtl, initialized);
16628 break;
16630 case MEM:
16631 loc_result = mem_loc_descriptor (XEXP (rtl, 0), get_address_mode (rtl),
16632 GET_MODE (rtl), initialized);
16633 if (loc_result == NULL)
16634 loc_result = tls_mem_loc_descriptor (rtl);
16635 if (loc_result == NULL)
16637 rtx new_rtl = avoid_constant_pool_reference (rtl);
16638 if (new_rtl != rtl)
16639 loc_result = loc_descriptor (new_rtl, mode, initialized);
16641 break;
16643 case CONCAT:
16644 loc_result = concat_loc_descriptor (XEXP (rtl, 0), XEXP (rtl, 1),
16645 initialized);
16646 break;
16648 case CONCATN:
16649 loc_result = concatn_loc_descriptor (rtl, initialized);
16650 break;
16652 case VAR_LOCATION:
16653 /* Single part. */
16654 if (GET_CODE (PAT_VAR_LOCATION_LOC (rtl)) != PARALLEL)
16656 rtx loc = PAT_VAR_LOCATION_LOC (rtl);
16657 if (GET_CODE (loc) == EXPR_LIST)
16658 loc = XEXP (loc, 0);
16659 loc_result = loc_descriptor (loc, mode, initialized);
16660 break;
16663 rtl = XEXP (rtl, 1);
16664 /* FALLTHRU */
16666 case PARALLEL:
16668 rtvec par_elems = XVEC (rtl, 0);
16669 int num_elem = GET_NUM_ELEM (par_elems);
16670 machine_mode mode;
16671 int i, size;
16673 /* Create the first one, so we have something to add to. */
16674 loc_result = loc_descriptor (XEXP (RTVEC_ELT (par_elems, 0), 0),
16675 VOIDmode, initialized);
16676 if (loc_result == NULL)
16677 return NULL;
16678 mode = GET_MODE (XEXP (RTVEC_ELT (par_elems, 0), 0));
16679 /* At present we only track constant-sized pieces. */
16680 if (!GET_MODE_SIZE (mode).is_constant (&size))
16681 return NULL;
16682 add_loc_descr_op_piece (&loc_result, size);
16683 for (i = 1; i < num_elem; i++)
16685 dw_loc_descr_ref temp;
16687 temp = loc_descriptor (XEXP (RTVEC_ELT (par_elems, i), 0),
16688 VOIDmode, initialized);
16689 if (temp == NULL)
16690 return NULL;
16691 add_loc_descr (&loc_result, temp);
16692 mode = GET_MODE (XEXP (RTVEC_ELT (par_elems, i), 0));
16693 /* At present we only track constant-sized pieces. */
16694 if (!GET_MODE_SIZE (mode).is_constant (&size))
16695 return NULL;
16696 add_loc_descr_op_piece (&loc_result, size);
16699 break;
16701 case CONST_INT:
16702 if (mode != VOIDmode && mode != BLKmode)
16704 int_mode = as_a <scalar_int_mode> (mode);
16705 loc_result = address_of_int_loc_descriptor (GET_MODE_SIZE (int_mode),
16706 INTVAL (rtl));
16708 break;
16710 case CONST_DOUBLE:
16711 if (mode == VOIDmode)
16712 mode = GET_MODE (rtl);
16714 if (mode != VOIDmode && (dwarf_version >= 4 || !dwarf_strict))
16716 gcc_assert (mode == GET_MODE (rtl) || VOIDmode == GET_MODE (rtl));
16718 /* Note that a CONST_DOUBLE rtx could represent either an integer
16719 or a floating-point constant. A CONST_DOUBLE is used whenever
16720 the constant requires more than one word in order to be
16721 adequately represented. We output CONST_DOUBLEs as blocks. */
16722 scalar_mode smode = as_a <scalar_mode> (mode);
16723 loc_result = new_loc_descr (DW_OP_implicit_value,
16724 GET_MODE_SIZE (smode), 0);
16725 #if TARGET_SUPPORTS_WIDE_INT == 0
16726 if (!SCALAR_FLOAT_MODE_P (smode))
16728 loc_result->dw_loc_oprnd2.val_class = dw_val_class_const_double;
16729 loc_result->dw_loc_oprnd2.v.val_double
16730 = rtx_to_double_int (rtl);
16732 else
16733 #endif
16735 unsigned int length = GET_MODE_SIZE (smode);
16736 unsigned char *array = ggc_vec_alloc<unsigned char> (length);
16738 insert_float (rtl, array);
16739 loc_result->dw_loc_oprnd2.val_class = dw_val_class_vec;
16740 loc_result->dw_loc_oprnd2.v.val_vec.length = length / 4;
16741 loc_result->dw_loc_oprnd2.v.val_vec.elt_size = 4;
16742 loc_result->dw_loc_oprnd2.v.val_vec.array = array;
16745 break;
16747 case CONST_WIDE_INT:
16748 if (mode == VOIDmode)
16749 mode = GET_MODE (rtl);
16751 if (mode != VOIDmode && (dwarf_version >= 4 || !dwarf_strict))
16753 int_mode = as_a <scalar_int_mode> (mode);
16754 loc_result = new_loc_descr (DW_OP_implicit_value,
16755 GET_MODE_SIZE (int_mode), 0);
16756 loc_result->dw_loc_oprnd2.val_class = dw_val_class_wide_int;
16757 loc_result->dw_loc_oprnd2.v.val_wide = ggc_alloc<wide_int> ();
16758 *loc_result->dw_loc_oprnd2.v.val_wide = rtx_mode_t (rtl, int_mode);
16760 break;
16762 case CONST_VECTOR:
16763 if (mode == VOIDmode)
16764 mode = GET_MODE (rtl);
16766 if (mode != VOIDmode && (dwarf_version >= 4 || !dwarf_strict))
16768 unsigned int length;
16769 if (!CONST_VECTOR_NUNITS (rtl).is_constant (&length))
16770 return NULL;
16772 unsigned int elt_size = GET_MODE_UNIT_SIZE (GET_MODE (rtl));
16773 unsigned char *array
16774 = ggc_vec_alloc<unsigned char> (length * elt_size);
16775 unsigned int i;
16776 unsigned char *p;
16777 machine_mode imode = GET_MODE_INNER (mode);
16779 gcc_assert (mode == GET_MODE (rtl) || VOIDmode == GET_MODE (rtl));
16780 switch (GET_MODE_CLASS (mode))
16782 case MODE_VECTOR_INT:
16783 for (i = 0, p = array; i < length; i++, p += elt_size)
16785 rtx elt = CONST_VECTOR_ELT (rtl, i);
16786 insert_wide_int (rtx_mode_t (elt, imode), p, elt_size);
16788 break;
16790 case MODE_VECTOR_FLOAT:
16791 for (i = 0, p = array; i < length; i++, p += elt_size)
16793 rtx elt = CONST_VECTOR_ELT (rtl, i);
16794 insert_float (elt, p);
16796 break;
16798 default:
16799 gcc_unreachable ();
16802 loc_result = new_loc_descr (DW_OP_implicit_value,
16803 length * elt_size, 0);
16804 loc_result->dw_loc_oprnd2.val_class = dw_val_class_vec;
16805 loc_result->dw_loc_oprnd2.v.val_vec.length = length;
16806 loc_result->dw_loc_oprnd2.v.val_vec.elt_size = elt_size;
16807 loc_result->dw_loc_oprnd2.v.val_vec.array = array;
16809 break;
16811 case CONST:
16812 if (mode == VOIDmode
16813 || CONST_SCALAR_INT_P (XEXP (rtl, 0))
16814 || CONST_DOUBLE_AS_FLOAT_P (XEXP (rtl, 0))
16815 || GET_CODE (XEXP (rtl, 0)) == CONST_VECTOR)
16817 loc_result = loc_descriptor (XEXP (rtl, 0), mode, initialized);
16818 break;
16820 /* FALLTHROUGH */
16821 case SYMBOL_REF:
16822 if (!const_ok_for_output (rtl))
16823 break;
16824 /* FALLTHROUGH */
16825 case LABEL_REF:
16826 if (is_a <scalar_int_mode> (mode, &int_mode)
16827 && GET_MODE_SIZE (int_mode) == DWARF2_ADDR_SIZE
16828 && (dwarf_version >= 4 || !dwarf_strict))
16830 loc_result = new_addr_loc_descr (rtl, dtprel_false);
16831 add_loc_descr (&loc_result, new_loc_descr (DW_OP_stack_value, 0, 0));
16832 vec_safe_push (used_rtx_array, rtl);
16834 break;
16836 case DEBUG_IMPLICIT_PTR:
16837 loc_result = implicit_ptr_descriptor (rtl, 0);
16838 break;
16840 case PLUS:
16841 if (GET_CODE (XEXP (rtl, 0)) == DEBUG_IMPLICIT_PTR
16842 && CONST_INT_P (XEXP (rtl, 1)))
16844 loc_result
16845 = implicit_ptr_descriptor (XEXP (rtl, 0), INTVAL (XEXP (rtl, 1)));
16846 break;
16848 /* FALLTHRU */
16849 do_default:
16850 default:
16851 if ((is_a <scalar_int_mode> (mode, &int_mode)
16852 && GET_MODE (rtl) == int_mode
16853 && GET_MODE_SIZE (int_mode) <= DWARF2_ADDR_SIZE
16854 && dwarf_version >= 4)
16855 || (!dwarf_strict && mode != VOIDmode && mode != BLKmode))
16857 /* Value expression. */
16858 loc_result = mem_loc_descriptor (rtl, mode, VOIDmode, initialized);
16859 if (loc_result)
16860 add_loc_descr (&loc_result,
16861 new_loc_descr (DW_OP_stack_value, 0, 0));
16863 break;
16866 return loc_result;
16869 /* We need to figure out what section we should use as the base for the
16870 address ranges where a given location is valid.
16871 1. If this particular DECL has a section associated with it, use that.
16872 2. If this function has a section associated with it, use that.
16873 3. Otherwise, use the text section.
16874 XXX: If you split a variable across multiple sections, we won't notice. */
16876 static const char *
16877 secname_for_decl (const_tree decl)
16879 const char *secname;
16881 if (VAR_OR_FUNCTION_DECL_P (decl)
16882 && (DECL_EXTERNAL (decl) || TREE_PUBLIC (decl) || TREE_STATIC (decl))
16883 && DECL_SECTION_NAME (decl))
16884 secname = DECL_SECTION_NAME (decl);
16885 else if (current_function_decl && DECL_SECTION_NAME (current_function_decl))
16887 if (in_cold_section_p)
16889 section *sec = current_function_section ();
16890 if (sec->common.flags & SECTION_NAMED)
16891 return sec->named.name;
16893 secname = DECL_SECTION_NAME (current_function_decl);
16895 else if (cfun && in_cold_section_p)
16896 secname = crtl->subsections.cold_section_label;
16897 else
16898 secname = text_section_label;
16900 return secname;
16903 /* Return true when DECL_BY_REFERENCE is defined and set for DECL. */
16905 static bool
16906 decl_by_reference_p (tree decl)
16908 return ((TREE_CODE (decl) == PARM_DECL || TREE_CODE (decl) == RESULT_DECL
16909 || VAR_P (decl))
16910 && DECL_BY_REFERENCE (decl));
16913 /* Helper function for dw_loc_list. Compute proper Dwarf location descriptor
16914 for VARLOC. */
16916 static dw_loc_descr_ref
16917 dw_loc_list_1 (tree loc, rtx varloc, int want_address,
16918 enum var_init_status initialized)
16920 int have_address = 0;
16921 dw_loc_descr_ref descr;
16922 machine_mode mode;
16924 if (want_address != 2)
16926 gcc_assert (GET_CODE (varloc) == VAR_LOCATION);
16927 /* Single part. */
16928 if (GET_CODE (PAT_VAR_LOCATION_LOC (varloc)) != PARALLEL)
16930 varloc = PAT_VAR_LOCATION_LOC (varloc);
16931 if (GET_CODE (varloc) == EXPR_LIST)
16932 varloc = XEXP (varloc, 0);
16933 mode = GET_MODE (varloc);
16934 if (MEM_P (varloc))
16936 rtx addr = XEXP (varloc, 0);
16937 descr = mem_loc_descriptor (addr, get_address_mode (varloc),
16938 mode, initialized);
16939 if (descr)
16940 have_address = 1;
16941 else
16943 rtx x = avoid_constant_pool_reference (varloc);
16944 if (x != varloc)
16945 descr = mem_loc_descriptor (x, mode, VOIDmode,
16946 initialized);
16949 else
16950 descr = mem_loc_descriptor (varloc, mode, VOIDmode, initialized);
16952 else
16953 return 0;
16955 else
16957 if (GET_CODE (varloc) == VAR_LOCATION)
16958 mode = DECL_MODE (PAT_VAR_LOCATION_DECL (varloc));
16959 else
16960 mode = DECL_MODE (loc);
16961 descr = loc_descriptor (varloc, mode, initialized);
16962 have_address = 1;
16965 if (!descr)
16966 return 0;
16968 if (want_address == 2 && !have_address
16969 && (dwarf_version >= 4 || !dwarf_strict))
16971 if (int_size_in_bytes (TREE_TYPE (loc)) > DWARF2_ADDR_SIZE)
16973 expansion_failed (loc, NULL_RTX,
16974 "DWARF address size mismatch");
16975 return 0;
16977 add_loc_descr (&descr, new_loc_descr (DW_OP_stack_value, 0, 0));
16978 have_address = 1;
16980 /* Show if we can't fill the request for an address. */
16981 if (want_address && !have_address)
16983 expansion_failed (loc, NULL_RTX,
16984 "Want address and only have value");
16985 return 0;
16988 /* If we've got an address and don't want one, dereference. */
16989 if (!want_address && have_address)
16991 HOST_WIDE_INT size = int_size_in_bytes (TREE_TYPE (loc));
16992 enum dwarf_location_atom op;
16994 if (size > DWARF2_ADDR_SIZE || size == -1)
16996 expansion_failed (loc, NULL_RTX,
16997 "DWARF address size mismatch");
16998 return 0;
17000 else if (size == DWARF2_ADDR_SIZE)
17001 op = DW_OP_deref;
17002 else
17003 op = DW_OP_deref_size;
17005 add_loc_descr (&descr, new_loc_descr (op, size, 0));
17008 return descr;
17011 /* Create a DW_OP_piece or DW_OP_bit_piece for bitsize, or return NULL
17012 if it is not possible. */
17014 static dw_loc_descr_ref
17015 new_loc_descr_op_bit_piece (HOST_WIDE_INT bitsize, HOST_WIDE_INT offset)
17017 if ((bitsize % BITS_PER_UNIT) == 0 && offset == 0)
17018 return new_loc_descr (DW_OP_piece, bitsize / BITS_PER_UNIT, 0);
17019 else if (dwarf_version >= 3 || !dwarf_strict)
17020 return new_loc_descr (DW_OP_bit_piece, bitsize, offset);
17021 else
17022 return NULL;
17025 /* Helper function for dw_loc_list. Compute proper Dwarf location descriptor
17026 for VAR_LOC_NOTE for variable DECL that has been optimized by SRA. */
17028 static dw_loc_descr_ref
17029 dw_sra_loc_expr (tree decl, rtx loc)
17031 rtx p;
17032 unsigned HOST_WIDE_INT padsize = 0;
17033 dw_loc_descr_ref descr, *descr_tail;
17034 unsigned HOST_WIDE_INT decl_size;
17035 rtx varloc;
17036 enum var_init_status initialized;
17038 if (DECL_SIZE (decl) == NULL
17039 || !tree_fits_uhwi_p (DECL_SIZE (decl)))
17040 return NULL;
17042 decl_size = tree_to_uhwi (DECL_SIZE (decl));
17043 descr = NULL;
17044 descr_tail = &descr;
17046 for (p = loc; p; p = XEXP (p, 1))
17048 unsigned HOST_WIDE_INT bitsize = decl_piece_bitsize (p);
17049 rtx loc_note = *decl_piece_varloc_ptr (p);
17050 dw_loc_descr_ref cur_descr;
17051 dw_loc_descr_ref *tail, last = NULL;
17052 unsigned HOST_WIDE_INT opsize = 0;
17054 if (loc_note == NULL_RTX
17055 || NOTE_VAR_LOCATION_LOC (loc_note) == NULL_RTX)
17057 padsize += bitsize;
17058 continue;
17060 initialized = NOTE_VAR_LOCATION_STATUS (loc_note);
17061 varloc = NOTE_VAR_LOCATION (loc_note);
17062 cur_descr = dw_loc_list_1 (decl, varloc, 2, initialized);
17063 if (cur_descr == NULL)
17065 padsize += bitsize;
17066 continue;
17069 /* Check that cur_descr either doesn't use
17070 DW_OP_*piece operations, or their sum is equal
17071 to bitsize. Otherwise we can't embed it. */
17072 for (tail = &cur_descr; *tail != NULL;
17073 tail = &(*tail)->dw_loc_next)
17074 if ((*tail)->dw_loc_opc == DW_OP_piece)
17076 opsize += (*tail)->dw_loc_oprnd1.v.val_unsigned
17077 * BITS_PER_UNIT;
17078 last = *tail;
17080 else if ((*tail)->dw_loc_opc == DW_OP_bit_piece)
17082 opsize += (*tail)->dw_loc_oprnd1.v.val_unsigned;
17083 last = *tail;
17086 if (last != NULL && opsize != bitsize)
17088 padsize += bitsize;
17089 /* Discard the current piece of the descriptor and release any
17090 addr_table entries it uses. */
17091 remove_loc_list_addr_table_entries (cur_descr);
17092 continue;
17095 /* If there is a hole, add DW_OP_*piece after empty DWARF
17096 expression, which means that those bits are optimized out. */
17097 if (padsize)
17099 if (padsize > decl_size)
17101 remove_loc_list_addr_table_entries (cur_descr);
17102 goto discard_descr;
17104 decl_size -= padsize;
17105 *descr_tail = new_loc_descr_op_bit_piece (padsize, 0);
17106 if (*descr_tail == NULL)
17108 remove_loc_list_addr_table_entries (cur_descr);
17109 goto discard_descr;
17111 descr_tail = &(*descr_tail)->dw_loc_next;
17112 padsize = 0;
17114 *descr_tail = cur_descr;
17115 descr_tail = tail;
17116 if (bitsize > decl_size)
17117 goto discard_descr;
17118 decl_size -= bitsize;
17119 if (last == NULL)
17121 HOST_WIDE_INT offset = 0;
17122 if (GET_CODE (varloc) == VAR_LOCATION
17123 && GET_CODE (PAT_VAR_LOCATION_LOC (varloc)) != PARALLEL)
17125 varloc = PAT_VAR_LOCATION_LOC (varloc);
17126 if (GET_CODE (varloc) == EXPR_LIST)
17127 varloc = XEXP (varloc, 0);
17131 if (GET_CODE (varloc) == CONST
17132 || GET_CODE (varloc) == SIGN_EXTEND
17133 || GET_CODE (varloc) == ZERO_EXTEND)
17134 varloc = XEXP (varloc, 0);
17135 else if (GET_CODE (varloc) == SUBREG)
17136 varloc = SUBREG_REG (varloc);
17137 else
17138 break;
17140 while (1);
17141 /* DW_OP_bit_size offset should be zero for register
17142 or implicit location descriptions and empty location
17143 descriptions, but for memory addresses needs big endian
17144 adjustment. */
17145 if (MEM_P (varloc))
17147 unsigned HOST_WIDE_INT memsize;
17148 if (!poly_uint64 (MEM_SIZE (varloc)).is_constant (&memsize))
17149 goto discard_descr;
17150 memsize *= BITS_PER_UNIT;
17151 if (memsize != bitsize)
17153 if (BYTES_BIG_ENDIAN != WORDS_BIG_ENDIAN
17154 && (memsize > BITS_PER_WORD || bitsize > BITS_PER_WORD))
17155 goto discard_descr;
17156 if (memsize < bitsize)
17157 goto discard_descr;
17158 if (BITS_BIG_ENDIAN)
17159 offset = memsize - bitsize;
17163 *descr_tail = new_loc_descr_op_bit_piece (bitsize, offset);
17164 if (*descr_tail == NULL)
17165 goto discard_descr;
17166 descr_tail = &(*descr_tail)->dw_loc_next;
17170 /* If there were any non-empty expressions, add padding till the end of
17171 the decl. */
17172 if (descr != NULL && decl_size != 0)
17174 *descr_tail = new_loc_descr_op_bit_piece (decl_size, 0);
17175 if (*descr_tail == NULL)
17176 goto discard_descr;
17178 return descr;
17180 discard_descr:
17181 /* Discard the descriptor and release any addr_table entries it uses. */
17182 remove_loc_list_addr_table_entries (descr);
17183 return NULL;
17186 /* Return the dwarf representation of the location list LOC_LIST of
17187 DECL. WANT_ADDRESS has the same meaning as in loc_list_from_tree
17188 function. */
17190 static dw_loc_list_ref
17191 dw_loc_list (var_loc_list *loc_list, tree decl, int want_address)
17193 const char *endname, *secname;
17194 var_loc_view endview;
17195 rtx varloc;
17196 enum var_init_status initialized;
17197 struct var_loc_node *node;
17198 dw_loc_descr_ref descr;
17199 char label_id[MAX_ARTIFICIAL_LABEL_BYTES];
17200 dw_loc_list_ref list = NULL;
17201 dw_loc_list_ref *listp = &list;
17203 /* Now that we know what section we are using for a base,
17204 actually construct the list of locations.
17205 The first location information is what is passed to the
17206 function that creates the location list, and the remaining
17207 locations just get added on to that list.
17208 Note that we only know the start address for a location
17209 (IE location changes), so to build the range, we use
17210 the range [current location start, next location start].
17211 This means we have to special case the last node, and generate
17212 a range of [last location start, end of function label]. */
17214 if (cfun && crtl->has_bb_partition)
17216 bool save_in_cold_section_p = in_cold_section_p;
17217 in_cold_section_p = first_function_block_is_cold;
17218 if (loc_list->last_before_switch == NULL)
17219 in_cold_section_p = !in_cold_section_p;
17220 secname = secname_for_decl (decl);
17221 in_cold_section_p = save_in_cold_section_p;
17223 else
17224 secname = secname_for_decl (decl);
17226 for (node = loc_list->first; node; node = node->next)
17228 bool range_across_switch = false;
17229 if (GET_CODE (node->loc) == EXPR_LIST
17230 || NOTE_VAR_LOCATION_LOC (node->loc) != NULL_RTX)
17232 if (GET_CODE (node->loc) == EXPR_LIST)
17234 descr = NULL;
17235 /* This requires DW_OP_{,bit_}piece, which is not usable
17236 inside DWARF expressions. */
17237 if (want_address == 2)
17238 descr = dw_sra_loc_expr (decl, node->loc);
17240 else
17242 initialized = NOTE_VAR_LOCATION_STATUS (node->loc);
17243 varloc = NOTE_VAR_LOCATION (node->loc);
17244 descr = dw_loc_list_1 (decl, varloc, want_address, initialized);
17246 if (descr)
17248 /* If section switch happens in between node->label
17249 and node->next->label (or end of function) and
17250 we can't emit it as a single entry list,
17251 emit two ranges, first one ending at the end
17252 of first partition and second one starting at the
17253 beginning of second partition. */
17254 if (node == loc_list->last_before_switch
17255 && (node != loc_list->first || loc_list->first->next
17256 /* If we are to emit a view number, we will emit
17257 a loclist rather than a single location
17258 expression for the entire function (see
17259 loc_list_has_views), so we have to split the
17260 range that straddles across partitions. */
17261 || !ZERO_VIEW_P (node->view))
17262 && current_function_decl)
17264 endname = cfun->fde->dw_fde_end;
17265 endview = 0;
17266 range_across_switch = true;
17268 /* The variable has a location between NODE->LABEL and
17269 NODE->NEXT->LABEL. */
17270 else if (node->next)
17271 endname = node->next->label, endview = node->next->view;
17272 /* If the variable has a location at the last label
17273 it keeps its location until the end of function. */
17274 else if (!current_function_decl)
17275 endname = text_end_label, endview = 0;
17276 else
17278 ASM_GENERATE_INTERNAL_LABEL (label_id, FUNC_END_LABEL,
17279 current_function_funcdef_no);
17280 endname = ggc_strdup (label_id);
17281 endview = 0;
17284 *listp = new_loc_list (descr, node->label, node->view,
17285 endname, endview, secname);
17286 if (TREE_CODE (decl) == PARM_DECL
17287 && node == loc_list->first
17288 && NOTE_P (node->loc)
17289 && strcmp (node->label, endname) == 0)
17290 (*listp)->force = true;
17291 listp = &(*listp)->dw_loc_next;
17295 if (cfun
17296 && crtl->has_bb_partition
17297 && node == loc_list->last_before_switch)
17299 bool save_in_cold_section_p = in_cold_section_p;
17300 in_cold_section_p = !first_function_block_is_cold;
17301 secname = secname_for_decl (decl);
17302 in_cold_section_p = save_in_cold_section_p;
17305 if (range_across_switch)
17307 if (GET_CODE (node->loc) == EXPR_LIST)
17308 descr = dw_sra_loc_expr (decl, node->loc);
17309 else
17311 initialized = NOTE_VAR_LOCATION_STATUS (node->loc);
17312 varloc = NOTE_VAR_LOCATION (node->loc);
17313 descr = dw_loc_list_1 (decl, varloc, want_address,
17314 initialized);
17316 gcc_assert (descr);
17317 /* The variable has a location between NODE->LABEL and
17318 NODE->NEXT->LABEL. */
17319 if (node->next)
17320 endname = node->next->label, endview = node->next->view;
17321 else
17322 endname = cfun->fde->dw_fde_second_end, endview = 0;
17323 *listp = new_loc_list (descr, cfun->fde->dw_fde_second_begin, 0,
17324 endname, endview, secname);
17325 listp = &(*listp)->dw_loc_next;
17329 /* Try to avoid the overhead of a location list emitting a location
17330 expression instead, but only if we didn't have more than one
17331 location entry in the first place. If some entries were not
17332 representable, we don't want to pretend a single entry that was
17333 applies to the entire scope in which the variable is
17334 available. */
17335 if (list && loc_list->first->next)
17336 gen_llsym (list);
17337 else
17338 maybe_gen_llsym (list);
17340 return list;
17343 /* Return if the loc_list has only single element and thus can be represented
17344 as location description. */
17346 static bool
17347 single_element_loc_list_p (dw_loc_list_ref list)
17349 gcc_assert (!list->dw_loc_next || list->ll_symbol);
17350 return !list->ll_symbol;
17353 /* Duplicate a single element of location list. */
17355 static inline dw_loc_descr_ref
17356 copy_loc_descr (dw_loc_descr_ref ref)
17358 dw_loc_descr_ref copy = ggc_alloc<dw_loc_descr_node> ();
17359 memcpy (copy, ref, sizeof (dw_loc_descr_node));
17360 return copy;
17363 /* To each location in list LIST append loc descr REF. */
17365 static void
17366 add_loc_descr_to_each (dw_loc_list_ref list, dw_loc_descr_ref ref)
17368 dw_loc_descr_ref copy;
17369 add_loc_descr (&list->expr, ref);
17370 list = list->dw_loc_next;
17371 while (list)
17373 copy = copy_loc_descr (ref);
17374 add_loc_descr (&list->expr, copy);
17375 while (copy->dw_loc_next)
17376 copy = copy->dw_loc_next = copy_loc_descr (copy->dw_loc_next);
17377 list = list->dw_loc_next;
17381 /* To each location in list LIST prepend loc descr REF. */
17383 static void
17384 prepend_loc_descr_to_each (dw_loc_list_ref list, dw_loc_descr_ref ref)
17386 dw_loc_descr_ref copy;
17387 dw_loc_descr_ref ref_end = list->expr;
17388 add_loc_descr (&ref, list->expr);
17389 list->expr = ref;
17390 list = list->dw_loc_next;
17391 while (list)
17393 dw_loc_descr_ref end = list->expr;
17394 list->expr = copy = copy_loc_descr (ref);
17395 while (copy->dw_loc_next != ref_end)
17396 copy = copy->dw_loc_next = copy_loc_descr (copy->dw_loc_next);
17397 copy->dw_loc_next = end;
17398 list = list->dw_loc_next;
17402 /* Given two lists RET and LIST
17403 produce location list that is result of adding expression in LIST
17404 to expression in RET on each position in program.
17405 Might be destructive on both RET and LIST.
17407 TODO: We handle only simple cases of RET or LIST having at most one
17408 element. General case would involve sorting the lists in program order
17409 and merging them that will need some additional work.
17410 Adding that will improve quality of debug info especially for SRA-ed
17411 structures. */
17413 static void
17414 add_loc_list (dw_loc_list_ref *ret, dw_loc_list_ref list)
17416 if (!list)
17417 return;
17418 if (!*ret)
17420 *ret = list;
17421 return;
17423 if (!list->dw_loc_next)
17425 add_loc_descr_to_each (*ret, list->expr);
17426 return;
17428 if (!(*ret)->dw_loc_next)
17430 prepend_loc_descr_to_each (list, (*ret)->expr);
17431 *ret = list;
17432 return;
17434 expansion_failed (NULL_TREE, NULL_RTX,
17435 "Don't know how to merge two non-trivial"
17436 " location lists.\n");
17437 *ret = NULL;
17438 return;
17441 /* LOC is constant expression. Try a luck, look it up in constant
17442 pool and return its loc_descr of its address. */
17444 static dw_loc_descr_ref
17445 cst_pool_loc_descr (tree loc)
17447 /* Get an RTL for this, if something has been emitted. */
17448 rtx rtl = lookup_constant_def (loc);
17450 if (!rtl || !MEM_P (rtl))
17452 gcc_assert (!rtl);
17453 return 0;
17455 gcc_assert (GET_CODE (XEXP (rtl, 0)) == SYMBOL_REF);
17457 /* TODO: We might get more coverage if we was actually delaying expansion
17458 of all expressions till end of compilation when constant pools are fully
17459 populated. */
17460 if (!TREE_ASM_WRITTEN (SYMBOL_REF_DECL (XEXP (rtl, 0))))
17462 expansion_failed (loc, NULL_RTX,
17463 "CST value in contant pool but not marked.");
17464 return 0;
17466 return mem_loc_descriptor (XEXP (rtl, 0), get_address_mode (rtl),
17467 GET_MODE (rtl), VAR_INIT_STATUS_INITIALIZED);
17470 /* Return dw_loc_list representing address of addr_expr LOC
17471 by looking for inner INDIRECT_REF expression and turning
17472 it into simple arithmetics.
17474 See loc_list_from_tree for the meaning of CONTEXT. */
17476 static dw_loc_list_ref
17477 loc_list_for_address_of_addr_expr_of_indirect_ref (tree loc, bool toplev,
17478 loc_descr_context *context)
17480 tree obj, offset;
17481 poly_int64 bitsize, bitpos, bytepos;
17482 machine_mode mode;
17483 int unsignedp, reversep, volatilep = 0;
17484 dw_loc_list_ref list_ret = NULL, list_ret1 = NULL;
17486 obj = get_inner_reference (TREE_OPERAND (loc, 0),
17487 &bitsize, &bitpos, &offset, &mode,
17488 &unsignedp, &reversep, &volatilep);
17489 STRIP_NOPS (obj);
17490 if (!multiple_p (bitpos, BITS_PER_UNIT, &bytepos))
17492 expansion_failed (loc, NULL_RTX, "bitfield access");
17493 return 0;
17495 if (!INDIRECT_REF_P (obj))
17497 expansion_failed (obj,
17498 NULL_RTX, "no indirect ref in inner refrence");
17499 return 0;
17501 if (!offset && known_eq (bitpos, 0))
17502 list_ret = loc_list_from_tree (TREE_OPERAND (obj, 0), toplev ? 2 : 1,
17503 context);
17504 else if (toplev
17505 && int_size_in_bytes (TREE_TYPE (loc)) <= DWARF2_ADDR_SIZE
17506 && (dwarf_version >= 4 || !dwarf_strict))
17508 list_ret = loc_list_from_tree (TREE_OPERAND (obj, 0), 0, context);
17509 if (!list_ret)
17510 return 0;
17511 if (offset)
17513 /* Variable offset. */
17514 list_ret1 = loc_list_from_tree (offset, 0, context);
17515 if (list_ret1 == 0)
17516 return 0;
17517 add_loc_list (&list_ret, list_ret1);
17518 if (!list_ret)
17519 return 0;
17520 add_loc_descr_to_each (list_ret,
17521 new_loc_descr (DW_OP_plus, 0, 0));
17523 HOST_WIDE_INT value;
17524 if (bytepos.is_constant (&value) && value > 0)
17525 add_loc_descr_to_each (list_ret,
17526 new_loc_descr (DW_OP_plus_uconst, value, 0));
17527 else if (maybe_ne (bytepos, 0))
17528 loc_list_plus_const (list_ret, bytepos);
17529 add_loc_descr_to_each (list_ret,
17530 new_loc_descr (DW_OP_stack_value, 0, 0));
17532 return list_ret;
17535 /* Set LOC to the next operation that is not a DW_OP_nop operation. In the case
17536 all operations from LOC are nops, move to the last one. Insert in NOPS all
17537 operations that are skipped. */
17539 static void
17540 loc_descr_to_next_no_nop (dw_loc_descr_ref &loc,
17541 hash_set<dw_loc_descr_ref> &nops)
17543 while (loc->dw_loc_next != NULL && loc->dw_loc_opc == DW_OP_nop)
17545 nops.add (loc);
17546 loc = loc->dw_loc_next;
17550 /* Helper for loc_descr_without_nops: free the location description operation
17551 P. */
17553 bool
17554 free_loc_descr (const dw_loc_descr_ref &loc, void *data ATTRIBUTE_UNUSED)
17556 ggc_free (loc);
17557 return true;
17560 /* Remove all DW_OP_nop operations from LOC except, if it exists, the one that
17561 finishes LOC. */
17563 static void
17564 loc_descr_without_nops (dw_loc_descr_ref &loc)
17566 if (loc->dw_loc_opc == DW_OP_nop && loc->dw_loc_next == NULL)
17567 return;
17569 /* Set of all DW_OP_nop operations we remove. */
17570 hash_set<dw_loc_descr_ref> nops;
17572 /* First, strip all prefix NOP operations in order to keep the head of the
17573 operations list. */
17574 loc_descr_to_next_no_nop (loc, nops);
17576 for (dw_loc_descr_ref cur = loc; cur != NULL;)
17578 /* For control flow operations: strip "prefix" nops in destination
17579 labels. */
17580 if (cur->dw_loc_oprnd1.val_class == dw_val_class_loc)
17581 loc_descr_to_next_no_nop (cur->dw_loc_oprnd1.v.val_loc, nops);
17582 if (cur->dw_loc_oprnd2.val_class == dw_val_class_loc)
17583 loc_descr_to_next_no_nop (cur->dw_loc_oprnd2.v.val_loc, nops);
17585 /* Do the same for the operations that follow, then move to the next
17586 iteration. */
17587 if (cur->dw_loc_next != NULL)
17588 loc_descr_to_next_no_nop (cur->dw_loc_next, nops);
17589 cur = cur->dw_loc_next;
17592 nops.traverse<void *, free_loc_descr> (NULL);
17596 struct dwarf_procedure_info;
17598 /* Helper structure for location descriptions generation. */
17599 struct loc_descr_context
17601 /* The type that is implicitly referenced by DW_OP_push_object_address, or
17602 NULL_TREE if DW_OP_push_object_address in invalid for this location
17603 description. This is used when processing PLACEHOLDER_EXPR nodes. */
17604 tree context_type;
17605 /* The ..._DECL node that should be translated as a
17606 DW_OP_push_object_address operation. */
17607 tree base_decl;
17608 /* Information about the DWARF procedure we are currently generating. NULL if
17609 we are not generating a DWARF procedure. */
17610 struct dwarf_procedure_info *dpi;
17611 /* True if integral PLACEHOLDER_EXPR stands for the first argument passed
17612 by consumer. Used for DW_TAG_generic_subrange attributes. */
17613 bool placeholder_arg;
17614 /* True if PLACEHOLDER_EXPR has been seen. */
17615 bool placeholder_seen;
17618 /* DWARF procedures generation
17620 DWARF expressions (aka. location descriptions) are used to encode variable
17621 things such as sizes or offsets. Such computations can have redundant parts
17622 that can be factorized in order to reduce the size of the output debug
17623 information. This is the whole point of DWARF procedures.
17625 Thanks to stor-layout.c, size and offset expressions in GENERIC trees are
17626 already factorized into functions ("size functions") in order to handle very
17627 big and complex types. Such functions are quite simple: they have integral
17628 arguments, they return an integral result and their body contains only a
17629 return statement with arithmetic expressions. This is the only kind of
17630 function we are interested in translating into DWARF procedures, here.
17632 DWARF expressions and DWARF procedure are executed using a stack, so we have
17633 to define some calling convention for them to interact. Let's say that:
17635 - Before calling a DWARF procedure, DWARF expressions must push on the stack
17636 all arguments in reverse order (right-to-left) so that when the DWARF
17637 procedure execution starts, the first argument is the top of the stack.
17639 - Then, when returning, the DWARF procedure must have consumed all arguments
17640 on the stack, must have pushed the result and touched nothing else.
17642 - Each integral argument and the result are integral types can be hold in a
17643 single stack slot.
17645 - We call "frame offset" the number of stack slots that are "under DWARF
17646 procedure control": it includes the arguments slots, the temporaries and
17647 the result slot. Thus, it is equal to the number of arguments when the
17648 procedure execution starts and must be equal to one (the result) when it
17649 returns. */
17651 /* Helper structure used when generating operations for a DWARF procedure. */
17652 struct dwarf_procedure_info
17654 /* The FUNCTION_DECL node corresponding to the DWARF procedure that is
17655 currently translated. */
17656 tree fndecl;
17657 /* The number of arguments FNDECL takes. */
17658 unsigned args_count;
17661 /* Return a pointer to a newly created DIE node for a DWARF procedure. Add
17662 LOCATION as its DW_AT_location attribute. If FNDECL is not NULL_TREE,
17663 equate it to this DIE. */
17665 static dw_die_ref
17666 new_dwarf_proc_die (dw_loc_descr_ref location, tree fndecl,
17667 dw_die_ref parent_die)
17669 dw_die_ref dwarf_proc_die;
17671 if ((dwarf_version < 3 && dwarf_strict)
17672 || location == NULL)
17673 return NULL;
17675 dwarf_proc_die = new_die (DW_TAG_dwarf_procedure, parent_die, fndecl);
17676 if (fndecl)
17677 equate_decl_number_to_die (fndecl, dwarf_proc_die);
17678 add_AT_loc (dwarf_proc_die, DW_AT_location, location);
17679 return dwarf_proc_die;
17682 /* Return whether TYPE is a supported type as a DWARF procedure argument
17683 type or return type (we handle only scalar types and pointer types that
17684 aren't wider than the DWARF expression evaluation stack. */
17686 static bool
17687 is_handled_procedure_type (tree type)
17689 return ((INTEGRAL_TYPE_P (type)
17690 || TREE_CODE (type) == OFFSET_TYPE
17691 || TREE_CODE (type) == POINTER_TYPE)
17692 && int_size_in_bytes (type) <= DWARF2_ADDR_SIZE);
17695 /* Helper for resolve_args_picking: do the same but stop when coming across
17696 visited nodes. For each node we visit, register in FRAME_OFFSETS the frame
17697 offset *before* evaluating the corresponding operation. */
17699 static bool
17700 resolve_args_picking_1 (dw_loc_descr_ref loc, unsigned initial_frame_offset,
17701 struct dwarf_procedure_info *dpi,
17702 hash_map<dw_loc_descr_ref, unsigned> &frame_offsets)
17704 /* The "frame_offset" identifier is already used to name a macro... */
17705 unsigned frame_offset_ = initial_frame_offset;
17706 dw_loc_descr_ref l;
17708 for (l = loc; l != NULL;)
17710 bool existed;
17711 unsigned &l_frame_offset = frame_offsets.get_or_insert (l, &existed);
17713 /* If we already met this node, there is nothing to compute anymore. */
17714 if (existed)
17716 /* Make sure that the stack size is consistent wherever the execution
17717 flow comes from. */
17718 gcc_assert ((unsigned) l_frame_offset == frame_offset_);
17719 break;
17721 l_frame_offset = frame_offset_;
17723 /* If needed, relocate the picking offset with respect to the frame
17724 offset. */
17725 if (l->frame_offset_rel)
17727 unsigned HOST_WIDE_INT off;
17728 switch (l->dw_loc_opc)
17730 case DW_OP_pick:
17731 off = l->dw_loc_oprnd1.v.val_unsigned;
17732 break;
17733 case DW_OP_dup:
17734 off = 0;
17735 break;
17736 case DW_OP_over:
17737 off = 1;
17738 break;
17739 default:
17740 gcc_unreachable ();
17742 /* frame_offset_ is the size of the current stack frame, including
17743 incoming arguments. Besides, the arguments are pushed
17744 right-to-left. Thus, in order to access the Nth argument from
17745 this operation node, the picking has to skip temporaries *plus*
17746 one stack slot per argument (0 for the first one, 1 for the second
17747 one, etc.).
17749 The targetted argument number (N) is already set as the operand,
17750 and the number of temporaries can be computed with:
17751 frame_offsets_ - dpi->args_count */
17752 off += frame_offset_ - dpi->args_count;
17754 /* DW_OP_pick handles only offsets from 0 to 255 (inclusive)... */
17755 if (off > 255)
17756 return false;
17758 if (off == 0)
17760 l->dw_loc_opc = DW_OP_dup;
17761 l->dw_loc_oprnd1.v.val_unsigned = 0;
17763 else if (off == 1)
17765 l->dw_loc_opc = DW_OP_over;
17766 l->dw_loc_oprnd1.v.val_unsigned = 0;
17768 else
17770 l->dw_loc_opc = DW_OP_pick;
17771 l->dw_loc_oprnd1.v.val_unsigned = off;
17775 /* Update frame_offset according to the effect the current operation has
17776 on the stack. */
17777 switch (l->dw_loc_opc)
17779 case DW_OP_deref:
17780 case DW_OP_swap:
17781 case DW_OP_rot:
17782 case DW_OP_abs:
17783 case DW_OP_neg:
17784 case DW_OP_not:
17785 case DW_OP_plus_uconst:
17786 case DW_OP_skip:
17787 case DW_OP_reg0:
17788 case DW_OP_reg1:
17789 case DW_OP_reg2:
17790 case DW_OP_reg3:
17791 case DW_OP_reg4:
17792 case DW_OP_reg5:
17793 case DW_OP_reg6:
17794 case DW_OP_reg7:
17795 case DW_OP_reg8:
17796 case DW_OP_reg9:
17797 case DW_OP_reg10:
17798 case DW_OP_reg11:
17799 case DW_OP_reg12:
17800 case DW_OP_reg13:
17801 case DW_OP_reg14:
17802 case DW_OP_reg15:
17803 case DW_OP_reg16:
17804 case DW_OP_reg17:
17805 case DW_OP_reg18:
17806 case DW_OP_reg19:
17807 case DW_OP_reg20:
17808 case DW_OP_reg21:
17809 case DW_OP_reg22:
17810 case DW_OP_reg23:
17811 case DW_OP_reg24:
17812 case DW_OP_reg25:
17813 case DW_OP_reg26:
17814 case DW_OP_reg27:
17815 case DW_OP_reg28:
17816 case DW_OP_reg29:
17817 case DW_OP_reg30:
17818 case DW_OP_reg31:
17819 case DW_OP_bregx:
17820 case DW_OP_piece:
17821 case DW_OP_deref_size:
17822 case DW_OP_nop:
17823 case DW_OP_bit_piece:
17824 case DW_OP_implicit_value:
17825 case DW_OP_stack_value:
17826 break;
17828 case DW_OP_addr:
17829 case DW_OP_const1u:
17830 case DW_OP_const1s:
17831 case DW_OP_const2u:
17832 case DW_OP_const2s:
17833 case DW_OP_const4u:
17834 case DW_OP_const4s:
17835 case DW_OP_const8u:
17836 case DW_OP_const8s:
17837 case DW_OP_constu:
17838 case DW_OP_consts:
17839 case DW_OP_dup:
17840 case DW_OP_over:
17841 case DW_OP_pick:
17842 case DW_OP_lit0:
17843 case DW_OP_lit1:
17844 case DW_OP_lit2:
17845 case DW_OP_lit3:
17846 case DW_OP_lit4:
17847 case DW_OP_lit5:
17848 case DW_OP_lit6:
17849 case DW_OP_lit7:
17850 case DW_OP_lit8:
17851 case DW_OP_lit9:
17852 case DW_OP_lit10:
17853 case DW_OP_lit11:
17854 case DW_OP_lit12:
17855 case DW_OP_lit13:
17856 case DW_OP_lit14:
17857 case DW_OP_lit15:
17858 case DW_OP_lit16:
17859 case DW_OP_lit17:
17860 case DW_OP_lit18:
17861 case DW_OP_lit19:
17862 case DW_OP_lit20:
17863 case DW_OP_lit21:
17864 case DW_OP_lit22:
17865 case DW_OP_lit23:
17866 case DW_OP_lit24:
17867 case DW_OP_lit25:
17868 case DW_OP_lit26:
17869 case DW_OP_lit27:
17870 case DW_OP_lit28:
17871 case DW_OP_lit29:
17872 case DW_OP_lit30:
17873 case DW_OP_lit31:
17874 case DW_OP_breg0:
17875 case DW_OP_breg1:
17876 case DW_OP_breg2:
17877 case DW_OP_breg3:
17878 case DW_OP_breg4:
17879 case DW_OP_breg5:
17880 case DW_OP_breg6:
17881 case DW_OP_breg7:
17882 case DW_OP_breg8:
17883 case DW_OP_breg9:
17884 case DW_OP_breg10:
17885 case DW_OP_breg11:
17886 case DW_OP_breg12:
17887 case DW_OP_breg13:
17888 case DW_OP_breg14:
17889 case DW_OP_breg15:
17890 case DW_OP_breg16:
17891 case DW_OP_breg17:
17892 case DW_OP_breg18:
17893 case DW_OP_breg19:
17894 case DW_OP_breg20:
17895 case DW_OP_breg21:
17896 case DW_OP_breg22:
17897 case DW_OP_breg23:
17898 case DW_OP_breg24:
17899 case DW_OP_breg25:
17900 case DW_OP_breg26:
17901 case DW_OP_breg27:
17902 case DW_OP_breg28:
17903 case DW_OP_breg29:
17904 case DW_OP_breg30:
17905 case DW_OP_breg31:
17906 case DW_OP_fbreg:
17907 case DW_OP_push_object_address:
17908 case DW_OP_call_frame_cfa:
17909 case DW_OP_GNU_variable_value:
17910 case DW_OP_GNU_addr_index:
17911 case DW_OP_GNU_const_index:
17912 ++frame_offset_;
17913 break;
17915 case DW_OP_drop:
17916 case DW_OP_xderef:
17917 case DW_OP_and:
17918 case DW_OP_div:
17919 case DW_OP_minus:
17920 case DW_OP_mod:
17921 case DW_OP_mul:
17922 case DW_OP_or:
17923 case DW_OP_plus:
17924 case DW_OP_shl:
17925 case DW_OP_shr:
17926 case DW_OP_shra:
17927 case DW_OP_xor:
17928 case DW_OP_bra:
17929 case DW_OP_eq:
17930 case DW_OP_ge:
17931 case DW_OP_gt:
17932 case DW_OP_le:
17933 case DW_OP_lt:
17934 case DW_OP_ne:
17935 case DW_OP_regx:
17936 case DW_OP_xderef_size:
17937 --frame_offset_;
17938 break;
17940 case DW_OP_call2:
17941 case DW_OP_call4:
17942 case DW_OP_call_ref:
17944 dw_die_ref dwarf_proc = l->dw_loc_oprnd1.v.val_die_ref.die;
17945 int *stack_usage = dwarf_proc_stack_usage_map->get (dwarf_proc);
17947 if (stack_usage == NULL)
17948 return false;
17949 frame_offset_ += *stack_usage;
17950 break;
17953 case DW_OP_implicit_pointer:
17954 case DW_OP_entry_value:
17955 case DW_OP_const_type:
17956 case DW_OP_regval_type:
17957 case DW_OP_deref_type:
17958 case DW_OP_convert:
17959 case DW_OP_reinterpret:
17960 case DW_OP_form_tls_address:
17961 case DW_OP_GNU_push_tls_address:
17962 case DW_OP_GNU_uninit:
17963 case DW_OP_GNU_encoded_addr:
17964 case DW_OP_GNU_implicit_pointer:
17965 case DW_OP_GNU_entry_value:
17966 case DW_OP_GNU_const_type:
17967 case DW_OP_GNU_regval_type:
17968 case DW_OP_GNU_deref_type:
17969 case DW_OP_GNU_convert:
17970 case DW_OP_GNU_reinterpret:
17971 case DW_OP_GNU_parameter_ref:
17972 /* loc_list_from_tree will probably not output these operations for
17973 size functions, so assume they will not appear here. */
17974 /* Fall through... */
17976 default:
17977 gcc_unreachable ();
17980 /* Now, follow the control flow (except subroutine calls). */
17981 switch (l->dw_loc_opc)
17983 case DW_OP_bra:
17984 if (!resolve_args_picking_1 (l->dw_loc_next, frame_offset_, dpi,
17985 frame_offsets))
17986 return false;
17987 /* Fall through. */
17989 case DW_OP_skip:
17990 l = l->dw_loc_oprnd1.v.val_loc;
17991 break;
17993 case DW_OP_stack_value:
17994 return true;
17996 default:
17997 l = l->dw_loc_next;
17998 break;
18002 return true;
18005 /* Make a DFS over operations reachable through LOC (i.e. follow branch
18006 operations) in order to resolve the operand of DW_OP_pick operations that
18007 target DWARF procedure arguments (DPI). INITIAL_FRAME_OFFSET is the frame
18008 offset *before* LOC is executed. Return if all relocations were
18009 successful. */
18011 static bool
18012 resolve_args_picking (dw_loc_descr_ref loc, unsigned initial_frame_offset,
18013 struct dwarf_procedure_info *dpi)
18015 /* Associate to all visited operations the frame offset *before* evaluating
18016 this operation. */
18017 hash_map<dw_loc_descr_ref, unsigned> frame_offsets;
18019 return resolve_args_picking_1 (loc, initial_frame_offset, dpi,
18020 frame_offsets);
18023 /* Try to generate a DWARF procedure that computes the same result as FNDECL.
18024 Return NULL if it is not possible. */
18026 static dw_die_ref
18027 function_to_dwarf_procedure (tree fndecl)
18029 struct loc_descr_context ctx;
18030 struct dwarf_procedure_info dpi;
18031 dw_die_ref dwarf_proc_die;
18032 tree tree_body = DECL_SAVED_TREE (fndecl);
18033 dw_loc_descr_ref loc_body, epilogue;
18035 tree cursor;
18036 unsigned i;
18038 /* Do not generate multiple DWARF procedures for the same function
18039 declaration. */
18040 dwarf_proc_die = lookup_decl_die (fndecl);
18041 if (dwarf_proc_die != NULL)
18042 return dwarf_proc_die;
18044 /* DWARF procedures are available starting with the DWARFv3 standard. */
18045 if (dwarf_version < 3 && dwarf_strict)
18046 return NULL;
18048 /* We handle only functions for which we still have a body, that return a
18049 supported type and that takes arguments with supported types. Note that
18050 there is no point translating functions that return nothing. */
18051 if (tree_body == NULL_TREE
18052 || DECL_RESULT (fndecl) == NULL_TREE
18053 || !is_handled_procedure_type (TREE_TYPE (DECL_RESULT (fndecl))))
18054 return NULL;
18056 for (cursor = DECL_ARGUMENTS (fndecl);
18057 cursor != NULL_TREE;
18058 cursor = TREE_CHAIN (cursor))
18059 if (!is_handled_procedure_type (TREE_TYPE (cursor)))
18060 return NULL;
18062 /* Match only "expr" in: RETURN_EXPR (MODIFY_EXPR (RESULT_DECL, expr)). */
18063 if (TREE_CODE (tree_body) != RETURN_EXPR)
18064 return NULL;
18065 tree_body = TREE_OPERAND (tree_body, 0);
18066 if (TREE_CODE (tree_body) != MODIFY_EXPR
18067 || TREE_OPERAND (tree_body, 0) != DECL_RESULT (fndecl))
18068 return NULL;
18069 tree_body = TREE_OPERAND (tree_body, 1);
18071 /* Try to translate the body expression itself. Note that this will probably
18072 cause an infinite recursion if its call graph has a cycle. This is very
18073 unlikely for size functions, however, so don't bother with such things at
18074 the moment. */
18075 ctx.context_type = NULL_TREE;
18076 ctx.base_decl = NULL_TREE;
18077 ctx.dpi = &dpi;
18078 ctx.placeholder_arg = false;
18079 ctx.placeholder_seen = false;
18080 dpi.fndecl = fndecl;
18081 dpi.args_count = list_length (DECL_ARGUMENTS (fndecl));
18082 loc_body = loc_descriptor_from_tree (tree_body, 0, &ctx);
18083 if (!loc_body)
18084 return NULL;
18086 /* After evaluating all operands in "loc_body", we should still have on the
18087 stack all arguments plus the desired function result (top of the stack).
18088 Generate code in order to keep only the result in our stack frame. */
18089 epilogue = NULL;
18090 for (i = 0; i < dpi.args_count; ++i)
18092 dw_loc_descr_ref op_couple = new_loc_descr (DW_OP_swap, 0, 0);
18093 op_couple->dw_loc_next = new_loc_descr (DW_OP_drop, 0, 0);
18094 op_couple->dw_loc_next->dw_loc_next = epilogue;
18095 epilogue = op_couple;
18097 add_loc_descr (&loc_body, epilogue);
18098 if (!resolve_args_picking (loc_body, dpi.args_count, &dpi))
18099 return NULL;
18101 /* Trailing nops from loc_descriptor_from_tree (if any) cannot be removed
18102 because they are considered useful. Now there is an epilogue, they are
18103 not anymore, so give it another try. */
18104 loc_descr_without_nops (loc_body);
18106 /* fndecl may be used both as a regular DW_TAG_subprogram DIE and as
18107 a DW_TAG_dwarf_procedure, so we may have a conflict, here. It's unlikely,
18108 though, given that size functions do not come from source, so they should
18109 not have a dedicated DW_TAG_subprogram DIE. */
18110 dwarf_proc_die
18111 = new_dwarf_proc_die (loc_body, fndecl,
18112 get_context_die (DECL_CONTEXT (fndecl)));
18114 /* The called DWARF procedure consumes one stack slot per argument and
18115 returns one stack slot. */
18116 dwarf_proc_stack_usage_map->put (dwarf_proc_die, 1 - dpi.args_count);
18118 return dwarf_proc_die;
18122 /* Generate Dwarf location list representing LOC.
18123 If WANT_ADDRESS is false, expression computing LOC will be computed
18124 If WANT_ADDRESS is 1, expression computing address of LOC will be returned
18125 if WANT_ADDRESS is 2, expression computing address useable in location
18126 will be returned (i.e. DW_OP_reg can be used
18127 to refer to register values).
18129 CONTEXT provides information to customize the location descriptions
18130 generation. Its context_type field specifies what type is implicitly
18131 referenced by DW_OP_push_object_address. If it is NULL_TREE, this operation
18132 will not be generated.
18134 Its DPI field determines whether we are generating a DWARF expression for a
18135 DWARF procedure, so PARM_DECL references are processed specifically.
18137 If CONTEXT is NULL, the behavior is the same as if context_type, base_decl
18138 and dpi fields were null. */
18140 static dw_loc_list_ref
18141 loc_list_from_tree_1 (tree loc, int want_address,
18142 struct loc_descr_context *context)
18144 dw_loc_descr_ref ret = NULL, ret1 = NULL;
18145 dw_loc_list_ref list_ret = NULL, list_ret1 = NULL;
18146 int have_address = 0;
18147 enum dwarf_location_atom op;
18149 /* ??? Most of the time we do not take proper care for sign/zero
18150 extending the values properly. Hopefully this won't be a real
18151 problem... */
18153 if (context != NULL
18154 && context->base_decl == loc
18155 && want_address == 0)
18157 if (dwarf_version >= 3 || !dwarf_strict)
18158 return new_loc_list (new_loc_descr (DW_OP_push_object_address, 0, 0),
18159 NULL, 0, NULL, 0, NULL);
18160 else
18161 return NULL;
18164 switch (TREE_CODE (loc))
18166 case ERROR_MARK:
18167 expansion_failed (loc, NULL_RTX, "ERROR_MARK");
18168 return 0;
18170 case PLACEHOLDER_EXPR:
18171 /* This case involves extracting fields from an object to determine the
18172 position of other fields. It is supposed to appear only as the first
18173 operand of COMPONENT_REF nodes and to reference precisely the type
18174 that the context allows. */
18175 if (context != NULL
18176 && TREE_TYPE (loc) == context->context_type
18177 && want_address >= 1)
18179 if (dwarf_version >= 3 || !dwarf_strict)
18181 ret = new_loc_descr (DW_OP_push_object_address, 0, 0);
18182 have_address = 1;
18183 break;
18185 else
18186 return NULL;
18188 /* For DW_TAG_generic_subrange attributes, PLACEHOLDER_EXPR stands for
18189 the single argument passed by consumer. */
18190 else if (context != NULL
18191 && context->placeholder_arg
18192 && INTEGRAL_TYPE_P (TREE_TYPE (loc))
18193 && want_address == 0)
18195 ret = new_loc_descr (DW_OP_pick, 0, 0);
18196 ret->frame_offset_rel = 1;
18197 context->placeholder_seen = true;
18198 break;
18200 else
18201 expansion_failed (loc, NULL_RTX,
18202 "PLACEHOLDER_EXPR for an unexpected type");
18203 break;
18205 case CALL_EXPR:
18207 const int nargs = call_expr_nargs (loc);
18208 tree callee = get_callee_fndecl (loc);
18209 int i;
18210 dw_die_ref dwarf_proc;
18212 if (callee == NULL_TREE)
18213 goto call_expansion_failed;
18215 /* We handle only functions that return an integer. */
18216 if (!is_handled_procedure_type (TREE_TYPE (TREE_TYPE (callee))))
18217 goto call_expansion_failed;
18219 dwarf_proc = function_to_dwarf_procedure (callee);
18220 if (dwarf_proc == NULL)
18221 goto call_expansion_failed;
18223 /* Evaluate arguments right-to-left so that the first argument will
18224 be the top-most one on the stack. */
18225 for (i = nargs - 1; i >= 0; --i)
18227 dw_loc_descr_ref loc_descr
18228 = loc_descriptor_from_tree (CALL_EXPR_ARG (loc, i), 0,
18229 context);
18231 if (loc_descr == NULL)
18232 goto call_expansion_failed;
18234 add_loc_descr (&ret, loc_descr);
18237 ret1 = new_loc_descr (DW_OP_call4, 0, 0);
18238 ret1->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
18239 ret1->dw_loc_oprnd1.v.val_die_ref.die = dwarf_proc;
18240 ret1->dw_loc_oprnd1.v.val_die_ref.external = 0;
18241 add_loc_descr (&ret, ret1);
18242 break;
18244 call_expansion_failed:
18245 expansion_failed (loc, NULL_RTX, "CALL_EXPR");
18246 /* There are no opcodes for these operations. */
18247 return 0;
18250 case PREINCREMENT_EXPR:
18251 case PREDECREMENT_EXPR:
18252 case POSTINCREMENT_EXPR:
18253 case POSTDECREMENT_EXPR:
18254 expansion_failed (loc, NULL_RTX, "PRE/POST INDCREMENT/DECREMENT");
18255 /* There are no opcodes for these operations. */
18256 return 0;
18258 case ADDR_EXPR:
18259 /* If we already want an address, see if there is INDIRECT_REF inside
18260 e.g. for &this->field. */
18261 if (want_address)
18263 list_ret = loc_list_for_address_of_addr_expr_of_indirect_ref
18264 (loc, want_address == 2, context);
18265 if (list_ret)
18266 have_address = 1;
18267 else if (decl_address_ip_invariant_p (TREE_OPERAND (loc, 0))
18268 && (ret = cst_pool_loc_descr (loc)))
18269 have_address = 1;
18271 /* Otherwise, process the argument and look for the address. */
18272 if (!list_ret && !ret)
18273 list_ret = loc_list_from_tree_1 (TREE_OPERAND (loc, 0), 1, context);
18274 else
18276 if (want_address)
18277 expansion_failed (loc, NULL_RTX, "need address of ADDR_EXPR");
18278 return NULL;
18280 break;
18282 case VAR_DECL:
18283 if (DECL_THREAD_LOCAL_P (loc))
18285 rtx rtl;
18286 enum dwarf_location_atom tls_op;
18287 enum dtprel_bool dtprel = dtprel_false;
18289 if (targetm.have_tls)
18291 /* If this is not defined, we have no way to emit the
18292 data. */
18293 if (!targetm.asm_out.output_dwarf_dtprel)
18294 return 0;
18296 /* The way DW_OP_GNU_push_tls_address is specified, we
18297 can only look up addresses of objects in the current
18298 module. We used DW_OP_addr as first op, but that's
18299 wrong, because DW_OP_addr is relocated by the debug
18300 info consumer, while DW_OP_GNU_push_tls_address
18301 operand shouldn't be. */
18302 if (DECL_EXTERNAL (loc) && !targetm.binds_local_p (loc))
18303 return 0;
18304 dtprel = dtprel_true;
18305 /* We check for DWARF 5 here because gdb did not implement
18306 DW_OP_form_tls_address until after 7.12. */
18307 tls_op = (dwarf_version >= 5 ? DW_OP_form_tls_address
18308 : DW_OP_GNU_push_tls_address);
18310 else
18312 if (!targetm.emutls.debug_form_tls_address
18313 || !(dwarf_version >= 3 || !dwarf_strict))
18314 return 0;
18315 /* We stuffed the control variable into the DECL_VALUE_EXPR
18316 to signal (via DECL_HAS_VALUE_EXPR_P) that the decl should
18317 no longer appear in gimple code. We used the control
18318 variable in specific so that we could pick it up here. */
18319 loc = DECL_VALUE_EXPR (loc);
18320 tls_op = DW_OP_form_tls_address;
18323 rtl = rtl_for_decl_location (loc);
18324 if (rtl == NULL_RTX)
18325 return 0;
18327 if (!MEM_P (rtl))
18328 return 0;
18329 rtl = XEXP (rtl, 0);
18330 if (! CONSTANT_P (rtl))
18331 return 0;
18333 ret = new_addr_loc_descr (rtl, dtprel);
18334 ret1 = new_loc_descr (tls_op, 0, 0);
18335 add_loc_descr (&ret, ret1);
18337 have_address = 1;
18338 break;
18340 /* FALLTHRU */
18342 case PARM_DECL:
18343 if (context != NULL && context->dpi != NULL
18344 && DECL_CONTEXT (loc) == context->dpi->fndecl)
18346 /* We are generating code for a DWARF procedure and we want to access
18347 one of its arguments: find the appropriate argument offset and let
18348 the resolve_args_picking pass compute the offset that complies
18349 with the stack frame size. */
18350 unsigned i = 0;
18351 tree cursor;
18353 for (cursor = DECL_ARGUMENTS (context->dpi->fndecl);
18354 cursor != NULL_TREE && cursor != loc;
18355 cursor = TREE_CHAIN (cursor), ++i)
18357 /* If we are translating a DWARF procedure, all referenced parameters
18358 must belong to the current function. */
18359 gcc_assert (cursor != NULL_TREE);
18361 ret = new_loc_descr (DW_OP_pick, i, 0);
18362 ret->frame_offset_rel = 1;
18363 break;
18365 /* FALLTHRU */
18367 case RESULT_DECL:
18368 if (DECL_HAS_VALUE_EXPR_P (loc))
18369 return loc_list_from_tree_1 (DECL_VALUE_EXPR (loc),
18370 want_address, context);
18371 /* FALLTHRU */
18373 case FUNCTION_DECL:
18375 rtx rtl;
18376 var_loc_list *loc_list = lookup_decl_loc (loc);
18378 if (loc_list && loc_list->first)
18380 list_ret = dw_loc_list (loc_list, loc, want_address);
18381 have_address = want_address != 0;
18382 break;
18384 rtl = rtl_for_decl_location (loc);
18385 if (rtl == NULL_RTX)
18387 if (TREE_CODE (loc) != FUNCTION_DECL
18388 && early_dwarf
18389 && current_function_decl
18390 && want_address != 1
18391 && ! DECL_IGNORED_P (loc)
18392 && (INTEGRAL_TYPE_P (TREE_TYPE (loc))
18393 || POINTER_TYPE_P (TREE_TYPE (loc)))
18394 && DECL_CONTEXT (loc) == current_function_decl
18395 && (GET_MODE_SIZE (SCALAR_INT_TYPE_MODE (TREE_TYPE (loc)))
18396 <= DWARF2_ADDR_SIZE))
18398 dw_die_ref ref = lookup_decl_die (loc);
18399 ret = new_loc_descr (DW_OP_GNU_variable_value, 0, 0);
18400 if (ref)
18402 ret->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
18403 ret->dw_loc_oprnd1.v.val_die_ref.die = ref;
18404 ret->dw_loc_oprnd1.v.val_die_ref.external = 0;
18406 else
18408 ret->dw_loc_oprnd1.val_class = dw_val_class_decl_ref;
18409 ret->dw_loc_oprnd1.v.val_decl_ref = loc;
18411 break;
18413 expansion_failed (loc, NULL_RTX, "DECL has no RTL");
18414 return 0;
18416 else if (CONST_INT_P (rtl))
18418 HOST_WIDE_INT val = INTVAL (rtl);
18419 if (TYPE_UNSIGNED (TREE_TYPE (loc)))
18420 val &= GET_MODE_MASK (DECL_MODE (loc));
18421 ret = int_loc_descriptor (val);
18423 else if (GET_CODE (rtl) == CONST_STRING)
18425 expansion_failed (loc, NULL_RTX, "CONST_STRING");
18426 return 0;
18428 else if (CONSTANT_P (rtl) && const_ok_for_output (rtl))
18429 ret = new_addr_loc_descr (rtl, dtprel_false);
18430 else
18432 machine_mode mode, mem_mode;
18434 /* Certain constructs can only be represented at top-level. */
18435 if (want_address == 2)
18437 ret = loc_descriptor (rtl, VOIDmode,
18438 VAR_INIT_STATUS_INITIALIZED);
18439 have_address = 1;
18441 else
18443 mode = GET_MODE (rtl);
18444 mem_mode = VOIDmode;
18445 if (MEM_P (rtl))
18447 mem_mode = mode;
18448 mode = get_address_mode (rtl);
18449 rtl = XEXP (rtl, 0);
18450 have_address = 1;
18452 ret = mem_loc_descriptor (rtl, mode, mem_mode,
18453 VAR_INIT_STATUS_INITIALIZED);
18455 if (!ret)
18456 expansion_failed (loc, rtl,
18457 "failed to produce loc descriptor for rtl");
18460 break;
18462 case MEM_REF:
18463 if (!integer_zerop (TREE_OPERAND (loc, 1)))
18465 have_address = 1;
18466 goto do_plus;
18468 /* Fallthru. */
18469 case INDIRECT_REF:
18470 list_ret = loc_list_from_tree_1 (TREE_OPERAND (loc, 0), 0, context);
18471 have_address = 1;
18472 break;
18474 case TARGET_MEM_REF:
18475 case SSA_NAME:
18476 case DEBUG_EXPR_DECL:
18477 return NULL;
18479 case COMPOUND_EXPR:
18480 return loc_list_from_tree_1 (TREE_OPERAND (loc, 1), want_address,
18481 context);
18483 CASE_CONVERT:
18484 case VIEW_CONVERT_EXPR:
18485 case SAVE_EXPR:
18486 case MODIFY_EXPR:
18487 case NON_LVALUE_EXPR:
18488 return loc_list_from_tree_1 (TREE_OPERAND (loc, 0), want_address,
18489 context);
18491 case COMPONENT_REF:
18492 case BIT_FIELD_REF:
18493 case ARRAY_REF:
18494 case ARRAY_RANGE_REF:
18495 case REALPART_EXPR:
18496 case IMAGPART_EXPR:
18498 tree obj, offset;
18499 poly_int64 bitsize, bitpos, bytepos;
18500 machine_mode mode;
18501 int unsignedp, reversep, volatilep = 0;
18503 obj = get_inner_reference (loc, &bitsize, &bitpos, &offset, &mode,
18504 &unsignedp, &reversep, &volatilep);
18506 gcc_assert (obj != loc);
18508 list_ret = loc_list_from_tree_1 (obj,
18509 want_address == 2
18510 && known_eq (bitpos, 0)
18511 && !offset ? 2 : 1,
18512 context);
18513 /* TODO: We can extract value of the small expression via shifting even
18514 for nonzero bitpos. */
18515 if (list_ret == 0)
18516 return 0;
18517 if (!multiple_p (bitpos, BITS_PER_UNIT, &bytepos)
18518 || !multiple_p (bitsize, BITS_PER_UNIT))
18520 expansion_failed (loc, NULL_RTX,
18521 "bitfield access");
18522 return 0;
18525 if (offset != NULL_TREE)
18527 /* Variable offset. */
18528 list_ret1 = loc_list_from_tree_1 (offset, 0, context);
18529 if (list_ret1 == 0)
18530 return 0;
18531 add_loc_list (&list_ret, list_ret1);
18532 if (!list_ret)
18533 return 0;
18534 add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_plus, 0, 0));
18537 HOST_WIDE_INT value;
18538 if (bytepos.is_constant (&value) && value > 0)
18539 add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_plus_uconst,
18540 value, 0));
18541 else if (maybe_ne (bytepos, 0))
18542 loc_list_plus_const (list_ret, bytepos);
18544 have_address = 1;
18545 break;
18548 case INTEGER_CST:
18549 if ((want_address || !tree_fits_shwi_p (loc))
18550 && (ret = cst_pool_loc_descr (loc)))
18551 have_address = 1;
18552 else if (want_address == 2
18553 && tree_fits_shwi_p (loc)
18554 && (ret = address_of_int_loc_descriptor
18555 (int_size_in_bytes (TREE_TYPE (loc)),
18556 tree_to_shwi (loc))))
18557 have_address = 1;
18558 else if (tree_fits_shwi_p (loc))
18559 ret = int_loc_descriptor (tree_to_shwi (loc));
18560 else if (tree_fits_uhwi_p (loc))
18561 ret = uint_loc_descriptor (tree_to_uhwi (loc));
18562 else
18564 expansion_failed (loc, NULL_RTX,
18565 "Integer operand is not host integer");
18566 return 0;
18568 break;
18570 case POLY_INT_CST:
18572 if (want_address)
18574 expansion_failed (loc, NULL_RTX,
18575 "constant address with a runtime component");
18576 return 0;
18578 poly_int64 value;
18579 if (!poly_int_tree_p (loc, &value))
18581 expansion_failed (loc, NULL_RTX, "constant too big");
18582 return 0;
18584 ret = int_loc_descriptor (value);
18586 break;
18588 case CONSTRUCTOR:
18589 case REAL_CST:
18590 case STRING_CST:
18591 case COMPLEX_CST:
18592 if ((ret = cst_pool_loc_descr (loc)))
18593 have_address = 1;
18594 else if (TREE_CODE (loc) == CONSTRUCTOR)
18596 tree type = TREE_TYPE (loc);
18597 unsigned HOST_WIDE_INT size = int_size_in_bytes (type);
18598 unsigned HOST_WIDE_INT offset = 0;
18599 unsigned HOST_WIDE_INT cnt;
18600 constructor_elt *ce;
18602 if (TREE_CODE (type) == RECORD_TYPE)
18604 /* This is very limited, but it's enough to output
18605 pointers to member functions, as long as the
18606 referenced function is defined in the current
18607 translation unit. */
18608 FOR_EACH_VEC_SAFE_ELT (CONSTRUCTOR_ELTS (loc), cnt, ce)
18610 tree val = ce->value;
18612 tree field = ce->index;
18614 if (val)
18615 STRIP_NOPS (val);
18617 if (!field || DECL_BIT_FIELD (field))
18619 expansion_failed (loc, NULL_RTX,
18620 "bitfield in record type constructor");
18621 size = offset = (unsigned HOST_WIDE_INT)-1;
18622 ret = NULL;
18623 break;
18626 HOST_WIDE_INT fieldsize = tree_to_shwi (DECL_SIZE_UNIT (field));
18627 unsigned HOST_WIDE_INT pos = int_byte_position (field);
18628 gcc_assert (pos + fieldsize <= size);
18629 if (pos < offset)
18631 expansion_failed (loc, NULL_RTX,
18632 "out-of-order fields in record constructor");
18633 size = offset = (unsigned HOST_WIDE_INT)-1;
18634 ret = NULL;
18635 break;
18637 if (pos > offset)
18639 ret1 = new_loc_descr (DW_OP_piece, pos - offset, 0);
18640 add_loc_descr (&ret, ret1);
18641 offset = pos;
18643 if (val && fieldsize != 0)
18645 ret1 = loc_descriptor_from_tree (val, want_address, context);
18646 if (!ret1)
18648 expansion_failed (loc, NULL_RTX,
18649 "unsupported expression in field");
18650 size = offset = (unsigned HOST_WIDE_INT)-1;
18651 ret = NULL;
18652 break;
18654 add_loc_descr (&ret, ret1);
18656 if (fieldsize)
18658 ret1 = new_loc_descr (DW_OP_piece, fieldsize, 0);
18659 add_loc_descr (&ret, ret1);
18660 offset = pos + fieldsize;
18664 if (offset != size)
18666 ret1 = new_loc_descr (DW_OP_piece, size - offset, 0);
18667 add_loc_descr (&ret, ret1);
18668 offset = size;
18671 have_address = !!want_address;
18673 else
18674 expansion_failed (loc, NULL_RTX,
18675 "constructor of non-record type");
18677 else
18678 /* We can construct small constants here using int_loc_descriptor. */
18679 expansion_failed (loc, NULL_RTX,
18680 "constructor or constant not in constant pool");
18681 break;
18683 case TRUTH_AND_EXPR:
18684 case TRUTH_ANDIF_EXPR:
18685 case BIT_AND_EXPR:
18686 op = DW_OP_and;
18687 goto do_binop;
18689 case TRUTH_XOR_EXPR:
18690 case BIT_XOR_EXPR:
18691 op = DW_OP_xor;
18692 goto do_binop;
18694 case TRUTH_OR_EXPR:
18695 case TRUTH_ORIF_EXPR:
18696 case BIT_IOR_EXPR:
18697 op = DW_OP_or;
18698 goto do_binop;
18700 case FLOOR_DIV_EXPR:
18701 case CEIL_DIV_EXPR:
18702 case ROUND_DIV_EXPR:
18703 case TRUNC_DIV_EXPR:
18704 case EXACT_DIV_EXPR:
18705 if (TYPE_UNSIGNED (TREE_TYPE (loc)))
18706 return 0;
18707 op = DW_OP_div;
18708 goto do_binop;
18710 case MINUS_EXPR:
18711 op = DW_OP_minus;
18712 goto do_binop;
18714 case FLOOR_MOD_EXPR:
18715 case CEIL_MOD_EXPR:
18716 case ROUND_MOD_EXPR:
18717 case TRUNC_MOD_EXPR:
18718 if (TYPE_UNSIGNED (TREE_TYPE (loc)))
18720 op = DW_OP_mod;
18721 goto do_binop;
18723 list_ret = loc_list_from_tree_1 (TREE_OPERAND (loc, 0), 0, context);
18724 list_ret1 = loc_list_from_tree_1 (TREE_OPERAND (loc, 1), 0, context);
18725 if (list_ret == 0 || list_ret1 == 0)
18726 return 0;
18728 add_loc_list (&list_ret, list_ret1);
18729 if (list_ret == 0)
18730 return 0;
18731 add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_over, 0, 0));
18732 add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_over, 0, 0));
18733 add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_div, 0, 0));
18734 add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_mul, 0, 0));
18735 add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_minus, 0, 0));
18736 break;
18738 case MULT_EXPR:
18739 op = DW_OP_mul;
18740 goto do_binop;
18742 case LSHIFT_EXPR:
18743 op = DW_OP_shl;
18744 goto do_binop;
18746 case RSHIFT_EXPR:
18747 op = (TYPE_UNSIGNED (TREE_TYPE (loc)) ? DW_OP_shr : DW_OP_shra);
18748 goto do_binop;
18750 case POINTER_PLUS_EXPR:
18751 case PLUS_EXPR:
18752 do_plus:
18753 if (tree_fits_shwi_p (TREE_OPERAND (loc, 1)))
18755 /* Big unsigned numbers can fit in HOST_WIDE_INT but it may be
18756 smarter to encode their opposite. The DW_OP_plus_uconst operation
18757 takes 1 + X bytes, X being the size of the ULEB128 addend. On the
18758 other hand, a "<push literal>; DW_OP_minus" pattern takes 1 + Y
18759 bytes, Y being the size of the operation that pushes the opposite
18760 of the addend. So let's choose the smallest representation. */
18761 const tree tree_addend = TREE_OPERAND (loc, 1);
18762 offset_int wi_addend;
18763 HOST_WIDE_INT shwi_addend;
18764 dw_loc_descr_ref loc_naddend;
18766 list_ret = loc_list_from_tree_1 (TREE_OPERAND (loc, 0), 0, context);
18767 if (list_ret == 0)
18768 return 0;
18770 /* Try to get the literal to push. It is the opposite of the addend,
18771 so as we rely on wrapping during DWARF evaluation, first decode
18772 the literal as a "DWARF-sized" signed number. */
18773 wi_addend = wi::to_offset (tree_addend);
18774 wi_addend = wi::sext (wi_addend, DWARF2_ADDR_SIZE * 8);
18775 shwi_addend = wi_addend.to_shwi ();
18776 loc_naddend = (shwi_addend != INTTYPE_MINIMUM (HOST_WIDE_INT))
18777 ? int_loc_descriptor (-shwi_addend)
18778 : NULL;
18780 if (loc_naddend != NULL
18781 && ((unsigned) size_of_uleb128 (shwi_addend)
18782 > size_of_loc_descr (loc_naddend)))
18784 add_loc_descr_to_each (list_ret, loc_naddend);
18785 add_loc_descr_to_each (list_ret,
18786 new_loc_descr (DW_OP_minus, 0, 0));
18788 else
18790 for (dw_loc_descr_ref loc_cur = loc_naddend; loc_cur != NULL; )
18792 loc_naddend = loc_cur;
18793 loc_cur = loc_cur->dw_loc_next;
18794 ggc_free (loc_naddend);
18796 loc_list_plus_const (list_ret, wi_addend.to_shwi ());
18798 break;
18801 op = DW_OP_plus;
18802 goto do_binop;
18804 case LE_EXPR:
18805 op = DW_OP_le;
18806 goto do_comp_binop;
18808 case GE_EXPR:
18809 op = DW_OP_ge;
18810 goto do_comp_binop;
18812 case LT_EXPR:
18813 op = DW_OP_lt;
18814 goto do_comp_binop;
18816 case GT_EXPR:
18817 op = DW_OP_gt;
18818 goto do_comp_binop;
18820 do_comp_binop:
18821 if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc, 0))))
18823 list_ret = loc_list_from_tree (TREE_OPERAND (loc, 0), 0, context);
18824 list_ret1 = loc_list_from_tree (TREE_OPERAND (loc, 1), 0, context);
18825 list_ret = loc_list_from_uint_comparison (list_ret, list_ret1,
18826 TREE_CODE (loc));
18827 break;
18829 else
18830 goto do_binop;
18832 case EQ_EXPR:
18833 op = DW_OP_eq;
18834 goto do_binop;
18836 case NE_EXPR:
18837 op = DW_OP_ne;
18838 goto do_binop;
18840 do_binop:
18841 list_ret = loc_list_from_tree_1 (TREE_OPERAND (loc, 0), 0, context);
18842 list_ret1 = loc_list_from_tree_1 (TREE_OPERAND (loc, 1), 0, context);
18843 if (list_ret == 0 || list_ret1 == 0)
18844 return 0;
18846 add_loc_list (&list_ret, list_ret1);
18847 if (list_ret == 0)
18848 return 0;
18849 add_loc_descr_to_each (list_ret, new_loc_descr (op, 0, 0));
18850 break;
18852 case TRUTH_NOT_EXPR:
18853 case BIT_NOT_EXPR:
18854 op = DW_OP_not;
18855 goto do_unop;
18857 case ABS_EXPR:
18858 op = DW_OP_abs;
18859 goto do_unop;
18861 case NEGATE_EXPR:
18862 op = DW_OP_neg;
18863 goto do_unop;
18865 do_unop:
18866 list_ret = loc_list_from_tree_1 (TREE_OPERAND (loc, 0), 0, context);
18867 if (list_ret == 0)
18868 return 0;
18870 add_loc_descr_to_each (list_ret, new_loc_descr (op, 0, 0));
18871 break;
18873 case MIN_EXPR:
18874 case MAX_EXPR:
18876 const enum tree_code code =
18877 TREE_CODE (loc) == MIN_EXPR ? GT_EXPR : LT_EXPR;
18879 loc = build3 (COND_EXPR, TREE_TYPE (loc),
18880 build2 (code, integer_type_node,
18881 TREE_OPERAND (loc, 0), TREE_OPERAND (loc, 1)),
18882 TREE_OPERAND (loc, 1), TREE_OPERAND (loc, 0));
18885 /* fall through */
18887 case COND_EXPR:
18889 dw_loc_descr_ref lhs
18890 = loc_descriptor_from_tree (TREE_OPERAND (loc, 1), 0, context);
18891 dw_loc_list_ref rhs
18892 = loc_list_from_tree_1 (TREE_OPERAND (loc, 2), 0, context);
18893 dw_loc_descr_ref bra_node, jump_node, tmp;
18895 list_ret = loc_list_from_tree_1 (TREE_OPERAND (loc, 0), 0, context);
18896 if (list_ret == 0 || lhs == 0 || rhs == 0)
18897 return 0;
18899 bra_node = new_loc_descr (DW_OP_bra, 0, 0);
18900 add_loc_descr_to_each (list_ret, bra_node);
18902 add_loc_list (&list_ret, rhs);
18903 jump_node = new_loc_descr (DW_OP_skip, 0, 0);
18904 add_loc_descr_to_each (list_ret, jump_node);
18906 add_loc_descr_to_each (list_ret, lhs);
18907 bra_node->dw_loc_oprnd1.val_class = dw_val_class_loc;
18908 bra_node->dw_loc_oprnd1.v.val_loc = lhs;
18910 /* ??? Need a node to point the skip at. Use a nop. */
18911 tmp = new_loc_descr (DW_OP_nop, 0, 0);
18912 add_loc_descr_to_each (list_ret, tmp);
18913 jump_node->dw_loc_oprnd1.val_class = dw_val_class_loc;
18914 jump_node->dw_loc_oprnd1.v.val_loc = tmp;
18916 break;
18918 case FIX_TRUNC_EXPR:
18919 return 0;
18921 default:
18922 /* Leave front-end specific codes as simply unknown. This comes
18923 up, for instance, with the C STMT_EXPR. */
18924 if ((unsigned int) TREE_CODE (loc)
18925 >= (unsigned int) LAST_AND_UNUSED_TREE_CODE)
18927 expansion_failed (loc, NULL_RTX,
18928 "language specific tree node");
18929 return 0;
18932 /* Otherwise this is a generic code; we should just lists all of
18933 these explicitly. We forgot one. */
18934 if (flag_checking)
18935 gcc_unreachable ();
18937 /* In a release build, we want to degrade gracefully: better to
18938 generate incomplete debugging information than to crash. */
18939 return NULL;
18942 if (!ret && !list_ret)
18943 return 0;
18945 if (want_address == 2 && !have_address
18946 && (dwarf_version >= 4 || !dwarf_strict))
18948 if (int_size_in_bytes (TREE_TYPE (loc)) > DWARF2_ADDR_SIZE)
18950 expansion_failed (loc, NULL_RTX,
18951 "DWARF address size mismatch");
18952 return 0;
18954 if (ret)
18955 add_loc_descr (&ret, new_loc_descr (DW_OP_stack_value, 0, 0));
18956 else
18957 add_loc_descr_to_each (list_ret,
18958 new_loc_descr (DW_OP_stack_value, 0, 0));
18959 have_address = 1;
18961 /* Show if we can't fill the request for an address. */
18962 if (want_address && !have_address)
18964 expansion_failed (loc, NULL_RTX,
18965 "Want address and only have value");
18966 return 0;
18969 gcc_assert (!ret || !list_ret);
18971 /* If we've got an address and don't want one, dereference. */
18972 if (!want_address && have_address)
18974 HOST_WIDE_INT size = int_size_in_bytes (TREE_TYPE (loc));
18976 if (size > DWARF2_ADDR_SIZE || size == -1)
18978 expansion_failed (loc, NULL_RTX,
18979 "DWARF address size mismatch");
18980 return 0;
18982 else if (size == DWARF2_ADDR_SIZE)
18983 op = DW_OP_deref;
18984 else
18985 op = DW_OP_deref_size;
18987 if (ret)
18988 add_loc_descr (&ret, new_loc_descr (op, size, 0));
18989 else
18990 add_loc_descr_to_each (list_ret, new_loc_descr (op, size, 0));
18992 if (ret)
18993 list_ret = new_loc_list (ret, NULL, 0, NULL, 0, NULL);
18995 return list_ret;
18998 /* Likewise, but strip useless DW_OP_nop operations in the resulting
18999 expressions. */
19001 static dw_loc_list_ref
19002 loc_list_from_tree (tree loc, int want_address,
19003 struct loc_descr_context *context)
19005 dw_loc_list_ref result = loc_list_from_tree_1 (loc, want_address, context);
19007 for (dw_loc_list_ref loc_cur = result;
19008 loc_cur != NULL; loc_cur = loc_cur->dw_loc_next)
19009 loc_descr_without_nops (loc_cur->expr);
19010 return result;
19013 /* Same as above but return only single location expression. */
19014 static dw_loc_descr_ref
19015 loc_descriptor_from_tree (tree loc, int want_address,
19016 struct loc_descr_context *context)
19018 dw_loc_list_ref ret = loc_list_from_tree (loc, want_address, context);
19019 if (!ret)
19020 return NULL;
19021 if (ret->dw_loc_next)
19023 expansion_failed (loc, NULL_RTX,
19024 "Location list where only loc descriptor needed");
19025 return NULL;
19027 return ret->expr;
19030 /* Given a pointer to what is assumed to be a FIELD_DECL node, return a
19031 pointer to the declared type for the relevant field variable, or return
19032 `integer_type_node' if the given node turns out to be an
19033 ERROR_MARK node. */
19035 static inline tree
19036 field_type (const_tree decl)
19038 tree type;
19040 if (TREE_CODE (decl) == ERROR_MARK)
19041 return integer_type_node;
19043 type = DECL_BIT_FIELD_TYPE (decl);
19044 if (type == NULL_TREE)
19045 type = TREE_TYPE (decl);
19047 return type;
19050 /* Given a pointer to a tree node, return the alignment in bits for
19051 it, or else return BITS_PER_WORD if the node actually turns out to
19052 be an ERROR_MARK node. */
19054 static inline unsigned
19055 simple_type_align_in_bits (const_tree type)
19057 return (TREE_CODE (type) != ERROR_MARK) ? TYPE_ALIGN (type) : BITS_PER_WORD;
19060 static inline unsigned
19061 simple_decl_align_in_bits (const_tree decl)
19063 return (TREE_CODE (decl) != ERROR_MARK) ? DECL_ALIGN (decl) : BITS_PER_WORD;
19066 /* Return the result of rounding T up to ALIGN. */
19068 static inline offset_int
19069 round_up_to_align (const offset_int &t, unsigned int align)
19071 return wi::udiv_trunc (t + align - 1, align) * align;
19074 /* Compute the size of TYPE in bytes. If possible, return NULL and store the
19075 size as an integer constant in CST_SIZE. Otherwise, if possible, return a
19076 DWARF expression that computes the size. Return NULL and set CST_SIZE to -1
19077 if we fail to return the size in one of these two forms. */
19079 static dw_loc_descr_ref
19080 type_byte_size (const_tree type, HOST_WIDE_INT *cst_size)
19082 tree tree_size;
19083 struct loc_descr_context ctx;
19085 /* Return a constant integer in priority, if possible. */
19086 *cst_size = int_size_in_bytes (type);
19087 if (*cst_size != -1)
19088 return NULL;
19090 ctx.context_type = const_cast<tree> (type);
19091 ctx.base_decl = NULL_TREE;
19092 ctx.dpi = NULL;
19093 ctx.placeholder_arg = false;
19094 ctx.placeholder_seen = false;
19096 type = TYPE_MAIN_VARIANT (type);
19097 tree_size = TYPE_SIZE_UNIT (type);
19098 return ((tree_size != NULL_TREE)
19099 ? loc_descriptor_from_tree (tree_size, 0, &ctx)
19100 : NULL);
19103 /* Helper structure for RECORD_TYPE processing. */
19104 struct vlr_context
19106 /* Root RECORD_TYPE. It is needed to generate data member location
19107 descriptions in variable-length records (VLR), but also to cope with
19108 variants, which are composed of nested structures multiplexed with
19109 QUAL_UNION_TYPE nodes. Each time such a structure is passed to a
19110 function processing a FIELD_DECL, it is required to be non null. */
19111 tree struct_type;
19112 /* When generating a variant part in a RECORD_TYPE (i.e. a nested
19113 QUAL_UNION_TYPE), this holds an expression that computes the offset for
19114 this variant part as part of the root record (in storage units). For
19115 regular records, it must be NULL_TREE. */
19116 tree variant_part_offset;
19119 /* Given a pointer to a FIELD_DECL, compute the byte offset of the lowest
19120 addressed byte of the "containing object" for the given FIELD_DECL. If
19121 possible, return a native constant through CST_OFFSET (in which case NULL is
19122 returned); otherwise return a DWARF expression that computes the offset.
19124 Set *CST_OFFSET to 0 and return NULL if we are unable to determine what
19125 that offset is, either because the argument turns out to be a pointer to an
19126 ERROR_MARK node, or because the offset expression is too complex for us.
19128 CTX is required: see the comment for VLR_CONTEXT. */
19130 static dw_loc_descr_ref
19131 field_byte_offset (const_tree decl, struct vlr_context *ctx,
19132 HOST_WIDE_INT *cst_offset)
19134 tree tree_result;
19135 dw_loc_list_ref loc_result;
19137 *cst_offset = 0;
19139 if (TREE_CODE (decl) == ERROR_MARK)
19140 return NULL;
19141 else
19142 gcc_assert (TREE_CODE (decl) == FIELD_DECL);
19144 /* We cannot handle variable bit offsets at the moment, so abort if it's the
19145 case. */
19146 if (TREE_CODE (DECL_FIELD_BIT_OFFSET (decl)) != INTEGER_CST)
19147 return NULL;
19149 /* We used to handle only constant offsets in all cases. Now, we handle
19150 properly dynamic byte offsets only when PCC bitfield type doesn't
19151 matter. */
19152 if (PCC_BITFIELD_TYPE_MATTERS
19153 && TREE_CODE (DECL_FIELD_OFFSET (decl)) == INTEGER_CST)
19155 offset_int object_offset_in_bits;
19156 offset_int object_offset_in_bytes;
19157 offset_int bitpos_int;
19158 tree type;
19159 tree field_size_tree;
19160 offset_int deepest_bitpos;
19161 offset_int field_size_in_bits;
19162 unsigned int type_align_in_bits;
19163 unsigned int decl_align_in_bits;
19164 offset_int type_size_in_bits;
19166 bitpos_int = wi::to_offset (bit_position (decl));
19167 type = field_type (decl);
19168 type_size_in_bits = offset_int_type_size_in_bits (type);
19169 type_align_in_bits = simple_type_align_in_bits (type);
19171 field_size_tree = DECL_SIZE (decl);
19173 /* The size could be unspecified if there was an error, or for
19174 a flexible array member. */
19175 if (!field_size_tree)
19176 field_size_tree = bitsize_zero_node;
19178 /* If the size of the field is not constant, use the type size. */
19179 if (TREE_CODE (field_size_tree) == INTEGER_CST)
19180 field_size_in_bits = wi::to_offset (field_size_tree);
19181 else
19182 field_size_in_bits = type_size_in_bits;
19184 decl_align_in_bits = simple_decl_align_in_bits (decl);
19186 /* The GCC front-end doesn't make any attempt to keep track of the
19187 starting bit offset (relative to the start of the containing
19188 structure type) of the hypothetical "containing object" for a
19189 bit-field. Thus, when computing the byte offset value for the
19190 start of the "containing object" of a bit-field, we must deduce
19191 this information on our own. This can be rather tricky to do in
19192 some cases. For example, handling the following structure type
19193 definition when compiling for an i386/i486 target (which only
19194 aligns long long's to 32-bit boundaries) can be very tricky:
19196 struct S { int field1; long long field2:31; };
19198 Fortunately, there is a simple rule-of-thumb which can be used
19199 in such cases. When compiling for an i386/i486, GCC will
19200 allocate 8 bytes for the structure shown above. It decides to
19201 do this based upon one simple rule for bit-field allocation.
19202 GCC allocates each "containing object" for each bit-field at
19203 the first (i.e. lowest addressed) legitimate alignment boundary
19204 (based upon the required minimum alignment for the declared
19205 type of the field) which it can possibly use, subject to the
19206 condition that there is still enough available space remaining
19207 in the containing object (when allocated at the selected point)
19208 to fully accommodate all of the bits of the bit-field itself.
19210 This simple rule makes it obvious why GCC allocates 8 bytes for
19211 each object of the structure type shown above. When looking
19212 for a place to allocate the "containing object" for `field2',
19213 the compiler simply tries to allocate a 64-bit "containing
19214 object" at each successive 32-bit boundary (starting at zero)
19215 until it finds a place to allocate that 64- bit field such that
19216 at least 31 contiguous (and previously unallocated) bits remain
19217 within that selected 64 bit field. (As it turns out, for the
19218 example above, the compiler finds it is OK to allocate the
19219 "containing object" 64-bit field at bit-offset zero within the
19220 structure type.)
19222 Here we attempt to work backwards from the limited set of facts
19223 we're given, and we try to deduce from those facts, where GCC
19224 must have believed that the containing object started (within
19225 the structure type). The value we deduce is then used (by the
19226 callers of this routine) to generate DW_AT_location and
19227 DW_AT_bit_offset attributes for fields (both bit-fields and, in
19228 the case of DW_AT_location, regular fields as well). */
19230 /* Figure out the bit-distance from the start of the structure to
19231 the "deepest" bit of the bit-field. */
19232 deepest_bitpos = bitpos_int + field_size_in_bits;
19234 /* This is the tricky part. Use some fancy footwork to deduce
19235 where the lowest addressed bit of the containing object must
19236 be. */
19237 object_offset_in_bits = deepest_bitpos - type_size_in_bits;
19239 /* Round up to type_align by default. This works best for
19240 bitfields. */
19241 object_offset_in_bits
19242 = round_up_to_align (object_offset_in_bits, type_align_in_bits);
19244 if (wi::gtu_p (object_offset_in_bits, bitpos_int))
19246 object_offset_in_bits = deepest_bitpos - type_size_in_bits;
19248 /* Round up to decl_align instead. */
19249 object_offset_in_bits
19250 = round_up_to_align (object_offset_in_bits, decl_align_in_bits);
19253 object_offset_in_bytes
19254 = wi::lrshift (object_offset_in_bits, LOG2_BITS_PER_UNIT);
19255 if (ctx->variant_part_offset == NULL_TREE)
19257 *cst_offset = object_offset_in_bytes.to_shwi ();
19258 return NULL;
19260 tree_result = wide_int_to_tree (sizetype, object_offset_in_bytes);
19262 else
19263 tree_result = byte_position (decl);
19265 if (ctx->variant_part_offset != NULL_TREE)
19266 tree_result = fold_build2 (PLUS_EXPR, TREE_TYPE (tree_result),
19267 ctx->variant_part_offset, tree_result);
19269 /* If the byte offset is a constant, it's simplier to handle a native
19270 constant rather than a DWARF expression. */
19271 if (TREE_CODE (tree_result) == INTEGER_CST)
19273 *cst_offset = wi::to_offset (tree_result).to_shwi ();
19274 return NULL;
19276 struct loc_descr_context loc_ctx = {
19277 ctx->struct_type, /* context_type */
19278 NULL_TREE, /* base_decl */
19279 NULL, /* dpi */
19280 false, /* placeholder_arg */
19281 false /* placeholder_seen */
19283 loc_result = loc_list_from_tree (tree_result, 0, &loc_ctx);
19285 /* We want a DWARF expression: abort if we only have a location list with
19286 multiple elements. */
19287 if (!loc_result || !single_element_loc_list_p (loc_result))
19288 return NULL;
19289 else
19290 return loc_result->expr;
19293 /* The following routines define various Dwarf attributes and any data
19294 associated with them. */
19296 /* Add a location description attribute value to a DIE.
19298 This emits location attributes suitable for whole variables and
19299 whole parameters. Note that the location attributes for struct fields are
19300 generated by the routine `data_member_location_attribute' below. */
19302 static inline void
19303 add_AT_location_description (dw_die_ref die, enum dwarf_attribute attr_kind,
19304 dw_loc_list_ref descr)
19306 bool check_no_locviews = true;
19307 if (descr == 0)
19308 return;
19309 if (single_element_loc_list_p (descr))
19310 add_AT_loc (die, attr_kind, descr->expr);
19311 else
19313 add_AT_loc_list (die, attr_kind, descr);
19314 gcc_assert (descr->ll_symbol);
19315 if (attr_kind == DW_AT_location && descr->vl_symbol
19316 && dwarf2out_locviews_in_attribute ())
19318 add_AT_view_list (die, DW_AT_GNU_locviews);
19319 check_no_locviews = false;
19323 if (check_no_locviews)
19324 gcc_assert (!get_AT (die, DW_AT_GNU_locviews));
19327 /* Add DW_AT_accessibility attribute to DIE if needed. */
19329 static void
19330 add_accessibility_attribute (dw_die_ref die, tree decl)
19332 /* In DWARF3+ the default is DW_ACCESS_private only in DW_TAG_class_type
19333 children, otherwise the default is DW_ACCESS_public. In DWARF2
19334 the default has always been DW_ACCESS_public. */
19335 if (TREE_PROTECTED (decl))
19336 add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_protected);
19337 else if (TREE_PRIVATE (decl))
19339 if (dwarf_version == 2
19340 || die->die_parent == NULL
19341 || die->die_parent->die_tag != DW_TAG_class_type)
19342 add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_private);
19344 else if (dwarf_version > 2
19345 && die->die_parent
19346 && die->die_parent->die_tag == DW_TAG_class_type)
19347 add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_public);
19350 /* Attach the specialized form of location attribute used for data members of
19351 struct and union types. In the special case of a FIELD_DECL node which
19352 represents a bit-field, the "offset" part of this special location
19353 descriptor must indicate the distance in bytes from the lowest-addressed
19354 byte of the containing struct or union type to the lowest-addressed byte of
19355 the "containing object" for the bit-field. (See the `field_byte_offset'
19356 function above).
19358 For any given bit-field, the "containing object" is a hypothetical object
19359 (of some integral or enum type) within which the given bit-field lives. The
19360 type of this hypothetical "containing object" is always the same as the
19361 declared type of the individual bit-field itself (for GCC anyway... the
19362 DWARF spec doesn't actually mandate this). Note that it is the size (in
19363 bytes) of the hypothetical "containing object" which will be given in the
19364 DW_AT_byte_size attribute for this bit-field. (See the
19365 `byte_size_attribute' function below.) It is also used when calculating the
19366 value of the DW_AT_bit_offset attribute. (See the `bit_offset_attribute'
19367 function below.)
19369 CTX is required: see the comment for VLR_CONTEXT. */
19371 static void
19372 add_data_member_location_attribute (dw_die_ref die,
19373 tree decl,
19374 struct vlr_context *ctx)
19376 HOST_WIDE_INT offset;
19377 dw_loc_descr_ref loc_descr = 0;
19379 if (TREE_CODE (decl) == TREE_BINFO)
19381 /* We're working on the TAG_inheritance for a base class. */
19382 if (BINFO_VIRTUAL_P (decl) && is_cxx ())
19384 /* For C++ virtual bases we can't just use BINFO_OFFSET, as they
19385 aren't at a fixed offset from all (sub)objects of the same
19386 type. We need to extract the appropriate offset from our
19387 vtable. The following dwarf expression means
19389 BaseAddr = ObAddr + *((*ObAddr) - Offset)
19391 This is specific to the V3 ABI, of course. */
19393 dw_loc_descr_ref tmp;
19395 /* Make a copy of the object address. */
19396 tmp = new_loc_descr (DW_OP_dup, 0, 0);
19397 add_loc_descr (&loc_descr, tmp);
19399 /* Extract the vtable address. */
19400 tmp = new_loc_descr (DW_OP_deref, 0, 0);
19401 add_loc_descr (&loc_descr, tmp);
19403 /* Calculate the address of the offset. */
19404 offset = tree_to_shwi (BINFO_VPTR_FIELD (decl));
19405 gcc_assert (offset < 0);
19407 tmp = int_loc_descriptor (-offset);
19408 add_loc_descr (&loc_descr, tmp);
19409 tmp = new_loc_descr (DW_OP_minus, 0, 0);
19410 add_loc_descr (&loc_descr, tmp);
19412 /* Extract the offset. */
19413 tmp = new_loc_descr (DW_OP_deref, 0, 0);
19414 add_loc_descr (&loc_descr, tmp);
19416 /* Add it to the object address. */
19417 tmp = new_loc_descr (DW_OP_plus, 0, 0);
19418 add_loc_descr (&loc_descr, tmp);
19420 else
19421 offset = tree_to_shwi (BINFO_OFFSET (decl));
19423 else
19425 loc_descr = field_byte_offset (decl, ctx, &offset);
19427 /* If loc_descr is available then we know the field offset is dynamic.
19428 However, GDB does not handle dynamic field offsets very well at the
19429 moment. */
19430 if (loc_descr != NULL && gnat_encodings != DWARF_GNAT_ENCODINGS_MINIMAL)
19432 loc_descr = NULL;
19433 offset = 0;
19436 /* Data member location evalutation starts with the base address on the
19437 stack. Compute the field offset and add it to this base address. */
19438 else if (loc_descr != NULL)
19439 add_loc_descr (&loc_descr, new_loc_descr (DW_OP_plus, 0, 0));
19442 if (! loc_descr)
19444 /* While DW_AT_data_bit_offset has been added already in DWARF4,
19445 e.g. GDB only added support to it in November 2016. For DWARF5
19446 we need newer debug info consumers anyway. We might change this
19447 to dwarf_version >= 4 once most consumers catched up. */
19448 if (dwarf_version >= 5
19449 && TREE_CODE (decl) == FIELD_DECL
19450 && DECL_BIT_FIELD_TYPE (decl))
19452 tree off = bit_position (decl);
19453 if (tree_fits_uhwi_p (off) && get_AT (die, DW_AT_bit_size))
19455 remove_AT (die, DW_AT_byte_size);
19456 remove_AT (die, DW_AT_bit_offset);
19457 add_AT_unsigned (die, DW_AT_data_bit_offset, tree_to_uhwi (off));
19458 return;
19461 if (dwarf_version > 2)
19463 /* Don't need to output a location expression, just the constant. */
19464 if (offset < 0)
19465 add_AT_int (die, DW_AT_data_member_location, offset);
19466 else
19467 add_AT_unsigned (die, DW_AT_data_member_location, offset);
19468 return;
19470 else
19472 enum dwarf_location_atom op;
19474 /* The DWARF2 standard says that we should assume that the structure
19475 address is already on the stack, so we can specify a structure
19476 field address by using DW_OP_plus_uconst. */
19477 op = DW_OP_plus_uconst;
19478 loc_descr = new_loc_descr (op, offset, 0);
19482 add_AT_loc (die, DW_AT_data_member_location, loc_descr);
19485 /* Writes integer values to dw_vec_const array. */
19487 static void
19488 insert_int (HOST_WIDE_INT val, unsigned int size, unsigned char *dest)
19490 while (size != 0)
19492 *dest++ = val & 0xff;
19493 val >>= 8;
19494 --size;
19498 /* Reads integers from dw_vec_const array. Inverse of insert_int. */
19500 static HOST_WIDE_INT
19501 extract_int (const unsigned char *src, unsigned int size)
19503 HOST_WIDE_INT val = 0;
19505 src += size;
19506 while (size != 0)
19508 val <<= 8;
19509 val |= *--src & 0xff;
19510 --size;
19512 return val;
19515 /* Writes wide_int values to dw_vec_const array. */
19517 static void
19518 insert_wide_int (const wide_int &val, unsigned char *dest, int elt_size)
19520 int i;
19522 if (elt_size <= HOST_BITS_PER_WIDE_INT/BITS_PER_UNIT)
19524 insert_int ((HOST_WIDE_INT) val.elt (0), elt_size, dest);
19525 return;
19528 /* We'd have to extend this code to support odd sizes. */
19529 gcc_assert (elt_size % (HOST_BITS_PER_WIDE_INT / BITS_PER_UNIT) == 0);
19531 int n = elt_size / (HOST_BITS_PER_WIDE_INT / BITS_PER_UNIT);
19533 if (WORDS_BIG_ENDIAN)
19534 for (i = n - 1; i >= 0; i--)
19536 insert_int ((HOST_WIDE_INT) val.elt (i), sizeof (HOST_WIDE_INT), dest);
19537 dest += sizeof (HOST_WIDE_INT);
19539 else
19540 for (i = 0; i < n; i++)
19542 insert_int ((HOST_WIDE_INT) val.elt (i), sizeof (HOST_WIDE_INT), dest);
19543 dest += sizeof (HOST_WIDE_INT);
19547 /* Writes floating point values to dw_vec_const array. */
19549 static void
19550 insert_float (const_rtx rtl, unsigned char *array)
19552 long val[4];
19553 int i;
19554 scalar_float_mode mode = as_a <scalar_float_mode> (GET_MODE (rtl));
19556 real_to_target (val, CONST_DOUBLE_REAL_VALUE (rtl), mode);
19558 /* real_to_target puts 32-bit pieces in each long. Pack them. */
19559 for (i = 0; i < GET_MODE_SIZE (mode) / 4; i++)
19561 insert_int (val[i], 4, array);
19562 array += 4;
19566 /* Attach a DW_AT_const_value attribute for a variable or a parameter which
19567 does not have a "location" either in memory or in a register. These
19568 things can arise in GNU C when a constant is passed as an actual parameter
19569 to an inlined function. They can also arise in C++ where declared
19570 constants do not necessarily get memory "homes". */
19572 static bool
19573 add_const_value_attribute (dw_die_ref die, rtx rtl)
19575 switch (GET_CODE (rtl))
19577 case CONST_INT:
19579 HOST_WIDE_INT val = INTVAL (rtl);
19581 if (val < 0)
19582 add_AT_int (die, DW_AT_const_value, val);
19583 else
19584 add_AT_unsigned (die, DW_AT_const_value, (unsigned HOST_WIDE_INT) val);
19586 return true;
19588 case CONST_WIDE_INT:
19590 wide_int w1 = rtx_mode_t (rtl, MAX_MODE_INT);
19591 unsigned int prec = MIN (wi::min_precision (w1, UNSIGNED),
19592 (unsigned int)CONST_WIDE_INT_NUNITS (rtl) * HOST_BITS_PER_WIDE_INT);
19593 wide_int w = wi::zext (w1, prec);
19594 add_AT_wide (die, DW_AT_const_value, w);
19596 return true;
19598 case CONST_DOUBLE:
19599 /* Note that a CONST_DOUBLE rtx could represent either an integer or a
19600 floating-point constant. A CONST_DOUBLE is used whenever the
19601 constant requires more than one word in order to be adequately
19602 represented. */
19603 if (TARGET_SUPPORTS_WIDE_INT == 0
19604 && !SCALAR_FLOAT_MODE_P (GET_MODE (rtl)))
19605 add_AT_double (die, DW_AT_const_value,
19606 CONST_DOUBLE_HIGH (rtl), CONST_DOUBLE_LOW (rtl));
19607 else
19609 scalar_float_mode mode = as_a <scalar_float_mode> (GET_MODE (rtl));
19610 unsigned int length = GET_MODE_SIZE (mode);
19611 unsigned char *array = ggc_vec_alloc<unsigned char> (length);
19613 insert_float (rtl, array);
19614 add_AT_vec (die, DW_AT_const_value, length / 4, 4, array);
19616 return true;
19618 case CONST_VECTOR:
19620 unsigned int length;
19621 if (!CONST_VECTOR_NUNITS (rtl).is_constant (&length))
19622 return false;
19624 machine_mode mode = GET_MODE (rtl);
19625 unsigned int elt_size = GET_MODE_UNIT_SIZE (mode);
19626 unsigned char *array
19627 = ggc_vec_alloc<unsigned char> (length * elt_size);
19628 unsigned int i;
19629 unsigned char *p;
19630 machine_mode imode = GET_MODE_INNER (mode);
19632 switch (GET_MODE_CLASS (mode))
19634 case MODE_VECTOR_INT:
19635 for (i = 0, p = array; i < length; i++, p += elt_size)
19637 rtx elt = CONST_VECTOR_ELT (rtl, i);
19638 insert_wide_int (rtx_mode_t (elt, imode), p, elt_size);
19640 break;
19642 case MODE_VECTOR_FLOAT:
19643 for (i = 0, p = array; i < length; i++, p += elt_size)
19645 rtx elt = CONST_VECTOR_ELT (rtl, i);
19646 insert_float (elt, p);
19648 break;
19650 default:
19651 gcc_unreachable ();
19654 add_AT_vec (die, DW_AT_const_value, length, elt_size, array);
19656 return true;
19658 case CONST_STRING:
19659 if (dwarf_version >= 4 || !dwarf_strict)
19661 dw_loc_descr_ref loc_result;
19662 resolve_one_addr (&rtl);
19663 rtl_addr:
19664 loc_result = new_addr_loc_descr (rtl, dtprel_false);
19665 add_loc_descr (&loc_result, new_loc_descr (DW_OP_stack_value, 0, 0));
19666 add_AT_loc (die, DW_AT_location, loc_result);
19667 vec_safe_push (used_rtx_array, rtl);
19668 return true;
19670 return false;
19672 case CONST:
19673 if (CONSTANT_P (XEXP (rtl, 0)))
19674 return add_const_value_attribute (die, XEXP (rtl, 0));
19675 /* FALLTHROUGH */
19676 case SYMBOL_REF:
19677 if (!const_ok_for_output (rtl))
19678 return false;
19679 /* FALLTHROUGH */
19680 case LABEL_REF:
19681 if (dwarf_version >= 4 || !dwarf_strict)
19682 goto rtl_addr;
19683 return false;
19685 case PLUS:
19686 /* In cases where an inlined instance of an inline function is passed
19687 the address of an `auto' variable (which is local to the caller) we
19688 can get a situation where the DECL_RTL of the artificial local
19689 variable (for the inlining) which acts as a stand-in for the
19690 corresponding formal parameter (of the inline function) will look
19691 like (plus:SI (reg:SI FRAME_PTR) (const_int ...)). This is not
19692 exactly a compile-time constant expression, but it isn't the address
19693 of the (artificial) local variable either. Rather, it represents the
19694 *value* which the artificial local variable always has during its
19695 lifetime. We currently have no way to represent such quasi-constant
19696 values in Dwarf, so for now we just punt and generate nothing. */
19697 return false;
19699 case HIGH:
19700 case CONST_FIXED:
19701 case MINUS:
19702 case SIGN_EXTEND:
19703 case ZERO_EXTEND:
19704 case CONST_POLY_INT:
19705 return false;
19707 case MEM:
19708 if (GET_CODE (XEXP (rtl, 0)) == CONST_STRING
19709 && MEM_READONLY_P (rtl)
19710 && GET_MODE (rtl) == BLKmode)
19712 add_AT_string (die, DW_AT_const_value, XSTR (XEXP (rtl, 0), 0));
19713 return true;
19715 return false;
19717 default:
19718 /* No other kinds of rtx should be possible here. */
19719 gcc_unreachable ();
19721 return false;
19724 /* Determine whether the evaluation of EXPR references any variables
19725 or functions which aren't otherwise used (and therefore may not be
19726 output). */
19727 static tree
19728 reference_to_unused (tree * tp, int * walk_subtrees,
19729 void * data ATTRIBUTE_UNUSED)
19731 if (! EXPR_P (*tp) && ! CONSTANT_CLASS_P (*tp))
19732 *walk_subtrees = 0;
19734 if (DECL_P (*tp) && ! TREE_PUBLIC (*tp) && ! TREE_USED (*tp)
19735 && ! TREE_ASM_WRITTEN (*tp))
19736 return *tp;
19737 /* ??? The C++ FE emits debug information for using decls, so
19738 putting gcc_unreachable here falls over. See PR31899. For now
19739 be conservative. */
19740 else if (!symtab->global_info_ready && VAR_OR_FUNCTION_DECL_P (*tp))
19741 return *tp;
19742 else if (VAR_P (*tp))
19744 varpool_node *node = varpool_node::get (*tp);
19745 if (!node || !node->definition)
19746 return *tp;
19748 else if (TREE_CODE (*tp) == FUNCTION_DECL
19749 && (!DECL_EXTERNAL (*tp) || DECL_DECLARED_INLINE_P (*tp)))
19751 /* The call graph machinery must have finished analyzing,
19752 optimizing and gimplifying the CU by now.
19753 So if *TP has no call graph node associated
19754 to it, it means *TP will not be emitted. */
19755 if (!cgraph_node::get (*tp))
19756 return *tp;
19758 else if (TREE_CODE (*tp) == STRING_CST && !TREE_ASM_WRITTEN (*tp))
19759 return *tp;
19761 return NULL_TREE;
19764 /* Generate an RTL constant from a decl initializer INIT with decl type TYPE,
19765 for use in a later add_const_value_attribute call. */
19767 static rtx
19768 rtl_for_decl_init (tree init, tree type)
19770 rtx rtl = NULL_RTX;
19772 STRIP_NOPS (init);
19774 /* If a variable is initialized with a string constant without embedded
19775 zeros, build CONST_STRING. */
19776 if (TREE_CODE (init) == STRING_CST && TREE_CODE (type) == ARRAY_TYPE)
19778 tree enttype = TREE_TYPE (type);
19779 tree domain = TYPE_DOMAIN (type);
19780 scalar_int_mode mode;
19782 if (is_int_mode (TYPE_MODE (enttype), &mode)
19783 && GET_MODE_SIZE (mode) == 1
19784 && domain
19785 && TYPE_MAX_VALUE (domain)
19786 && TREE_CODE (TYPE_MAX_VALUE (domain)) == INTEGER_CST
19787 && integer_zerop (TYPE_MIN_VALUE (domain))
19788 && compare_tree_int (TYPE_MAX_VALUE (domain),
19789 TREE_STRING_LENGTH (init) - 1) == 0
19790 && ((size_t) TREE_STRING_LENGTH (init)
19791 == strlen (TREE_STRING_POINTER (init)) + 1))
19793 rtl = gen_rtx_CONST_STRING (VOIDmode,
19794 ggc_strdup (TREE_STRING_POINTER (init)));
19795 rtl = gen_rtx_MEM (BLKmode, rtl);
19796 MEM_READONLY_P (rtl) = 1;
19799 /* Other aggregates, and complex values, could be represented using
19800 CONCAT: FIXME! */
19801 else if (AGGREGATE_TYPE_P (type)
19802 || (TREE_CODE (init) == VIEW_CONVERT_EXPR
19803 && AGGREGATE_TYPE_P (TREE_TYPE (TREE_OPERAND (init, 0))))
19804 || TREE_CODE (type) == COMPLEX_TYPE)
19806 /* Vectors only work if their mode is supported by the target.
19807 FIXME: generic vectors ought to work too. */
19808 else if (TREE_CODE (type) == VECTOR_TYPE
19809 && !VECTOR_MODE_P (TYPE_MODE (type)))
19811 /* If the initializer is something that we know will expand into an
19812 immediate RTL constant, expand it now. We must be careful not to
19813 reference variables which won't be output. */
19814 else if (initializer_constant_valid_p (init, type)
19815 && ! walk_tree (&init, reference_to_unused, NULL, NULL))
19817 /* Convert vector CONSTRUCTOR initializers to VECTOR_CST if
19818 possible. */
19819 if (TREE_CODE (type) == VECTOR_TYPE)
19820 switch (TREE_CODE (init))
19822 case VECTOR_CST:
19823 break;
19824 case CONSTRUCTOR:
19825 if (TREE_CONSTANT (init))
19827 vec<constructor_elt, va_gc> *elts = CONSTRUCTOR_ELTS (init);
19828 bool constant_p = true;
19829 tree value;
19830 unsigned HOST_WIDE_INT ix;
19832 /* Even when ctor is constant, it might contain non-*_CST
19833 elements (e.g. { 1.0/0.0 - 1.0/0.0, 0.0 }) and those don't
19834 belong into VECTOR_CST nodes. */
19835 FOR_EACH_CONSTRUCTOR_VALUE (elts, ix, value)
19836 if (!CONSTANT_CLASS_P (value))
19838 constant_p = false;
19839 break;
19842 if (constant_p)
19844 init = build_vector_from_ctor (type, elts);
19845 break;
19848 /* FALLTHRU */
19850 default:
19851 return NULL;
19854 rtl = expand_expr (init, NULL_RTX, VOIDmode, EXPAND_INITIALIZER);
19856 /* If expand_expr returns a MEM, it wasn't immediate. */
19857 gcc_assert (!rtl || !MEM_P (rtl));
19860 return rtl;
19863 /* Generate RTL for the variable DECL to represent its location. */
19865 static rtx
19866 rtl_for_decl_location (tree decl)
19868 rtx rtl;
19870 /* Here we have to decide where we are going to say the parameter "lives"
19871 (as far as the debugger is concerned). We only have a couple of
19872 choices. GCC provides us with DECL_RTL and with DECL_INCOMING_RTL.
19874 DECL_RTL normally indicates where the parameter lives during most of the
19875 activation of the function. If optimization is enabled however, this
19876 could be either NULL or else a pseudo-reg. Both of those cases indicate
19877 that the parameter doesn't really live anywhere (as far as the code
19878 generation parts of GCC are concerned) during most of the function's
19879 activation. That will happen (for example) if the parameter is never
19880 referenced within the function.
19882 We could just generate a location descriptor here for all non-NULL
19883 non-pseudo values of DECL_RTL and ignore all of the rest, but we can be
19884 a little nicer than that if we also consider DECL_INCOMING_RTL in cases
19885 where DECL_RTL is NULL or is a pseudo-reg.
19887 Note however that we can only get away with using DECL_INCOMING_RTL as
19888 a backup substitute for DECL_RTL in certain limited cases. In cases
19889 where DECL_ARG_TYPE (decl) indicates the same type as TREE_TYPE (decl),
19890 we can be sure that the parameter was passed using the same type as it is
19891 declared to have within the function, and that its DECL_INCOMING_RTL
19892 points us to a place where a value of that type is passed.
19894 In cases where DECL_ARG_TYPE (decl) and TREE_TYPE (decl) are different,
19895 we cannot (in general) use DECL_INCOMING_RTL as a substitute for DECL_RTL
19896 because in these cases DECL_INCOMING_RTL points us to a value of some
19897 type which is *different* from the type of the parameter itself. Thus,
19898 if we tried to use DECL_INCOMING_RTL to generate a location attribute in
19899 such cases, the debugger would end up (for example) trying to fetch a
19900 `float' from a place which actually contains the first part of a
19901 `double'. That would lead to really incorrect and confusing
19902 output at debug-time.
19904 So, in general, we *do not* use DECL_INCOMING_RTL as a backup for DECL_RTL
19905 in cases where DECL_ARG_TYPE (decl) != TREE_TYPE (decl). There
19906 are a couple of exceptions however. On little-endian machines we can
19907 get away with using DECL_INCOMING_RTL even when DECL_ARG_TYPE (decl) is
19908 not the same as TREE_TYPE (decl), but only when DECL_ARG_TYPE (decl) is
19909 an integral type that is smaller than TREE_TYPE (decl). These cases arise
19910 when (on a little-endian machine) a non-prototyped function has a
19911 parameter declared to be of type `short' or `char'. In such cases,
19912 TREE_TYPE (decl) will be `short' or `char', DECL_ARG_TYPE (decl) will
19913 be `int', and DECL_INCOMING_RTL will point to the lowest-order byte of the
19914 passed `int' value. If the debugger then uses that address to fetch
19915 a `short' or a `char' (on a little-endian machine) the result will be
19916 the correct data, so we allow for such exceptional cases below.
19918 Note that our goal here is to describe the place where the given formal
19919 parameter lives during most of the function's activation (i.e. between the
19920 end of the prologue and the start of the epilogue). We'll do that as best
19921 as we can. Note however that if the given formal parameter is modified
19922 sometime during the execution of the function, then a stack backtrace (at
19923 debug-time) will show the function as having been called with the *new*
19924 value rather than the value which was originally passed in. This happens
19925 rarely enough that it is not a major problem, but it *is* a problem, and
19926 I'd like to fix it.
19928 A future version of dwarf2out.c may generate two additional attributes for
19929 any given DW_TAG_formal_parameter DIE which will describe the "passed
19930 type" and the "passed location" for the given formal parameter in addition
19931 to the attributes we now generate to indicate the "declared type" and the
19932 "active location" for each parameter. This additional set of attributes
19933 could be used by debuggers for stack backtraces. Separately, note that
19934 sometimes DECL_RTL can be NULL and DECL_INCOMING_RTL can be NULL also.
19935 This happens (for example) for inlined-instances of inline function formal
19936 parameters which are never referenced. This really shouldn't be
19937 happening. All PARM_DECL nodes should get valid non-NULL
19938 DECL_INCOMING_RTL values. FIXME. */
19940 /* Use DECL_RTL as the "location" unless we find something better. */
19941 rtl = DECL_RTL_IF_SET (decl);
19943 /* When generating abstract instances, ignore everything except
19944 constants, symbols living in memory, and symbols living in
19945 fixed registers. */
19946 if (! reload_completed)
19948 if (rtl
19949 && (CONSTANT_P (rtl)
19950 || (MEM_P (rtl)
19951 && CONSTANT_P (XEXP (rtl, 0)))
19952 || (REG_P (rtl)
19953 && VAR_P (decl)
19954 && TREE_STATIC (decl))))
19956 rtl = targetm.delegitimize_address (rtl);
19957 return rtl;
19959 rtl = NULL_RTX;
19961 else if (TREE_CODE (decl) == PARM_DECL)
19963 if (rtl == NULL_RTX
19964 || is_pseudo_reg (rtl)
19965 || (MEM_P (rtl)
19966 && is_pseudo_reg (XEXP (rtl, 0))
19967 && DECL_INCOMING_RTL (decl)
19968 && MEM_P (DECL_INCOMING_RTL (decl))
19969 && GET_MODE (rtl) == GET_MODE (DECL_INCOMING_RTL (decl))))
19971 tree declared_type = TREE_TYPE (decl);
19972 tree passed_type = DECL_ARG_TYPE (decl);
19973 machine_mode dmode = TYPE_MODE (declared_type);
19974 machine_mode pmode = TYPE_MODE (passed_type);
19976 /* This decl represents a formal parameter which was optimized out.
19977 Note that DECL_INCOMING_RTL may be NULL in here, but we handle
19978 all cases where (rtl == NULL_RTX) just below. */
19979 if (dmode == pmode)
19980 rtl = DECL_INCOMING_RTL (decl);
19981 else if ((rtl == NULL_RTX || is_pseudo_reg (rtl))
19982 && SCALAR_INT_MODE_P (dmode)
19983 && known_le (GET_MODE_SIZE (dmode), GET_MODE_SIZE (pmode))
19984 && DECL_INCOMING_RTL (decl))
19986 rtx inc = DECL_INCOMING_RTL (decl);
19987 if (REG_P (inc))
19988 rtl = inc;
19989 else if (MEM_P (inc))
19991 if (BYTES_BIG_ENDIAN)
19992 rtl = adjust_address_nv (inc, dmode,
19993 GET_MODE_SIZE (pmode)
19994 - GET_MODE_SIZE (dmode));
19995 else
19996 rtl = inc;
20001 /* If the parm was passed in registers, but lives on the stack, then
20002 make a big endian correction if the mode of the type of the
20003 parameter is not the same as the mode of the rtl. */
20004 /* ??? This is the same series of checks that are made in dbxout.c before
20005 we reach the big endian correction code there. It isn't clear if all
20006 of these checks are necessary here, but keeping them all is the safe
20007 thing to do. */
20008 else if (MEM_P (rtl)
20009 && XEXP (rtl, 0) != const0_rtx
20010 && ! CONSTANT_P (XEXP (rtl, 0))
20011 /* Not passed in memory. */
20012 && !MEM_P (DECL_INCOMING_RTL (decl))
20013 /* Not passed by invisible reference. */
20014 && (!REG_P (XEXP (rtl, 0))
20015 || REGNO (XEXP (rtl, 0)) == HARD_FRAME_POINTER_REGNUM
20016 || REGNO (XEXP (rtl, 0)) == STACK_POINTER_REGNUM
20017 #if !HARD_FRAME_POINTER_IS_ARG_POINTER
20018 || REGNO (XEXP (rtl, 0)) == ARG_POINTER_REGNUM
20019 #endif
20021 /* Big endian correction check. */
20022 && BYTES_BIG_ENDIAN
20023 && TYPE_MODE (TREE_TYPE (decl)) != GET_MODE (rtl)
20024 && known_lt (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl))),
20025 UNITS_PER_WORD))
20027 machine_mode addr_mode = get_address_mode (rtl);
20028 poly_int64 offset = (UNITS_PER_WORD
20029 - GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl))));
20031 rtl = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (decl)),
20032 plus_constant (addr_mode, XEXP (rtl, 0), offset));
20035 else if (VAR_P (decl)
20036 && rtl
20037 && MEM_P (rtl)
20038 && GET_MODE (rtl) != TYPE_MODE (TREE_TYPE (decl)))
20040 machine_mode addr_mode = get_address_mode (rtl);
20041 poly_int64 offset = byte_lowpart_offset (TYPE_MODE (TREE_TYPE (decl)),
20042 GET_MODE (rtl));
20044 /* If a variable is declared "register" yet is smaller than
20045 a register, then if we store the variable to memory, it
20046 looks like we're storing a register-sized value, when in
20047 fact we are not. We need to adjust the offset of the
20048 storage location to reflect the actual value's bytes,
20049 else gdb will not be able to display it. */
20050 if (maybe_ne (offset, 0))
20051 rtl = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (decl)),
20052 plus_constant (addr_mode, XEXP (rtl, 0), offset));
20055 /* A variable with no DECL_RTL but a DECL_INITIAL is a compile-time constant,
20056 and will have been substituted directly into all expressions that use it.
20057 C does not have such a concept, but C++ and other languages do. */
20058 if (!rtl && VAR_P (decl) && DECL_INITIAL (decl))
20059 rtl = rtl_for_decl_init (DECL_INITIAL (decl), TREE_TYPE (decl));
20061 if (rtl)
20062 rtl = targetm.delegitimize_address (rtl);
20064 /* If we don't look past the constant pool, we risk emitting a
20065 reference to a constant pool entry that isn't referenced from
20066 code, and thus is not emitted. */
20067 if (rtl)
20068 rtl = avoid_constant_pool_reference (rtl);
20070 /* Try harder to get a rtl. If this symbol ends up not being emitted
20071 in the current CU, resolve_addr will remove the expression referencing
20072 it. */
20073 if (rtl == NULL_RTX
20074 && !(early_dwarf && (flag_generate_lto || flag_generate_offload))
20075 && VAR_P (decl)
20076 && !DECL_EXTERNAL (decl)
20077 && TREE_STATIC (decl)
20078 && DECL_NAME (decl)
20079 && !DECL_HARD_REGISTER (decl)
20080 && DECL_MODE (decl) != VOIDmode)
20082 rtl = make_decl_rtl_for_debug (decl);
20083 if (!MEM_P (rtl)
20084 || GET_CODE (XEXP (rtl, 0)) != SYMBOL_REF
20085 || SYMBOL_REF_DECL (XEXP (rtl, 0)) != decl)
20086 rtl = NULL_RTX;
20089 return rtl;
20092 /* Check whether decl is a Fortran COMMON symbol. If not, NULL_TREE is
20093 returned. If so, the decl for the COMMON block is returned, and the
20094 value is the offset into the common block for the symbol. */
20096 static tree
20097 fortran_common (tree decl, HOST_WIDE_INT *value)
20099 tree val_expr, cvar;
20100 machine_mode mode;
20101 poly_int64 bitsize, bitpos;
20102 tree offset;
20103 HOST_WIDE_INT cbitpos;
20104 int unsignedp, reversep, volatilep = 0;
20106 /* If the decl isn't a VAR_DECL, or if it isn't static, or if
20107 it does not have a value (the offset into the common area), or if it
20108 is thread local (as opposed to global) then it isn't common, and shouldn't
20109 be handled as such. */
20110 if (!VAR_P (decl)
20111 || !TREE_STATIC (decl)
20112 || !DECL_HAS_VALUE_EXPR_P (decl)
20113 || !is_fortran ())
20114 return NULL_TREE;
20116 val_expr = DECL_VALUE_EXPR (decl);
20117 if (TREE_CODE (val_expr) != COMPONENT_REF)
20118 return NULL_TREE;
20120 cvar = get_inner_reference (val_expr, &bitsize, &bitpos, &offset, &mode,
20121 &unsignedp, &reversep, &volatilep);
20123 if (cvar == NULL_TREE
20124 || !VAR_P (cvar)
20125 || DECL_ARTIFICIAL (cvar)
20126 || !TREE_PUBLIC (cvar)
20127 /* We don't expect to have to cope with variable offsets,
20128 since at present all static data must have a constant size. */
20129 || !bitpos.is_constant (&cbitpos))
20130 return NULL_TREE;
20132 *value = 0;
20133 if (offset != NULL)
20135 if (!tree_fits_shwi_p (offset))
20136 return NULL_TREE;
20137 *value = tree_to_shwi (offset);
20139 if (cbitpos != 0)
20140 *value += cbitpos / BITS_PER_UNIT;
20142 return cvar;
20145 /* Generate *either* a DW_AT_location attribute or else a DW_AT_const_value
20146 data attribute for a variable or a parameter. We generate the
20147 DW_AT_const_value attribute only in those cases where the given variable
20148 or parameter does not have a true "location" either in memory or in a
20149 register. This can happen (for example) when a constant is passed as an
20150 actual argument in a call to an inline function. (It's possible that
20151 these things can crop up in other ways also.) Note that one type of
20152 constant value which can be passed into an inlined function is a constant
20153 pointer. This can happen for example if an actual argument in an inlined
20154 function call evaluates to a compile-time constant address.
20156 CACHE_P is true if it is worth caching the location list for DECL,
20157 so that future calls can reuse it rather than regenerate it from scratch.
20158 This is true for BLOCK_NONLOCALIZED_VARS in inlined subroutines,
20159 since we will need to refer to them each time the function is inlined. */
20161 static bool
20162 add_location_or_const_value_attribute (dw_die_ref die, tree decl, bool cache_p)
20164 rtx rtl;
20165 dw_loc_list_ref list;
20166 var_loc_list *loc_list;
20167 cached_dw_loc_list *cache;
20169 if (early_dwarf)
20170 return false;
20172 if (TREE_CODE (decl) == ERROR_MARK)
20173 return false;
20175 if (get_AT (die, DW_AT_location)
20176 || get_AT (die, DW_AT_const_value))
20177 return true;
20179 gcc_assert (VAR_P (decl) || TREE_CODE (decl) == PARM_DECL
20180 || TREE_CODE (decl) == RESULT_DECL);
20182 /* Try to get some constant RTL for this decl, and use that as the value of
20183 the location. */
20185 rtl = rtl_for_decl_location (decl);
20186 if (rtl && (CONSTANT_P (rtl) || GET_CODE (rtl) == CONST_STRING)
20187 && add_const_value_attribute (die, rtl))
20188 return true;
20190 /* See if we have single element location list that is equivalent to
20191 a constant value. That way we are better to use add_const_value_attribute
20192 rather than expanding constant value equivalent. */
20193 loc_list = lookup_decl_loc (decl);
20194 if (loc_list
20195 && loc_list->first
20196 && loc_list->first->next == NULL
20197 && NOTE_P (loc_list->first->loc)
20198 && NOTE_VAR_LOCATION (loc_list->first->loc)
20199 && NOTE_VAR_LOCATION_LOC (loc_list->first->loc))
20201 struct var_loc_node *node;
20203 node = loc_list->first;
20204 rtl = NOTE_VAR_LOCATION_LOC (node->loc);
20205 if (GET_CODE (rtl) == EXPR_LIST)
20206 rtl = XEXP (rtl, 0);
20207 if ((CONSTANT_P (rtl) || GET_CODE (rtl) == CONST_STRING)
20208 && add_const_value_attribute (die, rtl))
20209 return true;
20211 /* If this decl is from BLOCK_NONLOCALIZED_VARS, we might need its
20212 list several times. See if we've already cached the contents. */
20213 list = NULL;
20214 if (loc_list == NULL || cached_dw_loc_list_table == NULL)
20215 cache_p = false;
20216 if (cache_p)
20218 cache = cached_dw_loc_list_table->find_with_hash (decl, DECL_UID (decl));
20219 if (cache)
20220 list = cache->loc_list;
20222 if (list == NULL)
20224 list = loc_list_from_tree (decl, decl_by_reference_p (decl) ? 0 : 2,
20225 NULL);
20226 /* It is usually worth caching this result if the decl is from
20227 BLOCK_NONLOCALIZED_VARS and if the list has at least two elements. */
20228 if (cache_p && list && list->dw_loc_next)
20230 cached_dw_loc_list **slot
20231 = cached_dw_loc_list_table->find_slot_with_hash (decl,
20232 DECL_UID (decl),
20233 INSERT);
20234 cache = ggc_cleared_alloc<cached_dw_loc_list> ();
20235 cache->decl_id = DECL_UID (decl);
20236 cache->loc_list = list;
20237 *slot = cache;
20240 if (list)
20242 add_AT_location_description (die, DW_AT_location, list);
20243 return true;
20245 /* None of that worked, so it must not really have a location;
20246 try adding a constant value attribute from the DECL_INITIAL. */
20247 return tree_add_const_value_attribute_for_decl (die, decl);
20250 /* Helper function for tree_add_const_value_attribute. Natively encode
20251 initializer INIT into an array. Return true if successful. */
20253 static bool
20254 native_encode_initializer (tree init, unsigned char *array, int size)
20256 tree type;
20258 if (init == NULL_TREE)
20259 return false;
20261 STRIP_NOPS (init);
20262 switch (TREE_CODE (init))
20264 case STRING_CST:
20265 type = TREE_TYPE (init);
20266 if (TREE_CODE (type) == ARRAY_TYPE)
20268 tree enttype = TREE_TYPE (type);
20269 scalar_int_mode mode;
20271 if (!is_int_mode (TYPE_MODE (enttype), &mode)
20272 || GET_MODE_SIZE (mode) != 1)
20273 return false;
20274 if (int_size_in_bytes (type) != size)
20275 return false;
20276 if (size > TREE_STRING_LENGTH (init))
20278 memcpy (array, TREE_STRING_POINTER (init),
20279 TREE_STRING_LENGTH (init));
20280 memset (array + TREE_STRING_LENGTH (init),
20281 '\0', size - TREE_STRING_LENGTH (init));
20283 else
20284 memcpy (array, TREE_STRING_POINTER (init), size);
20285 return true;
20287 return false;
20288 case CONSTRUCTOR:
20289 type = TREE_TYPE (init);
20290 if (int_size_in_bytes (type) != size)
20291 return false;
20292 if (TREE_CODE (type) == ARRAY_TYPE)
20294 HOST_WIDE_INT min_index;
20295 unsigned HOST_WIDE_INT cnt;
20296 int curpos = 0, fieldsize;
20297 constructor_elt *ce;
20299 if (TYPE_DOMAIN (type) == NULL_TREE
20300 || !tree_fits_shwi_p (TYPE_MIN_VALUE (TYPE_DOMAIN (type))))
20301 return false;
20303 fieldsize = int_size_in_bytes (TREE_TYPE (type));
20304 if (fieldsize <= 0)
20305 return false;
20307 min_index = tree_to_shwi (TYPE_MIN_VALUE (TYPE_DOMAIN (type)));
20308 memset (array, '\0', size);
20309 FOR_EACH_VEC_SAFE_ELT (CONSTRUCTOR_ELTS (init), cnt, ce)
20311 tree val = ce->value;
20312 tree index = ce->index;
20313 int pos = curpos;
20314 if (index && TREE_CODE (index) == RANGE_EXPR)
20315 pos = (tree_to_shwi (TREE_OPERAND (index, 0)) - min_index)
20316 * fieldsize;
20317 else if (index)
20318 pos = (tree_to_shwi (index) - min_index) * fieldsize;
20320 if (val)
20322 STRIP_NOPS (val);
20323 if (!native_encode_initializer (val, array + pos, fieldsize))
20324 return false;
20326 curpos = pos + fieldsize;
20327 if (index && TREE_CODE (index) == RANGE_EXPR)
20329 int count = tree_to_shwi (TREE_OPERAND (index, 1))
20330 - tree_to_shwi (TREE_OPERAND (index, 0));
20331 while (count-- > 0)
20333 if (val)
20334 memcpy (array + curpos, array + pos, fieldsize);
20335 curpos += fieldsize;
20338 gcc_assert (curpos <= size);
20340 return true;
20342 else if (TREE_CODE (type) == RECORD_TYPE
20343 || TREE_CODE (type) == UNION_TYPE)
20345 tree field = NULL_TREE;
20346 unsigned HOST_WIDE_INT cnt;
20347 constructor_elt *ce;
20349 if (int_size_in_bytes (type) != size)
20350 return false;
20352 if (TREE_CODE (type) == RECORD_TYPE)
20353 field = TYPE_FIELDS (type);
20355 FOR_EACH_VEC_SAFE_ELT (CONSTRUCTOR_ELTS (init), cnt, ce)
20357 tree val = ce->value;
20358 int pos, fieldsize;
20360 if (ce->index != 0)
20361 field = ce->index;
20363 if (val)
20364 STRIP_NOPS (val);
20366 if (field == NULL_TREE || DECL_BIT_FIELD (field))
20367 return false;
20369 if (TREE_CODE (TREE_TYPE (field)) == ARRAY_TYPE
20370 && TYPE_DOMAIN (TREE_TYPE (field))
20371 && ! TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (field))))
20372 return false;
20373 else if (DECL_SIZE_UNIT (field) == NULL_TREE
20374 || !tree_fits_shwi_p (DECL_SIZE_UNIT (field)))
20375 return false;
20376 fieldsize = tree_to_shwi (DECL_SIZE_UNIT (field));
20377 pos = int_byte_position (field);
20378 gcc_assert (pos + fieldsize <= size);
20379 if (val && fieldsize != 0
20380 && !native_encode_initializer (val, array + pos, fieldsize))
20381 return false;
20383 return true;
20385 return false;
20386 case VIEW_CONVERT_EXPR:
20387 case NON_LVALUE_EXPR:
20388 return native_encode_initializer (TREE_OPERAND (init, 0), array, size);
20389 default:
20390 return native_encode_expr (init, array, size) == size;
20394 /* Attach a DW_AT_const_value attribute to DIE. The value of the
20395 attribute is the const value T. */
20397 static bool
20398 tree_add_const_value_attribute (dw_die_ref die, tree t)
20400 tree init;
20401 tree type = TREE_TYPE (t);
20402 rtx rtl;
20404 if (!t || !TREE_TYPE (t) || TREE_TYPE (t) == error_mark_node)
20405 return false;
20407 init = t;
20408 gcc_assert (!DECL_P (init));
20410 if (TREE_CODE (init) == INTEGER_CST)
20412 if (tree_fits_uhwi_p (init))
20414 add_AT_unsigned (die, DW_AT_const_value, tree_to_uhwi (init));
20415 return true;
20417 if (tree_fits_shwi_p (init))
20419 add_AT_int (die, DW_AT_const_value, tree_to_shwi (init));
20420 return true;
20423 if (! early_dwarf)
20425 rtl = rtl_for_decl_init (init, type);
20426 if (rtl)
20427 return add_const_value_attribute (die, rtl);
20429 /* If the host and target are sane, try harder. */
20430 if (CHAR_BIT == 8 && BITS_PER_UNIT == 8
20431 && initializer_constant_valid_p (init, type))
20433 HOST_WIDE_INT size = int_size_in_bytes (TREE_TYPE (init));
20434 if (size > 0 && (int) size == size)
20436 unsigned char *array = ggc_cleared_vec_alloc<unsigned char> (size);
20438 if (native_encode_initializer (init, array, size))
20440 add_AT_vec (die, DW_AT_const_value, size, 1, array);
20441 return true;
20443 ggc_free (array);
20446 return false;
20449 /* Attach a DW_AT_const_value attribute to VAR_DIE. The value of the
20450 attribute is the const value of T, where T is an integral constant
20451 variable with static storage duration
20452 (so it can't be a PARM_DECL or a RESULT_DECL). */
20454 static bool
20455 tree_add_const_value_attribute_for_decl (dw_die_ref var_die, tree decl)
20458 if (!decl
20459 || (!VAR_P (decl) && TREE_CODE (decl) != CONST_DECL)
20460 || (VAR_P (decl) && !TREE_STATIC (decl)))
20461 return false;
20463 if (TREE_READONLY (decl)
20464 && ! TREE_THIS_VOLATILE (decl)
20465 && DECL_INITIAL (decl))
20466 /* OK */;
20467 else
20468 return false;
20470 /* Don't add DW_AT_const_value if abstract origin already has one. */
20471 if (get_AT (var_die, DW_AT_const_value))
20472 return false;
20474 return tree_add_const_value_attribute (var_die, DECL_INITIAL (decl));
20477 /* Convert the CFI instructions for the current function into a
20478 location list. This is used for DW_AT_frame_base when we targeting
20479 a dwarf2 consumer that does not support the dwarf3
20480 DW_OP_call_frame_cfa. OFFSET is a constant to be added to all CFA
20481 expressions. */
20483 static dw_loc_list_ref
20484 convert_cfa_to_fb_loc_list (HOST_WIDE_INT offset)
20486 int ix;
20487 dw_fde_ref fde;
20488 dw_loc_list_ref list, *list_tail;
20489 dw_cfi_ref cfi;
20490 dw_cfa_location last_cfa, next_cfa;
20491 const char *start_label, *last_label, *section;
20492 dw_cfa_location remember;
20494 fde = cfun->fde;
20495 gcc_assert (fde != NULL);
20497 section = secname_for_decl (current_function_decl);
20498 list_tail = &list;
20499 list = NULL;
20501 memset (&next_cfa, 0, sizeof (next_cfa));
20502 next_cfa.reg = INVALID_REGNUM;
20503 remember = next_cfa;
20505 start_label = fde->dw_fde_begin;
20507 /* ??? Bald assumption that the CIE opcode list does not contain
20508 advance opcodes. */
20509 FOR_EACH_VEC_ELT (*cie_cfi_vec, ix, cfi)
20510 lookup_cfa_1 (cfi, &next_cfa, &remember);
20512 last_cfa = next_cfa;
20513 last_label = start_label;
20515 if (fde->dw_fde_second_begin && fde->dw_fde_switch_cfi_index == 0)
20517 /* If the first partition contained no CFI adjustments, the
20518 CIE opcodes apply to the whole first partition. */
20519 *list_tail = new_loc_list (build_cfa_loc (&last_cfa, offset),
20520 fde->dw_fde_begin, 0, fde->dw_fde_end, 0, section);
20521 list_tail =&(*list_tail)->dw_loc_next;
20522 start_label = last_label = fde->dw_fde_second_begin;
20525 FOR_EACH_VEC_SAFE_ELT (fde->dw_fde_cfi, ix, cfi)
20527 switch (cfi->dw_cfi_opc)
20529 case DW_CFA_set_loc:
20530 case DW_CFA_advance_loc1:
20531 case DW_CFA_advance_loc2:
20532 case DW_CFA_advance_loc4:
20533 if (!cfa_equal_p (&last_cfa, &next_cfa))
20535 *list_tail = new_loc_list (build_cfa_loc (&last_cfa, offset),
20536 start_label, 0, last_label, 0, section);
20538 list_tail = &(*list_tail)->dw_loc_next;
20539 last_cfa = next_cfa;
20540 start_label = last_label;
20542 last_label = cfi->dw_cfi_oprnd1.dw_cfi_addr;
20543 break;
20545 case DW_CFA_advance_loc:
20546 /* The encoding is complex enough that we should never emit this. */
20547 gcc_unreachable ();
20549 default:
20550 lookup_cfa_1 (cfi, &next_cfa, &remember);
20551 break;
20553 if (ix + 1 == fde->dw_fde_switch_cfi_index)
20555 if (!cfa_equal_p (&last_cfa, &next_cfa))
20557 *list_tail = new_loc_list (build_cfa_loc (&last_cfa, offset),
20558 start_label, 0, last_label, 0, section);
20560 list_tail = &(*list_tail)->dw_loc_next;
20561 last_cfa = next_cfa;
20562 start_label = last_label;
20564 *list_tail = new_loc_list (build_cfa_loc (&last_cfa, offset),
20565 start_label, 0, fde->dw_fde_end, 0, section);
20566 list_tail = &(*list_tail)->dw_loc_next;
20567 start_label = last_label = fde->dw_fde_second_begin;
20571 if (!cfa_equal_p (&last_cfa, &next_cfa))
20573 *list_tail = new_loc_list (build_cfa_loc (&last_cfa, offset),
20574 start_label, 0, last_label, 0, section);
20575 list_tail = &(*list_tail)->dw_loc_next;
20576 start_label = last_label;
20579 *list_tail = new_loc_list (build_cfa_loc (&next_cfa, offset),
20580 start_label, 0,
20581 fde->dw_fde_second_begin
20582 ? fde->dw_fde_second_end : fde->dw_fde_end, 0,
20583 section);
20585 maybe_gen_llsym (list);
20587 return list;
20590 /* Compute a displacement from the "steady-state frame pointer" to the
20591 frame base (often the same as the CFA), and store it in
20592 frame_pointer_fb_offset. OFFSET is added to the displacement
20593 before the latter is negated. */
20595 static void
20596 compute_frame_pointer_to_fb_displacement (poly_int64 offset)
20598 rtx reg, elim;
20600 #ifdef FRAME_POINTER_CFA_OFFSET
20601 reg = frame_pointer_rtx;
20602 offset += FRAME_POINTER_CFA_OFFSET (current_function_decl);
20603 #else
20604 reg = arg_pointer_rtx;
20605 offset += ARG_POINTER_CFA_OFFSET (current_function_decl);
20606 #endif
20608 elim = (ira_use_lra_p
20609 ? lra_eliminate_regs (reg, VOIDmode, NULL_RTX)
20610 : eliminate_regs (reg, VOIDmode, NULL_RTX));
20611 elim = strip_offset_and_add (elim, &offset);
20613 frame_pointer_fb_offset = -offset;
20615 /* ??? AVR doesn't set up valid eliminations when there is no stack frame
20616 in which to eliminate. This is because it's stack pointer isn't
20617 directly accessible as a register within the ISA. To work around
20618 this, assume that while we cannot provide a proper value for
20619 frame_pointer_fb_offset, we won't need one either. We can use
20620 hard frame pointer in debug info even if frame pointer isn't used
20621 since hard frame pointer in debug info is encoded with DW_OP_fbreg
20622 which uses the DW_AT_frame_base attribute, not hard frame pointer
20623 directly. */
20624 frame_pointer_fb_offset_valid
20625 = (elim == hard_frame_pointer_rtx || elim == stack_pointer_rtx);
20628 /* Generate a DW_AT_name attribute given some string value to be included as
20629 the value of the attribute. */
20631 static void
20632 add_name_attribute (dw_die_ref die, const char *name_string)
20634 if (name_string != NULL && *name_string != 0)
20636 if (demangle_name_func)
20637 name_string = (*demangle_name_func) (name_string);
20639 add_AT_string (die, DW_AT_name, name_string);
20643 /* Generate a DW_AT_description attribute given some string value to be included
20644 as the value of the attribute. */
20646 static void
20647 add_desc_attribute (dw_die_ref die, const char *name_string)
20649 if (!flag_describe_dies || (dwarf_version < 3 && dwarf_strict))
20650 return;
20652 if (name_string == NULL || *name_string == 0)
20653 return;
20655 if (demangle_name_func)
20656 name_string = (*demangle_name_func) (name_string);
20658 add_AT_string (die, DW_AT_description, name_string);
20661 /* Generate a DW_AT_description attribute given some decl to be included
20662 as the value of the attribute. */
20664 static void
20665 add_desc_attribute (dw_die_ref die, tree decl)
20667 tree decl_name;
20669 if (!flag_describe_dies || (dwarf_version < 3 && dwarf_strict))
20670 return;
20672 if (decl == NULL_TREE || !DECL_P (decl))
20673 return;
20674 decl_name = DECL_NAME (decl);
20676 if (decl_name != NULL && IDENTIFIER_POINTER (decl_name) != NULL)
20678 const char *name = dwarf2_name (decl, 0);
20679 add_desc_attribute (die, name ? name : IDENTIFIER_POINTER (decl_name));
20681 else
20683 char *desc = print_generic_expr_to_str (decl);
20684 add_desc_attribute (die, desc);
20685 free (desc);
20689 /* Retrieve the descriptive type of TYPE, if any, make sure it has a
20690 DIE and attach a DW_AT_GNAT_descriptive_type attribute to the DIE
20691 of TYPE accordingly.
20693 ??? This is a temporary measure until after we're able to generate
20694 regular DWARF for the complex Ada type system. */
20696 static void
20697 add_gnat_descriptive_type_attribute (dw_die_ref die, tree type,
20698 dw_die_ref context_die)
20700 tree dtype;
20701 dw_die_ref dtype_die;
20703 if (!lang_hooks.types.descriptive_type)
20704 return;
20706 dtype = lang_hooks.types.descriptive_type (type);
20707 if (!dtype)
20708 return;
20710 dtype_die = lookup_type_die (dtype);
20711 if (!dtype_die)
20713 gen_type_die (dtype, context_die);
20714 dtype_die = lookup_type_die (dtype);
20715 gcc_assert (dtype_die);
20718 add_AT_die_ref (die, DW_AT_GNAT_descriptive_type, dtype_die);
20721 /* Retrieve the comp_dir string suitable for use with DW_AT_comp_dir. */
20723 static const char *
20724 comp_dir_string (void)
20726 const char *wd;
20727 char *wd_plus_sep = NULL;
20728 static const char *cached_wd = NULL;
20730 if (cached_wd != NULL)
20731 return cached_wd;
20733 wd = get_src_pwd ();
20734 if (wd == NULL)
20735 return NULL;
20737 if (DWARF2_DIR_SHOULD_END_WITH_SEPARATOR)
20739 size_t wdlen = strlen (wd);
20740 wd_plus_sep = XNEWVEC (char, wdlen + 2);
20741 strcpy (wd_plus_sep, wd);
20742 wd_plus_sep [wdlen] = DIR_SEPARATOR;
20743 wd_plus_sep [wdlen + 1] = 0;
20744 wd = wd_plus_sep;
20747 cached_wd = remap_debug_filename (wd);
20749 /* remap_debug_filename can just pass through wd or return a new gc string.
20750 These two types can't be both stored in a GTY(())-tagged string, but since
20751 the cached value lives forever just copy it if needed. */
20752 if (cached_wd != wd)
20754 cached_wd = xstrdup (cached_wd);
20755 if (DWARF2_DIR_SHOULD_END_WITH_SEPARATOR && wd_plus_sep != NULL)
20756 free (wd_plus_sep);
20759 return cached_wd;
20762 /* Generate a DW_AT_comp_dir attribute for DIE. */
20764 static void
20765 add_comp_dir_attribute (dw_die_ref die)
20767 const char * wd = comp_dir_string ();
20768 if (wd != NULL)
20769 add_AT_string (die, DW_AT_comp_dir, wd);
20772 /* Given a tree node VALUE describing a scalar attribute ATTR (i.e. a bound, a
20773 pointer computation, ...), output a representation for that bound according
20774 to the accepted FORMS (see enum dw_scalar_form) and add it to DIE. See
20775 loc_list_from_tree for the meaning of CONTEXT. */
20777 static void
20778 add_scalar_info (dw_die_ref die, enum dwarf_attribute attr, tree value,
20779 int forms, struct loc_descr_context *context)
20781 dw_die_ref context_die, decl_die = NULL;
20782 dw_loc_list_ref list;
20783 bool strip_conversions = true;
20784 bool placeholder_seen = false;
20786 while (strip_conversions)
20787 switch (TREE_CODE (value))
20789 case ERROR_MARK:
20790 case SAVE_EXPR:
20791 return;
20793 CASE_CONVERT:
20794 case VIEW_CONVERT_EXPR:
20795 value = TREE_OPERAND (value, 0);
20796 break;
20798 default:
20799 strip_conversions = false;
20800 break;
20803 /* If possible and permitted, output the attribute as a constant. */
20804 if ((forms & dw_scalar_form_constant) != 0
20805 && TREE_CODE (value) == INTEGER_CST)
20807 unsigned int prec = simple_type_size_in_bits (TREE_TYPE (value));
20809 /* If HOST_WIDE_INT is big enough then represent the bound as
20810 a constant value. We need to choose a form based on
20811 whether the type is signed or unsigned. We cannot just
20812 call add_AT_unsigned if the value itself is positive
20813 (add_AT_unsigned might add the unsigned value encoded as
20814 DW_FORM_data[1248]). Some DWARF consumers will lookup the
20815 bounds type and then sign extend any unsigned values found
20816 for signed types. This is needed only for
20817 DW_AT_{lower,upper}_bound, since for most other attributes,
20818 consumers will treat DW_FORM_data[1248] as unsigned values,
20819 regardless of the underlying type. */
20820 if (prec <= HOST_BITS_PER_WIDE_INT
20821 || tree_fits_uhwi_p (value))
20823 if (TYPE_UNSIGNED (TREE_TYPE (value)))
20824 add_AT_unsigned (die, attr, TREE_INT_CST_LOW (value));
20825 else
20826 add_AT_int (die, attr, TREE_INT_CST_LOW (value));
20828 else
20829 /* Otherwise represent the bound as an unsigned value with
20830 the precision of its type. The precision and signedness
20831 of the type will be necessary to re-interpret it
20832 unambiguously. */
20833 add_AT_wide (die, attr, wi::to_wide (value));
20834 return;
20837 /* Otherwise, if it's possible and permitted too, output a reference to
20838 another DIE. */
20839 if ((forms & dw_scalar_form_reference) != 0)
20841 tree decl = NULL_TREE;
20843 /* Some type attributes reference an outer type. For instance, the upper
20844 bound of an array may reference an embedding record (this happens in
20845 Ada). */
20846 if (TREE_CODE (value) == COMPONENT_REF
20847 && TREE_CODE (TREE_OPERAND (value, 0)) == PLACEHOLDER_EXPR
20848 && TREE_CODE (TREE_OPERAND (value, 1)) == FIELD_DECL)
20849 decl = TREE_OPERAND (value, 1);
20851 else if (VAR_P (value)
20852 || TREE_CODE (value) == PARM_DECL
20853 || TREE_CODE (value) == RESULT_DECL)
20854 decl = value;
20856 if (decl != NULL_TREE)
20858 decl_die = lookup_decl_die (decl);
20860 /* ??? Can this happen, or should the variable have been bound
20861 first? Probably it can, since I imagine that we try to create
20862 the types of parameters in the order in which they exist in
20863 the list, and won't have created a forward reference to a
20864 later parameter. */
20865 if (decl_die != NULL)
20867 if (get_AT (decl_die, DW_AT_location)
20868 || get_AT (decl_die, DW_AT_data_member_location)
20869 || get_AT (decl_die, DW_AT_const_value))
20871 add_AT_die_ref (die, attr, decl_die);
20872 return;
20878 /* Last chance: try to create a stack operation procedure to evaluate the
20879 value. Do nothing if even that is not possible or permitted. */
20880 if ((forms & dw_scalar_form_exprloc) == 0)
20881 return;
20883 list = loc_list_from_tree (value, 2, context);
20884 if (context && context->placeholder_arg)
20886 placeholder_seen = context->placeholder_seen;
20887 context->placeholder_seen = false;
20889 if (list == NULL || single_element_loc_list_p (list))
20891 /* If this attribute is not a reference nor constant, it is
20892 a DWARF expression rather than location description. For that
20893 loc_list_from_tree (value, 0, &context) is needed. */
20894 dw_loc_list_ref list2 = loc_list_from_tree (value, 0, context);
20895 if (list2 && single_element_loc_list_p (list2))
20897 if (placeholder_seen)
20899 struct dwarf_procedure_info dpi;
20900 dpi.fndecl = NULL_TREE;
20901 dpi.args_count = 1;
20902 if (!resolve_args_picking (list2->expr, 1, &dpi))
20903 return;
20905 add_AT_loc (die, attr, list2->expr);
20906 return;
20910 /* If that failed to give a single element location list, fall back to
20911 outputting this as a reference... still if permitted. */
20912 if (list == NULL
20913 || (forms & dw_scalar_form_reference) == 0
20914 || placeholder_seen)
20915 return;
20917 if (!decl_die)
20919 if (current_function_decl == 0)
20920 context_die = comp_unit_die ();
20921 else
20922 context_die = lookup_decl_die (current_function_decl);
20924 decl_die = new_die (DW_TAG_variable, context_die, value);
20925 add_AT_flag (decl_die, DW_AT_artificial, 1);
20926 add_type_attribute (decl_die, TREE_TYPE (value), TYPE_QUAL_CONST, false,
20927 context_die);
20930 add_AT_location_description (decl_die, DW_AT_location, list);
20931 add_AT_die_ref (die, attr, decl_die);
20934 /* Return the default for DW_AT_lower_bound, or -1 if there is not any
20935 default. */
20937 static int
20938 lower_bound_default (void)
20940 switch (get_AT_unsigned (comp_unit_die (), DW_AT_language))
20942 case DW_LANG_C:
20943 case DW_LANG_C89:
20944 case DW_LANG_C99:
20945 case DW_LANG_C11:
20946 case DW_LANG_C_plus_plus:
20947 case DW_LANG_C_plus_plus_11:
20948 case DW_LANG_C_plus_plus_14:
20949 case DW_LANG_ObjC:
20950 case DW_LANG_ObjC_plus_plus:
20951 return 0;
20952 case DW_LANG_Fortran77:
20953 case DW_LANG_Fortran90:
20954 case DW_LANG_Fortran95:
20955 case DW_LANG_Fortran03:
20956 case DW_LANG_Fortran08:
20957 return 1;
20958 case DW_LANG_UPC:
20959 case DW_LANG_D:
20960 case DW_LANG_Python:
20961 return dwarf_version >= 4 ? 0 : -1;
20962 case DW_LANG_Ada95:
20963 case DW_LANG_Ada83:
20964 case DW_LANG_Cobol74:
20965 case DW_LANG_Cobol85:
20966 case DW_LANG_Modula2:
20967 case DW_LANG_PLI:
20968 return dwarf_version >= 4 ? 1 : -1;
20969 default:
20970 return -1;
20974 /* Given a tree node describing an array bound (either lower or upper) output
20975 a representation for that bound. */
20977 static void
20978 add_bound_info (dw_die_ref subrange_die, enum dwarf_attribute bound_attr,
20979 tree bound, struct loc_descr_context *context)
20981 int dflt;
20983 while (1)
20984 switch (TREE_CODE (bound))
20986 /* Strip all conversions. */
20987 CASE_CONVERT:
20988 case VIEW_CONVERT_EXPR:
20989 bound = TREE_OPERAND (bound, 0);
20990 break;
20992 /* All fixed-bounds are represented by INTEGER_CST nodes. Lower bounds
20993 are even omitted when they are the default. */
20994 case INTEGER_CST:
20995 /* If the value for this bound is the default one, we can even omit the
20996 attribute. */
20997 if (bound_attr == DW_AT_lower_bound
20998 && tree_fits_shwi_p (bound)
20999 && (dflt = lower_bound_default ()) != -1
21000 && tree_to_shwi (bound) == dflt)
21001 return;
21003 /* FALLTHRU */
21005 default:
21006 /* Because of the complex interaction there can be with other GNAT
21007 encodings, GDB isn't ready yet to handle proper DWARF description
21008 for self-referencial subrange bounds: let GNAT encodings do the
21009 magic in such a case. */
21010 if (is_ada ()
21011 && gnat_encodings != DWARF_GNAT_ENCODINGS_MINIMAL
21012 && contains_placeholder_p (bound))
21013 return;
21015 add_scalar_info (subrange_die, bound_attr, bound,
21016 dw_scalar_form_constant
21017 | dw_scalar_form_exprloc
21018 | dw_scalar_form_reference,
21019 context);
21020 return;
21024 /* Add subscript info to TYPE_DIE, describing an array TYPE, collapsing
21025 possibly nested array subscripts in a flat sequence if COLLAPSE_P is true.
21026 Note that the block of subscript information for an array type also
21027 includes information about the element type of the given array type.
21029 This function reuses previously set type and bound information if
21030 available. */
21032 static void
21033 add_subscript_info (dw_die_ref type_die, tree type, bool collapse_p)
21035 unsigned dimension_number;
21036 tree lower, upper;
21037 dw_die_ref child = type_die->die_child;
21039 for (dimension_number = 0;
21040 TREE_CODE (type) == ARRAY_TYPE && (dimension_number == 0 || collapse_p);
21041 type = TREE_TYPE (type), dimension_number++)
21043 tree domain = TYPE_DOMAIN (type);
21045 if (TYPE_STRING_FLAG (type) && is_fortran () && dimension_number > 0)
21046 break;
21048 /* Arrays come in three flavors: Unspecified bounds, fixed bounds,
21049 and (in GNU C only) variable bounds. Handle all three forms
21050 here. */
21052 /* Find and reuse a previously generated DW_TAG_subrange_type if
21053 available.
21055 For multi-dimensional arrays, as we iterate through the
21056 various dimensions in the enclosing for loop above, we also
21057 iterate through the DIE children and pick at each
21058 DW_TAG_subrange_type previously generated (if available).
21059 Each child DW_TAG_subrange_type DIE describes the range of
21060 the current dimension. At this point we should have as many
21061 DW_TAG_subrange_type's as we have dimensions in the
21062 array. */
21063 dw_die_ref subrange_die = NULL;
21064 if (child)
21065 while (1)
21067 child = child->die_sib;
21068 if (child->die_tag == DW_TAG_subrange_type)
21069 subrange_die = child;
21070 if (child == type_die->die_child)
21072 /* If we wrapped around, stop looking next time. */
21073 child = NULL;
21074 break;
21076 if (child->die_tag == DW_TAG_subrange_type)
21077 break;
21079 if (!subrange_die)
21080 subrange_die = new_die (DW_TAG_subrange_type, type_die, NULL);
21082 if (domain)
21084 /* We have an array type with specified bounds. */
21085 lower = TYPE_MIN_VALUE (domain);
21086 upper = TYPE_MAX_VALUE (domain);
21088 /* Define the index type. */
21089 if (TREE_TYPE (domain)
21090 && !get_AT (subrange_die, DW_AT_type))
21092 /* ??? This is probably an Ada unnamed subrange type. Ignore the
21093 TREE_TYPE field. We can't emit debug info for this
21094 because it is an unnamed integral type. */
21095 if (TREE_CODE (domain) == INTEGER_TYPE
21096 && TYPE_NAME (domain) == NULL_TREE
21097 && TREE_CODE (TREE_TYPE (domain)) == INTEGER_TYPE
21098 && TYPE_NAME (TREE_TYPE (domain)) == NULL_TREE)
21100 else
21101 add_type_attribute (subrange_die, TREE_TYPE (domain),
21102 TYPE_UNQUALIFIED, false, type_die);
21105 /* ??? If upper is NULL, the array has unspecified length,
21106 but it does have a lower bound. This happens with Fortran
21107 dimension arr(N:*)
21108 Since the debugger is definitely going to need to know N
21109 to produce useful results, go ahead and output the lower
21110 bound solo, and hope the debugger can cope. */
21112 if (!get_AT (subrange_die, DW_AT_lower_bound))
21113 add_bound_info (subrange_die, DW_AT_lower_bound, lower, NULL);
21114 if (!get_AT (subrange_die, DW_AT_upper_bound)
21115 && !get_AT (subrange_die, DW_AT_count))
21117 if (upper)
21118 add_bound_info (subrange_die, DW_AT_upper_bound, upper, NULL);
21119 else if ((is_c () || is_cxx ()) && COMPLETE_TYPE_P (type))
21120 /* Zero-length array. */
21121 add_bound_info (subrange_die, DW_AT_count,
21122 build_int_cst (TREE_TYPE (lower), 0), NULL);
21126 /* Otherwise we have an array type with an unspecified length. The
21127 DWARF-2 spec does not say how to handle this; let's just leave out the
21128 bounds. */
21132 /* Add a DW_AT_byte_size attribute to DIE with TREE_NODE's size. */
21134 static void
21135 add_byte_size_attribute (dw_die_ref die, tree tree_node)
21137 dw_die_ref decl_die;
21138 HOST_WIDE_INT size;
21139 dw_loc_descr_ref size_expr = NULL;
21141 switch (TREE_CODE (tree_node))
21143 case ERROR_MARK:
21144 size = 0;
21145 break;
21146 case ENUMERAL_TYPE:
21147 case RECORD_TYPE:
21148 case UNION_TYPE:
21149 case QUAL_UNION_TYPE:
21150 if (TREE_CODE (TYPE_SIZE_UNIT (tree_node)) == VAR_DECL
21151 && (decl_die = lookup_decl_die (TYPE_SIZE_UNIT (tree_node))))
21153 add_AT_die_ref (die, DW_AT_byte_size, decl_die);
21154 return;
21156 size_expr = type_byte_size (tree_node, &size);
21157 break;
21158 case FIELD_DECL:
21159 /* For a data member of a struct or union, the DW_AT_byte_size is
21160 generally given as the number of bytes normally allocated for an
21161 object of the *declared* type of the member itself. This is true
21162 even for bit-fields. */
21163 size = int_size_in_bytes (field_type (tree_node));
21164 break;
21165 default:
21166 gcc_unreachable ();
21169 /* Support for dynamically-sized objects was introduced by DWARFv3.
21170 At the moment, GDB does not handle variable byte sizes very well,
21171 though. */
21172 if ((dwarf_version >= 3 || !dwarf_strict)
21173 && gnat_encodings == DWARF_GNAT_ENCODINGS_MINIMAL
21174 && size_expr != NULL)
21175 add_AT_loc (die, DW_AT_byte_size, size_expr);
21177 /* Note that `size' might be -1 when we get to this point. If it is, that
21178 indicates that the byte size of the entity in question is variable and
21179 that we could not generate a DWARF expression that computes it. */
21180 if (size >= 0)
21181 add_AT_unsigned (die, DW_AT_byte_size, size);
21184 /* Add a DW_AT_alignment attribute to DIE with TREE_NODE's non-default
21185 alignment. */
21187 static void
21188 add_alignment_attribute (dw_die_ref die, tree tree_node)
21190 if (dwarf_version < 5 && dwarf_strict)
21191 return;
21193 unsigned align;
21195 if (DECL_P (tree_node))
21197 if (!DECL_USER_ALIGN (tree_node))
21198 return;
21200 align = DECL_ALIGN_UNIT (tree_node);
21202 else if (TYPE_P (tree_node))
21204 if (!TYPE_USER_ALIGN (tree_node))
21205 return;
21207 align = TYPE_ALIGN_UNIT (tree_node);
21209 else
21210 gcc_unreachable ();
21212 add_AT_unsigned (die, DW_AT_alignment, align);
21215 /* For a FIELD_DECL node which represents a bit-field, output an attribute
21216 which specifies the distance in bits from the highest order bit of the
21217 "containing object" for the bit-field to the highest order bit of the
21218 bit-field itself.
21220 For any given bit-field, the "containing object" is a hypothetical object
21221 (of some integral or enum type) within which the given bit-field lives. The
21222 type of this hypothetical "containing object" is always the same as the
21223 declared type of the individual bit-field itself. The determination of the
21224 exact location of the "containing object" for a bit-field is rather
21225 complicated. It's handled by the `field_byte_offset' function (above).
21227 CTX is required: see the comment for VLR_CONTEXT.
21229 Note that it is the size (in bytes) of the hypothetical "containing object"
21230 which will be given in the DW_AT_byte_size attribute for this bit-field.
21231 (See `byte_size_attribute' above). */
21233 static inline void
21234 add_bit_offset_attribute (dw_die_ref die, tree decl, struct vlr_context *ctx)
21236 HOST_WIDE_INT object_offset_in_bytes;
21237 tree original_type = DECL_BIT_FIELD_TYPE (decl);
21238 HOST_WIDE_INT bitpos_int;
21239 HOST_WIDE_INT highest_order_object_bit_offset;
21240 HOST_WIDE_INT highest_order_field_bit_offset;
21241 HOST_WIDE_INT bit_offset;
21243 field_byte_offset (decl, ctx, &object_offset_in_bytes);
21245 /* Must be a field and a bit field. */
21246 gcc_assert (original_type && TREE_CODE (decl) == FIELD_DECL);
21248 /* We can't yet handle bit-fields whose offsets are variable, so if we
21249 encounter such things, just return without generating any attribute
21250 whatsoever. Likewise for variable or too large size. */
21251 if (! tree_fits_shwi_p (bit_position (decl))
21252 || ! tree_fits_uhwi_p (DECL_SIZE (decl)))
21253 return;
21255 bitpos_int = int_bit_position (decl);
21257 /* Note that the bit offset is always the distance (in bits) from the
21258 highest-order bit of the "containing object" to the highest-order bit of
21259 the bit-field itself. Since the "high-order end" of any object or field
21260 is different on big-endian and little-endian machines, the computation
21261 below must take account of these differences. */
21262 highest_order_object_bit_offset = object_offset_in_bytes * BITS_PER_UNIT;
21263 highest_order_field_bit_offset = bitpos_int;
21265 if (! BYTES_BIG_ENDIAN)
21267 highest_order_field_bit_offset += tree_to_shwi (DECL_SIZE (decl));
21268 highest_order_object_bit_offset +=
21269 simple_type_size_in_bits (original_type);
21272 bit_offset
21273 = (! BYTES_BIG_ENDIAN
21274 ? highest_order_object_bit_offset - highest_order_field_bit_offset
21275 : highest_order_field_bit_offset - highest_order_object_bit_offset);
21277 if (bit_offset < 0)
21278 add_AT_int (die, DW_AT_bit_offset, bit_offset);
21279 else
21280 add_AT_unsigned (die, DW_AT_bit_offset, (unsigned HOST_WIDE_INT) bit_offset);
21283 /* For a FIELD_DECL node which represents a bit field, output an attribute
21284 which specifies the length in bits of the given field. */
21286 static inline void
21287 add_bit_size_attribute (dw_die_ref die, tree decl)
21289 /* Must be a field and a bit field. */
21290 gcc_assert (TREE_CODE (decl) == FIELD_DECL
21291 && DECL_BIT_FIELD_TYPE (decl));
21293 if (tree_fits_uhwi_p (DECL_SIZE (decl)))
21294 add_AT_unsigned (die, DW_AT_bit_size, tree_to_uhwi (DECL_SIZE (decl)));
21297 /* If the compiled language is ANSI C, then add a 'prototyped'
21298 attribute, if arg types are given for the parameters of a function. */
21300 static inline void
21301 add_prototyped_attribute (dw_die_ref die, tree func_type)
21303 switch (get_AT_unsigned (comp_unit_die (), DW_AT_language))
21305 case DW_LANG_C:
21306 case DW_LANG_C89:
21307 case DW_LANG_C99:
21308 case DW_LANG_C11:
21309 case DW_LANG_ObjC:
21310 if (prototype_p (func_type))
21311 add_AT_flag (die, DW_AT_prototyped, 1);
21312 break;
21313 default:
21314 break;
21318 /* Add an 'abstract_origin' attribute below a given DIE. The DIE is found
21319 by looking in the type declaration, the object declaration equate table or
21320 the block mapping. */
21322 static inline void
21323 add_abstract_origin_attribute (dw_die_ref die, tree origin)
21325 dw_die_ref origin_die = NULL;
21327 /* For late LTO debug output we want to refer directly to the abstract
21328 DIE in the early debug rather to the possibly existing concrete
21329 instance and avoid creating that just for this purpose. */
21330 sym_off_pair *desc;
21331 if (in_lto_p
21332 && external_die_map
21333 && (desc = external_die_map->get (origin)))
21335 add_AT_external_die_ref (die, DW_AT_abstract_origin,
21336 desc->sym, desc->off);
21337 return;
21340 if (DECL_P (origin))
21341 origin_die = lookup_decl_die (origin);
21342 else if (TYPE_P (origin))
21343 origin_die = lookup_type_die (origin);
21344 else if (TREE_CODE (origin) == BLOCK)
21345 origin_die = lookup_block_die (origin);
21347 /* XXX: Functions that are never lowered don't always have correct block
21348 trees (in the case of java, they simply have no block tree, in some other
21349 languages). For these functions, there is nothing we can really do to
21350 output correct debug info for inlined functions in all cases. Rather
21351 than die, we'll just produce deficient debug info now, in that we will
21352 have variables without a proper abstract origin. In the future, when all
21353 functions are lowered, we should re-add a gcc_assert (origin_die)
21354 here. */
21356 if (origin_die)
21357 add_AT_die_ref (die, DW_AT_abstract_origin, origin_die);
21360 /* We do not currently support the pure_virtual attribute. */
21362 static inline void
21363 add_pure_or_virtual_attribute (dw_die_ref die, tree func_decl)
21365 if (DECL_VINDEX (func_decl))
21367 add_AT_unsigned (die, DW_AT_virtuality, DW_VIRTUALITY_virtual);
21369 if (tree_fits_shwi_p (DECL_VINDEX (func_decl)))
21370 add_AT_loc (die, DW_AT_vtable_elem_location,
21371 new_loc_descr (DW_OP_constu,
21372 tree_to_shwi (DECL_VINDEX (func_decl)),
21373 0));
21375 /* GNU extension: Record what type this method came from originally. */
21376 if (debug_info_level > DINFO_LEVEL_TERSE
21377 && DECL_CONTEXT (func_decl))
21378 add_AT_die_ref (die, DW_AT_containing_type,
21379 lookup_type_die (DECL_CONTEXT (func_decl)));
21383 /* Add a DW_AT_linkage_name or DW_AT_MIPS_linkage_name attribute for the
21384 given decl. This used to be a vendor extension until after DWARF 4
21385 standardized it. */
21387 static void
21388 add_linkage_attr (dw_die_ref die, tree decl)
21390 const char *name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
21392 /* Mimic what assemble_name_raw does with a leading '*'. */
21393 if (name[0] == '*')
21394 name = &name[1];
21396 if (dwarf_version >= 4)
21397 add_AT_string (die, DW_AT_linkage_name, name);
21398 else
21399 add_AT_string (die, DW_AT_MIPS_linkage_name, name);
21402 /* Add source coordinate attributes for the given decl. */
21404 static void
21405 add_src_coords_attributes (dw_die_ref die, tree decl)
21407 expanded_location s;
21409 if (LOCATION_LOCUS (DECL_SOURCE_LOCATION (decl)) == UNKNOWN_LOCATION)
21410 return;
21411 s = expand_location (DECL_SOURCE_LOCATION (decl));
21412 add_AT_file (die, DW_AT_decl_file, lookup_filename (s.file));
21413 add_AT_unsigned (die, DW_AT_decl_line, s.line);
21414 if (debug_column_info && s.column)
21415 add_AT_unsigned (die, DW_AT_decl_column, s.column);
21418 /* Add DW_AT_{,MIPS_}linkage_name attribute for the given decl. */
21420 static void
21421 add_linkage_name_raw (dw_die_ref die, tree decl)
21423 /* Defer until we have an assembler name set. */
21424 if (!DECL_ASSEMBLER_NAME_SET_P (decl))
21426 limbo_die_node *asm_name;
21428 asm_name = ggc_cleared_alloc<limbo_die_node> ();
21429 asm_name->die = die;
21430 asm_name->created_for = decl;
21431 asm_name->next = deferred_asm_name;
21432 deferred_asm_name = asm_name;
21434 else if (DECL_ASSEMBLER_NAME (decl) != DECL_NAME (decl))
21435 add_linkage_attr (die, decl);
21438 /* Add DW_AT_{,MIPS_}linkage_name attribute for the given decl if desired. */
21440 static void
21441 add_linkage_name (dw_die_ref die, tree decl)
21443 if (debug_info_level > DINFO_LEVEL_NONE
21444 && VAR_OR_FUNCTION_DECL_P (decl)
21445 && TREE_PUBLIC (decl)
21446 && !(VAR_P (decl) && DECL_REGISTER (decl))
21447 && die->die_tag != DW_TAG_member)
21448 add_linkage_name_raw (die, decl);
21451 /* Add a DW_AT_name attribute and source coordinate attribute for the
21452 given decl, but only if it actually has a name. */
21454 static void
21455 add_name_and_src_coords_attributes (dw_die_ref die, tree decl,
21456 bool no_linkage_name)
21458 tree decl_name;
21460 decl_name = DECL_NAME (decl);
21461 if (decl_name != NULL && IDENTIFIER_POINTER (decl_name) != NULL)
21463 const char *name = dwarf2_name (decl, 0);
21464 if (name)
21465 add_name_attribute (die, name);
21466 else
21467 add_desc_attribute (die, decl);
21469 if (! DECL_ARTIFICIAL (decl))
21470 add_src_coords_attributes (die, decl);
21472 if (!no_linkage_name)
21473 add_linkage_name (die, decl);
21475 else
21476 add_desc_attribute (die, decl);
21478 #ifdef VMS_DEBUGGING_INFO
21479 /* Get the function's name, as described by its RTL. This may be different
21480 from the DECL_NAME name used in the source file. */
21481 if (TREE_CODE (decl) == FUNCTION_DECL && TREE_ASM_WRITTEN (decl))
21483 add_AT_addr (die, DW_AT_VMS_rtnbeg_pd_address,
21484 XEXP (DECL_RTL (decl), 0), false);
21485 vec_safe_push (used_rtx_array, XEXP (DECL_RTL (decl), 0));
21487 #endif /* VMS_DEBUGGING_INFO */
21490 /* Add VALUE as a DW_AT_discr_value attribute to DIE. */
21492 static void
21493 add_discr_value (dw_die_ref die, dw_discr_value *value)
21495 dw_attr_node attr;
21497 attr.dw_attr = DW_AT_discr_value;
21498 attr.dw_attr_val.val_class = dw_val_class_discr_value;
21499 attr.dw_attr_val.val_entry = NULL;
21500 attr.dw_attr_val.v.val_discr_value.pos = value->pos;
21501 if (value->pos)
21502 attr.dw_attr_val.v.val_discr_value.v.uval = value->v.uval;
21503 else
21504 attr.dw_attr_val.v.val_discr_value.v.sval = value->v.sval;
21505 add_dwarf_attr (die, &attr);
21508 /* Add DISCR_LIST as a DW_AT_discr_list to DIE. */
21510 static void
21511 add_discr_list (dw_die_ref die, dw_discr_list_ref discr_list)
21513 dw_attr_node attr;
21515 attr.dw_attr = DW_AT_discr_list;
21516 attr.dw_attr_val.val_class = dw_val_class_discr_list;
21517 attr.dw_attr_val.val_entry = NULL;
21518 attr.dw_attr_val.v.val_discr_list = discr_list;
21519 add_dwarf_attr (die, &attr);
21522 static inline dw_discr_list_ref
21523 AT_discr_list (dw_attr_node *attr)
21525 return attr->dw_attr_val.v.val_discr_list;
21528 #ifdef VMS_DEBUGGING_INFO
21529 /* Output the debug main pointer die for VMS */
21531 void
21532 dwarf2out_vms_debug_main_pointer (void)
21534 char label[MAX_ARTIFICIAL_LABEL_BYTES];
21535 dw_die_ref die;
21537 /* Allocate the VMS debug main subprogram die. */
21538 die = new_die_raw (DW_TAG_subprogram);
21539 add_name_attribute (die, VMS_DEBUG_MAIN_POINTER);
21540 ASM_GENERATE_INTERNAL_LABEL (label, PROLOGUE_END_LABEL,
21541 current_function_funcdef_no);
21542 add_AT_lbl_id (die, DW_AT_entry_pc, label);
21544 /* Make it the first child of comp_unit_die (). */
21545 die->die_parent = comp_unit_die ();
21546 if (comp_unit_die ()->die_child)
21548 die->die_sib = comp_unit_die ()->die_child->die_sib;
21549 comp_unit_die ()->die_child->die_sib = die;
21551 else
21553 die->die_sib = die;
21554 comp_unit_die ()->die_child = die;
21557 #endif /* VMS_DEBUGGING_INFO */
21559 /* walk_tree helper function for uses_local_type, below. */
21561 static tree
21562 uses_local_type_r (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
21564 if (!TYPE_P (*tp))
21565 *walk_subtrees = 0;
21566 else
21568 tree name = TYPE_NAME (*tp);
21569 if (name && DECL_P (name) && decl_function_context (name))
21570 return *tp;
21572 return NULL_TREE;
21575 /* If TYPE involves a function-local type (including a local typedef to a
21576 non-local type), returns that type; otherwise returns NULL_TREE. */
21578 static tree
21579 uses_local_type (tree type)
21581 tree used = walk_tree_without_duplicates (&type, uses_local_type_r, NULL);
21582 return used;
21585 /* Return the DIE for the scope that immediately contains this type.
21586 Non-named types that do not involve a function-local type get global
21587 scope. Named types nested in namespaces or other types get their
21588 containing scope. All other types (i.e. function-local named types) get
21589 the current active scope. */
21591 static dw_die_ref
21592 scope_die_for (tree t, dw_die_ref context_die)
21594 dw_die_ref scope_die = NULL;
21595 tree containing_scope;
21597 /* Non-types always go in the current scope. */
21598 gcc_assert (TYPE_P (t));
21600 /* Use the scope of the typedef, rather than the scope of the type
21601 it refers to. */
21602 if (TYPE_NAME (t) && DECL_P (TYPE_NAME (t)))
21603 containing_scope = DECL_CONTEXT (TYPE_NAME (t));
21604 else
21605 containing_scope = TYPE_CONTEXT (t);
21607 /* Use the containing namespace if there is one. */
21608 if (containing_scope && TREE_CODE (containing_scope) == NAMESPACE_DECL)
21610 if (context_die == lookup_decl_die (containing_scope))
21611 /* OK */;
21612 else if (debug_info_level > DINFO_LEVEL_TERSE)
21613 context_die = get_context_die (containing_scope);
21614 else
21615 containing_scope = NULL_TREE;
21618 /* Ignore function type "scopes" from the C frontend. They mean that
21619 a tagged type is local to a parmlist of a function declarator, but
21620 that isn't useful to DWARF. */
21621 if (containing_scope && TREE_CODE (containing_scope) == FUNCTION_TYPE)
21622 containing_scope = NULL_TREE;
21624 if (SCOPE_FILE_SCOPE_P (containing_scope))
21626 /* If T uses a local type keep it local as well, to avoid references
21627 to function-local DIEs from outside the function. */
21628 if (current_function_decl && uses_local_type (t))
21629 scope_die = context_die;
21630 else
21631 scope_die = comp_unit_die ();
21633 else if (TYPE_P (containing_scope))
21635 /* For types, we can just look up the appropriate DIE. */
21636 if (debug_info_level > DINFO_LEVEL_TERSE)
21637 scope_die = get_context_die (containing_scope);
21638 else
21640 scope_die = lookup_type_die_strip_naming_typedef (containing_scope);
21641 if (scope_die == NULL)
21642 scope_die = comp_unit_die ();
21645 else
21646 scope_die = context_die;
21648 return scope_die;
21651 /* Returns nonzero if CONTEXT_DIE is internal to a function. */
21653 static inline int
21654 local_scope_p (dw_die_ref context_die)
21656 for (; context_die; context_die = context_die->die_parent)
21657 if (context_die->die_tag == DW_TAG_inlined_subroutine
21658 || context_die->die_tag == DW_TAG_subprogram)
21659 return 1;
21661 return 0;
21664 /* Returns nonzero if CONTEXT_DIE is a class. */
21666 static inline int
21667 class_scope_p (dw_die_ref context_die)
21669 return (context_die
21670 && (context_die->die_tag == DW_TAG_structure_type
21671 || context_die->die_tag == DW_TAG_class_type
21672 || context_die->die_tag == DW_TAG_interface_type
21673 || context_die->die_tag == DW_TAG_union_type));
21676 /* Returns nonzero if CONTEXT_DIE is a class or namespace, for deciding
21677 whether or not to treat a DIE in this context as a declaration. */
21679 static inline int
21680 class_or_namespace_scope_p (dw_die_ref context_die)
21682 return (class_scope_p (context_die)
21683 || (context_die && context_die->die_tag == DW_TAG_namespace));
21686 /* Many forms of DIEs require a "type description" attribute. This
21687 routine locates the proper "type descriptor" die for the type given
21688 by 'type' plus any additional qualifiers given by 'cv_quals', and
21689 adds a DW_AT_type attribute below the given die. */
21691 static void
21692 add_type_attribute (dw_die_ref object_die, tree type, int cv_quals,
21693 bool reverse, dw_die_ref context_die)
21695 enum tree_code code = TREE_CODE (type);
21696 dw_die_ref type_die = NULL;
21698 /* ??? If this type is an unnamed subrange type of an integral, floating-point
21699 or fixed-point type, use the inner type. This is because we have no
21700 support for unnamed types in base_type_die. This can happen if this is
21701 an Ada subrange type. Correct solution is emit a subrange type die. */
21702 if ((code == INTEGER_TYPE || code == REAL_TYPE || code == FIXED_POINT_TYPE)
21703 && TREE_TYPE (type) != 0 && TYPE_NAME (type) == 0)
21704 type = TREE_TYPE (type), code = TREE_CODE (type);
21706 if (code == ERROR_MARK
21707 /* Handle a special case. For functions whose return type is void, we
21708 generate *no* type attribute. (Note that no object may have type
21709 `void', so this only applies to function return types). */
21710 || code == VOID_TYPE)
21711 return;
21713 type_die = modified_type_die (type,
21714 cv_quals | TYPE_QUALS (type),
21715 reverse,
21716 context_die);
21718 if (type_die != NULL)
21719 add_AT_die_ref (object_die, DW_AT_type, type_die);
21722 /* Given an object die, add the calling convention attribute for the
21723 function call type. */
21724 static void
21725 add_calling_convention_attribute (dw_die_ref subr_die, tree decl)
21727 enum dwarf_calling_convention value = DW_CC_normal;
21729 value = ((enum dwarf_calling_convention)
21730 targetm.dwarf_calling_convention (TREE_TYPE (decl)));
21732 if (is_fortran ()
21733 && id_equal (DECL_ASSEMBLER_NAME (decl), "MAIN__"))
21735 /* DWARF 2 doesn't provide a way to identify a program's source-level
21736 entry point. DW_AT_calling_convention attributes are only meant
21737 to describe functions' calling conventions. However, lacking a
21738 better way to signal the Fortran main program, we used this for
21739 a long time, following existing custom. Now, DWARF 4 has
21740 DW_AT_main_subprogram, which we add below, but some tools still
21741 rely on the old way, which we thus keep. */
21742 value = DW_CC_program;
21744 if (dwarf_version >= 4 || !dwarf_strict)
21745 add_AT_flag (subr_die, DW_AT_main_subprogram, 1);
21748 /* Only add the attribute if the backend requests it, and
21749 is not DW_CC_normal. */
21750 if (value && (value != DW_CC_normal))
21751 add_AT_unsigned (subr_die, DW_AT_calling_convention, value);
21754 /* Given a tree pointer to a struct, class, union, or enum type node, return
21755 a pointer to the (string) tag name for the given type, or zero if the type
21756 was declared without a tag. */
21758 static const char *
21759 type_tag (const_tree type)
21761 const char *name = 0;
21763 if (TYPE_NAME (type) != 0)
21765 tree t = 0;
21767 /* Find the IDENTIFIER_NODE for the type name. */
21768 if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE
21769 && !TYPE_NAMELESS (type))
21770 t = TYPE_NAME (type);
21772 /* The g++ front end makes the TYPE_NAME of *each* tagged type point to
21773 a TYPE_DECL node, regardless of whether or not a `typedef' was
21774 involved. */
21775 else if (TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
21776 && ! DECL_IGNORED_P (TYPE_NAME (type)))
21778 /* We want to be extra verbose. Don't call dwarf_name if
21779 DECL_NAME isn't set. The default hook for decl_printable_name
21780 doesn't like that, and in this context it's correct to return
21781 0, instead of "<anonymous>" or the like. */
21782 if (DECL_NAME (TYPE_NAME (type))
21783 && !DECL_NAMELESS (TYPE_NAME (type)))
21784 name = lang_hooks.dwarf_name (TYPE_NAME (type), 2);
21787 /* Now get the name as a string, or invent one. */
21788 if (!name && t != 0)
21789 name = IDENTIFIER_POINTER (t);
21792 return (name == 0 || *name == '\0') ? 0 : name;
21795 /* Return the type associated with a data member, make a special check
21796 for bit field types. */
21798 static inline tree
21799 member_declared_type (const_tree member)
21801 return (DECL_BIT_FIELD_TYPE (member)
21802 ? DECL_BIT_FIELD_TYPE (member) : TREE_TYPE (member));
21805 /* Get the decl's label, as described by its RTL. This may be different
21806 from the DECL_NAME name used in the source file. */
21808 #if 0
21809 static const char *
21810 decl_start_label (tree decl)
21812 rtx x;
21813 const char *fnname;
21815 x = DECL_RTL (decl);
21816 gcc_assert (MEM_P (x));
21818 x = XEXP (x, 0);
21819 gcc_assert (GET_CODE (x) == SYMBOL_REF);
21821 fnname = XSTR (x, 0);
21822 return fnname;
21824 #endif
21826 /* For variable-length arrays that have been previously generated, but
21827 may be incomplete due to missing subscript info, fill the subscript
21828 info. Return TRUE if this is one of those cases. */
21829 static bool
21830 fill_variable_array_bounds (tree type)
21832 if (TREE_ASM_WRITTEN (type)
21833 && TREE_CODE (type) == ARRAY_TYPE
21834 && variably_modified_type_p (type, NULL))
21836 dw_die_ref array_die = lookup_type_die (type);
21837 if (!array_die)
21838 return false;
21839 add_subscript_info (array_die, type, !is_ada ());
21840 return true;
21842 return false;
21845 /* These routines generate the internal representation of the DIE's for
21846 the compilation unit. Debugging information is collected by walking
21847 the declaration trees passed in from dwarf2out_decl(). */
21849 static void
21850 gen_array_type_die (tree type, dw_die_ref context_die)
21852 dw_die_ref array_die;
21854 /* GNU compilers represent multidimensional array types as sequences of one
21855 dimensional array types whose element types are themselves array types.
21856 We sometimes squish that down to a single array_type DIE with multiple
21857 subscripts in the Dwarf debugging info. The draft Dwarf specification
21858 say that we are allowed to do this kind of compression in C, because
21859 there is no difference between an array of arrays and a multidimensional
21860 array. We don't do this for Ada to remain as close as possible to the
21861 actual representation, which is especially important against the language
21862 flexibilty wrt arrays of variable size. */
21864 bool collapse_nested_arrays = !is_ada ();
21866 if (fill_variable_array_bounds (type))
21867 return;
21869 dw_die_ref scope_die = scope_die_for (type, context_die);
21870 tree element_type;
21872 /* Emit DW_TAG_string_type for Fortran character types (with kind 1 only, as
21873 DW_TAG_string_type doesn't have DW_AT_type attribute). */
21874 if (TREE_CODE (type) == ARRAY_TYPE
21875 && TYPE_STRING_FLAG (type)
21876 && is_fortran ()
21877 && TYPE_MODE (TREE_TYPE (type)) == TYPE_MODE (char_type_node))
21879 HOST_WIDE_INT size;
21881 array_die = new_die (DW_TAG_string_type, scope_die, type);
21882 add_name_attribute (array_die, type_tag (type));
21883 equate_type_number_to_die (type, array_die);
21884 size = int_size_in_bytes (type);
21885 if (size >= 0)
21886 add_AT_unsigned (array_die, DW_AT_byte_size, size);
21887 /* ??? We can't annotate types late, but for LTO we may not
21888 generate a location early either (gfortran.dg/save_6.f90). */
21889 else if (! (early_dwarf && (flag_generate_lto || flag_generate_offload))
21890 && TYPE_DOMAIN (type) != NULL_TREE
21891 && TYPE_MAX_VALUE (TYPE_DOMAIN (type)) != NULL_TREE)
21893 tree szdecl = TYPE_MAX_VALUE (TYPE_DOMAIN (type));
21894 tree rszdecl = szdecl;
21896 size = int_size_in_bytes (TREE_TYPE (szdecl));
21897 if (!DECL_P (szdecl))
21899 if (TREE_CODE (szdecl) == INDIRECT_REF
21900 && DECL_P (TREE_OPERAND (szdecl, 0)))
21902 rszdecl = TREE_OPERAND (szdecl, 0);
21903 if (int_size_in_bytes (TREE_TYPE (rszdecl))
21904 != DWARF2_ADDR_SIZE)
21905 size = 0;
21907 else
21908 size = 0;
21910 if (size > 0)
21912 dw_loc_list_ref loc
21913 = loc_list_from_tree (rszdecl, szdecl == rszdecl ? 2 : 0,
21914 NULL);
21915 if (loc)
21917 add_AT_location_description (array_die, DW_AT_string_length,
21918 loc);
21919 if (size != DWARF2_ADDR_SIZE)
21920 add_AT_unsigned (array_die, dwarf_version >= 5
21921 ? DW_AT_string_length_byte_size
21922 : DW_AT_byte_size, size);
21926 return;
21929 array_die = new_die (DW_TAG_array_type, scope_die, type);
21930 add_name_attribute (array_die, type_tag (type));
21931 equate_type_number_to_die (type, array_die);
21933 if (TREE_CODE (type) == VECTOR_TYPE)
21934 add_AT_flag (array_die, DW_AT_GNU_vector, 1);
21936 /* For Fortran multidimensional arrays use DW_ORD_col_major ordering. */
21937 if (is_fortran ()
21938 && TREE_CODE (type) == ARRAY_TYPE
21939 && TREE_CODE (TREE_TYPE (type)) == ARRAY_TYPE
21940 && !TYPE_STRING_FLAG (TREE_TYPE (type)))
21941 add_AT_unsigned (array_die, DW_AT_ordering, DW_ORD_col_major);
21943 #if 0
21944 /* We default the array ordering. Debuggers will probably do the right
21945 things even if DW_AT_ordering is not present. It's not even an issue
21946 until we start to get into multidimensional arrays anyway. If a debugger
21947 is ever caught doing the Wrong Thing for multi-dimensional arrays,
21948 then we'll have to put the DW_AT_ordering attribute back in. (But if
21949 and when we find out that we need to put these in, we will only do so
21950 for multidimensional arrays. */
21951 add_AT_unsigned (array_die, DW_AT_ordering, DW_ORD_row_major);
21952 #endif
21954 if (TREE_CODE (type) == VECTOR_TYPE)
21956 /* For VECTOR_TYPEs we use an array die with appropriate bounds. */
21957 dw_die_ref subrange_die = new_die (DW_TAG_subrange_type, array_die, NULL);
21958 add_bound_info (subrange_die, DW_AT_lower_bound, size_zero_node, NULL);
21959 add_bound_info (subrange_die, DW_AT_upper_bound,
21960 size_int (TYPE_VECTOR_SUBPARTS (type) - 1), NULL);
21962 else
21963 add_subscript_info (array_die, type, collapse_nested_arrays);
21965 /* Add representation of the type of the elements of this array type and
21966 emit the corresponding DIE if we haven't done it already. */
21967 element_type = TREE_TYPE (type);
21968 if (collapse_nested_arrays)
21969 while (TREE_CODE (element_type) == ARRAY_TYPE)
21971 if (TYPE_STRING_FLAG (element_type) && is_fortran ())
21972 break;
21973 element_type = TREE_TYPE (element_type);
21976 add_type_attribute (array_die, element_type, TYPE_UNQUALIFIED,
21977 TREE_CODE (type) == ARRAY_TYPE
21978 && TYPE_REVERSE_STORAGE_ORDER (type),
21979 context_die);
21981 add_gnat_descriptive_type_attribute (array_die, type, context_die);
21982 if (TYPE_ARTIFICIAL (type))
21983 add_AT_flag (array_die, DW_AT_artificial, 1);
21985 if (get_AT (array_die, DW_AT_name))
21986 add_pubtype (type, array_die);
21988 add_alignment_attribute (array_die, type);
21991 /* This routine generates DIE for array with hidden descriptor, details
21992 are filled into *info by a langhook. */
21994 static void
21995 gen_descr_array_type_die (tree type, struct array_descr_info *info,
21996 dw_die_ref context_die)
21998 const dw_die_ref scope_die = scope_die_for (type, context_die);
21999 const dw_die_ref array_die = new_die (DW_TAG_array_type, scope_die, type);
22000 struct loc_descr_context context = { type, info->base_decl, NULL,
22001 false, false };
22002 enum dwarf_tag subrange_tag = DW_TAG_subrange_type;
22003 int dim;
22005 add_name_attribute (array_die, type_tag (type));
22006 equate_type_number_to_die (type, array_die);
22008 if (info->ndimensions > 1)
22009 switch (info->ordering)
22011 case array_descr_ordering_row_major:
22012 add_AT_unsigned (array_die, DW_AT_ordering, DW_ORD_row_major);
22013 break;
22014 case array_descr_ordering_column_major:
22015 add_AT_unsigned (array_die, DW_AT_ordering, DW_ORD_col_major);
22016 break;
22017 default:
22018 break;
22021 if (dwarf_version >= 3 || !dwarf_strict)
22023 if (info->data_location)
22024 add_scalar_info (array_die, DW_AT_data_location, info->data_location,
22025 dw_scalar_form_exprloc, &context);
22026 if (info->associated)
22027 add_scalar_info (array_die, DW_AT_associated, info->associated,
22028 dw_scalar_form_constant
22029 | dw_scalar_form_exprloc
22030 | dw_scalar_form_reference, &context);
22031 if (info->allocated)
22032 add_scalar_info (array_die, DW_AT_allocated, info->allocated,
22033 dw_scalar_form_constant
22034 | dw_scalar_form_exprloc
22035 | dw_scalar_form_reference, &context);
22036 if (info->stride)
22038 const enum dwarf_attribute attr
22039 = (info->stride_in_bits) ? DW_AT_bit_stride : DW_AT_byte_stride;
22040 const int forms
22041 = (info->stride_in_bits)
22042 ? dw_scalar_form_constant
22043 : (dw_scalar_form_constant
22044 | dw_scalar_form_exprloc
22045 | dw_scalar_form_reference);
22047 add_scalar_info (array_die, attr, info->stride, forms, &context);
22050 if (dwarf_version >= 5)
22052 if (info->rank)
22054 add_scalar_info (array_die, DW_AT_rank, info->rank,
22055 dw_scalar_form_constant
22056 | dw_scalar_form_exprloc, &context);
22057 subrange_tag = DW_TAG_generic_subrange;
22058 context.placeholder_arg = true;
22062 add_gnat_descriptive_type_attribute (array_die, type, context_die);
22064 for (dim = 0; dim < info->ndimensions; dim++)
22066 dw_die_ref subrange_die = new_die (subrange_tag, array_die, NULL);
22068 if (info->dimen[dim].bounds_type)
22069 add_type_attribute (subrange_die,
22070 info->dimen[dim].bounds_type, TYPE_UNQUALIFIED,
22071 false, context_die);
22072 if (info->dimen[dim].lower_bound)
22073 add_bound_info (subrange_die, DW_AT_lower_bound,
22074 info->dimen[dim].lower_bound, &context);
22075 if (info->dimen[dim].upper_bound)
22076 add_bound_info (subrange_die, DW_AT_upper_bound,
22077 info->dimen[dim].upper_bound, &context);
22078 if ((dwarf_version >= 3 || !dwarf_strict) && info->dimen[dim].stride)
22079 add_scalar_info (subrange_die, DW_AT_byte_stride,
22080 info->dimen[dim].stride,
22081 dw_scalar_form_constant
22082 | dw_scalar_form_exprloc
22083 | dw_scalar_form_reference,
22084 &context);
22087 gen_type_die (info->element_type, context_die);
22088 add_type_attribute (array_die, info->element_type, TYPE_UNQUALIFIED,
22089 TREE_CODE (type) == ARRAY_TYPE
22090 && TYPE_REVERSE_STORAGE_ORDER (type),
22091 context_die);
22093 if (get_AT (array_die, DW_AT_name))
22094 add_pubtype (type, array_die);
22096 add_alignment_attribute (array_die, type);
22099 #if 0
22100 static void
22101 gen_entry_point_die (tree decl, dw_die_ref context_die)
22103 tree origin = decl_ultimate_origin (decl);
22104 dw_die_ref decl_die = new_die (DW_TAG_entry_point, context_die, decl);
22106 if (origin != NULL)
22107 add_abstract_origin_attribute (decl_die, origin);
22108 else
22110 add_name_and_src_coords_attributes (decl_die, decl);
22111 add_type_attribute (decl_die, TREE_TYPE (TREE_TYPE (decl)),
22112 TYPE_UNQUALIFIED, false, context_die);
22115 if (DECL_ABSTRACT_P (decl))
22116 equate_decl_number_to_die (decl, decl_die);
22117 else
22118 add_AT_lbl_id (decl_die, DW_AT_low_pc, decl_start_label (decl));
22120 #endif
22122 /* Walk through the list of incomplete types again, trying once more to
22123 emit full debugging info for them. */
22125 static void
22126 retry_incomplete_types (void)
22128 set_early_dwarf s;
22129 int i;
22131 for (i = vec_safe_length (incomplete_types) - 1; i >= 0; i--)
22132 if (should_emit_struct_debug ((*incomplete_types)[i], DINFO_USAGE_DIR_USE))
22133 gen_type_die ((*incomplete_types)[i], comp_unit_die ());
22134 vec_safe_truncate (incomplete_types, 0);
22137 /* Determine what tag to use for a record type. */
22139 static enum dwarf_tag
22140 record_type_tag (tree type)
22142 if (! lang_hooks.types.classify_record)
22143 return DW_TAG_structure_type;
22145 switch (lang_hooks.types.classify_record (type))
22147 case RECORD_IS_STRUCT:
22148 return DW_TAG_structure_type;
22150 case RECORD_IS_CLASS:
22151 return DW_TAG_class_type;
22153 case RECORD_IS_INTERFACE:
22154 if (dwarf_version >= 3 || !dwarf_strict)
22155 return DW_TAG_interface_type;
22156 return DW_TAG_structure_type;
22158 default:
22159 gcc_unreachable ();
22163 /* Generate a DIE to represent an enumeration type. Note that these DIEs
22164 include all of the information about the enumeration values also. Each
22165 enumerated type name/value is listed as a child of the enumerated type
22166 DIE. */
22168 static dw_die_ref
22169 gen_enumeration_type_die (tree type, dw_die_ref context_die)
22171 dw_die_ref type_die = lookup_type_die (type);
22172 dw_die_ref orig_type_die = type_die;
22174 if (type_die == NULL)
22176 type_die = new_die (DW_TAG_enumeration_type,
22177 scope_die_for (type, context_die), type);
22178 equate_type_number_to_die (type, type_die);
22179 add_name_attribute (type_die, type_tag (type));
22180 if ((dwarf_version >= 4 || !dwarf_strict)
22181 && ENUM_IS_SCOPED (type))
22182 add_AT_flag (type_die, DW_AT_enum_class, 1);
22183 if (ENUM_IS_OPAQUE (type) && TYPE_SIZE (type))
22184 add_AT_flag (type_die, DW_AT_declaration, 1);
22185 if (!dwarf_strict)
22186 add_AT_unsigned (type_die, DW_AT_encoding,
22187 TYPE_UNSIGNED (type)
22188 ? DW_ATE_unsigned
22189 : DW_ATE_signed);
22191 else if (! TYPE_SIZE (type) || ENUM_IS_OPAQUE (type))
22192 return type_die;
22193 else
22194 remove_AT (type_die, DW_AT_declaration);
22196 /* Handle a GNU C/C++ extension, i.e. incomplete enum types. If the
22197 given enum type is incomplete, do not generate the DW_AT_byte_size
22198 attribute or the DW_AT_element_list attribute. */
22199 if (TYPE_SIZE (type))
22201 tree link;
22203 if (!ENUM_IS_OPAQUE (type))
22204 TREE_ASM_WRITTEN (type) = 1;
22205 if (!orig_type_die || !get_AT (type_die, DW_AT_byte_size))
22206 add_byte_size_attribute (type_die, type);
22207 if (!orig_type_die || !get_AT (type_die, DW_AT_alignment))
22208 add_alignment_attribute (type_die, type);
22209 if ((dwarf_version >= 3 || !dwarf_strict)
22210 && (!orig_type_die || !get_AT (type_die, DW_AT_type)))
22212 tree underlying = lang_hooks.types.enum_underlying_base_type (type);
22213 add_type_attribute (type_die, underlying, TYPE_UNQUALIFIED, false,
22214 context_die);
22216 if (TYPE_STUB_DECL (type) != NULL_TREE)
22218 if (!orig_type_die || !get_AT (type_die, DW_AT_decl_file))
22219 add_src_coords_attributes (type_die, TYPE_STUB_DECL (type));
22220 if (!orig_type_die || !get_AT (type_die, DW_AT_accessibility))
22221 add_accessibility_attribute (type_die, TYPE_STUB_DECL (type));
22224 /* If the first reference to this type was as the return type of an
22225 inline function, then it may not have a parent. Fix this now. */
22226 if (type_die->die_parent == NULL)
22227 add_child_die (scope_die_for (type, context_die), type_die);
22229 for (link = TYPE_VALUES (type);
22230 link != NULL; link = TREE_CHAIN (link))
22232 dw_die_ref enum_die = new_die (DW_TAG_enumerator, type_die, link);
22233 tree value = TREE_VALUE (link);
22235 gcc_assert (!ENUM_IS_OPAQUE (type));
22236 add_name_attribute (enum_die,
22237 IDENTIFIER_POINTER (TREE_PURPOSE (link)));
22239 if (TREE_CODE (value) == CONST_DECL)
22240 value = DECL_INITIAL (value);
22242 if (simple_type_size_in_bits (TREE_TYPE (value))
22243 <= HOST_BITS_PER_WIDE_INT || tree_fits_shwi_p (value))
22245 /* For constant forms created by add_AT_unsigned DWARF
22246 consumers (GDB, elfutils, etc.) always zero extend
22247 the value. Only when the actual value is negative
22248 do we need to use add_AT_int to generate a constant
22249 form that can represent negative values. */
22250 HOST_WIDE_INT val = TREE_INT_CST_LOW (value);
22251 if (TYPE_UNSIGNED (TREE_TYPE (value)) || val >= 0)
22252 add_AT_unsigned (enum_die, DW_AT_const_value,
22253 (unsigned HOST_WIDE_INT) val);
22254 else
22255 add_AT_int (enum_die, DW_AT_const_value, val);
22257 else
22258 /* Enumeration constants may be wider than HOST_WIDE_INT. Handle
22259 that here. TODO: This should be re-worked to use correct
22260 signed/unsigned double tags for all cases. */
22261 add_AT_wide (enum_die, DW_AT_const_value, wi::to_wide (value));
22264 add_gnat_descriptive_type_attribute (type_die, type, context_die);
22265 if (TYPE_ARTIFICIAL (type)
22266 && (!orig_type_die || !get_AT (type_die, DW_AT_artificial)))
22267 add_AT_flag (type_die, DW_AT_artificial, 1);
22269 else
22270 add_AT_flag (type_die, DW_AT_declaration, 1);
22272 add_pubtype (type, type_die);
22274 return type_die;
22277 /* Generate a DIE to represent either a real live formal parameter decl or to
22278 represent just the type of some formal parameter position in some function
22279 type.
22281 Note that this routine is a bit unusual because its argument may be a
22282 ..._DECL node (i.e. either a PARM_DECL or perhaps a VAR_DECL which
22283 represents an inlining of some PARM_DECL) or else some sort of a ..._TYPE
22284 node. If it's the former then this function is being called to output a
22285 DIE to represent a formal parameter object (or some inlining thereof). If
22286 it's the latter, then this function is only being called to output a
22287 DW_TAG_formal_parameter DIE to stand as a placeholder for some formal
22288 argument type of some subprogram type.
22289 If EMIT_NAME_P is true, name and source coordinate attributes
22290 are emitted. */
22292 static dw_die_ref
22293 gen_formal_parameter_die (tree node, tree origin, bool emit_name_p,
22294 dw_die_ref context_die)
22296 tree node_or_origin = node ? node : origin;
22297 tree ultimate_origin;
22298 dw_die_ref parm_die = NULL;
22300 if (DECL_P (node_or_origin))
22302 parm_die = lookup_decl_die (node);
22304 /* If the contexts differ, we may not be talking about the same
22305 thing.
22306 ??? When in LTO the DIE parent is the "abstract" copy and the
22307 context_die is the specification "copy". */
22308 if (parm_die
22309 && parm_die->die_parent != context_die
22310 && (parm_die->die_parent->die_tag != DW_TAG_GNU_formal_parameter_pack
22311 || parm_die->die_parent->die_parent != context_die)
22312 && !in_lto_p)
22314 gcc_assert (!DECL_ABSTRACT_P (node));
22315 /* This can happen when creating a concrete instance, in
22316 which case we need to create a new DIE that will get
22317 annotated with DW_AT_abstract_origin. */
22318 parm_die = NULL;
22321 if (parm_die && parm_die->die_parent == NULL)
22323 /* Check that parm_die already has the right attributes that
22324 we would have added below. If any attributes are
22325 missing, fall through to add them. */
22326 if (! DECL_ABSTRACT_P (node_or_origin)
22327 && !get_AT (parm_die, DW_AT_location)
22328 && !get_AT (parm_die, DW_AT_const_value))
22329 /* We are missing location info, and are about to add it. */
22331 else
22333 add_child_die (context_die, parm_die);
22334 return parm_die;
22339 /* If we have a previously generated DIE, use it, unless this is an
22340 concrete instance (origin != NULL), in which case we need a new
22341 DIE with a corresponding DW_AT_abstract_origin. */
22342 bool reusing_die;
22343 if (parm_die && origin == NULL)
22344 reusing_die = true;
22345 else
22347 parm_die = new_die (DW_TAG_formal_parameter, context_die, node);
22348 reusing_die = false;
22351 switch (TREE_CODE_CLASS (TREE_CODE (node_or_origin)))
22353 case tcc_declaration:
22354 ultimate_origin = decl_ultimate_origin (node_or_origin);
22355 if (node || ultimate_origin)
22356 origin = ultimate_origin;
22358 if (reusing_die)
22359 goto add_location;
22361 if (origin != NULL)
22362 add_abstract_origin_attribute (parm_die, origin);
22363 else if (emit_name_p)
22364 add_name_and_src_coords_attributes (parm_die, node);
22365 if (origin == NULL
22366 || (! DECL_ABSTRACT_P (node_or_origin)
22367 && variably_modified_type_p (TREE_TYPE (node_or_origin),
22368 decl_function_context
22369 (node_or_origin))))
22371 tree type = TREE_TYPE (node_or_origin);
22372 if (decl_by_reference_p (node_or_origin))
22373 add_type_attribute (parm_die, TREE_TYPE (type),
22374 TYPE_UNQUALIFIED,
22375 false, context_die);
22376 else
22377 add_type_attribute (parm_die, type,
22378 decl_quals (node_or_origin),
22379 false, context_die);
22381 if (origin == NULL && DECL_ARTIFICIAL (node))
22382 add_AT_flag (parm_die, DW_AT_artificial, 1);
22383 add_location:
22384 if (node && node != origin)
22385 equate_decl_number_to_die (node, parm_die);
22386 if (! DECL_ABSTRACT_P (node_or_origin))
22387 add_location_or_const_value_attribute (parm_die, node_or_origin,
22388 node == NULL);
22390 break;
22392 case tcc_type:
22393 /* We were called with some kind of a ..._TYPE node. */
22394 add_type_attribute (parm_die, node_or_origin, TYPE_UNQUALIFIED, false,
22395 context_die);
22396 break;
22398 default:
22399 gcc_unreachable ();
22402 return parm_die;
22405 /* Generate and return a DW_TAG_GNU_formal_parameter_pack. Also generate
22406 children DW_TAG_formal_parameter DIEs representing the arguments of the
22407 parameter pack.
22409 PARM_PACK must be a function parameter pack.
22410 PACK_ARG is the first argument of the parameter pack. Its TREE_CHAIN
22411 must point to the subsequent arguments of the function PACK_ARG belongs to.
22412 SUBR_DIE is the DIE of the function PACK_ARG belongs to.
22413 If NEXT_ARG is non NULL, *NEXT_ARG is set to the function argument
22414 following the last one for which a DIE was generated. */
22416 static dw_die_ref
22417 gen_formal_parameter_pack_die (tree parm_pack,
22418 tree pack_arg,
22419 dw_die_ref subr_die,
22420 tree *next_arg)
22422 tree arg;
22423 dw_die_ref parm_pack_die;
22425 gcc_assert (parm_pack
22426 && lang_hooks.function_parameter_pack_p (parm_pack)
22427 && subr_die);
22429 parm_pack_die = new_die (DW_TAG_GNU_formal_parameter_pack, subr_die, parm_pack);
22430 add_src_coords_attributes (parm_pack_die, parm_pack);
22432 for (arg = pack_arg; arg; arg = DECL_CHAIN (arg))
22434 if (! lang_hooks.decls.function_parm_expanded_from_pack_p (arg,
22435 parm_pack))
22436 break;
22437 gen_formal_parameter_die (arg, NULL,
22438 false /* Don't emit name attribute. */,
22439 parm_pack_die);
22441 if (next_arg)
22442 *next_arg = arg;
22443 return parm_pack_die;
22446 /* Generate a special type of DIE used as a stand-in for a trailing ellipsis
22447 at the end of an (ANSI prototyped) formal parameters list. */
22449 static void
22450 gen_unspecified_parameters_die (tree decl_or_type, dw_die_ref context_die)
22452 new_die (DW_TAG_unspecified_parameters, context_die, decl_or_type);
22455 /* Generate a list of nameless DW_TAG_formal_parameter DIEs (and perhaps a
22456 DW_TAG_unspecified_parameters DIE) to represent the types of the formal
22457 parameters as specified in some function type specification (except for
22458 those which appear as part of a function *definition*). */
22460 static void
22461 gen_formal_types_die (tree function_or_method_type, dw_die_ref context_die)
22463 tree link;
22464 tree formal_type = NULL;
22465 tree first_parm_type;
22466 tree arg;
22468 if (TREE_CODE (function_or_method_type) == FUNCTION_DECL)
22470 arg = DECL_ARGUMENTS (function_or_method_type);
22471 function_or_method_type = TREE_TYPE (function_or_method_type);
22473 else
22474 arg = NULL_TREE;
22476 first_parm_type = TYPE_ARG_TYPES (function_or_method_type);
22478 /* Make our first pass over the list of formal parameter types and output a
22479 DW_TAG_formal_parameter DIE for each one. */
22480 for (link = first_parm_type; link; )
22482 dw_die_ref parm_die;
22484 formal_type = TREE_VALUE (link);
22485 if (formal_type == void_type_node)
22486 break;
22488 /* Output a (nameless) DIE to represent the formal parameter itself. */
22489 parm_die = gen_formal_parameter_die (formal_type, NULL,
22490 true /* Emit name attribute. */,
22491 context_die);
22492 if (TREE_CODE (function_or_method_type) == METHOD_TYPE
22493 && link == first_parm_type)
22495 add_AT_flag (parm_die, DW_AT_artificial, 1);
22496 if (dwarf_version >= 3 || !dwarf_strict)
22497 add_AT_die_ref (context_die, DW_AT_object_pointer, parm_die);
22499 else if (arg && DECL_ARTIFICIAL (arg))
22500 add_AT_flag (parm_die, DW_AT_artificial, 1);
22502 link = TREE_CHAIN (link);
22503 if (arg)
22504 arg = DECL_CHAIN (arg);
22507 /* If this function type has an ellipsis, add a
22508 DW_TAG_unspecified_parameters DIE to the end of the parameter list. */
22509 if (formal_type != void_type_node)
22510 gen_unspecified_parameters_die (function_or_method_type, context_die);
22512 /* Make our second (and final) pass over the list of formal parameter types
22513 and output DIEs to represent those types (as necessary). */
22514 for (link = TYPE_ARG_TYPES (function_or_method_type);
22515 link && TREE_VALUE (link);
22516 link = TREE_CHAIN (link))
22517 gen_type_die (TREE_VALUE (link), context_die);
22520 /* We want to generate the DIE for TYPE so that we can generate the
22521 die for MEMBER, which has been defined; we will need to refer back
22522 to the member declaration nested within TYPE. If we're trying to
22523 generate minimal debug info for TYPE, processing TYPE won't do the
22524 trick; we need to attach the member declaration by hand. */
22526 static void
22527 gen_type_die_for_member (tree type, tree member, dw_die_ref context_die)
22529 gen_type_die (type, context_die);
22531 /* If we're trying to avoid duplicate debug info, we may not have
22532 emitted the member decl for this function. Emit it now. */
22533 if (TYPE_STUB_DECL (type)
22534 && TYPE_DECL_SUPPRESS_DEBUG (TYPE_STUB_DECL (type))
22535 && ! lookup_decl_die (member))
22537 dw_die_ref type_die;
22538 gcc_assert (!decl_ultimate_origin (member));
22540 type_die = lookup_type_die_strip_naming_typedef (type);
22541 if (TREE_CODE (member) == FUNCTION_DECL)
22542 gen_subprogram_die (member, type_die);
22543 else if (TREE_CODE (member) == FIELD_DECL)
22545 /* Ignore the nameless fields that are used to skip bits but handle
22546 C++ anonymous unions and structs. */
22547 if (DECL_NAME (member) != NULL_TREE
22548 || TREE_CODE (TREE_TYPE (member)) == UNION_TYPE
22549 || TREE_CODE (TREE_TYPE (member)) == RECORD_TYPE)
22551 struct vlr_context vlr_ctx = {
22552 DECL_CONTEXT (member), /* struct_type */
22553 NULL_TREE /* variant_part_offset */
22555 gen_type_die (member_declared_type (member), type_die);
22556 gen_field_die (member, &vlr_ctx, type_die);
22559 else
22560 gen_variable_die (member, NULL_TREE, type_die);
22564 /* Forward declare these functions, because they are mutually recursive
22565 with their set_block_* pairing functions. */
22566 static void set_decl_origin_self (tree);
22568 /* Given a pointer to some BLOCK node, if the BLOCK_ABSTRACT_ORIGIN for the
22569 given BLOCK node is NULL, set the BLOCK_ABSTRACT_ORIGIN for the node so
22570 that it points to the node itself, thus indicating that the node is its
22571 own (abstract) origin. Additionally, if the BLOCK_ABSTRACT_ORIGIN for
22572 the given node is NULL, recursively descend the decl/block tree which
22573 it is the root of, and for each other ..._DECL or BLOCK node contained
22574 therein whose DECL_ABSTRACT_ORIGINs or BLOCK_ABSTRACT_ORIGINs are also
22575 still NULL, set *their* DECL_ABSTRACT_ORIGIN or BLOCK_ABSTRACT_ORIGIN
22576 values to point to themselves. */
22578 static void
22579 set_block_origin_self (tree stmt)
22581 if (BLOCK_ABSTRACT_ORIGIN (stmt) == NULL_TREE)
22583 BLOCK_ABSTRACT_ORIGIN (stmt) = stmt;
22586 tree local_decl;
22588 for (local_decl = BLOCK_VARS (stmt);
22589 local_decl != NULL_TREE;
22590 local_decl = DECL_CHAIN (local_decl))
22591 /* Do not recurse on nested functions since the inlining status
22592 of parent and child can be different as per the DWARF spec. */
22593 if (TREE_CODE (local_decl) != FUNCTION_DECL
22594 && !DECL_EXTERNAL (local_decl))
22595 set_decl_origin_self (local_decl);
22599 tree subblock;
22601 for (subblock = BLOCK_SUBBLOCKS (stmt);
22602 subblock != NULL_TREE;
22603 subblock = BLOCK_CHAIN (subblock))
22604 set_block_origin_self (subblock); /* Recurse. */
22609 /* Given a pointer to some ..._DECL node, if the DECL_ABSTRACT_ORIGIN for
22610 the given ..._DECL node is NULL, set the DECL_ABSTRACT_ORIGIN for the
22611 node to so that it points to the node itself, thus indicating that the
22612 node represents its own (abstract) origin. Additionally, if the
22613 DECL_ABSTRACT_ORIGIN for the given node is NULL, recursively descend
22614 the decl/block tree of which the given node is the root of, and for
22615 each other ..._DECL or BLOCK node contained therein whose
22616 DECL_ABSTRACT_ORIGINs or BLOCK_ABSTRACT_ORIGINs are also still NULL,
22617 set *their* DECL_ABSTRACT_ORIGIN or BLOCK_ABSTRACT_ORIGIN values to
22618 point to themselves. */
22620 static void
22621 set_decl_origin_self (tree decl)
22623 if (DECL_ABSTRACT_ORIGIN (decl) == NULL_TREE)
22625 DECL_ABSTRACT_ORIGIN (decl) = decl;
22626 if (TREE_CODE (decl) == FUNCTION_DECL)
22628 tree arg;
22630 for (arg = DECL_ARGUMENTS (decl); arg; arg = DECL_CHAIN (arg))
22631 DECL_ABSTRACT_ORIGIN (arg) = arg;
22632 if (DECL_INITIAL (decl) != NULL_TREE
22633 && DECL_INITIAL (decl) != error_mark_node)
22634 set_block_origin_self (DECL_INITIAL (decl));
22639 /* Mark the early DIE for DECL as the abstract instance. */
22641 static void
22642 dwarf2out_abstract_function (tree decl)
22644 dw_die_ref old_die;
22646 /* Make sure we have the actual abstract inline, not a clone. */
22647 decl = DECL_ORIGIN (decl);
22649 if (DECL_IGNORED_P (decl))
22650 return;
22652 /* In LTO we're all set. We already created abstract instances
22653 early and we want to avoid creating a concrete instance of that
22654 if we don't output it. */
22655 if (in_lto_p)
22656 return;
22658 old_die = lookup_decl_die (decl);
22659 gcc_assert (old_die != NULL);
22660 if (get_AT (old_die, DW_AT_inline))
22661 /* We've already generated the abstract instance. */
22662 return;
22664 /* Go ahead and put DW_AT_inline on the DIE. */
22665 if (DECL_DECLARED_INLINE_P (decl))
22667 if (cgraph_function_possibly_inlined_p (decl))
22668 add_AT_unsigned (old_die, DW_AT_inline, DW_INL_declared_inlined);
22669 else
22670 add_AT_unsigned (old_die, DW_AT_inline, DW_INL_declared_not_inlined);
22672 else
22674 if (cgraph_function_possibly_inlined_p (decl))
22675 add_AT_unsigned (old_die, DW_AT_inline, DW_INL_inlined);
22676 else
22677 add_AT_unsigned (old_die, DW_AT_inline, DW_INL_not_inlined);
22680 if (DECL_DECLARED_INLINE_P (decl)
22681 && lookup_attribute ("artificial", DECL_ATTRIBUTES (decl)))
22682 add_AT_flag (old_die, DW_AT_artificial, 1);
22684 set_decl_origin_self (decl);
22687 /* Helper function of premark_used_types() which gets called through
22688 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. */
22693 bool
22694 premark_used_types_helper (tree const &type, void *)
22696 dw_die_ref die;
22698 die = lookup_type_die (type);
22699 if (die != NULL)
22700 die->die_perennial_p = 1;
22701 return true;
22704 /* Helper function of premark_types_used_by_global_vars which gets called
22705 through htab_traverse.
22707 Marks the DIE of a given type in *SLOT as perennial, so it never gets
22708 marked as unused by prune_unused_types. The DIE of the type is marked
22709 only if the global variable using the type will actually be emitted. */
22712 premark_types_used_by_global_vars_helper (types_used_by_vars_entry **slot,
22713 void *)
22715 struct types_used_by_vars_entry *entry;
22716 dw_die_ref die;
22718 entry = (struct types_used_by_vars_entry *) *slot;
22719 gcc_assert (entry->type != NULL
22720 && entry->var_decl != NULL);
22721 die = lookup_type_die (entry->type);
22722 if (die)
22724 /* Ask cgraph if the global variable really is to be emitted.
22725 If yes, then we'll keep the DIE of ENTRY->TYPE. */
22726 varpool_node *node = varpool_node::get (entry->var_decl);
22727 if (node && node->definition)
22729 die->die_perennial_p = 1;
22730 /* Keep the parent DIEs as well. */
22731 while ((die = die->die_parent) && die->die_perennial_p == 0)
22732 die->die_perennial_p = 1;
22735 return 1;
22738 /* Mark all members of used_types_hash as perennial. */
22740 static void
22741 premark_used_types (struct function *fun)
22743 if (fun && fun->used_types_hash)
22744 fun->used_types_hash->traverse<void *, premark_used_types_helper> (NULL);
22747 /* Mark all members of types_used_by_vars_entry as perennial. */
22749 static void
22750 premark_types_used_by_global_vars (void)
22752 if (types_used_by_vars_hash)
22753 types_used_by_vars_hash
22754 ->traverse<void *, premark_types_used_by_global_vars_helper> (NULL);
22757 /* Mark all variables used by the symtab as perennial. */
22759 static void
22760 premark_used_variables (void)
22762 /* Mark DIEs in the symtab as used. */
22763 varpool_node *var;
22764 FOR_EACH_VARIABLE (var)
22766 dw_die_ref die = lookup_decl_die (var->decl);
22767 if (die)
22768 die->die_perennial_p = 1;
22772 /* Generate a DW_TAG_call_site DIE in function DECL under SUBR_DIE
22773 for CA_LOC call arg loc node. */
22775 static dw_die_ref
22776 gen_call_site_die (tree decl, dw_die_ref subr_die,
22777 struct call_arg_loc_node *ca_loc)
22779 dw_die_ref stmt_die = NULL, die;
22780 tree block = ca_loc->block;
22782 while (block
22783 && block != DECL_INITIAL (decl)
22784 && TREE_CODE (block) == BLOCK)
22786 stmt_die = lookup_block_die (block);
22787 if (stmt_die)
22788 break;
22789 block = BLOCK_SUPERCONTEXT (block);
22791 if (stmt_die == NULL)
22792 stmt_die = subr_die;
22793 die = new_die (dwarf_TAG (DW_TAG_call_site), stmt_die, NULL_TREE);
22794 add_AT_lbl_id (die, dwarf_AT (DW_AT_call_return_pc), ca_loc->label);
22795 if (ca_loc->tail_call_p)
22796 add_AT_flag (die, dwarf_AT (DW_AT_call_tail_call), 1);
22797 if (ca_loc->symbol_ref)
22799 dw_die_ref tdie = lookup_decl_die (SYMBOL_REF_DECL (ca_loc->symbol_ref));
22800 if (tdie)
22801 add_AT_die_ref (die, dwarf_AT (DW_AT_call_origin), tdie);
22802 else
22803 add_AT_addr (die, dwarf_AT (DW_AT_call_origin), ca_loc->symbol_ref,
22804 false);
22806 return die;
22809 /* Generate a DIE to represent a declared function (either file-scope or
22810 block-local). */
22812 static void
22813 gen_subprogram_die (tree decl, dw_die_ref context_die)
22815 tree origin = decl_ultimate_origin (decl);
22816 dw_die_ref subr_die;
22817 dw_die_ref old_die = lookup_decl_die (decl);
22819 /* This function gets called multiple times for different stages of
22820 the debug process. For example, for func() in this code:
22822 namespace S
22824 void func() { ... }
22827 ...we get called 4 times. Twice in early debug and twice in
22828 late debug:
22830 Early debug
22831 -----------
22833 1. Once while generating func() within the namespace. This is
22834 the declaration. The declaration bit below is set, as the
22835 context is the namespace.
22837 A new DIE will be generated with DW_AT_declaration set.
22839 2. Once for func() itself. This is the specification. The
22840 declaration bit below is clear as the context is the CU.
22842 We will use the cached DIE from (1) to create a new DIE with
22843 DW_AT_specification pointing to the declaration in (1).
22845 Late debug via rest_of_handle_final()
22846 -------------------------------------
22848 3. Once generating func() within the namespace. This is also the
22849 declaration, as in (1), but this time we will early exit below
22850 as we have a cached DIE and a declaration needs no additional
22851 annotations (no locations), as the source declaration line
22852 info is enough.
22854 4. Once for func() itself. As in (2), this is the specification,
22855 but this time we will re-use the cached DIE, and just annotate
22856 it with the location information that should now be available.
22858 For something without namespaces, but with abstract instances, we
22859 are also called a multiple times:
22861 class Base
22863 public:
22864 Base (); // constructor declaration (1)
22867 Base::Base () { } // constructor specification (2)
22869 Early debug
22870 -----------
22872 1. Once for the Base() constructor by virtue of it being a
22873 member of the Base class. This is done via
22874 rest_of_type_compilation.
22876 This is a declaration, so a new DIE will be created with
22877 DW_AT_declaration.
22879 2. Once for the Base() constructor definition, but this time
22880 while generating the abstract instance of the base
22881 constructor (__base_ctor) which is being generated via early
22882 debug of reachable functions.
22884 Even though we have a cached version of the declaration (1),
22885 we will create a DW_AT_specification of the declaration DIE
22886 in (1).
22888 3. Once for the __base_ctor itself, but this time, we generate
22889 an DW_AT_abstract_origin version of the DW_AT_specification in
22890 (2).
22892 Late debug via rest_of_handle_final
22893 -----------------------------------
22895 4. One final time for the __base_ctor (which will have a cached
22896 DIE with DW_AT_abstract_origin created in (3). This time,
22897 we will just annotate the location information now
22898 available.
22900 int declaration = (current_function_decl != decl
22901 || class_or_namespace_scope_p (context_die));
22903 /* A declaration that has been previously dumped needs no
22904 additional information. */
22905 if (old_die && declaration)
22906 return;
22908 /* Now that the C++ front end lazily declares artificial member fns, we
22909 might need to retrofit the declaration into its class. */
22910 if (!declaration && !origin && !old_die
22911 && DECL_CONTEXT (decl) && TYPE_P (DECL_CONTEXT (decl))
22912 && !class_or_namespace_scope_p (context_die)
22913 && debug_info_level > DINFO_LEVEL_TERSE)
22914 old_die = force_decl_die (decl);
22916 /* A concrete instance, tag a new DIE with DW_AT_abstract_origin. */
22917 if (origin != NULL)
22919 gcc_assert (!declaration || local_scope_p (context_die));
22921 /* Fixup die_parent for the abstract instance of a nested
22922 inline function. */
22923 if (old_die && old_die->die_parent == NULL)
22924 add_child_die (context_die, old_die);
22926 if (old_die && get_AT_ref (old_die, DW_AT_abstract_origin))
22928 /* If we have a DW_AT_abstract_origin we have a working
22929 cached version. */
22930 subr_die = old_die;
22932 else
22934 subr_die = new_die (DW_TAG_subprogram, context_die, decl);
22935 add_abstract_origin_attribute (subr_die, origin);
22936 /* This is where the actual code for a cloned function is.
22937 Let's emit linkage name attribute for it. This helps
22938 debuggers to e.g, set breakpoints into
22939 constructors/destructors when the user asks "break
22940 K::K". */
22941 add_linkage_name (subr_die, decl);
22944 /* A cached copy, possibly from early dwarf generation. Reuse as
22945 much as possible. */
22946 else if (old_die)
22948 if (!get_AT_flag (old_die, DW_AT_declaration)
22949 /* We can have a normal definition following an inline one in the
22950 case of redefinition of GNU C extern inlines.
22951 It seems reasonable to use AT_specification in this case. */
22952 && !get_AT (old_die, DW_AT_inline))
22954 /* Detect and ignore this case, where we are trying to output
22955 something we have already output. */
22956 if (get_AT (old_die, DW_AT_low_pc)
22957 || get_AT (old_die, DW_AT_ranges))
22958 return;
22960 /* If we have no location information, this must be a
22961 partially generated DIE from early dwarf generation.
22962 Fall through and generate it. */
22965 /* If the definition comes from the same place as the declaration,
22966 maybe use the old DIE. We always want the DIE for this function
22967 that has the *_pc attributes to be under comp_unit_die so the
22968 debugger can find it. We also need to do this for abstract
22969 instances of inlines, since the spec requires the out-of-line copy
22970 to have the same parent. For local class methods, this doesn't
22971 apply; we just use the old DIE. */
22972 expanded_location s = expand_location (DECL_SOURCE_LOCATION (decl));
22973 struct dwarf_file_data * file_index = lookup_filename (s.file);
22974 if (((is_unit_die (old_die->die_parent)
22975 /* This condition fixes the inconsistency/ICE with the
22976 following Fortran test (or some derivative thereof) while
22977 building libgfortran:
22979 module some_m
22980 contains
22981 logical function funky (FLAG)
22982 funky = .true.
22983 end function
22984 end module
22986 || (old_die->die_parent
22987 && old_die->die_parent->die_tag == DW_TAG_module)
22988 || local_scope_p (old_die->die_parent)
22989 || context_die == NULL)
22990 && (DECL_ARTIFICIAL (decl)
22991 || (get_AT_file (old_die, DW_AT_decl_file) == file_index
22992 && (get_AT_unsigned (old_die, DW_AT_decl_line)
22993 == (unsigned) s.line)
22994 && (!debug_column_info
22995 || s.column == 0
22996 || (get_AT_unsigned (old_die, DW_AT_decl_column)
22997 == (unsigned) s.column)))))
22998 /* With LTO if there's an abstract instance for
22999 the old DIE, this is a concrete instance and
23000 thus re-use the DIE. */
23001 || get_AT (old_die, DW_AT_abstract_origin))
23003 subr_die = old_die;
23005 /* Clear out the declaration attribute, but leave the
23006 parameters so they can be augmented with location
23007 information later. Unless this was a declaration, in
23008 which case, wipe out the nameless parameters and recreate
23009 them further down. */
23010 if (remove_AT (subr_die, DW_AT_declaration))
23013 remove_AT (subr_die, DW_AT_object_pointer);
23014 remove_child_TAG (subr_die, DW_TAG_formal_parameter);
23017 /* Make a specification pointing to the previously built
23018 declaration. */
23019 else
23021 subr_die = new_die (DW_TAG_subprogram, context_die, decl);
23022 add_AT_specification (subr_die, old_die);
23023 add_pubname (decl, subr_die);
23024 if (get_AT_file (old_die, DW_AT_decl_file) != file_index)
23025 add_AT_file (subr_die, DW_AT_decl_file, file_index);
23026 if (get_AT_unsigned (old_die, DW_AT_decl_line) != (unsigned) s.line)
23027 add_AT_unsigned (subr_die, DW_AT_decl_line, s.line);
23028 if (debug_column_info
23029 && s.column
23030 && (get_AT_unsigned (old_die, DW_AT_decl_column)
23031 != (unsigned) s.column))
23032 add_AT_unsigned (subr_die, DW_AT_decl_column, s.column);
23034 /* If the prototype had an 'auto' or 'decltype(auto)' return type,
23035 emit the real type on the definition die. */
23036 if (is_cxx () && debug_info_level > DINFO_LEVEL_TERSE)
23038 dw_die_ref die = get_AT_ref (old_die, DW_AT_type);
23039 if (die == auto_die || die == decltype_auto_die)
23040 add_type_attribute (subr_die, TREE_TYPE (TREE_TYPE (decl)),
23041 TYPE_UNQUALIFIED, false, context_die);
23044 /* When we process the method declaration, we haven't seen
23045 the out-of-class defaulted definition yet, so we have to
23046 recheck now. */
23047 if ((dwarf_version >= 5 || ! dwarf_strict)
23048 && !get_AT (subr_die, DW_AT_defaulted))
23050 int defaulted
23051 = lang_hooks.decls.decl_dwarf_attribute (decl,
23052 DW_AT_defaulted);
23053 if (defaulted != -1)
23055 /* Other values must have been handled before. */
23056 gcc_assert (defaulted == DW_DEFAULTED_out_of_class);
23057 add_AT_unsigned (subr_die, DW_AT_defaulted, defaulted);
23062 /* Create a fresh DIE for anything else. */
23063 else
23065 subr_die = new_die (DW_TAG_subprogram, context_die, decl);
23067 if (TREE_PUBLIC (decl))
23068 add_AT_flag (subr_die, DW_AT_external, 1);
23070 add_name_and_src_coords_attributes (subr_die, decl);
23071 add_pubname (decl, subr_die);
23072 if (debug_info_level > DINFO_LEVEL_TERSE)
23074 add_prototyped_attribute (subr_die, TREE_TYPE (decl));
23075 add_type_attribute (subr_die, TREE_TYPE (TREE_TYPE (decl)),
23076 TYPE_UNQUALIFIED, false, context_die);
23079 add_pure_or_virtual_attribute (subr_die, decl);
23080 if (DECL_ARTIFICIAL (decl))
23081 add_AT_flag (subr_die, DW_AT_artificial, 1);
23083 if (TREE_THIS_VOLATILE (decl) && (dwarf_version >= 5 || !dwarf_strict))
23084 add_AT_flag (subr_die, DW_AT_noreturn, 1);
23086 add_alignment_attribute (subr_die, decl);
23088 add_accessibility_attribute (subr_die, decl);
23091 /* Unless we have an existing non-declaration DIE, equate the new
23092 DIE. */
23093 if (!old_die || is_declaration_die (old_die))
23094 equate_decl_number_to_die (decl, subr_die);
23096 if (declaration)
23098 if (!old_die || !get_AT (old_die, DW_AT_inline))
23100 add_AT_flag (subr_die, DW_AT_declaration, 1);
23102 /* If this is an explicit function declaration then generate
23103 a DW_AT_explicit attribute. */
23104 if ((dwarf_version >= 3 || !dwarf_strict)
23105 && lang_hooks.decls.decl_dwarf_attribute (decl,
23106 DW_AT_explicit) == 1)
23107 add_AT_flag (subr_die, DW_AT_explicit, 1);
23109 /* If this is a C++11 deleted special function member then generate
23110 a DW_AT_deleted attribute. */
23111 if ((dwarf_version >= 5 || !dwarf_strict)
23112 && lang_hooks.decls.decl_dwarf_attribute (decl,
23113 DW_AT_deleted) == 1)
23114 add_AT_flag (subr_die, DW_AT_deleted, 1);
23116 /* If this is a C++11 defaulted special function member then
23117 generate a DW_AT_defaulted attribute. */
23118 if (dwarf_version >= 5 || !dwarf_strict)
23120 int defaulted
23121 = lang_hooks.decls.decl_dwarf_attribute (decl,
23122 DW_AT_defaulted);
23123 if (defaulted != -1)
23124 add_AT_unsigned (subr_die, DW_AT_defaulted, defaulted);
23127 /* If this is a C++11 non-static member function with & ref-qualifier
23128 then generate a DW_AT_reference attribute. */
23129 if ((dwarf_version >= 5 || !dwarf_strict)
23130 && lang_hooks.decls.decl_dwarf_attribute (decl,
23131 DW_AT_reference) == 1)
23132 add_AT_flag (subr_die, DW_AT_reference, 1);
23134 /* If this is a C++11 non-static member function with &&
23135 ref-qualifier then generate a DW_AT_reference attribute. */
23136 if ((dwarf_version >= 5 || !dwarf_strict)
23137 && lang_hooks.decls.decl_dwarf_attribute (decl,
23138 DW_AT_rvalue_reference)
23139 == 1)
23140 add_AT_flag (subr_die, DW_AT_rvalue_reference, 1);
23143 /* For non DECL_EXTERNALs, if range information is available, fill
23144 the DIE with it. */
23145 else if (!DECL_EXTERNAL (decl) && !early_dwarf)
23147 HOST_WIDE_INT cfa_fb_offset;
23149 struct function *fun = DECL_STRUCT_FUNCTION (decl);
23151 if (!crtl->has_bb_partition)
23153 dw_fde_ref fde = fun->fde;
23154 if (fde->dw_fde_begin)
23156 /* We have already generated the labels. */
23157 add_AT_low_high_pc (subr_die, fde->dw_fde_begin,
23158 fde->dw_fde_end, false);
23160 else
23162 /* Create start/end labels and add the range. */
23163 char label_id_low[MAX_ARTIFICIAL_LABEL_BYTES];
23164 char label_id_high[MAX_ARTIFICIAL_LABEL_BYTES];
23165 ASM_GENERATE_INTERNAL_LABEL (label_id_low, FUNC_BEGIN_LABEL,
23166 current_function_funcdef_no);
23167 ASM_GENERATE_INTERNAL_LABEL (label_id_high, FUNC_END_LABEL,
23168 current_function_funcdef_no);
23169 add_AT_low_high_pc (subr_die, label_id_low, label_id_high,
23170 false);
23173 #if VMS_DEBUGGING_INFO
23174 /* HP OpenVMS Industry Standard 64: DWARF Extensions
23175 Section 2.3 Prologue and Epilogue Attributes:
23176 When a breakpoint is set on entry to a function, it is generally
23177 desirable for execution to be suspended, not on the very first
23178 instruction of the function, but rather at a point after the
23179 function's frame has been set up, after any language defined local
23180 declaration processing has been completed, and before execution of
23181 the first statement of the function begins. Debuggers generally
23182 cannot properly determine where this point is. Similarly for a
23183 breakpoint set on exit from a function. The prologue and epilogue
23184 attributes allow a compiler to communicate the location(s) to use. */
23187 if (fde->dw_fde_vms_end_prologue)
23188 add_AT_vms_delta (subr_die, DW_AT_HP_prologue,
23189 fde->dw_fde_begin, fde->dw_fde_vms_end_prologue);
23191 if (fde->dw_fde_vms_begin_epilogue)
23192 add_AT_vms_delta (subr_die, DW_AT_HP_epilogue,
23193 fde->dw_fde_begin, fde->dw_fde_vms_begin_epilogue);
23195 #endif
23198 else
23200 /* Generate pubnames entries for the split function code ranges. */
23201 dw_fde_ref fde = fun->fde;
23203 if (fde->dw_fde_second_begin)
23205 if (dwarf_version >= 3 || !dwarf_strict)
23207 /* We should use ranges for non-contiguous code section
23208 addresses. Use the actual code range for the initial
23209 section, since the HOT/COLD labels might precede an
23210 alignment offset. */
23211 bool range_list_added = false;
23212 add_ranges_by_labels (subr_die, fde->dw_fde_begin,
23213 fde->dw_fde_end, &range_list_added,
23214 false);
23215 add_ranges_by_labels (subr_die, fde->dw_fde_second_begin,
23216 fde->dw_fde_second_end,
23217 &range_list_added, false);
23218 if (range_list_added)
23219 add_ranges (NULL);
23221 else
23223 /* There is no real support in DW2 for this .. so we make
23224 a work-around. First, emit the pub name for the segment
23225 containing the function label. Then make and emit a
23226 simplified subprogram DIE for the second segment with the
23227 name pre-fixed by __hot/cold_sect_of_. We use the same
23228 linkage name for the second die so that gdb will find both
23229 sections when given "b foo". */
23230 const char *name = NULL;
23231 tree decl_name = DECL_NAME (decl);
23232 dw_die_ref seg_die;
23234 /* Do the 'primary' section. */
23235 add_AT_low_high_pc (subr_die, fde->dw_fde_begin,
23236 fde->dw_fde_end, false);
23238 /* Build a minimal DIE for the secondary section. */
23239 seg_die = new_die (DW_TAG_subprogram,
23240 subr_die->die_parent, decl);
23242 if (TREE_PUBLIC (decl))
23243 add_AT_flag (seg_die, DW_AT_external, 1);
23245 if (decl_name != NULL
23246 && IDENTIFIER_POINTER (decl_name) != NULL)
23248 name = dwarf2_name (decl, 1);
23249 if (! DECL_ARTIFICIAL (decl))
23250 add_src_coords_attributes (seg_die, decl);
23252 add_linkage_name (seg_die, decl);
23254 gcc_assert (name != NULL);
23255 add_pure_or_virtual_attribute (seg_die, decl);
23256 if (DECL_ARTIFICIAL (decl))
23257 add_AT_flag (seg_die, DW_AT_artificial, 1);
23259 name = concat ("__second_sect_of_", name, NULL);
23260 add_AT_low_high_pc (seg_die, fde->dw_fde_second_begin,
23261 fde->dw_fde_second_end, false);
23262 add_name_attribute (seg_die, name);
23263 if (want_pubnames ())
23264 add_pubname_string (name, seg_die);
23267 else
23268 add_AT_low_high_pc (subr_die, fde->dw_fde_begin, fde->dw_fde_end,
23269 false);
23272 cfa_fb_offset = CFA_FRAME_BASE_OFFSET (decl);
23274 /* We define the "frame base" as the function's CFA. This is more
23275 convenient for several reasons: (1) It's stable across the prologue
23276 and epilogue, which makes it better than just a frame pointer,
23277 (2) With dwarf3, there exists a one-byte encoding that allows us
23278 to reference the .debug_frame data by proxy, but failing that,
23279 (3) We can at least reuse the code inspection and interpretation
23280 code that determines the CFA position at various points in the
23281 function. */
23282 if (dwarf_version >= 3 && targetm.debug_unwind_info () == UI_DWARF2)
23284 dw_loc_descr_ref op = new_loc_descr (DW_OP_call_frame_cfa, 0, 0);
23285 add_AT_loc (subr_die, DW_AT_frame_base, op);
23287 else
23289 dw_loc_list_ref list = convert_cfa_to_fb_loc_list (cfa_fb_offset);
23290 if (list->dw_loc_next)
23291 add_AT_loc_list (subr_die, DW_AT_frame_base, list);
23292 else
23293 add_AT_loc (subr_die, DW_AT_frame_base, list->expr);
23296 /* Compute a displacement from the "steady-state frame pointer" to
23297 the CFA. The former is what all stack slots and argument slots
23298 will reference in the rtl; the latter is what we've told the
23299 debugger about. We'll need to adjust all frame_base references
23300 by this displacement. */
23301 compute_frame_pointer_to_fb_displacement (cfa_fb_offset);
23303 if (fun->static_chain_decl)
23305 /* DWARF requires here a location expression that computes the
23306 address of the enclosing subprogram's frame base. The machinery
23307 in tree-nested.c is supposed to store this specific address in the
23308 last field of the FRAME record. */
23309 const tree frame_type
23310 = TREE_TYPE (TREE_TYPE (fun->static_chain_decl));
23311 const tree fb_decl = tree_last (TYPE_FIELDS (frame_type));
23313 tree fb_expr
23314 = build1 (INDIRECT_REF, frame_type, fun->static_chain_decl);
23315 fb_expr = build3 (COMPONENT_REF, TREE_TYPE (fb_decl),
23316 fb_expr, fb_decl, NULL_TREE);
23318 add_AT_location_description (subr_die, DW_AT_static_link,
23319 loc_list_from_tree (fb_expr, 0, NULL));
23322 resolve_variable_values ();
23325 /* Generate child dies for template paramaters. */
23326 if (early_dwarf && debug_info_level > DINFO_LEVEL_TERSE)
23327 gen_generic_params_dies (decl);
23329 /* Now output descriptions of the arguments for this function. This gets
23330 (unnecessarily?) complex because of the fact that the DECL_ARGUMENT list
23331 for a FUNCTION_DECL doesn't indicate cases where there was a trailing
23332 `...' at the end of the formal parameter list. In order to find out if
23333 there was a trailing ellipsis or not, we must instead look at the type
23334 associated with the FUNCTION_DECL. This will be a node of type
23335 FUNCTION_TYPE. If the chain of type nodes hanging off of this
23336 FUNCTION_TYPE node ends with a void_type_node then there should *not* be
23337 an ellipsis at the end. */
23339 /* In the case where we are describing a mere function declaration, all we
23340 need to do here (and all we *can* do here) is to describe the *types* of
23341 its formal parameters. */
23342 if (debug_info_level <= DINFO_LEVEL_TERSE)
23344 else if (declaration)
23345 gen_formal_types_die (decl, subr_die);
23346 else
23348 /* Generate DIEs to represent all known formal parameters. */
23349 tree parm = DECL_ARGUMENTS (decl);
23350 tree generic_decl = early_dwarf
23351 ? lang_hooks.decls.get_generic_function_decl (decl) : NULL;
23352 tree generic_decl_parm = generic_decl
23353 ? DECL_ARGUMENTS (generic_decl)
23354 : NULL;
23356 /* Now we want to walk the list of parameters of the function and
23357 emit their relevant DIEs.
23359 We consider the case of DECL being an instance of a generic function
23360 as well as it being a normal function.
23362 If DECL is an instance of a generic function we walk the
23363 parameters of the generic function declaration _and_ the parameters of
23364 DECL itself. This is useful because we want to emit specific DIEs for
23365 function parameter packs and those are declared as part of the
23366 generic function declaration. In that particular case,
23367 the parameter pack yields a DW_TAG_GNU_formal_parameter_pack DIE.
23368 That DIE has children DIEs representing the set of arguments
23369 of the pack. Note that the set of pack arguments can be empty.
23370 In that case, the DW_TAG_GNU_formal_parameter_pack DIE will not have any
23371 children DIE.
23373 Otherwise, we just consider the parameters of DECL. */
23374 while (generic_decl_parm || parm)
23376 if (generic_decl_parm
23377 && lang_hooks.function_parameter_pack_p (generic_decl_parm))
23378 gen_formal_parameter_pack_die (generic_decl_parm,
23379 parm, subr_die,
23380 &parm);
23381 else if (parm)
23383 dw_die_ref parm_die = gen_decl_die (parm, NULL, NULL, subr_die);
23385 if (early_dwarf
23386 && parm == DECL_ARGUMENTS (decl)
23387 && TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE
23388 && parm_die
23389 && (dwarf_version >= 3 || !dwarf_strict))
23390 add_AT_die_ref (subr_die, DW_AT_object_pointer, parm_die);
23392 parm = DECL_CHAIN (parm);
23395 if (generic_decl_parm)
23396 generic_decl_parm = DECL_CHAIN (generic_decl_parm);
23399 /* Decide whether we need an unspecified_parameters DIE at the end.
23400 There are 2 more cases to do this for: 1) the ansi ... declaration -
23401 this is detectable when the end of the arg list is not a
23402 void_type_node 2) an unprototyped function declaration (not a
23403 definition). This just means that we have no info about the
23404 parameters at all. */
23405 if (early_dwarf)
23407 if (prototype_p (TREE_TYPE (decl)))
23409 /* This is the prototyped case, check for.... */
23410 if (stdarg_p (TREE_TYPE (decl)))
23411 gen_unspecified_parameters_die (decl, subr_die);
23413 else if (DECL_INITIAL (decl) == NULL_TREE)
23414 gen_unspecified_parameters_die (decl, subr_die);
23418 if (subr_die != old_die)
23419 /* Add the calling convention attribute if requested. */
23420 add_calling_convention_attribute (subr_die, decl);
23422 /* Output Dwarf info for all of the stuff within the body of the function
23423 (if it has one - it may be just a declaration).
23425 OUTER_SCOPE is a pointer to the outermost BLOCK node created to represent
23426 a function. This BLOCK actually represents the outermost binding contour
23427 for the function, i.e. the contour in which the function's formal
23428 parameters and labels get declared. Curiously, it appears that the front
23429 end doesn't actually put the PARM_DECL nodes for the current function onto
23430 the BLOCK_VARS list for this outer scope, but are strung off of the
23431 DECL_ARGUMENTS list for the function instead.
23433 The BLOCK_VARS list for the `outer_scope' does provide us with a list of
23434 the LABEL_DECL nodes for the function however, and we output DWARF info
23435 for those in decls_for_scope. Just within the `outer_scope' there will be
23436 a BLOCK node representing the function's outermost pair of curly braces,
23437 and any blocks used for the base and member initializers of a C++
23438 constructor function. */
23439 tree outer_scope = DECL_INITIAL (decl);
23440 if (! declaration && outer_scope && TREE_CODE (outer_scope) != ERROR_MARK)
23442 int call_site_note_count = 0;
23443 int tail_call_site_note_count = 0;
23445 /* Emit a DW_TAG_variable DIE for a named return value. */
23446 if (DECL_NAME (DECL_RESULT (decl)))
23447 gen_decl_die (DECL_RESULT (decl), NULL, NULL, subr_die);
23449 /* The first time through decls_for_scope we will generate the
23450 DIEs for the locals. The second time, we fill in the
23451 location info. */
23452 decls_for_scope (outer_scope, subr_die);
23454 if (call_arg_locations && (!dwarf_strict || dwarf_version >= 5))
23456 struct call_arg_loc_node *ca_loc;
23457 for (ca_loc = call_arg_locations; ca_loc; ca_loc = ca_loc->next)
23459 dw_die_ref die = NULL;
23460 rtx tloc = NULL_RTX, tlocc = NULL_RTX;
23461 rtx arg, next_arg;
23462 tree arg_decl = NULL_TREE;
23464 for (arg = (ca_loc->call_arg_loc_note != NULL_RTX
23465 ? XEXP (ca_loc->call_arg_loc_note, 0)
23466 : NULL_RTX);
23467 arg; arg = next_arg)
23469 dw_loc_descr_ref reg, val;
23470 machine_mode mode = GET_MODE (XEXP (XEXP (arg, 0), 1));
23471 dw_die_ref cdie, tdie = NULL;
23473 next_arg = XEXP (arg, 1);
23474 if (REG_P (XEXP (XEXP (arg, 0), 0))
23475 && next_arg
23476 && MEM_P (XEXP (XEXP (next_arg, 0), 0))
23477 && REG_P (XEXP (XEXP (XEXP (next_arg, 0), 0), 0))
23478 && REGNO (XEXP (XEXP (arg, 0), 0))
23479 == REGNO (XEXP (XEXP (XEXP (next_arg, 0), 0), 0)))
23480 next_arg = XEXP (next_arg, 1);
23481 if (mode == VOIDmode)
23483 mode = GET_MODE (XEXP (XEXP (arg, 0), 0));
23484 if (mode == VOIDmode)
23485 mode = GET_MODE (XEXP (arg, 0));
23487 if (mode == VOIDmode || mode == BLKmode)
23488 continue;
23489 /* Get dynamic information about call target only if we
23490 have no static information: we cannot generate both
23491 DW_AT_call_origin and DW_AT_call_target
23492 attributes. */
23493 if (ca_loc->symbol_ref == NULL_RTX)
23495 if (XEXP (XEXP (arg, 0), 0) == pc_rtx)
23497 tloc = XEXP (XEXP (arg, 0), 1);
23498 continue;
23500 else if (GET_CODE (XEXP (XEXP (arg, 0), 0)) == CLOBBER
23501 && XEXP (XEXP (XEXP (arg, 0), 0), 0) == pc_rtx)
23503 tlocc = XEXP (XEXP (arg, 0), 1);
23504 continue;
23507 reg = NULL;
23508 if (REG_P (XEXP (XEXP (arg, 0), 0)))
23509 reg = reg_loc_descriptor (XEXP (XEXP (arg, 0), 0),
23510 VAR_INIT_STATUS_INITIALIZED);
23511 else if (MEM_P (XEXP (XEXP (arg, 0), 0)))
23513 rtx mem = XEXP (XEXP (arg, 0), 0);
23514 reg = mem_loc_descriptor (XEXP (mem, 0),
23515 get_address_mode (mem),
23516 GET_MODE (mem),
23517 VAR_INIT_STATUS_INITIALIZED);
23519 else if (GET_CODE (XEXP (XEXP (arg, 0), 0))
23520 == DEBUG_PARAMETER_REF)
23522 tree tdecl
23523 = DEBUG_PARAMETER_REF_DECL (XEXP (XEXP (arg, 0), 0));
23524 tdie = lookup_decl_die (tdecl);
23525 if (tdie == NULL)
23526 continue;
23527 arg_decl = tdecl;
23529 else
23530 continue;
23531 if (reg == NULL
23532 && GET_CODE (XEXP (XEXP (arg, 0), 0))
23533 != DEBUG_PARAMETER_REF)
23534 continue;
23535 val = mem_loc_descriptor (XEXP (XEXP (arg, 0), 1), mode,
23536 VOIDmode,
23537 VAR_INIT_STATUS_INITIALIZED);
23538 if (val == NULL)
23539 continue;
23540 if (die == NULL)
23541 die = gen_call_site_die (decl, subr_die, ca_loc);
23542 cdie = new_die (dwarf_TAG (DW_TAG_call_site_parameter), die,
23543 NULL_TREE);
23544 add_desc_attribute (cdie, arg_decl);
23545 if (reg != NULL)
23546 add_AT_loc (cdie, DW_AT_location, reg);
23547 else if (tdie != NULL)
23548 add_AT_die_ref (cdie, dwarf_AT (DW_AT_call_parameter),
23549 tdie);
23550 add_AT_loc (cdie, dwarf_AT (DW_AT_call_value), val);
23551 if (next_arg != XEXP (arg, 1))
23553 mode = GET_MODE (XEXP (XEXP (XEXP (arg, 1), 0), 1));
23554 if (mode == VOIDmode)
23555 mode = GET_MODE (XEXP (XEXP (XEXP (arg, 1), 0), 0));
23556 val = mem_loc_descriptor (XEXP (XEXP (XEXP (arg, 1),
23557 0), 1),
23558 mode, VOIDmode,
23559 VAR_INIT_STATUS_INITIALIZED);
23560 if (val != NULL)
23561 add_AT_loc (cdie, dwarf_AT (DW_AT_call_data_value),
23562 val);
23565 if (die == NULL
23566 && (ca_loc->symbol_ref || tloc))
23567 die = gen_call_site_die (decl, subr_die, ca_loc);
23568 if (die != NULL && (tloc != NULL_RTX || tlocc != NULL_RTX))
23570 dw_loc_descr_ref tval = NULL;
23572 if (tloc != NULL_RTX)
23573 tval = mem_loc_descriptor (tloc,
23574 GET_MODE (tloc) == VOIDmode
23575 ? Pmode : GET_MODE (tloc),
23576 VOIDmode,
23577 VAR_INIT_STATUS_INITIALIZED);
23578 if (tval)
23579 add_AT_loc (die, dwarf_AT (DW_AT_call_target), tval);
23580 else if (tlocc != NULL_RTX)
23582 tval = mem_loc_descriptor (tlocc,
23583 GET_MODE (tlocc) == VOIDmode
23584 ? Pmode : GET_MODE (tlocc),
23585 VOIDmode,
23586 VAR_INIT_STATUS_INITIALIZED);
23587 if (tval)
23588 add_AT_loc (die,
23589 dwarf_AT (DW_AT_call_target_clobbered),
23590 tval);
23593 if (die != NULL)
23595 call_site_note_count++;
23596 if (ca_loc->tail_call_p)
23597 tail_call_site_note_count++;
23601 call_arg_locations = NULL;
23602 call_arg_loc_last = NULL;
23603 if (tail_call_site_count >= 0
23604 && tail_call_site_count == tail_call_site_note_count
23605 && (!dwarf_strict || dwarf_version >= 5))
23607 if (call_site_count >= 0
23608 && call_site_count == call_site_note_count)
23609 add_AT_flag (subr_die, dwarf_AT (DW_AT_call_all_calls), 1);
23610 else
23611 add_AT_flag (subr_die, dwarf_AT (DW_AT_call_all_tail_calls), 1);
23613 call_site_count = -1;
23614 tail_call_site_count = -1;
23617 /* Mark used types after we have created DIEs for the functions scopes. */
23618 premark_used_types (DECL_STRUCT_FUNCTION (decl));
23621 /* Returns a hash value for X (which really is a die_struct). */
23623 hashval_t
23624 block_die_hasher::hash (die_struct *d)
23626 return (hashval_t) d->decl_id ^ htab_hash_pointer (d->die_parent);
23629 /* Return nonzero if decl_id and die_parent of die_struct X is the same
23630 as decl_id and die_parent of die_struct Y. */
23632 bool
23633 block_die_hasher::equal (die_struct *x, die_struct *y)
23635 return x->decl_id == y->decl_id && x->die_parent == y->die_parent;
23638 /* Hold information about markers for inlined entry points. */
23639 struct GTY ((for_user)) inline_entry_data
23641 /* The block that's the inlined_function_outer_scope for an inlined
23642 function. */
23643 tree block;
23645 /* The label at the inlined entry point. */
23646 const char *label_pfx;
23647 unsigned int label_num;
23649 /* The view number to be used as the inlined entry point. */
23650 var_loc_view view;
23653 struct inline_entry_data_hasher : ggc_ptr_hash <inline_entry_data>
23655 typedef tree compare_type;
23656 static inline hashval_t hash (const inline_entry_data *);
23657 static inline bool equal (const inline_entry_data *, const_tree);
23660 /* Hash table routines for inline_entry_data. */
23662 inline hashval_t
23663 inline_entry_data_hasher::hash (const inline_entry_data *data)
23665 return htab_hash_pointer (data->block);
23668 inline bool
23669 inline_entry_data_hasher::equal (const inline_entry_data *data,
23670 const_tree block)
23672 return data->block == block;
23675 /* Inlined entry points pending DIE creation in this compilation unit. */
23677 static GTY(()) hash_table<inline_entry_data_hasher> *inline_entry_data_table;
23680 /* Return TRUE if DECL, which may have been previously generated as
23681 OLD_DIE, is a candidate for a DW_AT_specification. DECLARATION is
23682 true if decl (or its origin) is either an extern declaration or a
23683 class/namespace scoped declaration.
23685 The declare_in_namespace support causes us to get two DIEs for one
23686 variable, both of which are declarations. We want to avoid
23687 considering one to be a specification, so we must test for
23688 DECLARATION and DW_AT_declaration. */
23689 static inline bool
23690 decl_will_get_specification_p (dw_die_ref old_die, tree decl, bool declaration)
23692 return (old_die && TREE_STATIC (decl) && !declaration
23693 && get_AT_flag (old_die, DW_AT_declaration) == 1);
23696 /* Return true if DECL is a local static. */
23698 static inline bool
23699 local_function_static (tree decl)
23701 gcc_assert (VAR_P (decl));
23702 return TREE_STATIC (decl)
23703 && DECL_CONTEXT (decl)
23704 && TREE_CODE (DECL_CONTEXT (decl)) == FUNCTION_DECL;
23707 /* Return true iff DECL overrides (presumably completes) the type of
23708 OLD_DIE within CONTEXT_DIE. */
23710 static bool
23711 override_type_for_decl_p (tree decl, dw_die_ref old_die,
23712 dw_die_ref context_die)
23714 tree type = TREE_TYPE (decl);
23715 int cv_quals;
23717 if (decl_by_reference_p (decl))
23719 type = TREE_TYPE (type);
23720 cv_quals = TYPE_UNQUALIFIED;
23722 else
23723 cv_quals = decl_quals (decl);
23725 dw_die_ref type_die = modified_type_die (type,
23726 cv_quals | TYPE_QUALS (type),
23727 false,
23728 context_die);
23730 dw_die_ref old_type_die = get_AT_ref (old_die, DW_AT_type);
23732 return type_die != old_type_die;
23735 /* Generate a DIE to represent a declared data object.
23736 Either DECL or ORIGIN must be non-null. */
23738 static void
23739 gen_variable_die (tree decl, tree origin, dw_die_ref context_die)
23741 HOST_WIDE_INT off = 0;
23742 tree com_decl;
23743 tree decl_or_origin = decl ? decl : origin;
23744 tree ultimate_origin;
23745 dw_die_ref var_die;
23746 dw_die_ref old_die = decl ? lookup_decl_die (decl) : NULL;
23747 bool declaration = (DECL_EXTERNAL (decl_or_origin)
23748 || class_or_namespace_scope_p (context_die));
23749 bool specialization_p = false;
23750 bool no_linkage_name = false;
23752 /* While C++ inline static data members have definitions inside of the
23753 class, force the first DIE to be a declaration, then let gen_member_die
23754 reparent it to the class context and call gen_variable_die again
23755 to create the outside of the class DIE for the definition. */
23756 if (!declaration
23757 && old_die == NULL
23758 && decl
23759 && DECL_CONTEXT (decl)
23760 && TYPE_P (DECL_CONTEXT (decl))
23761 && lang_hooks.decls.decl_dwarf_attribute (decl, DW_AT_inline) != -1)
23763 declaration = true;
23764 if (dwarf_version < 5)
23765 no_linkage_name = true;
23768 ultimate_origin = decl_ultimate_origin (decl_or_origin);
23769 if (decl || ultimate_origin)
23770 origin = ultimate_origin;
23771 com_decl = fortran_common (decl_or_origin, &off);
23773 /* Symbol in common gets emitted as a child of the common block, in the form
23774 of a data member. */
23775 if (com_decl)
23777 dw_die_ref com_die;
23778 dw_loc_list_ref loc = NULL;
23779 die_node com_die_arg;
23781 var_die = lookup_decl_die (decl_or_origin);
23782 if (var_die)
23784 if (! early_dwarf && get_AT (var_die, DW_AT_location) == NULL)
23786 loc = loc_list_from_tree (com_decl, off ? 1 : 2, NULL);
23787 if (loc)
23789 if (off)
23791 /* Optimize the common case. */
23792 if (single_element_loc_list_p (loc)
23793 && loc->expr->dw_loc_opc == DW_OP_addr
23794 && loc->expr->dw_loc_next == NULL
23795 && GET_CODE (loc->expr->dw_loc_oprnd1.v.val_addr)
23796 == SYMBOL_REF)
23798 rtx x = loc->expr->dw_loc_oprnd1.v.val_addr;
23799 loc->expr->dw_loc_oprnd1.v.val_addr
23800 = plus_constant (GET_MODE (x), x , off);
23802 else
23803 loc_list_plus_const (loc, off);
23805 add_AT_location_description (var_die, DW_AT_location, loc);
23806 remove_AT (var_die, DW_AT_declaration);
23809 return;
23812 if (common_block_die_table == NULL)
23813 common_block_die_table = hash_table<block_die_hasher>::create_ggc (10);
23815 com_die_arg.decl_id = DECL_UID (com_decl);
23816 com_die_arg.die_parent = context_die;
23817 com_die = common_block_die_table->find (&com_die_arg);
23818 if (! early_dwarf)
23819 loc = loc_list_from_tree (com_decl, 2, NULL);
23820 if (com_die == NULL)
23822 const char *cnam
23823 = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (com_decl));
23824 die_node **slot;
23826 com_die = new_die (DW_TAG_common_block, context_die, decl);
23827 add_name_and_src_coords_attributes (com_die, com_decl);
23828 if (loc)
23830 add_AT_location_description (com_die, DW_AT_location, loc);
23831 /* Avoid sharing the same loc descriptor between
23832 DW_TAG_common_block and DW_TAG_variable. */
23833 loc = loc_list_from_tree (com_decl, 2, NULL);
23835 else if (DECL_EXTERNAL (decl_or_origin))
23836 add_AT_flag (com_die, DW_AT_declaration, 1);
23837 if (want_pubnames ())
23838 add_pubname_string (cnam, com_die); /* ??? needed? */
23839 com_die->decl_id = DECL_UID (com_decl);
23840 slot = common_block_die_table->find_slot (com_die, INSERT);
23841 *slot = com_die;
23843 else if (get_AT (com_die, DW_AT_location) == NULL && loc)
23845 add_AT_location_description (com_die, DW_AT_location, loc);
23846 loc = loc_list_from_tree (com_decl, 2, NULL);
23847 remove_AT (com_die, DW_AT_declaration);
23849 var_die = new_die (DW_TAG_variable, com_die, decl);
23850 add_name_and_src_coords_attributes (var_die, decl_or_origin);
23851 add_type_attribute (var_die, TREE_TYPE (decl_or_origin),
23852 decl_quals (decl_or_origin), false,
23853 context_die);
23854 add_alignment_attribute (var_die, decl);
23855 add_AT_flag (var_die, DW_AT_external, 1);
23856 if (loc)
23858 if (off)
23860 /* Optimize the common case. */
23861 if (single_element_loc_list_p (loc)
23862 && loc->expr->dw_loc_opc == DW_OP_addr
23863 && loc->expr->dw_loc_next == NULL
23864 && GET_CODE (loc->expr->dw_loc_oprnd1.v.val_addr) == SYMBOL_REF)
23866 rtx x = loc->expr->dw_loc_oprnd1.v.val_addr;
23867 loc->expr->dw_loc_oprnd1.v.val_addr
23868 = plus_constant (GET_MODE (x), x, off);
23870 else
23871 loc_list_plus_const (loc, off);
23873 add_AT_location_description (var_die, DW_AT_location, loc);
23875 else if (DECL_EXTERNAL (decl_or_origin))
23876 add_AT_flag (var_die, DW_AT_declaration, 1);
23877 if (decl)
23878 equate_decl_number_to_die (decl, var_die);
23879 return;
23882 if (old_die)
23884 if (declaration)
23886 /* A declaration that has been previously dumped, needs no
23887 further annotations, since it doesn't need location on
23888 the second pass. */
23889 return;
23891 else if (decl_will_get_specification_p (old_die, decl, declaration)
23892 && !get_AT (old_die, DW_AT_specification))
23894 /* Fall-thru so we can make a new variable die along with a
23895 DW_AT_specification. */
23897 else if (origin && old_die->die_parent != context_die)
23899 /* If we will be creating an inlined instance, we need a
23900 new DIE that will get annotated with
23901 DW_AT_abstract_origin. */
23902 gcc_assert (!DECL_ABSTRACT_P (decl));
23904 else
23906 /* If a DIE was dumped early, it still needs location info.
23907 Skip to where we fill the location bits. */
23908 var_die = old_die;
23910 /* ??? In LTRANS we cannot annotate early created variably
23911 modified type DIEs without copying them and adjusting all
23912 references to them. Thus we dumped them again. Also add a
23913 reference to them but beware of -g0 compile and -g link
23914 in which case the reference will be already present. */
23915 tree type = TREE_TYPE (decl_or_origin);
23916 if (in_lto_p
23917 && ! get_AT (var_die, DW_AT_type)
23918 && variably_modified_type_p
23919 (type, decl_function_context (decl_or_origin)))
23921 if (decl_by_reference_p (decl_or_origin))
23922 add_type_attribute (var_die, TREE_TYPE (type),
23923 TYPE_UNQUALIFIED, false, context_die);
23924 else
23925 add_type_attribute (var_die, type, decl_quals (decl_or_origin),
23926 false, context_die);
23929 goto gen_variable_die_location;
23933 /* For static data members, the declaration in the class is supposed
23934 to have DW_TAG_member tag in DWARF{3,4} and we emit it for compatibility
23935 also in DWARF2; the specification should still be DW_TAG_variable
23936 referencing the DW_TAG_member DIE. */
23937 if (declaration && class_scope_p (context_die) && dwarf_version < 5)
23938 var_die = new_die (DW_TAG_member, context_die, decl);
23939 else
23940 var_die = new_die (DW_TAG_variable, context_die, decl);
23942 if (origin != NULL)
23943 add_abstract_origin_attribute (var_die, origin);
23945 /* Loop unrolling can create multiple blocks that refer to the same
23946 static variable, so we must test for the DW_AT_declaration flag.
23948 ??? Loop unrolling/reorder_blocks should perhaps be rewritten to
23949 copy decls and set the DECL_ABSTRACT_P flag on them instead of
23950 sharing them.
23952 ??? Duplicated blocks have been rewritten to use .debug_ranges. */
23953 else if (decl_will_get_specification_p (old_die, decl, declaration))
23955 /* This is a definition of a C++ class level static. */
23956 add_AT_specification (var_die, old_die);
23957 specialization_p = true;
23958 if (DECL_NAME (decl))
23960 expanded_location s = expand_location (DECL_SOURCE_LOCATION (decl));
23961 struct dwarf_file_data * file_index = lookup_filename (s.file);
23963 if (get_AT_file (old_die, DW_AT_decl_file) != file_index)
23964 add_AT_file (var_die, DW_AT_decl_file, file_index);
23966 if (get_AT_unsigned (old_die, DW_AT_decl_line) != (unsigned) s.line)
23967 add_AT_unsigned (var_die, DW_AT_decl_line, s.line);
23969 if (debug_column_info
23970 && s.column
23971 && (get_AT_unsigned (old_die, DW_AT_decl_column)
23972 != (unsigned) s.column))
23973 add_AT_unsigned (var_die, DW_AT_decl_column, s.column);
23975 if (old_die->die_tag == DW_TAG_member)
23976 add_linkage_name (var_die, decl);
23979 else
23980 add_name_and_src_coords_attributes (var_die, decl, no_linkage_name);
23982 if ((origin == NULL && !specialization_p)
23983 || (origin != NULL
23984 && !DECL_ABSTRACT_P (decl_or_origin)
23985 && variably_modified_type_p (TREE_TYPE (decl_or_origin),
23986 decl_function_context
23987 (decl_or_origin)))
23988 || (old_die && specialization_p
23989 && override_type_for_decl_p (decl_or_origin, old_die, context_die)))
23991 tree type = TREE_TYPE (decl_or_origin);
23993 if (decl_by_reference_p (decl_or_origin))
23994 add_type_attribute (var_die, TREE_TYPE (type), TYPE_UNQUALIFIED, false,
23995 context_die);
23996 else
23997 add_type_attribute (var_die, type, decl_quals (decl_or_origin), false,
23998 context_die);
24001 if (origin == NULL && !specialization_p)
24003 if (TREE_PUBLIC (decl))
24004 add_AT_flag (var_die, DW_AT_external, 1);
24006 if (DECL_ARTIFICIAL (decl))
24007 add_AT_flag (var_die, DW_AT_artificial, 1);
24009 add_alignment_attribute (var_die, decl);
24011 add_accessibility_attribute (var_die, decl);
24014 if (declaration)
24015 add_AT_flag (var_die, DW_AT_declaration, 1);
24017 if (decl && (DECL_ABSTRACT_P (decl)
24018 || !old_die || is_declaration_die (old_die)))
24019 equate_decl_number_to_die (decl, var_die);
24021 gen_variable_die_location:
24022 if (! declaration
24023 && (! DECL_ABSTRACT_P (decl_or_origin)
24024 /* Local static vars are shared between all clones/inlines,
24025 so emit DW_AT_location on the abstract DIE if DECL_RTL is
24026 already set. */
24027 || (VAR_P (decl_or_origin)
24028 && TREE_STATIC (decl_or_origin)
24029 && DECL_RTL_SET_P (decl_or_origin))))
24031 if (early_dwarf)
24032 add_pubname (decl_or_origin, var_die);
24033 else
24034 add_location_or_const_value_attribute (var_die, decl_or_origin,
24035 decl == NULL);
24037 else
24038 tree_add_const_value_attribute_for_decl (var_die, decl_or_origin);
24040 if ((dwarf_version >= 4 || !dwarf_strict)
24041 && lang_hooks.decls.decl_dwarf_attribute (decl_or_origin,
24042 DW_AT_const_expr) == 1
24043 && !get_AT (var_die, DW_AT_const_expr)
24044 && !specialization_p)
24045 add_AT_flag (var_die, DW_AT_const_expr, 1);
24047 if (!dwarf_strict)
24049 int inl = lang_hooks.decls.decl_dwarf_attribute (decl_or_origin,
24050 DW_AT_inline);
24051 if (inl != -1
24052 && !get_AT (var_die, DW_AT_inline)
24053 && !specialization_p)
24054 add_AT_unsigned (var_die, DW_AT_inline, inl);
24058 /* Generate a DIE to represent a named constant. */
24060 static void
24061 gen_const_die (tree decl, dw_die_ref context_die)
24063 dw_die_ref const_die;
24064 tree type = TREE_TYPE (decl);
24066 const_die = lookup_decl_die (decl);
24067 if (const_die)
24068 return;
24070 const_die = new_die (DW_TAG_constant, context_die, decl);
24071 equate_decl_number_to_die (decl, const_die);
24072 add_name_and_src_coords_attributes (const_die, decl);
24073 add_type_attribute (const_die, type, TYPE_QUAL_CONST, false, context_die);
24074 if (TREE_PUBLIC (decl))
24075 add_AT_flag (const_die, DW_AT_external, 1);
24076 if (DECL_ARTIFICIAL (decl))
24077 add_AT_flag (const_die, DW_AT_artificial, 1);
24078 tree_add_const_value_attribute_for_decl (const_die, decl);
24081 /* Generate a DIE to represent a label identifier. */
24083 static void
24084 gen_label_die (tree decl, dw_die_ref context_die)
24086 tree origin = decl_ultimate_origin (decl);
24087 dw_die_ref lbl_die = lookup_decl_die (decl);
24088 rtx insn;
24089 char label[MAX_ARTIFICIAL_LABEL_BYTES];
24091 if (!lbl_die)
24093 lbl_die = new_die (DW_TAG_label, context_die, decl);
24094 equate_decl_number_to_die (decl, lbl_die);
24096 if (origin != NULL)
24097 add_abstract_origin_attribute (lbl_die, origin);
24098 else
24099 add_name_and_src_coords_attributes (lbl_die, decl);
24102 if (DECL_ABSTRACT_P (decl))
24103 equate_decl_number_to_die (decl, lbl_die);
24104 else if (! early_dwarf)
24106 insn = DECL_RTL_IF_SET (decl);
24108 /* Deleted labels are programmer specified labels which have been
24109 eliminated because of various optimizations. We still emit them
24110 here so that it is possible to put breakpoints on them. */
24111 if (insn
24112 && (LABEL_P (insn)
24113 || ((NOTE_P (insn)
24114 && NOTE_KIND (insn) == NOTE_INSN_DELETED_LABEL))))
24116 /* When optimization is enabled (via -O) some parts of the compiler
24117 (e.g. jump.c and cse.c) may try to delete CODE_LABEL insns which
24118 represent source-level labels which were explicitly declared by
24119 the user. This really shouldn't be happening though, so catch
24120 it if it ever does happen. */
24121 gcc_assert (!as_a<rtx_insn *> (insn)->deleted ());
24123 ASM_GENERATE_INTERNAL_LABEL (label, "L", CODE_LABEL_NUMBER (insn));
24124 add_AT_lbl_id (lbl_die, DW_AT_low_pc, label);
24126 else if (insn
24127 && NOTE_P (insn)
24128 && NOTE_KIND (insn) == NOTE_INSN_DELETED_DEBUG_LABEL
24129 && CODE_LABEL_NUMBER (insn) != -1)
24131 ASM_GENERATE_INTERNAL_LABEL (label, "LDL", CODE_LABEL_NUMBER (insn));
24132 add_AT_lbl_id (lbl_die, DW_AT_low_pc, label);
24137 /* A helper function for gen_inlined_subroutine_die. Add source coordinate
24138 attributes to the DIE for a block STMT, to describe where the inlined
24139 function was called from. This is similar to add_src_coords_attributes. */
24141 static inline void
24142 add_call_src_coords_attributes (tree stmt, dw_die_ref die)
24144 /* We can end up with BUILTINS_LOCATION here. */
24145 if (RESERVED_LOCATION_P (BLOCK_SOURCE_LOCATION (stmt)))
24146 return;
24148 expanded_location s = expand_location (BLOCK_SOURCE_LOCATION (stmt));
24150 if (dwarf_version >= 3 || !dwarf_strict)
24152 add_AT_file (die, DW_AT_call_file, lookup_filename (s.file));
24153 add_AT_unsigned (die, DW_AT_call_line, s.line);
24154 if (debug_column_info && s.column)
24155 add_AT_unsigned (die, DW_AT_call_column, s.column);
24160 /* A helper function for gen_lexical_block_die and gen_inlined_subroutine_die.
24161 Add low_pc and high_pc attributes to the DIE for a block STMT. */
24163 static inline void
24164 add_high_low_attributes (tree stmt, dw_die_ref die)
24166 char label[MAX_ARTIFICIAL_LABEL_BYTES];
24168 if (inline_entry_data **iedp
24169 = !inline_entry_data_table ? NULL
24170 : inline_entry_data_table->find_slot_with_hash (stmt,
24171 htab_hash_pointer (stmt),
24172 NO_INSERT))
24174 inline_entry_data *ied = *iedp;
24175 gcc_assert (MAY_HAVE_DEBUG_MARKER_INSNS);
24176 gcc_assert (debug_inline_points);
24177 gcc_assert (inlined_function_outer_scope_p (stmt));
24179 ASM_GENERATE_INTERNAL_LABEL (label, ied->label_pfx, ied->label_num);
24180 add_AT_lbl_id (die, DW_AT_entry_pc, label);
24182 if (debug_variable_location_views && !ZERO_VIEW_P (ied->view)
24183 && !dwarf_strict)
24185 if (!output_asm_line_debug_info ())
24186 add_AT_unsigned (die, DW_AT_GNU_entry_view, ied->view);
24187 else
24189 ASM_GENERATE_INTERNAL_LABEL (label, "LVU", ied->view);
24190 /* FIXME: this will resolve to a small number. Could we
24191 possibly emit smaller data? Ideally we'd emit a
24192 uleb128, but that would make the size of DIEs
24193 impossible for the compiler to compute, since it's
24194 the assembler that computes the value of the view
24195 label in this case. Ideally, we'd have a single form
24196 encompassing both the address and the view, and
24197 indirecting them through a table might make things
24198 easier, but even that would be more wasteful,
24199 space-wise, than what we have now. */
24200 add_AT_symview (die, DW_AT_GNU_entry_view, label);
24204 inline_entry_data_table->clear_slot (iedp);
24207 if (BLOCK_FRAGMENT_CHAIN (stmt)
24208 && (dwarf_version >= 3 || !dwarf_strict))
24210 tree chain, superblock = NULL_TREE;
24211 dw_die_ref pdie;
24212 dw_attr_node *attr = NULL;
24214 if (!debug_inline_points && inlined_function_outer_scope_p (stmt))
24216 ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_BEGIN_LABEL,
24217 BLOCK_NUMBER (stmt));
24218 add_AT_lbl_id (die, DW_AT_entry_pc, label);
24221 /* Optimize duplicate .debug_ranges lists or even tails of
24222 lists. If this BLOCK has same ranges as its supercontext,
24223 lookup DW_AT_ranges attribute in the supercontext (and
24224 recursively so), verify that the ranges_table contains the
24225 right values and use it instead of adding a new .debug_range. */
24226 for (chain = stmt, pdie = die;
24227 BLOCK_SAME_RANGE (chain);
24228 chain = BLOCK_SUPERCONTEXT (chain))
24230 dw_attr_node *new_attr;
24232 pdie = pdie->die_parent;
24233 if (pdie == NULL)
24234 break;
24235 if (BLOCK_SUPERCONTEXT (chain) == NULL_TREE)
24236 break;
24237 new_attr = get_AT (pdie, DW_AT_ranges);
24238 if (new_attr == NULL
24239 || new_attr->dw_attr_val.val_class != dw_val_class_range_list)
24240 break;
24241 attr = new_attr;
24242 superblock = BLOCK_SUPERCONTEXT (chain);
24244 if (attr != NULL
24245 && ((*ranges_table)[attr->dw_attr_val.v.val_offset].num
24246 == (int)BLOCK_NUMBER (superblock))
24247 && BLOCK_FRAGMENT_CHAIN (superblock))
24249 unsigned long off = attr->dw_attr_val.v.val_offset;
24250 unsigned long supercnt = 0, thiscnt = 0;
24251 for (chain = BLOCK_FRAGMENT_CHAIN (superblock);
24252 chain; chain = BLOCK_FRAGMENT_CHAIN (chain))
24254 ++supercnt;
24255 gcc_checking_assert ((*ranges_table)[off + supercnt].num
24256 == (int)BLOCK_NUMBER (chain));
24258 gcc_checking_assert ((*ranges_table)[off + supercnt + 1].num == 0);
24259 for (chain = BLOCK_FRAGMENT_CHAIN (stmt);
24260 chain; chain = BLOCK_FRAGMENT_CHAIN (chain))
24261 ++thiscnt;
24262 gcc_assert (supercnt >= thiscnt);
24263 add_AT_range_list (die, DW_AT_ranges, off + supercnt - thiscnt,
24264 false);
24265 note_rnglist_head (off + supercnt - thiscnt);
24266 return;
24269 unsigned int offset = add_ranges (stmt, true);
24270 add_AT_range_list (die, DW_AT_ranges, offset, false);
24271 note_rnglist_head (offset);
24273 bool prev_in_cold = BLOCK_IN_COLD_SECTION_P (stmt);
24274 chain = BLOCK_FRAGMENT_CHAIN (stmt);
24277 add_ranges (chain, prev_in_cold != BLOCK_IN_COLD_SECTION_P (chain));
24278 prev_in_cold = BLOCK_IN_COLD_SECTION_P (chain);
24279 chain = BLOCK_FRAGMENT_CHAIN (chain);
24281 while (chain);
24282 add_ranges (NULL);
24284 else
24286 char label_high[MAX_ARTIFICIAL_LABEL_BYTES];
24287 ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_BEGIN_LABEL,
24288 BLOCK_NUMBER (stmt));
24289 ASM_GENERATE_INTERNAL_LABEL (label_high, BLOCK_END_LABEL,
24290 BLOCK_NUMBER (stmt));
24291 add_AT_low_high_pc (die, label, label_high, false);
24295 /* Generate a DIE for a lexical block. */
24297 static void
24298 gen_lexical_block_die (tree stmt, dw_die_ref context_die)
24300 dw_die_ref old_die = lookup_block_die (stmt);
24301 dw_die_ref stmt_die = NULL;
24302 if (!old_die)
24304 stmt_die = new_die (DW_TAG_lexical_block, context_die, stmt);
24305 equate_block_to_die (stmt, stmt_die);
24308 if (BLOCK_ABSTRACT_ORIGIN (stmt))
24310 /* If this is an inlined or conrecte instance, create a new lexical
24311 die for anything below to attach DW_AT_abstract_origin to. */
24312 if (old_die)
24313 stmt_die = new_die (DW_TAG_lexical_block, context_die, stmt);
24315 tree origin = block_ultimate_origin (stmt);
24316 if (origin != NULL_TREE && (origin != stmt || old_die))
24317 add_abstract_origin_attribute (stmt_die, origin);
24319 old_die = NULL;
24322 if (old_die)
24323 stmt_die = old_die;
24325 /* A non abstract block whose blocks have already been reordered
24326 should have the instruction range for this block. If so, set the
24327 high/low attributes. */
24328 if (!early_dwarf && TREE_ASM_WRITTEN (stmt))
24330 gcc_assert (stmt_die);
24331 add_high_low_attributes (stmt, stmt_die);
24334 decls_for_scope (stmt, stmt_die);
24337 /* Generate a DIE for an inlined subprogram. */
24339 static void
24340 gen_inlined_subroutine_die (tree stmt, dw_die_ref context_die)
24342 tree decl = block_ultimate_origin (stmt);
24344 /* Make sure any inlined functions are known to be inlineable. */
24345 gcc_checking_assert (DECL_ABSTRACT_P (decl)
24346 || cgraph_function_possibly_inlined_p (decl));
24348 dw_die_ref subr_die = new_die (DW_TAG_inlined_subroutine, context_die, stmt);
24350 if (call_arg_locations || debug_inline_points)
24351 equate_block_to_die (stmt, subr_die);
24352 add_abstract_origin_attribute (subr_die, decl);
24353 if (TREE_ASM_WRITTEN (stmt))
24354 add_high_low_attributes (stmt, subr_die);
24355 add_call_src_coords_attributes (stmt, subr_die);
24357 /* The inliner creates an extra BLOCK for the parameter setup,
24358 we want to merge that with the actual outermost BLOCK of the
24359 inlined function to avoid duplicate locals in consumers.
24360 Do that by doing the recursion to subblocks on the single subblock
24361 of STMT. */
24362 bool unwrap_one = false;
24363 if (BLOCK_SUBBLOCKS (stmt) && !BLOCK_CHAIN (BLOCK_SUBBLOCKS (stmt)))
24365 tree origin = block_ultimate_origin (BLOCK_SUBBLOCKS (stmt));
24366 if (origin
24367 && TREE_CODE (origin) == BLOCK
24368 && BLOCK_SUPERCONTEXT (origin) == decl)
24369 unwrap_one = true;
24371 decls_for_scope (stmt, subr_die, !unwrap_one);
24372 if (unwrap_one)
24373 decls_for_scope (BLOCK_SUBBLOCKS (stmt), subr_die);
24376 /* Generate a DIE for a field in a record, or structure. CTX is required: see
24377 the comment for VLR_CONTEXT. */
24379 static void
24380 gen_field_die (tree decl, struct vlr_context *ctx, dw_die_ref context_die)
24382 dw_die_ref decl_die;
24384 if (TREE_TYPE (decl) == error_mark_node)
24385 return;
24387 decl_die = new_die (DW_TAG_member, context_die, decl);
24388 add_name_and_src_coords_attributes (decl_die, decl);
24389 add_type_attribute (decl_die, member_declared_type (decl), decl_quals (decl),
24390 TYPE_REVERSE_STORAGE_ORDER (DECL_FIELD_CONTEXT (decl)),
24391 context_die);
24393 if (DECL_BIT_FIELD_TYPE (decl))
24395 add_byte_size_attribute (decl_die, decl);
24396 add_bit_size_attribute (decl_die, decl);
24397 add_bit_offset_attribute (decl_die, decl, ctx);
24400 add_alignment_attribute (decl_die, decl);
24402 /* If we have a variant part offset, then we are supposed to process a member
24403 of a QUAL_UNION_TYPE, which is how we represent variant parts in
24404 trees. */
24405 gcc_assert (ctx->variant_part_offset == NULL_TREE
24406 || TREE_CODE (DECL_FIELD_CONTEXT (decl)) != QUAL_UNION_TYPE);
24407 if (TREE_CODE (DECL_FIELD_CONTEXT (decl)) != UNION_TYPE)
24408 add_data_member_location_attribute (decl_die, decl, ctx);
24410 if (DECL_ARTIFICIAL (decl))
24411 add_AT_flag (decl_die, DW_AT_artificial, 1);
24413 add_accessibility_attribute (decl_die, decl);
24415 /* Equate decl number to die, so that we can look up this decl later on. */
24416 equate_decl_number_to_die (decl, decl_die);
24419 /* Generate a DIE for a pointer to a member type. TYPE can be an
24420 OFFSET_TYPE, for a pointer to data member, or a RECORD_TYPE, for a
24421 pointer to member function. */
24423 static void
24424 gen_ptr_to_mbr_type_die (tree type, dw_die_ref context_die)
24426 if (lookup_type_die (type))
24427 return;
24429 dw_die_ref ptr_die = new_die (DW_TAG_ptr_to_member_type,
24430 scope_die_for (type, context_die), type);
24432 equate_type_number_to_die (type, ptr_die);
24433 add_AT_die_ref (ptr_die, DW_AT_containing_type,
24434 lookup_type_die (TYPE_OFFSET_BASETYPE (type)));
24435 add_type_attribute (ptr_die, TREE_TYPE (type), TYPE_UNQUALIFIED, false,
24436 context_die);
24437 add_alignment_attribute (ptr_die, type);
24439 if (TREE_CODE (TREE_TYPE (type)) != FUNCTION_TYPE
24440 && TREE_CODE (TREE_TYPE (type)) != METHOD_TYPE)
24442 dw_loc_descr_ref op = new_loc_descr (DW_OP_plus, 0, 0);
24443 add_AT_loc (ptr_die, DW_AT_use_location, op);
24447 static char *producer_string;
24449 /* Return a heap allocated producer string including command line options
24450 if -grecord-gcc-switches. */
24452 static char *
24453 gen_producer_string (void)
24455 size_t j;
24456 auto_vec<const char *> switches;
24457 const char *language_string = lang_hooks.name;
24458 char *producer, *tail;
24459 const char *p;
24460 size_t len = dwarf_record_gcc_switches ? 0 : 3;
24461 size_t plen = strlen (language_string) + 1 + strlen (version_string);
24463 for (j = 1; dwarf_record_gcc_switches && j < save_decoded_options_count; j++)
24464 switch (save_decoded_options[j].opt_index)
24466 case OPT_o:
24467 case OPT_d:
24468 case OPT_dumpbase:
24469 case OPT_dumpdir:
24470 case OPT_auxbase:
24471 case OPT_auxbase_strip:
24472 case OPT_quiet:
24473 case OPT_version:
24474 case OPT_v:
24475 case OPT_w:
24476 case OPT_L:
24477 case OPT_D:
24478 case OPT_I:
24479 case OPT_U:
24480 case OPT_SPECIAL_unknown:
24481 case OPT_SPECIAL_ignore:
24482 case OPT_SPECIAL_warn_removed:
24483 case OPT_SPECIAL_program_name:
24484 case OPT_SPECIAL_input_file:
24485 case OPT_grecord_gcc_switches:
24486 case OPT__output_pch_:
24487 case OPT_fdiagnostics_show_location_:
24488 case OPT_fdiagnostics_show_option:
24489 case OPT_fdiagnostics_show_caret:
24490 case OPT_fdiagnostics_show_labels:
24491 case OPT_fdiagnostics_show_line_numbers:
24492 case OPT_fdiagnostics_color_:
24493 case OPT_fdiagnostics_format_:
24494 case OPT_fverbose_asm:
24495 case OPT____:
24496 case OPT__sysroot_:
24497 case OPT_nostdinc:
24498 case OPT_nostdinc__:
24499 case OPT_fpreprocessed:
24500 case OPT_fltrans_output_list_:
24501 case OPT_fresolution_:
24502 case OPT_fdebug_prefix_map_:
24503 case OPT_fmacro_prefix_map_:
24504 case OPT_ffile_prefix_map_:
24505 case OPT_fcompare_debug:
24506 case OPT_fchecking:
24507 case OPT_fchecking_:
24508 /* Ignore these. */
24509 continue;
24510 case OPT_flto_:
24512 const char *lto_canonical = "-flto";
24513 switches.safe_push (lto_canonical);
24514 len += strlen (lto_canonical) + 1;
24515 break;
24517 default:
24518 if (cl_options[save_decoded_options[j].opt_index].flags
24519 & CL_NO_DWARF_RECORD)
24520 continue;
24521 gcc_checking_assert (save_decoded_options[j].canonical_option[0][0]
24522 == '-');
24523 switch (save_decoded_options[j].canonical_option[0][1])
24525 case 'M':
24526 case 'i':
24527 case 'W':
24528 continue;
24529 case 'f':
24530 if (strncmp (save_decoded_options[j].canonical_option[0] + 2,
24531 "dump", 4) == 0)
24532 continue;
24533 break;
24534 default:
24535 break;
24537 switches.safe_push (save_decoded_options[j].orig_option_with_args_text);
24538 len += strlen (save_decoded_options[j].orig_option_with_args_text) + 1;
24539 break;
24542 producer = XNEWVEC (char, plen + 1 + len + 1);
24543 tail = producer;
24544 sprintf (tail, "%s %s", language_string, version_string);
24545 tail += plen;
24547 FOR_EACH_VEC_ELT (switches, j, p)
24549 len = strlen (p);
24550 *tail = ' ';
24551 memcpy (tail + 1, p, len);
24552 tail += len + 1;
24555 *tail = '\0';
24556 return producer;
24559 /* Given a C and/or C++ language/version string return the "highest".
24560 C++ is assumed to be "higher" than C in this case. Used for merging
24561 LTO translation unit languages. */
24562 static const char *
24563 highest_c_language (const char *lang1, const char *lang2)
24565 if (strcmp ("GNU C++17", lang1) == 0 || strcmp ("GNU C++17", lang2) == 0)
24566 return "GNU C++17";
24567 if (strcmp ("GNU C++14", lang1) == 0 || strcmp ("GNU C++14", lang2) == 0)
24568 return "GNU C++14";
24569 if (strcmp ("GNU C++11", lang1) == 0 || strcmp ("GNU C++11", lang2) == 0)
24570 return "GNU C++11";
24571 if (strcmp ("GNU C++98", lang1) == 0 || strcmp ("GNU C++98", lang2) == 0)
24572 return "GNU C++98";
24574 if (strcmp ("GNU C2X", lang1) == 0 || strcmp ("GNU C2X", lang2) == 0)
24575 return "GNU C2X";
24576 if (strcmp ("GNU C17", lang1) == 0 || strcmp ("GNU C17", lang2) == 0)
24577 return "GNU C17";
24578 if (strcmp ("GNU C11", lang1) == 0 || strcmp ("GNU C11", lang2) == 0)
24579 return "GNU C11";
24580 if (strcmp ("GNU C99", lang1) == 0 || strcmp ("GNU C99", lang2) == 0)
24581 return "GNU C99";
24582 if (strcmp ("GNU C89", lang1) == 0 || strcmp ("GNU C89", lang2) == 0)
24583 return "GNU C89";
24585 gcc_unreachable ();
24589 /* Generate the DIE for the compilation unit. */
24591 static dw_die_ref
24592 gen_compile_unit_die (const char *filename)
24594 dw_die_ref die;
24595 const char *language_string = lang_hooks.name;
24596 int language;
24598 die = new_die (DW_TAG_compile_unit, NULL, NULL);
24600 if (filename)
24602 add_name_attribute (die, filename);
24603 /* Don't add cwd for <built-in>. */
24604 if (filename[0] != '<')
24605 add_comp_dir_attribute (die);
24608 add_AT_string (die, DW_AT_producer, producer_string ? producer_string : "");
24610 /* If our producer is LTO try to figure out a common language to use
24611 from the global list of translation units. */
24612 if (strcmp (language_string, "GNU GIMPLE") == 0)
24614 unsigned i;
24615 tree t;
24616 const char *common_lang = NULL;
24618 FOR_EACH_VEC_SAFE_ELT (all_translation_units, i, t)
24620 if (!TRANSLATION_UNIT_LANGUAGE (t))
24621 continue;
24622 if (!common_lang)
24623 common_lang = TRANSLATION_UNIT_LANGUAGE (t);
24624 else if (strcmp (common_lang, TRANSLATION_UNIT_LANGUAGE (t)) == 0)
24626 else if (strncmp (common_lang, "GNU C", 5) == 0
24627 && strncmp (TRANSLATION_UNIT_LANGUAGE (t), "GNU C", 5) == 0)
24628 /* Mixing C and C++ is ok, use C++ in that case. */
24629 common_lang = highest_c_language (common_lang,
24630 TRANSLATION_UNIT_LANGUAGE (t));
24631 else
24633 /* Fall back to C. */
24634 common_lang = NULL;
24635 break;
24639 if (common_lang)
24640 language_string = common_lang;
24643 language = DW_LANG_C;
24644 if (strncmp (language_string, "GNU C", 5) == 0
24645 && ISDIGIT (language_string[5]))
24647 language = DW_LANG_C89;
24648 if (dwarf_version >= 3 || !dwarf_strict)
24650 if (strcmp (language_string, "GNU C89") != 0)
24651 language = DW_LANG_C99;
24653 if (dwarf_version >= 5 /* || !dwarf_strict */)
24654 if (strcmp (language_string, "GNU C11") == 0
24655 || strcmp (language_string, "GNU C17") == 0
24656 || strcmp (language_string, "GNU C2X"))
24657 language = DW_LANG_C11;
24660 else if (strncmp (language_string, "GNU C++", 7) == 0)
24662 language = DW_LANG_C_plus_plus;
24663 if (dwarf_version >= 5 /* || !dwarf_strict */)
24665 if (strcmp (language_string, "GNU C++11") == 0)
24666 language = DW_LANG_C_plus_plus_11;
24667 else if (strcmp (language_string, "GNU C++14") == 0)
24668 language = DW_LANG_C_plus_plus_14;
24669 else if (strcmp (language_string, "GNU C++17") == 0)
24670 /* For now. */
24671 language = DW_LANG_C_plus_plus_14;
24674 else if (strcmp (language_string, "GNU F77") == 0)
24675 language = DW_LANG_Fortran77;
24676 else if (dwarf_version >= 3 || !dwarf_strict)
24678 if (strcmp (language_string, "GNU Ada") == 0)
24679 language = DW_LANG_Ada95;
24680 else if (strncmp (language_string, "GNU Fortran", 11) == 0)
24682 language = DW_LANG_Fortran95;
24683 if (dwarf_version >= 5 /* || !dwarf_strict */)
24685 if (strcmp (language_string, "GNU Fortran2003") == 0)
24686 language = DW_LANG_Fortran03;
24687 else if (strcmp (language_string, "GNU Fortran2008") == 0)
24688 language = DW_LANG_Fortran08;
24691 else if (strcmp (language_string, "GNU Objective-C") == 0)
24692 language = DW_LANG_ObjC;
24693 else if (strcmp (language_string, "GNU Objective-C++") == 0)
24694 language = DW_LANG_ObjC_plus_plus;
24695 else if (strcmp (language_string, "GNU D") == 0)
24696 language = DW_LANG_D;
24697 else if (dwarf_version >= 5 || !dwarf_strict)
24699 if (strcmp (language_string, "GNU Go") == 0)
24700 language = DW_LANG_Go;
24703 /* Use a degraded Fortran setting in strict DWARF2 so is_fortran works. */
24704 else if (strncmp (language_string, "GNU Fortran", 11) == 0)
24705 language = DW_LANG_Fortran90;
24706 /* Likewise for Ada. */
24707 else if (strcmp (language_string, "GNU Ada") == 0)
24708 language = DW_LANG_Ada83;
24710 add_AT_unsigned (die, DW_AT_language, language);
24712 switch (language)
24714 case DW_LANG_Fortran77:
24715 case DW_LANG_Fortran90:
24716 case DW_LANG_Fortran95:
24717 case DW_LANG_Fortran03:
24718 case DW_LANG_Fortran08:
24719 /* Fortran has case insensitive identifiers and the front-end
24720 lowercases everything. */
24721 add_AT_unsigned (die, DW_AT_identifier_case, DW_ID_down_case);
24722 break;
24723 default:
24724 /* The default DW_ID_case_sensitive doesn't need to be specified. */
24725 break;
24727 return die;
24730 /* Generate the DIE for a base class. */
24732 static void
24733 gen_inheritance_die (tree binfo, tree access, tree type,
24734 dw_die_ref context_die)
24736 dw_die_ref die = new_die (DW_TAG_inheritance, context_die, binfo);
24737 struct vlr_context ctx = { type, NULL };
24739 add_type_attribute (die, BINFO_TYPE (binfo), TYPE_UNQUALIFIED, false,
24740 context_die);
24741 add_data_member_location_attribute (die, binfo, &ctx);
24743 if (BINFO_VIRTUAL_P (binfo))
24744 add_AT_unsigned (die, DW_AT_virtuality, DW_VIRTUALITY_virtual);
24746 /* In DWARF3+ the default is DW_ACCESS_private only in DW_TAG_class_type
24747 children, otherwise the default is DW_ACCESS_public. In DWARF2
24748 the default has always been DW_ACCESS_private. */
24749 if (access == access_public_node)
24751 if (dwarf_version == 2
24752 || context_die->die_tag == DW_TAG_class_type)
24753 add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_public);
24755 else if (access == access_protected_node)
24756 add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_protected);
24757 else if (dwarf_version > 2
24758 && context_die->die_tag != DW_TAG_class_type)
24759 add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_private);
24762 /* Return whether DECL is a FIELD_DECL that represents the variant part of a
24763 structure. */
24765 static bool
24766 is_variant_part (tree decl)
24768 return (TREE_CODE (decl) == FIELD_DECL
24769 && TREE_CODE (TREE_TYPE (decl)) == QUAL_UNION_TYPE);
24772 /* Check that OPERAND is a reference to a field in STRUCT_TYPE. If it is,
24773 return the FIELD_DECL. Return NULL_TREE otherwise. */
24775 static tree
24776 analyze_discr_in_predicate (tree operand, tree struct_type)
24778 while (CONVERT_EXPR_P (operand))
24779 operand = TREE_OPERAND (operand, 0);
24781 /* Match field access to members of struct_type only. */
24782 if (TREE_CODE (operand) == COMPONENT_REF
24783 && TREE_CODE (TREE_OPERAND (operand, 0)) == PLACEHOLDER_EXPR
24784 && TREE_TYPE (TREE_OPERAND (operand, 0)) == struct_type
24785 && TREE_CODE (TREE_OPERAND (operand, 1)) == FIELD_DECL)
24786 return TREE_OPERAND (operand, 1);
24787 else
24788 return NULL_TREE;
24791 /* Check that SRC is a constant integer that can be represented as a native
24792 integer constant (either signed or unsigned). If so, store it into DEST and
24793 return true. Return false otherwise. */
24795 static bool
24796 get_discr_value (tree src, dw_discr_value *dest)
24798 tree discr_type = TREE_TYPE (src);
24800 if (lang_hooks.types.get_debug_type)
24802 tree debug_type = lang_hooks.types.get_debug_type (discr_type);
24803 if (debug_type != NULL)
24804 discr_type = debug_type;
24807 if (TREE_CODE (src) != INTEGER_CST || !INTEGRAL_TYPE_P (discr_type))
24808 return false;
24810 /* Signedness can vary between the original type and the debug type. This
24811 can happen for character types in Ada for instance: the character type
24812 used for code generation can be signed, to be compatible with the C one,
24813 but from a debugger point of view, it must be unsigned. */
24814 bool is_orig_unsigned = TYPE_UNSIGNED (TREE_TYPE (src));
24815 bool is_debug_unsigned = TYPE_UNSIGNED (discr_type);
24817 if (is_orig_unsigned != is_debug_unsigned)
24818 src = fold_convert (discr_type, src);
24820 if (!(is_debug_unsigned ? tree_fits_uhwi_p (src) : tree_fits_shwi_p (src)))
24821 return false;
24823 dest->pos = is_debug_unsigned;
24824 if (is_debug_unsigned)
24825 dest->v.uval = tree_to_uhwi (src);
24826 else
24827 dest->v.sval = tree_to_shwi (src);
24829 return true;
24832 /* Try to extract synthetic properties out of VARIANT_PART_DECL, which is a
24833 FIELD_DECL in STRUCT_TYPE that represents a variant part. If unsuccessful,
24834 store NULL_TREE in DISCR_DECL. Otherwise:
24836 - store the discriminant field in STRUCT_TYPE that controls the variant
24837 part to *DISCR_DECL
24839 - put in *DISCR_LISTS_P an array where for each variant, the item
24840 represents the corresponding matching list of discriminant values.
24842 - put in *DISCR_LISTS_LENGTH the number of variants, which is the size of
24843 the above array.
24845 Note that when the array is allocated (i.e. when the analysis is
24846 successful), it is up to the caller to free the array. */
24848 static void
24849 analyze_variants_discr (tree variant_part_decl,
24850 tree struct_type,
24851 tree *discr_decl,
24852 dw_discr_list_ref **discr_lists_p,
24853 unsigned *discr_lists_length)
24855 tree variant_part_type = TREE_TYPE (variant_part_decl);
24856 tree variant;
24857 dw_discr_list_ref *discr_lists;
24858 unsigned i;
24860 /* Compute how many variants there are in this variant part. */
24861 *discr_lists_length = 0;
24862 for (variant = TYPE_FIELDS (variant_part_type);
24863 variant != NULL_TREE;
24864 variant = DECL_CHAIN (variant))
24865 ++*discr_lists_length;
24867 *discr_decl = NULL_TREE;
24868 *discr_lists_p
24869 = (dw_discr_list_ref *) xcalloc (*discr_lists_length,
24870 sizeof (**discr_lists_p));
24871 discr_lists = *discr_lists_p;
24873 /* And then analyze all variants to extract discriminant information for all
24874 of them. This analysis is conservative: as soon as we detect something we
24875 do not support, abort everything and pretend we found nothing. */
24876 for (variant = TYPE_FIELDS (variant_part_type), i = 0;
24877 variant != NULL_TREE;
24878 variant = DECL_CHAIN (variant), ++i)
24880 tree match_expr = DECL_QUALIFIER (variant);
24882 /* Now, try to analyze the predicate and deduce a discriminant for
24883 it. */
24884 if (match_expr == boolean_true_node)
24885 /* Typically happens for the default variant: it matches all cases that
24886 previous variants rejected. Don't output any matching value for
24887 this one. */
24888 continue;
24890 /* The following loop tries to iterate over each discriminant
24891 possibility: single values or ranges. */
24892 while (match_expr != NULL_TREE)
24894 tree next_round_match_expr;
24895 tree candidate_discr = NULL_TREE;
24896 dw_discr_list_ref new_node = NULL;
24898 /* Possibilities are matched one after the other by nested
24899 TRUTH_ORIF_EXPR expressions. Process the current possibility and
24900 continue with the rest at next iteration. */
24901 if (TREE_CODE (match_expr) == TRUTH_ORIF_EXPR)
24903 next_round_match_expr = TREE_OPERAND (match_expr, 0);
24904 match_expr = TREE_OPERAND (match_expr, 1);
24906 else
24907 next_round_match_expr = NULL_TREE;
24909 if (match_expr == boolean_false_node)
24910 /* This sub-expression matches nothing: just wait for the next
24911 one. */
24914 else if (TREE_CODE (match_expr) == EQ_EXPR)
24916 /* We are matching: <discr_field> == <integer_cst>
24917 This sub-expression matches a single value. */
24918 tree integer_cst = TREE_OPERAND (match_expr, 1);
24920 candidate_discr
24921 = analyze_discr_in_predicate (TREE_OPERAND (match_expr, 0),
24922 struct_type);
24924 new_node = ggc_cleared_alloc<dw_discr_list_node> ();
24925 if (!get_discr_value (integer_cst,
24926 &new_node->dw_discr_lower_bound))
24927 goto abort;
24928 new_node->dw_discr_range = false;
24931 else if (TREE_CODE (match_expr) == TRUTH_ANDIF_EXPR)
24933 /* We are matching:
24934 <discr_field> > <integer_cst>
24935 && <discr_field> < <integer_cst>.
24936 This sub-expression matches the range of values between the
24937 two matched integer constants. Note that comparisons can be
24938 inclusive or exclusive. */
24939 tree candidate_discr_1, candidate_discr_2;
24940 tree lower_cst, upper_cst;
24941 bool lower_cst_included, upper_cst_included;
24942 tree lower_op = TREE_OPERAND (match_expr, 0);
24943 tree upper_op = TREE_OPERAND (match_expr, 1);
24945 /* When the comparison is exclusive, the integer constant is not
24946 the discriminant range bound we are looking for: we will have
24947 to increment or decrement it. */
24948 if (TREE_CODE (lower_op) == GE_EXPR)
24949 lower_cst_included = true;
24950 else if (TREE_CODE (lower_op) == GT_EXPR)
24951 lower_cst_included = false;
24952 else
24953 goto abort;
24955 if (TREE_CODE (upper_op) == LE_EXPR)
24956 upper_cst_included = true;
24957 else if (TREE_CODE (upper_op) == LT_EXPR)
24958 upper_cst_included = false;
24959 else
24960 goto abort;
24962 /* Extract the discriminant from the first operand and check it
24963 is consistant with the same analysis in the second
24964 operand. */
24965 candidate_discr_1
24966 = analyze_discr_in_predicate (TREE_OPERAND (lower_op, 0),
24967 struct_type);
24968 candidate_discr_2
24969 = analyze_discr_in_predicate (TREE_OPERAND (upper_op, 0),
24970 struct_type);
24971 if (candidate_discr_1 == candidate_discr_2)
24972 candidate_discr = candidate_discr_1;
24973 else
24974 goto abort;
24976 /* Extract bounds from both. */
24977 new_node = ggc_cleared_alloc<dw_discr_list_node> ();
24978 lower_cst = TREE_OPERAND (lower_op, 1);
24979 upper_cst = TREE_OPERAND (upper_op, 1);
24981 if (!lower_cst_included)
24982 lower_cst
24983 = fold_build2 (PLUS_EXPR, TREE_TYPE (lower_cst), lower_cst,
24984 build_int_cst (TREE_TYPE (lower_cst), 1));
24985 if (!upper_cst_included)
24986 upper_cst
24987 = fold_build2 (MINUS_EXPR, TREE_TYPE (upper_cst), upper_cst,
24988 build_int_cst (TREE_TYPE (upper_cst), 1));
24990 if (!get_discr_value (lower_cst,
24991 &new_node->dw_discr_lower_bound)
24992 || !get_discr_value (upper_cst,
24993 &new_node->dw_discr_upper_bound))
24994 goto abort;
24996 new_node->dw_discr_range = true;
24999 else if ((candidate_discr
25000 = analyze_discr_in_predicate (match_expr, struct_type))
25001 && TREE_TYPE (candidate_discr) == boolean_type_node)
25003 /* We are matching: <discr_field> for a boolean discriminant.
25004 This sub-expression matches boolean_true_node. */
25005 new_node = ggc_cleared_alloc<dw_discr_list_node> ();
25006 if (!get_discr_value (boolean_true_node,
25007 &new_node->dw_discr_lower_bound))
25008 goto abort;
25009 new_node->dw_discr_range = false;
25012 else
25013 /* Unsupported sub-expression: we cannot determine the set of
25014 matching discriminant values. Abort everything. */
25015 goto abort;
25017 /* If the discriminant info is not consistant with what we saw so
25018 far, consider the analysis failed and abort everything. */
25019 if (candidate_discr == NULL_TREE
25020 || (*discr_decl != NULL_TREE && candidate_discr != *discr_decl))
25021 goto abort;
25022 else
25023 *discr_decl = candidate_discr;
25025 if (new_node != NULL)
25027 new_node->dw_discr_next = discr_lists[i];
25028 discr_lists[i] = new_node;
25030 match_expr = next_round_match_expr;
25034 /* If we reach this point, we could match everything we were interested
25035 in. */
25036 return;
25038 abort:
25039 /* Clean all data structure and return no result. */
25040 free (*discr_lists_p);
25041 *discr_lists_p = NULL;
25042 *discr_decl = NULL_TREE;
25045 /* Generate a DIE to represent VARIANT_PART_DECL, a variant part that is part
25046 of STRUCT_TYPE, a record type. This new DIE is emitted as the next child
25047 under CONTEXT_DIE.
25049 Variant parts are supposed to be implemented as a FIELD_DECL whose type is a
25050 QUAL_UNION_TYPE: this is the VARIANT_PART_DECL parameter. The members for
25051 this type, which are record types, represent the available variants and each
25052 has a DECL_QUALIFIER attribute. The discriminant and the discriminant
25053 values are inferred from these attributes.
25055 In trees, the offsets for the fields inside these sub-records are relative
25056 to the variant part itself, whereas the corresponding DIEs should have
25057 offset attributes that are relative to the embedding record base address.
25058 This is why the caller must provide a VARIANT_PART_OFFSET expression: it
25059 must be an expression that computes the offset of the variant part to
25060 describe in DWARF. */
25062 static void
25063 gen_variant_part (tree variant_part_decl, struct vlr_context *vlr_ctx,
25064 dw_die_ref context_die)
25066 const tree variant_part_type = TREE_TYPE (variant_part_decl);
25067 tree variant_part_offset = vlr_ctx->variant_part_offset;
25068 struct loc_descr_context ctx = {
25069 vlr_ctx->struct_type, /* context_type */
25070 NULL_TREE, /* base_decl */
25071 NULL, /* dpi */
25072 false, /* placeholder_arg */
25073 false /* placeholder_seen */
25076 /* The FIELD_DECL node in STRUCT_TYPE that acts as the discriminant, or
25077 NULL_TREE if there is no such field. */
25078 tree discr_decl = NULL_TREE;
25079 dw_discr_list_ref *discr_lists;
25080 unsigned discr_lists_length = 0;
25081 unsigned i;
25083 dw_die_ref dwarf_proc_die = NULL;
25084 dw_die_ref variant_part_die
25085 = new_die (DW_TAG_variant_part, context_die, variant_part_type);
25087 equate_decl_number_to_die (variant_part_decl, variant_part_die);
25089 analyze_variants_discr (variant_part_decl, vlr_ctx->struct_type,
25090 &discr_decl, &discr_lists, &discr_lists_length);
25092 if (discr_decl != NULL_TREE)
25094 dw_die_ref discr_die = lookup_decl_die (discr_decl);
25096 if (discr_die)
25097 add_AT_die_ref (variant_part_die, DW_AT_discr, discr_die);
25098 else
25099 /* We have no DIE for the discriminant, so just discard all
25100 discrimimant information in the output. */
25101 discr_decl = NULL_TREE;
25104 /* If the offset for this variant part is more complex than a constant,
25105 create a DWARF procedure for it so that we will not have to generate DWARF
25106 expressions for it for each member. */
25107 if (TREE_CODE (variant_part_offset) != INTEGER_CST
25108 && (dwarf_version >= 3 || !dwarf_strict))
25110 const tree dwarf_proc_fndecl
25111 = build_decl (UNKNOWN_LOCATION, FUNCTION_DECL, NULL_TREE,
25112 build_function_type (TREE_TYPE (variant_part_offset),
25113 NULL_TREE));
25114 const tree dwarf_proc_call = build_call_expr (dwarf_proc_fndecl, 0);
25115 const dw_loc_descr_ref dwarf_proc_body
25116 = loc_descriptor_from_tree (variant_part_offset, 0, &ctx);
25118 dwarf_proc_die = new_dwarf_proc_die (dwarf_proc_body,
25119 dwarf_proc_fndecl, context_die);
25120 if (dwarf_proc_die != NULL)
25121 variant_part_offset = dwarf_proc_call;
25124 /* Output DIEs for all variants. */
25125 i = 0;
25126 for (tree variant = TYPE_FIELDS (variant_part_type);
25127 variant != NULL_TREE;
25128 variant = DECL_CHAIN (variant), ++i)
25130 tree variant_type = TREE_TYPE (variant);
25131 dw_die_ref variant_die;
25133 /* All variants (i.e. members of a variant part) are supposed to be
25134 encoded as structures. Sub-variant parts are QUAL_UNION_TYPE fields
25135 under these records. */
25136 gcc_assert (TREE_CODE (variant_type) == RECORD_TYPE);
25138 variant_die = new_die (DW_TAG_variant, variant_part_die, variant_type);
25139 equate_decl_number_to_die (variant, variant_die);
25141 /* Output discriminant values this variant matches, if any. */
25142 if (discr_decl == NULL || discr_lists[i] == NULL)
25143 /* In the case we have discriminant information at all, this is
25144 probably the default variant: as the standard says, don't
25145 output any discriminant value/list attribute. */
25147 else if (discr_lists[i]->dw_discr_next == NULL
25148 && !discr_lists[i]->dw_discr_range)
25149 /* If there is only one accepted value, don't bother outputting a
25150 list. */
25151 add_discr_value (variant_die, &discr_lists[i]->dw_discr_lower_bound);
25152 else
25153 add_discr_list (variant_die, discr_lists[i]);
25155 for (tree member = TYPE_FIELDS (variant_type);
25156 member != NULL_TREE;
25157 member = DECL_CHAIN (member))
25159 struct vlr_context vlr_sub_ctx = {
25160 vlr_ctx->struct_type, /* struct_type */
25161 NULL /* variant_part_offset */
25163 if (is_variant_part (member))
25165 /* All offsets for fields inside variant parts are relative to
25166 the top-level embedding RECORD_TYPE's base address. On the
25167 other hand, offsets in GCC's types are relative to the
25168 nested-most variant part. So we have to sum offsets each time
25169 we recurse. */
25171 vlr_sub_ctx.variant_part_offset
25172 = fold_build2 (PLUS_EXPR, TREE_TYPE (variant_part_offset),
25173 variant_part_offset, byte_position (member));
25174 gen_variant_part (member, &vlr_sub_ctx, variant_die);
25176 else
25178 vlr_sub_ctx.variant_part_offset = variant_part_offset;
25179 gen_decl_die (member, NULL, &vlr_sub_ctx, variant_die);
25184 free (discr_lists);
25187 /* Generate a DIE for a class member. */
25189 static void
25190 gen_member_die (tree type, dw_die_ref context_die)
25192 tree member;
25193 tree binfo = TYPE_BINFO (type);
25195 gcc_assert (TYPE_MAIN_VARIANT (type) == type);
25197 /* If this is not an incomplete type, output descriptions of each of its
25198 members. Note that as we output the DIEs necessary to represent the
25199 members of this record or union type, we will also be trying to output
25200 DIEs to represent the *types* of those members. However the `type'
25201 function (above) will specifically avoid generating type DIEs for member
25202 types *within* the list of member DIEs for this (containing) type except
25203 for those types (of members) which are explicitly marked as also being
25204 members of this (containing) type themselves. The g++ front- end can
25205 force any given type to be treated as a member of some other (containing)
25206 type by setting the TYPE_CONTEXT of the given (member) type to point to
25207 the TREE node representing the appropriate (containing) type. */
25209 /* First output info about the base classes. */
25210 if (binfo && early_dwarf)
25212 vec<tree, va_gc> *accesses = BINFO_BASE_ACCESSES (binfo);
25213 int i;
25214 tree base;
25216 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base); i++)
25217 gen_inheritance_die (base,
25218 (accesses ? (*accesses)[i] : access_public_node),
25219 type,
25220 context_die);
25223 /* Now output info about the members. */
25224 for (member = TYPE_FIELDS (type); member; member = DECL_CHAIN (member))
25226 /* Ignore clones. */
25227 if (DECL_ABSTRACT_ORIGIN (member))
25228 continue;
25230 struct vlr_context vlr_ctx = { type, NULL_TREE };
25231 bool static_inline_p
25232 = (VAR_P (member)
25233 && TREE_STATIC (member)
25234 && (lang_hooks.decls.decl_dwarf_attribute (member, DW_AT_inline)
25235 != -1));
25237 /* If we thought we were generating minimal debug info for TYPE
25238 and then changed our minds, some of the member declarations
25239 may have already been defined. Don't define them again, but
25240 do put them in the right order. */
25242 if (dw_die_ref child = lookup_decl_die (member))
25244 /* Handle inline static data members, which only have in-class
25245 declarations. */
25246 bool splice = true;
25248 dw_die_ref ref = NULL;
25249 if (child->die_tag == DW_TAG_variable
25250 && child->die_parent == comp_unit_die ())
25252 ref = get_AT_ref (child, DW_AT_specification);
25254 /* For C++17 inline static data members followed by redundant
25255 out of class redeclaration, we might get here with
25256 child being the DIE created for the out of class
25257 redeclaration and with its DW_AT_specification being
25258 the DIE created for in-class definition. We want to
25259 reparent the latter, and don't want to create another
25260 DIE with DW_AT_specification in that case, because
25261 we already have one. */
25262 if (ref
25263 && static_inline_p
25264 && ref->die_tag == DW_TAG_variable
25265 && ref->die_parent == comp_unit_die ()
25266 && get_AT (ref, DW_AT_specification) == NULL)
25268 child = ref;
25269 ref = NULL;
25270 static_inline_p = false;
25273 if (!ref)
25275 reparent_child (child, context_die);
25276 if (dwarf_version < 5)
25277 child->die_tag = DW_TAG_member;
25278 splice = false;
25282 if (splice)
25283 splice_child_die (context_die, child);
25286 /* Do not generate standard DWARF for variant parts if we are generating
25287 the corresponding GNAT encodings: DIEs generated for both would
25288 conflict in our mappings. */
25289 else if (is_variant_part (member)
25290 && gnat_encodings == DWARF_GNAT_ENCODINGS_MINIMAL)
25292 vlr_ctx.variant_part_offset = byte_position (member);
25293 gen_variant_part (member, &vlr_ctx, context_die);
25295 else
25297 vlr_ctx.variant_part_offset = NULL_TREE;
25298 gen_decl_die (member, NULL, &vlr_ctx, context_die);
25301 /* For C++ inline static data members emit immediately a DW_TAG_variable
25302 DIE that will refer to that DW_TAG_member/DW_TAG_variable through
25303 DW_AT_specification. */
25304 if (static_inline_p)
25306 int old_extern = DECL_EXTERNAL (member);
25307 DECL_EXTERNAL (member) = 0;
25308 gen_decl_die (member, NULL, NULL, comp_unit_die ());
25309 DECL_EXTERNAL (member) = old_extern;
25314 /* Generate a DIE for a structure or union type. If TYPE_DECL_SUPPRESS_DEBUG
25315 is set, we pretend that the type was never defined, so we only get the
25316 member DIEs needed by later specification DIEs. */
25318 static void
25319 gen_struct_or_union_type_die (tree type, dw_die_ref context_die,
25320 enum debug_info_usage usage)
25322 if (TREE_ASM_WRITTEN (type))
25324 /* Fill in the bound of variable-length fields in late dwarf if
25325 still incomplete. */
25326 if (!early_dwarf && variably_modified_type_p (type, NULL))
25327 for (tree member = TYPE_FIELDS (type);
25328 member;
25329 member = DECL_CHAIN (member))
25330 fill_variable_array_bounds (TREE_TYPE (member));
25331 return;
25334 dw_die_ref type_die = lookup_type_die (type);
25335 dw_die_ref scope_die = 0;
25336 int nested = 0;
25337 int complete = (TYPE_SIZE (type)
25338 && (! TYPE_STUB_DECL (type)
25339 || ! TYPE_DECL_SUPPRESS_DEBUG (TYPE_STUB_DECL (type))));
25340 int ns_decl = (context_die && context_die->die_tag == DW_TAG_namespace);
25341 complete = complete && should_emit_struct_debug (type, usage);
25343 if (type_die && ! complete)
25344 return;
25346 if (TYPE_CONTEXT (type) != NULL_TREE
25347 && (AGGREGATE_TYPE_P (TYPE_CONTEXT (type))
25348 || TREE_CODE (TYPE_CONTEXT (type)) == NAMESPACE_DECL))
25349 nested = 1;
25351 scope_die = scope_die_for (type, context_die);
25353 /* Generate child dies for template paramaters. */
25354 if (!type_die && debug_info_level > DINFO_LEVEL_TERSE)
25355 schedule_generic_params_dies_gen (type);
25357 if (! type_die || (nested && is_cu_die (scope_die)))
25358 /* First occurrence of type or toplevel definition of nested class. */
25360 dw_die_ref old_die = type_die;
25362 type_die = new_die (TREE_CODE (type) == RECORD_TYPE
25363 ? record_type_tag (type) : DW_TAG_union_type,
25364 scope_die, type);
25365 equate_type_number_to_die (type, type_die);
25366 if (old_die)
25367 add_AT_specification (type_die, old_die);
25368 else
25369 add_name_attribute (type_die, type_tag (type));
25371 else
25372 remove_AT (type_die, DW_AT_declaration);
25374 /* If this type has been completed, then give it a byte_size attribute and
25375 then give a list of members. */
25376 if (complete && !ns_decl)
25378 /* Prevent infinite recursion in cases where the type of some member of
25379 this type is expressed in terms of this type itself. */
25380 TREE_ASM_WRITTEN (type) = 1;
25381 add_byte_size_attribute (type_die, type);
25382 add_alignment_attribute (type_die, type);
25383 if (TYPE_STUB_DECL (type) != NULL_TREE)
25385 add_src_coords_attributes (type_die, TYPE_STUB_DECL (type));
25386 add_accessibility_attribute (type_die, TYPE_STUB_DECL (type));
25389 /* If the first reference to this type was as the return type of an
25390 inline function, then it may not have a parent. Fix this now. */
25391 if (type_die->die_parent == NULL)
25392 add_child_die (scope_die, type_die);
25394 gen_member_die (type, type_die);
25396 add_gnat_descriptive_type_attribute (type_die, type, context_die);
25397 if (TYPE_ARTIFICIAL (type))
25398 add_AT_flag (type_die, DW_AT_artificial, 1);
25400 /* GNU extension: Record what type our vtable lives in. */
25401 if (TYPE_VFIELD (type))
25403 tree vtype = DECL_FCONTEXT (TYPE_VFIELD (type));
25405 gen_type_die (vtype, context_die);
25406 add_AT_die_ref (type_die, DW_AT_containing_type,
25407 lookup_type_die (vtype));
25410 else
25412 add_AT_flag (type_die, DW_AT_declaration, 1);
25414 /* We don't need to do this for function-local types. */
25415 if (TYPE_STUB_DECL (type)
25416 && ! decl_function_context (TYPE_STUB_DECL (type)))
25417 vec_safe_push (incomplete_types, type);
25420 if (get_AT (type_die, DW_AT_name))
25421 add_pubtype (type, type_die);
25424 /* Generate a DIE for a subroutine _type_. */
25426 static void
25427 gen_subroutine_type_die (tree type, dw_die_ref context_die)
25429 tree return_type = TREE_TYPE (type);
25430 dw_die_ref subr_die
25431 = new_die (DW_TAG_subroutine_type,
25432 scope_die_for (type, context_die), type);
25434 equate_type_number_to_die (type, subr_die);
25435 add_prototyped_attribute (subr_die, type);
25436 add_type_attribute (subr_die, return_type, TYPE_UNQUALIFIED, false,
25437 context_die);
25438 add_alignment_attribute (subr_die, type);
25439 gen_formal_types_die (type, subr_die);
25441 if (get_AT (subr_die, DW_AT_name))
25442 add_pubtype (type, subr_die);
25443 if ((dwarf_version >= 5 || !dwarf_strict)
25444 && lang_hooks.types.type_dwarf_attribute (type, DW_AT_reference) != -1)
25445 add_AT_flag (subr_die, DW_AT_reference, 1);
25446 if ((dwarf_version >= 5 || !dwarf_strict)
25447 && lang_hooks.types.type_dwarf_attribute (type,
25448 DW_AT_rvalue_reference) != -1)
25449 add_AT_flag (subr_die, DW_AT_rvalue_reference, 1);
25452 /* Generate a DIE for a type definition. */
25454 static void
25455 gen_typedef_die (tree decl, dw_die_ref context_die)
25457 dw_die_ref type_die;
25458 tree type;
25460 if (TREE_ASM_WRITTEN (decl))
25462 if (DECL_ORIGINAL_TYPE (decl))
25463 fill_variable_array_bounds (DECL_ORIGINAL_TYPE (decl));
25464 return;
25467 /* As we avoid creating DIEs for local typedefs (see decl_ultimate_origin
25468 checks in process_scope_var and modified_type_die), this should be called
25469 only for original types. */
25470 gcc_assert (decl_ultimate_origin (decl) == NULL
25471 || decl_ultimate_origin (decl) == decl);
25473 TREE_ASM_WRITTEN (decl) = 1;
25474 type_die = new_die (DW_TAG_typedef, context_die, decl);
25476 add_name_and_src_coords_attributes (type_die, decl);
25477 if (DECL_ORIGINAL_TYPE (decl))
25479 type = DECL_ORIGINAL_TYPE (decl);
25480 if (type == error_mark_node)
25481 return;
25483 gcc_assert (type != TREE_TYPE (decl));
25484 equate_type_number_to_die (TREE_TYPE (decl), type_die);
25486 else
25488 type = TREE_TYPE (decl);
25489 if (type == error_mark_node)
25490 return;
25492 if (is_naming_typedef_decl (TYPE_NAME (type)))
25494 /* Here, we are in the case of decl being a typedef naming
25495 an anonymous type, e.g:
25496 typedef struct {...} foo;
25497 In that case TREE_TYPE (decl) is not a typedef variant
25498 type and TYPE_NAME of the anonymous type is set to the
25499 TYPE_DECL of the typedef. This construct is emitted by
25500 the C++ FE.
25502 TYPE is the anonymous struct named by the typedef
25503 DECL. As we need the DW_AT_type attribute of the
25504 DW_TAG_typedef to point to the DIE of TYPE, let's
25505 generate that DIE right away. add_type_attribute
25506 called below will then pick (via lookup_type_die) that
25507 anonymous struct DIE. */
25508 if (!TREE_ASM_WRITTEN (type))
25509 gen_tagged_type_die (type, context_die, DINFO_USAGE_DIR_USE);
25511 /* This is a GNU Extension. We are adding a
25512 DW_AT_linkage_name attribute to the DIE of the
25513 anonymous struct TYPE. The value of that attribute
25514 is the name of the typedef decl naming the anonymous
25515 struct. This greatly eases the work of consumers of
25516 this debug info. */
25517 add_linkage_name_raw (lookup_type_die (type), decl);
25521 add_type_attribute (type_die, type, decl_quals (decl), false,
25522 context_die);
25524 if (is_naming_typedef_decl (decl))
25525 /* We want that all subsequent calls to lookup_type_die with
25526 TYPE in argument yield the DW_TAG_typedef we have just
25527 created. */
25528 equate_type_number_to_die (type, type_die);
25530 add_alignment_attribute (type_die, TREE_TYPE (decl));
25532 add_accessibility_attribute (type_die, decl);
25534 if (DECL_ABSTRACT_P (decl))
25535 equate_decl_number_to_die (decl, type_die);
25537 if (get_AT (type_die, DW_AT_name))
25538 add_pubtype (decl, type_die);
25541 /* Generate a DIE for a struct, class, enum or union type. */
25543 static void
25544 gen_tagged_type_die (tree type,
25545 dw_die_ref context_die,
25546 enum debug_info_usage usage)
25548 if (type == NULL_TREE
25549 || !is_tagged_type (type))
25550 return;
25552 if (TREE_ASM_WRITTEN (type))
25554 /* If this is a nested type whose containing class hasn't been written
25555 out yet, writing it out will cover this one, too. This does not apply
25556 to instantiations of member class templates; they need to be added to
25557 the containing class as they are generated. FIXME: This hurts the
25558 idea of combining type decls from multiple TUs, since we can't predict
25559 what set of template instantiations we'll get. */
25560 else if (TYPE_CONTEXT (type)
25561 && AGGREGATE_TYPE_P (TYPE_CONTEXT (type))
25562 && ! TREE_ASM_WRITTEN (TYPE_CONTEXT (type)))
25564 gen_type_die_with_usage (TYPE_CONTEXT (type), context_die, usage);
25566 if (TREE_ASM_WRITTEN (type))
25567 return;
25569 /* If that failed, attach ourselves to the stub. */
25570 context_die = lookup_type_die (TYPE_CONTEXT (type));
25572 else if (TYPE_CONTEXT (type) != NULL_TREE
25573 && (TREE_CODE (TYPE_CONTEXT (type)) == FUNCTION_DECL))
25575 /* If this type is local to a function that hasn't been written
25576 out yet, use a NULL context for now; it will be fixed up in
25577 decls_for_scope. */
25578 context_die = lookup_decl_die (TYPE_CONTEXT (type));
25579 /* A declaration DIE doesn't count; nested types need to go in the
25580 specification. */
25581 if (context_die && is_declaration_die (context_die))
25582 context_die = NULL;
25584 else
25585 context_die = declare_in_namespace (type, context_die);
25587 if (TREE_CODE (type) == ENUMERAL_TYPE)
25589 /* This might have been written out by the call to
25590 declare_in_namespace. */
25591 if (!TREE_ASM_WRITTEN (type))
25592 gen_enumeration_type_die (type, context_die);
25594 else
25595 gen_struct_or_union_type_die (type, context_die, usage);
25597 /* Don't set TREE_ASM_WRITTEN on an incomplete struct; we want to fix
25598 it up if it is ever completed. gen_*_type_die will set it for us
25599 when appropriate. */
25602 /* Generate a type description DIE. */
25604 static void
25605 gen_type_die_with_usage (tree type, dw_die_ref context_die,
25606 enum debug_info_usage usage)
25608 struct array_descr_info info;
25610 if (type == NULL_TREE || type == error_mark_node)
25611 return;
25613 if (flag_checking && type)
25614 verify_type (type);
25616 if (TYPE_NAME (type) != NULL_TREE
25617 && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
25618 && is_redundant_typedef (TYPE_NAME (type))
25619 && DECL_ORIGINAL_TYPE (TYPE_NAME (type)))
25620 /* The DECL of this type is a typedef we don't want to emit debug
25621 info for but we want debug info for its underlying typedef.
25622 This can happen for e.g, the injected-class-name of a C++
25623 type. */
25624 type = DECL_ORIGINAL_TYPE (TYPE_NAME (type));
25626 /* If TYPE is a typedef type variant, let's generate debug info
25627 for the parent typedef which TYPE is a type of. */
25628 if (typedef_variant_p (type))
25630 if (TREE_ASM_WRITTEN (type))
25631 return;
25633 tree name = TYPE_NAME (type);
25634 tree origin = decl_ultimate_origin (name);
25635 if (origin != NULL && origin != name)
25637 gen_decl_die (origin, NULL, NULL, context_die);
25638 return;
25641 /* Prevent broken recursion; we can't hand off to the same type. */
25642 gcc_assert (DECL_ORIGINAL_TYPE (name) != type);
25644 /* Give typedefs the right scope. */
25645 context_die = scope_die_for (type, context_die);
25647 TREE_ASM_WRITTEN (type) = 1;
25649 gen_decl_die (name, NULL, NULL, context_die);
25650 return;
25653 /* If type is an anonymous tagged type named by a typedef, let's
25654 generate debug info for the typedef. */
25655 if (is_naming_typedef_decl (TYPE_NAME (type)))
25657 /* Give typedefs the right scope. */
25658 context_die = scope_die_for (type, context_die);
25660 gen_decl_die (TYPE_NAME (type), NULL, NULL, context_die);
25661 return;
25664 if (lang_hooks.types.get_debug_type)
25666 tree debug_type = lang_hooks.types.get_debug_type (type);
25668 if (debug_type != NULL_TREE && debug_type != type)
25670 gen_type_die_with_usage (debug_type, context_die, usage);
25671 return;
25675 /* We are going to output a DIE to represent the unqualified version
25676 of this type (i.e. without any const or volatile qualifiers) so
25677 get the main variant (i.e. the unqualified version) of this type
25678 now. (Vectors and arrays are special because the debugging info is in the
25679 cloned type itself. Similarly function/method types can contain extra
25680 ref-qualification). */
25681 if (TREE_CODE (type) == FUNCTION_TYPE
25682 || TREE_CODE (type) == METHOD_TYPE)
25684 /* For function/method types, can't use type_main_variant here,
25685 because that can have different ref-qualifiers for C++,
25686 but try to canonicalize. */
25687 tree main = TYPE_MAIN_VARIANT (type);
25688 for (tree t = main; t; t = TYPE_NEXT_VARIANT (t))
25689 if (TYPE_QUALS_NO_ADDR_SPACE (t) == 0
25690 && check_base_type (t, main)
25691 && check_lang_type (t, type))
25693 type = t;
25694 break;
25697 else if (TREE_CODE (type) != VECTOR_TYPE
25698 && TREE_CODE (type) != ARRAY_TYPE)
25699 type = type_main_variant (type);
25701 /* If this is an array type with hidden descriptor, handle it first. */
25702 if (!TREE_ASM_WRITTEN (type)
25703 && lang_hooks.types.get_array_descr_info)
25705 memset (&info, 0, sizeof (info));
25706 if (lang_hooks.types.get_array_descr_info (type, &info))
25708 /* Fortran sometimes emits array types with no dimension. */
25709 gcc_assert (info.ndimensions >= 0
25710 && (info.ndimensions
25711 <= DWARF2OUT_ARRAY_DESCR_INFO_MAX_DIMEN));
25712 gen_descr_array_type_die (type, &info, context_die);
25713 TREE_ASM_WRITTEN (type) = 1;
25714 return;
25718 if (TREE_ASM_WRITTEN (type))
25720 /* Variable-length types may be incomplete even if
25721 TREE_ASM_WRITTEN. For such types, fall through to
25722 gen_array_type_die() and possibly fill in
25723 DW_AT_{upper,lower}_bound attributes. */
25724 if ((TREE_CODE (type) != ARRAY_TYPE
25725 && TREE_CODE (type) != RECORD_TYPE
25726 && TREE_CODE (type) != UNION_TYPE
25727 && TREE_CODE (type) != QUAL_UNION_TYPE)
25728 || !variably_modified_type_p (type, NULL))
25729 return;
25732 switch (TREE_CODE (type))
25734 case ERROR_MARK:
25735 break;
25737 case POINTER_TYPE:
25738 case REFERENCE_TYPE:
25739 /* We must set TREE_ASM_WRITTEN in case this is a recursive type. This
25740 ensures that the gen_type_die recursion will terminate even if the
25741 type is recursive. Recursive types are possible in Ada. */
25742 /* ??? We could perhaps do this for all types before the switch
25743 statement. */
25744 TREE_ASM_WRITTEN (type) = 1;
25746 /* For these types, all that is required is that we output a DIE (or a
25747 set of DIEs) to represent the "basis" type. */
25748 gen_type_die_with_usage (TREE_TYPE (type), context_die,
25749 DINFO_USAGE_IND_USE);
25750 break;
25752 case OFFSET_TYPE:
25753 /* This code is used for C++ pointer-to-data-member types.
25754 Output a description of the relevant class type. */
25755 gen_type_die_with_usage (TYPE_OFFSET_BASETYPE (type), context_die,
25756 DINFO_USAGE_IND_USE);
25758 /* Output a description of the type of the object pointed to. */
25759 gen_type_die_with_usage (TREE_TYPE (type), context_die,
25760 DINFO_USAGE_IND_USE);
25762 /* Now output a DIE to represent this pointer-to-data-member type
25763 itself. */
25764 gen_ptr_to_mbr_type_die (type, context_die);
25765 break;
25767 case FUNCTION_TYPE:
25768 /* Force out return type (in case it wasn't forced out already). */
25769 gen_type_die_with_usage (TREE_TYPE (type), context_die,
25770 DINFO_USAGE_DIR_USE);
25771 gen_subroutine_type_die (type, context_die);
25772 break;
25774 case METHOD_TYPE:
25775 /* Force out return type (in case it wasn't forced out already). */
25776 gen_type_die_with_usage (TREE_TYPE (type), context_die,
25777 DINFO_USAGE_DIR_USE);
25778 gen_subroutine_type_die (type, context_die);
25779 break;
25781 case ARRAY_TYPE:
25782 case VECTOR_TYPE:
25783 gen_array_type_die (type, context_die);
25784 break;
25786 case ENUMERAL_TYPE:
25787 case RECORD_TYPE:
25788 case UNION_TYPE:
25789 case QUAL_UNION_TYPE:
25790 gen_tagged_type_die (type, context_die, usage);
25791 return;
25793 case VOID_TYPE:
25794 case INTEGER_TYPE:
25795 case REAL_TYPE:
25796 case FIXED_POINT_TYPE:
25797 case COMPLEX_TYPE:
25798 case BOOLEAN_TYPE:
25799 /* No DIEs needed for fundamental types. */
25800 break;
25802 case NULLPTR_TYPE:
25803 case LANG_TYPE:
25804 /* Just use DW_TAG_unspecified_type. */
25806 dw_die_ref type_die = lookup_type_die (type);
25807 if (type_die == NULL)
25809 tree name = TYPE_IDENTIFIER (type);
25810 type_die = new_die (DW_TAG_unspecified_type, comp_unit_die (),
25811 type);
25812 add_name_attribute (type_die, IDENTIFIER_POINTER (name));
25813 equate_type_number_to_die (type, type_die);
25816 break;
25818 default:
25819 if (is_cxx_auto (type))
25821 tree name = TYPE_IDENTIFIER (type);
25822 dw_die_ref *die = (name == get_identifier ("auto")
25823 ? &auto_die : &decltype_auto_die);
25824 if (!*die)
25826 *die = new_die (DW_TAG_unspecified_type,
25827 comp_unit_die (), NULL_TREE);
25828 add_name_attribute (*die, IDENTIFIER_POINTER (name));
25830 equate_type_number_to_die (type, *die);
25831 break;
25833 gcc_unreachable ();
25836 TREE_ASM_WRITTEN (type) = 1;
25839 static void
25840 gen_type_die (tree type, dw_die_ref context_die)
25842 if (type != error_mark_node)
25844 gen_type_die_with_usage (type, context_die, DINFO_USAGE_DIR_USE);
25845 if (flag_checking)
25847 dw_die_ref die = lookup_type_die (type);
25848 if (die)
25849 check_die (die);
25854 /* Generate a DW_TAG_lexical_block DIE followed by DIEs to represent all of the
25855 things which are local to the given block. */
25857 static void
25858 gen_block_die (tree stmt, dw_die_ref context_die)
25860 int must_output_die = 0;
25861 bool inlined_func;
25863 /* Ignore blocks that are NULL. */
25864 if (stmt == NULL_TREE)
25865 return;
25867 inlined_func = inlined_function_outer_scope_p (stmt);
25869 /* If the block is one fragment of a non-contiguous block, do not
25870 process the variables, since they will have been done by the
25871 origin block. Do process subblocks. */
25872 if (BLOCK_FRAGMENT_ORIGIN (stmt))
25874 tree sub;
25876 for (sub = BLOCK_SUBBLOCKS (stmt); sub; sub = BLOCK_CHAIN (sub))
25877 gen_block_die (sub, context_die);
25879 return;
25882 /* Determine if we need to output any Dwarf DIEs at all to represent this
25883 block. */
25884 if (inlined_func)
25885 /* The outer scopes for inlinings *must* always be represented. We
25886 generate DW_TAG_inlined_subroutine DIEs for them. (See below.) */
25887 must_output_die = 1;
25888 else if (lookup_block_die (stmt))
25889 /* If we already have a DIE then it was filled early. Meanwhile
25890 we might have pruned all BLOCK_VARS as optimized out but we
25891 still want to generate high/low PC attributes so output it. */
25892 must_output_die = 1;
25893 else if (TREE_USED (stmt)
25894 || TREE_ASM_WRITTEN (stmt))
25896 /* Determine if this block directly contains any "significant"
25897 local declarations which we will need to output DIEs for. */
25898 if (debug_info_level > DINFO_LEVEL_TERSE)
25900 /* We are not in terse mode so any local declaration that
25901 is not ignored for debug purposes counts as being a
25902 "significant" one. */
25903 if (BLOCK_NUM_NONLOCALIZED_VARS (stmt))
25904 must_output_die = 1;
25905 else
25906 for (tree var = BLOCK_VARS (stmt); var; var = DECL_CHAIN (var))
25907 if (!DECL_IGNORED_P (var))
25909 must_output_die = 1;
25910 break;
25913 else if (!dwarf2out_ignore_block (stmt))
25914 must_output_die = 1;
25917 /* It would be a waste of space to generate a Dwarf DW_TAG_lexical_block
25918 DIE for any block which contains no significant local declarations at
25919 all. Rather, in such cases we just call `decls_for_scope' so that any
25920 needed Dwarf info for any sub-blocks will get properly generated. Note
25921 that in terse mode, our definition of what constitutes a "significant"
25922 local declaration gets restricted to include only inlined function
25923 instances and local (nested) function definitions. */
25924 if (must_output_die)
25926 if (inlined_func)
25927 gen_inlined_subroutine_die (stmt, context_die);
25928 else
25929 gen_lexical_block_die (stmt, context_die);
25931 else
25932 decls_for_scope (stmt, context_die);
25935 /* Process variable DECL (or variable with origin ORIGIN) within
25936 block STMT and add it to CONTEXT_DIE. */
25937 static void
25938 process_scope_var (tree stmt, tree decl, tree origin, dw_die_ref context_die)
25940 dw_die_ref die;
25941 tree decl_or_origin = decl ? decl : origin;
25943 if (TREE_CODE (decl_or_origin) == FUNCTION_DECL)
25944 die = lookup_decl_die (decl_or_origin);
25945 else if (TREE_CODE (decl_or_origin) == TYPE_DECL)
25947 if (TYPE_DECL_IS_STUB (decl_or_origin))
25948 die = lookup_type_die (TREE_TYPE (decl_or_origin));
25949 else
25950 die = lookup_decl_die (decl_or_origin);
25951 /* Avoid re-creating the DIE late if it was optimized as unused early. */
25952 if (! die && ! early_dwarf)
25953 return;
25955 else
25956 die = NULL;
25958 /* Avoid creating DIEs for local typedefs and concrete static variables that
25959 will only be pruned later. */
25960 if ((origin || decl_ultimate_origin (decl))
25961 && (TREE_CODE (decl_or_origin) == TYPE_DECL
25962 || (VAR_P (decl_or_origin) && TREE_STATIC (decl_or_origin))))
25964 origin = decl_ultimate_origin (decl_or_origin);
25965 if (decl && VAR_P (decl) && die != NULL)
25967 die = lookup_decl_die (origin);
25968 if (die != NULL)
25969 equate_decl_number_to_die (decl, die);
25971 return;
25974 if (die != NULL && die->die_parent == NULL)
25975 add_child_die (context_die, die);
25976 else if (TREE_CODE (decl_or_origin) == IMPORTED_DECL)
25978 if (early_dwarf)
25979 dwarf2out_imported_module_or_decl_1 (decl_or_origin, DECL_NAME (decl_or_origin),
25980 stmt, context_die);
25982 else
25984 if (decl && DECL_P (decl))
25986 die = lookup_decl_die (decl);
25988 /* Early created DIEs do not have a parent as the decls refer
25989 to the function as DECL_CONTEXT rather than the BLOCK. */
25990 if (die && die->die_parent == NULL)
25992 gcc_assert (in_lto_p);
25993 add_child_die (context_die, die);
25997 gen_decl_die (decl, origin, NULL, context_die);
26001 /* Generate all of the decls declared within a given scope and (recursively)
26002 all of its sub-blocks. */
26004 static void
26005 decls_for_scope (tree stmt, dw_die_ref context_die, bool recurse)
26007 tree decl;
26008 unsigned int i;
26009 tree subblocks;
26011 /* Ignore NULL blocks. */
26012 if (stmt == NULL_TREE)
26013 return;
26015 /* Output the DIEs to represent all of the data objects and typedefs
26016 declared directly within this block but not within any nested
26017 sub-blocks. Also, nested function and tag DIEs have been
26018 generated with a parent of NULL; fix that up now. We don't
26019 have to do this if we're at -g1. */
26020 if (debug_info_level > DINFO_LEVEL_TERSE)
26022 for (decl = BLOCK_VARS (stmt); decl != NULL; decl = DECL_CHAIN (decl))
26023 process_scope_var (stmt, decl, NULL_TREE, context_die);
26024 /* BLOCK_NONLOCALIZED_VARs simply generate DIE stubs with abstract
26025 origin - avoid doing this twice as we have no good way to see
26026 if we've done it once already. */
26027 if (! early_dwarf)
26028 for (i = 0; i < BLOCK_NUM_NONLOCALIZED_VARS (stmt); i++)
26030 decl = BLOCK_NONLOCALIZED_VAR (stmt, i);
26031 if (decl == current_function_decl)
26032 /* Ignore declarations of the current function, while they
26033 are declarations, gen_subprogram_die would treat them
26034 as definitions again, because they are equal to
26035 current_function_decl and endlessly recurse. */;
26036 else if (TREE_CODE (decl) == FUNCTION_DECL)
26037 process_scope_var (stmt, decl, NULL_TREE, context_die);
26038 else
26039 process_scope_var (stmt, NULL_TREE, decl, context_die);
26043 /* Even if we're at -g1, we need to process the subblocks in order to get
26044 inlined call information. */
26046 /* Output the DIEs to represent all sub-blocks (and the items declared
26047 therein) of this block. */
26048 if (recurse)
26049 for (subblocks = BLOCK_SUBBLOCKS (stmt);
26050 subblocks != NULL;
26051 subblocks = BLOCK_CHAIN (subblocks))
26052 gen_block_die (subblocks, context_die);
26055 /* Is this a typedef we can avoid emitting? */
26057 static bool
26058 is_redundant_typedef (const_tree decl)
26060 if (TYPE_DECL_IS_STUB (decl))
26061 return true;
26063 if (DECL_ARTIFICIAL (decl)
26064 && DECL_CONTEXT (decl)
26065 && is_tagged_type (DECL_CONTEXT (decl))
26066 && TREE_CODE (TYPE_NAME (DECL_CONTEXT (decl))) == TYPE_DECL
26067 && DECL_NAME (decl) == DECL_NAME (TYPE_NAME (DECL_CONTEXT (decl))))
26068 /* Also ignore the artificial member typedef for the class name. */
26069 return true;
26071 return false;
26074 /* Return TRUE if TYPE is a typedef that names a type for linkage
26075 purposes. This kind of typedefs is produced by the C++ FE for
26076 constructs like:
26078 typedef struct {...} foo;
26080 In that case, there is no typedef variant type produced for foo.
26081 Rather, the TREE_TYPE of the TYPE_DECL of foo is the anonymous
26082 struct type. */
26084 static bool
26085 is_naming_typedef_decl (const_tree decl)
26087 if (decl == NULL_TREE
26088 || TREE_CODE (decl) != TYPE_DECL
26089 || DECL_NAMELESS (decl)
26090 || !is_tagged_type (TREE_TYPE (decl))
26091 || DECL_IS_BUILTIN (decl)
26092 || is_redundant_typedef (decl)
26093 /* It looks like Ada produces TYPE_DECLs that are very similar
26094 to C++ naming typedefs but that have different
26095 semantics. Let's be specific to c++ for now. */
26096 || !is_cxx (decl))
26097 return FALSE;
26099 return (DECL_ORIGINAL_TYPE (decl) == NULL_TREE
26100 && TYPE_NAME (TREE_TYPE (decl)) == decl
26101 && (TYPE_STUB_DECL (TREE_TYPE (decl))
26102 != TYPE_NAME (TREE_TYPE (decl))));
26105 /* Looks up the DIE for a context. */
26107 static inline dw_die_ref
26108 lookup_context_die (tree context)
26110 if (context)
26112 /* Find die that represents this context. */
26113 if (TYPE_P (context))
26115 context = TYPE_MAIN_VARIANT (context);
26116 dw_die_ref ctx = lookup_type_die (context);
26117 if (!ctx)
26118 return NULL;
26119 return strip_naming_typedef (context, ctx);
26121 else
26122 return lookup_decl_die (context);
26124 return comp_unit_die ();
26127 /* Returns the DIE for a context. */
26129 static inline dw_die_ref
26130 get_context_die (tree context)
26132 if (context)
26134 /* Find die that represents this context. */
26135 if (TYPE_P (context))
26137 context = TYPE_MAIN_VARIANT (context);
26138 return strip_naming_typedef (context, force_type_die (context));
26140 else
26141 return force_decl_die (context);
26143 return comp_unit_die ();
26146 /* Returns the DIE for decl. A DIE will always be returned. */
26148 static dw_die_ref
26149 force_decl_die (tree decl)
26151 dw_die_ref decl_die;
26152 unsigned saved_external_flag;
26153 tree save_fn = NULL_TREE;
26154 decl_die = lookup_decl_die (decl);
26155 if (!decl_die)
26157 dw_die_ref context_die = get_context_die (DECL_CONTEXT (decl));
26159 decl_die = lookup_decl_die (decl);
26160 if (decl_die)
26161 return decl_die;
26163 switch (TREE_CODE (decl))
26165 case FUNCTION_DECL:
26166 /* Clear current_function_decl, so that gen_subprogram_die thinks
26167 that this is a declaration. At this point, we just want to force
26168 declaration die. */
26169 save_fn = current_function_decl;
26170 current_function_decl = NULL_TREE;
26171 gen_subprogram_die (decl, context_die);
26172 current_function_decl = save_fn;
26173 break;
26175 case VAR_DECL:
26176 /* Set external flag to force declaration die. Restore it after
26177 gen_decl_die() call. */
26178 saved_external_flag = DECL_EXTERNAL (decl);
26179 DECL_EXTERNAL (decl) = 1;
26180 gen_decl_die (decl, NULL, NULL, context_die);
26181 DECL_EXTERNAL (decl) = saved_external_flag;
26182 break;
26184 case NAMESPACE_DECL:
26185 if (dwarf_version >= 3 || !dwarf_strict)
26186 dwarf2out_decl (decl);
26187 else
26188 /* DWARF2 has neither DW_TAG_module, nor DW_TAG_namespace. */
26189 decl_die = comp_unit_die ();
26190 break;
26192 case TRANSLATION_UNIT_DECL:
26193 decl_die = comp_unit_die ();
26194 break;
26196 default:
26197 gcc_unreachable ();
26200 /* We should be able to find the DIE now. */
26201 if (!decl_die)
26202 decl_die = lookup_decl_die (decl);
26203 gcc_assert (decl_die);
26206 return decl_die;
26209 /* Returns the DIE for TYPE, that must not be a base type. A DIE is
26210 always returned. */
26212 static dw_die_ref
26213 force_type_die (tree type)
26215 dw_die_ref type_die;
26217 type_die = lookup_type_die (type);
26218 if (!type_die)
26220 dw_die_ref context_die = get_context_die (TYPE_CONTEXT (type));
26222 type_die = modified_type_die (type, TYPE_QUALS_NO_ADDR_SPACE (type),
26223 false, context_die);
26224 gcc_assert (type_die);
26226 return type_die;
26229 /* Force out any required namespaces to be able to output DECL,
26230 and return the new context_die for it, if it's changed. */
26232 static dw_die_ref
26233 setup_namespace_context (tree thing, dw_die_ref context_die)
26235 tree context = (DECL_P (thing)
26236 ? DECL_CONTEXT (thing) : TYPE_CONTEXT (thing));
26237 if (context && TREE_CODE (context) == NAMESPACE_DECL)
26238 /* Force out the namespace. */
26239 context_die = force_decl_die (context);
26241 return context_die;
26244 /* Emit a declaration DIE for THING (which is either a DECL or a tagged
26245 type) within its namespace, if appropriate.
26247 For compatibility with older debuggers, namespace DIEs only contain
26248 declarations; all definitions are emitted at CU scope, with
26249 DW_AT_specification pointing to the declaration (like with class
26250 members). */
26252 static dw_die_ref
26253 declare_in_namespace (tree thing, dw_die_ref context_die)
26255 dw_die_ref ns_context;
26257 if (debug_info_level <= DINFO_LEVEL_TERSE)
26258 return context_die;
26260 /* External declarations in the local scope only need to be emitted
26261 once, not once in the namespace and once in the scope.
26263 This avoids declaring the `extern' below in the
26264 namespace DIE as well as in the innermost scope:
26266 namespace S
26268 int i=5;
26269 int foo()
26271 int i=8;
26272 extern int i;
26273 return i;
26277 if (DECL_P (thing) && DECL_EXTERNAL (thing) && local_scope_p (context_die))
26278 return context_die;
26280 /* If this decl is from an inlined function, then don't try to emit it in its
26281 namespace, as we will get confused. It would have already been emitted
26282 when the abstract instance of the inline function was emitted anyways. */
26283 if (DECL_P (thing) && DECL_ABSTRACT_ORIGIN (thing))
26284 return context_die;
26286 ns_context = setup_namespace_context (thing, context_die);
26288 if (ns_context != context_die)
26290 if (is_fortran () || is_dlang ())
26291 return ns_context;
26292 if (DECL_P (thing))
26293 gen_decl_die (thing, NULL, NULL, ns_context);
26294 else
26295 gen_type_die (thing, ns_context);
26297 return context_die;
26300 /* Generate a DIE for a namespace or namespace alias. */
26302 static void
26303 gen_namespace_die (tree decl, dw_die_ref context_die)
26305 dw_die_ref namespace_die;
26307 /* Namespace aliases have a DECL_ABSTRACT_ORIGIN of the namespace
26308 they are an alias of. */
26309 if (DECL_ABSTRACT_ORIGIN (decl) == NULL)
26311 /* Output a real namespace or module. */
26312 context_die = setup_namespace_context (decl, comp_unit_die ());
26313 namespace_die = new_die (is_fortran () || is_dlang ()
26314 ? DW_TAG_module : DW_TAG_namespace,
26315 context_die, decl);
26316 /* For Fortran modules defined in different CU don't add src coords. */
26317 if (namespace_die->die_tag == DW_TAG_module && DECL_EXTERNAL (decl))
26319 const char *name = dwarf2_name (decl, 0);
26320 if (name)
26321 add_name_attribute (namespace_die, name);
26323 else
26324 add_name_and_src_coords_attributes (namespace_die, decl);
26325 if (DECL_EXTERNAL (decl))
26326 add_AT_flag (namespace_die, DW_AT_declaration, 1);
26327 equate_decl_number_to_die (decl, namespace_die);
26329 else
26331 /* Output a namespace alias. */
26333 /* Force out the namespace we are an alias of, if necessary. */
26334 dw_die_ref origin_die
26335 = force_decl_die (DECL_ABSTRACT_ORIGIN (decl));
26337 if (DECL_FILE_SCOPE_P (decl)
26338 || TREE_CODE (DECL_CONTEXT (decl)) == NAMESPACE_DECL)
26339 context_die = setup_namespace_context (decl, comp_unit_die ());
26340 /* Now create the namespace alias DIE. */
26341 namespace_die = new_die (DW_TAG_imported_declaration, context_die, decl);
26342 add_name_and_src_coords_attributes (namespace_die, decl);
26343 add_AT_die_ref (namespace_die, DW_AT_import, origin_die);
26344 equate_decl_number_to_die (decl, namespace_die);
26346 if ((dwarf_version >= 5 || !dwarf_strict)
26347 && lang_hooks.decls.decl_dwarf_attribute (decl,
26348 DW_AT_export_symbols) == 1)
26349 add_AT_flag (namespace_die, DW_AT_export_symbols, 1);
26351 /* Bypass dwarf2_name's check for DECL_NAMELESS. */
26352 if (want_pubnames ())
26353 add_pubname_string (lang_hooks.dwarf_name (decl, 1), namespace_die);
26356 /* Generate Dwarf debug information for a decl described by DECL.
26357 The return value is currently only meaningful for PARM_DECLs,
26358 for all other decls it returns NULL.
26360 If DECL is a FIELD_DECL, CTX is required: see the comment for VLR_CONTEXT.
26361 It can be NULL otherwise. */
26363 static dw_die_ref
26364 gen_decl_die (tree decl, tree origin, struct vlr_context *ctx,
26365 dw_die_ref context_die)
26367 tree decl_or_origin = decl ? decl : origin;
26368 tree class_origin = NULL, ultimate_origin;
26370 if (DECL_P (decl_or_origin) && DECL_IGNORED_P (decl_or_origin))
26371 return NULL;
26373 switch (TREE_CODE (decl_or_origin))
26375 case ERROR_MARK:
26376 break;
26378 case CONST_DECL:
26379 if (!is_fortran () && !is_ada () && !is_dlang ())
26381 /* The individual enumerators of an enum type get output when we output
26382 the Dwarf representation of the relevant enum type itself. */
26383 break;
26386 /* Emit its type. */
26387 gen_type_die (TREE_TYPE (decl), context_die);
26389 /* And its containing namespace. */
26390 context_die = declare_in_namespace (decl, context_die);
26392 gen_const_die (decl, context_die);
26393 break;
26395 case FUNCTION_DECL:
26396 #if 0
26397 /* FIXME */
26398 /* This doesn't work because the C frontend sets DECL_ABSTRACT_ORIGIN
26399 on local redeclarations of global functions. That seems broken. */
26400 if (current_function_decl != decl)
26401 /* This is only a declaration. */;
26402 #endif
26404 /* We should have abstract copies already and should not generate
26405 stray type DIEs in late LTO dumping. */
26406 if (! early_dwarf)
26409 /* If we're emitting a clone, emit info for the abstract instance. */
26410 else if (origin || DECL_ORIGIN (decl) != decl)
26411 dwarf2out_abstract_function (origin
26412 ? DECL_ORIGIN (origin)
26413 : DECL_ABSTRACT_ORIGIN (decl));
26415 /* If we're emitting a possibly inlined function emit it as
26416 abstract instance. */
26417 else if (cgraph_function_possibly_inlined_p (decl)
26418 && ! DECL_ABSTRACT_P (decl)
26419 && ! class_or_namespace_scope_p (context_die)
26420 /* dwarf2out_abstract_function won't emit a die if this is just
26421 a declaration. We must avoid setting DECL_ABSTRACT_ORIGIN in
26422 that case, because that works only if we have a die. */
26423 && DECL_INITIAL (decl) != NULL_TREE)
26424 dwarf2out_abstract_function (decl);
26426 /* Otherwise we're emitting the primary DIE for this decl. */
26427 else if (debug_info_level > DINFO_LEVEL_TERSE)
26429 /* Before we describe the FUNCTION_DECL itself, make sure that we
26430 have its containing type. */
26431 if (!origin)
26432 origin = decl_class_context (decl);
26433 if (origin != NULL_TREE)
26434 gen_type_die (origin, context_die);
26436 /* And its return type. */
26437 gen_type_die (TREE_TYPE (TREE_TYPE (decl)), context_die);
26439 /* And its virtual context. */
26440 if (DECL_VINDEX (decl) != NULL_TREE)
26441 gen_type_die (DECL_CONTEXT (decl), context_die);
26443 /* Make sure we have a member DIE for decl. */
26444 if (origin != NULL_TREE)
26445 gen_type_die_for_member (origin, decl, context_die);
26447 /* And its containing namespace. */
26448 context_die = declare_in_namespace (decl, context_die);
26451 /* Now output a DIE to represent the function itself. */
26452 if (decl)
26453 gen_subprogram_die (decl, context_die);
26454 break;
26456 case TYPE_DECL:
26457 /* If we are in terse mode, don't generate any DIEs to represent any
26458 actual typedefs. */
26459 if (debug_info_level <= DINFO_LEVEL_TERSE)
26460 break;
26462 /* In the special case of a TYPE_DECL node representing the declaration
26463 of some type tag, if the given TYPE_DECL is marked as having been
26464 instantiated from some other (original) TYPE_DECL node (e.g. one which
26465 was generated within the original definition of an inline function) we
26466 used to generate a special (abbreviated) DW_TAG_structure_type,
26467 DW_TAG_union_type, or DW_TAG_enumeration_type DIE here. But nothing
26468 should be actually referencing those DIEs, as variable DIEs with that
26469 type would be emitted already in the abstract origin, so it was always
26470 removed during unused type prunning. Don't add anything in this
26471 case. */
26472 if (TYPE_DECL_IS_STUB (decl) && decl_ultimate_origin (decl) != NULL_TREE)
26473 break;
26475 if (is_redundant_typedef (decl))
26476 gen_type_die (TREE_TYPE (decl), context_die);
26477 else
26478 /* Output a DIE to represent the typedef itself. */
26479 gen_typedef_die (decl, context_die);
26480 break;
26482 case LABEL_DECL:
26483 if (debug_info_level >= DINFO_LEVEL_NORMAL)
26484 gen_label_die (decl, context_die);
26485 break;
26487 case VAR_DECL:
26488 case RESULT_DECL:
26489 /* If we are in terse mode, don't generate any DIEs to represent any
26490 variable declarations or definitions. */
26491 if (debug_info_level <= DINFO_LEVEL_TERSE)
26492 break;
26494 /* Avoid generating stray type DIEs during late dwarf dumping.
26495 All types have been dumped early. */
26496 if (early_dwarf
26497 /* ??? But in LTRANS we cannot annotate early created variably
26498 modified type DIEs without copying them and adjusting all
26499 references to them. Dump them again as happens for inlining
26500 which copies both the decl and the types. */
26501 /* ??? And even non-LTO needs to re-visit type DIEs to fill
26502 in VLA bound information for example. */
26503 || (decl && variably_modified_type_p (TREE_TYPE (decl),
26504 current_function_decl)))
26506 /* Output any DIEs that are needed to specify the type of this data
26507 object. */
26508 if (decl_by_reference_p (decl_or_origin))
26509 gen_type_die (TREE_TYPE (TREE_TYPE (decl_or_origin)), context_die);
26510 else
26511 gen_type_die (TREE_TYPE (decl_or_origin), context_die);
26514 if (early_dwarf)
26516 /* And its containing type. */
26517 class_origin = decl_class_context (decl_or_origin);
26518 if (class_origin != NULL_TREE)
26519 gen_type_die_for_member (class_origin, decl_or_origin, context_die);
26521 /* And its containing namespace. */
26522 context_die = declare_in_namespace (decl_or_origin, context_die);
26525 /* Now output the DIE to represent the data object itself. This gets
26526 complicated because of the possibility that the VAR_DECL really
26527 represents an inlined instance of a formal parameter for an inline
26528 function. */
26529 ultimate_origin = decl_ultimate_origin (decl_or_origin);
26530 if (ultimate_origin != NULL_TREE
26531 && TREE_CODE (ultimate_origin) == PARM_DECL)
26532 gen_formal_parameter_die (decl, origin,
26533 true /* Emit name attribute. */,
26534 context_die);
26535 else
26536 gen_variable_die (decl, origin, context_die);
26537 break;
26539 case FIELD_DECL:
26540 gcc_assert (ctx != NULL && ctx->struct_type != NULL);
26541 /* Ignore the nameless fields that are used to skip bits but handle C++
26542 anonymous unions and structs. */
26543 if (DECL_NAME (decl) != NULL_TREE
26544 || TREE_CODE (TREE_TYPE (decl)) == UNION_TYPE
26545 || TREE_CODE (TREE_TYPE (decl)) == RECORD_TYPE)
26547 gen_type_die (member_declared_type (decl), context_die);
26548 gen_field_die (decl, ctx, context_die);
26550 break;
26552 case PARM_DECL:
26553 /* Avoid generating stray type DIEs during late dwarf dumping.
26554 All types have been dumped early. */
26555 if (early_dwarf
26556 /* ??? But in LTRANS we cannot annotate early created variably
26557 modified type DIEs without copying them and adjusting all
26558 references to them. Dump them again as happens for inlining
26559 which copies both the decl and the types. */
26560 /* ??? And even non-LTO needs to re-visit type DIEs to fill
26561 in VLA bound information for example. */
26562 || (decl && variably_modified_type_p (TREE_TYPE (decl),
26563 current_function_decl)))
26565 if (DECL_BY_REFERENCE (decl_or_origin))
26566 gen_type_die (TREE_TYPE (TREE_TYPE (decl_or_origin)), context_die);
26567 else
26568 gen_type_die (TREE_TYPE (decl_or_origin), context_die);
26570 return gen_formal_parameter_die (decl, origin,
26571 true /* Emit name attribute. */,
26572 context_die);
26574 case NAMESPACE_DECL:
26575 if (dwarf_version >= 3 || !dwarf_strict)
26576 gen_namespace_die (decl, context_die);
26577 break;
26579 case IMPORTED_DECL:
26580 dwarf2out_imported_module_or_decl_1 (decl, DECL_NAME (decl),
26581 DECL_CONTEXT (decl), context_die);
26582 break;
26584 case NAMELIST_DECL:
26585 gen_namelist_decl (DECL_NAME (decl), context_die,
26586 NAMELIST_DECL_ASSOCIATED_DECL (decl));
26587 break;
26589 default:
26590 /* Probably some frontend-internal decl. Assume we don't care. */
26591 gcc_assert ((int)TREE_CODE (decl) > NUM_TREE_CODES);
26592 break;
26595 return NULL;
26598 /* Output initial debug information for global DECL. Called at the
26599 end of the parsing process.
26601 This is the initial debug generation process. As such, the DIEs
26602 generated may be incomplete. A later debug generation pass
26603 (dwarf2out_late_global_decl) will augment the information generated
26604 in this pass (e.g., with complete location info). */
26606 static void
26607 dwarf2out_early_global_decl (tree decl)
26609 set_early_dwarf s;
26611 /* gen_decl_die() will set DECL_ABSTRACT because
26612 cgraph_function_possibly_inlined_p() returns true. This is in
26613 turn will cause DW_AT_inline attributes to be set.
26615 This happens because at early dwarf generation, there is no
26616 cgraph information, causing cgraph_function_possibly_inlined_p()
26617 to return true. Trick cgraph_function_possibly_inlined_p()
26618 while we generate dwarf early. */
26619 bool save = symtab->global_info_ready;
26620 symtab->global_info_ready = true;
26622 /* We don't handle TYPE_DECLs. If required, they'll be reached via
26623 other DECLs and they can point to template types or other things
26624 that dwarf2out can't handle when done via dwarf2out_decl. */
26625 if (TREE_CODE (decl) != TYPE_DECL
26626 && TREE_CODE (decl) != PARM_DECL)
26628 if (TREE_CODE (decl) == FUNCTION_DECL)
26630 tree save_fndecl = current_function_decl;
26632 /* For nested functions, make sure we have DIEs for the parents first
26633 so that all nested DIEs are generated at the proper scope in the
26634 first shot. */
26635 tree context = decl_function_context (decl);
26636 if (context != NULL)
26638 dw_die_ref context_die = lookup_decl_die (context);
26639 current_function_decl = context;
26641 /* Avoid emitting DIEs multiple times, but still process CONTEXT
26642 enough so that it lands in its own context. This avoids type
26643 pruning issues later on. */
26644 if (context_die == NULL || is_declaration_die (context_die))
26645 dwarf2out_early_global_decl (context);
26648 /* Emit an abstract origin of a function first. This happens
26649 with C++ constructor clones for example and makes
26650 dwarf2out_abstract_function happy which requires the early
26651 DIE of the abstract instance to be present. */
26652 tree origin = DECL_ABSTRACT_ORIGIN (decl);
26653 dw_die_ref origin_die;
26654 if (origin != NULL
26655 /* Do not emit the DIE multiple times but make sure to
26656 process it fully here in case we just saw a declaration. */
26657 && ((origin_die = lookup_decl_die (origin)) == NULL
26658 || is_declaration_die (origin_die)))
26660 current_function_decl = origin;
26661 dwarf2out_decl (origin);
26664 /* Emit the DIE for decl but avoid doing that multiple times. */
26665 dw_die_ref old_die;
26666 if ((old_die = lookup_decl_die (decl)) == NULL
26667 || is_declaration_die (old_die))
26669 current_function_decl = decl;
26670 dwarf2out_decl (decl);
26673 current_function_decl = save_fndecl;
26675 else
26676 dwarf2out_decl (decl);
26678 symtab->global_info_ready = save;
26681 /* Return whether EXPR is an expression with the following pattern:
26682 INDIRECT_REF (NOP_EXPR (INTEGER_CST)). */
26684 static bool
26685 is_trivial_indirect_ref (tree expr)
26687 if (expr == NULL_TREE || TREE_CODE (expr) != INDIRECT_REF)
26688 return false;
26690 tree nop = TREE_OPERAND (expr, 0);
26691 if (nop == NULL_TREE || TREE_CODE (nop) != NOP_EXPR)
26692 return false;
26694 tree int_cst = TREE_OPERAND (nop, 0);
26695 return int_cst != NULL_TREE && TREE_CODE (int_cst) == INTEGER_CST;
26698 /* Output debug information for global decl DECL. Called from
26699 toplev.c after compilation proper has finished. */
26701 static void
26702 dwarf2out_late_global_decl (tree decl)
26704 /* Fill-in any location information we were unable to determine
26705 on the first pass. */
26706 if (VAR_P (decl))
26708 dw_die_ref die = lookup_decl_die (decl);
26710 /* We may have to generate full debug late for LTO in case debug
26711 was not enabled at compile-time or the target doesn't support
26712 the LTO early debug scheme. */
26713 if (! die && in_lto_p)
26714 dwarf2out_decl (decl);
26715 else if (die)
26717 /* We get called via the symtab code invoking late_global_decl
26718 for symbols that are optimized out.
26720 Do not add locations for those, except if they have a
26721 DECL_VALUE_EXPR, in which case they are relevant for debuggers.
26722 Still don't add a location if the DECL_VALUE_EXPR is not a trivial
26723 INDIRECT_REF expression, as this could generate relocations to
26724 text symbols in LTO object files, which is invalid. */
26725 varpool_node *node = varpool_node::get (decl);
26726 if ((! node || ! node->definition)
26727 && ! (DECL_HAS_VALUE_EXPR_P (decl)
26728 && is_trivial_indirect_ref (DECL_VALUE_EXPR (decl))))
26729 tree_add_const_value_attribute_for_decl (die, decl);
26730 else
26731 add_location_or_const_value_attribute (die, decl, false);
26736 /* Output debug information for type decl DECL. Called from toplev.c
26737 and from language front ends (to record built-in types). */
26738 static void
26739 dwarf2out_type_decl (tree decl, int local)
26741 if (!local)
26743 set_early_dwarf s;
26744 dwarf2out_decl (decl);
26748 /* Output debug information for imported module or decl DECL.
26749 NAME is non-NULL name in the lexical block if the decl has been renamed.
26750 LEXICAL_BLOCK is the lexical block (which TREE_CODE is a BLOCK)
26751 that DECL belongs to.
26752 LEXICAL_BLOCK_DIE is the DIE of LEXICAL_BLOCK. */
26753 static void
26754 dwarf2out_imported_module_or_decl_1 (tree decl,
26755 tree name,
26756 tree lexical_block,
26757 dw_die_ref lexical_block_die)
26759 expanded_location xloc;
26760 dw_die_ref imported_die = NULL;
26761 dw_die_ref at_import_die;
26763 if (TREE_CODE (decl) == IMPORTED_DECL)
26765 xloc = expand_location (DECL_SOURCE_LOCATION (decl));
26766 decl = IMPORTED_DECL_ASSOCIATED_DECL (decl);
26767 gcc_assert (decl);
26769 else
26770 xloc = expand_location (input_location);
26772 if (TREE_CODE (decl) == TYPE_DECL || TREE_CODE (decl) == CONST_DECL)
26774 at_import_die = force_type_die (TREE_TYPE (decl));
26775 /* For namespace N { typedef void T; } using N::T; base_type_die
26776 returns NULL, but DW_TAG_imported_declaration requires
26777 the DW_AT_import tag. Force creation of DW_TAG_typedef. */
26778 if (!at_import_die)
26780 gcc_assert (TREE_CODE (decl) == TYPE_DECL);
26781 gen_typedef_die (decl, get_context_die (DECL_CONTEXT (decl)));
26782 at_import_die = lookup_type_die (TREE_TYPE (decl));
26783 gcc_assert (at_import_die);
26786 else
26788 at_import_die = lookup_decl_die (decl);
26789 if (!at_import_die)
26791 /* If we're trying to avoid duplicate debug info, we may not have
26792 emitted the member decl for this field. Emit it now. */
26793 if (TREE_CODE (decl) == FIELD_DECL)
26795 tree type = DECL_CONTEXT (decl);
26797 if (TYPE_CONTEXT (type)
26798 && TYPE_P (TYPE_CONTEXT (type))
26799 && !should_emit_struct_debug (TYPE_CONTEXT (type),
26800 DINFO_USAGE_DIR_USE))
26801 return;
26802 gen_type_die_for_member (type, decl,
26803 get_context_die (TYPE_CONTEXT (type)));
26805 if (TREE_CODE (decl) == NAMELIST_DECL)
26806 at_import_die = gen_namelist_decl (DECL_NAME (decl),
26807 get_context_die (DECL_CONTEXT (decl)),
26808 NULL_TREE);
26809 else
26810 at_import_die = force_decl_die (decl);
26814 if (TREE_CODE (decl) == NAMESPACE_DECL)
26816 if (dwarf_version >= 3 || !dwarf_strict)
26817 imported_die = new_die (DW_TAG_imported_module,
26818 lexical_block_die,
26819 lexical_block);
26820 else
26821 return;
26823 else
26824 imported_die = new_die (DW_TAG_imported_declaration,
26825 lexical_block_die,
26826 lexical_block);
26828 add_AT_file (imported_die, DW_AT_decl_file, lookup_filename (xloc.file));
26829 add_AT_unsigned (imported_die, DW_AT_decl_line, xloc.line);
26830 if (debug_column_info && xloc.column)
26831 add_AT_unsigned (imported_die, DW_AT_decl_column, xloc.column);
26832 if (name)
26833 add_AT_string (imported_die, DW_AT_name,
26834 IDENTIFIER_POINTER (name));
26835 add_AT_die_ref (imported_die, DW_AT_import, at_import_die);
26838 /* Output debug information for imported module or decl DECL.
26839 NAME is non-NULL name in context if the decl has been renamed.
26840 CHILD is true if decl is one of the renamed decls as part of
26841 importing whole module.
26842 IMPLICIT is set if this hook is called for an implicit import
26843 such as inline namespace. */
26845 static void
26846 dwarf2out_imported_module_or_decl (tree decl, tree name, tree context,
26847 bool child, bool implicit)
26849 /* dw_die_ref at_import_die; */
26850 dw_die_ref scope_die;
26852 if (debug_info_level <= DINFO_LEVEL_TERSE)
26853 return;
26855 gcc_assert (decl);
26857 /* For DWARF5, just DW_AT_export_symbols on the DW_TAG_namespace
26858 should be enough, for DWARF4 and older even if we emit as extension
26859 DW_AT_export_symbols add the implicit DW_TAG_imported_module anyway
26860 for the benefit of consumers unaware of DW_AT_export_symbols. */
26861 if (implicit
26862 && dwarf_version >= 5
26863 && lang_hooks.decls.decl_dwarf_attribute (decl,
26864 DW_AT_export_symbols) == 1)
26865 return;
26867 set_early_dwarf s;
26869 /* To emit DW_TAG_imported_module or DW_TAG_imported_decl, we need two DIEs.
26870 We need decl DIE for reference and scope die. First, get DIE for the decl
26871 itself. */
26873 /* Get the scope die for decl context. Use comp_unit_die for global module
26874 or decl. If die is not found for non globals, force new die. */
26875 if (context
26876 && TYPE_P (context)
26877 && !should_emit_struct_debug (context, DINFO_USAGE_DIR_USE))
26878 return;
26880 scope_die = get_context_die (context);
26882 if (child)
26884 /* DW_TAG_imported_module was introduced in the DWARFv3 specification, so
26885 there is nothing we can do, here. */
26886 if (dwarf_version < 3 && dwarf_strict)
26887 return;
26889 gcc_assert (scope_die->die_child);
26890 gcc_assert (scope_die->die_child->die_tag == DW_TAG_imported_module);
26891 gcc_assert (TREE_CODE (decl) != NAMESPACE_DECL);
26892 scope_die = scope_die->die_child;
26895 /* OK, now we have DIEs for decl as well as scope. Emit imported die. */
26896 dwarf2out_imported_module_or_decl_1 (decl, name, context, scope_die);
26899 /* Output debug information for namelists. */
26901 static dw_die_ref
26902 gen_namelist_decl (tree name, dw_die_ref scope_die, tree item_decls)
26904 dw_die_ref nml_die, nml_item_die, nml_item_ref_die;
26905 tree value;
26906 unsigned i;
26908 if (debug_info_level <= DINFO_LEVEL_TERSE)
26909 return NULL;
26911 gcc_assert (scope_die != NULL);
26912 nml_die = new_die (DW_TAG_namelist, scope_die, NULL);
26913 add_AT_string (nml_die, DW_AT_name, IDENTIFIER_POINTER (name));
26915 /* If there are no item_decls, we have a nondefining namelist, e.g.
26916 with USE association; hence, set DW_AT_declaration. */
26917 if (item_decls == NULL_TREE)
26919 add_AT_flag (nml_die, DW_AT_declaration, 1);
26920 return nml_die;
26923 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (item_decls), i, value)
26925 nml_item_ref_die = lookup_decl_die (value);
26926 if (!nml_item_ref_die)
26927 nml_item_ref_die = force_decl_die (value);
26929 nml_item_die = new_die (DW_TAG_namelist_item, nml_die, NULL);
26930 add_AT_die_ref (nml_item_die, DW_AT_namelist_items, nml_item_ref_die);
26932 return nml_die;
26936 /* Write the debugging output for DECL and return the DIE. */
26938 static void
26939 dwarf2out_decl (tree decl)
26941 dw_die_ref context_die = comp_unit_die ();
26943 switch (TREE_CODE (decl))
26945 case ERROR_MARK:
26946 return;
26948 case FUNCTION_DECL:
26949 /* If we're a nested function, initially use a parent of NULL; if we're
26950 a plain function, this will be fixed up in decls_for_scope. If
26951 we're a method, it will be ignored, since we already have a DIE.
26952 Avoid doing this late though since clones of class methods may
26953 otherwise end up in limbo and create type DIEs late. */
26954 if (early_dwarf
26955 && decl_function_context (decl)
26956 /* But if we're in terse mode, we don't care about scope. */
26957 && debug_info_level > DINFO_LEVEL_TERSE)
26958 context_die = NULL;
26959 break;
26961 case VAR_DECL:
26962 /* For local statics lookup proper context die. */
26963 if (local_function_static (decl))
26964 context_die = lookup_decl_die (DECL_CONTEXT (decl));
26966 /* If we are in terse mode, don't generate any DIEs to represent any
26967 variable declarations or definitions. */
26968 if (debug_info_level <= DINFO_LEVEL_TERSE)
26969 return;
26970 break;
26972 case CONST_DECL:
26973 if (debug_info_level <= DINFO_LEVEL_TERSE)
26974 return;
26975 if (!is_fortran () && !is_ada () && !is_dlang ())
26976 return;
26977 if (TREE_STATIC (decl) && decl_function_context (decl))
26978 context_die = lookup_decl_die (DECL_CONTEXT (decl));
26979 break;
26981 case NAMESPACE_DECL:
26982 case IMPORTED_DECL:
26983 if (debug_info_level <= DINFO_LEVEL_TERSE)
26984 return;
26985 if (lookup_decl_die (decl) != NULL)
26986 return;
26987 break;
26989 case TYPE_DECL:
26990 /* Don't emit stubs for types unless they are needed by other DIEs. */
26991 if (TYPE_DECL_SUPPRESS_DEBUG (decl))
26992 return;
26994 /* Don't bother trying to generate any DIEs to represent any of the
26995 normal built-in types for the language we are compiling. */
26996 if (DECL_IS_BUILTIN (decl))
26997 return;
26999 /* If we are in terse mode, don't generate any DIEs for types. */
27000 if (debug_info_level <= DINFO_LEVEL_TERSE)
27001 return;
27003 /* If we're a function-scope tag, initially use a parent of NULL;
27004 this will be fixed up in decls_for_scope. */
27005 if (decl_function_context (decl))
27006 context_die = NULL;
27008 break;
27010 case NAMELIST_DECL:
27011 break;
27013 default:
27014 return;
27017 gen_decl_die (decl, NULL, NULL, context_die);
27019 if (flag_checking)
27021 dw_die_ref die = lookup_decl_die (decl);
27022 if (die)
27023 check_die (die);
27027 /* Write the debugging output for DECL. */
27029 static void
27030 dwarf2out_function_decl (tree decl)
27032 dwarf2out_decl (decl);
27033 call_arg_locations = NULL;
27034 call_arg_loc_last = NULL;
27035 call_site_count = -1;
27036 tail_call_site_count = -1;
27037 decl_loc_table->empty ();
27038 cached_dw_loc_list_table->empty ();
27041 /* Output a marker (i.e. a label) for the beginning of the generated code for
27042 a lexical block. */
27044 static void
27045 dwarf2out_begin_block (unsigned int line ATTRIBUTE_UNUSED,
27046 unsigned int blocknum)
27048 switch_to_section (current_function_section ());
27049 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, BLOCK_BEGIN_LABEL, blocknum);
27052 /* Output a marker (i.e. a label) for the end of the generated code for a
27053 lexical block. */
27055 static void
27056 dwarf2out_end_block (unsigned int line ATTRIBUTE_UNUSED, unsigned int blocknum)
27058 switch_to_section (current_function_section ());
27059 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, BLOCK_END_LABEL, blocknum);
27062 /* Returns nonzero if it is appropriate not to emit any debugging
27063 information for BLOCK, because it doesn't contain any instructions.
27065 Don't allow this for blocks with nested functions or local classes
27066 as we would end up with orphans, and in the presence of scheduling
27067 we may end up calling them anyway. */
27069 static bool
27070 dwarf2out_ignore_block (const_tree block)
27072 tree decl;
27073 unsigned int i;
27075 for (decl = BLOCK_VARS (block); decl; decl = DECL_CHAIN (decl))
27076 if (TREE_CODE (decl) == FUNCTION_DECL
27077 || (TREE_CODE (decl) == TYPE_DECL && TYPE_DECL_IS_STUB (decl)))
27078 return 0;
27079 for (i = 0; i < BLOCK_NUM_NONLOCALIZED_VARS (block); i++)
27081 decl = BLOCK_NONLOCALIZED_VAR (block, i);
27082 if (TREE_CODE (decl) == FUNCTION_DECL
27083 || (TREE_CODE (decl) == TYPE_DECL && TYPE_DECL_IS_STUB (decl)))
27084 return 0;
27087 return 1;
27090 /* Hash table routines for file_hash. */
27092 bool
27093 dwarf_file_hasher::equal (dwarf_file_data *p1, const char *p2)
27095 return filename_cmp (p1->filename, p2) == 0;
27098 hashval_t
27099 dwarf_file_hasher::hash (dwarf_file_data *p)
27101 return htab_hash_string (p->filename);
27104 /* Lookup FILE_NAME (in the list of filenames that we know about here in
27105 dwarf2out.c) and return its "index". The index of each (known) filename is
27106 just a unique number which is associated with only that one filename. We
27107 need such numbers for the sake of generating labels (in the .debug_sfnames
27108 section) and references to those files numbers (in the .debug_srcinfo
27109 and .debug_macinfo sections). If the filename given as an argument is not
27110 found in our current list, add it to the list and assign it the next
27111 available unique index number. */
27113 static struct dwarf_file_data *
27114 lookup_filename (const char *file_name)
27116 struct dwarf_file_data * created;
27118 if (!file_name)
27119 return NULL;
27121 dwarf_file_data **slot
27122 = file_table->find_slot_with_hash (file_name, htab_hash_string (file_name),
27123 INSERT);
27124 if (*slot)
27125 return *slot;
27127 created = ggc_alloc<dwarf_file_data> ();
27128 created->filename = file_name;
27129 created->emitted_number = 0;
27130 *slot = created;
27131 return created;
27134 /* If the assembler will construct the file table, then translate the compiler
27135 internal file table number into the assembler file table number, and emit
27136 a .file directive if we haven't already emitted one yet. The file table
27137 numbers are different because we prune debug info for unused variables and
27138 types, which may include filenames. */
27140 static int
27141 maybe_emit_file (struct dwarf_file_data * fd)
27143 if (! fd->emitted_number)
27145 if (last_emitted_file)
27146 fd->emitted_number = last_emitted_file->emitted_number + 1;
27147 else
27148 fd->emitted_number = 1;
27149 last_emitted_file = fd;
27151 if (output_asm_line_debug_info ())
27153 fprintf (asm_out_file, "\t.file %u ", fd->emitted_number);
27154 output_quoted_string (asm_out_file,
27155 remap_debug_filename (fd->filename));
27156 fputc ('\n', asm_out_file);
27160 return fd->emitted_number;
27163 /* Schedule generation of a DW_AT_const_value attribute to DIE.
27164 That generation should happen after function debug info has been
27165 generated. The value of the attribute is the constant value of ARG. */
27167 static void
27168 append_entry_to_tmpl_value_parm_die_table (dw_die_ref die, tree arg)
27170 die_arg_entry entry;
27172 if (!die || !arg)
27173 return;
27175 gcc_assert (early_dwarf);
27177 if (!tmpl_value_parm_die_table)
27178 vec_alloc (tmpl_value_parm_die_table, 32);
27180 entry.die = die;
27181 entry.arg = arg;
27182 vec_safe_push (tmpl_value_parm_die_table, entry);
27185 /* Return TRUE if T is an instance of generic type, FALSE
27186 otherwise. */
27188 static bool
27189 generic_type_p (tree t)
27191 if (t == NULL_TREE || !TYPE_P (t))
27192 return false;
27193 return lang_hooks.get_innermost_generic_parms (t) != NULL_TREE;
27196 /* Schedule the generation of the generic parameter dies for the
27197 instance of generic type T. The proper generation itself is later
27198 done by gen_scheduled_generic_parms_dies. */
27200 static void
27201 schedule_generic_params_dies_gen (tree t)
27203 if (!generic_type_p (t))
27204 return;
27206 gcc_assert (early_dwarf);
27208 if (!generic_type_instances)
27209 vec_alloc (generic_type_instances, 256);
27211 vec_safe_push (generic_type_instances, t);
27214 /* Add a DW_AT_const_value attribute to DIEs that were scheduled
27215 by append_entry_to_tmpl_value_parm_die_table. This function must
27216 be called after function DIEs have been generated. */
27218 static void
27219 gen_remaining_tmpl_value_param_die_attribute (void)
27221 if (tmpl_value_parm_die_table)
27223 unsigned i, j;
27224 die_arg_entry *e;
27226 /* We do this in two phases - first get the cases we can
27227 handle during early-finish, preserving those we cannot
27228 (containing symbolic constants where we don't yet know
27229 whether we are going to output the referenced symbols).
27230 For those we try again at late-finish. */
27231 j = 0;
27232 FOR_EACH_VEC_ELT (*tmpl_value_parm_die_table, i, e)
27234 if (!e->die->removed
27235 && !tree_add_const_value_attribute (e->die, e->arg))
27237 dw_loc_descr_ref loc = NULL;
27238 if (! early_dwarf
27239 && (dwarf_version >= 5 || !dwarf_strict))
27240 loc = loc_descriptor_from_tree (e->arg, 2, NULL);
27241 if (loc)
27242 add_AT_loc (e->die, DW_AT_location, loc);
27243 else
27244 (*tmpl_value_parm_die_table)[j++] = *e;
27247 tmpl_value_parm_die_table->truncate (j);
27251 /* Generate generic parameters DIEs for instances of generic types
27252 that have been previously scheduled by
27253 schedule_generic_params_dies_gen. This function must be called
27254 after all the types of the CU have been laid out. */
27256 static void
27257 gen_scheduled_generic_parms_dies (void)
27259 unsigned i;
27260 tree t;
27262 if (!generic_type_instances)
27263 return;
27265 FOR_EACH_VEC_ELT (*generic_type_instances, i, t)
27266 if (COMPLETE_TYPE_P (t))
27267 gen_generic_params_dies (t);
27269 generic_type_instances = NULL;
27273 /* Replace DW_AT_name for the decl with name. */
27275 static void
27276 dwarf2out_set_name (tree decl, tree name)
27278 dw_die_ref die;
27279 dw_attr_node *attr;
27280 const char *dname;
27282 die = TYPE_SYMTAB_DIE (decl);
27283 if (!die)
27284 return;
27286 dname = dwarf2_name (name, 0);
27287 if (!dname)
27288 return;
27290 attr = get_AT (die, DW_AT_name);
27291 if (attr)
27293 struct indirect_string_node *node;
27295 node = find_AT_string (dname);
27296 /* replace the string. */
27297 attr->dw_attr_val.v.val_str = node;
27300 else
27301 add_name_attribute (die, dname);
27304 /* True if before or during processing of the first function being emitted. */
27305 static bool in_first_function_p = true;
27306 /* True if loc_note during dwarf2out_var_location call might still be
27307 before first real instruction at address equal to .Ltext0. */
27308 static bool maybe_at_text_label_p = true;
27309 /* One above highest N where .LVLN label might be equal to .Ltext0 label. */
27310 static unsigned int first_loclabel_num_not_at_text_label;
27312 /* Look ahead for a real insn, or for a begin stmt marker. */
27314 static rtx_insn *
27315 dwarf2out_next_real_insn (rtx_insn *loc_note)
27317 rtx_insn *next_real = NEXT_INSN (loc_note);
27319 while (next_real)
27320 if (INSN_P (next_real))
27321 break;
27322 else
27323 next_real = NEXT_INSN (next_real);
27325 return next_real;
27328 /* Called by the final INSN scan whenever we see a var location. We
27329 use it to drop labels in the right places, and throw the location in
27330 our lookup table. */
27332 static void
27333 dwarf2out_var_location (rtx_insn *loc_note)
27335 char loclabel[MAX_ARTIFICIAL_LABEL_BYTES + 2];
27336 struct var_loc_node *newloc;
27337 rtx_insn *next_real, *next_note;
27338 rtx_insn *call_insn = NULL;
27339 static const char *last_label;
27340 static const char *last_postcall_label;
27341 static bool last_in_cold_section_p;
27342 static rtx_insn *expected_next_loc_note;
27343 tree decl;
27344 bool var_loc_p;
27345 var_loc_view view = 0;
27347 if (!NOTE_P (loc_note))
27349 if (CALL_P (loc_note))
27351 maybe_reset_location_view (loc_note, cur_line_info_table);
27352 call_site_count++;
27353 if (SIBLING_CALL_P (loc_note))
27354 tail_call_site_count++;
27355 if (find_reg_note (loc_note, REG_CALL_ARG_LOCATION, NULL_RTX))
27357 call_insn = loc_note;
27358 loc_note = NULL;
27359 var_loc_p = false;
27361 next_real = dwarf2out_next_real_insn (call_insn);
27362 next_note = NULL;
27363 cached_next_real_insn = NULL;
27364 goto create_label;
27366 if (optimize == 0 && !flag_var_tracking)
27368 /* When the var-tracking pass is not running, there is no note
27369 for indirect calls whose target is compile-time known. In this
27370 case, process such calls specifically so that we generate call
27371 sites for them anyway. */
27372 rtx x = PATTERN (loc_note);
27373 if (GET_CODE (x) == PARALLEL)
27374 x = XVECEXP (x, 0, 0);
27375 if (GET_CODE (x) == SET)
27376 x = SET_SRC (x);
27377 if (GET_CODE (x) == CALL)
27378 x = XEXP (x, 0);
27379 if (!MEM_P (x)
27380 || GET_CODE (XEXP (x, 0)) != SYMBOL_REF
27381 || !SYMBOL_REF_DECL (XEXP (x, 0))
27382 || (TREE_CODE (SYMBOL_REF_DECL (XEXP (x, 0)))
27383 != FUNCTION_DECL))
27385 call_insn = loc_note;
27386 loc_note = NULL;
27387 var_loc_p = false;
27389 next_real = dwarf2out_next_real_insn (call_insn);
27390 next_note = NULL;
27391 cached_next_real_insn = NULL;
27392 goto create_label;
27396 else if (!debug_variable_location_views)
27397 gcc_unreachable ();
27398 else
27399 maybe_reset_location_view (loc_note, cur_line_info_table);
27401 return;
27404 var_loc_p = NOTE_KIND (loc_note) == NOTE_INSN_VAR_LOCATION;
27405 if (var_loc_p && !DECL_P (NOTE_VAR_LOCATION_DECL (loc_note)))
27406 return;
27408 /* Optimize processing a large consecutive sequence of location
27409 notes so we don't spend too much time in next_real_insn. If the
27410 next insn is another location note, remember the next_real_insn
27411 calculation for next time. */
27412 next_real = cached_next_real_insn;
27413 if (next_real)
27415 if (expected_next_loc_note != loc_note)
27416 next_real = NULL;
27419 next_note = NEXT_INSN (loc_note);
27420 if (! next_note
27421 || next_note->deleted ()
27422 || ! NOTE_P (next_note)
27423 || (NOTE_KIND (next_note) != NOTE_INSN_VAR_LOCATION
27424 && NOTE_KIND (next_note) != NOTE_INSN_BEGIN_STMT
27425 && NOTE_KIND (next_note) != NOTE_INSN_INLINE_ENTRY))
27426 next_note = NULL;
27428 if (! next_real)
27429 next_real = dwarf2out_next_real_insn (loc_note);
27431 if (next_note)
27433 expected_next_loc_note = next_note;
27434 cached_next_real_insn = next_real;
27436 else
27437 cached_next_real_insn = NULL;
27439 /* If there are no instructions which would be affected by this note,
27440 don't do anything. */
27441 if (var_loc_p
27442 && next_real == NULL_RTX
27443 && !NOTE_DURING_CALL_P (loc_note))
27444 return;
27446 create_label:
27448 if (next_real == NULL_RTX)
27449 next_real = get_last_insn ();
27451 /* If there were any real insns between note we processed last time
27452 and this note (or if it is the first note), clear
27453 last_{,postcall_}label so that they are not reused this time. */
27454 if (last_var_location_insn == NULL_RTX
27455 || last_var_location_insn != next_real
27456 || last_in_cold_section_p != in_cold_section_p)
27458 last_label = NULL;
27459 last_postcall_label = NULL;
27462 if (var_loc_p)
27464 const char *label
27465 = NOTE_DURING_CALL_P (loc_note) ? last_postcall_label : last_label;
27466 view = cur_line_info_table->view;
27467 decl = NOTE_VAR_LOCATION_DECL (loc_note);
27468 newloc = add_var_loc_to_decl (decl, loc_note, label, view);
27469 if (newloc == NULL)
27470 return;
27472 else
27474 decl = NULL_TREE;
27475 newloc = NULL;
27478 /* If there were no real insns between note we processed last time
27479 and this note, use the label we emitted last time. Otherwise
27480 create a new label and emit it. */
27481 if (last_label == NULL)
27483 ASM_GENERATE_INTERNAL_LABEL (loclabel, "LVL", loclabel_num);
27484 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, "LVL", loclabel_num);
27485 loclabel_num++;
27486 last_label = ggc_strdup (loclabel);
27487 /* See if loclabel might be equal to .Ltext0. If yes,
27488 bump first_loclabel_num_not_at_text_label. */
27489 if (!have_multiple_function_sections
27490 && in_first_function_p
27491 && maybe_at_text_label_p)
27493 static rtx_insn *last_start;
27494 rtx_insn *insn;
27495 for (insn = loc_note; insn; insn = previous_insn (insn))
27496 if (insn == last_start)
27497 break;
27498 else if (!NONDEBUG_INSN_P (insn))
27499 continue;
27500 else
27502 rtx body = PATTERN (insn);
27503 if (GET_CODE (body) == USE || GET_CODE (body) == CLOBBER)
27504 continue;
27505 /* Inline asm could occupy zero bytes. */
27506 else if (GET_CODE (body) == ASM_INPUT
27507 || asm_noperands (body) >= 0)
27508 continue;
27509 #ifdef HAVE_ATTR_length /* ??? We don't include insn-attr.h. */
27510 else if (HAVE_ATTR_length && get_attr_min_length (insn) == 0)
27511 continue;
27512 #endif
27513 else
27515 /* Assume insn has non-zero length. */
27516 maybe_at_text_label_p = false;
27517 break;
27520 if (maybe_at_text_label_p)
27522 last_start = loc_note;
27523 first_loclabel_num_not_at_text_label = loclabel_num;
27528 gcc_assert ((loc_note == NULL_RTX && call_insn != NULL_RTX)
27529 || (loc_note != NULL_RTX && call_insn == NULL_RTX));
27531 if (!var_loc_p)
27533 struct call_arg_loc_node *ca_loc
27534 = ggc_cleared_alloc<call_arg_loc_node> ();
27535 rtx_insn *prev = call_insn;
27537 ca_loc->call_arg_loc_note
27538 = find_reg_note (call_insn, REG_CALL_ARG_LOCATION, NULL_RTX);
27539 ca_loc->next = NULL;
27540 ca_loc->label = last_label;
27541 gcc_assert (prev
27542 && (CALL_P (prev)
27543 || (NONJUMP_INSN_P (prev)
27544 && GET_CODE (PATTERN (prev)) == SEQUENCE
27545 && CALL_P (XVECEXP (PATTERN (prev), 0, 0)))));
27546 if (!CALL_P (prev))
27547 prev = as_a <rtx_sequence *> (PATTERN (prev))->insn (0);
27548 ca_loc->tail_call_p = SIBLING_CALL_P (prev);
27550 /* Look for a SYMBOL_REF in the "prev" instruction. */
27551 rtx x = get_call_rtx_from (prev);
27552 if (x)
27554 /* Try to get the call symbol, if any. */
27555 if (MEM_P (XEXP (x, 0)))
27556 x = XEXP (x, 0);
27557 /* First, look for a memory access to a symbol_ref. */
27558 if (GET_CODE (XEXP (x, 0)) == SYMBOL_REF
27559 && SYMBOL_REF_DECL (XEXP (x, 0))
27560 && TREE_CODE (SYMBOL_REF_DECL (XEXP (x, 0))) == FUNCTION_DECL)
27561 ca_loc->symbol_ref = XEXP (x, 0);
27562 /* Otherwise, look at a compile-time known user-level function
27563 declaration. */
27564 else if (MEM_P (x)
27565 && MEM_EXPR (x)
27566 && TREE_CODE (MEM_EXPR (x)) == FUNCTION_DECL)
27567 ca_loc->symbol_ref = XEXP (DECL_RTL (MEM_EXPR (x)), 0);
27570 ca_loc->block = insn_scope (prev);
27571 if (call_arg_locations)
27572 call_arg_loc_last->next = ca_loc;
27573 else
27574 call_arg_locations = ca_loc;
27575 call_arg_loc_last = ca_loc;
27577 else if (loc_note != NULL_RTX && !NOTE_DURING_CALL_P (loc_note))
27579 newloc->label = last_label;
27580 newloc->view = view;
27582 else
27584 if (!last_postcall_label)
27586 sprintf (loclabel, "%s-1", last_label);
27587 last_postcall_label = ggc_strdup (loclabel);
27589 newloc->label = last_postcall_label;
27590 /* ??? This view is at last_label, not last_label-1, but we
27591 could only assume view at last_label-1 is zero if we could
27592 assume calls always have length greater than one. This is
27593 probably true in general, though there might be a rare
27594 exception to this rule, e.g. if a call insn is optimized out
27595 by target magic. Then, even the -1 in the label will be
27596 wrong, which might invalidate the range. Anyway, using view,
27597 though technically possibly incorrect, will work as far as
27598 ranges go: since L-1 is in the middle of the call insn,
27599 (L-1).0 and (L-1).V shouldn't make any difference, and having
27600 the loclist entry refer to the .loc entry might be useful, so
27601 leave it like this. */
27602 newloc->view = view;
27605 if (var_loc_p && flag_debug_asm)
27607 const char *name, *sep, *patstr;
27608 if (decl && DECL_NAME (decl))
27609 name = IDENTIFIER_POINTER (DECL_NAME (decl));
27610 else
27611 name = "";
27612 if (NOTE_VAR_LOCATION_LOC (loc_note))
27614 sep = " => ";
27615 patstr = str_pattern_slim (NOTE_VAR_LOCATION_LOC (loc_note));
27617 else
27619 sep = " ";
27620 patstr = "RESET";
27622 fprintf (asm_out_file, "\t%s DEBUG %s%s%s\n", ASM_COMMENT_START,
27623 name, sep, patstr);
27626 last_var_location_insn = next_real;
27627 last_in_cold_section_p = in_cold_section_p;
27630 /* Check whether BLOCK, a lexical block, is nested within OUTER, or is
27631 OUTER itself. If BOTHWAYS, check not only that BLOCK can reach
27632 OUTER through BLOCK_SUPERCONTEXT links, but also that there is a
27633 path from OUTER to BLOCK through BLOCK_SUBBLOCKs and
27634 BLOCK_FRAGMENT_ORIGIN links. */
27635 static bool
27636 block_within_block_p (tree block, tree outer, bool bothways)
27638 if (block == outer)
27639 return true;
27641 /* Quickly check that OUTER is up BLOCK's supercontext chain. */
27642 for (tree context = BLOCK_SUPERCONTEXT (block);
27643 context != outer;
27644 context = BLOCK_SUPERCONTEXT (context))
27645 if (!context || TREE_CODE (context) != BLOCK)
27646 return false;
27648 if (!bothways)
27649 return true;
27651 /* Now check that each block is actually referenced by its
27652 parent. */
27653 for (tree context = BLOCK_SUPERCONTEXT (block); ;
27654 context = BLOCK_SUPERCONTEXT (context))
27656 if (BLOCK_FRAGMENT_ORIGIN (context))
27658 gcc_assert (!BLOCK_SUBBLOCKS (context));
27659 context = BLOCK_FRAGMENT_ORIGIN (context);
27661 for (tree sub = BLOCK_SUBBLOCKS (context);
27662 sub != block;
27663 sub = BLOCK_CHAIN (sub))
27664 if (!sub)
27665 return false;
27666 if (context == outer)
27667 return true;
27668 else
27669 block = context;
27673 /* Called during final while assembling the marker of the entry point
27674 for an inlined function. */
27676 static void
27677 dwarf2out_inline_entry (tree block)
27679 gcc_assert (debug_inline_points);
27681 /* If we can't represent it, don't bother. */
27682 if (!(dwarf_version >= 3 || !dwarf_strict))
27683 return;
27685 gcc_assert (DECL_P (block_ultimate_origin (block)));
27687 /* Sanity check the block tree. This would catch a case in which
27688 BLOCK got removed from the tree reachable from the outermost
27689 lexical block, but got retained in markers. It would still link
27690 back to its parents, but some ancestor would be missing a link
27691 down the path to the sub BLOCK. If the block got removed, its
27692 BLOCK_NUMBER will not be a usable value. */
27693 if (flag_checking)
27694 gcc_assert (block_within_block_p (block,
27695 DECL_INITIAL (current_function_decl),
27696 true));
27698 gcc_assert (inlined_function_outer_scope_p (block));
27699 gcc_assert (!lookup_block_die (block));
27701 if (BLOCK_FRAGMENT_ORIGIN (block))
27702 block = BLOCK_FRAGMENT_ORIGIN (block);
27703 /* Can the entry point ever not be at the beginning of an
27704 unfragmented lexical block? */
27705 else if (!(BLOCK_FRAGMENT_CHAIN (block)
27706 || (cur_line_info_table
27707 && !ZERO_VIEW_P (cur_line_info_table->view))))
27708 return;
27710 if (!inline_entry_data_table)
27711 inline_entry_data_table
27712 = hash_table<inline_entry_data_hasher>::create_ggc (10);
27715 inline_entry_data **iedp
27716 = inline_entry_data_table->find_slot_with_hash (block,
27717 htab_hash_pointer (block),
27718 INSERT);
27719 if (*iedp)
27720 /* ??? Ideally, we'd record all entry points for the same inlined
27721 function (some may have been duplicated by e.g. unrolling), but
27722 we have no way to represent that ATM. */
27723 return;
27725 inline_entry_data *ied = *iedp = ggc_cleared_alloc<inline_entry_data> ();
27726 ied->block = block;
27727 ied->label_pfx = BLOCK_INLINE_ENTRY_LABEL;
27728 ied->label_num = BLOCK_NUMBER (block);
27729 if (cur_line_info_table)
27730 ied->view = cur_line_info_table->view;
27732 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, BLOCK_INLINE_ENTRY_LABEL,
27733 BLOCK_NUMBER (block));
27736 /* Called from finalize_size_functions for size functions so that their body
27737 can be encoded in the debug info to describe the layout of variable-length
27738 structures. */
27740 static void
27741 dwarf2out_size_function (tree decl)
27743 function_to_dwarf_procedure (decl);
27746 /* Note in one location list that text section has changed. */
27749 var_location_switch_text_section_1 (var_loc_list **slot, void *)
27751 var_loc_list *list = *slot;
27752 if (list->first)
27753 list->last_before_switch
27754 = list->last->next ? list->last->next : list->last;
27755 return 1;
27758 /* Note in all location lists that text section has changed. */
27760 static void
27761 var_location_switch_text_section (void)
27763 if (decl_loc_table == NULL)
27764 return;
27766 decl_loc_table->traverse<void *, var_location_switch_text_section_1> (NULL);
27769 /* Create a new line number table. */
27771 static dw_line_info_table *
27772 new_line_info_table (void)
27774 dw_line_info_table *table;
27776 table = ggc_cleared_alloc<dw_line_info_table> ();
27777 table->file_num = 1;
27778 table->line_num = 1;
27779 table->is_stmt = DWARF_LINE_DEFAULT_IS_STMT_START;
27780 FORCE_RESET_NEXT_VIEW (table->view);
27781 table->symviews_since_reset = 0;
27783 return table;
27786 /* Lookup the "current" table into which we emit line info, so
27787 that we don't have to do it for every source line. */
27789 static void
27790 set_cur_line_info_table (section *sec)
27792 dw_line_info_table *table;
27794 if (sec == text_section)
27795 table = text_section_line_info;
27796 else if (sec == cold_text_section)
27798 table = cold_text_section_line_info;
27799 if (!table)
27801 cold_text_section_line_info = table = new_line_info_table ();
27802 table->end_label = cold_end_label;
27805 else
27807 const char *end_label;
27809 if (crtl->has_bb_partition)
27811 if (in_cold_section_p)
27812 end_label = crtl->subsections.cold_section_end_label;
27813 else
27814 end_label = crtl->subsections.hot_section_end_label;
27816 else
27818 char label[MAX_ARTIFICIAL_LABEL_BYTES];
27819 ASM_GENERATE_INTERNAL_LABEL (label, FUNC_END_LABEL,
27820 current_function_funcdef_no);
27821 end_label = ggc_strdup (label);
27824 table = new_line_info_table ();
27825 table->end_label = end_label;
27827 vec_safe_push (separate_line_info, table);
27830 if (output_asm_line_debug_info ())
27831 table->is_stmt = (cur_line_info_table
27832 ? cur_line_info_table->is_stmt
27833 : DWARF_LINE_DEFAULT_IS_STMT_START);
27834 cur_line_info_table = table;
27838 /* We need to reset the locations at the beginning of each
27839 function. We can't do this in the end_function hook, because the
27840 declarations that use the locations won't have been output when
27841 that hook is called. Also compute have_multiple_function_sections here. */
27843 static void
27844 dwarf2out_begin_function (tree fun)
27846 section *sec = function_section (fun);
27848 if (sec != text_section)
27849 have_multiple_function_sections = true;
27851 if (crtl->has_bb_partition && !cold_text_section)
27853 gcc_assert (current_function_decl == fun);
27854 cold_text_section = unlikely_text_section ();
27855 switch_to_section (cold_text_section);
27856 ASM_OUTPUT_LABEL (asm_out_file, cold_text_section_label);
27857 switch_to_section (sec);
27860 dwarf2out_note_section_used ();
27861 call_site_count = 0;
27862 tail_call_site_count = 0;
27864 set_cur_line_info_table (sec);
27865 FORCE_RESET_NEXT_VIEW (cur_line_info_table->view);
27868 /* Helper function of dwarf2out_end_function, called only after emitting
27869 the very first function into assembly. Check if some .debug_loc range
27870 might end with a .LVL* label that could be equal to .Ltext0.
27871 In that case we must force using absolute addresses in .debug_loc ranges,
27872 because this range could be .LVLN-.Ltext0 .. .LVLM-.Ltext0 for
27873 .LVLN == .LVLM == .Ltext0, thus 0 .. 0, which is a .debug_loc
27874 list terminator.
27875 Set have_multiple_function_sections to true in that case and
27876 terminate htab traversal. */
27879 find_empty_loc_ranges_at_text_label (var_loc_list **slot, int)
27881 var_loc_list *entry = *slot;
27882 struct var_loc_node *node;
27884 node = entry->first;
27885 if (node && node->next && node->next->label)
27887 unsigned int i;
27888 const char *label = node->next->label;
27889 char loclabel[MAX_ARTIFICIAL_LABEL_BYTES];
27891 for (i = 0; i < first_loclabel_num_not_at_text_label; i++)
27893 ASM_GENERATE_INTERNAL_LABEL (loclabel, "LVL", i);
27894 if (strcmp (label, loclabel) == 0)
27896 have_multiple_function_sections = true;
27897 return 0;
27901 return 1;
27904 /* Hook called after emitting a function into assembly.
27905 This does something only for the very first function emitted. */
27907 static void
27908 dwarf2out_end_function (unsigned int)
27910 if (in_first_function_p
27911 && !have_multiple_function_sections
27912 && first_loclabel_num_not_at_text_label
27913 && decl_loc_table)
27914 decl_loc_table->traverse<int, find_empty_loc_ranges_at_text_label> (0);
27915 in_first_function_p = false;
27916 maybe_at_text_label_p = false;
27919 /* Temporary holder for dwarf2out_register_main_translation_unit. Used to let
27920 front-ends register a translation unit even before dwarf2out_init is
27921 called. */
27922 static tree main_translation_unit = NULL_TREE;
27924 /* Hook called by front-ends after they built their main translation unit.
27925 Associate comp_unit_die to UNIT. */
27927 static void
27928 dwarf2out_register_main_translation_unit (tree unit)
27930 gcc_assert (TREE_CODE (unit) == TRANSLATION_UNIT_DECL
27931 && main_translation_unit == NULL_TREE);
27932 main_translation_unit = unit;
27933 /* If dwarf2out_init has not been called yet, it will perform the association
27934 itself looking at main_translation_unit. */
27935 if (decl_die_table != NULL)
27936 equate_decl_number_to_die (unit, comp_unit_die ());
27939 /* Add OPCODE+VAL as an entry at the end of the opcode array in TABLE. */
27941 static void
27942 push_dw_line_info_entry (dw_line_info_table *table,
27943 enum dw_line_info_opcode opcode, unsigned int val)
27945 dw_line_info_entry e;
27946 e.opcode = opcode;
27947 e.val = val;
27948 vec_safe_push (table->entries, e);
27951 /* Output a label to mark the beginning of a source code line entry
27952 and record information relating to this source line, in
27953 'line_info_table' for later output of the .debug_line section. */
27954 /* ??? The discriminator parameter ought to be unsigned. */
27956 static void
27957 dwarf2out_source_line (unsigned int line, unsigned int column,
27958 const char *filename,
27959 int discriminator, bool is_stmt)
27961 unsigned int file_num;
27962 dw_line_info_table *table;
27963 static var_loc_view lvugid;
27965 if (debug_info_level < DINFO_LEVEL_TERSE)
27966 return;
27968 table = cur_line_info_table;
27970 if (line == 0)
27972 if (debug_variable_location_views
27973 && output_asm_line_debug_info ()
27974 && table && !RESETTING_VIEW_P (table->view))
27976 /* If we're using the assembler to compute view numbers, we
27977 can't issue a .loc directive for line zero, so we can't
27978 get a view number at this point. We might attempt to
27979 compute it from the previous view, or equate it to a
27980 subsequent view (though it might not be there!), but
27981 since we're omitting the line number entry, we might as
27982 well omit the view number as well. That means pretending
27983 it's a view number zero, which might very well turn out
27984 to be correct. ??? Extend the assembler so that the
27985 compiler could emit e.g. ".locview .LVU#", to output a
27986 view without changing line number information. We'd then
27987 have to count it in symviews_since_reset; when it's omitted,
27988 it doesn't count. */
27989 if (!zero_view_p)
27990 zero_view_p = BITMAP_GGC_ALLOC ();
27991 bitmap_set_bit (zero_view_p, table->view);
27992 if (flag_debug_asm)
27994 char label[MAX_ARTIFICIAL_LABEL_BYTES];
27995 ASM_GENERATE_INTERNAL_LABEL (label, "LVU", table->view);
27996 fprintf (asm_out_file, "\t%s line 0, omitted view ",
27997 ASM_COMMENT_START);
27998 assemble_name (asm_out_file, label);
27999 putc ('\n', asm_out_file);
28001 table->view = ++lvugid;
28003 return;
28006 /* The discriminator column was added in dwarf4. Simplify the below
28007 by simply removing it if we're not supposed to output it. */
28008 if (dwarf_version < 4 && dwarf_strict)
28009 discriminator = 0;
28011 if (!debug_column_info)
28012 column = 0;
28014 file_num = maybe_emit_file (lookup_filename (filename));
28016 /* ??? TODO: Elide duplicate line number entries. Traditionally,
28017 the debugger has used the second (possibly duplicate) line number
28018 at the beginning of the function to mark the end of the prologue.
28019 We could eliminate any other duplicates within the function. For
28020 Dwarf3, we ought to include the DW_LNS_set_prologue_end mark in
28021 that second line number entry. */
28022 /* Recall that this end-of-prologue indication is *not* the same thing
28023 as the end_prologue debug hook. The NOTE_INSN_PROLOGUE_END note,
28024 to which the hook corresponds, follows the last insn that was
28025 emitted by gen_prologue. What we need is to precede the first insn
28026 that had been emitted after NOTE_INSN_FUNCTION_BEG, i.e. the first
28027 insn that corresponds to something the user wrote. These may be
28028 very different locations once scheduling is enabled. */
28030 if (0 && file_num == table->file_num
28031 && line == table->line_num
28032 && column == table->column_num
28033 && discriminator == table->discrim_num
28034 && is_stmt == table->is_stmt)
28035 return;
28037 switch_to_section (current_function_section ());
28039 /* If requested, emit something human-readable. */
28040 if (flag_debug_asm)
28042 if (debug_column_info)
28043 fprintf (asm_out_file, "\t%s %s:%d:%d\n", ASM_COMMENT_START,
28044 filename, line, column);
28045 else
28046 fprintf (asm_out_file, "\t%s %s:%d\n", ASM_COMMENT_START,
28047 filename, line);
28050 if (output_asm_line_debug_info ())
28052 /* Emit the .loc directive understood by GNU as. */
28053 /* "\t.loc %u %u 0 is_stmt %u discriminator %u",
28054 file_num, line, is_stmt, discriminator */
28055 fputs ("\t.loc ", asm_out_file);
28056 fprint_ul (asm_out_file, file_num);
28057 putc (' ', asm_out_file);
28058 fprint_ul (asm_out_file, line);
28059 putc (' ', asm_out_file);
28060 fprint_ul (asm_out_file, column);
28062 if (is_stmt != table->is_stmt)
28064 #if HAVE_GAS_LOC_STMT
28065 fputs (" is_stmt ", asm_out_file);
28066 putc (is_stmt ? '1' : '0', asm_out_file);
28067 #endif
28069 if (SUPPORTS_DISCRIMINATOR && discriminator != 0)
28071 gcc_assert (discriminator > 0);
28072 fputs (" discriminator ", asm_out_file);
28073 fprint_ul (asm_out_file, (unsigned long) discriminator);
28075 if (debug_variable_location_views)
28077 if (!RESETTING_VIEW_P (table->view))
28079 table->symviews_since_reset++;
28080 if (table->symviews_since_reset > symview_upper_bound)
28081 symview_upper_bound = table->symviews_since_reset;
28082 /* When we're using the assembler to compute view
28083 numbers, we output symbolic labels after "view" in
28084 .loc directives, and the assembler will set them for
28085 us, so that we can refer to the view numbers in
28086 location lists. The only exceptions are when we know
28087 a view will be zero: "-0" is a forced reset, used
28088 e.g. in the beginning of functions, whereas "0" tells
28089 the assembler to check that there was a PC change
28090 since the previous view, in a way that implicitly
28091 resets the next view. */
28092 fputs (" view ", asm_out_file);
28093 char label[MAX_ARTIFICIAL_LABEL_BYTES];
28094 ASM_GENERATE_INTERNAL_LABEL (label, "LVU", table->view);
28095 assemble_name (asm_out_file, label);
28096 table->view = ++lvugid;
28098 else
28100 table->symviews_since_reset = 0;
28101 if (FORCE_RESETTING_VIEW_P (table->view))
28102 fputs (" view -0", asm_out_file);
28103 else
28104 fputs (" view 0", asm_out_file);
28105 /* Mark the present view as a zero view. Earlier debug
28106 binds may have already added its id to loclists to be
28107 emitted later, so we can't reuse the id for something
28108 else. However, it's good to know whether a view is
28109 known to be zero, because then we may be able to
28110 optimize out locviews that are all zeros, so take
28111 note of it in zero_view_p. */
28112 if (!zero_view_p)
28113 zero_view_p = BITMAP_GGC_ALLOC ();
28114 bitmap_set_bit (zero_view_p, lvugid);
28115 table->view = ++lvugid;
28118 putc ('\n', asm_out_file);
28120 else
28122 unsigned int label_num = ++line_info_label_num;
28124 targetm.asm_out.internal_label (asm_out_file, LINE_CODE_LABEL, label_num);
28126 if (debug_variable_location_views && !RESETTING_VIEW_P (table->view))
28127 push_dw_line_info_entry (table, LI_adv_address, label_num);
28128 else
28129 push_dw_line_info_entry (table, LI_set_address, label_num);
28130 if (debug_variable_location_views)
28132 bool resetting = FORCE_RESETTING_VIEW_P (table->view);
28133 if (resetting)
28134 table->view = 0;
28136 if (flag_debug_asm)
28137 fprintf (asm_out_file, "\t%s view %s%d\n",
28138 ASM_COMMENT_START,
28139 resetting ? "-" : "",
28140 table->view);
28142 table->view++;
28144 if (file_num != table->file_num)
28145 push_dw_line_info_entry (table, LI_set_file, file_num);
28146 if (discriminator != table->discrim_num)
28147 push_dw_line_info_entry (table, LI_set_discriminator, discriminator);
28148 if (is_stmt != table->is_stmt)
28149 push_dw_line_info_entry (table, LI_negate_stmt, 0);
28150 push_dw_line_info_entry (table, LI_set_line, line);
28151 if (debug_column_info)
28152 push_dw_line_info_entry (table, LI_set_column, column);
28155 table->file_num = file_num;
28156 table->line_num = line;
28157 table->column_num = column;
28158 table->discrim_num = discriminator;
28159 table->is_stmt = is_stmt;
28160 table->in_use = true;
28163 /* Record the beginning of a new source file. */
28165 static void
28166 dwarf2out_start_source_file (unsigned int lineno, const char *filename)
28168 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
28170 macinfo_entry e;
28171 e.code = DW_MACINFO_start_file;
28172 e.lineno = lineno;
28173 e.info = ggc_strdup (filename);
28174 vec_safe_push (macinfo_table, e);
28178 /* Record the end of a source file. */
28180 static void
28181 dwarf2out_end_source_file (unsigned int lineno ATTRIBUTE_UNUSED)
28183 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
28185 macinfo_entry e;
28186 e.code = DW_MACINFO_end_file;
28187 e.lineno = lineno;
28188 e.info = NULL;
28189 vec_safe_push (macinfo_table, e);
28193 /* Called from debug_define in toplev.c. The `buffer' parameter contains
28194 the tail part of the directive line, i.e. the part which is past the
28195 initial whitespace, #, whitespace, directive-name, whitespace part. */
28197 static void
28198 dwarf2out_define (unsigned int lineno ATTRIBUTE_UNUSED,
28199 const char *buffer ATTRIBUTE_UNUSED)
28201 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
28203 macinfo_entry e;
28204 /* Insert a dummy first entry to be able to optimize the whole
28205 predefined macro block using DW_MACRO_import. */
28206 if (macinfo_table->is_empty () && lineno <= 1)
28208 e.code = 0;
28209 e.lineno = 0;
28210 e.info = NULL;
28211 vec_safe_push (macinfo_table, e);
28213 e.code = DW_MACINFO_define;
28214 e.lineno = lineno;
28215 e.info = ggc_strdup (buffer);
28216 vec_safe_push (macinfo_table, e);
28220 /* Called from debug_undef in toplev.c. The `buffer' parameter contains
28221 the tail part of the directive line, i.e. the part which is past the
28222 initial whitespace, #, whitespace, directive-name, whitespace part. */
28224 static void
28225 dwarf2out_undef (unsigned int lineno ATTRIBUTE_UNUSED,
28226 const char *buffer ATTRIBUTE_UNUSED)
28228 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
28230 macinfo_entry e;
28231 /* Insert a dummy first entry to be able to optimize the whole
28232 predefined macro block using DW_MACRO_import. */
28233 if (macinfo_table->is_empty () && lineno <= 1)
28235 e.code = 0;
28236 e.lineno = 0;
28237 e.info = NULL;
28238 vec_safe_push (macinfo_table, e);
28240 e.code = DW_MACINFO_undef;
28241 e.lineno = lineno;
28242 e.info = ggc_strdup (buffer);
28243 vec_safe_push (macinfo_table, e);
28247 /* Helpers to manipulate hash table of CUs. */
28249 struct macinfo_entry_hasher : nofree_ptr_hash <macinfo_entry>
28251 static inline hashval_t hash (const macinfo_entry *);
28252 static inline bool equal (const macinfo_entry *, const macinfo_entry *);
28255 inline hashval_t
28256 macinfo_entry_hasher::hash (const macinfo_entry *entry)
28258 return htab_hash_string (entry->info);
28261 inline bool
28262 macinfo_entry_hasher::equal (const macinfo_entry *entry1,
28263 const macinfo_entry *entry2)
28265 return !strcmp (entry1->info, entry2->info);
28268 typedef hash_table<macinfo_entry_hasher> macinfo_hash_type;
28270 /* Output a single .debug_macinfo entry. */
28272 static void
28273 output_macinfo_op (macinfo_entry *ref)
28275 int file_num;
28276 size_t len;
28277 struct indirect_string_node *node;
28278 char label[MAX_ARTIFICIAL_LABEL_BYTES];
28279 struct dwarf_file_data *fd;
28281 switch (ref->code)
28283 case DW_MACINFO_start_file:
28284 fd = lookup_filename (ref->info);
28285 file_num = maybe_emit_file (fd);
28286 dw2_asm_output_data (1, DW_MACINFO_start_file, "Start new file");
28287 dw2_asm_output_data_uleb128 (ref->lineno,
28288 "Included from line number %lu",
28289 (unsigned long) ref->lineno);
28290 dw2_asm_output_data_uleb128 (file_num, "file %s", ref->info);
28291 break;
28292 case DW_MACINFO_end_file:
28293 dw2_asm_output_data (1, DW_MACINFO_end_file, "End file");
28294 break;
28295 case DW_MACINFO_define:
28296 case DW_MACINFO_undef:
28297 len = strlen (ref->info) + 1;
28298 if (!dwarf_strict
28299 && len > DWARF_OFFSET_SIZE
28300 && !DWARF2_INDIRECT_STRING_SUPPORT_MISSING_ON_TARGET
28301 && (debug_str_section->common.flags & SECTION_MERGE) != 0)
28303 ref->code = ref->code == DW_MACINFO_define
28304 ? DW_MACRO_define_strp : DW_MACRO_undef_strp;
28305 output_macinfo_op (ref);
28306 return;
28308 dw2_asm_output_data (1, ref->code,
28309 ref->code == DW_MACINFO_define
28310 ? "Define macro" : "Undefine macro");
28311 dw2_asm_output_data_uleb128 (ref->lineno, "At line number %lu",
28312 (unsigned long) ref->lineno);
28313 dw2_asm_output_nstring (ref->info, -1, "The macro");
28314 break;
28315 case DW_MACRO_define_strp:
28316 case DW_MACRO_undef_strp:
28317 /* NB: dwarf2out_finish performs:
28318 1. save_macinfo_strings
28319 2. hash table traverse of index_string
28320 3. output_macinfo -> output_macinfo_op
28321 4. output_indirect_strings
28322 -> hash table traverse of output_index_string
28324 When output_macinfo_op is called, all index strings have been
28325 added to hash table by save_macinfo_strings and we can't pass
28326 INSERT to find_slot_with_hash which may expand hash table, even
28327 if no insertion is needed, and change hash table traverse order
28328 between index_string and output_index_string. */
28329 node = find_AT_string (ref->info, NO_INSERT);
28330 gcc_assert (node
28331 && (node->form == DW_FORM_strp
28332 || node->form == dwarf_FORM (DW_FORM_strx)));
28333 dw2_asm_output_data (1, ref->code,
28334 ref->code == DW_MACRO_define_strp
28335 ? "Define macro strp"
28336 : "Undefine macro strp");
28337 dw2_asm_output_data_uleb128 (ref->lineno, "At line number %lu",
28338 (unsigned long) ref->lineno);
28339 if (node->form == DW_FORM_strp)
28340 dw2_asm_output_offset (DWARF_OFFSET_SIZE, node->label,
28341 debug_str_section, "The macro: \"%s\"",
28342 ref->info);
28343 else
28344 dw2_asm_output_data_uleb128 (node->index, "The macro: \"%s\"",
28345 ref->info);
28346 break;
28347 case DW_MACRO_import:
28348 dw2_asm_output_data (1, ref->code, "Import");
28349 ASM_GENERATE_INTERNAL_LABEL (label,
28350 DEBUG_MACRO_SECTION_LABEL,
28351 ref->lineno + macinfo_label_base);
28352 dw2_asm_output_offset (DWARF_OFFSET_SIZE, label, NULL, NULL);
28353 break;
28354 default:
28355 fprintf (asm_out_file, "%s unrecognized macinfo code %lu\n",
28356 ASM_COMMENT_START, (unsigned long) ref->code);
28357 break;
28361 /* Attempt to make a sequence of define/undef macinfo ops shareable with
28362 other compilation unit .debug_macinfo sections. IDX is the first
28363 index of a define/undef, return the number of ops that should be
28364 emitted in a comdat .debug_macinfo section and emit
28365 a DW_MACRO_import entry referencing it.
28366 If the define/undef entry should be emitted normally, return 0. */
28368 static unsigned
28369 optimize_macinfo_range (unsigned int idx, vec<macinfo_entry, va_gc> *files,
28370 macinfo_hash_type **macinfo_htab)
28372 macinfo_entry *first, *second, *cur, *inc;
28373 char linebuf[sizeof (HOST_WIDE_INT) * 3 + 1];
28374 unsigned char checksum[16];
28375 struct md5_ctx ctx;
28376 char *grp_name, *tail;
28377 const char *base;
28378 unsigned int i, count, encoded_filename_len, linebuf_len;
28379 macinfo_entry **slot;
28381 first = &(*macinfo_table)[idx];
28382 second = &(*macinfo_table)[idx + 1];
28384 /* Optimize only if there are at least two consecutive define/undef ops,
28385 and either all of them are before first DW_MACINFO_start_file
28386 with lineno {0,1} (i.e. predefined macro block), or all of them are
28387 in some included header file. */
28388 if (second->code != DW_MACINFO_define && second->code != DW_MACINFO_undef)
28389 return 0;
28390 if (vec_safe_is_empty (files))
28392 if (first->lineno > 1 || second->lineno > 1)
28393 return 0;
28395 else if (first->lineno == 0)
28396 return 0;
28398 /* Find the last define/undef entry that can be grouped together
28399 with first and at the same time compute md5 checksum of their
28400 codes, linenumbers and strings. */
28401 md5_init_ctx (&ctx);
28402 for (i = idx; macinfo_table->iterate (i, &cur); i++)
28403 if (cur->code != DW_MACINFO_define && cur->code != DW_MACINFO_undef)
28404 break;
28405 else if (vec_safe_is_empty (files) && cur->lineno > 1)
28406 break;
28407 else
28409 unsigned char code = cur->code;
28410 md5_process_bytes (&code, 1, &ctx);
28411 checksum_uleb128 (cur->lineno, &ctx);
28412 md5_process_bytes (cur->info, strlen (cur->info) + 1, &ctx);
28414 md5_finish_ctx (&ctx, checksum);
28415 count = i - idx;
28417 /* From the containing include filename (if any) pick up just
28418 usable characters from its basename. */
28419 if (vec_safe_is_empty (files))
28420 base = "";
28421 else
28422 base = lbasename (files->last ().info);
28423 for (encoded_filename_len = 0, i = 0; base[i]; i++)
28424 if (ISIDNUM (base[i]) || base[i] == '.')
28425 encoded_filename_len++;
28426 /* Count . at the end. */
28427 if (encoded_filename_len)
28428 encoded_filename_len++;
28430 sprintf (linebuf, HOST_WIDE_INT_PRINT_UNSIGNED, first->lineno);
28431 linebuf_len = strlen (linebuf);
28433 /* The group name format is: wmN.[<encoded filename>.]<lineno>.<md5sum> */
28434 grp_name = XALLOCAVEC (char, 4 + encoded_filename_len + linebuf_len + 1
28435 + 16 * 2 + 1);
28436 memcpy (grp_name, DWARF_OFFSET_SIZE == 4 ? "wm4." : "wm8.", 4);
28437 tail = grp_name + 4;
28438 if (encoded_filename_len)
28440 for (i = 0; base[i]; i++)
28441 if (ISIDNUM (base[i]) || base[i] == '.')
28442 *tail++ = base[i];
28443 *tail++ = '.';
28445 memcpy (tail, linebuf, linebuf_len);
28446 tail += linebuf_len;
28447 *tail++ = '.';
28448 for (i = 0; i < 16; i++)
28449 sprintf (tail + i * 2, "%02x", checksum[i] & 0xff);
28451 /* Construct a macinfo_entry for DW_MACRO_import
28452 in the empty vector entry before the first define/undef. */
28453 inc = &(*macinfo_table)[idx - 1];
28454 inc->code = DW_MACRO_import;
28455 inc->lineno = 0;
28456 inc->info = ggc_strdup (grp_name);
28457 if (!*macinfo_htab)
28458 *macinfo_htab = new macinfo_hash_type (10);
28459 /* Avoid emitting duplicates. */
28460 slot = (*macinfo_htab)->find_slot (inc, INSERT);
28461 if (*slot != NULL)
28463 inc->code = 0;
28464 inc->info = NULL;
28465 /* If such an entry has been used before, just emit
28466 a DW_MACRO_import op. */
28467 inc = *slot;
28468 output_macinfo_op (inc);
28469 /* And clear all macinfo_entry in the range to avoid emitting them
28470 in the second pass. */
28471 for (i = idx; macinfo_table->iterate (i, &cur) && i < idx + count; i++)
28473 cur->code = 0;
28474 cur->info = NULL;
28477 else
28479 *slot = inc;
28480 inc->lineno = (*macinfo_htab)->elements ();
28481 output_macinfo_op (inc);
28483 return count;
28486 /* Save any strings needed by the macinfo table in the debug str
28487 table. All strings must be collected into the table by the time
28488 index_string is called. */
28490 static void
28491 save_macinfo_strings (void)
28493 unsigned len;
28494 unsigned i;
28495 macinfo_entry *ref;
28497 for (i = 0; macinfo_table && macinfo_table->iterate (i, &ref); i++)
28499 switch (ref->code)
28501 /* Match the logic in output_macinfo_op to decide on
28502 indirect strings. */
28503 case DW_MACINFO_define:
28504 case DW_MACINFO_undef:
28505 len = strlen (ref->info) + 1;
28506 if (!dwarf_strict
28507 && len > DWARF_OFFSET_SIZE
28508 && !DWARF2_INDIRECT_STRING_SUPPORT_MISSING_ON_TARGET
28509 && (debug_str_section->common.flags & SECTION_MERGE) != 0)
28510 set_indirect_string (find_AT_string (ref->info));
28511 break;
28512 case DW_MACINFO_start_file:
28513 /* -gsplit-dwarf -g3 will also output filename as indirect
28514 string. */
28515 if (!dwarf_split_debug_info)
28516 break;
28517 /* Fall through. */
28518 case DW_MACRO_define_strp:
28519 case DW_MACRO_undef_strp:
28520 set_indirect_string (find_AT_string (ref->info));
28521 break;
28522 default:
28523 break;
28528 /* Output macinfo section(s). */
28530 static void
28531 output_macinfo (const char *debug_line_label, bool early_lto_debug)
28533 unsigned i;
28534 unsigned long length = vec_safe_length (macinfo_table);
28535 macinfo_entry *ref;
28536 vec<macinfo_entry, va_gc> *files = NULL;
28537 macinfo_hash_type *macinfo_htab = NULL;
28538 char dl_section_ref[MAX_ARTIFICIAL_LABEL_BYTES];
28540 if (! length)
28541 return;
28543 /* output_macinfo* uses these interchangeably. */
28544 gcc_assert ((int) DW_MACINFO_define == (int) DW_MACRO_define
28545 && (int) DW_MACINFO_undef == (int) DW_MACRO_undef
28546 && (int) DW_MACINFO_start_file == (int) DW_MACRO_start_file
28547 && (int) DW_MACINFO_end_file == (int) DW_MACRO_end_file);
28549 /* AIX Assembler inserts the length, so adjust the reference to match the
28550 offset expected by debuggers. */
28551 strcpy (dl_section_ref, debug_line_label);
28552 if (XCOFF_DEBUGGING_INFO)
28553 strcat (dl_section_ref, DWARF_INITIAL_LENGTH_SIZE_STR);
28555 /* For .debug_macro emit the section header. */
28556 if (!dwarf_strict || dwarf_version >= 5)
28558 dw2_asm_output_data (2, dwarf_version >= 5 ? 5 : 4,
28559 "DWARF macro version number");
28560 if (DWARF_OFFSET_SIZE == 8)
28561 dw2_asm_output_data (1, 3, "Flags: 64-bit, lineptr present");
28562 else
28563 dw2_asm_output_data (1, 2, "Flags: 32-bit, lineptr present");
28564 dw2_asm_output_offset (DWARF_OFFSET_SIZE, debug_line_label,
28565 debug_line_section, NULL);
28568 /* In the first loop, it emits the primary .debug_macinfo section
28569 and after each emitted op the macinfo_entry is cleared.
28570 If a longer range of define/undef ops can be optimized using
28571 DW_MACRO_import, the DW_MACRO_import op is emitted and kept in
28572 the vector before the first define/undef in the range and the
28573 whole range of define/undef ops is not emitted and kept. */
28574 for (i = 0; macinfo_table->iterate (i, &ref); i++)
28576 switch (ref->code)
28578 case DW_MACINFO_start_file:
28579 vec_safe_push (files, *ref);
28580 break;
28581 case DW_MACINFO_end_file:
28582 if (!vec_safe_is_empty (files))
28583 files->pop ();
28584 break;
28585 case DW_MACINFO_define:
28586 case DW_MACINFO_undef:
28587 if ((!dwarf_strict || dwarf_version >= 5)
28588 && HAVE_COMDAT_GROUP
28589 && vec_safe_length (files) != 1
28590 && i > 0
28591 && i + 1 < length
28592 && (*macinfo_table)[i - 1].code == 0)
28594 unsigned count = optimize_macinfo_range (i, files, &macinfo_htab);
28595 if (count)
28597 i += count - 1;
28598 continue;
28601 break;
28602 case 0:
28603 /* A dummy entry may be inserted at the beginning to be able
28604 to optimize the whole block of predefined macros. */
28605 if (i == 0)
28606 continue;
28607 default:
28608 break;
28610 output_macinfo_op (ref);
28611 ref->info = NULL;
28612 ref->code = 0;
28615 if (!macinfo_htab)
28616 return;
28618 /* Save the number of transparent includes so we can adjust the
28619 label number for the fat LTO object DWARF. */
28620 unsigned macinfo_label_base_adj = macinfo_htab->elements ();
28622 delete macinfo_htab;
28623 macinfo_htab = NULL;
28625 /* If any DW_MACRO_import were used, on those DW_MACRO_import entries
28626 terminate the current chain and switch to a new comdat .debug_macinfo
28627 section and emit the define/undef entries within it. */
28628 for (i = 0; macinfo_table->iterate (i, &ref); i++)
28629 switch (ref->code)
28631 case 0:
28632 continue;
28633 case DW_MACRO_import:
28635 char label[MAX_ARTIFICIAL_LABEL_BYTES];
28636 tree comdat_key = get_identifier (ref->info);
28637 /* Terminate the previous .debug_macinfo section. */
28638 dw2_asm_output_data (1, 0, "End compilation unit");
28639 targetm.asm_out.named_section (debug_macinfo_section_name,
28640 SECTION_DEBUG
28641 | SECTION_LINKONCE
28642 | (early_lto_debug
28643 ? SECTION_EXCLUDE : 0),
28644 comdat_key);
28645 ASM_GENERATE_INTERNAL_LABEL (label,
28646 DEBUG_MACRO_SECTION_LABEL,
28647 ref->lineno + macinfo_label_base);
28648 ASM_OUTPUT_LABEL (asm_out_file, label);
28649 ref->code = 0;
28650 ref->info = NULL;
28651 dw2_asm_output_data (2, dwarf_version >= 5 ? 5 : 4,
28652 "DWARF macro version number");
28653 if (DWARF_OFFSET_SIZE == 8)
28654 dw2_asm_output_data (1, 1, "Flags: 64-bit");
28655 else
28656 dw2_asm_output_data (1, 0, "Flags: 32-bit");
28658 break;
28659 case DW_MACINFO_define:
28660 case DW_MACINFO_undef:
28661 output_macinfo_op (ref);
28662 ref->code = 0;
28663 ref->info = NULL;
28664 break;
28665 default:
28666 gcc_unreachable ();
28669 macinfo_label_base += macinfo_label_base_adj;
28672 /* Initialize the various sections and labels for dwarf output and prefix
28673 them with PREFIX if non-NULL. Returns the generation (zero based
28674 number of times function was called). */
28676 static unsigned
28677 init_sections_and_labels (bool early_lto_debug)
28679 /* As we may get called multiple times have a generation count for
28680 labels. */
28681 static unsigned generation = 0;
28683 if (early_lto_debug)
28685 if (!dwarf_split_debug_info)
28687 debug_info_section = get_section (DEBUG_LTO_INFO_SECTION,
28688 SECTION_DEBUG | SECTION_EXCLUDE,
28689 NULL);
28690 debug_abbrev_section = get_section (DEBUG_LTO_ABBREV_SECTION,
28691 SECTION_DEBUG | SECTION_EXCLUDE,
28692 NULL);
28693 debug_macinfo_section_name
28694 = ((dwarf_strict && dwarf_version < 5)
28695 ? DEBUG_LTO_MACINFO_SECTION : DEBUG_LTO_MACRO_SECTION);
28696 debug_macinfo_section = get_section (debug_macinfo_section_name,
28697 SECTION_DEBUG
28698 | SECTION_EXCLUDE, NULL);
28700 else
28702 /* ??? Which of the following do we need early? */
28703 debug_info_section = get_section (DEBUG_LTO_DWO_INFO_SECTION,
28704 SECTION_DEBUG | SECTION_EXCLUDE,
28705 NULL);
28706 debug_abbrev_section = get_section (DEBUG_LTO_DWO_ABBREV_SECTION,
28707 SECTION_DEBUG | SECTION_EXCLUDE,
28708 NULL);
28709 debug_skeleton_info_section = get_section (DEBUG_LTO_INFO_SECTION,
28710 SECTION_DEBUG
28711 | SECTION_EXCLUDE, NULL);
28712 debug_skeleton_abbrev_section
28713 = get_section (DEBUG_LTO_ABBREV_SECTION,
28714 SECTION_DEBUG | SECTION_EXCLUDE, NULL);
28715 ASM_GENERATE_INTERNAL_LABEL (debug_skeleton_abbrev_section_label,
28716 DEBUG_SKELETON_ABBREV_SECTION_LABEL,
28717 generation);
28719 /* Somewhat confusing detail: The skeleton_[abbrev|info] sections
28720 stay in the main .o, but the skeleton_line goes into the split
28721 off dwo. */
28722 debug_skeleton_line_section
28723 = get_section (DEBUG_LTO_LINE_SECTION,
28724 SECTION_DEBUG | SECTION_EXCLUDE, NULL);
28725 ASM_GENERATE_INTERNAL_LABEL (debug_skeleton_line_section_label,
28726 DEBUG_SKELETON_LINE_SECTION_LABEL,
28727 generation);
28728 debug_str_offsets_section
28729 = get_section (DEBUG_LTO_DWO_STR_OFFSETS_SECTION,
28730 SECTION_DEBUG | SECTION_EXCLUDE,
28731 NULL);
28732 ASM_GENERATE_INTERNAL_LABEL (debug_skeleton_info_section_label,
28733 DEBUG_SKELETON_INFO_SECTION_LABEL,
28734 generation);
28735 debug_str_dwo_section = get_section (DEBUG_LTO_STR_DWO_SECTION,
28736 DEBUG_STR_DWO_SECTION_FLAGS,
28737 NULL);
28738 debug_macinfo_section_name
28739 = ((dwarf_strict && dwarf_version < 5)
28740 ? DEBUG_LTO_DWO_MACINFO_SECTION : DEBUG_LTO_DWO_MACRO_SECTION);
28741 debug_macinfo_section = get_section (debug_macinfo_section_name,
28742 SECTION_DEBUG | SECTION_EXCLUDE,
28743 NULL);
28745 /* For macro info and the file table we have to refer to a
28746 debug_line section. */
28747 debug_line_section = get_section (DEBUG_LTO_LINE_SECTION,
28748 SECTION_DEBUG | SECTION_EXCLUDE, NULL);
28749 ASM_GENERATE_INTERNAL_LABEL (debug_line_section_label,
28750 DEBUG_LINE_SECTION_LABEL, generation);
28752 debug_str_section = get_section (DEBUG_LTO_STR_SECTION,
28753 DEBUG_STR_SECTION_FLAGS
28754 | SECTION_EXCLUDE, NULL);
28755 if (!dwarf_split_debug_info)
28756 debug_line_str_section
28757 = get_section (DEBUG_LTO_LINE_STR_SECTION,
28758 DEBUG_STR_SECTION_FLAGS | SECTION_EXCLUDE, NULL);
28760 else
28762 if (!dwarf_split_debug_info)
28764 debug_info_section = get_section (DEBUG_INFO_SECTION,
28765 SECTION_DEBUG, NULL);
28766 debug_abbrev_section = get_section (DEBUG_ABBREV_SECTION,
28767 SECTION_DEBUG, NULL);
28768 debug_loc_section = get_section (dwarf_version >= 5
28769 ? DEBUG_LOCLISTS_SECTION
28770 : DEBUG_LOC_SECTION,
28771 SECTION_DEBUG, NULL);
28772 debug_macinfo_section_name
28773 = ((dwarf_strict && dwarf_version < 5)
28774 ? DEBUG_MACINFO_SECTION : DEBUG_MACRO_SECTION);
28775 debug_macinfo_section = get_section (debug_macinfo_section_name,
28776 SECTION_DEBUG, NULL);
28778 else
28780 debug_info_section = get_section (DEBUG_DWO_INFO_SECTION,
28781 SECTION_DEBUG | SECTION_EXCLUDE,
28782 NULL);
28783 debug_abbrev_section = get_section (DEBUG_DWO_ABBREV_SECTION,
28784 SECTION_DEBUG | SECTION_EXCLUDE,
28785 NULL);
28786 debug_addr_section = get_section (DEBUG_ADDR_SECTION,
28787 SECTION_DEBUG, NULL);
28788 debug_skeleton_info_section = get_section (DEBUG_INFO_SECTION,
28789 SECTION_DEBUG, NULL);
28790 debug_skeleton_abbrev_section = get_section (DEBUG_ABBREV_SECTION,
28791 SECTION_DEBUG, NULL);
28792 ASM_GENERATE_INTERNAL_LABEL (debug_skeleton_abbrev_section_label,
28793 DEBUG_SKELETON_ABBREV_SECTION_LABEL,
28794 generation);
28796 /* Somewhat confusing detail: The skeleton_[abbrev|info] sections
28797 stay in the main .o, but the skeleton_line goes into the
28798 split off dwo. */
28799 debug_skeleton_line_section
28800 = get_section (DEBUG_DWO_LINE_SECTION,
28801 SECTION_DEBUG | SECTION_EXCLUDE, NULL);
28802 ASM_GENERATE_INTERNAL_LABEL (debug_skeleton_line_section_label,
28803 DEBUG_SKELETON_LINE_SECTION_LABEL,
28804 generation);
28805 debug_str_offsets_section
28806 = get_section (DEBUG_DWO_STR_OFFSETS_SECTION,
28807 SECTION_DEBUG | SECTION_EXCLUDE, NULL);
28808 ASM_GENERATE_INTERNAL_LABEL (debug_skeleton_info_section_label,
28809 DEBUG_SKELETON_INFO_SECTION_LABEL,
28810 generation);
28811 debug_loc_section = get_section (dwarf_version >= 5
28812 ? DEBUG_DWO_LOCLISTS_SECTION
28813 : DEBUG_DWO_LOC_SECTION,
28814 SECTION_DEBUG | SECTION_EXCLUDE,
28815 NULL);
28816 debug_str_dwo_section = get_section (DEBUG_STR_DWO_SECTION,
28817 DEBUG_STR_DWO_SECTION_FLAGS,
28818 NULL);
28819 debug_macinfo_section_name
28820 = ((dwarf_strict && dwarf_version < 5)
28821 ? DEBUG_DWO_MACINFO_SECTION : DEBUG_DWO_MACRO_SECTION);
28822 debug_macinfo_section = get_section (debug_macinfo_section_name,
28823 SECTION_DEBUG | SECTION_EXCLUDE,
28824 NULL);
28826 debug_aranges_section = get_section (DEBUG_ARANGES_SECTION,
28827 SECTION_DEBUG, NULL);
28828 debug_line_section = get_section (DEBUG_LINE_SECTION,
28829 SECTION_DEBUG, NULL);
28830 debug_pubnames_section = get_section (DEBUG_PUBNAMES_SECTION,
28831 SECTION_DEBUG, NULL);
28832 debug_pubtypes_section = get_section (DEBUG_PUBTYPES_SECTION,
28833 SECTION_DEBUG, NULL);
28834 debug_str_section = get_section (DEBUG_STR_SECTION,
28835 DEBUG_STR_SECTION_FLAGS, NULL);
28836 if (!dwarf_split_debug_info && !output_asm_line_debug_info ())
28837 debug_line_str_section = get_section (DEBUG_LINE_STR_SECTION,
28838 DEBUG_STR_SECTION_FLAGS, NULL);
28840 debug_ranges_section = get_section (dwarf_version >= 5
28841 ? DEBUG_RNGLISTS_SECTION
28842 : DEBUG_RANGES_SECTION,
28843 SECTION_DEBUG, NULL);
28844 debug_frame_section = get_section (DEBUG_FRAME_SECTION,
28845 SECTION_DEBUG, NULL);
28848 ASM_GENERATE_INTERNAL_LABEL (abbrev_section_label,
28849 DEBUG_ABBREV_SECTION_LABEL, generation);
28850 ASM_GENERATE_INTERNAL_LABEL (debug_info_section_label,
28851 DEBUG_INFO_SECTION_LABEL, generation);
28852 info_section_emitted = false;
28853 ASM_GENERATE_INTERNAL_LABEL (debug_line_section_label,
28854 DEBUG_LINE_SECTION_LABEL, generation);
28855 /* There are up to 4 unique ranges labels per generation.
28856 See also output_rnglists. */
28857 ASM_GENERATE_INTERNAL_LABEL (ranges_section_label,
28858 DEBUG_RANGES_SECTION_LABEL, generation * 4);
28859 if (dwarf_version >= 5 && dwarf_split_debug_info)
28860 ASM_GENERATE_INTERNAL_LABEL (ranges_base_label,
28861 DEBUG_RANGES_SECTION_LABEL,
28862 1 + generation * 4);
28863 ASM_GENERATE_INTERNAL_LABEL (debug_addr_section_label,
28864 DEBUG_ADDR_SECTION_LABEL, generation);
28865 ASM_GENERATE_INTERNAL_LABEL (macinfo_section_label,
28866 (dwarf_strict && dwarf_version < 5)
28867 ? DEBUG_MACINFO_SECTION_LABEL
28868 : DEBUG_MACRO_SECTION_LABEL, generation);
28869 ASM_GENERATE_INTERNAL_LABEL (loc_section_label, DEBUG_LOC_SECTION_LABEL,
28870 generation);
28872 ++generation;
28873 return generation - 1;
28876 /* Set up for Dwarf output at the start of compilation. */
28878 static void
28879 dwarf2out_init (const char *filename ATTRIBUTE_UNUSED)
28881 /* Allocate the file_table. */
28882 file_table = hash_table<dwarf_file_hasher>::create_ggc (50);
28884 #ifndef DWARF2_LINENO_DEBUGGING_INFO
28885 /* Allocate the decl_die_table. */
28886 decl_die_table = hash_table<decl_die_hasher>::create_ggc (10);
28888 /* Allocate the decl_loc_table. */
28889 decl_loc_table = hash_table<decl_loc_hasher>::create_ggc (10);
28891 /* Allocate the cached_dw_loc_list_table. */
28892 cached_dw_loc_list_table = hash_table<dw_loc_list_hasher>::create_ggc (10);
28894 /* Allocate the initial hunk of the abbrev_die_table. */
28895 vec_alloc (abbrev_die_table, 256);
28896 /* Zero-th entry is allocated, but unused. */
28897 abbrev_die_table->quick_push (NULL);
28899 /* Allocate the dwarf_proc_stack_usage_map. */
28900 dwarf_proc_stack_usage_map = new hash_map<dw_die_ref, int>;
28902 /* Allocate the pubtypes and pubnames vectors. */
28903 vec_alloc (pubname_table, 32);
28904 vec_alloc (pubtype_table, 32);
28906 vec_alloc (incomplete_types, 64);
28908 vec_alloc (used_rtx_array, 32);
28910 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
28911 vec_alloc (macinfo_table, 64);
28912 #endif
28914 /* If front-ends already registered a main translation unit but we were not
28915 ready to perform the association, do this now. */
28916 if (main_translation_unit != NULL_TREE)
28917 equate_decl_number_to_die (main_translation_unit, comp_unit_die ());
28920 /* Called before compile () starts outputtting functions, variables
28921 and toplevel asms into assembly. */
28923 static void
28924 dwarf2out_assembly_start (void)
28926 if (text_section_line_info)
28927 return;
28929 #ifndef DWARF2_LINENO_DEBUGGING_INFO
28930 ASM_GENERATE_INTERNAL_LABEL (text_section_label, TEXT_SECTION_LABEL, 0);
28931 ASM_GENERATE_INTERNAL_LABEL (text_end_label, TEXT_END_LABEL, 0);
28932 ASM_GENERATE_INTERNAL_LABEL (cold_text_section_label,
28933 COLD_TEXT_SECTION_LABEL, 0);
28934 ASM_GENERATE_INTERNAL_LABEL (cold_end_label, COLD_END_LABEL, 0);
28936 switch_to_section (text_section);
28937 ASM_OUTPUT_LABEL (asm_out_file, text_section_label);
28938 #endif
28940 /* Make sure the line number table for .text always exists. */
28941 text_section_line_info = new_line_info_table ();
28942 text_section_line_info->end_label = text_end_label;
28944 #ifdef DWARF2_LINENO_DEBUGGING_INFO
28945 cur_line_info_table = text_section_line_info;
28946 #endif
28948 if (HAVE_GAS_CFI_SECTIONS_DIRECTIVE
28949 && dwarf2out_do_cfi_asm ()
28950 && !dwarf2out_do_eh_frame ())
28951 fprintf (asm_out_file, "\t.cfi_sections\t.debug_frame\n");
28954 /* A helper function for dwarf2out_finish called through
28955 htab_traverse. Assign a string its index. All strings must be
28956 collected into the table by the time index_string is called,
28957 because the indexing code relies on htab_traverse to traverse nodes
28958 in the same order for each run. */
28961 index_string (indirect_string_node **h, unsigned int *index)
28963 indirect_string_node *node = *h;
28965 find_string_form (node);
28966 if (node->form == dwarf_FORM (DW_FORM_strx) && node->refcount > 0)
28968 gcc_assert (node->index == NO_INDEX_ASSIGNED);
28969 node->index = *index;
28970 *index += 1;
28972 return 1;
28975 /* A helper function for output_indirect_strings called through
28976 htab_traverse. Output the offset to a string and update the
28977 current offset. */
28980 output_index_string_offset (indirect_string_node **h, unsigned int *offset)
28982 indirect_string_node *node = *h;
28984 if (node->form == dwarf_FORM (DW_FORM_strx) && node->refcount > 0)
28986 /* Assert that this node has been assigned an index. */
28987 gcc_assert (node->index != NO_INDEX_ASSIGNED
28988 && node->index != NOT_INDEXED);
28989 dw2_asm_output_data (DWARF_OFFSET_SIZE, *offset,
28990 "indexed string 0x%x: %s", node->index, node->str);
28991 *offset += strlen (node->str) + 1;
28993 return 1;
28996 /* A helper function for dwarf2out_finish called through
28997 htab_traverse. Output the indexed string. */
29000 output_index_string (indirect_string_node **h, unsigned int *cur_idx)
29002 struct indirect_string_node *node = *h;
29004 if (node->form == dwarf_FORM (DW_FORM_strx) && node->refcount > 0)
29006 /* Assert that the strings are output in the same order as their
29007 indexes were assigned. */
29008 gcc_assert (*cur_idx == node->index);
29009 assemble_string (node->str, strlen (node->str) + 1);
29010 *cur_idx += 1;
29012 return 1;
29015 /* A helper function for output_indirect_strings. Counts the number
29016 of index strings offsets. Must match the logic of the functions
29017 output_index_string[_offsets] above. */
29019 count_index_strings (indirect_string_node **h, unsigned int *last_idx)
29021 struct indirect_string_node *node = *h;
29023 if (node->form == dwarf_FORM (DW_FORM_strx) && node->refcount > 0)
29024 *last_idx += 1;
29025 return 1;
29028 /* A helper function for dwarf2out_finish called through
29029 htab_traverse. Emit one queued .debug_str string. */
29032 output_indirect_string (indirect_string_node **h, enum dwarf_form form)
29034 struct indirect_string_node *node = *h;
29036 node->form = find_string_form (node);
29037 if (node->form == form && node->refcount > 0)
29039 ASM_OUTPUT_LABEL (asm_out_file, node->label);
29040 assemble_string (node->str, strlen (node->str) + 1);
29043 return 1;
29046 /* Output the indexed string table. */
29048 static void
29049 output_indirect_strings (void)
29051 switch_to_section (debug_str_section);
29052 if (!dwarf_split_debug_info)
29053 debug_str_hash->traverse<enum dwarf_form,
29054 output_indirect_string> (DW_FORM_strp);
29055 else
29057 unsigned int offset = 0;
29058 unsigned int cur_idx = 0;
29060 if (skeleton_debug_str_hash)
29061 skeleton_debug_str_hash->traverse<enum dwarf_form,
29062 output_indirect_string> (DW_FORM_strp);
29064 switch_to_section (debug_str_offsets_section);
29065 /* For DWARF5 the .debug_str_offsets[.dwo] section needs a unit
29066 header. Note that we don't need to generate a label to the
29067 actual index table following the header here, because this is
29068 for the split dwarf case only. In an .dwo file there is only
29069 one string offsets table (and one debug info section). But
29070 if we would start using string offset tables for the main (or
29071 skeleton) unit, then we have to add a DW_AT_str_offsets_base
29072 pointing to the actual index after the header. Split dwarf
29073 units will never have a string offsets base attribute. When
29074 a split unit is moved into a .dwp file the string offsets can
29075 be found through the .debug_cu_index section table. */
29076 if (dwarf_version >= 5)
29078 unsigned int last_idx = 0;
29079 unsigned long str_offsets_length;
29081 debug_str_hash->traverse_noresize
29082 <unsigned int *, count_index_strings> (&last_idx);
29083 str_offsets_length = last_idx * DWARF_OFFSET_SIZE + 4;
29084 if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
29085 dw2_asm_output_data (4, 0xffffffff,
29086 "Escape value for 64-bit DWARF extension");
29087 dw2_asm_output_data (DWARF_OFFSET_SIZE, str_offsets_length,
29088 "Length of string offsets unit");
29089 dw2_asm_output_data (2, 5, "DWARF string offsets version");
29090 dw2_asm_output_data (2, 0, "Header zero padding");
29092 debug_str_hash->traverse_noresize
29093 <unsigned int *, output_index_string_offset> (&offset);
29094 switch_to_section (debug_str_dwo_section);
29095 debug_str_hash->traverse_noresize<unsigned int *, output_index_string>
29096 (&cur_idx);
29100 /* Callback for htab_traverse to assign an index to an entry in the
29101 table, and to write that entry to the .debug_addr section. */
29104 output_addr_table_entry (addr_table_entry **slot, unsigned int *cur_index)
29106 addr_table_entry *entry = *slot;
29108 if (entry->refcount == 0)
29110 gcc_assert (entry->index == NO_INDEX_ASSIGNED
29111 || entry->index == NOT_INDEXED);
29112 return 1;
29115 gcc_assert (entry->index == *cur_index);
29116 (*cur_index)++;
29118 switch (entry->kind)
29120 case ate_kind_rtx:
29121 dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE, entry->addr.rtl,
29122 "0x%x", entry->index);
29123 break;
29124 case ate_kind_rtx_dtprel:
29125 gcc_assert (targetm.asm_out.output_dwarf_dtprel);
29126 targetm.asm_out.output_dwarf_dtprel (asm_out_file,
29127 DWARF2_ADDR_SIZE,
29128 entry->addr.rtl);
29129 fputc ('\n', asm_out_file);
29130 break;
29131 case ate_kind_label:
29132 dw2_asm_output_addr (DWARF2_ADDR_SIZE, entry->addr.label,
29133 "0x%x", entry->index);
29134 break;
29135 default:
29136 gcc_unreachable ();
29138 return 1;
29141 /* A helper function for dwarf2out_finish. Counts the number
29142 of indexed addresses. Must match the logic of the functions
29143 output_addr_table_entry above. */
29145 count_index_addrs (addr_table_entry **slot, unsigned int *last_idx)
29147 addr_table_entry *entry = *slot;
29149 if (entry->refcount > 0)
29150 *last_idx += 1;
29151 return 1;
29154 /* Produce the .debug_addr section. */
29156 static void
29157 output_addr_table (void)
29159 unsigned int index = 0;
29160 if (addr_index_table == NULL || addr_index_table->size () == 0)
29161 return;
29163 switch_to_section (debug_addr_section);
29164 /* GNU DebugFission https://gcc.gnu.org/wiki/DebugFission
29165 which GCC uses to implement -gsplit-dwarf as DWARF GNU extension
29166 before DWARF5, didn't have a header for .debug_addr units.
29167 DWARF5 specifies a small header when address tables are used. */
29168 if (dwarf_version >= 5)
29170 unsigned int last_idx = 0;
29171 unsigned long addrs_length;
29173 addr_index_table->traverse_noresize
29174 <unsigned int *, count_index_addrs> (&last_idx);
29175 addrs_length = last_idx * DWARF2_ADDR_SIZE + 4;
29177 if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
29178 dw2_asm_output_data (4, 0xffffffff,
29179 "Escape value for 64-bit DWARF extension");
29180 dw2_asm_output_data (DWARF_OFFSET_SIZE, addrs_length,
29181 "Length of Address Unit");
29182 dw2_asm_output_data (2, 5, "DWARF addr version");
29183 dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Size of Address");
29184 dw2_asm_output_data (1, 0, "Size of Segment Descriptor");
29186 ASM_OUTPUT_LABEL (asm_out_file, debug_addr_section_label);
29188 addr_index_table
29189 ->traverse_noresize<unsigned int *, output_addr_table_entry> (&index);
29192 #if ENABLE_ASSERT_CHECKING
29193 /* Verify that all marks are clear. */
29195 static void
29196 verify_marks_clear (dw_die_ref die)
29198 dw_die_ref c;
29200 gcc_assert (! die->die_mark);
29201 FOR_EACH_CHILD (die, c, verify_marks_clear (c));
29203 #endif /* ENABLE_ASSERT_CHECKING */
29205 /* Clear the marks for a die and its children.
29206 Be cool if the mark isn't set. */
29208 static void
29209 prune_unmark_dies (dw_die_ref die)
29211 dw_die_ref c;
29213 if (die->die_mark)
29214 die->die_mark = 0;
29215 FOR_EACH_CHILD (die, c, prune_unmark_dies (c));
29218 /* Given LOC that is referenced by a DIE we're marking as used, find all
29219 referenced DWARF procedures it references and mark them as used. */
29221 static void
29222 prune_unused_types_walk_loc_descr (dw_loc_descr_ref loc)
29224 for (; loc != NULL; loc = loc->dw_loc_next)
29225 switch (loc->dw_loc_opc)
29227 case DW_OP_implicit_pointer:
29228 case DW_OP_convert:
29229 case DW_OP_reinterpret:
29230 case DW_OP_GNU_implicit_pointer:
29231 case DW_OP_GNU_convert:
29232 case DW_OP_GNU_reinterpret:
29233 if (loc->dw_loc_oprnd1.val_class == dw_val_class_die_ref)
29234 prune_unused_types_mark (loc->dw_loc_oprnd1.v.val_die_ref.die, 1);
29235 break;
29236 case DW_OP_GNU_variable_value:
29237 if (loc->dw_loc_oprnd1.val_class == dw_val_class_decl_ref)
29239 dw_die_ref ref
29240 = lookup_decl_die (loc->dw_loc_oprnd1.v.val_decl_ref);
29241 if (ref == NULL)
29242 break;
29243 loc->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
29244 loc->dw_loc_oprnd1.v.val_die_ref.die = ref;
29245 loc->dw_loc_oprnd1.v.val_die_ref.external = 0;
29247 /* FALLTHRU */
29248 case DW_OP_call2:
29249 case DW_OP_call4:
29250 case DW_OP_call_ref:
29251 case DW_OP_const_type:
29252 case DW_OP_GNU_const_type:
29253 case DW_OP_GNU_parameter_ref:
29254 gcc_assert (loc->dw_loc_oprnd1.val_class == dw_val_class_die_ref);
29255 prune_unused_types_mark (loc->dw_loc_oprnd1.v.val_die_ref.die, 1);
29256 break;
29257 case DW_OP_regval_type:
29258 case DW_OP_deref_type:
29259 case DW_OP_GNU_regval_type:
29260 case DW_OP_GNU_deref_type:
29261 gcc_assert (loc->dw_loc_oprnd2.val_class == dw_val_class_die_ref);
29262 prune_unused_types_mark (loc->dw_loc_oprnd2.v.val_die_ref.die, 1);
29263 break;
29264 case DW_OP_entry_value:
29265 case DW_OP_GNU_entry_value:
29266 gcc_assert (loc->dw_loc_oprnd1.val_class == dw_val_class_loc);
29267 prune_unused_types_walk_loc_descr (loc->dw_loc_oprnd1.v.val_loc);
29268 break;
29269 default:
29270 break;
29274 /* Given DIE that we're marking as used, find any other dies
29275 it references as attributes and mark them as used. */
29277 static void
29278 prune_unused_types_walk_attribs (dw_die_ref die)
29280 dw_attr_node *a;
29281 unsigned ix;
29283 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
29285 switch (AT_class (a))
29287 /* Make sure DWARF procedures referenced by location descriptions will
29288 get emitted. */
29289 case dw_val_class_loc:
29290 prune_unused_types_walk_loc_descr (AT_loc (a));
29291 break;
29292 case dw_val_class_loc_list:
29293 for (dw_loc_list_ref list = AT_loc_list (a);
29294 list != NULL;
29295 list = list->dw_loc_next)
29296 prune_unused_types_walk_loc_descr (list->expr);
29297 break;
29299 case dw_val_class_view_list:
29300 /* This points to a loc_list in another attribute, so it's
29301 already covered. */
29302 break;
29304 case dw_val_class_die_ref:
29305 /* A reference to another DIE.
29306 Make sure that it will get emitted.
29307 If it was broken out into a comdat group, don't follow it. */
29308 if (! AT_ref (a)->comdat_type_p
29309 || a->dw_attr == DW_AT_specification)
29310 prune_unused_types_mark (a->dw_attr_val.v.val_die_ref.die, 1);
29311 break;
29313 case dw_val_class_str:
29314 /* Set the string's refcount to 0 so that prune_unused_types_mark
29315 accounts properly for it. */
29316 a->dw_attr_val.v.val_str->refcount = 0;
29317 break;
29319 default:
29320 break;
29325 /* Mark the generic parameters and arguments children DIEs of DIE. */
29327 static void
29328 prune_unused_types_mark_generic_parms_dies (dw_die_ref die)
29330 dw_die_ref c;
29332 if (die == NULL || die->die_child == NULL)
29333 return;
29334 c = die->die_child;
29337 if (is_template_parameter (c))
29338 prune_unused_types_mark (c, 1);
29339 c = c->die_sib;
29340 } while (c && c != die->die_child);
29343 /* Mark DIE as being used. If DOKIDS is true, then walk down
29344 to DIE's children. */
29346 static void
29347 prune_unused_types_mark (dw_die_ref die, int dokids)
29349 dw_die_ref c;
29351 if (die->die_mark == 0)
29353 /* We haven't done this node yet. Mark it as used. */
29354 die->die_mark = 1;
29355 /* If this is the DIE of a generic type instantiation,
29356 mark the children DIEs that describe its generic parms and
29357 args. */
29358 prune_unused_types_mark_generic_parms_dies (die);
29360 /* We also have to mark its parents as used.
29361 (But we don't want to mark our parent's kids due to this,
29362 unless it is a class.) */
29363 if (die->die_parent)
29364 prune_unused_types_mark (die->die_parent,
29365 class_scope_p (die->die_parent));
29367 /* Mark any referenced nodes. */
29368 prune_unused_types_walk_attribs (die);
29370 /* If this node is a specification,
29371 also mark the definition, if it exists. */
29372 if (get_AT_flag (die, DW_AT_declaration) && die->die_definition)
29373 prune_unused_types_mark (die->die_definition, 1);
29376 if (dokids && die->die_mark != 2)
29378 /* We need to walk the children, but haven't done so yet.
29379 Remember that we've walked the kids. */
29380 die->die_mark = 2;
29382 /* If this is an array type, we need to make sure our
29383 kids get marked, even if they're types. If we're
29384 breaking out types into comdat sections, do this
29385 for all type definitions. */
29386 if (die->die_tag == DW_TAG_array_type
29387 || (use_debug_types
29388 && is_type_die (die) && ! is_declaration_die (die)))
29389 FOR_EACH_CHILD (die, c, prune_unused_types_mark (c, 1));
29390 else
29391 FOR_EACH_CHILD (die, c, prune_unused_types_walk (c));
29395 /* For local classes, look if any static member functions were emitted
29396 and if so, mark them. */
29398 static void
29399 prune_unused_types_walk_local_classes (dw_die_ref die)
29401 dw_die_ref c;
29403 if (die->die_mark == 2)
29404 return;
29406 switch (die->die_tag)
29408 case DW_TAG_structure_type:
29409 case DW_TAG_union_type:
29410 case DW_TAG_class_type:
29411 case DW_TAG_interface_type:
29412 break;
29414 case DW_TAG_subprogram:
29415 if (!get_AT_flag (die, DW_AT_declaration)
29416 || die->die_definition != NULL)
29417 prune_unused_types_mark (die, 1);
29418 return;
29420 default:
29421 return;
29424 /* Mark children. */
29425 FOR_EACH_CHILD (die, c, prune_unused_types_walk_local_classes (c));
29428 /* Walk the tree DIE and mark types that we actually use. */
29430 static void
29431 prune_unused_types_walk (dw_die_ref die)
29433 dw_die_ref c;
29435 /* Don't do anything if this node is already marked and
29436 children have been marked as well. */
29437 if (die->die_mark == 2)
29438 return;
29440 switch (die->die_tag)
29442 case DW_TAG_structure_type:
29443 case DW_TAG_union_type:
29444 case DW_TAG_class_type:
29445 case DW_TAG_interface_type:
29446 if (die->die_perennial_p)
29447 break;
29449 for (c = die->die_parent; c; c = c->die_parent)
29450 if (c->die_tag == DW_TAG_subprogram)
29451 break;
29453 /* Finding used static member functions inside of classes
29454 is needed just for local classes, because for other classes
29455 static member function DIEs with DW_AT_specification
29456 are emitted outside of the DW_TAG_*_type. If we ever change
29457 it, we'd need to call this even for non-local classes. */
29458 if (c)
29459 prune_unused_types_walk_local_classes (die);
29461 /* It's a type node --- don't mark it. */
29462 return;
29464 case DW_TAG_const_type:
29465 case DW_TAG_packed_type:
29466 case DW_TAG_pointer_type:
29467 case DW_TAG_reference_type:
29468 case DW_TAG_rvalue_reference_type:
29469 case DW_TAG_volatile_type:
29470 case DW_TAG_typedef:
29471 case DW_TAG_array_type:
29472 case DW_TAG_friend:
29473 case DW_TAG_enumeration_type:
29474 case DW_TAG_subroutine_type:
29475 case DW_TAG_string_type:
29476 case DW_TAG_set_type:
29477 case DW_TAG_subrange_type:
29478 case DW_TAG_ptr_to_member_type:
29479 case DW_TAG_file_type:
29480 /* Type nodes are useful only when other DIEs reference them --- don't
29481 mark them. */
29482 /* FALLTHROUGH */
29484 case DW_TAG_dwarf_procedure:
29485 /* Likewise for DWARF procedures. */
29487 if (die->die_perennial_p)
29488 break;
29490 return;
29492 case DW_TAG_variable:
29493 if (flag_debug_only_used_symbols)
29495 if (die->die_perennial_p)
29496 break;
29498 /* premark_used_variables marks external variables --- don't mark
29499 them here. But function-local externals are always considered
29500 used. */
29501 if (get_AT (die, DW_AT_external))
29503 for (c = die->die_parent; c; c = c->die_parent)
29504 if (c->die_tag == DW_TAG_subprogram)
29505 break;
29506 if (!c)
29507 return;
29510 /* FALLTHROUGH */
29512 default:
29513 /* Mark everything else. */
29514 break;
29517 if (die->die_mark == 0)
29519 die->die_mark = 1;
29521 /* Now, mark any dies referenced from here. */
29522 prune_unused_types_walk_attribs (die);
29525 die->die_mark = 2;
29527 /* Mark children. */
29528 FOR_EACH_CHILD (die, c, prune_unused_types_walk (c));
29531 /* Increment the string counts on strings referred to from DIE's
29532 attributes. */
29534 static void
29535 prune_unused_types_update_strings (dw_die_ref die)
29537 dw_attr_node *a;
29538 unsigned ix;
29540 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
29541 if (AT_class (a) == dw_val_class_str)
29543 struct indirect_string_node *s = a->dw_attr_val.v.val_str;
29544 s->refcount++;
29545 /* Avoid unnecessarily putting strings that are used less than
29546 twice in the hash table. */
29547 if (s->refcount
29548 == ((DEBUG_STR_SECTION_FLAGS & SECTION_MERGE) ? 1 : 2))
29550 indirect_string_node **slot
29551 = debug_str_hash->find_slot_with_hash (s->str,
29552 htab_hash_string (s->str),
29553 INSERT);
29554 gcc_assert (*slot == NULL);
29555 *slot = s;
29560 /* Mark DIE and its children as removed. */
29562 static void
29563 mark_removed (dw_die_ref die)
29565 dw_die_ref c;
29566 die->removed = true;
29567 FOR_EACH_CHILD (die, c, mark_removed (c));
29570 /* Remove from the tree DIE any dies that aren't marked. */
29572 static void
29573 prune_unused_types_prune (dw_die_ref die)
29575 dw_die_ref c;
29577 gcc_assert (die->die_mark);
29578 prune_unused_types_update_strings (die);
29580 if (! die->die_child)
29581 return;
29583 c = die->die_child;
29584 do {
29585 dw_die_ref prev = c, next;
29586 for (c = c->die_sib; ! c->die_mark; c = next)
29587 if (c == die->die_child)
29589 /* No marked children between 'prev' and the end of the list. */
29590 if (prev == c)
29591 /* No marked children at all. */
29592 die->die_child = NULL;
29593 else
29595 prev->die_sib = c->die_sib;
29596 die->die_child = prev;
29598 c->die_sib = NULL;
29599 mark_removed (c);
29600 return;
29602 else
29604 next = c->die_sib;
29605 c->die_sib = NULL;
29606 mark_removed (c);
29609 if (c != prev->die_sib)
29610 prev->die_sib = c;
29611 prune_unused_types_prune (c);
29612 } while (c != die->die_child);
29615 /* Remove dies representing declarations that we never use. */
29617 static void
29618 prune_unused_types (void)
29620 unsigned int i;
29621 limbo_die_node *node;
29622 comdat_type_node *ctnode;
29623 pubname_entry *pub;
29624 dw_die_ref base_type;
29626 #if ENABLE_ASSERT_CHECKING
29627 /* All the marks should already be clear. */
29628 verify_marks_clear (comp_unit_die ());
29629 for (node = limbo_die_list; node; node = node->next)
29630 verify_marks_clear (node->die);
29631 for (ctnode = comdat_type_list; ctnode; ctnode = ctnode->next)
29632 verify_marks_clear (ctnode->root_die);
29633 #endif /* ENABLE_ASSERT_CHECKING */
29635 /* Mark types that are used in global variables. */
29636 premark_types_used_by_global_vars ();
29638 /* Mark variables used in the symtab. */
29639 if (flag_debug_only_used_symbols)
29640 premark_used_variables ();
29642 /* Set the mark on nodes that are actually used. */
29643 prune_unused_types_walk (comp_unit_die ());
29644 for (node = limbo_die_list; node; node = node->next)
29645 prune_unused_types_walk (node->die);
29646 for (ctnode = comdat_type_list; ctnode; ctnode = ctnode->next)
29648 prune_unused_types_walk (ctnode->root_die);
29649 prune_unused_types_mark (ctnode->type_die, 1);
29652 /* Also set the mark on nodes referenced from the pubname_table. Enumerators
29653 are unusual in that they are pubnames that are the children of pubtypes.
29654 They should only be marked via their parent DW_TAG_enumeration_type die,
29655 not as roots in themselves. */
29656 FOR_EACH_VEC_ELT (*pubname_table, i, pub)
29657 if (pub->die->die_tag != DW_TAG_enumerator)
29658 prune_unused_types_mark (pub->die, 1);
29659 for (i = 0; base_types.iterate (i, &base_type); i++)
29660 prune_unused_types_mark (base_type, 1);
29662 /* For -fvar-tracking-assignments, also set the mark on nodes that could be
29663 referenced by DW_TAG_call_site DW_AT_call_origin (i.e. direct call
29664 callees). */
29665 cgraph_node *cnode;
29666 FOR_EACH_FUNCTION (cnode)
29667 if (cnode->referred_to_p (false))
29669 dw_die_ref die = lookup_decl_die (cnode->decl);
29670 if (die == NULL || die->die_mark)
29671 continue;
29672 for (cgraph_edge *e = cnode->callers; e; e = e->next_caller)
29673 if (e->caller != cnode
29674 && opt_for_fn (e->caller->decl, flag_var_tracking_assignments))
29676 prune_unused_types_mark (die, 1);
29677 break;
29681 if (debug_str_hash)
29682 debug_str_hash->empty ();
29683 if (skeleton_debug_str_hash)
29684 skeleton_debug_str_hash->empty ();
29685 prune_unused_types_prune (comp_unit_die ());
29686 for (limbo_die_node **pnode = &limbo_die_list; *pnode; )
29688 node = *pnode;
29689 if (!node->die->die_mark)
29690 *pnode = node->next;
29691 else
29693 prune_unused_types_prune (node->die);
29694 pnode = &node->next;
29697 for (ctnode = comdat_type_list; ctnode; ctnode = ctnode->next)
29698 prune_unused_types_prune (ctnode->root_die);
29700 /* Leave the marks clear. */
29701 prune_unmark_dies (comp_unit_die ());
29702 for (node = limbo_die_list; node; node = node->next)
29703 prune_unmark_dies (node->die);
29704 for (ctnode = comdat_type_list; ctnode; ctnode = ctnode->next)
29705 prune_unmark_dies (ctnode->root_die);
29708 /* Helpers to manipulate hash table of comdat type units. */
29710 struct comdat_type_hasher : nofree_ptr_hash <comdat_type_node>
29712 static inline hashval_t hash (const comdat_type_node *);
29713 static inline bool equal (const comdat_type_node *, const comdat_type_node *);
29716 inline hashval_t
29717 comdat_type_hasher::hash (const comdat_type_node *type_node)
29719 hashval_t h;
29720 memcpy (&h, type_node->signature, sizeof (h));
29721 return h;
29724 inline bool
29725 comdat_type_hasher::equal (const comdat_type_node *type_node_1,
29726 const comdat_type_node *type_node_2)
29728 return (! memcmp (type_node_1->signature, type_node_2->signature,
29729 DWARF_TYPE_SIGNATURE_SIZE));
29732 /* Move a DW_AT_{,MIPS_}linkage_name attribute just added to dw_die_ref
29733 to the location it would have been added, should we know its
29734 DECL_ASSEMBLER_NAME when we added other attributes. This will
29735 probably improve compactness of debug info, removing equivalent
29736 abbrevs, and hide any differences caused by deferring the
29737 computation of the assembler name, triggered by e.g. PCH. */
29739 static inline void
29740 move_linkage_attr (dw_die_ref die)
29742 unsigned ix = vec_safe_length (die->die_attr);
29743 dw_attr_node linkage = (*die->die_attr)[ix - 1];
29745 gcc_assert (linkage.dw_attr == DW_AT_linkage_name
29746 || linkage.dw_attr == DW_AT_MIPS_linkage_name);
29748 while (--ix > 0)
29750 dw_attr_node *prev = &(*die->die_attr)[ix - 1];
29752 if (prev->dw_attr == DW_AT_decl_line
29753 || prev->dw_attr == DW_AT_decl_column
29754 || prev->dw_attr == DW_AT_name)
29755 break;
29758 if (ix != vec_safe_length (die->die_attr) - 1)
29760 die->die_attr->pop ();
29761 die->die_attr->quick_insert (ix, linkage);
29765 /* Helper function for resolve_addr, mark DW_TAG_base_type nodes
29766 referenced from typed stack ops and count how often they are used. */
29768 static void
29769 mark_base_types (dw_loc_descr_ref loc)
29771 dw_die_ref base_type = NULL;
29773 for (; loc; loc = loc->dw_loc_next)
29775 switch (loc->dw_loc_opc)
29777 case DW_OP_regval_type:
29778 case DW_OP_deref_type:
29779 case DW_OP_GNU_regval_type:
29780 case DW_OP_GNU_deref_type:
29781 base_type = loc->dw_loc_oprnd2.v.val_die_ref.die;
29782 break;
29783 case DW_OP_convert:
29784 case DW_OP_reinterpret:
29785 case DW_OP_GNU_convert:
29786 case DW_OP_GNU_reinterpret:
29787 if (loc->dw_loc_oprnd1.val_class == dw_val_class_unsigned_const)
29788 continue;
29789 /* FALLTHRU */
29790 case DW_OP_const_type:
29791 case DW_OP_GNU_const_type:
29792 base_type = loc->dw_loc_oprnd1.v.val_die_ref.die;
29793 break;
29794 case DW_OP_entry_value:
29795 case DW_OP_GNU_entry_value:
29796 mark_base_types (loc->dw_loc_oprnd1.v.val_loc);
29797 continue;
29798 default:
29799 continue;
29801 gcc_assert (base_type->die_parent == comp_unit_die ());
29802 if (base_type->die_mark)
29803 base_type->die_mark++;
29804 else
29806 base_types.safe_push (base_type);
29807 base_type->die_mark = 1;
29812 /* Comparison function for sorting marked base types. */
29814 static int
29815 base_type_cmp (const void *x, const void *y)
29817 dw_die_ref dx = *(const dw_die_ref *) x;
29818 dw_die_ref dy = *(const dw_die_ref *) y;
29819 unsigned int byte_size1, byte_size2;
29820 unsigned int encoding1, encoding2;
29821 unsigned int align1, align2;
29822 if (dx->die_mark > dy->die_mark)
29823 return -1;
29824 if (dx->die_mark < dy->die_mark)
29825 return 1;
29826 byte_size1 = get_AT_unsigned (dx, DW_AT_byte_size);
29827 byte_size2 = get_AT_unsigned (dy, DW_AT_byte_size);
29828 if (byte_size1 < byte_size2)
29829 return 1;
29830 if (byte_size1 > byte_size2)
29831 return -1;
29832 encoding1 = get_AT_unsigned (dx, DW_AT_encoding);
29833 encoding2 = get_AT_unsigned (dy, DW_AT_encoding);
29834 if (encoding1 < encoding2)
29835 return 1;
29836 if (encoding1 > encoding2)
29837 return -1;
29838 align1 = get_AT_unsigned (dx, DW_AT_alignment);
29839 align2 = get_AT_unsigned (dy, DW_AT_alignment);
29840 if (align1 < align2)
29841 return 1;
29842 if (align1 > align2)
29843 return -1;
29844 return 0;
29847 /* Move base types marked by mark_base_types as early as possible
29848 in the CU, sorted by decreasing usage count both to make the
29849 uleb128 references as small as possible and to make sure they
29850 will have die_offset already computed by calc_die_sizes when
29851 sizes of typed stack loc ops is computed. */
29853 static void
29854 move_marked_base_types (void)
29856 unsigned int i;
29857 dw_die_ref base_type, die, c;
29859 if (base_types.is_empty ())
29860 return;
29862 /* Sort by decreasing usage count, they will be added again in that
29863 order later on. */
29864 base_types.qsort (base_type_cmp);
29865 die = comp_unit_die ();
29866 c = die->die_child;
29869 dw_die_ref prev = c;
29870 c = c->die_sib;
29871 while (c->die_mark)
29873 remove_child_with_prev (c, prev);
29874 /* As base types got marked, there must be at least
29875 one node other than DW_TAG_base_type. */
29876 gcc_assert (die->die_child != NULL);
29877 c = prev->die_sib;
29880 while (c != die->die_child);
29881 gcc_assert (die->die_child);
29882 c = die->die_child;
29883 for (i = 0; base_types.iterate (i, &base_type); i++)
29885 base_type->die_mark = 0;
29886 base_type->die_sib = c->die_sib;
29887 c->die_sib = base_type;
29888 c = base_type;
29892 /* Helper function for resolve_addr, attempt to resolve
29893 one CONST_STRING, return true if successful. Similarly verify that
29894 SYMBOL_REFs refer to variables emitted in the current CU. */
29896 static bool
29897 resolve_one_addr (rtx *addr)
29899 rtx rtl = *addr;
29901 if (GET_CODE (rtl) == CONST_STRING)
29903 size_t len = strlen (XSTR (rtl, 0)) + 1;
29904 tree t = build_string (len, XSTR (rtl, 0));
29905 tree tlen = size_int (len - 1);
29906 TREE_TYPE (t)
29907 = build_array_type (char_type_node, build_index_type (tlen));
29908 rtl = lookup_constant_def (t);
29909 if (!rtl || !MEM_P (rtl))
29910 return false;
29911 rtl = XEXP (rtl, 0);
29912 if (GET_CODE (rtl) == SYMBOL_REF
29913 && SYMBOL_REF_DECL (rtl)
29914 && !TREE_ASM_WRITTEN (SYMBOL_REF_DECL (rtl)))
29915 return false;
29916 vec_safe_push (used_rtx_array, rtl);
29917 *addr = rtl;
29918 return true;
29921 if (GET_CODE (rtl) == SYMBOL_REF
29922 && SYMBOL_REF_DECL (rtl))
29924 if (TREE_CONSTANT_POOL_ADDRESS_P (rtl))
29926 if (!TREE_ASM_WRITTEN (DECL_INITIAL (SYMBOL_REF_DECL (rtl))))
29927 return false;
29929 else if (!TREE_ASM_WRITTEN (SYMBOL_REF_DECL (rtl)))
29930 return false;
29933 if (GET_CODE (rtl) == CONST)
29935 subrtx_ptr_iterator::array_type array;
29936 FOR_EACH_SUBRTX_PTR (iter, array, &XEXP (rtl, 0), ALL)
29937 if (!resolve_one_addr (*iter))
29938 return false;
29941 return true;
29944 /* For STRING_CST, return SYMBOL_REF of its constant pool entry,
29945 if possible, and create DW_TAG_dwarf_procedure that can be referenced
29946 from DW_OP_implicit_pointer if the string hasn't been seen yet. */
29948 static rtx
29949 string_cst_pool_decl (tree t)
29951 rtx rtl = output_constant_def (t, 1);
29952 unsigned char *array;
29953 dw_loc_descr_ref l;
29954 tree decl;
29955 size_t len;
29956 dw_die_ref ref;
29958 if (!rtl || !MEM_P (rtl))
29959 return NULL_RTX;
29960 rtl = XEXP (rtl, 0);
29961 if (GET_CODE (rtl) != SYMBOL_REF
29962 || SYMBOL_REF_DECL (rtl) == NULL_TREE)
29963 return NULL_RTX;
29965 decl = SYMBOL_REF_DECL (rtl);
29966 if (!lookup_decl_die (decl))
29968 len = TREE_STRING_LENGTH (t);
29969 vec_safe_push (used_rtx_array, rtl);
29970 ref = new_die (DW_TAG_dwarf_procedure, comp_unit_die (), decl);
29971 array = ggc_vec_alloc<unsigned char> (len);
29972 memcpy (array, TREE_STRING_POINTER (t), len);
29973 l = new_loc_descr (DW_OP_implicit_value, len, 0);
29974 l->dw_loc_oprnd2.val_class = dw_val_class_vec;
29975 l->dw_loc_oprnd2.v.val_vec.length = len;
29976 l->dw_loc_oprnd2.v.val_vec.elt_size = 1;
29977 l->dw_loc_oprnd2.v.val_vec.array = array;
29978 add_AT_loc (ref, DW_AT_location, l);
29979 equate_decl_number_to_die (decl, ref);
29981 return rtl;
29984 /* Helper function of resolve_addr_in_expr. LOC is
29985 a DW_OP_addr followed by DW_OP_stack_value, either at the start
29986 of exprloc or after DW_OP_{,bit_}piece, and val_addr can't be
29987 resolved. Replace it (both DW_OP_addr and DW_OP_stack_value)
29988 with DW_OP_implicit_pointer if possible
29989 and return true, if unsuccessful, return false. */
29991 static bool
29992 optimize_one_addr_into_implicit_ptr (dw_loc_descr_ref loc)
29994 rtx rtl = loc->dw_loc_oprnd1.v.val_addr;
29995 HOST_WIDE_INT offset = 0;
29996 dw_die_ref ref = NULL;
29997 tree decl;
29999 if (GET_CODE (rtl) == CONST
30000 && GET_CODE (XEXP (rtl, 0)) == PLUS
30001 && CONST_INT_P (XEXP (XEXP (rtl, 0), 1)))
30003 offset = INTVAL (XEXP (XEXP (rtl, 0), 1));
30004 rtl = XEXP (XEXP (rtl, 0), 0);
30006 if (GET_CODE (rtl) == CONST_STRING)
30008 size_t len = strlen (XSTR (rtl, 0)) + 1;
30009 tree t = build_string (len, XSTR (rtl, 0));
30010 tree tlen = size_int (len - 1);
30012 TREE_TYPE (t)
30013 = build_array_type (char_type_node, build_index_type (tlen));
30014 rtl = string_cst_pool_decl (t);
30015 if (!rtl)
30016 return false;
30018 if (GET_CODE (rtl) == SYMBOL_REF && SYMBOL_REF_DECL (rtl))
30020 decl = SYMBOL_REF_DECL (rtl);
30021 if (VAR_P (decl) && !DECL_EXTERNAL (decl))
30023 ref = lookup_decl_die (decl);
30024 if (ref && (get_AT (ref, DW_AT_location)
30025 || get_AT (ref, DW_AT_const_value)))
30027 loc->dw_loc_opc = dwarf_OP (DW_OP_implicit_pointer);
30028 loc->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
30029 loc->dw_loc_oprnd1.val_entry = NULL;
30030 loc->dw_loc_oprnd1.v.val_die_ref.die = ref;
30031 loc->dw_loc_oprnd1.v.val_die_ref.external = 0;
30032 loc->dw_loc_next = loc->dw_loc_next->dw_loc_next;
30033 loc->dw_loc_oprnd2.v.val_int = offset;
30034 return true;
30038 return false;
30041 /* Helper function for resolve_addr, handle one location
30042 expression, return false if at least one CONST_STRING or SYMBOL_REF in
30043 the location list couldn't be resolved. */
30045 static bool
30046 resolve_addr_in_expr (dw_attr_node *a, dw_loc_descr_ref loc)
30048 dw_loc_descr_ref keep = NULL;
30049 for (dw_loc_descr_ref prev = NULL; loc; prev = loc, loc = loc->dw_loc_next)
30050 switch (loc->dw_loc_opc)
30052 case DW_OP_addr:
30053 if (!resolve_one_addr (&loc->dw_loc_oprnd1.v.val_addr))
30055 if ((prev == NULL
30056 || prev->dw_loc_opc == DW_OP_piece
30057 || prev->dw_loc_opc == DW_OP_bit_piece)
30058 && loc->dw_loc_next
30059 && loc->dw_loc_next->dw_loc_opc == DW_OP_stack_value
30060 && (!dwarf_strict || dwarf_version >= 5)
30061 && optimize_one_addr_into_implicit_ptr (loc))
30062 break;
30063 return false;
30065 break;
30066 case DW_OP_GNU_addr_index:
30067 case DW_OP_addrx:
30068 case DW_OP_GNU_const_index:
30069 case DW_OP_constx:
30070 if ((loc->dw_loc_opc == DW_OP_GNU_addr_index
30071 || loc->dw_loc_opc == DW_OP_addrx)
30072 || ((loc->dw_loc_opc == DW_OP_GNU_const_index
30073 || loc->dw_loc_opc == DW_OP_constx)
30074 && loc->dtprel))
30076 rtx rtl = loc->dw_loc_oprnd1.val_entry->addr.rtl;
30077 if (!resolve_one_addr (&rtl))
30078 return false;
30079 remove_addr_table_entry (loc->dw_loc_oprnd1.val_entry);
30080 loc->dw_loc_oprnd1.val_entry
30081 = add_addr_table_entry (rtl, ate_kind_rtx);
30083 break;
30084 case DW_OP_const4u:
30085 case DW_OP_const8u:
30086 if (loc->dtprel
30087 && !resolve_one_addr (&loc->dw_loc_oprnd1.v.val_addr))
30088 return false;
30089 break;
30090 case DW_OP_plus_uconst:
30091 if (size_of_loc_descr (loc)
30092 > size_of_int_loc_descriptor (loc->dw_loc_oprnd1.v.val_unsigned)
30094 && loc->dw_loc_oprnd1.v.val_unsigned > 0)
30096 dw_loc_descr_ref repl
30097 = int_loc_descriptor (loc->dw_loc_oprnd1.v.val_unsigned);
30098 add_loc_descr (&repl, new_loc_descr (DW_OP_plus, 0, 0));
30099 add_loc_descr (&repl, loc->dw_loc_next);
30100 *loc = *repl;
30102 break;
30103 case DW_OP_implicit_value:
30104 if (loc->dw_loc_oprnd2.val_class == dw_val_class_addr
30105 && !resolve_one_addr (&loc->dw_loc_oprnd2.v.val_addr))
30106 return false;
30107 break;
30108 case DW_OP_implicit_pointer:
30109 case DW_OP_GNU_implicit_pointer:
30110 case DW_OP_GNU_parameter_ref:
30111 case DW_OP_GNU_variable_value:
30112 if (loc->dw_loc_oprnd1.val_class == dw_val_class_decl_ref)
30114 dw_die_ref ref
30115 = lookup_decl_die (loc->dw_loc_oprnd1.v.val_decl_ref);
30116 if (ref == NULL)
30117 return false;
30118 loc->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
30119 loc->dw_loc_oprnd1.v.val_die_ref.die = ref;
30120 loc->dw_loc_oprnd1.v.val_die_ref.external = 0;
30122 if (loc->dw_loc_opc == DW_OP_GNU_variable_value)
30124 if (prev == NULL
30125 && loc->dw_loc_next == NULL
30126 && AT_class (a) == dw_val_class_loc)
30127 switch (a->dw_attr)
30129 /* Following attributes allow both exprloc and reference,
30130 so if the whole expression is DW_OP_GNU_variable_value
30131 alone we could transform it into reference. */
30132 case DW_AT_byte_size:
30133 case DW_AT_bit_size:
30134 case DW_AT_lower_bound:
30135 case DW_AT_upper_bound:
30136 case DW_AT_bit_stride:
30137 case DW_AT_count:
30138 case DW_AT_allocated:
30139 case DW_AT_associated:
30140 case DW_AT_byte_stride:
30141 a->dw_attr_val.val_class = dw_val_class_die_ref;
30142 a->dw_attr_val.val_entry = NULL;
30143 a->dw_attr_val.v.val_die_ref.die
30144 = loc->dw_loc_oprnd1.v.val_die_ref.die;
30145 a->dw_attr_val.v.val_die_ref.external = 0;
30146 return true;
30147 default:
30148 break;
30150 if (dwarf_strict)
30151 return false;
30153 break;
30154 case DW_OP_const_type:
30155 case DW_OP_regval_type:
30156 case DW_OP_deref_type:
30157 case DW_OP_convert:
30158 case DW_OP_reinterpret:
30159 case DW_OP_GNU_const_type:
30160 case DW_OP_GNU_regval_type:
30161 case DW_OP_GNU_deref_type:
30162 case DW_OP_GNU_convert:
30163 case DW_OP_GNU_reinterpret:
30164 while (loc->dw_loc_next
30165 && (loc->dw_loc_next->dw_loc_opc == DW_OP_convert
30166 || loc->dw_loc_next->dw_loc_opc == DW_OP_GNU_convert))
30168 dw_die_ref base1, base2;
30169 unsigned enc1, enc2, size1, size2;
30170 if (loc->dw_loc_opc == DW_OP_regval_type
30171 || loc->dw_loc_opc == DW_OP_deref_type
30172 || loc->dw_loc_opc == DW_OP_GNU_regval_type
30173 || loc->dw_loc_opc == DW_OP_GNU_deref_type)
30174 base1 = loc->dw_loc_oprnd2.v.val_die_ref.die;
30175 else if (loc->dw_loc_oprnd1.val_class
30176 == dw_val_class_unsigned_const)
30177 break;
30178 else
30179 base1 = loc->dw_loc_oprnd1.v.val_die_ref.die;
30180 if (loc->dw_loc_next->dw_loc_oprnd1.val_class
30181 == dw_val_class_unsigned_const)
30182 break;
30183 base2 = loc->dw_loc_next->dw_loc_oprnd1.v.val_die_ref.die;
30184 gcc_assert (base1->die_tag == DW_TAG_base_type
30185 && base2->die_tag == DW_TAG_base_type);
30186 enc1 = get_AT_unsigned (base1, DW_AT_encoding);
30187 enc2 = get_AT_unsigned (base2, DW_AT_encoding);
30188 size1 = get_AT_unsigned (base1, DW_AT_byte_size);
30189 size2 = get_AT_unsigned (base2, DW_AT_byte_size);
30190 if (size1 == size2
30191 && (((enc1 == DW_ATE_unsigned || enc1 == DW_ATE_signed)
30192 && (enc2 == DW_ATE_unsigned || enc2 == DW_ATE_signed)
30193 && loc != keep)
30194 || enc1 == enc2))
30196 /* Optimize away next DW_OP_convert after
30197 adjusting LOC's base type die reference. */
30198 if (loc->dw_loc_opc == DW_OP_regval_type
30199 || loc->dw_loc_opc == DW_OP_deref_type
30200 || loc->dw_loc_opc == DW_OP_GNU_regval_type
30201 || loc->dw_loc_opc == DW_OP_GNU_deref_type)
30202 loc->dw_loc_oprnd2.v.val_die_ref.die = base2;
30203 else
30204 loc->dw_loc_oprnd1.v.val_die_ref.die = base2;
30205 loc->dw_loc_next = loc->dw_loc_next->dw_loc_next;
30206 continue;
30208 /* Don't change integer DW_OP_convert after e.g. floating
30209 point typed stack entry. */
30210 else if (enc1 != DW_ATE_unsigned && enc1 != DW_ATE_signed)
30211 keep = loc->dw_loc_next;
30212 break;
30214 break;
30215 default:
30216 break;
30218 return true;
30221 /* Helper function of resolve_addr. DIE had DW_AT_location of
30222 DW_OP_addr alone, which referred to DECL in DW_OP_addr's operand
30223 and DW_OP_addr couldn't be resolved. resolve_addr has already
30224 removed the DW_AT_location attribute. This function attempts to
30225 add a new DW_AT_location attribute with DW_OP_implicit_pointer
30226 to it or DW_AT_const_value attribute, if possible. */
30228 static void
30229 optimize_location_into_implicit_ptr (dw_die_ref die, tree decl)
30231 if (!VAR_P (decl)
30232 || lookup_decl_die (decl) != die
30233 || DECL_EXTERNAL (decl)
30234 || !TREE_STATIC (decl)
30235 || DECL_INITIAL (decl) == NULL_TREE
30236 || DECL_P (DECL_INITIAL (decl))
30237 || get_AT (die, DW_AT_const_value))
30238 return;
30240 tree init = DECL_INITIAL (decl);
30241 HOST_WIDE_INT offset = 0;
30242 /* For variables that have been optimized away and thus
30243 don't have a memory location, see if we can emit
30244 DW_AT_const_value instead. */
30245 if (tree_add_const_value_attribute (die, init))
30246 return;
30247 if (dwarf_strict && dwarf_version < 5)
30248 return;
30249 /* If init is ADDR_EXPR or POINTER_PLUS_EXPR of ADDR_EXPR,
30250 and ADDR_EXPR refers to a decl that has DW_AT_location or
30251 DW_AT_const_value (but isn't addressable, otherwise
30252 resolving the original DW_OP_addr wouldn't fail), see if
30253 we can add DW_OP_implicit_pointer. */
30254 STRIP_NOPS (init);
30255 if (TREE_CODE (init) == POINTER_PLUS_EXPR
30256 && tree_fits_shwi_p (TREE_OPERAND (init, 1)))
30258 offset = tree_to_shwi (TREE_OPERAND (init, 1));
30259 init = TREE_OPERAND (init, 0);
30260 STRIP_NOPS (init);
30262 if (TREE_CODE (init) != ADDR_EXPR)
30263 return;
30264 if ((TREE_CODE (TREE_OPERAND (init, 0)) == STRING_CST
30265 && !TREE_ASM_WRITTEN (TREE_OPERAND (init, 0)))
30266 || (TREE_CODE (TREE_OPERAND (init, 0)) == VAR_DECL
30267 && !DECL_EXTERNAL (TREE_OPERAND (init, 0))
30268 && TREE_OPERAND (init, 0) != decl))
30270 dw_die_ref ref;
30271 dw_loc_descr_ref l;
30273 if (TREE_CODE (TREE_OPERAND (init, 0)) == STRING_CST)
30275 rtx rtl = string_cst_pool_decl (TREE_OPERAND (init, 0));
30276 if (!rtl)
30277 return;
30278 decl = SYMBOL_REF_DECL (rtl);
30280 else
30281 decl = TREE_OPERAND (init, 0);
30282 ref = lookup_decl_die (decl);
30283 if (ref == NULL
30284 || (!get_AT (ref, DW_AT_location)
30285 && !get_AT (ref, DW_AT_const_value)))
30286 return;
30287 l = new_loc_descr (dwarf_OP (DW_OP_implicit_pointer), 0, offset);
30288 l->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
30289 l->dw_loc_oprnd1.v.val_die_ref.die = ref;
30290 l->dw_loc_oprnd1.v.val_die_ref.external = 0;
30291 add_AT_loc (die, DW_AT_location, l);
30295 /* Return NULL if l is a DWARF expression, or first op that is not
30296 valid DWARF expression. */
30298 static dw_loc_descr_ref
30299 non_dwarf_expression (dw_loc_descr_ref l)
30301 while (l)
30303 if (l->dw_loc_opc >= DW_OP_reg0 && l->dw_loc_opc <= DW_OP_reg31)
30304 return l;
30305 switch (l->dw_loc_opc)
30307 case DW_OP_regx:
30308 case DW_OP_implicit_value:
30309 case DW_OP_stack_value:
30310 case DW_OP_implicit_pointer:
30311 case DW_OP_GNU_implicit_pointer:
30312 case DW_OP_GNU_parameter_ref:
30313 case DW_OP_piece:
30314 case DW_OP_bit_piece:
30315 return l;
30316 default:
30317 break;
30319 l = l->dw_loc_next;
30321 return NULL;
30324 /* Return adjusted copy of EXPR:
30325 If it is empty DWARF expression, return it.
30326 If it is valid non-empty DWARF expression,
30327 return copy of EXPR with DW_OP_deref appended to it.
30328 If it is DWARF expression followed by DW_OP_reg{N,x}, return
30329 copy of the DWARF expression with DW_OP_breg{N,x} <0> appended.
30330 If it is DWARF expression followed by DW_OP_stack_value, return
30331 copy of the DWARF expression without anything appended.
30332 Otherwise, return NULL. */
30334 static dw_loc_descr_ref
30335 copy_deref_exprloc (dw_loc_descr_ref expr)
30337 dw_loc_descr_ref tail = NULL;
30339 if (expr == NULL)
30340 return NULL;
30342 dw_loc_descr_ref l = non_dwarf_expression (expr);
30343 if (l && l->dw_loc_next)
30344 return NULL;
30346 if (l)
30348 if (l->dw_loc_opc >= DW_OP_reg0 && l->dw_loc_opc <= DW_OP_reg31)
30349 tail = new_loc_descr ((enum dwarf_location_atom)
30350 (DW_OP_breg0 + (l->dw_loc_opc - DW_OP_reg0)),
30351 0, 0);
30352 else
30353 switch (l->dw_loc_opc)
30355 case DW_OP_regx:
30356 tail = new_loc_descr (DW_OP_bregx,
30357 l->dw_loc_oprnd1.v.val_unsigned, 0);
30358 break;
30359 case DW_OP_stack_value:
30360 break;
30361 default:
30362 return NULL;
30365 else
30366 tail = new_loc_descr (DW_OP_deref, 0, 0);
30368 dw_loc_descr_ref ret = NULL, *p = &ret;
30369 while (expr != l)
30371 *p = new_loc_descr (expr->dw_loc_opc, 0, 0);
30372 (*p)->dw_loc_oprnd1 = expr->dw_loc_oprnd1;
30373 (*p)->dw_loc_oprnd2 = expr->dw_loc_oprnd2;
30374 p = &(*p)->dw_loc_next;
30375 expr = expr->dw_loc_next;
30377 *p = tail;
30378 return ret;
30381 /* For DW_AT_string_length attribute with DW_OP_GNU_variable_value
30382 reference to a variable or argument, adjust it if needed and return:
30383 -1 if the DW_AT_string_length attribute and DW_AT_{string_length_,}byte_size
30384 attribute if present should be removed
30385 0 keep the attribute perhaps with minor modifications, no need to rescan
30386 1 if the attribute has been successfully adjusted. */
30388 static int
30389 optimize_string_length (dw_attr_node *a)
30391 dw_loc_descr_ref l = AT_loc (a), lv;
30392 dw_die_ref die;
30393 if (l->dw_loc_oprnd1.val_class == dw_val_class_decl_ref)
30395 tree decl = l->dw_loc_oprnd1.v.val_decl_ref;
30396 die = lookup_decl_die (decl);
30397 if (die)
30399 l->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
30400 l->dw_loc_oprnd1.v.val_die_ref.die = die;
30401 l->dw_loc_oprnd1.v.val_die_ref.external = 0;
30403 else
30404 return -1;
30406 else
30407 die = l->dw_loc_oprnd1.v.val_die_ref.die;
30409 /* DWARF5 allows reference class, so we can then reference the DIE.
30410 Only do this for DW_OP_GNU_variable_value DW_OP_stack_value. */
30411 if (l->dw_loc_next != NULL && dwarf_version >= 5)
30413 a->dw_attr_val.val_class = dw_val_class_die_ref;
30414 a->dw_attr_val.val_entry = NULL;
30415 a->dw_attr_val.v.val_die_ref.die = die;
30416 a->dw_attr_val.v.val_die_ref.external = 0;
30417 return 0;
30420 dw_attr_node *av = get_AT (die, DW_AT_location);
30421 dw_loc_list_ref d;
30422 bool non_dwarf_expr = false;
30424 if (av == NULL)
30425 return dwarf_strict ? -1 : 0;
30426 switch (AT_class (av))
30428 case dw_val_class_loc_list:
30429 for (d = AT_loc_list (av); d != NULL; d = d->dw_loc_next)
30430 if (d->expr && non_dwarf_expression (d->expr))
30431 non_dwarf_expr = true;
30432 break;
30433 case dw_val_class_view_list:
30434 gcc_unreachable ();
30435 case dw_val_class_loc:
30436 lv = AT_loc (av);
30437 if (lv == NULL)
30438 return dwarf_strict ? -1 : 0;
30439 if (non_dwarf_expression (lv))
30440 non_dwarf_expr = true;
30441 break;
30442 default:
30443 return dwarf_strict ? -1 : 0;
30446 /* If it is safe to transform DW_OP_GNU_variable_value DW_OP_stack_value
30447 into DW_OP_call4 or DW_OP_GNU_variable_value into
30448 DW_OP_call4 DW_OP_deref, do so. */
30449 if (!non_dwarf_expr
30450 && (l->dw_loc_next != NULL || AT_class (av) == dw_val_class_loc))
30452 l->dw_loc_opc = DW_OP_call4;
30453 if (l->dw_loc_next)
30454 l->dw_loc_next = NULL;
30455 else
30456 l->dw_loc_next = new_loc_descr (DW_OP_deref, 0, 0);
30457 return 0;
30460 /* For DW_OP_GNU_variable_value DW_OP_stack_value, we can just
30461 copy over the DW_AT_location attribute from die to a. */
30462 if (l->dw_loc_next != NULL)
30464 a->dw_attr_val = av->dw_attr_val;
30465 return 1;
30468 dw_loc_list_ref list, *p;
30469 switch (AT_class (av))
30471 case dw_val_class_loc_list:
30472 p = &list;
30473 list = NULL;
30474 for (d = AT_loc_list (av); d != NULL; d = d->dw_loc_next)
30476 lv = copy_deref_exprloc (d->expr);
30477 if (lv)
30479 *p = new_loc_list (lv, d->begin, d->vbegin, d->end, d->vend, d->section);
30480 p = &(*p)->dw_loc_next;
30482 else if (!dwarf_strict && d->expr)
30483 return 0;
30485 if (list == NULL)
30486 return dwarf_strict ? -1 : 0;
30487 a->dw_attr_val.val_class = dw_val_class_loc_list;
30488 gen_llsym (list);
30489 *AT_loc_list_ptr (a) = list;
30490 return 1;
30491 case dw_val_class_loc:
30492 lv = copy_deref_exprloc (AT_loc (av));
30493 if (lv == NULL)
30494 return dwarf_strict ? -1 : 0;
30495 a->dw_attr_val.v.val_loc = lv;
30496 return 1;
30497 default:
30498 gcc_unreachable ();
30502 /* Resolve DW_OP_addr and DW_AT_const_value CONST_STRING arguments to
30503 an address in .rodata section if the string literal is emitted there,
30504 or remove the containing location list or replace DW_AT_const_value
30505 with DW_AT_location and empty location expression, if it isn't found
30506 in .rodata. Similarly for SYMBOL_REFs, keep only those that refer
30507 to something that has been emitted in the current CU. */
30509 static void
30510 resolve_addr (dw_die_ref die)
30512 dw_die_ref c;
30513 dw_attr_node *a;
30514 dw_loc_list_ref *curr, *start, loc;
30515 unsigned ix;
30516 bool remove_AT_byte_size = false;
30518 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
30519 switch (AT_class (a))
30521 case dw_val_class_loc_list:
30522 start = curr = AT_loc_list_ptr (a);
30523 loc = *curr;
30524 gcc_assert (loc);
30525 /* The same list can be referenced more than once. See if we have
30526 already recorded the result from a previous pass. */
30527 if (loc->replaced)
30528 *curr = loc->dw_loc_next;
30529 else if (!loc->resolved_addr)
30531 /* As things stand, we do not expect or allow one die to
30532 reference a suffix of another die's location list chain.
30533 References must be identical or completely separate.
30534 There is therefore no need to cache the result of this
30535 pass on any list other than the first; doing so
30536 would lead to unnecessary writes. */
30537 while (*curr)
30539 gcc_assert (!(*curr)->replaced && !(*curr)->resolved_addr);
30540 if (!resolve_addr_in_expr (a, (*curr)->expr))
30542 dw_loc_list_ref next = (*curr)->dw_loc_next;
30543 dw_loc_descr_ref l = (*curr)->expr;
30545 if (next && (*curr)->ll_symbol)
30547 gcc_assert (!next->ll_symbol);
30548 next->ll_symbol = (*curr)->ll_symbol;
30549 next->vl_symbol = (*curr)->vl_symbol;
30551 if (dwarf_split_debug_info)
30552 remove_loc_list_addr_table_entries (l);
30553 *curr = next;
30555 else
30557 mark_base_types ((*curr)->expr);
30558 curr = &(*curr)->dw_loc_next;
30561 if (loc == *start)
30562 loc->resolved_addr = 1;
30563 else
30565 loc->replaced = 1;
30566 loc->dw_loc_next = *start;
30569 if (!*start)
30571 remove_AT (die, a->dw_attr);
30572 ix--;
30574 break;
30575 case dw_val_class_view_list:
30577 gcc_checking_assert (a->dw_attr == DW_AT_GNU_locviews);
30578 gcc_checking_assert (dwarf2out_locviews_in_attribute ());
30579 dw_val_node *llnode
30580 = view_list_to_loc_list_val_node (&a->dw_attr_val);
30581 /* If we no longer have a loclist, or it no longer needs
30582 views, drop this attribute. */
30583 if (!llnode || !llnode->v.val_loc_list->vl_symbol)
30585 remove_AT (die, a->dw_attr);
30586 ix--;
30588 break;
30590 case dw_val_class_loc:
30592 dw_loc_descr_ref l = AT_loc (a);
30593 /* DW_OP_GNU_variable_value DW_OP_stack_value or
30594 DW_OP_GNU_variable_value in DW_AT_string_length can be converted
30595 into DW_OP_call4 or DW_OP_call4 DW_OP_deref, which is standard
30596 DWARF4 unlike DW_OP_GNU_variable_value. Or for DWARF5
30597 DW_OP_GNU_variable_value DW_OP_stack_value can be replaced
30598 with DW_FORM_ref referencing the same DIE as
30599 DW_OP_GNU_variable_value used to reference. */
30600 if (a->dw_attr == DW_AT_string_length
30601 && l
30602 && l->dw_loc_opc == DW_OP_GNU_variable_value
30603 && (l->dw_loc_next == NULL
30604 || (l->dw_loc_next->dw_loc_next == NULL
30605 && l->dw_loc_next->dw_loc_opc == DW_OP_stack_value)))
30607 switch (optimize_string_length (a))
30609 case -1:
30610 remove_AT (die, a->dw_attr);
30611 ix--;
30612 /* If we drop DW_AT_string_length, we need to drop also
30613 DW_AT_{string_length_,}byte_size. */
30614 remove_AT_byte_size = true;
30615 continue;
30616 default:
30617 break;
30618 case 1:
30619 /* Even if we keep the optimized DW_AT_string_length,
30620 it might have changed AT_class, so process it again. */
30621 ix--;
30622 continue;
30625 /* For -gdwarf-2 don't attempt to optimize
30626 DW_AT_data_member_location containing
30627 DW_OP_plus_uconst - older consumers might
30628 rely on it being that op instead of a more complex,
30629 but shorter, location description. */
30630 if ((dwarf_version > 2
30631 || a->dw_attr != DW_AT_data_member_location
30632 || l == NULL
30633 || l->dw_loc_opc != DW_OP_plus_uconst
30634 || l->dw_loc_next != NULL)
30635 && !resolve_addr_in_expr (a, l))
30637 if (dwarf_split_debug_info)
30638 remove_loc_list_addr_table_entries (l);
30639 if (l != NULL
30640 && l->dw_loc_next == NULL
30641 && l->dw_loc_opc == DW_OP_addr
30642 && GET_CODE (l->dw_loc_oprnd1.v.val_addr) == SYMBOL_REF
30643 && SYMBOL_REF_DECL (l->dw_loc_oprnd1.v.val_addr)
30644 && a->dw_attr == DW_AT_location)
30646 tree decl = SYMBOL_REF_DECL (l->dw_loc_oprnd1.v.val_addr);
30647 remove_AT (die, a->dw_attr);
30648 ix--;
30649 optimize_location_into_implicit_ptr (die, decl);
30650 break;
30652 if (a->dw_attr == DW_AT_string_length)
30653 /* If we drop DW_AT_string_length, we need to drop also
30654 DW_AT_{string_length_,}byte_size. */
30655 remove_AT_byte_size = true;
30656 remove_AT (die, a->dw_attr);
30657 ix--;
30659 else
30660 mark_base_types (l);
30662 break;
30663 case dw_val_class_addr:
30664 if (a->dw_attr == DW_AT_const_value
30665 && !resolve_one_addr (&a->dw_attr_val.v.val_addr))
30667 if (AT_index (a) != NOT_INDEXED)
30668 remove_addr_table_entry (a->dw_attr_val.val_entry);
30669 remove_AT (die, a->dw_attr);
30670 ix--;
30672 if ((die->die_tag == DW_TAG_call_site
30673 && a->dw_attr == DW_AT_call_origin)
30674 || (die->die_tag == DW_TAG_GNU_call_site
30675 && a->dw_attr == DW_AT_abstract_origin))
30677 tree tdecl = SYMBOL_REF_DECL (a->dw_attr_val.v.val_addr);
30678 dw_die_ref tdie = lookup_decl_die (tdecl);
30679 dw_die_ref cdie;
30680 if (tdie == NULL
30681 && DECL_EXTERNAL (tdecl)
30682 && DECL_ABSTRACT_ORIGIN (tdecl) == NULL_TREE
30683 && (cdie = lookup_context_die (DECL_CONTEXT (tdecl))))
30685 dw_die_ref pdie = cdie;
30686 /* Make sure we don't add these DIEs into type units.
30687 We could emit skeleton DIEs for context (namespaces,
30688 outer structs/classes) and a skeleton DIE for the
30689 innermost context with DW_AT_signature pointing to the
30690 type unit. See PR78835. */
30691 while (pdie && pdie->die_tag != DW_TAG_type_unit)
30692 pdie = pdie->die_parent;
30693 if (pdie == NULL)
30695 /* Creating a full DIE for tdecl is overly expensive and
30696 at this point even wrong when in the LTO phase
30697 as it can end up generating new type DIEs we didn't
30698 output and thus optimize_external_refs will crash. */
30699 tdie = new_die (DW_TAG_subprogram, cdie, NULL_TREE);
30700 add_AT_flag (tdie, DW_AT_external, 1);
30701 add_AT_flag (tdie, DW_AT_declaration, 1);
30702 add_linkage_attr (tdie, tdecl);
30703 add_name_and_src_coords_attributes (tdie, tdecl, true);
30704 equate_decl_number_to_die (tdecl, tdie);
30707 if (tdie)
30709 a->dw_attr_val.val_class = dw_val_class_die_ref;
30710 a->dw_attr_val.v.val_die_ref.die = tdie;
30711 a->dw_attr_val.v.val_die_ref.external = 0;
30713 else
30715 if (AT_index (a) != NOT_INDEXED)
30716 remove_addr_table_entry (a->dw_attr_val.val_entry);
30717 remove_AT (die, a->dw_attr);
30718 ix--;
30721 break;
30722 default:
30723 break;
30726 if (remove_AT_byte_size)
30727 remove_AT (die, dwarf_version >= 5
30728 ? DW_AT_string_length_byte_size
30729 : DW_AT_byte_size);
30731 FOR_EACH_CHILD (die, c, resolve_addr (c));
30734 /* Helper routines for optimize_location_lists.
30735 This pass tries to share identical local lists in .debug_loc
30736 section. */
30738 /* Iteratively hash operands of LOC opcode into HSTATE. */
30740 static void
30741 hash_loc_operands (dw_loc_descr_ref loc, inchash::hash &hstate)
30743 dw_val_ref val1 = &loc->dw_loc_oprnd1;
30744 dw_val_ref val2 = &loc->dw_loc_oprnd2;
30746 switch (loc->dw_loc_opc)
30748 case DW_OP_const4u:
30749 case DW_OP_const8u:
30750 if (loc->dtprel)
30751 goto hash_addr;
30752 /* FALLTHRU */
30753 case DW_OP_const1u:
30754 case DW_OP_const1s:
30755 case DW_OP_const2u:
30756 case DW_OP_const2s:
30757 case DW_OP_const4s:
30758 case DW_OP_const8s:
30759 case DW_OP_constu:
30760 case DW_OP_consts:
30761 case DW_OP_pick:
30762 case DW_OP_plus_uconst:
30763 case DW_OP_breg0:
30764 case DW_OP_breg1:
30765 case DW_OP_breg2:
30766 case DW_OP_breg3:
30767 case DW_OP_breg4:
30768 case DW_OP_breg5:
30769 case DW_OP_breg6:
30770 case DW_OP_breg7:
30771 case DW_OP_breg8:
30772 case DW_OP_breg9:
30773 case DW_OP_breg10:
30774 case DW_OP_breg11:
30775 case DW_OP_breg12:
30776 case DW_OP_breg13:
30777 case DW_OP_breg14:
30778 case DW_OP_breg15:
30779 case DW_OP_breg16:
30780 case DW_OP_breg17:
30781 case DW_OP_breg18:
30782 case DW_OP_breg19:
30783 case DW_OP_breg20:
30784 case DW_OP_breg21:
30785 case DW_OP_breg22:
30786 case DW_OP_breg23:
30787 case DW_OP_breg24:
30788 case DW_OP_breg25:
30789 case DW_OP_breg26:
30790 case DW_OP_breg27:
30791 case DW_OP_breg28:
30792 case DW_OP_breg29:
30793 case DW_OP_breg30:
30794 case DW_OP_breg31:
30795 case DW_OP_regx:
30796 case DW_OP_fbreg:
30797 case DW_OP_piece:
30798 case DW_OP_deref_size:
30799 case DW_OP_xderef_size:
30800 hstate.add_object (val1->v.val_int);
30801 break;
30802 case DW_OP_skip:
30803 case DW_OP_bra:
30805 int offset;
30807 gcc_assert (val1->val_class == dw_val_class_loc);
30808 offset = val1->v.val_loc->dw_loc_addr - (loc->dw_loc_addr + 3);
30809 hstate.add_object (offset);
30811 break;
30812 case DW_OP_implicit_value:
30813 hstate.add_object (val1->v.val_unsigned);
30814 switch (val2->val_class)
30816 case dw_val_class_const:
30817 hstate.add_object (val2->v.val_int);
30818 break;
30819 case dw_val_class_vec:
30821 unsigned int elt_size = val2->v.val_vec.elt_size;
30822 unsigned int len = val2->v.val_vec.length;
30824 hstate.add_int (elt_size);
30825 hstate.add_int (len);
30826 hstate.add (val2->v.val_vec.array, len * elt_size);
30828 break;
30829 case dw_val_class_const_double:
30830 hstate.add_object (val2->v.val_double.low);
30831 hstate.add_object (val2->v.val_double.high);
30832 break;
30833 case dw_val_class_wide_int:
30834 hstate.add (val2->v.val_wide->get_val (),
30835 get_full_len (*val2->v.val_wide)
30836 * HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR);
30837 break;
30838 case dw_val_class_addr:
30839 inchash::add_rtx (val2->v.val_addr, hstate);
30840 break;
30841 default:
30842 gcc_unreachable ();
30844 break;
30845 case DW_OP_bregx:
30846 case DW_OP_bit_piece:
30847 hstate.add_object (val1->v.val_int);
30848 hstate.add_object (val2->v.val_int);
30849 break;
30850 case DW_OP_addr:
30851 hash_addr:
30852 if (loc->dtprel)
30854 unsigned char dtprel = 0xd1;
30855 hstate.add_object (dtprel);
30857 inchash::add_rtx (val1->v.val_addr, hstate);
30858 break;
30859 case DW_OP_GNU_addr_index:
30860 case DW_OP_addrx:
30861 case DW_OP_GNU_const_index:
30862 case DW_OP_constx:
30864 if (loc->dtprel)
30866 unsigned char dtprel = 0xd1;
30867 hstate.add_object (dtprel);
30869 inchash::add_rtx (val1->val_entry->addr.rtl, hstate);
30871 break;
30872 case DW_OP_implicit_pointer:
30873 case DW_OP_GNU_implicit_pointer:
30874 hstate.add_int (val2->v.val_int);
30875 break;
30876 case DW_OP_entry_value:
30877 case DW_OP_GNU_entry_value:
30878 hstate.add_object (val1->v.val_loc);
30879 break;
30880 case DW_OP_regval_type:
30881 case DW_OP_deref_type:
30882 case DW_OP_GNU_regval_type:
30883 case DW_OP_GNU_deref_type:
30885 unsigned int byte_size
30886 = get_AT_unsigned (val2->v.val_die_ref.die, DW_AT_byte_size);
30887 unsigned int encoding
30888 = get_AT_unsigned (val2->v.val_die_ref.die, DW_AT_encoding);
30889 hstate.add_object (val1->v.val_int);
30890 hstate.add_object (byte_size);
30891 hstate.add_object (encoding);
30893 break;
30894 case DW_OP_convert:
30895 case DW_OP_reinterpret:
30896 case DW_OP_GNU_convert:
30897 case DW_OP_GNU_reinterpret:
30898 if (val1->val_class == dw_val_class_unsigned_const)
30900 hstate.add_object (val1->v.val_unsigned);
30901 break;
30903 /* FALLTHRU */
30904 case DW_OP_const_type:
30905 case DW_OP_GNU_const_type:
30907 unsigned int byte_size
30908 = get_AT_unsigned (val1->v.val_die_ref.die, DW_AT_byte_size);
30909 unsigned int encoding
30910 = get_AT_unsigned (val1->v.val_die_ref.die, DW_AT_encoding);
30911 hstate.add_object (byte_size);
30912 hstate.add_object (encoding);
30913 if (loc->dw_loc_opc != DW_OP_const_type
30914 && loc->dw_loc_opc != DW_OP_GNU_const_type)
30915 break;
30916 hstate.add_object (val2->val_class);
30917 switch (val2->val_class)
30919 case dw_val_class_const:
30920 hstate.add_object (val2->v.val_int);
30921 break;
30922 case dw_val_class_vec:
30924 unsigned int elt_size = val2->v.val_vec.elt_size;
30925 unsigned int len = val2->v.val_vec.length;
30927 hstate.add_object (elt_size);
30928 hstate.add_object (len);
30929 hstate.add (val2->v.val_vec.array, len * elt_size);
30931 break;
30932 case dw_val_class_const_double:
30933 hstate.add_object (val2->v.val_double.low);
30934 hstate.add_object (val2->v.val_double.high);
30935 break;
30936 case dw_val_class_wide_int:
30937 hstate.add (val2->v.val_wide->get_val (),
30938 get_full_len (*val2->v.val_wide)
30939 * HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR);
30940 break;
30941 default:
30942 gcc_unreachable ();
30945 break;
30947 default:
30948 /* Other codes have no operands. */
30949 break;
30953 /* Iteratively hash the whole DWARF location expression LOC into HSTATE. */
30955 static inline void
30956 hash_locs (dw_loc_descr_ref loc, inchash::hash &hstate)
30958 dw_loc_descr_ref l;
30959 bool sizes_computed = false;
30960 /* Compute sizes, so that DW_OP_skip/DW_OP_bra can be checksummed. */
30961 size_of_locs (loc);
30963 for (l = loc; l != NULL; l = l->dw_loc_next)
30965 enum dwarf_location_atom opc = l->dw_loc_opc;
30966 hstate.add_object (opc);
30967 if ((opc == DW_OP_skip || opc == DW_OP_bra) && !sizes_computed)
30969 size_of_locs (loc);
30970 sizes_computed = true;
30972 hash_loc_operands (l, hstate);
30976 /* Compute hash of the whole location list LIST_HEAD. */
30978 static inline void
30979 hash_loc_list (dw_loc_list_ref list_head)
30981 dw_loc_list_ref curr = list_head;
30982 inchash::hash hstate;
30984 for (curr = list_head; curr != NULL; curr = curr->dw_loc_next)
30986 hstate.add (curr->begin, strlen (curr->begin) + 1);
30987 hstate.add (curr->end, strlen (curr->end) + 1);
30988 hstate.add_object (curr->vbegin);
30989 hstate.add_object (curr->vend);
30990 if (curr->section)
30991 hstate.add (curr->section, strlen (curr->section) + 1);
30992 hash_locs (curr->expr, hstate);
30994 list_head->hash = hstate.end ();
30997 /* Return true if X and Y opcodes have the same operands. */
30999 static inline bool
31000 compare_loc_operands (dw_loc_descr_ref x, dw_loc_descr_ref y)
31002 dw_val_ref valx1 = &x->dw_loc_oprnd1;
31003 dw_val_ref valx2 = &x->dw_loc_oprnd2;
31004 dw_val_ref valy1 = &y->dw_loc_oprnd1;
31005 dw_val_ref valy2 = &y->dw_loc_oprnd2;
31007 switch (x->dw_loc_opc)
31009 case DW_OP_const4u:
31010 case DW_OP_const8u:
31011 if (x->dtprel)
31012 goto hash_addr;
31013 /* FALLTHRU */
31014 case DW_OP_const1u:
31015 case DW_OP_const1s:
31016 case DW_OP_const2u:
31017 case DW_OP_const2s:
31018 case DW_OP_const4s:
31019 case DW_OP_const8s:
31020 case DW_OP_constu:
31021 case DW_OP_consts:
31022 case DW_OP_pick:
31023 case DW_OP_plus_uconst:
31024 case DW_OP_breg0:
31025 case DW_OP_breg1:
31026 case DW_OP_breg2:
31027 case DW_OP_breg3:
31028 case DW_OP_breg4:
31029 case DW_OP_breg5:
31030 case DW_OP_breg6:
31031 case DW_OP_breg7:
31032 case DW_OP_breg8:
31033 case DW_OP_breg9:
31034 case DW_OP_breg10:
31035 case DW_OP_breg11:
31036 case DW_OP_breg12:
31037 case DW_OP_breg13:
31038 case DW_OP_breg14:
31039 case DW_OP_breg15:
31040 case DW_OP_breg16:
31041 case DW_OP_breg17:
31042 case DW_OP_breg18:
31043 case DW_OP_breg19:
31044 case DW_OP_breg20:
31045 case DW_OP_breg21:
31046 case DW_OP_breg22:
31047 case DW_OP_breg23:
31048 case DW_OP_breg24:
31049 case DW_OP_breg25:
31050 case DW_OP_breg26:
31051 case DW_OP_breg27:
31052 case DW_OP_breg28:
31053 case DW_OP_breg29:
31054 case DW_OP_breg30:
31055 case DW_OP_breg31:
31056 case DW_OP_regx:
31057 case DW_OP_fbreg:
31058 case DW_OP_piece:
31059 case DW_OP_deref_size:
31060 case DW_OP_xderef_size:
31061 return valx1->v.val_int == valy1->v.val_int;
31062 case DW_OP_skip:
31063 case DW_OP_bra:
31064 /* If splitting debug info, the use of DW_OP_GNU_addr_index
31065 can cause irrelevant differences in dw_loc_addr. */
31066 gcc_assert (valx1->val_class == dw_val_class_loc
31067 && valy1->val_class == dw_val_class_loc
31068 && (dwarf_split_debug_info
31069 || x->dw_loc_addr == y->dw_loc_addr));
31070 return valx1->v.val_loc->dw_loc_addr == valy1->v.val_loc->dw_loc_addr;
31071 case DW_OP_implicit_value:
31072 if (valx1->v.val_unsigned != valy1->v.val_unsigned
31073 || valx2->val_class != valy2->val_class)
31074 return false;
31075 switch (valx2->val_class)
31077 case dw_val_class_const:
31078 return valx2->v.val_int == valy2->v.val_int;
31079 case dw_val_class_vec:
31080 return valx2->v.val_vec.elt_size == valy2->v.val_vec.elt_size
31081 && valx2->v.val_vec.length == valy2->v.val_vec.length
31082 && memcmp (valx2->v.val_vec.array, valy2->v.val_vec.array,
31083 valx2->v.val_vec.elt_size
31084 * valx2->v.val_vec.length) == 0;
31085 case dw_val_class_const_double:
31086 return valx2->v.val_double.low == valy2->v.val_double.low
31087 && valx2->v.val_double.high == valy2->v.val_double.high;
31088 case dw_val_class_wide_int:
31089 return *valx2->v.val_wide == *valy2->v.val_wide;
31090 case dw_val_class_addr:
31091 return rtx_equal_p (valx2->v.val_addr, valy2->v.val_addr);
31092 default:
31093 gcc_unreachable ();
31095 case DW_OP_bregx:
31096 case DW_OP_bit_piece:
31097 return valx1->v.val_int == valy1->v.val_int
31098 && valx2->v.val_int == valy2->v.val_int;
31099 case DW_OP_addr:
31100 hash_addr:
31101 return rtx_equal_p (valx1->v.val_addr, valy1->v.val_addr);
31102 case DW_OP_GNU_addr_index:
31103 case DW_OP_addrx:
31104 case DW_OP_GNU_const_index:
31105 case DW_OP_constx:
31107 rtx ax1 = valx1->val_entry->addr.rtl;
31108 rtx ay1 = valy1->val_entry->addr.rtl;
31109 return rtx_equal_p (ax1, ay1);
31111 case DW_OP_implicit_pointer:
31112 case DW_OP_GNU_implicit_pointer:
31113 return valx1->val_class == dw_val_class_die_ref
31114 && valx1->val_class == valy1->val_class
31115 && valx1->v.val_die_ref.die == valy1->v.val_die_ref.die
31116 && valx2->v.val_int == valy2->v.val_int;
31117 case DW_OP_entry_value:
31118 case DW_OP_GNU_entry_value:
31119 return compare_loc_operands (valx1->v.val_loc, valy1->v.val_loc);
31120 case DW_OP_const_type:
31121 case DW_OP_GNU_const_type:
31122 if (valx1->v.val_die_ref.die != valy1->v.val_die_ref.die
31123 || valx2->val_class != valy2->val_class)
31124 return false;
31125 switch (valx2->val_class)
31127 case dw_val_class_const:
31128 return valx2->v.val_int == valy2->v.val_int;
31129 case dw_val_class_vec:
31130 return valx2->v.val_vec.elt_size == valy2->v.val_vec.elt_size
31131 && valx2->v.val_vec.length == valy2->v.val_vec.length
31132 && memcmp (valx2->v.val_vec.array, valy2->v.val_vec.array,
31133 valx2->v.val_vec.elt_size
31134 * valx2->v.val_vec.length) == 0;
31135 case dw_val_class_const_double:
31136 return valx2->v.val_double.low == valy2->v.val_double.low
31137 && valx2->v.val_double.high == valy2->v.val_double.high;
31138 case dw_val_class_wide_int:
31139 return *valx2->v.val_wide == *valy2->v.val_wide;
31140 default:
31141 gcc_unreachable ();
31143 case DW_OP_regval_type:
31144 case DW_OP_deref_type:
31145 case DW_OP_GNU_regval_type:
31146 case DW_OP_GNU_deref_type:
31147 return valx1->v.val_int == valy1->v.val_int
31148 && valx2->v.val_die_ref.die == valy2->v.val_die_ref.die;
31149 case DW_OP_convert:
31150 case DW_OP_reinterpret:
31151 case DW_OP_GNU_convert:
31152 case DW_OP_GNU_reinterpret:
31153 if (valx1->val_class != valy1->val_class)
31154 return false;
31155 if (valx1->val_class == dw_val_class_unsigned_const)
31156 return valx1->v.val_unsigned == valy1->v.val_unsigned;
31157 return valx1->v.val_die_ref.die == valy1->v.val_die_ref.die;
31158 case DW_OP_GNU_parameter_ref:
31159 return valx1->val_class == dw_val_class_die_ref
31160 && valx1->val_class == valy1->val_class
31161 && valx1->v.val_die_ref.die == valy1->v.val_die_ref.die;
31162 default:
31163 /* Other codes have no operands. */
31164 return true;
31168 /* Return true if DWARF location expressions X and Y are the same. */
31170 static inline bool
31171 compare_locs (dw_loc_descr_ref x, dw_loc_descr_ref y)
31173 for (; x != NULL && y != NULL; x = x->dw_loc_next, y = y->dw_loc_next)
31174 if (x->dw_loc_opc != y->dw_loc_opc
31175 || x->dtprel != y->dtprel
31176 || !compare_loc_operands (x, y))
31177 break;
31178 return x == NULL && y == NULL;
31181 /* Hashtable helpers. */
31183 struct loc_list_hasher : nofree_ptr_hash <dw_loc_list_struct>
31185 static inline hashval_t hash (const dw_loc_list_struct *);
31186 static inline bool equal (const dw_loc_list_struct *,
31187 const dw_loc_list_struct *);
31190 /* Return precomputed hash of location list X. */
31192 inline hashval_t
31193 loc_list_hasher::hash (const dw_loc_list_struct *x)
31195 return x->hash;
31198 /* Return true if location lists A and B are the same. */
31200 inline bool
31201 loc_list_hasher::equal (const dw_loc_list_struct *a,
31202 const dw_loc_list_struct *b)
31204 if (a == b)
31205 return 1;
31206 if (a->hash != b->hash)
31207 return 0;
31208 for (; a != NULL && b != NULL; a = a->dw_loc_next, b = b->dw_loc_next)
31209 if (strcmp (a->begin, b->begin) != 0
31210 || strcmp (a->end, b->end) != 0
31211 || (a->section == NULL) != (b->section == NULL)
31212 || (a->section && strcmp (a->section, b->section) != 0)
31213 || a->vbegin != b->vbegin || a->vend != b->vend
31214 || !compare_locs (a->expr, b->expr))
31215 break;
31216 return a == NULL && b == NULL;
31219 typedef hash_table<loc_list_hasher> loc_list_hash_type;
31222 /* Recursively optimize location lists referenced from DIE
31223 children and share them whenever possible. */
31225 static void
31226 optimize_location_lists_1 (dw_die_ref die, loc_list_hash_type *htab)
31228 dw_die_ref c;
31229 dw_attr_node *a;
31230 unsigned ix;
31231 dw_loc_list_struct **slot;
31232 bool drop_locviews = false;
31233 bool has_locviews = false;
31235 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
31236 if (AT_class (a) == dw_val_class_loc_list)
31238 dw_loc_list_ref list = AT_loc_list (a);
31239 /* TODO: perform some optimizations here, before hashing
31240 it and storing into the hash table. */
31241 hash_loc_list (list);
31242 slot = htab->find_slot_with_hash (list, list->hash, INSERT);
31243 if (*slot == NULL)
31245 *slot = list;
31246 if (loc_list_has_views (list))
31247 gcc_assert (list->vl_symbol);
31248 else if (list->vl_symbol)
31250 drop_locviews = true;
31251 list->vl_symbol = NULL;
31254 else
31256 if (list->vl_symbol && !(*slot)->vl_symbol)
31257 drop_locviews = true;
31258 a->dw_attr_val.v.val_loc_list = *slot;
31261 else if (AT_class (a) == dw_val_class_view_list)
31263 gcc_checking_assert (a->dw_attr == DW_AT_GNU_locviews);
31264 has_locviews = true;
31268 if (drop_locviews && has_locviews)
31269 remove_AT (die, DW_AT_GNU_locviews);
31271 FOR_EACH_CHILD (die, c, optimize_location_lists_1 (c, htab));
31275 /* Recursively assign each location list a unique index into the debug_addr
31276 section. */
31278 static void
31279 index_location_lists (dw_die_ref die)
31281 dw_die_ref c;
31282 dw_attr_node *a;
31283 unsigned ix;
31285 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
31286 if (AT_class (a) == dw_val_class_loc_list)
31288 dw_loc_list_ref list = AT_loc_list (a);
31289 dw_loc_list_ref curr;
31290 for (curr = list; curr != NULL; curr = curr->dw_loc_next)
31292 /* Don't index an entry that has already been indexed
31293 or won't be output. Make sure skip_loc_list_entry doesn't
31294 call size_of_locs, because that might cause circular dependency,
31295 index_location_lists requiring address table indexes to be
31296 computed, but adding new indexes through add_addr_table_entry
31297 and address table index computation requiring no new additions
31298 to the hash table. In the rare case of DWARF[234] >= 64KB
31299 location expression, we'll just waste unused address table entry
31300 for it. */
31301 if (curr->begin_entry != NULL
31302 || skip_loc_list_entry (curr))
31303 continue;
31305 curr->begin_entry
31306 = add_addr_table_entry (xstrdup (curr->begin), ate_kind_label);
31310 FOR_EACH_CHILD (die, c, index_location_lists (c));
31313 /* Optimize location lists referenced from DIE
31314 children and share them whenever possible. */
31316 static void
31317 optimize_location_lists (dw_die_ref die)
31319 loc_list_hash_type htab (500);
31320 optimize_location_lists_1 (die, &htab);
31323 /* Traverse the limbo die list, and add parent/child links. The only
31324 dies without parents that should be here are concrete instances of
31325 inline functions, and the comp_unit_die. We can ignore the comp_unit_die.
31326 For concrete instances, we can get the parent die from the abstract
31327 instance. */
31329 static void
31330 flush_limbo_die_list (void)
31332 limbo_die_node *node;
31334 /* get_context_die calls force_decl_die, which can put new DIEs on the
31335 limbo list in LTO mode when nested functions are put in a different
31336 partition than that of their parent function. */
31337 while ((node = limbo_die_list))
31339 dw_die_ref die = node->die;
31340 limbo_die_list = node->next;
31342 if (die->die_parent == NULL)
31344 dw_die_ref origin = get_AT_ref (die, DW_AT_abstract_origin);
31346 if (origin && origin->die_parent)
31347 add_child_die (origin->die_parent, die);
31348 else if (is_cu_die (die))
31350 else if (seen_error ())
31351 /* It's OK to be confused by errors in the input. */
31352 add_child_die (comp_unit_die (), die);
31353 else
31355 /* In certain situations, the lexical block containing a
31356 nested function can be optimized away, which results
31357 in the nested function die being orphaned. Likewise
31358 with the return type of that nested function. Force
31359 this to be a child of the containing function.
31361 It may happen that even the containing function got fully
31362 inlined and optimized out. In that case we are lost and
31363 assign the empty child. This should not be big issue as
31364 the function is likely unreachable too. */
31365 gcc_assert (node->created_for);
31367 if (DECL_P (node->created_for))
31368 origin = get_context_die (DECL_CONTEXT (node->created_for));
31369 else if (TYPE_P (node->created_for))
31370 origin = scope_die_for (node->created_for, comp_unit_die ());
31371 else
31372 origin = comp_unit_die ();
31374 add_child_die (origin, die);
31380 /* Reset DIEs so we can output them again. */
31382 static void
31383 reset_dies (dw_die_ref die)
31385 dw_die_ref c;
31387 /* Remove stuff we re-generate. */
31388 die->die_mark = 0;
31389 die->die_offset = 0;
31390 die->die_abbrev = 0;
31391 remove_AT (die, DW_AT_sibling);
31393 FOR_EACH_CHILD (die, c, reset_dies (c));
31396 /* Output stuff that dwarf requires at the end of every file,
31397 and generate the DWARF-2 debugging info. */
31399 static void
31400 dwarf2out_finish (const char *filename)
31402 comdat_type_node *ctnode;
31403 dw_die_ref main_comp_unit_die;
31404 unsigned char checksum[16];
31405 char dl_section_ref[MAX_ARTIFICIAL_LABEL_BYTES];
31407 /* Flush out any latecomers to the limbo party. */
31408 flush_limbo_die_list ();
31410 if (inline_entry_data_table)
31411 gcc_assert (inline_entry_data_table->is_empty ());
31413 if (flag_checking)
31415 verify_die (comp_unit_die ());
31416 for (limbo_die_node *node = cu_die_list; node; node = node->next)
31417 verify_die (node->die);
31420 /* We shouldn't have any symbols with delayed asm names for
31421 DIEs generated after early finish. */
31422 gcc_assert (deferred_asm_name == NULL);
31424 gen_remaining_tmpl_value_param_die_attribute ();
31426 if (flag_generate_lto || flag_generate_offload)
31428 gcc_assert (flag_fat_lto_objects || flag_generate_offload);
31430 /* Prune stuff so that dwarf2out_finish runs successfully
31431 for the fat part of the object. */
31432 reset_dies (comp_unit_die ());
31433 for (limbo_die_node *node = cu_die_list; node; node = node->next)
31434 reset_dies (node->die);
31436 hash_table<comdat_type_hasher> comdat_type_table (100);
31437 for (ctnode = comdat_type_list; ctnode != NULL; ctnode = ctnode->next)
31439 comdat_type_node **slot
31440 = comdat_type_table.find_slot (ctnode, INSERT);
31442 /* Don't reset types twice. */
31443 if (*slot != HTAB_EMPTY_ENTRY)
31444 continue;
31446 /* Remove the pointer to the line table. */
31447 remove_AT (ctnode->root_die, DW_AT_stmt_list);
31449 if (debug_info_level >= DINFO_LEVEL_TERSE)
31450 reset_dies (ctnode->root_die);
31452 *slot = ctnode;
31455 /* Reset die CU symbol so we don't output it twice. */
31456 comp_unit_die ()->die_id.die_symbol = NULL;
31458 /* Remove DW_AT_macro and DW_AT_stmt_list from the early output. */
31459 remove_AT (comp_unit_die (), DW_AT_stmt_list);
31460 if (have_macinfo)
31461 remove_AT (comp_unit_die (), DEBUG_MACRO_ATTRIBUTE);
31463 /* Remove indirect string decisions. */
31464 debug_str_hash->traverse<void *, reset_indirect_string> (NULL);
31465 if (debug_line_str_hash)
31467 debug_line_str_hash->traverse<void *, reset_indirect_string> (NULL);
31468 debug_line_str_hash = NULL;
31472 #if ENABLE_ASSERT_CHECKING
31474 dw_die_ref die = comp_unit_die (), c;
31475 FOR_EACH_CHILD (die, c, gcc_assert (! c->die_mark));
31477 #endif
31478 for (ctnode = comdat_type_list; ctnode != NULL; ctnode = ctnode->next)
31479 resolve_addr (ctnode->root_die);
31480 resolve_addr (comp_unit_die ());
31481 move_marked_base_types ();
31483 if (dump_file)
31485 fprintf (dump_file, "DWARF for %s\n", filename);
31486 print_die (comp_unit_die (), dump_file);
31489 /* Initialize sections and labels used for actual assembler output. */
31490 unsigned generation = init_sections_and_labels (false);
31492 /* Traverse the DIE's and add sibling attributes to those DIE's that
31493 have children. */
31494 add_sibling_attributes (comp_unit_die ());
31495 limbo_die_node *node;
31496 for (node = cu_die_list; node; node = node->next)
31497 add_sibling_attributes (node->die);
31498 for (ctnode = comdat_type_list; ctnode != NULL; ctnode = ctnode->next)
31499 add_sibling_attributes (ctnode->root_die);
31501 /* When splitting DWARF info, we put some attributes in the
31502 skeleton compile_unit DIE that remains in the .o, while
31503 most attributes go in the DWO compile_unit_die. */
31504 if (dwarf_split_debug_info)
31506 limbo_die_node *cu;
31507 main_comp_unit_die = gen_compile_unit_die (NULL);
31508 if (dwarf_version >= 5)
31509 main_comp_unit_die->die_tag = DW_TAG_skeleton_unit;
31510 cu = limbo_die_list;
31511 gcc_assert (cu->die == main_comp_unit_die);
31512 limbo_die_list = limbo_die_list->next;
31513 cu->next = cu_die_list;
31514 cu_die_list = cu;
31516 else
31517 main_comp_unit_die = comp_unit_die ();
31519 /* Output a terminator label for the .text section. */
31520 switch_to_section (text_section);
31521 targetm.asm_out.internal_label (asm_out_file, TEXT_END_LABEL, 0);
31522 if (cold_text_section)
31524 switch_to_section (cold_text_section);
31525 targetm.asm_out.internal_label (asm_out_file, COLD_END_LABEL, 0);
31528 /* We can only use the low/high_pc attributes if all of the code was
31529 in .text. */
31530 if (!have_multiple_function_sections
31531 || (dwarf_version < 3 && dwarf_strict))
31533 /* Don't add if the CU has no associated code. */
31534 if (text_section_used)
31535 add_AT_low_high_pc (main_comp_unit_die, text_section_label,
31536 text_end_label, true);
31538 else
31540 unsigned fde_idx;
31541 dw_fde_ref fde;
31542 bool range_list_added = false;
31544 if (text_section_used)
31545 add_ranges_by_labels (main_comp_unit_die, text_section_label,
31546 text_end_label, &range_list_added, true);
31547 if (cold_text_section_used)
31548 add_ranges_by_labels (main_comp_unit_die, cold_text_section_label,
31549 cold_end_label, &range_list_added, true);
31551 FOR_EACH_VEC_ELT (*fde_vec, fde_idx, fde)
31553 if (DECL_IGNORED_P (fde->decl))
31554 continue;
31555 if (!fde->in_std_section)
31556 add_ranges_by_labels (main_comp_unit_die, fde->dw_fde_begin,
31557 fde->dw_fde_end, &range_list_added,
31558 true);
31559 if (fde->dw_fde_second_begin && !fde->second_in_std_section)
31560 add_ranges_by_labels (main_comp_unit_die, fde->dw_fde_second_begin,
31561 fde->dw_fde_second_end, &range_list_added,
31562 true);
31565 if (range_list_added)
31567 /* We need to give .debug_loc and .debug_ranges an appropriate
31568 "base address". Use zero so that these addresses become
31569 absolute. Historically, we've emitted the unexpected
31570 DW_AT_entry_pc instead of DW_AT_low_pc for this purpose.
31571 Emit both to give time for other tools to adapt. */
31572 add_AT_addr (main_comp_unit_die, DW_AT_low_pc, const0_rtx, true);
31573 if (! dwarf_strict && dwarf_version < 4)
31574 add_AT_addr (main_comp_unit_die, DW_AT_entry_pc, const0_rtx, true);
31576 add_ranges (NULL);
31580 /* AIX Assembler inserts the length, so adjust the reference to match the
31581 offset expected by debuggers. */
31582 strcpy (dl_section_ref, debug_line_section_label);
31583 if (XCOFF_DEBUGGING_INFO)
31584 strcat (dl_section_ref, DWARF_INITIAL_LENGTH_SIZE_STR);
31586 if (debug_info_level >= DINFO_LEVEL_TERSE)
31587 add_AT_lineptr (main_comp_unit_die, DW_AT_stmt_list,
31588 dl_section_ref);
31590 if (have_macinfo)
31591 add_AT_macptr (comp_unit_die (), DEBUG_MACRO_ATTRIBUTE,
31592 macinfo_section_label);
31594 if (dwarf_split_debug_info)
31596 if (have_location_lists)
31598 /* Since we generate the loclists in the split DWARF .dwo
31599 file itself, we don't need to generate a loclists_base
31600 attribute for the split compile unit DIE. That attribute
31601 (and using relocatable sec_offset FORMs) isn't allowed
31602 for a split compile unit. Only if the .debug_loclists
31603 section was in the main file, would we need to generate a
31604 loclists_base attribute here (for the full or skeleton
31605 unit DIE). */
31607 /* optimize_location_lists calculates the size of the lists,
31608 so index them first, and assign indices to the entries.
31609 Although optimize_location_lists will remove entries from
31610 the table, it only does so for duplicates, and therefore
31611 only reduces ref_counts to 1. */
31612 index_location_lists (comp_unit_die ());
31615 if (addr_index_table != NULL)
31617 unsigned int index = 0;
31618 addr_index_table
31619 ->traverse_noresize<unsigned int *, index_addr_table_entry>
31620 (&index);
31624 loc_list_idx = 0;
31625 if (have_location_lists)
31627 optimize_location_lists (comp_unit_die ());
31628 /* And finally assign indexes to the entries for -gsplit-dwarf. */
31629 if (dwarf_version >= 5 && dwarf_split_debug_info)
31630 assign_location_list_indexes (comp_unit_die ());
31633 save_macinfo_strings ();
31635 if (dwarf_split_debug_info)
31637 unsigned int index = 0;
31639 /* Add attributes common to skeleton compile_units and
31640 type_units. Because these attributes include strings, it
31641 must be done before freezing the string table. Top-level
31642 skeleton die attrs are added when the skeleton type unit is
31643 created, so ensure it is created by this point. */
31644 add_top_level_skeleton_die_attrs (main_comp_unit_die);
31645 debug_str_hash->traverse_noresize<unsigned int *, index_string> (&index);
31648 /* Output all of the compilation units. We put the main one last so that
31649 the offsets are available to output_pubnames. */
31650 for (node = cu_die_list; node; node = node->next)
31651 output_comp_unit (node->die, 0, NULL);
31653 hash_table<comdat_type_hasher> comdat_type_table (100);
31654 for (ctnode = comdat_type_list; ctnode != NULL; ctnode = ctnode->next)
31656 comdat_type_node **slot = comdat_type_table.find_slot (ctnode, INSERT);
31658 /* Don't output duplicate types. */
31659 if (*slot != HTAB_EMPTY_ENTRY)
31660 continue;
31662 /* Add a pointer to the line table for the main compilation unit
31663 so that the debugger can make sense of DW_AT_decl_file
31664 attributes. */
31665 if (debug_info_level >= DINFO_LEVEL_TERSE)
31666 add_AT_lineptr (ctnode->root_die, DW_AT_stmt_list,
31667 (!dwarf_split_debug_info
31668 ? dl_section_ref
31669 : debug_skeleton_line_section_label));
31671 output_comdat_type_unit (ctnode, false);
31672 *slot = ctnode;
31675 if (dwarf_split_debug_info)
31677 int mark;
31678 struct md5_ctx ctx;
31680 if (dwarf_version >= 5 && !vec_safe_is_empty (ranges_table))
31681 index_rnglists ();
31683 /* Compute a checksum of the comp_unit to use as the dwo_id. */
31684 md5_init_ctx (&ctx);
31685 mark = 0;
31686 die_checksum (comp_unit_die (), &ctx, &mark);
31687 unmark_all_dies (comp_unit_die ());
31688 md5_finish_ctx (&ctx, checksum);
31690 if (dwarf_version < 5)
31692 /* Use the first 8 bytes of the checksum as the dwo_id,
31693 and add it to both comp-unit DIEs. */
31694 add_AT_data8 (main_comp_unit_die, DW_AT_GNU_dwo_id, checksum);
31695 add_AT_data8 (comp_unit_die (), DW_AT_GNU_dwo_id, checksum);
31698 /* Add the base offset of the ranges table to the skeleton
31699 comp-unit DIE. */
31700 if (!vec_safe_is_empty (ranges_table))
31702 if (dwarf_version >= 5)
31703 add_AT_lineptr (main_comp_unit_die, DW_AT_rnglists_base,
31704 ranges_base_label);
31705 else
31706 add_AT_lineptr (main_comp_unit_die, DW_AT_GNU_ranges_base,
31707 ranges_section_label);
31710 output_addr_table ();
31713 /* Output the main compilation unit if non-empty or if .debug_macinfo
31714 or .debug_macro will be emitted. */
31715 output_comp_unit (comp_unit_die (), have_macinfo,
31716 dwarf_split_debug_info ? checksum : NULL);
31718 if (dwarf_split_debug_info && info_section_emitted)
31719 output_skeleton_debug_sections (main_comp_unit_die, checksum);
31721 /* Output the abbreviation table. */
31722 if (vec_safe_length (abbrev_die_table) != 1)
31724 switch_to_section (debug_abbrev_section);
31725 ASM_OUTPUT_LABEL (asm_out_file, abbrev_section_label);
31726 output_abbrev_section ();
31729 /* Output location list section if necessary. */
31730 if (have_location_lists)
31732 char l1[MAX_ARTIFICIAL_LABEL_BYTES];
31733 char l2[MAX_ARTIFICIAL_LABEL_BYTES];
31734 /* Output the location lists info. */
31735 switch_to_section (debug_loc_section);
31736 if (dwarf_version >= 5)
31738 ASM_GENERATE_INTERNAL_LABEL (l1, DEBUG_LOC_SECTION_LABEL, 2);
31739 ASM_GENERATE_INTERNAL_LABEL (l2, DEBUG_LOC_SECTION_LABEL, 3);
31740 if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
31741 dw2_asm_output_data (4, 0xffffffff,
31742 "Initial length escape value indicating "
31743 "64-bit DWARF extension");
31744 dw2_asm_output_delta (DWARF_OFFSET_SIZE, l2, l1,
31745 "Length of Location Lists");
31746 ASM_OUTPUT_LABEL (asm_out_file, l1);
31747 output_dwarf_version ();
31748 dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Address Size");
31749 dw2_asm_output_data (1, 0, "Segment Size");
31750 dw2_asm_output_data (4, dwarf_split_debug_info ? loc_list_idx : 0,
31751 "Offset Entry Count");
31753 ASM_OUTPUT_LABEL (asm_out_file, loc_section_label);
31754 if (dwarf_version >= 5 && dwarf_split_debug_info)
31756 unsigned int save_loc_list_idx = loc_list_idx;
31757 loc_list_idx = 0;
31758 output_loclists_offsets (comp_unit_die ());
31759 gcc_assert (save_loc_list_idx == loc_list_idx);
31761 output_location_lists (comp_unit_die ());
31762 if (dwarf_version >= 5)
31763 ASM_OUTPUT_LABEL (asm_out_file, l2);
31766 output_pubtables ();
31768 /* Output the address range information if a CU (.debug_info section)
31769 was emitted. We output an empty table even if we had no functions
31770 to put in it. This because the consumer has no way to tell the
31771 difference between an empty table that we omitted and failure to
31772 generate a table that would have contained data. */
31773 if (info_section_emitted)
31775 switch_to_section (debug_aranges_section);
31776 output_aranges ();
31779 /* Output ranges section if necessary. */
31780 if (!vec_safe_is_empty (ranges_table))
31782 if (dwarf_version >= 5)
31783 output_rnglists (generation);
31784 else
31785 output_ranges ();
31788 /* Have to end the macro section. */
31789 if (have_macinfo)
31791 switch_to_section (debug_macinfo_section);
31792 ASM_OUTPUT_LABEL (asm_out_file, macinfo_section_label);
31793 output_macinfo (!dwarf_split_debug_info ? debug_line_section_label
31794 : debug_skeleton_line_section_label, false);
31795 dw2_asm_output_data (1, 0, "End compilation unit");
31798 /* Output the source line correspondence table. We must do this
31799 even if there is no line information. Otherwise, on an empty
31800 translation unit, we will generate a present, but empty,
31801 .debug_info section. IRIX 6.5 `nm' will then complain when
31802 examining the file. This is done late so that any filenames
31803 used by the debug_info section are marked as 'used'. */
31804 switch_to_section (debug_line_section);
31805 ASM_OUTPUT_LABEL (asm_out_file, debug_line_section_label);
31806 if (! output_asm_line_debug_info ())
31807 output_line_info (false);
31809 if (dwarf_split_debug_info && info_section_emitted)
31811 switch_to_section (debug_skeleton_line_section);
31812 ASM_OUTPUT_LABEL (asm_out_file, debug_skeleton_line_section_label);
31813 output_line_info (true);
31816 /* If we emitted any indirect strings, output the string table too. */
31817 if (debug_str_hash || skeleton_debug_str_hash)
31818 output_indirect_strings ();
31819 if (debug_line_str_hash)
31821 switch_to_section (debug_line_str_section);
31822 const enum dwarf_form form = DW_FORM_line_strp;
31823 debug_line_str_hash->traverse<enum dwarf_form,
31824 output_indirect_string> (form);
31827 /* ??? Move lvugid out of dwarf2out_source_line and reset it too? */
31828 symview_upper_bound = 0;
31829 if (zero_view_p)
31830 bitmap_clear (zero_view_p);
31833 /* Returns a hash value for X (which really is a variable_value_struct). */
31835 inline hashval_t
31836 variable_value_hasher::hash (variable_value_struct *x)
31838 return (hashval_t) x->decl_id;
31841 /* Return nonzero if decl_id of variable_value_struct X is the same as
31842 UID of decl Y. */
31844 inline bool
31845 variable_value_hasher::equal (variable_value_struct *x, tree y)
31847 return x->decl_id == DECL_UID (y);
31850 /* Helper function for resolve_variable_value, handle
31851 DW_OP_GNU_variable_value in one location expression.
31852 Return true if exprloc has been changed into loclist. */
31854 static bool
31855 resolve_variable_value_in_expr (dw_attr_node *a, dw_loc_descr_ref loc)
31857 dw_loc_descr_ref next;
31858 for (dw_loc_descr_ref prev = NULL; loc; prev = loc, loc = next)
31860 next = loc->dw_loc_next;
31861 if (loc->dw_loc_opc != DW_OP_GNU_variable_value
31862 || loc->dw_loc_oprnd1.val_class != dw_val_class_decl_ref)
31863 continue;
31865 tree decl = loc->dw_loc_oprnd1.v.val_decl_ref;
31866 if (DECL_CONTEXT (decl) != current_function_decl)
31867 continue;
31869 dw_die_ref ref = lookup_decl_die (decl);
31870 if (ref)
31872 loc->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
31873 loc->dw_loc_oprnd1.v.val_die_ref.die = ref;
31874 loc->dw_loc_oprnd1.v.val_die_ref.external = 0;
31875 continue;
31877 dw_loc_list_ref l = loc_list_from_tree (decl, 0, NULL);
31878 if (l == NULL)
31879 continue;
31880 if (l->dw_loc_next)
31882 if (AT_class (a) != dw_val_class_loc)
31883 continue;
31884 switch (a->dw_attr)
31886 /* Following attributes allow both exprloc and loclist
31887 classes, so we can change them into a loclist. */
31888 case DW_AT_location:
31889 case DW_AT_string_length:
31890 case DW_AT_return_addr:
31891 case DW_AT_data_member_location:
31892 case DW_AT_frame_base:
31893 case DW_AT_segment:
31894 case DW_AT_static_link:
31895 case DW_AT_use_location:
31896 case DW_AT_vtable_elem_location:
31897 if (prev)
31899 prev->dw_loc_next = NULL;
31900 prepend_loc_descr_to_each (l, AT_loc (a));
31902 if (next)
31903 add_loc_descr_to_each (l, next);
31904 a->dw_attr_val.val_class = dw_val_class_loc_list;
31905 a->dw_attr_val.val_entry = NULL;
31906 a->dw_attr_val.v.val_loc_list = l;
31907 have_location_lists = true;
31908 return true;
31909 /* Following attributes allow both exprloc and reference,
31910 so if the whole expression is DW_OP_GNU_variable_value alone
31911 we could transform it into reference. */
31912 case DW_AT_byte_size:
31913 case DW_AT_bit_size:
31914 case DW_AT_lower_bound:
31915 case DW_AT_upper_bound:
31916 case DW_AT_bit_stride:
31917 case DW_AT_count:
31918 case DW_AT_allocated:
31919 case DW_AT_associated:
31920 case DW_AT_byte_stride:
31921 if (prev == NULL && next == NULL)
31922 break;
31923 /* FALLTHRU */
31924 default:
31925 if (dwarf_strict)
31926 continue;
31927 break;
31929 /* Create DW_TAG_variable that we can refer to. */
31930 gen_decl_die (decl, NULL_TREE, NULL,
31931 lookup_decl_die (current_function_decl));
31932 ref = lookup_decl_die (decl);
31933 if (ref)
31935 loc->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
31936 loc->dw_loc_oprnd1.v.val_die_ref.die = ref;
31937 loc->dw_loc_oprnd1.v.val_die_ref.external = 0;
31939 continue;
31941 if (prev)
31943 prev->dw_loc_next = l->expr;
31944 add_loc_descr (&prev->dw_loc_next, next);
31945 free_loc_descr (loc, NULL);
31946 next = prev->dw_loc_next;
31948 else
31950 memcpy (loc, l->expr, sizeof (dw_loc_descr_node));
31951 add_loc_descr (&loc, next);
31952 next = loc;
31954 loc = prev;
31956 return false;
31959 /* Attempt to resolve DW_OP_GNU_variable_value using loc_list_from_tree. */
31961 static void
31962 resolve_variable_value (dw_die_ref die)
31964 dw_attr_node *a;
31965 dw_loc_list_ref loc;
31966 unsigned ix;
31968 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
31969 switch (AT_class (a))
31971 case dw_val_class_loc:
31972 if (!resolve_variable_value_in_expr (a, AT_loc (a)))
31973 break;
31974 /* FALLTHRU */
31975 case dw_val_class_loc_list:
31976 loc = AT_loc_list (a);
31977 gcc_assert (loc);
31978 for (; loc; loc = loc->dw_loc_next)
31979 resolve_variable_value_in_expr (a, loc->expr);
31980 break;
31981 default:
31982 break;
31986 /* Attempt to optimize DW_OP_GNU_variable_value refering to
31987 temporaries in the current function. */
31989 static void
31990 resolve_variable_values (void)
31992 if (!variable_value_hash || !current_function_decl)
31993 return;
31995 struct variable_value_struct *node
31996 = variable_value_hash->find_with_hash (current_function_decl,
31997 DECL_UID (current_function_decl));
31999 if (node == NULL)
32000 return;
32002 unsigned int i;
32003 dw_die_ref die;
32004 FOR_EACH_VEC_SAFE_ELT (node->dies, i, die)
32005 resolve_variable_value (die);
32008 /* Helper function for note_variable_value, handle one location
32009 expression. */
32011 static void
32012 note_variable_value_in_expr (dw_die_ref die, dw_loc_descr_ref loc)
32014 for (; loc; loc = loc->dw_loc_next)
32015 if (loc->dw_loc_opc == DW_OP_GNU_variable_value
32016 && loc->dw_loc_oprnd1.val_class == dw_val_class_decl_ref)
32018 tree decl = loc->dw_loc_oprnd1.v.val_decl_ref;
32019 dw_die_ref ref = lookup_decl_die (decl);
32020 if (! ref && (flag_generate_lto || flag_generate_offload))
32022 /* ??? This is somewhat a hack because we do not create DIEs
32023 for variables not in BLOCK trees early but when generating
32024 early LTO output we need the dw_val_class_decl_ref to be
32025 fully resolved. For fat LTO objects we'd also like to
32026 undo this after LTO dwarf output. */
32027 gcc_assert (DECL_CONTEXT (decl));
32028 dw_die_ref ctx = lookup_decl_die (DECL_CONTEXT (decl));
32029 gcc_assert (ctx != NULL);
32030 gen_decl_die (decl, NULL_TREE, NULL, ctx);
32031 ref = lookup_decl_die (decl);
32032 gcc_assert (ref != NULL);
32034 if (ref)
32036 loc->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
32037 loc->dw_loc_oprnd1.v.val_die_ref.die = ref;
32038 loc->dw_loc_oprnd1.v.val_die_ref.external = 0;
32039 continue;
32041 if (VAR_P (decl)
32042 && DECL_CONTEXT (decl)
32043 && TREE_CODE (DECL_CONTEXT (decl)) == FUNCTION_DECL
32044 && lookup_decl_die (DECL_CONTEXT (decl)))
32046 if (!variable_value_hash)
32047 variable_value_hash
32048 = hash_table<variable_value_hasher>::create_ggc (10);
32050 tree fndecl = DECL_CONTEXT (decl);
32051 struct variable_value_struct *node;
32052 struct variable_value_struct **slot
32053 = variable_value_hash->find_slot_with_hash (fndecl,
32054 DECL_UID (fndecl),
32055 INSERT);
32056 if (*slot == NULL)
32058 node = ggc_cleared_alloc<variable_value_struct> ();
32059 node->decl_id = DECL_UID (fndecl);
32060 *slot = node;
32062 else
32063 node = *slot;
32065 vec_safe_push (node->dies, die);
32070 /* Walk the tree DIE and note DIEs with DW_OP_GNU_variable_value still
32071 with dw_val_class_decl_ref operand. */
32073 static void
32074 note_variable_value (dw_die_ref die)
32076 dw_die_ref c;
32077 dw_attr_node *a;
32078 dw_loc_list_ref loc;
32079 unsigned ix;
32081 FOR_EACH_VEC_SAFE_ELT (die->die_attr, ix, a)
32082 switch (AT_class (a))
32084 case dw_val_class_loc_list:
32085 loc = AT_loc_list (a);
32086 gcc_assert (loc);
32087 if (!loc->noted_variable_value)
32089 loc->noted_variable_value = 1;
32090 for (; loc; loc = loc->dw_loc_next)
32091 note_variable_value_in_expr (die, loc->expr);
32093 break;
32094 case dw_val_class_loc:
32095 note_variable_value_in_expr (die, AT_loc (a));
32096 break;
32097 default:
32098 break;
32101 /* Mark children. */
32102 FOR_EACH_CHILD (die, c, note_variable_value (c));
32105 /* Perform any cleanups needed after the early debug generation pass
32106 has run. */
32108 static void
32109 dwarf2out_early_finish (const char *filename)
32111 set_early_dwarf s;
32112 char dl_section_ref[MAX_ARTIFICIAL_LABEL_BYTES];
32114 /* PCH might result in DW_AT_producer string being restored from the
32115 header compilation, so always fill it with empty string initially
32116 and overwrite only here. */
32117 dw_attr_node *producer = get_AT (comp_unit_die (), DW_AT_producer);
32118 producer_string = gen_producer_string ();
32119 producer->dw_attr_val.v.val_str->refcount--;
32120 producer->dw_attr_val.v.val_str = find_AT_string (producer_string);
32122 /* Add the name for the main input file now. We delayed this from
32123 dwarf2out_init to avoid complications with PCH. */
32124 add_name_attribute (comp_unit_die (), remap_debug_filename (filename));
32125 add_comp_dir_attribute (comp_unit_die ());
32127 /* When emitting DWARF5 .debug_line_str, move DW_AT_name and
32128 DW_AT_comp_dir into .debug_line_str section. */
32129 if (!output_asm_line_debug_info ()
32130 && dwarf_version >= 5
32131 && DWARF5_USE_DEBUG_LINE_STR)
32133 for (int i = 0; i < 2; i++)
32135 dw_attr_node *a = get_AT (comp_unit_die (),
32136 i ? DW_AT_comp_dir : DW_AT_name);
32137 if (a == NULL
32138 || AT_class (a) != dw_val_class_str
32139 || strlen (AT_string (a)) + 1 <= DWARF_OFFSET_SIZE)
32140 continue;
32142 if (! debug_line_str_hash)
32143 debug_line_str_hash
32144 = hash_table<indirect_string_hasher>::create_ggc (10);
32146 struct indirect_string_node *node
32147 = find_AT_string_in_table (AT_string (a), debug_line_str_hash);
32148 set_indirect_string (node);
32149 node->form = DW_FORM_line_strp;
32150 a->dw_attr_val.v.val_str->refcount--;
32151 a->dw_attr_val.v.val_str = node;
32155 /* With LTO early dwarf was really finished at compile-time, so make
32156 sure to adjust the phase after annotating the LTRANS CU DIE. */
32157 if (in_lto_p)
32159 /* Force DW_TAG_imported_unit to be created now, otherwise
32160 we might end up without it or ordered after DW_TAG_inlined_subroutine
32161 referencing DIEs from it. */
32162 if (! flag_wpa && flag_incremental_link != INCREMENTAL_LINK_LTO)
32164 unsigned i;
32165 tree tu;
32166 if (external_die_map)
32167 FOR_EACH_VEC_SAFE_ELT (all_translation_units, i, tu)
32168 if (sym_off_pair *desc = external_die_map->get (tu))
32170 dw_die_ref import = new_die (DW_TAG_imported_unit,
32171 comp_unit_die (), NULL_TREE);
32172 add_AT_external_die_ref (import, DW_AT_import,
32173 desc->sym, desc->off);
32177 early_dwarf_finished = true;
32178 if (dump_file)
32180 fprintf (dump_file, "LTO EARLY DWARF for %s\n", filename);
32181 print_die (comp_unit_die (), dump_file);
32183 return;
32186 /* Walk through the list of incomplete types again, trying once more to
32187 emit full debugging info for them. */
32188 retry_incomplete_types ();
32190 /* The point here is to flush out the limbo list so that it is empty
32191 and we don't need to stream it for LTO. */
32192 flush_limbo_die_list ();
32194 gen_scheduled_generic_parms_dies ();
32195 gen_remaining_tmpl_value_param_die_attribute ();
32197 /* Add DW_AT_linkage_name for all deferred DIEs. */
32198 for (limbo_die_node *node = deferred_asm_name; node; node = node->next)
32200 tree decl = node->created_for;
32201 if (DECL_ASSEMBLER_NAME (decl) != DECL_NAME (decl)
32202 /* A missing DECL_ASSEMBLER_NAME can be a constant DIE that
32203 ended up in deferred_asm_name before we knew it was
32204 constant and never written to disk. */
32205 && DECL_ASSEMBLER_NAME (decl))
32207 add_linkage_attr (node->die, decl);
32208 move_linkage_attr (node->die);
32211 deferred_asm_name = NULL;
32213 if (flag_eliminate_unused_debug_types)
32214 prune_unused_types ();
32216 /* Generate separate COMDAT sections for type DIEs. */
32217 if (use_debug_types)
32219 break_out_comdat_types (comp_unit_die ());
32221 /* Each new type_unit DIE was added to the limbo die list when created.
32222 Since these have all been added to comdat_type_list, clear the
32223 limbo die list. */
32224 limbo_die_list = NULL;
32226 /* For each new comdat type unit, copy declarations for incomplete
32227 types to make the new unit self-contained (i.e., no direct
32228 references to the main compile unit). */
32229 for (comdat_type_node *ctnode = comdat_type_list;
32230 ctnode != NULL; ctnode = ctnode->next)
32231 copy_decls_for_unworthy_types (ctnode->root_die);
32232 copy_decls_for_unworthy_types (comp_unit_die ());
32234 /* In the process of copying declarations from one unit to another,
32235 we may have left some declarations behind that are no longer
32236 referenced. Prune them. */
32237 prune_unused_types ();
32240 /* Traverse the DIE's and note DIEs with DW_OP_GNU_variable_value still
32241 with dw_val_class_decl_ref operand. */
32242 note_variable_value (comp_unit_die ());
32243 for (limbo_die_node *node = cu_die_list; node; node = node->next)
32244 note_variable_value (node->die);
32245 for (comdat_type_node *ctnode = comdat_type_list; ctnode != NULL;
32246 ctnode = ctnode->next)
32247 note_variable_value (ctnode->root_die);
32248 for (limbo_die_node *node = limbo_die_list; node; node = node->next)
32249 note_variable_value (node->die);
32251 /* The AT_pubnames attribute needs to go in all skeleton dies, including
32252 both the main_cu and all skeleton TUs. Making this call unconditional
32253 would end up either adding a second copy of the AT_pubnames attribute, or
32254 requiring a special case in add_top_level_skeleton_die_attrs. */
32255 if (!dwarf_split_debug_info)
32256 add_AT_pubnames (comp_unit_die ());
32258 /* The early debug phase is now finished. */
32259 early_dwarf_finished = true;
32260 if (dump_file)
32262 fprintf (dump_file, "EARLY DWARF for %s\n", filename);
32263 print_die (comp_unit_die (), dump_file);
32266 /* Do not generate DWARF assembler now when not producing LTO bytecode. */
32267 if ((!flag_generate_lto && !flag_generate_offload)
32268 /* FIXME: Disable debug info generation for (PE-)COFF targets since the
32269 copy_lto_debug_sections operation of the simple object support in
32270 libiberty is not implemented for them yet. */
32271 || TARGET_PECOFF || TARGET_COFF)
32272 return;
32274 /* Now as we are going to output for LTO initialize sections and labels
32275 to the LTO variants. We don't need a random-seed postfix as other
32276 LTO sections as linking the LTO debug sections into one in a partial
32277 link is fine. */
32278 init_sections_and_labels (true);
32280 /* The output below is modeled after dwarf2out_finish with all
32281 location related output removed and some LTO specific changes.
32282 Some refactoring might make both smaller and easier to match up. */
32284 /* Traverse the DIE's and add add sibling attributes to those DIE's
32285 that have children. */
32286 add_sibling_attributes (comp_unit_die ());
32287 for (limbo_die_node *node = limbo_die_list; node; node = node->next)
32288 add_sibling_attributes (node->die);
32289 for (comdat_type_node *ctnode = comdat_type_list;
32290 ctnode != NULL; ctnode = ctnode->next)
32291 add_sibling_attributes (ctnode->root_die);
32293 /* AIX Assembler inserts the length, so adjust the reference to match the
32294 offset expected by debuggers. */
32295 strcpy (dl_section_ref, debug_line_section_label);
32296 if (XCOFF_DEBUGGING_INFO)
32297 strcat (dl_section_ref, DWARF_INITIAL_LENGTH_SIZE_STR);
32299 if (debug_info_level >= DINFO_LEVEL_TERSE)
32300 add_AT_lineptr (comp_unit_die (), DW_AT_stmt_list, dl_section_ref);
32302 if (have_macinfo)
32303 add_AT_macptr (comp_unit_die (), DEBUG_MACRO_ATTRIBUTE,
32304 macinfo_section_label);
32306 save_macinfo_strings ();
32308 if (dwarf_split_debug_info)
32310 unsigned int index = 0;
32311 debug_str_hash->traverse_noresize<unsigned int *, index_string> (&index);
32314 /* Output all of the compilation units. We put the main one last so that
32315 the offsets are available to output_pubnames. */
32316 for (limbo_die_node *node = limbo_die_list; node; node = node->next)
32317 output_comp_unit (node->die, 0, NULL);
32319 hash_table<comdat_type_hasher> comdat_type_table (100);
32320 for (comdat_type_node *ctnode = comdat_type_list;
32321 ctnode != NULL; ctnode = ctnode->next)
32323 comdat_type_node **slot = comdat_type_table.find_slot (ctnode, INSERT);
32325 /* Don't output duplicate types. */
32326 if (*slot != HTAB_EMPTY_ENTRY)
32327 continue;
32329 /* Add a pointer to the line table for the main compilation unit
32330 so that the debugger can make sense of DW_AT_decl_file
32331 attributes. */
32332 if (debug_info_level >= DINFO_LEVEL_TERSE)
32333 add_AT_lineptr (ctnode->root_die, DW_AT_stmt_list,
32334 (!dwarf_split_debug_info
32335 ? debug_line_section_label
32336 : debug_skeleton_line_section_label));
32338 output_comdat_type_unit (ctnode, true);
32339 *slot = ctnode;
32342 /* Stick a unique symbol to the main debuginfo section. */
32343 compute_comp_unit_symbol (comp_unit_die ());
32345 /* Output the main compilation unit. We always need it if only for
32346 the CU symbol. */
32347 output_comp_unit (comp_unit_die (), true, NULL);
32349 /* Output the abbreviation table. */
32350 if (vec_safe_length (abbrev_die_table) != 1)
32352 switch_to_section (debug_abbrev_section);
32353 ASM_OUTPUT_LABEL (asm_out_file, abbrev_section_label);
32354 output_abbrev_section ();
32357 /* Have to end the macro section. */
32358 if (have_macinfo)
32360 /* We have to save macinfo state if we need to output it again
32361 for the FAT part of the object. */
32362 vec<macinfo_entry, va_gc> *saved_macinfo_table = macinfo_table;
32363 if (flag_fat_lto_objects)
32364 macinfo_table = macinfo_table->copy ();
32366 switch_to_section (debug_macinfo_section);
32367 ASM_OUTPUT_LABEL (asm_out_file, macinfo_section_label);
32368 output_macinfo (debug_line_section_label, true);
32369 dw2_asm_output_data (1, 0, "End compilation unit");
32371 if (flag_fat_lto_objects)
32373 vec_free (macinfo_table);
32374 macinfo_table = saved_macinfo_table;
32378 /* Emit a skeleton debug_line section. */
32379 switch_to_section (debug_line_section);
32380 ASM_OUTPUT_LABEL (asm_out_file, debug_line_section_label);
32381 output_line_info (true);
32383 /* If we emitted any indirect strings, output the string table too. */
32384 if (debug_str_hash || skeleton_debug_str_hash)
32385 output_indirect_strings ();
32386 if (debug_line_str_hash)
32388 switch_to_section (debug_line_str_section);
32389 const enum dwarf_form form = DW_FORM_line_strp;
32390 debug_line_str_hash->traverse<enum dwarf_form,
32391 output_indirect_string> (form);
32394 /* Switch back to the text section. */
32395 switch_to_section (text_section);
32398 /* Reset all state within dwarf2out.c so that we can rerun the compiler
32399 within the same process. For use by toplev::finalize. */
32401 void
32402 dwarf2out_c_finalize (void)
32404 last_var_location_insn = NULL;
32405 cached_next_real_insn = NULL;
32406 used_rtx_array = NULL;
32407 incomplete_types = NULL;
32408 debug_info_section = NULL;
32409 debug_skeleton_info_section = NULL;
32410 debug_abbrev_section = NULL;
32411 debug_skeleton_abbrev_section = NULL;
32412 debug_aranges_section = NULL;
32413 debug_addr_section = NULL;
32414 debug_macinfo_section = NULL;
32415 debug_line_section = NULL;
32416 debug_skeleton_line_section = NULL;
32417 debug_loc_section = NULL;
32418 debug_pubnames_section = NULL;
32419 debug_pubtypes_section = NULL;
32420 debug_str_section = NULL;
32421 debug_line_str_section = NULL;
32422 debug_str_dwo_section = NULL;
32423 debug_str_offsets_section = NULL;
32424 debug_ranges_section = NULL;
32425 debug_frame_section = NULL;
32426 fde_vec = NULL;
32427 debug_str_hash = NULL;
32428 debug_line_str_hash = NULL;
32429 skeleton_debug_str_hash = NULL;
32430 dw2_string_counter = 0;
32431 have_multiple_function_sections = false;
32432 text_section_used = false;
32433 cold_text_section_used = false;
32434 cold_text_section = NULL;
32435 current_unit_personality = NULL;
32437 early_dwarf = false;
32438 early_dwarf_finished = false;
32440 next_die_offset = 0;
32441 single_comp_unit_die = NULL;
32442 comdat_type_list = NULL;
32443 limbo_die_list = NULL;
32444 file_table = NULL;
32445 decl_die_table = NULL;
32446 common_block_die_table = NULL;
32447 decl_loc_table = NULL;
32448 call_arg_locations = NULL;
32449 call_arg_loc_last = NULL;
32450 call_site_count = -1;
32451 tail_call_site_count = -1;
32452 cached_dw_loc_list_table = NULL;
32453 abbrev_die_table = NULL;
32454 delete dwarf_proc_stack_usage_map;
32455 dwarf_proc_stack_usage_map = NULL;
32456 line_info_label_num = 0;
32457 cur_line_info_table = NULL;
32458 text_section_line_info = NULL;
32459 cold_text_section_line_info = NULL;
32460 separate_line_info = NULL;
32461 info_section_emitted = false;
32462 pubname_table = NULL;
32463 pubtype_table = NULL;
32464 macinfo_table = NULL;
32465 ranges_table = NULL;
32466 ranges_by_label = NULL;
32467 rnglist_idx = 0;
32468 have_location_lists = false;
32469 loclabel_num = 0;
32470 poc_label_num = 0;
32471 last_emitted_file = NULL;
32472 label_num = 0;
32473 tmpl_value_parm_die_table = NULL;
32474 generic_type_instances = NULL;
32475 frame_pointer_fb_offset = 0;
32476 frame_pointer_fb_offset_valid = false;
32477 base_types.release ();
32478 XDELETEVEC (producer_string);
32479 producer_string = NULL;
32482 #include "gt-dwarf2out.h"