1 /* Output Dwarf2 format symbol table information from GCC.
2 Copyright (C) 1992-2014 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
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
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
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 */
60 #include "coretypes.h"
64 #include "stringpool.h"
65 #include "stor-layout.h"
69 #include "hash-table.h"
72 #include "hard-reg-set.h"
74 #include "insn-config.h"
81 #include "dwarf2out.h"
82 #include "dwarf2asm.h"
86 #include "diagnostic.h"
87 #include "tree-pretty-print.h"
90 #include "common/common-target.h"
91 #include "langhooks.h"
99 #include "gdb/gdb-index.h"
101 static void dwarf2out_source_line (unsigned int, const char *, int, bool);
102 static rtx last_var_location_insn
;
103 static rtx cached_next_real_insn
;
105 #ifdef VMS_DEBUGGING_INFO
106 int vms_file_stats_name (const char *, long long *, long *, char *, int *);
108 /* Define this macro to be a nonzero value if the directory specifications
109 which are output in the debug info should end with a separator. */
110 #define DWARF2_DIR_SHOULD_END_WITH_SEPARATOR 1
111 /* Define this macro to evaluate to a nonzero value if GCC should refrain
112 from generating indirect strings in DWARF2 debug information, for instance
113 if your target is stuck with an old version of GDB that is unable to
114 process them properly or uses VMS Debug. */
115 #define DWARF2_INDIRECT_STRING_SUPPORT_MISSING_ON_TARGET 1
117 #define DWARF2_DIR_SHOULD_END_WITH_SEPARATOR 0
118 #define DWARF2_INDIRECT_STRING_SUPPORT_MISSING_ON_TARGET 0
121 /* ??? Poison these here until it can be done generically. They've been
122 totally replaced in this file; make sure it stays that way. */
123 #undef DWARF2_UNWIND_INFO
124 #undef DWARF2_FRAME_INFO
125 #if (GCC_VERSION >= 3000)
126 #pragma GCC poison DWARF2_UNWIND_INFO DWARF2_FRAME_INFO
129 /* The size of the target's pointer type. */
131 #define PTR_SIZE (POINTER_SIZE / BITS_PER_UNIT)
134 /* Array of RTXes referenced by the debugging information, which therefore
135 must be kept around forever. */
136 static GTY(()) vec
<rtx
, va_gc
> *used_rtx_array
;
138 /* A pointer to the base of a list of incomplete types which might be
139 completed at some later time. incomplete_types_list needs to be a
140 vec<tree, va_gc> *because we want to tell the garbage collector about
142 static GTY(()) vec
<tree
, va_gc
> *incomplete_types
;
144 /* A pointer to the base of a table of references to declaration
145 scopes. This table is a display which tracks the nesting
146 of declaration scopes at the current scope and containing
147 scopes. This table is used to find the proper place to
148 define type declaration DIE's. */
149 static GTY(()) vec
<tree
, va_gc
> *decl_scope_table
;
151 /* Pointers to various DWARF2 sections. */
152 static GTY(()) section
*debug_info_section
;
153 static GTY(()) section
*debug_skeleton_info_section
;
154 static GTY(()) section
*debug_abbrev_section
;
155 static GTY(()) section
*debug_skeleton_abbrev_section
;
156 static GTY(()) section
*debug_aranges_section
;
157 static GTY(()) section
*debug_addr_section
;
158 static GTY(()) section
*debug_macinfo_section
;
159 static GTY(()) section
*debug_line_section
;
160 static GTY(()) section
*debug_skeleton_line_section
;
161 static GTY(()) section
*debug_loc_section
;
162 static GTY(()) section
*debug_pubnames_section
;
163 static GTY(()) section
*debug_pubtypes_section
;
164 static GTY(()) section
*debug_str_section
;
165 static GTY(()) section
*debug_str_dwo_section
;
166 static GTY(()) section
*debug_str_offsets_section
;
167 static GTY(()) section
*debug_ranges_section
;
168 static GTY(()) section
*debug_frame_section
;
170 /* Maximum size (in bytes) of an artificially generated label. */
171 #define MAX_ARTIFICIAL_LABEL_BYTES 30
173 /* According to the (draft) DWARF 3 specification, the initial length
174 should either be 4 or 12 bytes. When it's 12 bytes, the first 4
175 bytes are 0xffffffff, followed by the length stored in the next 8
178 However, the SGI/MIPS ABI uses an initial length which is equal to
179 DWARF_OFFSET_SIZE. It is defined (elsewhere) accordingly. */
181 #ifndef DWARF_INITIAL_LENGTH_SIZE
182 #define DWARF_INITIAL_LENGTH_SIZE (DWARF_OFFSET_SIZE == 4 ? 4 : 12)
185 /* Round SIZE up to the nearest BOUNDARY. */
186 #define DWARF_ROUND(SIZE,BOUNDARY) \
187 ((((SIZE) + (BOUNDARY) - 1) / (BOUNDARY)) * (BOUNDARY))
189 /* CIE identifier. */
190 #if HOST_BITS_PER_WIDE_INT >= 64
191 #define DWARF_CIE_ID \
192 (unsigned HOST_WIDE_INT) (DWARF_OFFSET_SIZE == 4 ? DW_CIE_ID : DW64_CIE_ID)
194 #define DWARF_CIE_ID DW_CIE_ID
198 /* A vector for a table that contains frame description
199 information for each routine. */
200 #define NOT_INDEXED (-1U)
201 #define NO_INDEX_ASSIGNED (-2U)
203 static GTY(()) vec
<dw_fde_ref
, va_gc
> *fde_vec
;
205 struct GTY(()) indirect_string_node
{
207 unsigned int refcount
;
208 enum dwarf_form form
;
213 static GTY ((param_is (struct indirect_string_node
))) htab_t debug_str_hash
;
215 /* With split_debug_info, both the comp_dir and dwo_name go in the
216 main object file, rather than the dwo, similar to the force_direct
217 parameter elsewhere but with additional complications:
219 1) The string is needed in both the main object file and the dwo.
220 That is, the comp_dir and dwo_name will appear in both places.
222 2) Strings can use three forms: DW_FORM_string, DW_FORM_strp or
223 DW_FORM_GNU_str_index.
225 3) GCC chooses the form to use late, depending on the size and
228 Rather than forcing the all debug string handling functions and
229 callers to deal with these complications, simply use a separate,
230 special-cased string table for any attribute that should go in the
231 main object file. This limits the complexity to just the places
234 static GTY ((param_is (struct indirect_string_node
)))
235 htab_t skeleton_debug_str_hash
;
237 static GTY(()) int dw2_string_counter
;
239 /* True if the compilation unit places functions in more than one section. */
240 static GTY(()) bool have_multiple_function_sections
= false;
242 /* Whether the default text and cold text sections have been used at all. */
244 static GTY(()) bool text_section_used
= false;
245 static GTY(()) bool cold_text_section_used
= false;
247 /* The default cold text section. */
248 static GTY(()) section
*cold_text_section
;
250 /* The DIE for C++1y 'auto' in a function return type. */
251 static GTY(()) dw_die_ref auto_die
;
253 /* The DIE for C++1y 'decltype(auto)' in a function return type. */
254 static GTY(()) dw_die_ref decltype_auto_die
;
256 /* Forward declarations for functions defined in this file. */
258 static char *stripattributes (const char *);
259 static void output_call_frame_info (int);
260 static void dwarf2out_note_section_used (void);
262 /* Personality decl of current unit. Used only when assembler does not support
264 static GTY(()) rtx current_unit_personality
;
266 /* Data and reference forms for relocatable data. */
267 #define DW_FORM_data (DWARF_OFFSET_SIZE == 8 ? DW_FORM_data8 : DW_FORM_data4)
268 #define DW_FORM_ref (DWARF_OFFSET_SIZE == 8 ? DW_FORM_ref8 : DW_FORM_ref4)
270 #ifndef DEBUG_FRAME_SECTION
271 #define DEBUG_FRAME_SECTION ".debug_frame"
274 #ifndef FUNC_BEGIN_LABEL
275 #define FUNC_BEGIN_LABEL "LFB"
278 #ifndef FUNC_END_LABEL
279 #define FUNC_END_LABEL "LFE"
282 #ifndef PROLOGUE_END_LABEL
283 #define PROLOGUE_END_LABEL "LPE"
286 #ifndef EPILOGUE_BEGIN_LABEL
287 #define EPILOGUE_BEGIN_LABEL "LEB"
290 #ifndef FRAME_BEGIN_LABEL
291 #define FRAME_BEGIN_LABEL "Lframe"
293 #define CIE_AFTER_SIZE_LABEL "LSCIE"
294 #define CIE_END_LABEL "LECIE"
295 #define FDE_LABEL "LSFDE"
296 #define FDE_AFTER_SIZE_LABEL "LASFDE"
297 #define FDE_END_LABEL "LEFDE"
298 #define LINE_NUMBER_BEGIN_LABEL "LSLT"
299 #define LINE_NUMBER_END_LABEL "LELT"
300 #define LN_PROLOG_AS_LABEL "LASLTP"
301 #define LN_PROLOG_END_LABEL "LELTP"
302 #define DIE_LABEL_PREFIX "DW"
304 /* Match the base name of a file to the base name of a compilation unit. */
307 matches_main_base (const char *path
)
309 /* Cache the last query. */
310 static const char *last_path
= NULL
;
311 static int last_match
= 0;
312 if (path
!= last_path
)
315 int length
= base_of_path (path
, &base
);
317 last_match
= (length
== main_input_baselength
318 && memcmp (base
, main_input_basename
, length
) == 0);
323 #ifdef DEBUG_DEBUG_STRUCT
326 dump_struct_debug (tree type
, enum debug_info_usage usage
,
327 enum debug_struct_file criterion
, int generic
,
328 int matches
, int result
)
330 /* Find the type name. */
331 tree type_decl
= TYPE_STUB_DECL (type
);
333 const char *name
= 0;
334 if (TREE_CODE (t
) == TYPE_DECL
)
337 name
= IDENTIFIER_POINTER (t
);
339 fprintf (stderr
, " struct %d %s %s %s %s %d %p %s\n",
341 DECL_IN_SYSTEM_HEADER (type_decl
) ? "sys" : "usr",
342 matches
? "bas" : "hdr",
343 generic
? "gen" : "ord",
344 usage
== DINFO_USAGE_DFN
? ";" :
345 usage
== DINFO_USAGE_DIR_USE
? "." : "*",
347 (void*) type_decl
, name
);
350 #define DUMP_GSTRUCT(type, usage, criterion, generic, matches, result) \
351 dump_struct_debug (type, usage, criterion, generic, matches, result)
355 #define DUMP_GSTRUCT(type, usage, criterion, generic, matches, result) \
361 should_emit_struct_debug (tree type
, enum debug_info_usage usage
)
363 enum debug_struct_file criterion
;
365 bool generic
= lang_hooks
.types
.generic_p (type
);
368 criterion
= debug_struct_generic
[usage
];
370 criterion
= debug_struct_ordinary
[usage
];
372 if (criterion
== DINFO_STRUCT_FILE_NONE
)
373 return DUMP_GSTRUCT (type
, usage
, criterion
, generic
, false, false);
374 if (criterion
== DINFO_STRUCT_FILE_ANY
)
375 return DUMP_GSTRUCT (type
, usage
, criterion
, generic
, false, true);
377 type_decl
= TYPE_STUB_DECL (TYPE_MAIN_VARIANT (type
));
379 if (type_decl
!= NULL
)
381 if (criterion
== DINFO_STRUCT_FILE_SYS
&& DECL_IN_SYSTEM_HEADER (type_decl
))
382 return DUMP_GSTRUCT (type
, usage
, criterion
, generic
, false, true);
384 if (matches_main_base (DECL_SOURCE_FILE (type_decl
)))
385 return DUMP_GSTRUCT (type
, usage
, criterion
, generic
, true, true);
388 return DUMP_GSTRUCT (type
, usage
, criterion
, generic
, false, false);
391 /* Return a pointer to a copy of the section string name S with all
392 attributes stripped off, and an asterisk prepended (for assemble_name). */
395 stripattributes (const char *s
)
397 char *stripped
= XNEWVEC (char, strlen (s
) + 2);
402 while (*s
&& *s
!= ',')
409 /* Switch [BACK] to eh_frame_section. If we don't have an eh_frame_section,
410 switch to the data section instead, and write out a synthetic start label
411 for collect2 the first time around. */
414 switch_to_eh_frame_section (bool back
)
418 #ifdef EH_FRAME_SECTION_NAME
419 if (eh_frame_section
== 0)
423 if (EH_TABLES_CAN_BE_READ_ONLY
)
429 fde_encoding
= ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/1,
431 per_encoding
= ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/2,
433 lsda_encoding
= ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/0,
436 || ((fde_encoding
& 0x70) != DW_EH_PE_absptr
437 && (fde_encoding
& 0x70) != DW_EH_PE_aligned
438 && (per_encoding
& 0x70) != DW_EH_PE_absptr
439 && (per_encoding
& 0x70) != DW_EH_PE_aligned
440 && (lsda_encoding
& 0x70) != DW_EH_PE_absptr
441 && (lsda_encoding
& 0x70) != DW_EH_PE_aligned
))
442 ? 0 : SECTION_WRITE
);
445 flags
= SECTION_WRITE
;
446 eh_frame_section
= get_section (EH_FRAME_SECTION_NAME
, flags
, NULL
);
448 #endif /* EH_FRAME_SECTION_NAME */
450 if (eh_frame_section
)
451 switch_to_section (eh_frame_section
);
454 /* We have no special eh_frame section. Put the information in
455 the data section and emit special labels to guide collect2. */
456 switch_to_section (data_section
);
460 label
= get_file_function_name ("F");
461 ASM_OUTPUT_ALIGN (asm_out_file
, floor_log2 (PTR_SIZE
));
462 targetm
.asm_out
.globalize_label (asm_out_file
,
463 IDENTIFIER_POINTER (label
));
464 ASM_OUTPUT_LABEL (asm_out_file
, IDENTIFIER_POINTER (label
));
469 /* Switch [BACK] to the eh or debug frame table section, depending on
473 switch_to_frame_table_section (int for_eh
, bool back
)
476 switch_to_eh_frame_section (back
);
479 if (!debug_frame_section
)
480 debug_frame_section
= get_section (DEBUG_FRAME_SECTION
,
481 SECTION_DEBUG
, NULL
);
482 switch_to_section (debug_frame_section
);
486 /* Describe for the GTY machinery what parts of dw_cfi_oprnd1 are used. */
488 enum dw_cfi_oprnd_type
489 dw_cfi_oprnd1_desc (enum dwarf_call_frame_info cfi
)
494 case DW_CFA_GNU_window_save
:
495 case DW_CFA_remember_state
:
496 case DW_CFA_restore_state
:
497 return dw_cfi_oprnd_unused
;
500 case DW_CFA_advance_loc1
:
501 case DW_CFA_advance_loc2
:
502 case DW_CFA_advance_loc4
:
503 case DW_CFA_MIPS_advance_loc8
:
504 return dw_cfi_oprnd_addr
;
507 case DW_CFA_offset_extended
:
509 case DW_CFA_offset_extended_sf
:
510 case DW_CFA_def_cfa_sf
:
512 case DW_CFA_restore_extended
:
513 case DW_CFA_undefined
:
514 case DW_CFA_same_value
:
515 case DW_CFA_def_cfa_register
:
516 case DW_CFA_register
:
517 case DW_CFA_expression
:
518 return dw_cfi_oprnd_reg_num
;
520 case DW_CFA_def_cfa_offset
:
521 case DW_CFA_GNU_args_size
:
522 case DW_CFA_def_cfa_offset_sf
:
523 return dw_cfi_oprnd_offset
;
525 case DW_CFA_def_cfa_expression
:
526 return dw_cfi_oprnd_loc
;
533 /* Describe for the GTY machinery what parts of dw_cfi_oprnd2 are used. */
535 enum dw_cfi_oprnd_type
536 dw_cfi_oprnd2_desc (enum dwarf_call_frame_info cfi
)
541 case DW_CFA_def_cfa_sf
:
543 case DW_CFA_offset_extended_sf
:
544 case DW_CFA_offset_extended
:
545 return dw_cfi_oprnd_offset
;
547 case DW_CFA_register
:
548 return dw_cfi_oprnd_reg_num
;
550 case DW_CFA_expression
:
551 return dw_cfi_oprnd_loc
;
554 return dw_cfi_oprnd_unused
;
558 /* Output one FDE. */
561 output_fde (dw_fde_ref fde
, bool for_eh
, bool second
,
562 char *section_start_label
, int fde_encoding
, char *augmentation
,
563 bool any_lsda_needed
, int lsda_encoding
)
565 const char *begin
, *end
;
566 static unsigned int j
;
569 targetm
.asm_out
.emit_unwind_label (asm_out_file
, fde
->decl
, for_eh
,
571 targetm
.asm_out
.internal_label (asm_out_file
, FDE_LABEL
,
573 ASM_GENERATE_INTERNAL_LABEL (l1
, FDE_AFTER_SIZE_LABEL
, for_eh
+ j
);
574 ASM_GENERATE_INTERNAL_LABEL (l2
, FDE_END_LABEL
, for_eh
+ j
);
575 if (DWARF_INITIAL_LENGTH_SIZE
- DWARF_OFFSET_SIZE
== 4 && !for_eh
)
576 dw2_asm_output_data (4, 0xffffffff, "Initial length escape value"
577 " indicating 64-bit DWARF extension");
578 dw2_asm_output_delta (for_eh
? 4 : DWARF_OFFSET_SIZE
, l2
, l1
,
580 ASM_OUTPUT_LABEL (asm_out_file
, l1
);
583 dw2_asm_output_delta (4, l1
, section_start_label
, "FDE CIE offset");
585 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, section_start_label
,
586 debug_frame_section
, "FDE CIE offset");
588 begin
= second
? fde
->dw_fde_second_begin
: fde
->dw_fde_begin
;
589 end
= second
? fde
->dw_fde_second_end
: fde
->dw_fde_end
;
593 rtx sym_ref
= gen_rtx_SYMBOL_REF (Pmode
, begin
);
594 SYMBOL_REF_FLAGS (sym_ref
) |= SYMBOL_FLAG_LOCAL
;
595 dw2_asm_output_encoded_addr_rtx (fde_encoding
, sym_ref
, false,
596 "FDE initial location");
597 dw2_asm_output_delta (size_of_encoded_value (fde_encoding
),
598 end
, begin
, "FDE address range");
602 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, begin
, "FDE initial location");
603 dw2_asm_output_delta (DWARF2_ADDR_SIZE
, end
, begin
, "FDE address range");
610 int size
= size_of_encoded_value (lsda_encoding
);
612 if (lsda_encoding
== DW_EH_PE_aligned
)
614 int offset
= ( 4 /* Length */
616 + 2 * size_of_encoded_value (fde_encoding
)
617 + 1 /* Augmentation size */ );
618 int pad
= -offset
& (PTR_SIZE
- 1);
621 gcc_assert (size_of_uleb128 (size
) == 1);
624 dw2_asm_output_data_uleb128 (size
, "Augmentation size");
626 if (fde
->uses_eh_lsda
)
628 ASM_GENERATE_INTERNAL_LABEL (l1
, second
? "LLSDAC" : "LLSDA",
629 fde
->funcdef_number
);
630 dw2_asm_output_encoded_addr_rtx (lsda_encoding
,
631 gen_rtx_SYMBOL_REF (Pmode
, l1
),
633 "Language Specific Data Area");
637 if (lsda_encoding
== DW_EH_PE_aligned
)
638 ASM_OUTPUT_ALIGN (asm_out_file
, floor_log2 (PTR_SIZE
));
639 dw2_asm_output_data (size_of_encoded_value (lsda_encoding
), 0,
640 "Language Specific Data Area (none)");
644 dw2_asm_output_data_uleb128 (0, "Augmentation size");
647 /* Loop through the Call Frame Instructions associated with this FDE. */
648 fde
->dw_fde_current_label
= begin
;
650 size_t from
, until
, i
;
653 until
= vec_safe_length (fde
->dw_fde_cfi
);
655 if (fde
->dw_fde_second_begin
== NULL
)
658 until
= fde
->dw_fde_switch_cfi_index
;
660 from
= fde
->dw_fde_switch_cfi_index
;
662 for (i
= from
; i
< until
; i
++)
663 output_cfi ((*fde
->dw_fde_cfi
)[i
], fde
, for_eh
);
666 /* If we are to emit a ref/link from function bodies to their frame tables,
667 do it now. This is typically performed to make sure that tables
668 associated with functions are dragged with them and not discarded in
669 garbage collecting links. We need to do this on a per function basis to
670 cope with -ffunction-sections. */
672 #ifdef ASM_OUTPUT_DWARF_TABLE_REF
673 /* Switch to the function section, emit the ref to the tables, and
674 switch *back* into the table section. */
675 switch_to_section (function_section (fde
->decl
));
676 ASM_OUTPUT_DWARF_TABLE_REF (section_start_label
);
677 switch_to_frame_table_section (for_eh
, true);
680 /* Pad the FDE out to an address sized boundary. */
681 ASM_OUTPUT_ALIGN (asm_out_file
,
682 floor_log2 ((for_eh
? PTR_SIZE
: DWARF2_ADDR_SIZE
)));
683 ASM_OUTPUT_LABEL (asm_out_file
, l2
);
688 /* Return true if frame description entry FDE is needed for EH. */
691 fde_needed_for_eh_p (dw_fde_ref fde
)
693 if (flag_asynchronous_unwind_tables
)
696 if (TARGET_USES_WEAK_UNWIND_INFO
&& DECL_WEAK (fde
->decl
))
699 if (fde
->uses_eh_lsda
)
702 /* If exceptions are enabled, we have collected nothrow info. */
703 if (flag_exceptions
&& (fde
->all_throwers_are_sibcalls
|| fde
->nothrow
))
709 /* Output the call frame information used to record information
710 that relates to calculating the frame pointer, and records the
711 location of saved registers. */
714 output_call_frame_info (int for_eh
)
719 char l1
[20], l2
[20], section_start_label
[20];
720 bool any_lsda_needed
= false;
721 char augmentation
[6];
722 int augmentation_size
;
723 int fde_encoding
= DW_EH_PE_absptr
;
724 int per_encoding
= DW_EH_PE_absptr
;
725 int lsda_encoding
= DW_EH_PE_absptr
;
727 rtx personality
= NULL
;
730 /* Don't emit a CIE if there won't be any FDEs. */
734 /* Nothing to do if the assembler's doing it all. */
735 if (dwarf2out_do_cfi_asm ())
738 /* If we don't have any functions we'll want to unwind out of, don't emit
739 any EH unwind information. If we make FDEs linkonce, we may have to
740 emit an empty label for an FDE that wouldn't otherwise be emitted. We
741 want to avoid having an FDE kept around when the function it refers to
742 is discarded. Example where this matters: a primary function template
743 in C++ requires EH information, an explicit specialization doesn't. */
746 bool any_eh_needed
= false;
748 FOR_EACH_VEC_ELT (*fde_vec
, i
, fde
)
750 if (fde
->uses_eh_lsda
)
751 any_eh_needed
= any_lsda_needed
= true;
752 else if (fde_needed_for_eh_p (fde
))
753 any_eh_needed
= true;
754 else if (TARGET_USES_WEAK_UNWIND_INFO
)
755 targetm
.asm_out
.emit_unwind_label (asm_out_file
, fde
->decl
, 1, 1);
762 /* We're going to be generating comments, so turn on app. */
766 /* Switch to the proper frame section, first time. */
767 switch_to_frame_table_section (for_eh
, false);
769 ASM_GENERATE_INTERNAL_LABEL (section_start_label
, FRAME_BEGIN_LABEL
, for_eh
);
770 ASM_OUTPUT_LABEL (asm_out_file
, section_start_label
);
772 /* Output the CIE. */
773 ASM_GENERATE_INTERNAL_LABEL (l1
, CIE_AFTER_SIZE_LABEL
, for_eh
);
774 ASM_GENERATE_INTERNAL_LABEL (l2
, CIE_END_LABEL
, for_eh
);
775 if (DWARF_INITIAL_LENGTH_SIZE
- DWARF_OFFSET_SIZE
== 4 && !for_eh
)
776 dw2_asm_output_data (4, 0xffffffff,
777 "Initial length escape value indicating 64-bit DWARF extension");
778 dw2_asm_output_delta (for_eh
? 4 : DWARF_OFFSET_SIZE
, l2
, l1
,
779 "Length of Common Information Entry");
780 ASM_OUTPUT_LABEL (asm_out_file
, l1
);
782 /* Now that the CIE pointer is PC-relative for EH,
783 use 0 to identify the CIE. */
784 dw2_asm_output_data ((for_eh
? 4 : DWARF_OFFSET_SIZE
),
785 (for_eh
? 0 : DWARF_CIE_ID
),
786 "CIE Identifier Tag");
788 /* Use the CIE version 3 for DWARF3; allow DWARF2 to continue to
789 use CIE version 1, unless that would produce incorrect results
790 due to overflowing the return register column. */
791 return_reg
= DWARF2_FRAME_REG_OUT (DWARF_FRAME_RETURN_COLUMN
, for_eh
);
793 if (return_reg
>= 256 || dwarf_version
> 2)
795 dw2_asm_output_data (1, dw_cie_version
, "CIE Version");
798 augmentation_size
= 0;
800 personality
= current_unit_personality
;
806 z Indicates that a uleb128 is present to size the
807 augmentation section.
808 L Indicates the encoding (and thus presence) of
809 an LSDA pointer in the FDE augmentation.
810 R Indicates a non-default pointer encoding for
812 P Indicates the presence of an encoding + language
813 personality routine in the CIE augmentation. */
815 fde_encoding
= ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/1, /*global=*/0);
816 per_encoding
= ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/2, /*global=*/1);
817 lsda_encoding
= ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/0, /*global=*/0);
819 p
= augmentation
+ 1;
823 augmentation_size
+= 1 + size_of_encoded_value (per_encoding
);
824 assemble_external_libcall (personality
);
829 augmentation_size
+= 1;
831 if (fde_encoding
!= DW_EH_PE_absptr
)
834 augmentation_size
+= 1;
836 if (p
> augmentation
+ 1)
838 augmentation
[0] = 'z';
842 /* Ug. Some platforms can't do unaligned dynamic relocations at all. */
843 if (personality
&& per_encoding
== DW_EH_PE_aligned
)
845 int offset
= ( 4 /* Length */
847 + 1 /* CIE version */
848 + strlen (augmentation
) + 1 /* Augmentation */
849 + size_of_uleb128 (1) /* Code alignment */
850 + size_of_sleb128 (DWARF_CIE_DATA_ALIGNMENT
)
852 + 1 /* Augmentation size */
853 + 1 /* Personality encoding */ );
854 int pad
= -offset
& (PTR_SIZE
- 1);
856 augmentation_size
+= pad
;
858 /* Augmentations should be small, so there's scarce need to
859 iterate for a solution. Die if we exceed one uleb128 byte. */
860 gcc_assert (size_of_uleb128 (augmentation_size
) == 1);
864 dw2_asm_output_nstring (augmentation
, -1, "CIE Augmentation");
865 if (dw_cie_version
>= 4)
867 dw2_asm_output_data (1, DWARF2_ADDR_SIZE
, "CIE Address Size");
868 dw2_asm_output_data (1, 0, "CIE Segment Size");
870 dw2_asm_output_data_uleb128 (1, "CIE Code Alignment Factor");
871 dw2_asm_output_data_sleb128 (DWARF_CIE_DATA_ALIGNMENT
,
872 "CIE Data Alignment Factor");
874 if (dw_cie_version
== 1)
875 dw2_asm_output_data (1, return_reg
, "CIE RA Column");
877 dw2_asm_output_data_uleb128 (return_reg
, "CIE RA Column");
881 dw2_asm_output_data_uleb128 (augmentation_size
, "Augmentation size");
884 dw2_asm_output_data (1, per_encoding
, "Personality (%s)",
885 eh_data_format_name (per_encoding
));
886 dw2_asm_output_encoded_addr_rtx (per_encoding
,
892 dw2_asm_output_data (1, lsda_encoding
, "LSDA Encoding (%s)",
893 eh_data_format_name (lsda_encoding
));
895 if (fde_encoding
!= DW_EH_PE_absptr
)
896 dw2_asm_output_data (1, fde_encoding
, "FDE Encoding (%s)",
897 eh_data_format_name (fde_encoding
));
900 FOR_EACH_VEC_ELT (*cie_cfi_vec
, i
, cfi
)
901 output_cfi (cfi
, NULL
, for_eh
);
903 /* Pad the CIE out to an address sized boundary. */
904 ASM_OUTPUT_ALIGN (asm_out_file
,
905 floor_log2 (for_eh
? PTR_SIZE
: DWARF2_ADDR_SIZE
));
906 ASM_OUTPUT_LABEL (asm_out_file
, l2
);
908 /* Loop through all of the FDE's. */
909 FOR_EACH_VEC_ELT (*fde_vec
, i
, fde
)
913 /* Don't emit EH unwind info for leaf functions that don't need it. */
914 if (for_eh
&& !fde_needed_for_eh_p (fde
))
917 for (k
= 0; k
< (fde
->dw_fde_second_begin
? 2 : 1); k
++)
918 output_fde (fde
, for_eh
, k
, section_start_label
, fde_encoding
,
919 augmentation
, any_lsda_needed
, lsda_encoding
);
922 if (for_eh
&& targetm
.terminate_dw2_eh_frame_info
)
923 dw2_asm_output_data (4, 0, "End of Table");
925 /* Turn off app to make assembly quicker. */
930 /* Emit .cfi_startproc and .cfi_personality/.cfi_lsda if needed. */
933 dwarf2out_do_cfi_startproc (bool second
)
937 rtx personality
= get_personality_function (current_function_decl
);
939 fprintf (asm_out_file
, "\t.cfi_startproc\n");
943 enc
= ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/2, /*global=*/1);
946 /* ??? The GAS support isn't entirely consistent. We have to
947 handle indirect support ourselves, but PC-relative is done
948 in the assembler. Further, the assembler can't handle any
949 of the weirder relocation types. */
950 if (enc
& DW_EH_PE_indirect
)
951 ref
= dw2_force_const_mem (ref
, true);
953 fprintf (asm_out_file
, "\t.cfi_personality %#x,", enc
);
954 output_addr_const (asm_out_file
, ref
);
955 fputc ('\n', asm_out_file
);
958 if (crtl
->uses_eh_lsda
)
962 enc
= ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/0, /*global=*/0);
963 ASM_GENERATE_INTERNAL_LABEL (lab
, second
? "LLSDAC" : "LLSDA",
964 current_function_funcdef_no
);
965 ref
= gen_rtx_SYMBOL_REF (Pmode
, lab
);
966 SYMBOL_REF_FLAGS (ref
) = SYMBOL_FLAG_LOCAL
;
968 if (enc
& DW_EH_PE_indirect
)
969 ref
= dw2_force_const_mem (ref
, true);
971 fprintf (asm_out_file
, "\t.cfi_lsda %#x,", enc
);
972 output_addr_const (asm_out_file
, ref
);
973 fputc ('\n', asm_out_file
);
977 /* Allocate CURRENT_FDE. Immediately initialize all we can, noting that
978 this allocation may be done before pass_final. */
981 dwarf2out_alloc_current_fde (void)
985 fde
= ggc_alloc_cleared_dw_fde_node ();
986 fde
->decl
= current_function_decl
;
987 fde
->funcdef_number
= current_function_funcdef_no
;
988 fde
->fde_index
= vec_safe_length (fde_vec
);
989 fde
->all_throwers_are_sibcalls
= crtl
->all_throwers_are_sibcalls
;
990 fde
->uses_eh_lsda
= crtl
->uses_eh_lsda
;
991 fde
->nothrow
= crtl
->nothrow
;
992 fde
->drap_reg
= INVALID_REGNUM
;
993 fde
->vdrap_reg
= INVALID_REGNUM
;
995 /* Record the FDE associated with this function. */
997 vec_safe_push (fde_vec
, fde
);
1002 /* Output a marker (i.e. a label) for the beginning of a function, before
1006 dwarf2out_begin_prologue (unsigned int line ATTRIBUTE_UNUSED
,
1007 const char *file ATTRIBUTE_UNUSED
)
1009 char label
[MAX_ARTIFICIAL_LABEL_BYTES
];
1015 current_function_func_begin_label
= NULL
;
1017 do_frame
= dwarf2out_do_frame ();
1019 /* ??? current_function_func_begin_label is also used by except.c for
1020 call-site information. We must emit this label if it might be used. */
1022 && (!flag_exceptions
1023 || targetm_common
.except_unwind_info (&global_options
) == UI_SJLJ
))
1026 fnsec
= function_section (current_function_decl
);
1027 switch_to_section (fnsec
);
1028 ASM_GENERATE_INTERNAL_LABEL (label
, FUNC_BEGIN_LABEL
,
1029 current_function_funcdef_no
);
1030 ASM_OUTPUT_DEBUG_LABEL (asm_out_file
, FUNC_BEGIN_LABEL
,
1031 current_function_funcdef_no
);
1032 dup_label
= xstrdup (label
);
1033 current_function_func_begin_label
= dup_label
;
1035 /* We can elide the fde allocation if we're not emitting debug info. */
1039 /* Cater to the various TARGET_ASM_OUTPUT_MI_THUNK implementations that
1040 emit insns as rtx but bypass the bulk of rest_of_compilation, which
1041 would include pass_dwarf2_frame. If we've not created the FDE yet,
1045 fde
= dwarf2out_alloc_current_fde ();
1047 /* Initialize the bits of CURRENT_FDE that were not available earlier. */
1048 fde
->dw_fde_begin
= dup_label
;
1049 fde
->dw_fde_current_label
= dup_label
;
1050 fde
->in_std_section
= (fnsec
== text_section
1051 || (cold_text_section
&& fnsec
== cold_text_section
));
1053 /* We only want to output line number information for the genuine dwarf2
1054 prologue case, not the eh frame case. */
1055 #ifdef DWARF2_DEBUGGING_INFO
1057 dwarf2out_source_line (line
, file
, 0, true);
1060 if (dwarf2out_do_cfi_asm ())
1061 dwarf2out_do_cfi_startproc (false);
1064 rtx personality
= get_personality_function (current_function_decl
);
1065 if (!current_unit_personality
)
1066 current_unit_personality
= personality
;
1068 /* We cannot keep a current personality per function as without CFI
1069 asm, at the point where we emit the CFI data, there is no current
1070 function anymore. */
1071 if (personality
&& current_unit_personality
!= personality
)
1072 sorry ("multiple EH personalities are supported only with assemblers "
1073 "supporting .cfi_personality directive");
1077 /* Output a marker (i.e. a label) for the end of the generated code
1078 for a function prologue. This gets called *after* the prologue code has
1082 dwarf2out_vms_end_prologue (unsigned int line ATTRIBUTE_UNUSED
,
1083 const char *file ATTRIBUTE_UNUSED
)
1085 char label
[MAX_ARTIFICIAL_LABEL_BYTES
];
1087 /* Output a label to mark the endpoint of the code generated for this
1089 ASM_GENERATE_INTERNAL_LABEL (label
, PROLOGUE_END_LABEL
,
1090 current_function_funcdef_no
);
1091 ASM_OUTPUT_DEBUG_LABEL (asm_out_file
, PROLOGUE_END_LABEL
,
1092 current_function_funcdef_no
);
1093 cfun
->fde
->dw_fde_vms_end_prologue
= xstrdup (label
);
1096 /* Output a marker (i.e. a label) for the beginning of the generated code
1097 for a function epilogue. This gets called *before* the prologue code has
1101 dwarf2out_vms_begin_epilogue (unsigned int line ATTRIBUTE_UNUSED
,
1102 const char *file ATTRIBUTE_UNUSED
)
1104 dw_fde_ref fde
= cfun
->fde
;
1105 char label
[MAX_ARTIFICIAL_LABEL_BYTES
];
1107 if (fde
->dw_fde_vms_begin_epilogue
)
1110 /* Output a label to mark the endpoint of the code generated for this
1112 ASM_GENERATE_INTERNAL_LABEL (label
, EPILOGUE_BEGIN_LABEL
,
1113 current_function_funcdef_no
);
1114 ASM_OUTPUT_DEBUG_LABEL (asm_out_file
, EPILOGUE_BEGIN_LABEL
,
1115 current_function_funcdef_no
);
1116 fde
->dw_fde_vms_begin_epilogue
= xstrdup (label
);
1119 /* Output a marker (i.e. a label) for the absolute end of the generated code
1120 for a function definition. This gets called *after* the epilogue code has
1124 dwarf2out_end_epilogue (unsigned int line ATTRIBUTE_UNUSED
,
1125 const char *file ATTRIBUTE_UNUSED
)
1128 char label
[MAX_ARTIFICIAL_LABEL_BYTES
];
1130 last_var_location_insn
= NULL_RTX
;
1131 cached_next_real_insn
= NULL_RTX
;
1133 if (dwarf2out_do_cfi_asm ())
1134 fprintf (asm_out_file
, "\t.cfi_endproc\n");
1136 /* Output a label to mark the endpoint of the code generated for this
1138 ASM_GENERATE_INTERNAL_LABEL (label
, FUNC_END_LABEL
,
1139 current_function_funcdef_no
);
1140 ASM_OUTPUT_LABEL (asm_out_file
, label
);
1142 gcc_assert (fde
!= NULL
);
1143 if (fde
->dw_fde_second_begin
== NULL
)
1144 fde
->dw_fde_end
= xstrdup (label
);
1148 dwarf2out_frame_finish (void)
1150 /* Output call frame information. */
1151 if (targetm
.debug_unwind_info () == UI_DWARF2
)
1152 output_call_frame_info (0);
1154 /* Output another copy for the unwinder. */
1155 if ((flag_unwind_tables
|| flag_exceptions
)
1156 && targetm_common
.except_unwind_info (&global_options
) == UI_DWARF2
)
1157 output_call_frame_info (1);
1160 /* Note that the current function section is being used for code. */
1163 dwarf2out_note_section_used (void)
1165 section
*sec
= current_function_section ();
1166 if (sec
== text_section
)
1167 text_section_used
= true;
1168 else if (sec
== cold_text_section
)
1169 cold_text_section_used
= true;
1172 static void var_location_switch_text_section (void);
1173 static void set_cur_line_info_table (section
*);
1176 dwarf2out_switch_text_section (void)
1179 dw_fde_ref fde
= cfun
->fde
;
1181 gcc_assert (cfun
&& fde
&& fde
->dw_fde_second_begin
== NULL
);
1183 if (!in_cold_section_p
)
1185 fde
->dw_fde_end
= crtl
->subsections
.cold_section_end_label
;
1186 fde
->dw_fde_second_begin
= crtl
->subsections
.hot_section_label
;
1187 fde
->dw_fde_second_end
= crtl
->subsections
.hot_section_end_label
;
1191 fde
->dw_fde_end
= crtl
->subsections
.hot_section_end_label
;
1192 fde
->dw_fde_second_begin
= crtl
->subsections
.cold_section_label
;
1193 fde
->dw_fde_second_end
= crtl
->subsections
.cold_section_end_label
;
1195 have_multiple_function_sections
= true;
1197 /* There is no need to mark used sections when not debugging. */
1198 if (cold_text_section
!= NULL
)
1199 dwarf2out_note_section_used ();
1201 if (dwarf2out_do_cfi_asm ())
1202 fprintf (asm_out_file
, "\t.cfi_endproc\n");
1204 /* Now do the real section switch. */
1205 sect
= current_function_section ();
1206 switch_to_section (sect
);
1208 fde
->second_in_std_section
1209 = (sect
== text_section
1210 || (cold_text_section
&& sect
== cold_text_section
));
1212 if (dwarf2out_do_cfi_asm ())
1213 dwarf2out_do_cfi_startproc (true);
1215 var_location_switch_text_section ();
1217 if (cold_text_section
!= NULL
)
1218 set_cur_line_info_table (sect
);
1221 /* And now, the subset of the debugging information support code necessary
1222 for emitting location expressions. */
1224 /* Data about a single source file. */
1225 struct GTY(()) dwarf_file_data
{
1226 const char * filename
;
1230 typedef struct GTY(()) deferred_locations_struct
1234 } deferred_locations
;
1237 static GTY(()) vec
<deferred_locations
, va_gc
> *deferred_locations_list
;
1240 /* Describe an entry into the .debug_addr section. */
1244 ate_kind_rtx_dtprel
,
1248 typedef struct GTY(()) addr_table_entry_struct
{
1250 unsigned int refcount
;
1252 union addr_table_entry_struct_union
1254 rtx
GTY ((tag ("0"))) rtl
;
1255 char * GTY ((tag ("1"))) label
;
1257 GTY ((desc ("%1.kind"))) addr
;
1261 /* Location lists are ranges + location descriptions for that range,
1262 so you can track variables that are in different places over
1263 their entire life. */
1264 typedef struct GTY(()) dw_loc_list_struct
{
1265 dw_loc_list_ref dw_loc_next
;
1266 const char *begin
; /* Label and addr_entry for start of range */
1267 addr_table_entry
*begin_entry
;
1268 const char *end
; /* Label for end of range */
1269 char *ll_symbol
; /* Label for beginning of location list.
1270 Only on head of list */
1271 const char *section
; /* Section this loclist is relative to */
1272 dw_loc_descr_ref expr
;
1274 /* True if all addresses in this and subsequent lists are known to be
1277 /* True if this list has been replaced by dw_loc_next. */
1280 /* True if the range should be emitted even if begin and end
1285 static dw_loc_descr_ref
int_loc_descriptor (HOST_WIDE_INT
);
1287 /* Convert a DWARF stack opcode into its string name. */
1290 dwarf_stack_op_name (unsigned int op
)
1292 const char *name
= get_DW_OP_name (op
);
1297 return "OP_<unknown>";
1300 /* Return a pointer to a newly allocated location description. Location
1301 descriptions are simple expression terms that can be strung
1302 together to form more complicated location (address) descriptions. */
1304 static inline dw_loc_descr_ref
1305 new_loc_descr (enum dwarf_location_atom op
, unsigned HOST_WIDE_INT oprnd1
,
1306 unsigned HOST_WIDE_INT oprnd2
)
1308 dw_loc_descr_ref descr
= ggc_alloc_cleared_dw_loc_descr_node ();
1310 descr
->dw_loc_opc
= op
;
1311 descr
->dw_loc_oprnd1
.val_class
= dw_val_class_unsigned_const
;
1312 descr
->dw_loc_oprnd1
.val_entry
= NULL
;
1313 descr
->dw_loc_oprnd1
.v
.val_unsigned
= oprnd1
;
1314 descr
->dw_loc_oprnd2
.val_class
= dw_val_class_unsigned_const
;
1315 descr
->dw_loc_oprnd2
.val_entry
= NULL
;
1316 descr
->dw_loc_oprnd2
.v
.val_unsigned
= oprnd2
;
1321 /* Return a pointer to a newly allocated location description for
1324 static inline dw_loc_descr_ref
1325 new_reg_loc_descr (unsigned int reg
, unsigned HOST_WIDE_INT offset
)
1328 return new_loc_descr ((enum dwarf_location_atom
) (DW_OP_breg0
+ reg
),
1331 return new_loc_descr (DW_OP_bregx
, reg
, offset
);
1334 /* Add a location description term to a location description expression. */
1337 add_loc_descr (dw_loc_descr_ref
*list_head
, dw_loc_descr_ref descr
)
1339 dw_loc_descr_ref
*d
;
1341 /* Find the end of the chain. */
1342 for (d
= list_head
; (*d
) != NULL
; d
= &(*d
)->dw_loc_next
)
1348 /* Compare two location operands for exact equality. */
1351 dw_val_equal_p (dw_val_node
*a
, dw_val_node
*b
)
1353 if (a
->val_class
!= b
->val_class
)
1355 switch (a
->val_class
)
1357 case dw_val_class_none
:
1359 case dw_val_class_addr
:
1360 return rtx_equal_p (a
->v
.val_addr
, b
->v
.val_addr
);
1362 case dw_val_class_offset
:
1363 case dw_val_class_unsigned_const
:
1364 case dw_val_class_const
:
1365 case dw_val_class_range_list
:
1366 case dw_val_class_lineptr
:
1367 case dw_val_class_macptr
:
1368 /* These are all HOST_WIDE_INT, signed or unsigned. */
1369 return a
->v
.val_unsigned
== b
->v
.val_unsigned
;
1371 case dw_val_class_loc
:
1372 return a
->v
.val_loc
== b
->v
.val_loc
;
1373 case dw_val_class_loc_list
:
1374 return a
->v
.val_loc_list
== b
->v
.val_loc_list
;
1375 case dw_val_class_die_ref
:
1376 return a
->v
.val_die_ref
.die
== b
->v
.val_die_ref
.die
;
1377 case dw_val_class_fde_ref
:
1378 return a
->v
.val_fde_index
== b
->v
.val_fde_index
;
1379 case dw_val_class_lbl_id
:
1380 case dw_val_class_high_pc
:
1381 return strcmp (a
->v
.val_lbl_id
, b
->v
.val_lbl_id
) == 0;
1382 case dw_val_class_str
:
1383 return a
->v
.val_str
== b
->v
.val_str
;
1384 case dw_val_class_flag
:
1385 return a
->v
.val_flag
== b
->v
.val_flag
;
1386 case dw_val_class_file
:
1387 return a
->v
.val_file
== b
->v
.val_file
;
1388 case dw_val_class_decl_ref
:
1389 return a
->v
.val_decl_ref
== b
->v
.val_decl_ref
;
1391 case dw_val_class_const_double
:
1392 return (a
->v
.val_double
.high
== b
->v
.val_double
.high
1393 && a
->v
.val_double
.low
== b
->v
.val_double
.low
);
1395 case dw_val_class_vec
:
1397 size_t a_len
= a
->v
.val_vec
.elt_size
* a
->v
.val_vec
.length
;
1398 size_t b_len
= b
->v
.val_vec
.elt_size
* b
->v
.val_vec
.length
;
1400 return (a_len
== b_len
1401 && !memcmp (a
->v
.val_vec
.array
, b
->v
.val_vec
.array
, a_len
));
1404 case dw_val_class_data8
:
1405 return memcmp (a
->v
.val_data8
, b
->v
.val_data8
, 8) == 0;
1407 case dw_val_class_vms_delta
:
1408 return (!strcmp (a
->v
.val_vms_delta
.lbl1
, b
->v
.val_vms_delta
.lbl1
)
1409 && !strcmp (a
->v
.val_vms_delta
.lbl1
, b
->v
.val_vms_delta
.lbl1
));
1414 /* Compare two location atoms for exact equality. */
1417 loc_descr_equal_p_1 (dw_loc_descr_ref a
, dw_loc_descr_ref b
)
1419 if (a
->dw_loc_opc
!= b
->dw_loc_opc
)
1422 /* ??? This is only ever set for DW_OP_constNu, for N equal to the
1423 address size, but since we always allocate cleared storage it
1424 should be zero for other types of locations. */
1425 if (a
->dtprel
!= b
->dtprel
)
1428 return (dw_val_equal_p (&a
->dw_loc_oprnd1
, &b
->dw_loc_oprnd1
)
1429 && dw_val_equal_p (&a
->dw_loc_oprnd2
, &b
->dw_loc_oprnd2
));
1432 /* Compare two complete location expressions for exact equality. */
1435 loc_descr_equal_p (dw_loc_descr_ref a
, dw_loc_descr_ref b
)
1441 if (a
== NULL
|| b
== NULL
)
1443 if (!loc_descr_equal_p_1 (a
, b
))
1452 /* Add a constant OFFSET to a location expression. */
1455 loc_descr_plus_const (dw_loc_descr_ref
*list_head
, HOST_WIDE_INT offset
)
1457 dw_loc_descr_ref loc
;
1460 gcc_assert (*list_head
!= NULL
);
1465 /* Find the end of the chain. */
1466 for (loc
= *list_head
; loc
->dw_loc_next
!= NULL
; loc
= loc
->dw_loc_next
)
1470 if (loc
->dw_loc_opc
== DW_OP_fbreg
1471 || (loc
->dw_loc_opc
>= DW_OP_breg0
&& loc
->dw_loc_opc
<= DW_OP_breg31
))
1472 p
= &loc
->dw_loc_oprnd1
.v
.val_int
;
1473 else if (loc
->dw_loc_opc
== DW_OP_bregx
)
1474 p
= &loc
->dw_loc_oprnd2
.v
.val_int
;
1476 /* If the last operation is fbreg, breg{0..31,x}, optimize by adjusting its
1477 offset. Don't optimize if an signed integer overflow would happen. */
1479 && ((offset
> 0 && *p
<= INTTYPE_MAXIMUM (HOST_WIDE_INT
) - offset
)
1480 || (offset
< 0 && *p
>= INTTYPE_MINIMUM (HOST_WIDE_INT
) - offset
)))
1483 else if (offset
> 0)
1484 loc
->dw_loc_next
= new_loc_descr (DW_OP_plus_uconst
, offset
, 0);
1488 loc
->dw_loc_next
= int_loc_descriptor (-offset
);
1489 add_loc_descr (&loc
->dw_loc_next
, new_loc_descr (DW_OP_minus
, 0, 0));
1493 /* Add a constant OFFSET to a location list. */
1496 loc_list_plus_const (dw_loc_list_ref list_head
, HOST_WIDE_INT offset
)
1499 for (d
= list_head
; d
!= NULL
; d
= d
->dw_loc_next
)
1500 loc_descr_plus_const (&d
->expr
, offset
);
1503 #define DWARF_REF_SIZE \
1504 (dwarf_version == 2 ? DWARF2_ADDR_SIZE : DWARF_OFFSET_SIZE)
1506 static unsigned long int get_base_type_offset (dw_die_ref
);
1508 /* Return the size of a location descriptor. */
1510 static unsigned long
1511 size_of_loc_descr (dw_loc_descr_ref loc
)
1513 unsigned long size
= 1;
1515 switch (loc
->dw_loc_opc
)
1518 size
+= DWARF2_ADDR_SIZE
;
1520 case DW_OP_GNU_addr_index
:
1521 case DW_OP_GNU_const_index
:
1522 gcc_assert (loc
->dw_loc_oprnd1
.val_entry
->index
!= NO_INDEX_ASSIGNED
);
1523 size
+= size_of_uleb128 (loc
->dw_loc_oprnd1
.val_entry
->index
);
1542 size
+= size_of_uleb128 (loc
->dw_loc_oprnd1
.v
.val_unsigned
);
1545 size
+= size_of_sleb128 (loc
->dw_loc_oprnd1
.v
.val_int
);
1550 case DW_OP_plus_uconst
:
1551 size
+= size_of_uleb128 (loc
->dw_loc_oprnd1
.v
.val_unsigned
);
1589 size
+= size_of_sleb128 (loc
->dw_loc_oprnd1
.v
.val_int
);
1592 size
+= size_of_uleb128 (loc
->dw_loc_oprnd1
.v
.val_unsigned
);
1595 size
+= size_of_sleb128 (loc
->dw_loc_oprnd1
.v
.val_int
);
1598 size
+= size_of_uleb128 (loc
->dw_loc_oprnd1
.v
.val_unsigned
);
1599 size
+= size_of_sleb128 (loc
->dw_loc_oprnd2
.v
.val_int
);
1602 size
+= size_of_uleb128 (loc
->dw_loc_oprnd1
.v
.val_unsigned
);
1604 case DW_OP_bit_piece
:
1605 size
+= size_of_uleb128 (loc
->dw_loc_oprnd1
.v
.val_unsigned
);
1606 size
+= size_of_uleb128 (loc
->dw_loc_oprnd2
.v
.val_unsigned
);
1608 case DW_OP_deref_size
:
1609 case DW_OP_xderef_size
:
1618 case DW_OP_call_ref
:
1619 size
+= DWARF_REF_SIZE
;
1621 case DW_OP_implicit_value
:
1622 size
+= size_of_uleb128 (loc
->dw_loc_oprnd1
.v
.val_unsigned
)
1623 + loc
->dw_loc_oprnd1
.v
.val_unsigned
;
1625 case DW_OP_GNU_implicit_pointer
:
1626 size
+= DWARF_REF_SIZE
+ size_of_sleb128 (loc
->dw_loc_oprnd2
.v
.val_int
);
1628 case DW_OP_GNU_entry_value
:
1630 unsigned long op_size
= size_of_locs (loc
->dw_loc_oprnd1
.v
.val_loc
);
1631 size
+= size_of_uleb128 (op_size
) + op_size
;
1634 case DW_OP_GNU_const_type
:
1637 = get_base_type_offset (loc
->dw_loc_oprnd1
.v
.val_die_ref
.die
);
1638 size
+= size_of_uleb128 (o
) + 1;
1639 switch (loc
->dw_loc_oprnd2
.val_class
)
1641 case dw_val_class_vec
:
1642 size
+= loc
->dw_loc_oprnd2
.v
.val_vec
.length
1643 * loc
->dw_loc_oprnd2
.v
.val_vec
.elt_size
;
1645 case dw_val_class_const
:
1646 size
+= HOST_BITS_PER_WIDE_INT
/ BITS_PER_UNIT
;
1648 case dw_val_class_const_double
:
1649 size
+= HOST_BITS_PER_DOUBLE_INT
/ BITS_PER_UNIT
;
1656 case DW_OP_GNU_regval_type
:
1659 = get_base_type_offset (loc
->dw_loc_oprnd2
.v
.val_die_ref
.die
);
1660 size
+= size_of_uleb128 (loc
->dw_loc_oprnd1
.v
.val_unsigned
)
1661 + size_of_uleb128 (o
);
1664 case DW_OP_GNU_deref_type
:
1667 = get_base_type_offset (loc
->dw_loc_oprnd2
.v
.val_die_ref
.die
);
1668 size
+= 1 + size_of_uleb128 (o
);
1671 case DW_OP_GNU_convert
:
1672 case DW_OP_GNU_reinterpret
:
1673 if (loc
->dw_loc_oprnd1
.val_class
== dw_val_class_unsigned_const
)
1674 size
+= size_of_uleb128 (loc
->dw_loc_oprnd1
.v
.val_unsigned
);
1678 = get_base_type_offset (loc
->dw_loc_oprnd1
.v
.val_die_ref
.die
);
1679 size
+= size_of_uleb128 (o
);
1682 case DW_OP_GNU_parameter_ref
:
1692 /* Return the size of a series of location descriptors. */
1695 size_of_locs (dw_loc_descr_ref loc
)
1700 /* If there are no skip or bra opcodes, don't fill in the dw_loc_addr
1701 field, to avoid writing to a PCH file. */
1702 for (size
= 0, l
= loc
; l
!= NULL
; l
= l
->dw_loc_next
)
1704 if (l
->dw_loc_opc
== DW_OP_skip
|| l
->dw_loc_opc
== DW_OP_bra
)
1706 size
+= size_of_loc_descr (l
);
1711 for (size
= 0, l
= loc
; l
!= NULL
; l
= l
->dw_loc_next
)
1713 l
->dw_loc_addr
= size
;
1714 size
+= size_of_loc_descr (l
);
1720 static HOST_WIDE_INT
extract_int (const unsigned char *, unsigned);
1721 static void get_ref_die_offset_label (char *, dw_die_ref
);
1722 static unsigned long int get_ref_die_offset (dw_die_ref
);
1724 /* Output location description stack opcode's operands (if any).
1725 The for_eh_or_skip parameter controls whether register numbers are
1726 converted using DWARF2_FRAME_REG_OUT, which is needed in the case that
1727 hard reg numbers have been processed via DWARF_FRAME_REGNUM (i.e. for unwind
1728 info). This should be suppressed for the cases that have not been converted
1729 (i.e. symbolic debug info), by setting the parameter < 0. See PR47324. */
1732 output_loc_operands (dw_loc_descr_ref loc
, int for_eh_or_skip
)
1734 dw_val_ref val1
= &loc
->dw_loc_oprnd1
;
1735 dw_val_ref val2
= &loc
->dw_loc_oprnd2
;
1737 switch (loc
->dw_loc_opc
)
1739 #ifdef DWARF2_DEBUGGING_INFO
1742 dw2_asm_output_data (2, val1
->v
.val_int
, NULL
);
1747 gcc_assert (targetm
.asm_out
.output_dwarf_dtprel
);
1748 targetm
.asm_out
.output_dwarf_dtprel (asm_out_file
, 4,
1750 fputc ('\n', asm_out_file
);
1755 dw2_asm_output_data (4, val1
->v
.val_int
, NULL
);
1760 gcc_assert (targetm
.asm_out
.output_dwarf_dtprel
);
1761 targetm
.asm_out
.output_dwarf_dtprel (asm_out_file
, 8,
1763 fputc ('\n', asm_out_file
);
1768 gcc_assert (HOST_BITS_PER_WIDE_INT
>= 64);
1769 dw2_asm_output_data (8, val1
->v
.val_int
, NULL
);
1776 gcc_assert (val1
->val_class
== dw_val_class_loc
);
1777 offset
= val1
->v
.val_loc
->dw_loc_addr
- (loc
->dw_loc_addr
+ 3);
1779 dw2_asm_output_data (2, offset
, NULL
);
1782 case DW_OP_implicit_value
:
1783 dw2_asm_output_data_uleb128 (val1
->v
.val_unsigned
, NULL
);
1784 switch (val2
->val_class
)
1786 case dw_val_class_const
:
1787 dw2_asm_output_data (val1
->v
.val_unsigned
, val2
->v
.val_int
, NULL
);
1789 case dw_val_class_vec
:
1791 unsigned int elt_size
= val2
->v
.val_vec
.elt_size
;
1792 unsigned int len
= val2
->v
.val_vec
.length
;
1796 if (elt_size
> sizeof (HOST_WIDE_INT
))
1801 for (i
= 0, p
= val2
->v
.val_vec
.array
;
1804 dw2_asm_output_data (elt_size
, extract_int (p
, elt_size
),
1805 "fp or vector constant word %u", i
);
1808 case dw_val_class_const_double
:
1810 unsigned HOST_WIDE_INT first
, second
;
1812 if (WORDS_BIG_ENDIAN
)
1814 first
= val2
->v
.val_double
.high
;
1815 second
= val2
->v
.val_double
.low
;
1819 first
= val2
->v
.val_double
.low
;
1820 second
= val2
->v
.val_double
.high
;
1822 dw2_asm_output_data (HOST_BITS_PER_WIDE_INT
/ HOST_BITS_PER_CHAR
,
1824 dw2_asm_output_data (HOST_BITS_PER_WIDE_INT
/ HOST_BITS_PER_CHAR
,
1828 case dw_val_class_addr
:
1829 gcc_assert (val1
->v
.val_unsigned
== DWARF2_ADDR_SIZE
);
1830 dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE
, val2
->v
.val_addr
, NULL
);
1845 case DW_OP_implicit_value
:
1846 /* We currently don't make any attempt to make sure these are
1847 aligned properly like we do for the main unwind info, so
1848 don't support emitting things larger than a byte if we're
1849 only doing unwinding. */
1854 dw2_asm_output_data (1, val1
->v
.val_int
, NULL
);
1857 dw2_asm_output_data_uleb128 (val1
->v
.val_unsigned
, NULL
);
1860 dw2_asm_output_data_sleb128 (val1
->v
.val_int
, NULL
);
1863 dw2_asm_output_data (1, val1
->v
.val_int
, NULL
);
1865 case DW_OP_plus_uconst
:
1866 dw2_asm_output_data_uleb128 (val1
->v
.val_unsigned
, NULL
);
1900 dw2_asm_output_data_sleb128 (val1
->v
.val_int
, NULL
);
1904 unsigned r
= val1
->v
.val_unsigned
;
1905 if (for_eh_or_skip
>= 0)
1906 r
= DWARF2_FRAME_REG_OUT (r
, for_eh_or_skip
);
1907 gcc_assert (size_of_uleb128 (r
)
1908 == size_of_uleb128 (val1
->v
.val_unsigned
));
1909 dw2_asm_output_data_uleb128 (r
, NULL
);
1913 dw2_asm_output_data_sleb128 (val1
->v
.val_int
, NULL
);
1917 unsigned r
= val1
->v
.val_unsigned
;
1918 if (for_eh_or_skip
>= 0)
1919 r
= DWARF2_FRAME_REG_OUT (r
, for_eh_or_skip
);
1920 gcc_assert (size_of_uleb128 (r
)
1921 == size_of_uleb128 (val1
->v
.val_unsigned
));
1922 dw2_asm_output_data_uleb128 (r
, NULL
);
1923 dw2_asm_output_data_sleb128 (val2
->v
.val_int
, NULL
);
1927 dw2_asm_output_data_uleb128 (val1
->v
.val_unsigned
, NULL
);
1929 case DW_OP_bit_piece
:
1930 dw2_asm_output_data_uleb128 (val1
->v
.val_unsigned
, NULL
);
1931 dw2_asm_output_data_uleb128 (val2
->v
.val_unsigned
, NULL
);
1933 case DW_OP_deref_size
:
1934 case DW_OP_xderef_size
:
1935 dw2_asm_output_data (1, val1
->v
.val_int
, NULL
);
1941 if (targetm
.asm_out
.output_dwarf_dtprel
)
1943 targetm
.asm_out
.output_dwarf_dtprel (asm_out_file
,
1946 fputc ('\n', asm_out_file
);
1953 #ifdef DWARF2_DEBUGGING_INFO
1954 dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE
, val1
->v
.val_addr
, NULL
);
1961 case DW_OP_GNU_addr_index
:
1962 case DW_OP_GNU_const_index
:
1963 gcc_assert (loc
->dw_loc_oprnd1
.val_entry
->index
!= NO_INDEX_ASSIGNED
);
1964 dw2_asm_output_data_uleb128 (loc
->dw_loc_oprnd1
.val_entry
->index
,
1965 "(index into .debug_addr)");
1968 case DW_OP_GNU_implicit_pointer
:
1970 char label
[MAX_ARTIFICIAL_LABEL_BYTES
1971 + HOST_BITS_PER_WIDE_INT
/ 2 + 2];
1972 gcc_assert (val1
->val_class
== dw_val_class_die_ref
);
1973 get_ref_die_offset_label (label
, val1
->v
.val_die_ref
.die
);
1974 dw2_asm_output_offset (DWARF_REF_SIZE
, label
, debug_info_section
, NULL
);
1975 dw2_asm_output_data_sleb128 (val2
->v
.val_int
, NULL
);
1979 case DW_OP_GNU_entry_value
:
1980 dw2_asm_output_data_uleb128 (size_of_locs (val1
->v
.val_loc
), NULL
);
1981 output_loc_sequence (val1
->v
.val_loc
, for_eh_or_skip
);
1984 case DW_OP_GNU_const_type
:
1986 unsigned long o
= get_base_type_offset (val1
->v
.val_die_ref
.die
), l
;
1988 dw2_asm_output_data_uleb128 (o
, NULL
);
1989 switch (val2
->val_class
)
1991 case dw_val_class_const
:
1992 l
= HOST_BITS_PER_WIDE_INT
/ HOST_BITS_PER_CHAR
;
1993 dw2_asm_output_data (1, l
, NULL
);
1994 dw2_asm_output_data (l
, val2
->v
.val_int
, NULL
);
1996 case dw_val_class_vec
:
1998 unsigned int elt_size
= val2
->v
.val_vec
.elt_size
;
1999 unsigned int len
= val2
->v
.val_vec
.length
;
2004 dw2_asm_output_data (1, l
, NULL
);
2005 if (elt_size
> sizeof (HOST_WIDE_INT
))
2010 for (i
= 0, p
= val2
->v
.val_vec
.array
;
2013 dw2_asm_output_data (elt_size
, extract_int (p
, elt_size
),
2014 "fp or vector constant word %u", i
);
2017 case dw_val_class_const_double
:
2019 unsigned HOST_WIDE_INT first
, second
;
2020 l
= HOST_BITS_PER_WIDE_INT
/ HOST_BITS_PER_CHAR
;
2022 dw2_asm_output_data (1, 2 * l
, NULL
);
2023 if (WORDS_BIG_ENDIAN
)
2025 first
= val2
->v
.val_double
.high
;
2026 second
= val2
->v
.val_double
.low
;
2030 first
= val2
->v
.val_double
.low
;
2031 second
= val2
->v
.val_double
.high
;
2033 dw2_asm_output_data (l
, first
, NULL
);
2034 dw2_asm_output_data (l
, second
, NULL
);
2042 case DW_OP_GNU_regval_type
:
2044 unsigned r
= val1
->v
.val_unsigned
;
2045 unsigned long o
= get_base_type_offset (val2
->v
.val_die_ref
.die
);
2047 if (for_eh_or_skip
>= 0)
2049 r
= DWARF2_FRAME_REG_OUT (r
, for_eh_or_skip
);
2050 gcc_assert (size_of_uleb128 (r
)
2051 == size_of_uleb128 (val1
->v
.val_unsigned
));
2053 dw2_asm_output_data_uleb128 (r
, NULL
);
2054 dw2_asm_output_data_uleb128 (o
, NULL
);
2057 case DW_OP_GNU_deref_type
:
2059 unsigned long o
= get_base_type_offset (val2
->v
.val_die_ref
.die
);
2061 dw2_asm_output_data (1, val1
->v
.val_int
, NULL
);
2062 dw2_asm_output_data_uleb128 (o
, NULL
);
2065 case DW_OP_GNU_convert
:
2066 case DW_OP_GNU_reinterpret
:
2067 if (loc
->dw_loc_oprnd1
.val_class
== dw_val_class_unsigned_const
)
2068 dw2_asm_output_data_uleb128 (val1
->v
.val_unsigned
, NULL
);
2071 unsigned long o
= get_base_type_offset (val1
->v
.val_die_ref
.die
);
2073 dw2_asm_output_data_uleb128 (o
, NULL
);
2077 case DW_OP_GNU_parameter_ref
:
2080 gcc_assert (val1
->val_class
== dw_val_class_die_ref
);
2081 o
= get_ref_die_offset (val1
->v
.val_die_ref
.die
);
2082 dw2_asm_output_data (4, o
, NULL
);
2087 /* Other codes have no operands. */
2092 /* Output a sequence of location operations.
2093 The for_eh_or_skip parameter controls whether register numbers are
2094 converted using DWARF2_FRAME_REG_OUT, which is needed in the case that
2095 hard reg numbers have been processed via DWARF_FRAME_REGNUM (i.e. for unwind
2096 info). This should be suppressed for the cases that have not been converted
2097 (i.e. symbolic debug info), by setting the parameter < 0. See PR47324. */
2100 output_loc_sequence (dw_loc_descr_ref loc
, int for_eh_or_skip
)
2102 for (; loc
!= NULL
; loc
= loc
->dw_loc_next
)
2104 enum dwarf_location_atom opc
= loc
->dw_loc_opc
;
2105 /* Output the opcode. */
2106 if (for_eh_or_skip
>= 0
2107 && opc
>= DW_OP_breg0
&& opc
<= DW_OP_breg31
)
2109 unsigned r
= (opc
- DW_OP_breg0
);
2110 r
= DWARF2_FRAME_REG_OUT (r
, for_eh_or_skip
);
2111 gcc_assert (r
<= 31);
2112 opc
= (enum dwarf_location_atom
) (DW_OP_breg0
+ r
);
2114 else if (for_eh_or_skip
>= 0
2115 && opc
>= DW_OP_reg0
&& opc
<= DW_OP_reg31
)
2117 unsigned r
= (opc
- DW_OP_reg0
);
2118 r
= DWARF2_FRAME_REG_OUT (r
, for_eh_or_skip
);
2119 gcc_assert (r
<= 31);
2120 opc
= (enum dwarf_location_atom
) (DW_OP_reg0
+ r
);
2123 dw2_asm_output_data (1, opc
,
2124 "%s", dwarf_stack_op_name (opc
));
2126 /* Output the operand(s) (if any). */
2127 output_loc_operands (loc
, for_eh_or_skip
);
2131 /* Output location description stack opcode's operands (if any).
2132 The output is single bytes on a line, suitable for .cfi_escape. */
2135 output_loc_operands_raw (dw_loc_descr_ref loc
)
2137 dw_val_ref val1
= &loc
->dw_loc_oprnd1
;
2138 dw_val_ref val2
= &loc
->dw_loc_oprnd2
;
2140 switch (loc
->dw_loc_opc
)
2143 case DW_OP_GNU_addr_index
:
2144 case DW_OP_GNU_const_index
:
2145 case DW_OP_implicit_value
:
2146 /* We cannot output addresses in .cfi_escape, only bytes. */
2152 case DW_OP_deref_size
:
2153 case DW_OP_xderef_size
:
2154 fputc (',', asm_out_file
);
2155 dw2_asm_output_data_raw (1, val1
->v
.val_int
);
2160 fputc (',', asm_out_file
);
2161 dw2_asm_output_data_raw (2, val1
->v
.val_int
);
2166 fputc (',', asm_out_file
);
2167 dw2_asm_output_data_raw (4, val1
->v
.val_int
);
2172 gcc_assert (HOST_BITS_PER_WIDE_INT
>= 64);
2173 fputc (',', asm_out_file
);
2174 dw2_asm_output_data_raw (8, val1
->v
.val_int
);
2182 gcc_assert (val1
->val_class
== dw_val_class_loc
);
2183 offset
= val1
->v
.val_loc
->dw_loc_addr
- (loc
->dw_loc_addr
+ 3);
2185 fputc (',', asm_out_file
);
2186 dw2_asm_output_data_raw (2, offset
);
2192 unsigned r
= DWARF2_FRAME_REG_OUT (val1
->v
.val_unsigned
, 1);
2193 gcc_assert (size_of_uleb128 (r
)
2194 == size_of_uleb128 (val1
->v
.val_unsigned
));
2195 fputc (',', asm_out_file
);
2196 dw2_asm_output_data_uleb128_raw (r
);
2201 case DW_OP_plus_uconst
:
2203 fputc (',', asm_out_file
);
2204 dw2_asm_output_data_uleb128_raw (val1
->v
.val_unsigned
);
2207 case DW_OP_bit_piece
:
2208 fputc (',', asm_out_file
);
2209 dw2_asm_output_data_uleb128_raw (val1
->v
.val_unsigned
);
2210 dw2_asm_output_data_uleb128_raw (val2
->v
.val_unsigned
);
2247 fputc (',', asm_out_file
);
2248 dw2_asm_output_data_sleb128_raw (val1
->v
.val_int
);
2253 unsigned r
= DWARF2_FRAME_REG_OUT (val1
->v
.val_unsigned
, 1);
2254 gcc_assert (size_of_uleb128 (r
)
2255 == size_of_uleb128 (val1
->v
.val_unsigned
));
2256 fputc (',', asm_out_file
);
2257 dw2_asm_output_data_uleb128_raw (r
);
2258 fputc (',', asm_out_file
);
2259 dw2_asm_output_data_sleb128_raw (val2
->v
.val_int
);
2263 case DW_OP_GNU_implicit_pointer
:
2264 case DW_OP_GNU_entry_value
:
2265 case DW_OP_GNU_const_type
:
2266 case DW_OP_GNU_regval_type
:
2267 case DW_OP_GNU_deref_type
:
2268 case DW_OP_GNU_convert
:
2269 case DW_OP_GNU_reinterpret
:
2270 case DW_OP_GNU_parameter_ref
:
2275 /* Other codes have no operands. */
2281 output_loc_sequence_raw (dw_loc_descr_ref loc
)
2285 enum dwarf_location_atom opc
= loc
->dw_loc_opc
;
2286 /* Output the opcode. */
2287 if (opc
>= DW_OP_breg0
&& opc
<= DW_OP_breg31
)
2289 unsigned r
= (opc
- DW_OP_breg0
);
2290 r
= DWARF2_FRAME_REG_OUT (r
, 1);
2291 gcc_assert (r
<= 31);
2292 opc
= (enum dwarf_location_atom
) (DW_OP_breg0
+ r
);
2294 else if (opc
>= DW_OP_reg0
&& opc
<= DW_OP_reg31
)
2296 unsigned r
= (opc
- DW_OP_reg0
);
2297 r
= DWARF2_FRAME_REG_OUT (r
, 1);
2298 gcc_assert (r
<= 31);
2299 opc
= (enum dwarf_location_atom
) (DW_OP_reg0
+ r
);
2301 /* Output the opcode. */
2302 fprintf (asm_out_file
, "%#x", opc
);
2303 output_loc_operands_raw (loc
);
2305 if (!loc
->dw_loc_next
)
2307 loc
= loc
->dw_loc_next
;
2309 fputc (',', asm_out_file
);
2313 /* This function builds a dwarf location descriptor sequence from a
2314 dw_cfa_location, adding the given OFFSET to the result of the
2317 struct dw_loc_descr_node
*
2318 build_cfa_loc (dw_cfa_location
*cfa
, HOST_WIDE_INT offset
)
2320 struct dw_loc_descr_node
*head
, *tmp
;
2322 offset
+= cfa
->offset
;
2326 head
= new_reg_loc_descr (cfa
->reg
, cfa
->base_offset
);
2327 head
->dw_loc_oprnd1
.val_class
= dw_val_class_const
;
2328 head
->dw_loc_oprnd1
.val_entry
= NULL
;
2329 tmp
= new_loc_descr (DW_OP_deref
, 0, 0);
2330 add_loc_descr (&head
, tmp
);
2333 tmp
= new_loc_descr (DW_OP_plus_uconst
, offset
, 0);
2334 add_loc_descr (&head
, tmp
);
2338 head
= new_reg_loc_descr (cfa
->reg
, offset
);
2343 /* This function builds a dwarf location descriptor sequence for
2344 the address at OFFSET from the CFA when stack is aligned to
2347 struct dw_loc_descr_node
*
2348 build_cfa_aligned_loc (dw_cfa_location
*cfa
,
2349 HOST_WIDE_INT offset
, HOST_WIDE_INT alignment
)
2351 struct dw_loc_descr_node
*head
;
2352 unsigned int dwarf_fp
2353 = DWARF_FRAME_REGNUM (HARD_FRAME_POINTER_REGNUM
);
2355 /* When CFA is defined as FP+OFFSET, emulate stack alignment. */
2356 if (cfa
->reg
== HARD_FRAME_POINTER_REGNUM
&& cfa
->indirect
== 0)
2358 head
= new_reg_loc_descr (dwarf_fp
, 0);
2359 add_loc_descr (&head
, int_loc_descriptor (alignment
));
2360 add_loc_descr (&head
, new_loc_descr (DW_OP_and
, 0, 0));
2361 loc_descr_plus_const (&head
, offset
);
2364 head
= new_reg_loc_descr (dwarf_fp
, offset
);
2368 /* And now, the support for symbolic debugging information. */
2370 /* .debug_str support. */
2371 static int output_indirect_string (void **, void *);
2373 static void dwarf2out_init (const char *);
2374 static void dwarf2out_finish (const char *);
2375 static void dwarf2out_assembly_start (void);
2376 static void dwarf2out_define (unsigned int, const char *);
2377 static void dwarf2out_undef (unsigned int, const char *);
2378 static void dwarf2out_start_source_file (unsigned, const char *);
2379 static void dwarf2out_end_source_file (unsigned);
2380 static void dwarf2out_function_decl (tree
);
2381 static void dwarf2out_begin_block (unsigned, unsigned);
2382 static void dwarf2out_end_block (unsigned, unsigned);
2383 static bool dwarf2out_ignore_block (const_tree
);
2384 static void dwarf2out_global_decl (tree
);
2385 static void dwarf2out_type_decl (tree
, int);
2386 static void dwarf2out_imported_module_or_decl (tree
, tree
, tree
, bool);
2387 static void dwarf2out_imported_module_or_decl_1 (tree
, tree
, tree
,
2389 static void dwarf2out_abstract_function (tree
);
2390 static void dwarf2out_var_location (rtx
);
2391 static void dwarf2out_begin_function (tree
);
2392 static void dwarf2out_end_function (unsigned int);
2393 static void dwarf2out_set_name (tree
, tree
);
2395 /* The debug hooks structure. */
2397 const struct gcc_debug_hooks dwarf2_debug_hooks
=
2401 dwarf2out_assembly_start
,
2404 dwarf2out_start_source_file
,
2405 dwarf2out_end_source_file
,
2406 dwarf2out_begin_block
,
2407 dwarf2out_end_block
,
2408 dwarf2out_ignore_block
,
2409 dwarf2out_source_line
,
2410 dwarf2out_begin_prologue
,
2411 #if VMS_DEBUGGING_INFO
2412 dwarf2out_vms_end_prologue
,
2413 dwarf2out_vms_begin_epilogue
,
2415 debug_nothing_int_charstar
,
2416 debug_nothing_int_charstar
,
2418 dwarf2out_end_epilogue
,
2419 dwarf2out_begin_function
,
2420 dwarf2out_end_function
, /* end_function */
2421 dwarf2out_function_decl
, /* function_decl */
2422 dwarf2out_global_decl
,
2423 dwarf2out_type_decl
, /* type_decl */
2424 dwarf2out_imported_module_or_decl
,
2425 debug_nothing_tree
, /* deferred_inline_function */
2426 /* The DWARF 2 backend tries to reduce debugging bloat by not
2427 emitting the abstract description of inline functions until
2428 something tries to reference them. */
2429 dwarf2out_abstract_function
, /* outlining_inline_function */
2430 debug_nothing_rtx
, /* label */
2431 debug_nothing_int
, /* handle_pch */
2432 dwarf2out_var_location
,
2433 dwarf2out_switch_text_section
,
2435 1, /* start_end_main_source_file */
2436 TYPE_SYMTAB_IS_DIE
/* tree_type_symtab_field */
2439 /* NOTE: In the comments in this file, many references are made to
2440 "Debugging Information Entries". This term is abbreviated as `DIE'
2441 throughout the remainder of this file. */
2443 /* An internal representation of the DWARF output is built, and then
2444 walked to generate the DWARF debugging info. The walk of the internal
2445 representation is done after the entire program has been compiled.
2446 The types below are used to describe the internal representation. */
2448 /* Whether to put type DIEs into their own section .debug_types instead
2449 of making them part of the .debug_info section. Only supported for
2450 Dwarf V4 or higher and the user didn't disable them through
2451 -fno-debug-types-section. It is more efficient to put them in a
2452 separate comdat sections since the linker will then be able to
2453 remove duplicates. But not all tools support .debug_types sections
2456 #define use_debug_types (dwarf_version >= 4 && flag_debug_types_section)
2458 /* Various DIE's use offsets relative to the beginning of the
2459 .debug_info section to refer to each other. */
2461 typedef long int dw_offset
;
2463 /* Define typedefs here to avoid circular dependencies. */
2465 typedef struct dw_attr_struct
*dw_attr_ref
;
2466 typedef struct dw_line_info_struct
*dw_line_info_ref
;
2467 typedef struct pubname_struct
*pubname_ref
;
2468 typedef struct dw_ranges_struct
*dw_ranges_ref
;
2469 typedef struct dw_ranges_by_label_struct
*dw_ranges_by_label_ref
;
2470 typedef struct comdat_type_struct
*comdat_type_node_ref
;
2472 /* The entries in the line_info table more-or-less mirror the opcodes
2473 that are used in the real dwarf line table. Arrays of these entries
2474 are collected per section when DWARF2_ASM_LINE_DEBUG_INFO is not
2477 enum dw_line_info_opcode
{
2478 /* Emit DW_LNE_set_address; the operand is the label index. */
2481 /* Emit a row to the matrix with the given line. This may be done
2482 via any combination of DW_LNS_copy, DW_LNS_advance_line, and
2486 /* Emit a DW_LNS_set_file. */
2489 /* Emit a DW_LNS_set_column. */
2492 /* Emit a DW_LNS_negate_stmt; the operand is ignored. */
2495 /* Emit a DW_LNS_set_prologue_end/epilogue_begin; the operand is ignored. */
2496 LI_set_prologue_end
,
2497 LI_set_epilogue_begin
,
2499 /* Emit a DW_LNE_set_discriminator. */
2500 LI_set_discriminator
2503 typedef struct GTY(()) dw_line_info_struct
{
2504 enum dw_line_info_opcode opcode
;
2506 } dw_line_info_entry
;
2509 typedef struct GTY(()) dw_line_info_table_struct
{
2510 /* The label that marks the end of this section. */
2511 const char *end_label
;
2513 /* The values for the last row of the matrix, as collected in the table.
2514 These are used to minimize the changes to the next row. */
2515 unsigned int file_num
;
2516 unsigned int line_num
;
2517 unsigned int column_num
;
2522 vec
<dw_line_info_entry
, va_gc
> *entries
;
2523 } dw_line_info_table
;
2525 typedef dw_line_info_table
*dw_line_info_table_p
;
2528 /* Each DIE attribute has a field specifying the attribute kind,
2529 a link to the next attribute in the chain, and an attribute value.
2530 Attributes are typically linked below the DIE they modify. */
2532 typedef struct GTY(()) dw_attr_struct
{
2533 enum dwarf_attribute dw_attr
;
2534 dw_val_node dw_attr_val
;
2539 /* The Debugging Information Entry (DIE) structure. DIEs form a tree.
2540 The children of each node form a circular list linked by
2541 die_sib. die_child points to the node *before* the "first" child node. */
2543 typedef struct GTY((chain_circular ("%h.die_sib"))) die_struct
{
2544 union die_symbol_or_type_node
2546 const char * GTY ((tag ("0"))) die_symbol
;
2547 comdat_type_node_ref
GTY ((tag ("1"))) die_type_node
;
2549 GTY ((desc ("%0.comdat_type_p"))) die_id
;
2550 vec
<dw_attr_node
, va_gc
> *die_attr
;
2551 dw_die_ref die_parent
;
2552 dw_die_ref die_child
;
2554 dw_die_ref die_definition
; /* ref from a specification to its definition */
2555 dw_offset die_offset
;
2556 unsigned long die_abbrev
;
2558 unsigned int decl_id
;
2559 enum dwarf_tag die_tag
;
2560 /* Die is used and must not be pruned as unused. */
2561 BOOL_BITFIELD die_perennial_p
: 1;
2562 BOOL_BITFIELD comdat_type_p
: 1; /* DIE has a type signature */
2563 /* Lots of spare bits. */
2567 /* Evaluate 'expr' while 'c' is set to each child of DIE in order. */
2568 #define FOR_EACH_CHILD(die, c, expr) do { \
2569 c = die->die_child; \
2573 } while (c != die->die_child); \
2576 /* The pubname structure */
2578 typedef struct GTY(()) pubname_struct
{
2585 struct GTY(()) dw_ranges_struct
{
2586 /* If this is positive, it's a block number, otherwise it's a
2587 bitwise-negated index into dw_ranges_by_label. */
2591 /* A structure to hold a macinfo entry. */
2593 typedef struct GTY(()) macinfo_struct
{
2595 unsigned HOST_WIDE_INT lineno
;
2601 struct GTY(()) dw_ranges_by_label_struct
{
2606 /* The comdat type node structure. */
2607 typedef struct GTY(()) comdat_type_struct
2609 dw_die_ref root_die
;
2610 dw_die_ref type_die
;
2611 dw_die_ref skeleton_die
;
2612 char signature
[DWARF_TYPE_SIGNATURE_SIZE
];
2613 struct comdat_type_struct
*next
;
2617 /* The limbo die list structure. */
2618 typedef struct GTY(()) limbo_die_struct
{
2621 struct limbo_die_struct
*next
;
2625 typedef struct skeleton_chain_struct
2629 struct skeleton_chain_struct
*parent
;
2631 skeleton_chain_node
;
2633 /* Define a macro which returns nonzero for a TYPE_DECL which was
2634 implicitly generated for a type.
2636 Note that, unlike the C front-end (which generates a NULL named
2637 TYPE_DECL node for each complete tagged type, each array type,
2638 and each function type node created) the C++ front-end generates
2639 a _named_ TYPE_DECL node for each tagged type node created.
2640 These TYPE_DECLs have DECL_ARTIFICIAL set, so we know not to
2641 generate a DW_TAG_typedef DIE for them. Likewise with the Ada
2642 front-end, but for each type, tagged or not. */
2644 #define TYPE_DECL_IS_STUB(decl) \
2645 (DECL_NAME (decl) == NULL_TREE \
2646 || (DECL_ARTIFICIAL (decl) \
2647 && ((decl == TYPE_STUB_DECL (TREE_TYPE (decl))) \
2648 /* This is necessary for stub decls that \
2649 appear in nested inline functions. */ \
2650 || (DECL_ABSTRACT_ORIGIN (decl) != NULL_TREE \
2651 && (decl_ultimate_origin (decl) \
2652 == TYPE_STUB_DECL (TREE_TYPE (decl)))))))
2654 /* Information concerning the compilation unit's programming
2655 language, and compiler version. */
2657 /* Fixed size portion of the DWARF compilation unit header. */
2658 #define DWARF_COMPILE_UNIT_HEADER_SIZE \
2659 (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 3)
2661 /* Fixed size portion of the DWARF comdat type unit header. */
2662 #define DWARF_COMDAT_TYPE_UNIT_HEADER_SIZE \
2663 (DWARF_COMPILE_UNIT_HEADER_SIZE + DWARF_TYPE_SIGNATURE_SIZE \
2664 + DWARF_OFFSET_SIZE)
2666 /* Fixed size portion of public names info. */
2667 #define DWARF_PUBNAMES_HEADER_SIZE (2 * DWARF_OFFSET_SIZE + 2)
2669 /* Fixed size portion of the address range info. */
2670 #define DWARF_ARANGES_HEADER_SIZE \
2671 (DWARF_ROUND (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 4, \
2672 DWARF2_ADDR_SIZE * 2) \
2673 - DWARF_INITIAL_LENGTH_SIZE)
2675 /* Size of padding portion in the address range info. It must be
2676 aligned to twice the pointer size. */
2677 #define DWARF_ARANGES_PAD_SIZE \
2678 (DWARF_ROUND (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 4, \
2679 DWARF2_ADDR_SIZE * 2) \
2680 - (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 4))
2682 /* Use assembler line directives if available. */
2683 #ifndef DWARF2_ASM_LINE_DEBUG_INFO
2684 #ifdef HAVE_AS_DWARF2_DEBUG_LINE
2685 #define DWARF2_ASM_LINE_DEBUG_INFO 1
2687 #define DWARF2_ASM_LINE_DEBUG_INFO 0
2691 /* Minimum line offset in a special line info. opcode.
2692 This value was chosen to give a reasonable range of values. */
2693 #define DWARF_LINE_BASE -10
2695 /* First special line opcode - leave room for the standard opcodes. */
2696 #define DWARF_LINE_OPCODE_BASE ((int)DW_LNS_set_isa + 1)
2698 /* Range of line offsets in a special line info. opcode. */
2699 #define DWARF_LINE_RANGE (254-DWARF_LINE_OPCODE_BASE+1)
2701 /* Flag that indicates the initial value of the is_stmt_start flag.
2702 In the present implementation, we do not mark any lines as
2703 the beginning of a source statement, because that information
2704 is not made available by the GCC front-end. */
2705 #define DWARF_LINE_DEFAULT_IS_STMT_START 1
2707 /* Maximum number of operations per instruction bundle. */
2708 #ifndef DWARF_LINE_DEFAULT_MAX_OPS_PER_INSN
2709 #define DWARF_LINE_DEFAULT_MAX_OPS_PER_INSN 1
2712 /* This location is used by calc_die_sizes() to keep track
2713 the offset of each DIE within the .debug_info section. */
2714 static unsigned long next_die_offset
;
2716 /* Record the root of the DIE's built for the current compilation unit. */
2717 static GTY(()) dw_die_ref single_comp_unit_die
;
2719 /* A list of type DIEs that have been separated into comdat sections. */
2720 static GTY(()) comdat_type_node
*comdat_type_list
;
2722 /* A list of DIEs with a NULL parent waiting to be relocated. */
2723 static GTY(()) limbo_die_node
*limbo_die_list
;
2725 /* A list of DIEs for which we may have to generate
2726 DW_AT_{,MIPS_}linkage_name once their DECL_ASSEMBLER_NAMEs are set. */
2727 static GTY(()) limbo_die_node
*deferred_asm_name
;
2729 /* Filenames referenced by this compilation unit. */
2730 static GTY((param_is (struct dwarf_file_data
))) htab_t file_table
;
2732 /* A hash table of references to DIE's that describe declarations.
2733 The key is a DECL_UID() which is a unique number identifying each decl. */
2734 static GTY ((param_is (struct die_struct
))) htab_t decl_die_table
;
2736 /* A hash table of references to DIE's that describe COMMON blocks.
2737 The key is DECL_UID() ^ die_parent. */
2738 static GTY ((param_is (struct die_struct
))) htab_t common_block_die_table
;
2740 typedef struct GTY(()) die_arg_entry_struct
{
2746 /* Node of the variable location list. */
2747 struct GTY ((chain_next ("%h.next"))) var_loc_node
{
2748 /* Either NOTE_INSN_VAR_LOCATION, or, for SRA optimized variables,
2749 EXPR_LIST chain. For small bitsizes, bitsize is encoded
2750 in mode of the EXPR_LIST node and first EXPR_LIST operand
2751 is either NOTE_INSN_VAR_LOCATION for a piece with a known
2752 location or NULL for padding. For larger bitsizes,
2753 mode is 0 and first operand is a CONCAT with bitsize
2754 as first CONCAT operand and NOTE_INSN_VAR_LOCATION resp.
2755 NULL as second operand. */
2757 const char * GTY (()) label
;
2758 struct var_loc_node
* GTY (()) next
;
2761 /* Variable location list. */
2762 struct GTY (()) var_loc_list_def
{
2763 struct var_loc_node
* GTY (()) first
;
2765 /* Pointer to the last but one or last element of the
2766 chained list. If the list is empty, both first and
2767 last are NULL, if the list contains just one node
2768 or the last node certainly is not redundant, it points
2769 to the last node, otherwise points to the last but one.
2770 Do not mark it for GC because it is marked through the chain. */
2771 struct var_loc_node
* GTY ((skip ("%h"))) last
;
2773 /* Pointer to the last element before section switch,
2774 if NULL, either sections weren't switched or first
2775 is after section switch. */
2776 struct var_loc_node
* GTY ((skip ("%h"))) last_before_switch
;
2778 /* DECL_UID of the variable decl. */
2779 unsigned int decl_id
;
2781 typedef struct var_loc_list_def var_loc_list
;
2783 /* Call argument location list. */
2784 struct GTY ((chain_next ("%h.next"))) call_arg_loc_node
{
2785 rtx
GTY (()) call_arg_loc_note
;
2786 const char * GTY (()) label
;
2787 tree
GTY (()) block
;
2789 rtx
GTY (()) symbol_ref
;
2790 struct call_arg_loc_node
* GTY (()) next
;
2794 /* Table of decl location linked lists. */
2795 static GTY ((param_is (var_loc_list
))) htab_t decl_loc_table
;
2797 /* Head and tail of call_arg_loc chain. */
2798 static GTY (()) struct call_arg_loc_node
*call_arg_locations
;
2799 static struct call_arg_loc_node
*call_arg_loc_last
;
2801 /* Number of call sites in the current function. */
2802 static int call_site_count
= -1;
2803 /* Number of tail call sites in the current function. */
2804 static int tail_call_site_count
= -1;
2806 /* Vector mapping block numbers to DW_TAG_{lexical_block,inlined_subroutine}
2808 static vec
<dw_die_ref
> block_map
;
2810 /* A cached location list. */
2811 struct GTY (()) cached_dw_loc_list_def
{
2812 /* The DECL_UID of the decl that this entry describes. */
2813 unsigned int decl_id
;
2815 /* The cached location list. */
2816 dw_loc_list_ref loc_list
;
2818 typedef struct cached_dw_loc_list_def cached_dw_loc_list
;
2820 /* Table of cached location lists. */
2821 static GTY ((param_is (cached_dw_loc_list
))) htab_t cached_dw_loc_list_table
;
2823 /* A pointer to the base of a list of references to DIE's that
2824 are uniquely identified by their tag, presence/absence of
2825 children DIE's, and list of attribute/value pairs. */
2826 static GTY((length ("abbrev_die_table_allocated")))
2827 dw_die_ref
*abbrev_die_table
;
2829 /* Number of elements currently allocated for abbrev_die_table. */
2830 static GTY(()) unsigned abbrev_die_table_allocated
;
2832 /* Number of elements in type_die_table currently in use. */
2833 static GTY(()) unsigned abbrev_die_table_in_use
;
2835 /* Size (in elements) of increments by which we may expand the
2836 abbrev_die_table. */
2837 #define ABBREV_DIE_TABLE_INCREMENT 256
2839 /* A global counter for generating labels for line number data. */
2840 static unsigned int line_info_label_num
;
2842 /* The current table to which we should emit line number information
2843 for the current function. This will be set up at the beginning of
2844 assembly for the function. */
2845 static dw_line_info_table
*cur_line_info_table
;
2847 /* The two default tables of line number info. */
2848 static GTY(()) dw_line_info_table
*text_section_line_info
;
2849 static GTY(()) dw_line_info_table
*cold_text_section_line_info
;
2851 /* The set of all non-default tables of line number info. */
2852 static GTY(()) vec
<dw_line_info_table_p
, va_gc
> *separate_line_info
;
2854 /* A flag to tell pubnames/types export if there is an info section to
2856 static bool info_section_emitted
;
2858 /* A pointer to the base of a table that contains a list of publicly
2859 accessible names. */
2860 static GTY (()) vec
<pubname_entry
, va_gc
> *pubname_table
;
2862 /* A pointer to the base of a table that contains a list of publicly
2863 accessible types. */
2864 static GTY (()) vec
<pubname_entry
, va_gc
> *pubtype_table
;
2866 /* A pointer to the base of a table that contains a list of macro
2867 defines/undefines (and file start/end markers). */
2868 static GTY (()) vec
<macinfo_entry
, va_gc
> *macinfo_table
;
2870 /* True if .debug_macinfo or .debug_macros section is going to be
2872 #define have_macinfo \
2873 (debug_info_level >= DINFO_LEVEL_VERBOSE \
2874 && !macinfo_table->is_empty ())
2876 /* Array of dies for which we should generate .debug_ranges info. */
2877 static GTY ((length ("ranges_table_allocated"))) dw_ranges_ref ranges_table
;
2879 /* Number of elements currently allocated for ranges_table. */
2880 static GTY(()) unsigned ranges_table_allocated
;
2882 /* Number of elements in ranges_table currently in use. */
2883 static GTY(()) unsigned ranges_table_in_use
;
2885 /* Array of pairs of labels referenced in ranges_table. */
2886 static GTY ((length ("ranges_by_label_allocated")))
2887 dw_ranges_by_label_ref ranges_by_label
;
2889 /* Number of elements currently allocated for ranges_by_label. */
2890 static GTY(()) unsigned ranges_by_label_allocated
;
2892 /* Number of elements in ranges_by_label currently in use. */
2893 static GTY(()) unsigned ranges_by_label_in_use
;
2895 /* Size (in elements) of increments by which we may expand the
2897 #define RANGES_TABLE_INCREMENT 64
2899 /* Whether we have location lists that need outputting */
2900 static GTY(()) bool have_location_lists
;
2902 /* Unique label counter. */
2903 static GTY(()) unsigned int loclabel_num
;
2905 /* Unique label counter for point-of-call tables. */
2906 static GTY(()) unsigned int poc_label_num
;
2908 /* Record whether the function being analyzed contains inlined functions. */
2909 static int current_function_has_inlines
;
2911 /* The last file entry emitted by maybe_emit_file(). */
2912 static GTY(()) struct dwarf_file_data
* last_emitted_file
;
2914 /* Number of internal labels generated by gen_internal_sym(). */
2915 static GTY(()) int label_num
;
2917 /* Cached result of previous call to lookup_filename. */
2918 static GTY(()) struct dwarf_file_data
* file_table_last_lookup
;
2920 static GTY(()) vec
<die_arg_entry
, va_gc
> *tmpl_value_parm_die_table
;
2922 /* Instances of generic types for which we need to generate debug
2923 info that describe their generic parameters and arguments. That
2924 generation needs to happen once all types are properly laid out so
2925 we do it at the end of compilation. */
2926 static GTY(()) vec
<tree
, va_gc
> *generic_type_instances
;
2928 /* Offset from the "steady-state frame pointer" to the frame base,
2929 within the current function. */
2930 static HOST_WIDE_INT frame_pointer_fb_offset
;
2931 static bool frame_pointer_fb_offset_valid
;
2933 static vec
<dw_die_ref
> base_types
;
2935 /* Forward declarations for functions defined in this file. */
2937 static int is_pseudo_reg (const_rtx
);
2938 static tree
type_main_variant (tree
);
2939 static int is_tagged_type (const_tree
);
2940 static const char *dwarf_tag_name (unsigned);
2941 static const char *dwarf_attr_name (unsigned);
2942 static const char *dwarf_form_name (unsigned);
2943 static tree
decl_ultimate_origin (const_tree
);
2944 static tree
decl_class_context (tree
);
2945 static void add_dwarf_attr (dw_die_ref
, dw_attr_ref
);
2946 static inline enum dw_val_class
AT_class (dw_attr_ref
);
2947 static inline unsigned int AT_index (dw_attr_ref
);
2948 static void add_AT_flag (dw_die_ref
, enum dwarf_attribute
, unsigned);
2949 static inline unsigned AT_flag (dw_attr_ref
);
2950 static void add_AT_int (dw_die_ref
, enum dwarf_attribute
, HOST_WIDE_INT
);
2951 static inline HOST_WIDE_INT
AT_int (dw_attr_ref
);
2952 static void add_AT_unsigned (dw_die_ref
, enum dwarf_attribute
, unsigned HOST_WIDE_INT
);
2953 static inline unsigned HOST_WIDE_INT
AT_unsigned (dw_attr_ref
);
2954 static void add_AT_double (dw_die_ref
, enum dwarf_attribute
,
2955 HOST_WIDE_INT
, unsigned HOST_WIDE_INT
);
2956 static inline void add_AT_vec (dw_die_ref
, enum dwarf_attribute
, unsigned int,
2957 unsigned int, unsigned char *);
2958 static void add_AT_data8 (dw_die_ref
, enum dwarf_attribute
, unsigned char *);
2959 static hashval_t
debug_str_do_hash (const void *);
2960 static int debug_str_eq (const void *, const void *);
2961 static void add_AT_string (dw_die_ref
, enum dwarf_attribute
, const char *);
2962 static inline const char *AT_string (dw_attr_ref
);
2963 static enum dwarf_form
AT_string_form (dw_attr_ref
);
2964 static void add_AT_die_ref (dw_die_ref
, enum dwarf_attribute
, dw_die_ref
);
2965 static void add_AT_specification (dw_die_ref
, dw_die_ref
);
2966 static inline dw_die_ref
AT_ref (dw_attr_ref
);
2967 static inline int AT_ref_external (dw_attr_ref
);
2968 static inline void set_AT_ref_external (dw_attr_ref
, int);
2969 static void add_AT_fde_ref (dw_die_ref
, enum dwarf_attribute
, unsigned);
2970 static void add_AT_loc (dw_die_ref
, enum dwarf_attribute
, dw_loc_descr_ref
);
2971 static inline dw_loc_descr_ref
AT_loc (dw_attr_ref
);
2972 static void add_AT_loc_list (dw_die_ref
, enum dwarf_attribute
,
2974 static inline dw_loc_list_ref
AT_loc_list (dw_attr_ref
);
2975 static addr_table_entry
*add_addr_table_entry (void *, enum ate_kind
);
2976 static void remove_addr_table_entry (addr_table_entry
*);
2977 static void add_AT_addr (dw_die_ref
, enum dwarf_attribute
, rtx
, bool);
2978 static inline rtx
AT_addr (dw_attr_ref
);
2979 static void add_AT_lbl_id (dw_die_ref
, enum dwarf_attribute
, const char *);
2980 static void add_AT_lineptr (dw_die_ref
, enum dwarf_attribute
, const char *);
2981 static void add_AT_macptr (dw_die_ref
, enum dwarf_attribute
, const char *);
2982 static void add_AT_offset (dw_die_ref
, enum dwarf_attribute
,
2983 unsigned HOST_WIDE_INT
);
2984 static void add_AT_range_list (dw_die_ref
, enum dwarf_attribute
,
2985 unsigned long, bool);
2986 static inline const char *AT_lbl (dw_attr_ref
);
2987 static dw_attr_ref
get_AT (dw_die_ref
, enum dwarf_attribute
);
2988 static const char *get_AT_low_pc (dw_die_ref
);
2989 static const char *get_AT_hi_pc (dw_die_ref
);
2990 static const char *get_AT_string (dw_die_ref
, enum dwarf_attribute
);
2991 static int get_AT_flag (dw_die_ref
, enum dwarf_attribute
);
2992 static unsigned get_AT_unsigned (dw_die_ref
, enum dwarf_attribute
);
2993 static inline dw_die_ref
get_AT_ref (dw_die_ref
, enum dwarf_attribute
);
2994 static bool is_cxx (void);
2995 static bool is_fortran (void);
2996 static bool is_ada (void);
2997 static void remove_AT (dw_die_ref
, enum dwarf_attribute
);
2998 static void remove_child_TAG (dw_die_ref
, enum dwarf_tag
);
2999 static void add_child_die (dw_die_ref
, dw_die_ref
);
3000 static dw_die_ref
new_die (enum dwarf_tag
, dw_die_ref
, tree
);
3001 static dw_die_ref
lookup_type_die (tree
);
3002 static dw_die_ref
strip_naming_typedef (tree
, dw_die_ref
);
3003 static dw_die_ref
lookup_type_die_strip_naming_typedef (tree
);
3004 static void equate_type_number_to_die (tree
, dw_die_ref
);
3005 static hashval_t
decl_die_table_hash (const void *);
3006 static int decl_die_table_eq (const void *, const void *);
3007 static dw_die_ref
lookup_decl_die (tree
);
3008 static hashval_t
common_block_die_table_hash (const void *);
3009 static int common_block_die_table_eq (const void *, const void *);
3010 static hashval_t
decl_loc_table_hash (const void *);
3011 static int decl_loc_table_eq (const void *, const void *);
3012 static var_loc_list
*lookup_decl_loc (const_tree
);
3013 static void equate_decl_number_to_die (tree
, dw_die_ref
);
3014 static struct var_loc_node
*add_var_loc_to_decl (tree
, rtx
, const char *);
3015 static void print_spaces (FILE *);
3016 static void print_die (dw_die_ref
, FILE *);
3017 static dw_die_ref
push_new_compile_unit (dw_die_ref
, dw_die_ref
);
3018 static dw_die_ref
pop_compile_unit (dw_die_ref
);
3019 static void loc_checksum (dw_loc_descr_ref
, struct md5_ctx
*);
3020 static void attr_checksum (dw_attr_ref
, struct md5_ctx
*, int *);
3021 static void die_checksum (dw_die_ref
, struct md5_ctx
*, int *);
3022 static void checksum_sleb128 (HOST_WIDE_INT
, struct md5_ctx
*);
3023 static void checksum_uleb128 (unsigned HOST_WIDE_INT
, struct md5_ctx
*);
3024 static void loc_checksum_ordered (dw_loc_descr_ref
, struct md5_ctx
*);
3025 static void attr_checksum_ordered (enum dwarf_tag
, dw_attr_ref
,
3026 struct md5_ctx
*, int *);
3027 struct checksum_attributes
;
3028 static void collect_checksum_attributes (struct checksum_attributes
*, dw_die_ref
);
3029 static void die_checksum_ordered (dw_die_ref
, struct md5_ctx
*, int *);
3030 static void checksum_die_context (dw_die_ref
, struct md5_ctx
*);
3031 static void generate_type_signature (dw_die_ref
, comdat_type_node
*);
3032 static int same_loc_p (dw_loc_descr_ref
, dw_loc_descr_ref
, int *);
3033 static int same_dw_val_p (const dw_val_node
*, const dw_val_node
*, int *);
3034 static int same_attr_p (dw_attr_ref
, dw_attr_ref
, int *);
3035 static int same_die_p (dw_die_ref
, dw_die_ref
, int *);
3036 static int same_die_p_wrap (dw_die_ref
, dw_die_ref
);
3037 static void compute_section_prefix (dw_die_ref
);
3038 static int is_type_die (dw_die_ref
);
3039 static int is_comdat_die (dw_die_ref
);
3040 static int is_symbol_die (dw_die_ref
);
3041 static inline bool is_template_instantiation (dw_die_ref
);
3042 static void assign_symbol_names (dw_die_ref
);
3043 static void break_out_includes (dw_die_ref
);
3044 static int is_declaration_die (dw_die_ref
);
3045 static int should_move_die_to_comdat (dw_die_ref
);
3046 static dw_die_ref
clone_as_declaration (dw_die_ref
);
3047 static dw_die_ref
clone_die (dw_die_ref
);
3048 static dw_die_ref
clone_tree (dw_die_ref
);
3049 static dw_die_ref
copy_declaration_context (dw_die_ref
, dw_die_ref
);
3050 static void generate_skeleton_ancestor_tree (skeleton_chain_node
*);
3051 static void generate_skeleton_bottom_up (skeleton_chain_node
*);
3052 static dw_die_ref
generate_skeleton (dw_die_ref
);
3053 static dw_die_ref
remove_child_or_replace_with_skeleton (dw_die_ref
,
3056 static void break_out_comdat_types (dw_die_ref
);
3057 static void copy_decls_for_unworthy_types (dw_die_ref
);
3059 static void add_sibling_attributes (dw_die_ref
);
3060 static void output_location_lists (dw_die_ref
);
3061 static int constant_size (unsigned HOST_WIDE_INT
);
3062 static unsigned long size_of_die (dw_die_ref
);
3063 static void calc_die_sizes (dw_die_ref
);
3064 static void calc_base_type_die_sizes (void);
3065 static void mark_dies (dw_die_ref
);
3066 static void unmark_dies (dw_die_ref
);
3067 static void unmark_all_dies (dw_die_ref
);
3068 static unsigned long size_of_pubnames (vec
<pubname_entry
, va_gc
> *);
3069 static unsigned long size_of_aranges (void);
3070 static enum dwarf_form
value_format (dw_attr_ref
);
3071 static void output_value_format (dw_attr_ref
);
3072 static void output_abbrev_section (void);
3073 static void output_die_abbrevs (unsigned long, dw_die_ref
);
3074 static void output_die_symbol (dw_die_ref
);
3075 static void output_die (dw_die_ref
);
3076 static void output_compilation_unit_header (void);
3077 static void output_comp_unit (dw_die_ref
, int);
3078 static void output_comdat_type_unit (comdat_type_node
*);
3079 static const char *dwarf2_name (tree
, int);
3080 static void add_pubname (tree
, dw_die_ref
);
3081 static void add_enumerator_pubname (const char *, dw_die_ref
);
3082 static void add_pubname_string (const char *, dw_die_ref
);
3083 static void add_pubtype (tree
, dw_die_ref
);
3084 static void output_pubnames (vec
<pubname_entry
, va_gc
> *);
3085 static void output_aranges (unsigned long);
3086 static unsigned int add_ranges_num (int);
3087 static unsigned int add_ranges (const_tree
);
3088 static void add_ranges_by_labels (dw_die_ref
, const char *, const char *,
3090 static void output_ranges (void);
3091 static dw_line_info_table
*new_line_info_table (void);
3092 static void output_line_info (bool);
3093 static void output_file_names (void);
3094 static dw_die_ref
base_type_die (tree
);
3095 static int is_base_type (tree
);
3096 static dw_die_ref
subrange_type_die (tree
, tree
, tree
, dw_die_ref
);
3097 static dw_die_ref
modified_type_die (tree
, int, int, dw_die_ref
);
3098 static dw_die_ref
generic_parameter_die (tree
, tree
, bool, dw_die_ref
);
3099 static dw_die_ref
template_parameter_pack_die (tree
, tree
, dw_die_ref
);
3100 static int type_is_enum (const_tree
);
3101 static unsigned int dbx_reg_number (const_rtx
);
3102 static void add_loc_descr_op_piece (dw_loc_descr_ref
*, int);
3103 static dw_loc_descr_ref
reg_loc_descriptor (rtx
, enum var_init_status
);
3104 static dw_loc_descr_ref
one_reg_loc_descriptor (unsigned int,
3105 enum var_init_status
);
3106 static dw_loc_descr_ref
multiple_reg_loc_descriptor (rtx
, rtx
,
3107 enum var_init_status
);
3108 static dw_loc_descr_ref
based_loc_descr (rtx
, HOST_WIDE_INT
,
3109 enum var_init_status
);
3110 static int is_based_loc (const_rtx
);
3111 static int resolve_one_addr (rtx
*, void *);
3112 static dw_loc_descr_ref
concat_loc_descriptor (rtx
, rtx
,
3113 enum var_init_status
);
3114 static dw_loc_descr_ref
loc_descriptor (rtx
, enum machine_mode mode
,
3115 enum var_init_status
);
3116 static dw_loc_list_ref
loc_list_from_tree (tree
, int);
3117 static dw_loc_descr_ref
loc_descriptor_from_tree (tree
, int);
3118 static HOST_WIDE_INT
ceiling (HOST_WIDE_INT
, unsigned int);
3119 static tree
field_type (const_tree
);
3120 static unsigned int simple_type_align_in_bits (const_tree
);
3121 static unsigned int simple_decl_align_in_bits (const_tree
);
3122 static unsigned HOST_WIDE_INT
simple_type_size_in_bits (const_tree
);
3123 static HOST_WIDE_INT
field_byte_offset (const_tree
);
3124 static void add_AT_location_description (dw_die_ref
, enum dwarf_attribute
,
3126 static void add_data_member_location_attribute (dw_die_ref
, tree
);
3127 static bool add_const_value_attribute (dw_die_ref
, rtx
);
3128 static void insert_int (HOST_WIDE_INT
, unsigned, unsigned char *);
3129 static void insert_double (double_int
, unsigned char *);
3130 static void insert_float (const_rtx
, unsigned char *);
3131 static rtx
rtl_for_decl_location (tree
);
3132 static bool add_location_or_const_value_attribute (dw_die_ref
, tree
, bool,
3133 enum dwarf_attribute
);
3134 static bool tree_add_const_value_attribute (dw_die_ref
, tree
);
3135 static bool tree_add_const_value_attribute_for_decl (dw_die_ref
, tree
);
3136 static void add_name_attribute (dw_die_ref
, const char *);
3137 static void add_gnat_descriptive_type_attribute (dw_die_ref
, tree
, dw_die_ref
);
3138 static void add_comp_dir_attribute (dw_die_ref
);
3139 static void add_bound_info (dw_die_ref
, enum dwarf_attribute
, tree
);
3140 static void add_subscript_info (dw_die_ref
, tree
, bool);
3141 static void add_byte_size_attribute (dw_die_ref
, tree
);
3142 static void add_bit_offset_attribute (dw_die_ref
, tree
);
3143 static void add_bit_size_attribute (dw_die_ref
, tree
);
3144 static void add_prototyped_attribute (dw_die_ref
, tree
);
3145 static dw_die_ref
add_abstract_origin_attribute (dw_die_ref
, tree
);
3146 static void add_pure_or_virtual_attribute (dw_die_ref
, tree
);
3147 static void add_src_coords_attributes (dw_die_ref
, tree
);
3148 static void add_name_and_src_coords_attributes (dw_die_ref
, tree
);
3149 static void push_decl_scope (tree
);
3150 static void pop_decl_scope (void);
3151 static dw_die_ref
scope_die_for (tree
, dw_die_ref
);
3152 static inline int local_scope_p (dw_die_ref
);
3153 static inline int class_scope_p (dw_die_ref
);
3154 static inline int class_or_namespace_scope_p (dw_die_ref
);
3155 static void add_type_attribute (dw_die_ref
, tree
, int, int, dw_die_ref
);
3156 static void add_calling_convention_attribute (dw_die_ref
, tree
);
3157 static const char *type_tag (const_tree
);
3158 static tree
member_declared_type (const_tree
);
3160 static const char *decl_start_label (tree
);
3162 static void gen_array_type_die (tree
, dw_die_ref
);
3163 static void gen_descr_array_type_die (tree
, struct array_descr_info
*, dw_die_ref
);
3165 static void gen_entry_point_die (tree
, dw_die_ref
);
3167 static dw_die_ref
gen_enumeration_type_die (tree
, dw_die_ref
);
3168 static dw_die_ref
gen_formal_parameter_die (tree
, tree
, bool, dw_die_ref
);
3169 static dw_die_ref
gen_formal_parameter_pack_die (tree
, tree
, dw_die_ref
, tree
*);
3170 static void gen_unspecified_parameters_die (tree
, dw_die_ref
);
3171 static void gen_formal_types_die (tree
, dw_die_ref
);
3172 static void gen_subprogram_die (tree
, dw_die_ref
);
3173 static void gen_variable_die (tree
, tree
, dw_die_ref
);
3174 static void gen_const_die (tree
, dw_die_ref
);
3175 static void gen_label_die (tree
, dw_die_ref
);
3176 static void gen_lexical_block_die (tree
, dw_die_ref
, int);
3177 static void gen_inlined_subroutine_die (tree
, dw_die_ref
, int);
3178 static void gen_field_die (tree
, dw_die_ref
);
3179 static void gen_ptr_to_mbr_type_die (tree
, dw_die_ref
);
3180 static dw_die_ref
gen_compile_unit_die (const char *);
3181 static void gen_inheritance_die (tree
, tree
, dw_die_ref
);
3182 static void gen_member_die (tree
, dw_die_ref
);
3183 static void gen_struct_or_union_type_die (tree
, dw_die_ref
,
3184 enum debug_info_usage
);
3185 static void gen_subroutine_type_die (tree
, dw_die_ref
);
3186 static void gen_typedef_die (tree
, dw_die_ref
);
3187 static void gen_type_die (tree
, dw_die_ref
);
3188 static void gen_block_die (tree
, dw_die_ref
, int);
3189 static void decls_for_scope (tree
, dw_die_ref
, int);
3190 static inline int is_redundant_typedef (const_tree
);
3191 static bool is_naming_typedef_decl (const_tree
);
3192 static inline dw_die_ref
get_context_die (tree
);
3193 static void gen_namespace_die (tree
, dw_die_ref
);
3194 static dw_die_ref
gen_namelist_decl (tree
, dw_die_ref
, tree
);
3195 static dw_die_ref
gen_decl_die (tree
, tree
, dw_die_ref
);
3196 static dw_die_ref
force_decl_die (tree
);
3197 static dw_die_ref
force_type_die (tree
);
3198 static dw_die_ref
setup_namespace_context (tree
, dw_die_ref
);
3199 static dw_die_ref
declare_in_namespace (tree
, dw_die_ref
);
3200 static struct dwarf_file_data
* lookup_filename (const char *);
3201 static void retry_incomplete_types (void);
3202 static void gen_type_die_for_member (tree
, tree
, dw_die_ref
);
3203 static void gen_generic_params_dies (tree
);
3204 static void gen_tagged_type_die (tree
, dw_die_ref
, enum debug_info_usage
);
3205 static void gen_type_die_with_usage (tree
, dw_die_ref
, enum debug_info_usage
);
3206 static void splice_child_die (dw_die_ref
, dw_die_ref
);
3207 static int file_info_cmp (const void *, const void *);
3208 static dw_loc_list_ref
new_loc_list (dw_loc_descr_ref
, const char *,
3209 const char *, const char *);
3210 static void output_loc_list (dw_loc_list_ref
);
3211 static char *gen_internal_sym (const char *);
3212 static bool want_pubnames (void);
3214 static void prune_unmark_dies (dw_die_ref
);
3215 static void prune_unused_types_mark_generic_parms_dies (dw_die_ref
);
3216 static void prune_unused_types_mark (dw_die_ref
, int);
3217 static void prune_unused_types_walk (dw_die_ref
);
3218 static void prune_unused_types_walk_attribs (dw_die_ref
);
3219 static void prune_unused_types_prune (dw_die_ref
);
3220 static void prune_unused_types (void);
3221 static int maybe_emit_file (struct dwarf_file_data
*fd
);
3222 static inline const char *AT_vms_delta1 (dw_attr_ref
);
3223 static inline const char *AT_vms_delta2 (dw_attr_ref
);
3224 static inline void add_AT_vms_delta (dw_die_ref
, enum dwarf_attribute
,
3225 const char *, const char *);
3226 static void append_entry_to_tmpl_value_parm_die_table (dw_die_ref
, tree
);
3227 static void gen_remaining_tmpl_value_param_die_attribute (void);
3228 static bool generic_type_p (tree
);
3229 static void schedule_generic_params_dies_gen (tree t
);
3230 static void gen_scheduled_generic_parms_dies (void);
3232 static const char *comp_dir_string (void);
3234 static hashval_t
hash_loc_operands (dw_loc_descr_ref
, hashval_t
);
3236 /* enum for tracking thread-local variables whose address is really an offset
3237 relative to the TLS pointer, which will need link-time relocation, but will
3238 not need relocation by the DWARF consumer. */
3246 /* Return the operator to use for an address of a variable. For dtprel_true, we
3247 use DW_OP_const*. For regular variables, which need both link-time
3248 relocation and consumer-level relocation (e.g., to account for shared objects
3249 loaded at a random address), we use DW_OP_addr*. */
3251 static inline enum dwarf_location_atom
3252 dw_addr_op (enum dtprel_bool dtprel
)
3254 if (dtprel
== dtprel_true
)
3255 return (dwarf_split_debug_info
? DW_OP_GNU_const_index
3256 : (DWARF2_ADDR_SIZE
== 4 ? DW_OP_const4u
: DW_OP_const8u
));
3258 return dwarf_split_debug_info
? DW_OP_GNU_addr_index
: DW_OP_addr
;
3261 /* Return a pointer to a newly allocated address location description. If
3262 dwarf_split_debug_info is true, then record the address with the appropriate
3264 static inline dw_loc_descr_ref
3265 new_addr_loc_descr (rtx addr
, enum dtprel_bool dtprel
)
3267 dw_loc_descr_ref ref
= new_loc_descr (dw_addr_op (dtprel
), 0, 0);
3269 ref
->dw_loc_oprnd1
.val_class
= dw_val_class_addr
;
3270 ref
->dw_loc_oprnd1
.v
.val_addr
= addr
;
3271 ref
->dtprel
= dtprel
;
3272 if (dwarf_split_debug_info
)
3273 ref
->dw_loc_oprnd1
.val_entry
3274 = add_addr_table_entry (addr
,
3275 dtprel
? ate_kind_rtx_dtprel
: ate_kind_rtx
);
3277 ref
->dw_loc_oprnd1
.val_entry
= NULL
;
3282 /* Section names used to hold DWARF debugging information. */
3284 #ifndef DEBUG_INFO_SECTION
3285 #define DEBUG_INFO_SECTION ".debug_info"
3287 #ifndef DEBUG_DWO_INFO_SECTION
3288 #define DEBUG_DWO_INFO_SECTION ".debug_info.dwo"
3290 #ifndef DEBUG_ABBREV_SECTION
3291 #define DEBUG_ABBREV_SECTION ".debug_abbrev"
3293 #ifndef DEBUG_DWO_ABBREV_SECTION
3294 #define DEBUG_DWO_ABBREV_SECTION ".debug_abbrev.dwo"
3296 #ifndef DEBUG_ARANGES_SECTION
3297 #define DEBUG_ARANGES_SECTION ".debug_aranges"
3299 #ifndef DEBUG_ADDR_SECTION
3300 #define DEBUG_ADDR_SECTION ".debug_addr"
3302 #ifndef DEBUG_NORM_MACINFO_SECTION
3303 #define DEBUG_NORM_MACINFO_SECTION ".debug_macinfo"
3305 #ifndef DEBUG_DWO_MACINFO_SECTION
3306 #define DEBUG_DWO_MACINFO_SECTION ".debug_macinfo.dwo"
3308 #ifndef DEBUG_MACINFO_SECTION
3309 #define DEBUG_MACINFO_SECTION \
3310 (!dwarf_split_debug_info \
3311 ? (DEBUG_NORM_MACINFO_SECTION) : (DEBUG_DWO_MACINFO_SECTION))
3313 #ifndef DEBUG_NORM_MACRO_SECTION
3314 #define DEBUG_NORM_MACRO_SECTION ".debug_macro"
3316 #ifndef DEBUG_DWO_MACRO_SECTION
3317 #define DEBUG_DWO_MACRO_SECTION ".debug_macro.dwo"
3319 #ifndef DEBUG_MACRO_SECTION
3320 #define DEBUG_MACRO_SECTION \
3321 (!dwarf_split_debug_info \
3322 ? (DEBUG_NORM_MACRO_SECTION) : (DEBUG_DWO_MACRO_SECTION))
3324 #ifndef DEBUG_LINE_SECTION
3325 #define DEBUG_LINE_SECTION ".debug_line"
3327 #ifndef DEBUG_DWO_LINE_SECTION
3328 #define DEBUG_DWO_LINE_SECTION ".debug_line.dwo"
3330 #ifndef DEBUG_LOC_SECTION
3331 #define DEBUG_LOC_SECTION ".debug_loc"
3333 #ifndef DEBUG_DWO_LOC_SECTION
3334 #define DEBUG_DWO_LOC_SECTION ".debug_loc.dwo"
3336 #ifndef DEBUG_PUBNAMES_SECTION
3337 #define DEBUG_PUBNAMES_SECTION \
3338 ((debug_generate_pub_sections == 2) \
3339 ? ".debug_gnu_pubnames" : ".debug_pubnames")
3341 #ifndef DEBUG_PUBTYPES_SECTION
3342 #define DEBUG_PUBTYPES_SECTION \
3343 ((debug_generate_pub_sections == 2) \
3344 ? ".debug_gnu_pubtypes" : ".debug_pubtypes")
3346 #define DEBUG_NORM_STR_OFFSETS_SECTION ".debug_str_offsets"
3347 #define DEBUG_DWO_STR_OFFSETS_SECTION ".debug_str_offsets.dwo"
3348 #ifndef DEBUG_STR_OFFSETS_SECTION
3349 #define DEBUG_STR_OFFSETS_SECTION \
3350 (!dwarf_split_debug_info \
3351 ? (DEBUG_NORM_STR_OFFSETS_SECTION) : (DEBUG_DWO_STR_OFFSETS_SECTION))
3353 #ifndef DEBUG_STR_DWO_SECTION
3354 #define DEBUG_STR_DWO_SECTION ".debug_str.dwo"
3356 #ifndef DEBUG_STR_SECTION
3357 #define DEBUG_STR_SECTION ".debug_str"
3359 #ifndef DEBUG_RANGES_SECTION
3360 #define DEBUG_RANGES_SECTION ".debug_ranges"
3363 /* Standard ELF section names for compiled code and data. */
3364 #ifndef TEXT_SECTION_NAME
3365 #define TEXT_SECTION_NAME ".text"
3368 /* Section flags for .debug_macinfo/.debug_macro section. */
3369 #define DEBUG_MACRO_SECTION_FLAGS \
3370 (dwarf_split_debug_info ? SECTION_DEBUG | SECTION_EXCLUDE : SECTION_DEBUG)
3372 /* Section flags for .debug_str section. */
3373 #define DEBUG_STR_SECTION_FLAGS \
3374 (HAVE_GAS_SHF_MERGE && flag_merge_debug_strings \
3375 ? SECTION_DEBUG | SECTION_MERGE | SECTION_STRINGS | 1 \
3378 /* Section flags for .debug_str.dwo section. */
3379 #define DEBUG_STR_DWO_SECTION_FLAGS (SECTION_DEBUG | SECTION_EXCLUDE)
3381 /* Labels we insert at beginning sections we can reference instead of
3382 the section names themselves. */
3384 #ifndef TEXT_SECTION_LABEL
3385 #define TEXT_SECTION_LABEL "Ltext"
3387 #ifndef COLD_TEXT_SECTION_LABEL
3388 #define COLD_TEXT_SECTION_LABEL "Ltext_cold"
3390 #ifndef DEBUG_LINE_SECTION_LABEL
3391 #define DEBUG_LINE_SECTION_LABEL "Ldebug_line"
3393 #ifndef DEBUG_SKELETON_LINE_SECTION_LABEL
3394 #define DEBUG_SKELETON_LINE_SECTION_LABEL "Lskeleton_debug_line"
3396 #ifndef DEBUG_INFO_SECTION_LABEL
3397 #define DEBUG_INFO_SECTION_LABEL "Ldebug_info"
3399 #ifndef DEBUG_SKELETON_INFO_SECTION_LABEL
3400 #define DEBUG_SKELETON_INFO_SECTION_LABEL "Lskeleton_debug_info"
3402 #ifndef DEBUG_ABBREV_SECTION_LABEL
3403 #define DEBUG_ABBREV_SECTION_LABEL "Ldebug_abbrev"
3405 #ifndef DEBUG_SKELETON_ABBREV_SECTION_LABEL
3406 #define DEBUG_SKELETON_ABBREV_SECTION_LABEL "Lskeleton_debug_abbrev"
3408 #ifndef DEBUG_ADDR_SECTION_LABEL
3409 #define DEBUG_ADDR_SECTION_LABEL "Ldebug_addr"
3411 #ifndef DEBUG_LOC_SECTION_LABEL
3412 #define DEBUG_LOC_SECTION_LABEL "Ldebug_loc"
3414 #ifndef DEBUG_RANGES_SECTION_LABEL
3415 #define DEBUG_RANGES_SECTION_LABEL "Ldebug_ranges"
3417 #ifndef DEBUG_MACINFO_SECTION_LABEL
3418 #define DEBUG_MACINFO_SECTION_LABEL "Ldebug_macinfo"
3420 #ifndef DEBUG_MACRO_SECTION_LABEL
3421 #define DEBUG_MACRO_SECTION_LABEL "Ldebug_macro"
3423 #define SKELETON_COMP_DIE_ABBREV 1
3424 #define SKELETON_TYPE_DIE_ABBREV 2
3426 /* Definitions of defaults for formats and names of various special
3427 (artificial) labels which may be generated within this file (when the -g
3428 options is used and DWARF2_DEBUGGING_INFO is in effect.
3429 If necessary, these may be overridden from within the tm.h file, but
3430 typically, overriding these defaults is unnecessary. */
3432 static char text_end_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
3433 static char text_section_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
3434 static char cold_text_section_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
3435 static char cold_end_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
3436 static char abbrev_section_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
3437 static char debug_info_section_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
3438 static char debug_skeleton_info_section_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
3439 static char debug_skeleton_abbrev_section_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
3440 static char debug_line_section_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
3441 static char debug_addr_section_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
3442 static char debug_skeleton_line_section_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
3443 static char macinfo_section_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
3444 static char loc_section_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
3445 static char ranges_section_label
[2 * MAX_ARTIFICIAL_LABEL_BYTES
];
3447 #ifndef TEXT_END_LABEL
3448 #define TEXT_END_LABEL "Letext"
3450 #ifndef COLD_END_LABEL
3451 #define COLD_END_LABEL "Letext_cold"
3453 #ifndef BLOCK_BEGIN_LABEL
3454 #define BLOCK_BEGIN_LABEL "LBB"
3456 #ifndef BLOCK_END_LABEL
3457 #define BLOCK_END_LABEL "LBE"
3459 #ifndef LINE_CODE_LABEL
3460 #define LINE_CODE_LABEL "LM"
3464 /* Return the root of the DIE's built for the current compilation unit. */
3466 comp_unit_die (void)
3468 if (!single_comp_unit_die
)
3469 single_comp_unit_die
= gen_compile_unit_die (NULL
);
3470 return single_comp_unit_die
;
3473 /* We allow a language front-end to designate a function that is to be
3474 called to "demangle" any name before it is put into a DIE. */
3476 static const char *(*demangle_name_func
) (const char *);
3479 dwarf2out_set_demangle_name_func (const char *(*func
) (const char *))
3481 demangle_name_func
= func
;
3484 /* Test if rtl node points to a pseudo register. */
3487 is_pseudo_reg (const_rtx rtl
)
3489 return ((REG_P (rtl
) && REGNO (rtl
) >= FIRST_PSEUDO_REGISTER
)
3490 || (GET_CODE (rtl
) == SUBREG
3491 && REGNO (SUBREG_REG (rtl
)) >= FIRST_PSEUDO_REGISTER
));
3494 /* Return a reference to a type, with its const and volatile qualifiers
3498 type_main_variant (tree type
)
3500 type
= TYPE_MAIN_VARIANT (type
);
3502 /* ??? There really should be only one main variant among any group of
3503 variants of a given type (and all of the MAIN_VARIANT values for all
3504 members of the group should point to that one type) but sometimes the C
3505 front-end messes this up for array types, so we work around that bug
3507 if (TREE_CODE (type
) == ARRAY_TYPE
)
3508 while (type
!= TYPE_MAIN_VARIANT (type
))
3509 type
= TYPE_MAIN_VARIANT (type
);
3514 /* Return nonzero if the given type node represents a tagged type. */
3517 is_tagged_type (const_tree type
)
3519 enum tree_code code
= TREE_CODE (type
);
3521 return (code
== RECORD_TYPE
|| code
== UNION_TYPE
3522 || code
== QUAL_UNION_TYPE
|| code
== ENUMERAL_TYPE
);
3525 /* Set label to debug_info_section_label + die_offset of a DIE reference. */
3528 get_ref_die_offset_label (char *label
, dw_die_ref ref
)
3530 sprintf (label
, "%s+%ld", debug_info_section_label
, ref
->die_offset
);
3533 /* Return die_offset of a DIE reference to a base type. */
3535 static unsigned long int
3536 get_base_type_offset (dw_die_ref ref
)
3538 if (ref
->die_offset
)
3539 return ref
->die_offset
;
3540 if (comp_unit_die ()->die_abbrev
)
3542 calc_base_type_die_sizes ();
3543 gcc_assert (ref
->die_offset
);
3545 return ref
->die_offset
;
3548 /* Return die_offset of a DIE reference other than base type. */
3550 static unsigned long int
3551 get_ref_die_offset (dw_die_ref ref
)
3553 gcc_assert (ref
->die_offset
);
3554 return ref
->die_offset
;
3557 /* Convert a DIE tag into its string name. */
3560 dwarf_tag_name (unsigned int tag
)
3562 const char *name
= get_DW_TAG_name (tag
);
3567 return "DW_TAG_<unknown>";
3570 /* Convert a DWARF attribute code into its string name. */
3573 dwarf_attr_name (unsigned int attr
)
3579 #if VMS_DEBUGGING_INFO
3580 case DW_AT_HP_prologue
:
3581 return "DW_AT_HP_prologue";
3583 case DW_AT_MIPS_loop_unroll_factor
:
3584 return "DW_AT_MIPS_loop_unroll_factor";
3587 #if VMS_DEBUGGING_INFO
3588 case DW_AT_HP_epilogue
:
3589 return "DW_AT_HP_epilogue";
3591 case DW_AT_MIPS_stride
:
3592 return "DW_AT_MIPS_stride";
3596 name
= get_DW_AT_name (attr
);
3601 return "DW_AT_<unknown>";
3604 /* Convert a DWARF value form code into its string name. */
3607 dwarf_form_name (unsigned int form
)
3609 const char *name
= get_DW_FORM_name (form
);
3614 return "DW_FORM_<unknown>";
3617 /* Determine the "ultimate origin" of a decl. The decl may be an inlined
3618 instance of an inlined instance of a decl which is local to an inline
3619 function, so we have to trace all of the way back through the origin chain
3620 to find out what sort of node actually served as the original seed for the
3624 decl_ultimate_origin (const_tree decl
)
3626 if (!CODE_CONTAINS_STRUCT (TREE_CODE (decl
), TS_DECL_COMMON
))
3629 /* output_inline_function sets DECL_ABSTRACT_ORIGIN for all the
3630 nodes in the function to point to themselves; ignore that if
3631 we're trying to output the abstract instance of this function. */
3632 if (DECL_ABSTRACT (decl
) && DECL_ABSTRACT_ORIGIN (decl
) == decl
)
3635 /* Since the DECL_ABSTRACT_ORIGIN for a DECL is supposed to be the
3636 most distant ancestor, this should never happen. */
3637 gcc_assert (!DECL_FROM_INLINE (DECL_ORIGIN (decl
)));
3639 return DECL_ABSTRACT_ORIGIN (decl
);
3642 /* Get the class to which DECL belongs, if any. In g++, the DECL_CONTEXT
3643 of a virtual function may refer to a base class, so we check the 'this'
3647 decl_class_context (tree decl
)
3649 tree context
= NULL_TREE
;
3651 if (TREE_CODE (decl
) != FUNCTION_DECL
|| ! DECL_VINDEX (decl
))
3652 context
= DECL_CONTEXT (decl
);
3654 context
= TYPE_MAIN_VARIANT
3655 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl
)))));
3657 if (context
&& !TYPE_P (context
))
3658 context
= NULL_TREE
;
3663 /* Add an attribute/value pair to a DIE. */
3666 add_dwarf_attr (dw_die_ref die
, dw_attr_ref attr
)
3668 /* Maybe this should be an assert? */
3672 vec_safe_reserve (die
->die_attr
, 1);
3673 vec_safe_push (die
->die_attr
, *attr
);
3676 static inline enum dw_val_class
3677 AT_class (dw_attr_ref a
)
3679 return a
->dw_attr_val
.val_class
;
3682 /* Return the index for any attribute that will be referenced with a
3683 DW_FORM_GNU_addr_index or DW_FORM_GNU_str_index. String indices
3684 are stored in dw_attr_val.v.val_str for reference counting
3687 static inline unsigned int
3688 AT_index (dw_attr_ref a
)
3690 if (AT_class (a
) == dw_val_class_str
)
3691 return a
->dw_attr_val
.v
.val_str
->index
;
3692 else if (a
->dw_attr_val
.val_entry
!= NULL
)
3693 return a
->dw_attr_val
.val_entry
->index
;
3697 /* Add a flag value attribute to a DIE. */
3700 add_AT_flag (dw_die_ref die
, enum dwarf_attribute attr_kind
, unsigned int flag
)
3704 attr
.dw_attr
= attr_kind
;
3705 attr
.dw_attr_val
.val_class
= dw_val_class_flag
;
3706 attr
.dw_attr_val
.val_entry
= NULL
;
3707 attr
.dw_attr_val
.v
.val_flag
= flag
;
3708 add_dwarf_attr (die
, &attr
);
3711 static inline unsigned
3712 AT_flag (dw_attr_ref a
)
3714 gcc_assert (a
&& AT_class (a
) == dw_val_class_flag
);
3715 return a
->dw_attr_val
.v
.val_flag
;
3718 /* Add a signed integer attribute value to a DIE. */
3721 add_AT_int (dw_die_ref die
, enum dwarf_attribute attr_kind
, HOST_WIDE_INT int_val
)
3725 attr
.dw_attr
= attr_kind
;
3726 attr
.dw_attr_val
.val_class
= dw_val_class_const
;
3727 attr
.dw_attr_val
.val_entry
= NULL
;
3728 attr
.dw_attr_val
.v
.val_int
= int_val
;
3729 add_dwarf_attr (die
, &attr
);
3732 static inline HOST_WIDE_INT
3733 AT_int (dw_attr_ref a
)
3735 gcc_assert (a
&& AT_class (a
) == dw_val_class_const
);
3736 return a
->dw_attr_val
.v
.val_int
;
3739 /* Add an unsigned integer attribute value to a DIE. */
3742 add_AT_unsigned (dw_die_ref die
, enum dwarf_attribute attr_kind
,
3743 unsigned HOST_WIDE_INT unsigned_val
)
3747 attr
.dw_attr
= attr_kind
;
3748 attr
.dw_attr_val
.val_class
= dw_val_class_unsigned_const
;
3749 attr
.dw_attr_val
.val_entry
= NULL
;
3750 attr
.dw_attr_val
.v
.val_unsigned
= unsigned_val
;
3751 add_dwarf_attr (die
, &attr
);
3754 static inline unsigned HOST_WIDE_INT
3755 AT_unsigned (dw_attr_ref a
)
3757 gcc_assert (a
&& AT_class (a
) == dw_val_class_unsigned_const
);
3758 return a
->dw_attr_val
.v
.val_unsigned
;
3761 /* Add an unsigned double integer attribute value to a DIE. */
3764 add_AT_double (dw_die_ref die
, enum dwarf_attribute attr_kind
,
3765 HOST_WIDE_INT high
, unsigned HOST_WIDE_INT low
)
3769 attr
.dw_attr
= attr_kind
;
3770 attr
.dw_attr_val
.val_class
= dw_val_class_const_double
;
3771 attr
.dw_attr_val
.val_entry
= NULL
;
3772 attr
.dw_attr_val
.v
.val_double
.high
= high
;
3773 attr
.dw_attr_val
.v
.val_double
.low
= low
;
3774 add_dwarf_attr (die
, &attr
);
3777 /* Add a floating point attribute value to a DIE and return it. */
3780 add_AT_vec (dw_die_ref die
, enum dwarf_attribute attr_kind
,
3781 unsigned int length
, unsigned int elt_size
, unsigned char *array
)
3785 attr
.dw_attr
= attr_kind
;
3786 attr
.dw_attr_val
.val_class
= dw_val_class_vec
;
3787 attr
.dw_attr_val
.val_entry
= NULL
;
3788 attr
.dw_attr_val
.v
.val_vec
.length
= length
;
3789 attr
.dw_attr_val
.v
.val_vec
.elt_size
= elt_size
;
3790 attr
.dw_attr_val
.v
.val_vec
.array
= array
;
3791 add_dwarf_attr (die
, &attr
);
3794 /* Add an 8-byte data attribute value to a DIE. */
3797 add_AT_data8 (dw_die_ref die
, enum dwarf_attribute attr_kind
,
3798 unsigned char data8
[8])
3802 attr
.dw_attr
= attr_kind
;
3803 attr
.dw_attr_val
.val_class
= dw_val_class_data8
;
3804 attr
.dw_attr_val
.val_entry
= NULL
;
3805 memcpy (attr
.dw_attr_val
.v
.val_data8
, data8
, 8);
3806 add_dwarf_attr (die
, &attr
);
3809 /* Add DW_AT_low_pc and DW_AT_high_pc to a DIE. When using
3810 dwarf_split_debug_info, address attributes in dies destined for the
3811 final executable have force_direct set to avoid using indexed
3815 add_AT_low_high_pc (dw_die_ref die
, const char *lbl_low
, const char *lbl_high
,
3821 lbl_id
= xstrdup (lbl_low
);
3822 attr
.dw_attr
= DW_AT_low_pc
;
3823 attr
.dw_attr_val
.val_class
= dw_val_class_lbl_id
;
3824 attr
.dw_attr_val
.v
.val_lbl_id
= lbl_id
;
3825 if (dwarf_split_debug_info
&& !force_direct
)
3826 attr
.dw_attr_val
.val_entry
3827 = add_addr_table_entry (lbl_id
, ate_kind_label
);
3829 attr
.dw_attr_val
.val_entry
= NULL
;
3830 add_dwarf_attr (die
, &attr
);
3832 attr
.dw_attr
= DW_AT_high_pc
;
3833 if (dwarf_version
< 4)
3834 attr
.dw_attr_val
.val_class
= dw_val_class_lbl_id
;
3836 attr
.dw_attr_val
.val_class
= dw_val_class_high_pc
;
3837 lbl_id
= xstrdup (lbl_high
);
3838 attr
.dw_attr_val
.v
.val_lbl_id
= lbl_id
;
3839 if (attr
.dw_attr_val
.val_class
== dw_val_class_lbl_id
3840 && dwarf_split_debug_info
&& !force_direct
)
3841 attr
.dw_attr_val
.val_entry
3842 = add_addr_table_entry (lbl_id
, ate_kind_label
);
3844 attr
.dw_attr_val
.val_entry
= NULL
;
3845 add_dwarf_attr (die
, &attr
);
3848 /* Hash and equality functions for debug_str_hash. */
3851 debug_str_do_hash (const void *x
)
3853 return htab_hash_string (((const struct indirect_string_node
*)x
)->str
);
3857 debug_str_eq (const void *x1
, const void *x2
)
3859 return strcmp ((((const struct indirect_string_node
*)x1
)->str
),
3860 (const char *)x2
) == 0;
3863 /* Add STR to the given string hash table. */
3865 static struct indirect_string_node
*
3866 find_AT_string_in_table (const char *str
, htab_t table
)
3868 struct indirect_string_node
*node
;
3871 slot
= htab_find_slot_with_hash (table
, str
,
3872 htab_hash_string (str
), INSERT
);
3875 node
= ggc_alloc_cleared_indirect_string_node ();
3876 node
->str
= ggc_strdup (str
);
3880 node
= (struct indirect_string_node
*) *slot
;
3886 /* Add STR to the indirect string hash table. */
3888 static struct indirect_string_node
*
3889 find_AT_string (const char *str
)
3891 if (! debug_str_hash
)
3892 debug_str_hash
= htab_create_ggc (10, debug_str_do_hash
,
3893 debug_str_eq
, NULL
);
3895 return find_AT_string_in_table (str
, debug_str_hash
);
3898 /* Add a string attribute value to a DIE. */
3901 add_AT_string (dw_die_ref die
, enum dwarf_attribute attr_kind
, const char *str
)
3904 struct indirect_string_node
*node
;
3906 node
= find_AT_string (str
);
3908 attr
.dw_attr
= attr_kind
;
3909 attr
.dw_attr_val
.val_class
= dw_val_class_str
;
3910 attr
.dw_attr_val
.val_entry
= NULL
;
3911 attr
.dw_attr_val
.v
.val_str
= node
;
3912 add_dwarf_attr (die
, &attr
);
3915 static inline const char *
3916 AT_string (dw_attr_ref a
)
3918 gcc_assert (a
&& AT_class (a
) == dw_val_class_str
);
3919 return a
->dw_attr_val
.v
.val_str
->str
;
3922 /* Call this function directly to bypass AT_string_form's logic to put
3923 the string inline in the die. */
3926 set_indirect_string (struct indirect_string_node
*node
)
3929 /* Already indirect is a no op. */
3930 if (node
->form
== DW_FORM_strp
|| node
->form
== DW_FORM_GNU_str_index
)
3932 gcc_assert (node
->label
);
3935 ASM_GENERATE_INTERNAL_LABEL (label
, "LASF", dw2_string_counter
);
3936 ++dw2_string_counter
;
3937 node
->label
= xstrdup (label
);
3939 if (!dwarf_split_debug_info
)
3941 node
->form
= DW_FORM_strp
;
3942 node
->index
= NOT_INDEXED
;
3946 node
->form
= DW_FORM_GNU_str_index
;
3947 node
->index
= NO_INDEX_ASSIGNED
;
3951 /* Find out whether a string should be output inline in DIE
3952 or out-of-line in .debug_str section. */
3954 static enum dwarf_form
3955 find_string_form (struct indirect_string_node
*node
)
3962 len
= strlen (node
->str
) + 1;
3964 /* If the string is shorter or equal to the size of the reference, it is
3965 always better to put it inline. */
3966 if (len
<= DWARF_OFFSET_SIZE
|| node
->refcount
== 0)
3967 return node
->form
= DW_FORM_string
;
3969 /* If we cannot expect the linker to merge strings in .debug_str
3970 section, only put it into .debug_str if it is worth even in this
3972 if (DWARF2_INDIRECT_STRING_SUPPORT_MISSING_ON_TARGET
3973 || ((debug_str_section
->common
.flags
& SECTION_MERGE
) == 0
3974 && (len
- DWARF_OFFSET_SIZE
) * node
->refcount
<= len
))
3975 return node
->form
= DW_FORM_string
;
3977 set_indirect_string (node
);
3982 /* Find out whether the string referenced from the attribute should be
3983 output inline in DIE or out-of-line in .debug_str section. */
3985 static enum dwarf_form
3986 AT_string_form (dw_attr_ref a
)
3988 gcc_assert (a
&& AT_class (a
) == dw_val_class_str
);
3989 return find_string_form (a
->dw_attr_val
.v
.val_str
);
3992 /* Add a DIE reference attribute value to a DIE. */
3995 add_AT_die_ref (dw_die_ref die
, enum dwarf_attribute attr_kind
, dw_die_ref targ_die
)
3999 #ifdef ENABLE_CHECKING
4000 gcc_assert (targ_die
!= NULL
);
4002 /* With LTO we can end up trying to reference something we didn't create
4003 a DIE for. Avoid crashing later on a NULL referenced DIE. */
4004 if (targ_die
== NULL
)
4008 attr
.dw_attr
= attr_kind
;
4009 attr
.dw_attr_val
.val_class
= dw_val_class_die_ref
;
4010 attr
.dw_attr_val
.val_entry
= NULL
;
4011 attr
.dw_attr_val
.v
.val_die_ref
.die
= targ_die
;
4012 attr
.dw_attr_val
.v
.val_die_ref
.external
= 0;
4013 add_dwarf_attr (die
, &attr
);
4016 /* Change DIE reference REF to point to NEW_DIE instead. */
4019 change_AT_die_ref (dw_attr_ref ref
, dw_die_ref new_die
)
4021 gcc_assert (ref
->dw_attr_val
.val_class
== dw_val_class_die_ref
);
4022 ref
->dw_attr_val
.v
.val_die_ref
.die
= new_die
;
4023 ref
->dw_attr_val
.v
.val_die_ref
.external
= 0;
4026 /* Add an AT_specification attribute to a DIE, and also make the back
4027 pointer from the specification to the definition. */
4030 add_AT_specification (dw_die_ref die
, dw_die_ref targ_die
)
4032 add_AT_die_ref (die
, DW_AT_specification
, targ_die
);
4033 gcc_assert (!targ_die
->die_definition
);
4034 targ_die
->die_definition
= die
;
4037 static inline dw_die_ref
4038 AT_ref (dw_attr_ref a
)
4040 gcc_assert (a
&& AT_class (a
) == dw_val_class_die_ref
);
4041 return a
->dw_attr_val
.v
.val_die_ref
.die
;
4045 AT_ref_external (dw_attr_ref a
)
4047 if (a
&& AT_class (a
) == dw_val_class_die_ref
)
4048 return a
->dw_attr_val
.v
.val_die_ref
.external
;
4054 set_AT_ref_external (dw_attr_ref a
, int i
)
4056 gcc_assert (a
&& AT_class (a
) == dw_val_class_die_ref
);
4057 a
->dw_attr_val
.v
.val_die_ref
.external
= i
;
4060 /* Add an FDE reference attribute value to a DIE. */
4063 add_AT_fde_ref (dw_die_ref die
, enum dwarf_attribute attr_kind
, unsigned int targ_fde
)
4067 attr
.dw_attr
= attr_kind
;
4068 attr
.dw_attr_val
.val_class
= dw_val_class_fde_ref
;
4069 attr
.dw_attr_val
.val_entry
= NULL
;
4070 attr
.dw_attr_val
.v
.val_fde_index
= targ_fde
;
4071 add_dwarf_attr (die
, &attr
);
4074 /* Add a location description attribute value to a DIE. */
4077 add_AT_loc (dw_die_ref die
, enum dwarf_attribute attr_kind
, dw_loc_descr_ref loc
)
4081 attr
.dw_attr
= attr_kind
;
4082 attr
.dw_attr_val
.val_class
= dw_val_class_loc
;
4083 attr
.dw_attr_val
.val_entry
= NULL
;
4084 attr
.dw_attr_val
.v
.val_loc
= loc
;
4085 add_dwarf_attr (die
, &attr
);
4088 static inline dw_loc_descr_ref
4089 AT_loc (dw_attr_ref a
)
4091 gcc_assert (a
&& AT_class (a
) == dw_val_class_loc
);
4092 return a
->dw_attr_val
.v
.val_loc
;
4096 add_AT_loc_list (dw_die_ref die
, enum dwarf_attribute attr_kind
, dw_loc_list_ref loc_list
)
4100 attr
.dw_attr
= attr_kind
;
4101 attr
.dw_attr_val
.val_class
= dw_val_class_loc_list
;
4102 attr
.dw_attr_val
.val_entry
= NULL
;
4103 attr
.dw_attr_val
.v
.val_loc_list
= loc_list
;
4104 add_dwarf_attr (die
, &attr
);
4105 have_location_lists
= true;
4108 static inline dw_loc_list_ref
4109 AT_loc_list (dw_attr_ref a
)
4111 gcc_assert (a
&& AT_class (a
) == dw_val_class_loc_list
);
4112 return a
->dw_attr_val
.v
.val_loc_list
;
4115 static inline dw_loc_list_ref
*
4116 AT_loc_list_ptr (dw_attr_ref a
)
4118 gcc_assert (a
&& AT_class (a
) == dw_val_class_loc_list
);
4119 return &a
->dw_attr_val
.v
.val_loc_list
;
4122 /* Table of entries into the .debug_addr section. */
4124 static GTY ((param_is (addr_table_entry
))) htab_t addr_index_table
;
4126 /* Hash an address_table_entry. */
4129 addr_table_entry_do_hash (const void *x
)
4131 const addr_table_entry
*a
= (const addr_table_entry
*) x
;
4135 return iterative_hash_rtx (a
->addr
.rtl
, 0);
4136 case ate_kind_rtx_dtprel
:
4137 return iterative_hash_rtx (a
->addr
.rtl
, 1);
4138 case ate_kind_label
:
4139 return htab_hash_string (a
->addr
.label
);
4145 /* Determine equality for two address_table_entries. */
4148 addr_table_entry_eq (const void *x1
, const void *x2
)
4150 const addr_table_entry
*a1
= (const addr_table_entry
*) x1
;
4151 const addr_table_entry
*a2
= (const addr_table_entry
*) x2
;
4153 if (a1
->kind
!= a2
->kind
)
4158 case ate_kind_rtx_dtprel
:
4159 return rtx_equal_p (a1
->addr
.rtl
, a2
->addr
.rtl
);
4160 case ate_kind_label
:
4161 return strcmp (a1
->addr
.label
, a2
->addr
.label
) == 0;
4167 /* Initialize an addr_table_entry. */
4170 init_addr_table_entry (addr_table_entry
*e
, enum ate_kind kind
, void *addr
)
4176 case ate_kind_rtx_dtprel
:
4177 e
->addr
.rtl
= (rtx
) addr
;
4179 case ate_kind_label
:
4180 e
->addr
.label
= (char *) addr
;
4184 e
->index
= NO_INDEX_ASSIGNED
;
4187 /* Add attr to the address table entry to the table. Defer setting an
4188 index until output time. */
4190 static addr_table_entry
*
4191 add_addr_table_entry (void *addr
, enum ate_kind kind
)
4193 addr_table_entry
*node
;
4194 addr_table_entry finder
;
4197 gcc_assert (dwarf_split_debug_info
);
4198 if (! addr_index_table
)
4199 addr_index_table
= htab_create_ggc (10, addr_table_entry_do_hash
,
4200 addr_table_entry_eq
, NULL
);
4201 init_addr_table_entry (&finder
, kind
, addr
);
4202 slot
= htab_find_slot (addr_index_table
, &finder
, INSERT
);
4204 if (*slot
== HTAB_EMPTY_ENTRY
)
4206 node
= ggc_alloc_cleared_addr_table_entry ();
4207 init_addr_table_entry (node
, kind
, addr
);
4211 node
= (addr_table_entry
*) *slot
;
4217 /* Remove an entry from the addr table by decrementing its refcount.
4218 Strictly, decrementing the refcount would be enough, but the
4219 assertion that the entry is actually in the table has found
4223 remove_addr_table_entry (addr_table_entry
*entry
)
4225 addr_table_entry
*node
;
4227 gcc_assert (dwarf_split_debug_info
&& addr_index_table
);
4228 node
= (addr_table_entry
*) htab_find (addr_index_table
, entry
);
4229 /* After an index is assigned, the table is frozen. */
4230 gcc_assert (node
->refcount
> 0 && node
->index
== NO_INDEX_ASSIGNED
);
4234 /* Given a location list, remove all addresses it refers to from the
4238 remove_loc_list_addr_table_entries (dw_loc_descr_ref descr
)
4240 for (; descr
; descr
= descr
->dw_loc_next
)
4241 if (descr
->dw_loc_oprnd1
.val_entry
!= NULL
)
4243 gcc_assert (descr
->dw_loc_oprnd1
.val_entry
->index
== NO_INDEX_ASSIGNED
);
4244 remove_addr_table_entry (descr
->dw_loc_oprnd1
.val_entry
);
4248 /* A helper function for dwarf2out_finish called through
4249 htab_traverse. Assign an addr_table_entry its index. All entries
4250 must be collected into the table when this function is called,
4251 because the indexing code relies on htab_traverse to traverse nodes
4252 in the same order for each run. */
4255 index_addr_table_entry (void **h
, void *v
)
4257 addr_table_entry
*node
= (addr_table_entry
*) *h
;
4258 unsigned int *index
= (unsigned int *) v
;
4260 /* Don't index unreferenced nodes. */
4261 if (node
->refcount
== 0)
4264 gcc_assert (node
->index
== NO_INDEX_ASSIGNED
);
4265 node
->index
= *index
;
4271 /* Add an address constant attribute value to a DIE. When using
4272 dwarf_split_debug_info, address attributes in dies destined for the
4273 final executable should be direct references--setting the parameter
4274 force_direct ensures this behavior. */
4277 add_AT_addr (dw_die_ref die
, enum dwarf_attribute attr_kind
, rtx addr
,
4282 attr
.dw_attr
= attr_kind
;
4283 attr
.dw_attr_val
.val_class
= dw_val_class_addr
;
4284 attr
.dw_attr_val
.v
.val_addr
= addr
;
4285 if (dwarf_split_debug_info
&& !force_direct
)
4286 attr
.dw_attr_val
.val_entry
= add_addr_table_entry (addr
, ate_kind_rtx
);
4288 attr
.dw_attr_val
.val_entry
= NULL
;
4289 add_dwarf_attr (die
, &attr
);
4292 /* Get the RTX from to an address DIE attribute. */
4295 AT_addr (dw_attr_ref a
)
4297 gcc_assert (a
&& AT_class (a
) == dw_val_class_addr
);
4298 return a
->dw_attr_val
.v
.val_addr
;
4301 /* Add a file attribute value to a DIE. */
4304 add_AT_file (dw_die_ref die
, enum dwarf_attribute attr_kind
,
4305 struct dwarf_file_data
*fd
)
4309 attr
.dw_attr
= attr_kind
;
4310 attr
.dw_attr_val
.val_class
= dw_val_class_file
;
4311 attr
.dw_attr_val
.val_entry
= NULL
;
4312 attr
.dw_attr_val
.v
.val_file
= fd
;
4313 add_dwarf_attr (die
, &attr
);
4316 /* Get the dwarf_file_data from a file DIE attribute. */
4318 static inline struct dwarf_file_data
*
4319 AT_file (dw_attr_ref a
)
4321 gcc_assert (a
&& AT_class (a
) == dw_val_class_file
);
4322 return a
->dw_attr_val
.v
.val_file
;
4325 /* Add a vms delta attribute value to a DIE. */
4328 add_AT_vms_delta (dw_die_ref die
, enum dwarf_attribute attr_kind
,
4329 const char *lbl1
, const char *lbl2
)
4333 attr
.dw_attr
= attr_kind
;
4334 attr
.dw_attr_val
.val_class
= dw_val_class_vms_delta
;
4335 attr
.dw_attr_val
.val_entry
= NULL
;
4336 attr
.dw_attr_val
.v
.val_vms_delta
.lbl1
= xstrdup (lbl1
);
4337 attr
.dw_attr_val
.v
.val_vms_delta
.lbl2
= xstrdup (lbl2
);
4338 add_dwarf_attr (die
, &attr
);
4341 /* Add a label identifier attribute value to a DIE. */
4344 add_AT_lbl_id (dw_die_ref die
, enum dwarf_attribute attr_kind
,
4349 attr
.dw_attr
= attr_kind
;
4350 attr
.dw_attr_val
.val_class
= dw_val_class_lbl_id
;
4351 attr
.dw_attr_val
.val_entry
= NULL
;
4352 attr
.dw_attr_val
.v
.val_lbl_id
= xstrdup (lbl_id
);
4353 if (dwarf_split_debug_info
)
4354 attr
.dw_attr_val
.val_entry
4355 = add_addr_table_entry (attr
.dw_attr_val
.v
.val_lbl_id
,
4357 add_dwarf_attr (die
, &attr
);
4360 /* Add a section offset attribute value to a DIE, an offset into the
4361 debug_line section. */
4364 add_AT_lineptr (dw_die_ref die
, enum dwarf_attribute attr_kind
,
4369 attr
.dw_attr
= attr_kind
;
4370 attr
.dw_attr_val
.val_class
= dw_val_class_lineptr
;
4371 attr
.dw_attr_val
.val_entry
= NULL
;
4372 attr
.dw_attr_val
.v
.val_lbl_id
= xstrdup (label
);
4373 add_dwarf_attr (die
, &attr
);
4376 /* Add a section offset attribute value to a DIE, an offset into the
4377 debug_macinfo section. */
4380 add_AT_macptr (dw_die_ref die
, enum dwarf_attribute attr_kind
,
4385 attr
.dw_attr
= attr_kind
;
4386 attr
.dw_attr_val
.val_class
= dw_val_class_macptr
;
4387 attr
.dw_attr_val
.val_entry
= NULL
;
4388 attr
.dw_attr_val
.v
.val_lbl_id
= xstrdup (label
);
4389 add_dwarf_attr (die
, &attr
);
4392 /* Add an offset attribute value to a DIE. */
4395 add_AT_offset (dw_die_ref die
, enum dwarf_attribute attr_kind
,
4396 unsigned HOST_WIDE_INT offset
)
4400 attr
.dw_attr
= attr_kind
;
4401 attr
.dw_attr_val
.val_class
= dw_val_class_offset
;
4402 attr
.dw_attr_val
.val_entry
= NULL
;
4403 attr
.dw_attr_val
.v
.val_offset
= offset
;
4404 add_dwarf_attr (die
, &attr
);
4407 /* Add a range_list attribute value to a DIE. When using
4408 dwarf_split_debug_info, address attributes in dies destined for the
4409 final executable should be direct references--setting the parameter
4410 force_direct ensures this behavior. */
4412 #define UNRELOCATED_OFFSET ((addr_table_entry *) 1)
4413 #define RELOCATED_OFFSET (NULL)
4416 add_AT_range_list (dw_die_ref die
, enum dwarf_attribute attr_kind
,
4417 long unsigned int offset
, bool force_direct
)
4421 attr
.dw_attr
= attr_kind
;
4422 attr
.dw_attr_val
.val_class
= dw_val_class_range_list
;
4423 /* For the range_list attribute, use val_entry to store whether the
4424 offset should follow split-debug-info or normal semantics. This
4425 value is read in output_range_list_offset. */
4426 if (dwarf_split_debug_info
&& !force_direct
)
4427 attr
.dw_attr_val
.val_entry
= UNRELOCATED_OFFSET
;
4429 attr
.dw_attr_val
.val_entry
= RELOCATED_OFFSET
;
4430 attr
.dw_attr_val
.v
.val_offset
= offset
;
4431 add_dwarf_attr (die
, &attr
);
4434 /* Return the start label of a delta attribute. */
4436 static inline const char *
4437 AT_vms_delta1 (dw_attr_ref a
)
4439 gcc_assert (a
&& (AT_class (a
) == dw_val_class_vms_delta
));
4440 return a
->dw_attr_val
.v
.val_vms_delta
.lbl1
;
4443 /* Return the end label of a delta attribute. */
4445 static inline const char *
4446 AT_vms_delta2 (dw_attr_ref a
)
4448 gcc_assert (a
&& (AT_class (a
) == dw_val_class_vms_delta
));
4449 return a
->dw_attr_val
.v
.val_vms_delta
.lbl2
;
4452 static inline const char *
4453 AT_lbl (dw_attr_ref a
)
4455 gcc_assert (a
&& (AT_class (a
) == dw_val_class_lbl_id
4456 || AT_class (a
) == dw_val_class_lineptr
4457 || AT_class (a
) == dw_val_class_macptr
4458 || AT_class (a
) == dw_val_class_high_pc
));
4459 return a
->dw_attr_val
.v
.val_lbl_id
;
4462 /* Get the attribute of type attr_kind. */
4465 get_AT (dw_die_ref die
, enum dwarf_attribute attr_kind
)
4469 dw_die_ref spec
= NULL
;
4474 FOR_EACH_VEC_SAFE_ELT (die
->die_attr
, ix
, a
)
4475 if (a
->dw_attr
== attr_kind
)
4477 else if (a
->dw_attr
== DW_AT_specification
4478 || a
->dw_attr
== DW_AT_abstract_origin
)
4482 return get_AT (spec
, attr_kind
);
4487 /* Returns the parent of the declaration of DIE. */
4490 get_die_parent (dw_die_ref die
)
4497 if ((t
= get_AT_ref (die
, DW_AT_abstract_origin
))
4498 || (t
= get_AT_ref (die
, DW_AT_specification
)))
4501 return die
->die_parent
;
4504 /* Return the "low pc" attribute value, typically associated with a subprogram
4505 DIE. Return null if the "low pc" attribute is either not present, or if it
4506 cannot be represented as an assembler label identifier. */
4508 static inline const char *
4509 get_AT_low_pc (dw_die_ref die
)
4511 dw_attr_ref a
= get_AT (die
, DW_AT_low_pc
);
4513 return a
? AT_lbl (a
) : NULL
;
4516 /* Return the "high pc" attribute value, typically associated with a subprogram
4517 DIE. Return null if the "high pc" attribute is either not present, or if it
4518 cannot be represented as an assembler label identifier. */
4520 static inline const char *
4521 get_AT_hi_pc (dw_die_ref die
)
4523 dw_attr_ref a
= get_AT (die
, DW_AT_high_pc
);
4525 return a
? AT_lbl (a
) : NULL
;
4528 /* Return the value of the string attribute designated by ATTR_KIND, or
4529 NULL if it is not present. */
4531 static inline const char *
4532 get_AT_string (dw_die_ref die
, enum dwarf_attribute attr_kind
)
4534 dw_attr_ref a
= get_AT (die
, attr_kind
);
4536 return a
? AT_string (a
) : NULL
;
4539 /* Return the value of the flag attribute designated by ATTR_KIND, or -1
4540 if it is not present. */
4543 get_AT_flag (dw_die_ref die
, enum dwarf_attribute attr_kind
)
4545 dw_attr_ref a
= get_AT (die
, attr_kind
);
4547 return a
? AT_flag (a
) : 0;
4550 /* Return the value of the unsigned attribute designated by ATTR_KIND, or 0
4551 if it is not present. */
4553 static inline unsigned
4554 get_AT_unsigned (dw_die_ref die
, enum dwarf_attribute attr_kind
)
4556 dw_attr_ref a
= get_AT (die
, attr_kind
);
4558 return a
? AT_unsigned (a
) : 0;
4561 static inline dw_die_ref
4562 get_AT_ref (dw_die_ref die
, enum dwarf_attribute attr_kind
)
4564 dw_attr_ref a
= get_AT (die
, attr_kind
);
4566 return a
? AT_ref (a
) : NULL
;
4569 static inline struct dwarf_file_data
*
4570 get_AT_file (dw_die_ref die
, enum dwarf_attribute attr_kind
)
4572 dw_attr_ref a
= get_AT (die
, attr_kind
);
4574 return a
? AT_file (a
) : NULL
;
4577 /* Return TRUE if the language is C++. */
4582 unsigned int lang
= get_AT_unsigned (comp_unit_die (), DW_AT_language
);
4584 return lang
== DW_LANG_C_plus_plus
|| lang
== DW_LANG_ObjC_plus_plus
;
4587 /* Return TRUE if the language is Java. */
4592 unsigned int lang
= get_AT_unsigned (comp_unit_die (), DW_AT_language
);
4594 return lang
== DW_LANG_Java
;
4597 /* Return TRUE if the language is Fortran. */
4602 unsigned int lang
= get_AT_unsigned (comp_unit_die (), DW_AT_language
);
4604 return (lang
== DW_LANG_Fortran77
4605 || lang
== DW_LANG_Fortran90
4606 || lang
== DW_LANG_Fortran95
);
4609 /* Return TRUE if the language is Ada. */
4614 unsigned int lang
= get_AT_unsigned (comp_unit_die (), DW_AT_language
);
4616 return lang
== DW_LANG_Ada95
|| lang
== DW_LANG_Ada83
;
4619 /* Remove the specified attribute if present. */
4622 remove_AT (dw_die_ref die
, enum dwarf_attribute attr_kind
)
4630 FOR_EACH_VEC_SAFE_ELT (die
->die_attr
, ix
, a
)
4631 if (a
->dw_attr
== attr_kind
)
4633 if (AT_class (a
) == dw_val_class_str
)
4634 if (a
->dw_attr_val
.v
.val_str
->refcount
)
4635 a
->dw_attr_val
.v
.val_str
->refcount
--;
4637 /* vec::ordered_remove should help reduce the number of abbrevs
4639 die
->die_attr
->ordered_remove (ix
);
4644 /* Remove CHILD from its parent. PREV must have the property that
4645 PREV->DIE_SIB == CHILD. Does not alter CHILD. */
4648 remove_child_with_prev (dw_die_ref child
, dw_die_ref prev
)
4650 gcc_assert (child
->die_parent
== prev
->die_parent
);
4651 gcc_assert (prev
->die_sib
== child
);
4654 gcc_assert (child
->die_parent
->die_child
== child
);
4658 prev
->die_sib
= child
->die_sib
;
4659 if (child
->die_parent
->die_child
== child
)
4660 child
->die_parent
->die_child
= prev
;
4663 /* Replace OLD_CHILD with NEW_CHILD. PREV must have the property that
4664 PREV->DIE_SIB == OLD_CHILD. Does not alter OLD_CHILD. */
4667 replace_child (dw_die_ref old_child
, dw_die_ref new_child
, dw_die_ref prev
)
4669 dw_die_ref parent
= old_child
->die_parent
;
4671 gcc_assert (parent
== prev
->die_parent
);
4672 gcc_assert (prev
->die_sib
== old_child
);
4674 new_child
->die_parent
= parent
;
4675 if (prev
== old_child
)
4677 gcc_assert (parent
->die_child
== old_child
);
4678 new_child
->die_sib
= new_child
;
4682 prev
->die_sib
= new_child
;
4683 new_child
->die_sib
= old_child
->die_sib
;
4685 if (old_child
->die_parent
->die_child
== old_child
)
4686 old_child
->die_parent
->die_child
= new_child
;
4689 /* Move all children from OLD_PARENT to NEW_PARENT. */
4692 move_all_children (dw_die_ref old_parent
, dw_die_ref new_parent
)
4695 new_parent
->die_child
= old_parent
->die_child
;
4696 old_parent
->die_child
= NULL
;
4697 FOR_EACH_CHILD (new_parent
, c
, c
->die_parent
= new_parent
);
4700 /* Remove child DIE whose die_tag is TAG. Do nothing if no child
4704 remove_child_TAG (dw_die_ref die
, enum dwarf_tag tag
)
4710 dw_die_ref prev
= c
;
4712 while (c
->die_tag
== tag
)
4714 remove_child_with_prev (c
, prev
);
4715 /* Might have removed every child. */
4716 if (c
== c
->die_sib
)
4720 } while (c
!= die
->die_child
);
4723 /* Add a CHILD_DIE as the last child of DIE. */
4726 add_child_die (dw_die_ref die
, dw_die_ref child_die
)
4728 /* FIXME this should probably be an assert. */
4729 if (! die
|| ! child_die
)
4731 gcc_assert (die
!= child_die
);
4733 child_die
->die_parent
= die
;
4736 child_die
->die_sib
= die
->die_child
->die_sib
;
4737 die
->die_child
->die_sib
= child_die
;
4740 child_die
->die_sib
= child_die
;
4741 die
->die_child
= child_die
;
4744 /* Move CHILD, which must be a child of PARENT or the DIE for which PARENT
4745 is the specification, to the end of PARENT's list of children.
4746 This is done by removing and re-adding it. */
4749 splice_child_die (dw_die_ref parent
, dw_die_ref child
)
4753 /* We want the declaration DIE from inside the class, not the
4754 specification DIE at toplevel. */
4755 if (child
->die_parent
!= parent
)
4757 dw_die_ref tmp
= get_AT_ref (child
, DW_AT_specification
);
4763 gcc_assert (child
->die_parent
== parent
4764 || (child
->die_parent
4765 == get_AT_ref (parent
, DW_AT_specification
)));
4767 for (p
= child
->die_parent
->die_child
; ; p
= p
->die_sib
)
4768 if (p
->die_sib
== child
)
4770 remove_child_with_prev (child
, p
);
4774 add_child_die (parent
, child
);
4777 /* Return a pointer to a newly created DIE node. */
4779 static inline dw_die_ref
4780 new_die (enum dwarf_tag tag_value
, dw_die_ref parent_die
, tree t
)
4782 dw_die_ref die
= ggc_alloc_cleared_die_node ();
4784 die
->die_tag
= tag_value
;
4786 if (parent_die
!= NULL
)
4787 add_child_die (parent_die
, die
);
4790 limbo_die_node
*limbo_node
;
4792 limbo_node
= ggc_alloc_cleared_limbo_die_node ();
4793 limbo_node
->die
= die
;
4794 limbo_node
->created_for
= t
;
4795 limbo_node
->next
= limbo_die_list
;
4796 limbo_die_list
= limbo_node
;
4802 /* Return the DIE associated with the given type specifier. */
4804 static inline dw_die_ref
4805 lookup_type_die (tree type
)
4807 return TYPE_SYMTAB_DIE (type
);
4810 /* Given a TYPE_DIE representing the type TYPE, if TYPE is an
4811 anonymous type named by the typedef TYPE_DIE, return the DIE of the
4812 anonymous type instead the one of the naming typedef. */
4814 static inline dw_die_ref
4815 strip_naming_typedef (tree type
, dw_die_ref type_die
)
4818 && TREE_CODE (type
) == RECORD_TYPE
4820 && type_die
->die_tag
== DW_TAG_typedef
4821 && is_naming_typedef_decl (TYPE_NAME (type
)))
4822 type_die
= get_AT_ref (type_die
, DW_AT_type
);
4826 /* Like lookup_type_die, but if type is an anonymous type named by a
4827 typedef[1], return the DIE of the anonymous type instead the one of
4828 the naming typedef. This is because in gen_typedef_die, we did
4829 equate the anonymous struct named by the typedef with the DIE of
4830 the naming typedef. So by default, lookup_type_die on an anonymous
4831 struct yields the DIE of the naming typedef.
4833 [1]: Read the comment of is_naming_typedef_decl to learn about what
4834 a naming typedef is. */
4836 static inline dw_die_ref
4837 lookup_type_die_strip_naming_typedef (tree type
)
4839 dw_die_ref die
= lookup_type_die (type
);
4840 return strip_naming_typedef (type
, die
);
4843 /* Equate a DIE to a given type specifier. */
4846 equate_type_number_to_die (tree type
, dw_die_ref type_die
)
4848 TYPE_SYMTAB_DIE (type
) = type_die
;
4851 /* Returns a hash value for X (which really is a die_struct). */
4854 decl_die_table_hash (const void *x
)
4856 return (hashval_t
) ((const_dw_die_ref
) x
)->decl_id
;
4859 /* Return nonzero if decl_id of die_struct X is the same as UID of decl *Y. */
4862 decl_die_table_eq (const void *x
, const void *y
)
4864 return (((const_dw_die_ref
) x
)->decl_id
== DECL_UID ((const_tree
) y
));
4867 /* Return the DIE associated with a given declaration. */
4869 static inline dw_die_ref
4870 lookup_decl_die (tree decl
)
4872 return (dw_die_ref
) htab_find_with_hash (decl_die_table
, decl
, DECL_UID (decl
));
4875 /* Returns a hash value for X (which really is a var_loc_list). */
4878 decl_loc_table_hash (const void *x
)
4880 return (hashval_t
) ((const var_loc_list
*) x
)->decl_id
;
4883 /* Return nonzero if decl_id of var_loc_list X is the same as
4887 decl_loc_table_eq (const void *x
, const void *y
)
4889 return (((const var_loc_list
*) x
)->decl_id
== DECL_UID ((const_tree
) y
));
4892 /* Return the var_loc list associated with a given declaration. */
4894 static inline var_loc_list
*
4895 lookup_decl_loc (const_tree decl
)
4897 if (!decl_loc_table
)
4899 return (var_loc_list
*)
4900 htab_find_with_hash (decl_loc_table
, decl
, DECL_UID (decl
));
4903 /* Returns a hash value for X (which really is a cached_dw_loc_list_list). */
4906 cached_dw_loc_list_table_hash (const void *x
)
4908 return (hashval_t
) ((const cached_dw_loc_list
*) x
)->decl_id
;
4911 /* Return nonzero if decl_id of cached_dw_loc_list X is the same as
4915 cached_dw_loc_list_table_eq (const void *x
, const void *y
)
4917 return (((const cached_dw_loc_list
*) x
)->decl_id
4918 == DECL_UID ((const_tree
) y
));
4921 /* Equate a DIE to a particular declaration. */
4924 equate_decl_number_to_die (tree decl
, dw_die_ref decl_die
)
4926 unsigned int decl_id
= DECL_UID (decl
);
4929 slot
= htab_find_slot_with_hash (decl_die_table
, decl
, decl_id
, INSERT
);
4931 decl_die
->decl_id
= decl_id
;
4934 /* Return how many bits covers PIECE EXPR_LIST. */
4937 decl_piece_bitsize (rtx piece
)
4939 int ret
= (int) GET_MODE (piece
);
4942 gcc_assert (GET_CODE (XEXP (piece
, 0)) == CONCAT
4943 && CONST_INT_P (XEXP (XEXP (piece
, 0), 0)));
4944 return INTVAL (XEXP (XEXP (piece
, 0), 0));
4947 /* Return pointer to the location of location note in PIECE EXPR_LIST. */
4950 decl_piece_varloc_ptr (rtx piece
)
4952 if ((int) GET_MODE (piece
))
4953 return &XEXP (piece
, 0);
4955 return &XEXP (XEXP (piece
, 0), 1);
4958 /* Create an EXPR_LIST for location note LOC_NOTE covering BITSIZE bits.
4959 Next is the chain of following piece nodes. */
4962 decl_piece_node (rtx loc_note
, HOST_WIDE_INT bitsize
, rtx next
)
4964 if (bitsize
<= (int) MAX_MACHINE_MODE
)
4965 return alloc_EXPR_LIST (bitsize
, loc_note
, next
);
4967 return alloc_EXPR_LIST (0, gen_rtx_CONCAT (VOIDmode
,
4972 /* Return rtx that should be stored into loc field for
4973 LOC_NOTE and BITPOS/BITSIZE. */
4976 construct_piece_list (rtx loc_note
, HOST_WIDE_INT bitpos
,
4977 HOST_WIDE_INT bitsize
)
4981 loc_note
= decl_piece_node (loc_note
, bitsize
, NULL_RTX
);
4983 loc_note
= decl_piece_node (NULL_RTX
, bitpos
, loc_note
);
4988 /* This function either modifies location piece list *DEST in
4989 place (if SRC and INNER is NULL), or copies location piece list
4990 *SRC to *DEST while modifying it. Location BITPOS is modified
4991 to contain LOC_NOTE, any pieces overlapping it are removed resp.
4992 not copied and if needed some padding around it is added.
4993 When modifying in place, DEST should point to EXPR_LIST where
4994 earlier pieces cover PIECE_BITPOS bits, when copying SRC points
4995 to the start of the whole list and INNER points to the EXPR_LIST
4996 where earlier pieces cover PIECE_BITPOS bits. */
4999 adjust_piece_list (rtx
*dest
, rtx
*src
, rtx
*inner
,
5000 HOST_WIDE_INT bitpos
, HOST_WIDE_INT piece_bitpos
,
5001 HOST_WIDE_INT bitsize
, rtx loc_note
)
5004 bool copy
= inner
!= NULL
;
5008 /* First copy all nodes preceding the current bitpos. */
5009 while (src
!= inner
)
5011 *dest
= decl_piece_node (*decl_piece_varloc_ptr (*src
),
5012 decl_piece_bitsize (*src
), NULL_RTX
);
5013 dest
= &XEXP (*dest
, 1);
5014 src
= &XEXP (*src
, 1);
5017 /* Add padding if needed. */
5018 if (bitpos
!= piece_bitpos
)
5020 *dest
= decl_piece_node (NULL_RTX
, bitpos
- piece_bitpos
,
5021 copy
? NULL_RTX
: *dest
);
5022 dest
= &XEXP (*dest
, 1);
5024 else if (*dest
&& decl_piece_bitsize (*dest
) == bitsize
)
5027 /* A piece with correct bitpos and bitsize already exist,
5028 just update the location for it and return. */
5029 *decl_piece_varloc_ptr (*dest
) = loc_note
;
5032 /* Add the piece that changed. */
5033 *dest
= decl_piece_node (loc_note
, bitsize
, copy
? NULL_RTX
: *dest
);
5034 dest
= &XEXP (*dest
, 1);
5035 /* Skip over pieces that overlap it. */
5036 diff
= bitpos
- piece_bitpos
+ bitsize
;
5039 while (diff
> 0 && *src
)
5042 diff
-= decl_piece_bitsize (piece
);
5044 src
= &XEXP (piece
, 1);
5047 *src
= XEXP (piece
, 1);
5048 free_EXPR_LIST_node (piece
);
5051 /* Add padding if needed. */
5052 if (diff
< 0 && *src
)
5056 *dest
= decl_piece_node (NULL_RTX
, -diff
, copy
? NULL_RTX
: *dest
);
5057 dest
= &XEXP (*dest
, 1);
5061 /* Finally copy all nodes following it. */
5064 *dest
= decl_piece_node (*decl_piece_varloc_ptr (*src
),
5065 decl_piece_bitsize (*src
), NULL_RTX
);
5066 dest
= &XEXP (*dest
, 1);
5067 src
= &XEXP (*src
, 1);
5071 /* Add a variable location node to the linked list for DECL. */
5073 static struct var_loc_node
*
5074 add_var_loc_to_decl (tree decl
, rtx loc_note
, const char *label
)
5076 unsigned int decl_id
;
5079 struct var_loc_node
*loc
= NULL
;
5080 HOST_WIDE_INT bitsize
= -1, bitpos
= -1;
5082 if (TREE_CODE (decl
) == VAR_DECL
5083 && DECL_HAS_DEBUG_EXPR_P (decl
))
5085 tree realdecl
= DECL_DEBUG_EXPR (decl
);
5086 if (handled_component_p (realdecl
)
5087 || (TREE_CODE (realdecl
) == MEM_REF
5088 && TREE_CODE (TREE_OPERAND (realdecl
, 0)) == ADDR_EXPR
))
5090 HOST_WIDE_INT maxsize
;
5093 = get_ref_base_and_extent (realdecl
, &bitpos
, &bitsize
, &maxsize
);
5094 if (!DECL_P (innerdecl
)
5095 || DECL_IGNORED_P (innerdecl
)
5096 || TREE_STATIC (innerdecl
)
5098 || bitpos
+ bitsize
> 256
5099 || bitsize
!= maxsize
)
5105 decl_id
= DECL_UID (decl
);
5106 slot
= htab_find_slot_with_hash (decl_loc_table
, decl
, decl_id
, INSERT
);
5109 temp
= ggc_alloc_cleared_var_loc_list ();
5110 temp
->decl_id
= decl_id
;
5114 temp
= (var_loc_list
*) *slot
;
5116 /* For PARM_DECLs try to keep around the original incoming value,
5117 even if that means we'll emit a zero-range .debug_loc entry. */
5119 && temp
->first
== temp
->last
5120 && TREE_CODE (decl
) == PARM_DECL
5121 && NOTE_P (temp
->first
->loc
)
5122 && NOTE_VAR_LOCATION_DECL (temp
->first
->loc
) == decl
5123 && DECL_INCOMING_RTL (decl
)
5124 && NOTE_VAR_LOCATION_LOC (temp
->first
->loc
)
5125 && GET_CODE (NOTE_VAR_LOCATION_LOC (temp
->first
->loc
))
5126 == GET_CODE (DECL_INCOMING_RTL (decl
))
5127 && prev_real_insn (temp
->first
->loc
) == NULL_RTX
5129 || !rtx_equal_p (NOTE_VAR_LOCATION_LOC (temp
->first
->loc
),
5130 NOTE_VAR_LOCATION_LOC (loc_note
))
5131 || (NOTE_VAR_LOCATION_STATUS (temp
->first
->loc
)
5132 != NOTE_VAR_LOCATION_STATUS (loc_note
))))
5134 loc
= ggc_alloc_cleared_var_loc_node ();
5135 temp
->first
->next
= loc
;
5137 loc
->loc
= construct_piece_list (loc_note
, bitpos
, bitsize
);
5139 else if (temp
->last
)
5141 struct var_loc_node
*last
= temp
->last
, *unused
= NULL
;
5142 rtx
*piece_loc
= NULL
, last_loc_note
;
5143 int piece_bitpos
= 0;
5147 gcc_assert (last
->next
== NULL
);
5149 if (bitsize
!= -1 && GET_CODE (last
->loc
) == EXPR_LIST
)
5151 piece_loc
= &last
->loc
;
5154 int cur_bitsize
= decl_piece_bitsize (*piece_loc
);
5155 if (piece_bitpos
+ cur_bitsize
> bitpos
)
5157 piece_bitpos
+= cur_bitsize
;
5158 piece_loc
= &XEXP (*piece_loc
, 1);
5162 /* TEMP->LAST here is either pointer to the last but one or
5163 last element in the chained list, LAST is pointer to the
5165 if (label
&& strcmp (last
->label
, label
) == 0)
5167 /* For SRA optimized variables if there weren't any real
5168 insns since last note, just modify the last node. */
5169 if (piece_loc
!= NULL
)
5171 adjust_piece_list (piece_loc
, NULL
, NULL
,
5172 bitpos
, piece_bitpos
, bitsize
, loc_note
);
5175 /* If the last note doesn't cover any instructions, remove it. */
5176 if (temp
->last
!= last
)
5178 temp
->last
->next
= NULL
;
5181 gcc_assert (strcmp (last
->label
, label
) != 0);
5185 gcc_assert (temp
->first
== temp
->last
5186 || (temp
->first
->next
== temp
->last
5187 && TREE_CODE (decl
) == PARM_DECL
));
5188 memset (temp
->last
, '\0', sizeof (*temp
->last
));
5189 temp
->last
->loc
= construct_piece_list (loc_note
, bitpos
, bitsize
);
5193 if (bitsize
== -1 && NOTE_P (last
->loc
))
5194 last_loc_note
= last
->loc
;
5195 else if (piece_loc
!= NULL
5196 && *piece_loc
!= NULL_RTX
5197 && piece_bitpos
== bitpos
5198 && decl_piece_bitsize (*piece_loc
) == bitsize
)
5199 last_loc_note
= *decl_piece_varloc_ptr (*piece_loc
);
5201 last_loc_note
= NULL_RTX
;
5202 /* If the current location is the same as the end of the list,
5203 and either both or neither of the locations is uninitialized,
5204 we have nothing to do. */
5205 if (last_loc_note
== NULL_RTX
5206 || (!rtx_equal_p (NOTE_VAR_LOCATION_LOC (last_loc_note
),
5207 NOTE_VAR_LOCATION_LOC (loc_note
)))
5208 || ((NOTE_VAR_LOCATION_STATUS (last_loc_note
)
5209 != NOTE_VAR_LOCATION_STATUS (loc_note
))
5210 && ((NOTE_VAR_LOCATION_STATUS (last_loc_note
)
5211 == VAR_INIT_STATUS_UNINITIALIZED
)
5212 || (NOTE_VAR_LOCATION_STATUS (loc_note
)
5213 == VAR_INIT_STATUS_UNINITIALIZED
))))
5215 /* Add LOC to the end of list and update LAST. If the last
5216 element of the list has been removed above, reuse its
5217 memory for the new node, otherwise allocate a new one. */
5221 memset (loc
, '\0', sizeof (*loc
));
5224 loc
= ggc_alloc_cleared_var_loc_node ();
5225 if (bitsize
== -1 || piece_loc
== NULL
)
5226 loc
->loc
= construct_piece_list (loc_note
, bitpos
, bitsize
);
5228 adjust_piece_list (&loc
->loc
, &last
->loc
, piece_loc
,
5229 bitpos
, piece_bitpos
, bitsize
, loc_note
);
5231 /* Ensure TEMP->LAST will point either to the new last but one
5232 element of the chain, or to the last element in it. */
5233 if (last
!= temp
->last
)
5241 loc
= ggc_alloc_cleared_var_loc_node ();
5244 loc
->loc
= construct_piece_list (loc_note
, bitpos
, bitsize
);
5249 /* Keep track of the number of spaces used to indent the
5250 output of the debugging routines that print the structure of
5251 the DIE internal representation. */
5252 static int print_indent
;
5254 /* Indent the line the number of spaces given by print_indent. */
5257 print_spaces (FILE *outfile
)
5259 fprintf (outfile
, "%*s", print_indent
, "");
5262 /* Print a type signature in hex. */
5265 print_signature (FILE *outfile
, char *sig
)
5269 for (i
= 0; i
< DWARF_TYPE_SIGNATURE_SIZE
; i
++)
5270 fprintf (outfile
, "%02x", sig
[i
] & 0xff);
5273 /* Print the information associated with a given DIE, and its children.
5274 This routine is a debugging aid only. */
5277 print_die (dw_die_ref die
, FILE *outfile
)
5283 print_spaces (outfile
);
5284 fprintf (outfile
, "DIE %4ld: %s (%p)\n",
5285 die
->die_offset
, dwarf_tag_name (die
->die_tag
),
5287 print_spaces (outfile
);
5288 fprintf (outfile
, " abbrev id: %lu", die
->die_abbrev
);
5289 fprintf (outfile
, " offset: %ld", die
->die_offset
);
5290 fprintf (outfile
, " mark: %d\n", die
->die_mark
);
5292 if (die
->comdat_type_p
)
5294 print_spaces (outfile
);
5295 fprintf (outfile
, " signature: ");
5296 print_signature (outfile
, die
->die_id
.die_type_node
->signature
);
5297 fprintf (outfile
, "\n");
5300 FOR_EACH_VEC_SAFE_ELT (die
->die_attr
, ix
, a
)
5302 print_spaces (outfile
);
5303 fprintf (outfile
, " %s: ", dwarf_attr_name (a
->dw_attr
));
5305 switch (AT_class (a
))
5307 case dw_val_class_addr
:
5308 fprintf (outfile
, "address");
5310 case dw_val_class_offset
:
5311 fprintf (outfile
, "offset");
5313 case dw_val_class_loc
:
5314 fprintf (outfile
, "location descriptor");
5316 case dw_val_class_loc_list
:
5317 fprintf (outfile
, "location list -> label:%s",
5318 AT_loc_list (a
)->ll_symbol
);
5320 case dw_val_class_range_list
:
5321 fprintf (outfile
, "range list");
5323 case dw_val_class_const
:
5324 fprintf (outfile
, HOST_WIDE_INT_PRINT_DEC
, AT_int (a
));
5326 case dw_val_class_unsigned_const
:
5327 fprintf (outfile
, HOST_WIDE_INT_PRINT_UNSIGNED
, AT_unsigned (a
));
5329 case dw_val_class_const_double
:
5330 fprintf (outfile
, "constant ("HOST_WIDE_INT_PRINT_DEC
","\
5331 HOST_WIDE_INT_PRINT_UNSIGNED
")",
5332 a
->dw_attr_val
.v
.val_double
.high
,
5333 a
->dw_attr_val
.v
.val_double
.low
);
5335 case dw_val_class_vec
:
5336 fprintf (outfile
, "floating-point or vector constant");
5338 case dw_val_class_flag
:
5339 fprintf (outfile
, "%u", AT_flag (a
));
5341 case dw_val_class_die_ref
:
5342 if (AT_ref (a
) != NULL
)
5344 if (AT_ref (a
)->comdat_type_p
)
5346 fprintf (outfile
, "die -> signature: ");
5347 print_signature (outfile
,
5348 AT_ref (a
)->die_id
.die_type_node
->signature
);
5350 else if (AT_ref (a
)->die_id
.die_symbol
)
5351 fprintf (outfile
, "die -> label: %s",
5352 AT_ref (a
)->die_id
.die_symbol
);
5354 fprintf (outfile
, "die -> %ld", AT_ref (a
)->die_offset
);
5355 fprintf (outfile
, " (%p)", (void *) AT_ref (a
));
5358 fprintf (outfile
, "die -> <null>");
5360 case dw_val_class_vms_delta
:
5361 fprintf (outfile
, "delta: @slotcount(%s-%s)",
5362 AT_vms_delta2 (a
), AT_vms_delta1 (a
));
5364 case dw_val_class_lbl_id
:
5365 case dw_val_class_lineptr
:
5366 case dw_val_class_macptr
:
5367 case dw_val_class_high_pc
:
5368 fprintf (outfile
, "label: %s", AT_lbl (a
));
5370 case dw_val_class_str
:
5371 if (AT_string (a
) != NULL
)
5372 fprintf (outfile
, "\"%s\"", AT_string (a
));
5374 fprintf (outfile
, "<null>");
5376 case dw_val_class_file
:
5377 fprintf (outfile
, "\"%s\" (%d)", AT_file (a
)->filename
,
5378 AT_file (a
)->emitted_number
);
5380 case dw_val_class_data8
:
5384 for (i
= 0; i
< 8; i
++)
5385 fprintf (outfile
, "%02x", a
->dw_attr_val
.v
.val_data8
[i
]);
5392 fprintf (outfile
, "\n");
5395 if (die
->die_child
!= NULL
)
5398 FOR_EACH_CHILD (die
, c
, print_die (c
, outfile
));
5401 if (print_indent
== 0)
5402 fprintf (outfile
, "\n");
5405 /* Print the information collected for a given DIE. */
5408 debug_dwarf_die (dw_die_ref die
)
5410 print_die (die
, stderr
);
5414 debug (die_struct
&ref
)
5416 print_die (&ref
, stderr
);
5420 debug (die_struct
*ptr
)
5425 fprintf (stderr
, "<nil>\n");
5429 /* Print all DWARF information collected for the compilation unit.
5430 This routine is a debugging aid only. */
5436 print_die (comp_unit_die (), stderr
);
5439 /* Start a new compilation unit DIE for an include file. OLD_UNIT is the CU
5440 for the enclosing include file, if any. BINCL_DIE is the DW_TAG_GNU_BINCL
5441 DIE that marks the start of the DIEs for this include file. */
5444 push_new_compile_unit (dw_die_ref old_unit
, dw_die_ref bincl_die
)
5446 const char *filename
= get_AT_string (bincl_die
, DW_AT_name
);
5447 dw_die_ref new_unit
= gen_compile_unit_die (filename
);
5449 new_unit
->die_sib
= old_unit
;
5453 /* Close an include-file CU and reopen the enclosing one. */
5456 pop_compile_unit (dw_die_ref old_unit
)
5458 dw_die_ref new_unit
= old_unit
->die_sib
;
5460 old_unit
->die_sib
= NULL
;
5464 #define CHECKSUM(FOO) md5_process_bytes (&(FOO), sizeof (FOO), ctx)
5465 #define CHECKSUM_BLOCK(FOO, SIZE) md5_process_bytes ((FOO), (SIZE), ctx)
5466 #define CHECKSUM_STRING(FOO) md5_process_bytes ((FOO), strlen (FOO), ctx)
5468 /* Calculate the checksum of a location expression. */
5471 loc_checksum (dw_loc_descr_ref loc
, struct md5_ctx
*ctx
)
5476 tem
= (loc
->dtprel
<< 8) | ((unsigned int) loc
->dw_loc_opc
);
5478 hash
= hash_loc_operands (loc
, hash
);
5482 /* Calculate the checksum of an attribute. */
5485 attr_checksum (dw_attr_ref at
, struct md5_ctx
*ctx
, int *mark
)
5487 dw_loc_descr_ref loc
;
5490 CHECKSUM (at
->dw_attr
);
5492 /* We don't care that this was compiled with a different compiler
5493 snapshot; if the output is the same, that's what matters. */
5494 if (at
->dw_attr
== DW_AT_producer
)
5497 switch (AT_class (at
))
5499 case dw_val_class_const
:
5500 CHECKSUM (at
->dw_attr_val
.v
.val_int
);
5502 case dw_val_class_unsigned_const
:
5503 CHECKSUM (at
->dw_attr_val
.v
.val_unsigned
);
5505 case dw_val_class_const_double
:
5506 CHECKSUM (at
->dw_attr_val
.v
.val_double
);
5508 case dw_val_class_vec
:
5509 CHECKSUM_BLOCK (at
->dw_attr_val
.v
.val_vec
.array
,
5510 (at
->dw_attr_val
.v
.val_vec
.length
5511 * at
->dw_attr_val
.v
.val_vec
.elt_size
));
5513 case dw_val_class_flag
:
5514 CHECKSUM (at
->dw_attr_val
.v
.val_flag
);
5516 case dw_val_class_str
:
5517 CHECKSUM_STRING (AT_string (at
));
5520 case dw_val_class_addr
:
5522 gcc_assert (GET_CODE (r
) == SYMBOL_REF
);
5523 CHECKSUM_STRING (XSTR (r
, 0));
5526 case dw_val_class_offset
:
5527 CHECKSUM (at
->dw_attr_val
.v
.val_offset
);
5530 case dw_val_class_loc
:
5531 for (loc
= AT_loc (at
); loc
; loc
= loc
->dw_loc_next
)
5532 loc_checksum (loc
, ctx
);
5535 case dw_val_class_die_ref
:
5536 die_checksum (AT_ref (at
), ctx
, mark
);
5539 case dw_val_class_fde_ref
:
5540 case dw_val_class_vms_delta
:
5541 case dw_val_class_lbl_id
:
5542 case dw_val_class_lineptr
:
5543 case dw_val_class_macptr
:
5544 case dw_val_class_high_pc
:
5547 case dw_val_class_file
:
5548 CHECKSUM_STRING (AT_file (at
)->filename
);
5551 case dw_val_class_data8
:
5552 CHECKSUM (at
->dw_attr_val
.v
.val_data8
);
5560 /* Calculate the checksum of a DIE. */
5563 die_checksum (dw_die_ref die
, struct md5_ctx
*ctx
, int *mark
)
5569 /* To avoid infinite recursion. */
5572 CHECKSUM (die
->die_mark
);
5575 die
->die_mark
= ++(*mark
);
5577 CHECKSUM (die
->die_tag
);
5579 FOR_EACH_VEC_SAFE_ELT (die
->die_attr
, ix
, a
)
5580 attr_checksum (a
, ctx
, mark
);
5582 FOR_EACH_CHILD (die
, c
, die_checksum (c
, ctx
, mark
));
5586 #undef CHECKSUM_BLOCK
5587 #undef CHECKSUM_STRING
5589 /* For DWARF-4 types, include the trailing NULL when checksumming strings. */
5590 #define CHECKSUM(FOO) md5_process_bytes (&(FOO), sizeof (FOO), ctx)
5591 #define CHECKSUM_BLOCK(FOO, SIZE) md5_process_bytes ((FOO), (SIZE), ctx)
5592 #define CHECKSUM_STRING(FOO) md5_process_bytes ((FOO), strlen (FOO) + 1, ctx)
5593 #define CHECKSUM_SLEB128(FOO) checksum_sleb128 ((FOO), ctx)
5594 #define CHECKSUM_ULEB128(FOO) checksum_uleb128 ((FOO), ctx)
5595 #define CHECKSUM_ATTR(FOO) \
5596 if (FOO) attr_checksum_ordered (die->die_tag, (FOO), ctx, mark)
5598 /* Calculate the checksum of a number in signed LEB128 format. */
5601 checksum_sleb128 (HOST_WIDE_INT value
, struct md5_ctx
*ctx
)
5608 byte
= (value
& 0x7f);
5610 more
= !((value
== 0 && (byte
& 0x40) == 0)
5611 || (value
== -1 && (byte
& 0x40) != 0));
5620 /* Calculate the checksum of a number in unsigned LEB128 format. */
5623 checksum_uleb128 (unsigned HOST_WIDE_INT value
, struct md5_ctx
*ctx
)
5627 unsigned char byte
= (value
& 0x7f);
5630 /* More bytes to follow. */
5638 /* Checksum the context of the DIE. This adds the names of any
5639 surrounding namespaces or structures to the checksum. */
5642 checksum_die_context (dw_die_ref die
, struct md5_ctx
*ctx
)
5646 int tag
= die
->die_tag
;
5648 if (tag
!= DW_TAG_namespace
5649 && tag
!= DW_TAG_structure_type
5650 && tag
!= DW_TAG_class_type
)
5653 name
= get_AT_string (die
, DW_AT_name
);
5655 spec
= get_AT_ref (die
, DW_AT_specification
);
5659 if (die
->die_parent
!= NULL
)
5660 checksum_die_context (die
->die_parent
, ctx
);
5662 CHECKSUM_ULEB128 ('C');
5663 CHECKSUM_ULEB128 (tag
);
5665 CHECKSUM_STRING (name
);
5668 /* Calculate the checksum of a location expression. */
5671 loc_checksum_ordered (dw_loc_descr_ref loc
, struct md5_ctx
*ctx
)
5673 /* Special case for lone DW_OP_plus_uconst: checksum as if the location
5674 were emitted as a DW_FORM_sdata instead of a location expression. */
5675 if (loc
->dw_loc_opc
== DW_OP_plus_uconst
&& loc
->dw_loc_next
== NULL
)
5677 CHECKSUM_ULEB128 (DW_FORM_sdata
);
5678 CHECKSUM_SLEB128 ((HOST_WIDE_INT
) loc
->dw_loc_oprnd1
.v
.val_unsigned
);
5682 /* Otherwise, just checksum the raw location expression. */
5687 CHECKSUM_ULEB128 (loc
->dtprel
);
5688 CHECKSUM_ULEB128 (loc
->dw_loc_opc
);
5689 hash
= hash_loc_operands (loc
, hash
);
5691 loc
= loc
->dw_loc_next
;
5695 /* Calculate the checksum of an attribute. */
5698 attr_checksum_ordered (enum dwarf_tag tag
, dw_attr_ref at
,
5699 struct md5_ctx
*ctx
, int *mark
)
5701 dw_loc_descr_ref loc
;
5704 if (AT_class (at
) == dw_val_class_die_ref
)
5706 dw_die_ref target_die
= AT_ref (at
);
5708 /* For pointer and reference types, we checksum only the (qualified)
5709 name of the target type (if there is a name). For friend entries,
5710 we checksum only the (qualified) name of the target type or function.
5711 This allows the checksum to remain the same whether the target type
5712 is complete or not. */
5713 if ((at
->dw_attr
== DW_AT_type
5714 && (tag
== DW_TAG_pointer_type
5715 || tag
== DW_TAG_reference_type
5716 || tag
== DW_TAG_rvalue_reference_type
5717 || tag
== DW_TAG_ptr_to_member_type
))
5718 || (at
->dw_attr
== DW_AT_friend
5719 && tag
== DW_TAG_friend
))
5721 dw_attr_ref name_attr
= get_AT (target_die
, DW_AT_name
);
5723 if (name_attr
!= NULL
)
5725 dw_die_ref decl
= get_AT_ref (target_die
, DW_AT_specification
);
5729 CHECKSUM_ULEB128 ('N');
5730 CHECKSUM_ULEB128 (at
->dw_attr
);
5731 if (decl
->die_parent
!= NULL
)
5732 checksum_die_context (decl
->die_parent
, ctx
);
5733 CHECKSUM_ULEB128 ('E');
5734 CHECKSUM_STRING (AT_string (name_attr
));
5739 /* For all other references to another DIE, we check to see if the
5740 target DIE has already been visited. If it has, we emit a
5741 backward reference; if not, we descend recursively. */
5742 if (target_die
->die_mark
> 0)
5744 CHECKSUM_ULEB128 ('R');
5745 CHECKSUM_ULEB128 (at
->dw_attr
);
5746 CHECKSUM_ULEB128 (target_die
->die_mark
);
5750 dw_die_ref decl
= get_AT_ref (target_die
, DW_AT_specification
);
5754 target_die
->die_mark
= ++(*mark
);
5755 CHECKSUM_ULEB128 ('T');
5756 CHECKSUM_ULEB128 (at
->dw_attr
);
5757 if (decl
->die_parent
!= NULL
)
5758 checksum_die_context (decl
->die_parent
, ctx
);
5759 die_checksum_ordered (target_die
, ctx
, mark
);
5764 CHECKSUM_ULEB128 ('A');
5765 CHECKSUM_ULEB128 (at
->dw_attr
);
5767 switch (AT_class (at
))
5769 case dw_val_class_const
:
5770 CHECKSUM_ULEB128 (DW_FORM_sdata
);
5771 CHECKSUM_SLEB128 (at
->dw_attr_val
.v
.val_int
);
5774 case dw_val_class_unsigned_const
:
5775 CHECKSUM_ULEB128 (DW_FORM_sdata
);
5776 CHECKSUM_SLEB128 ((int) at
->dw_attr_val
.v
.val_unsigned
);
5779 case dw_val_class_const_double
:
5780 CHECKSUM_ULEB128 (DW_FORM_block
);
5781 CHECKSUM_ULEB128 (sizeof (at
->dw_attr_val
.v
.val_double
));
5782 CHECKSUM (at
->dw_attr_val
.v
.val_double
);
5785 case dw_val_class_vec
:
5786 CHECKSUM_ULEB128 (DW_FORM_block
);
5787 CHECKSUM_ULEB128 (at
->dw_attr_val
.v
.val_vec
.length
5788 * at
->dw_attr_val
.v
.val_vec
.elt_size
);
5789 CHECKSUM_BLOCK (at
->dw_attr_val
.v
.val_vec
.array
,
5790 (at
->dw_attr_val
.v
.val_vec
.length
5791 * at
->dw_attr_val
.v
.val_vec
.elt_size
));
5794 case dw_val_class_flag
:
5795 CHECKSUM_ULEB128 (DW_FORM_flag
);
5796 CHECKSUM_ULEB128 (at
->dw_attr_val
.v
.val_flag
? 1 : 0);
5799 case dw_val_class_str
:
5800 CHECKSUM_ULEB128 (DW_FORM_string
);
5801 CHECKSUM_STRING (AT_string (at
));
5804 case dw_val_class_addr
:
5806 gcc_assert (GET_CODE (r
) == SYMBOL_REF
);
5807 CHECKSUM_ULEB128 (DW_FORM_string
);
5808 CHECKSUM_STRING (XSTR (r
, 0));
5811 case dw_val_class_offset
:
5812 CHECKSUM_ULEB128 (DW_FORM_sdata
);
5813 CHECKSUM_ULEB128 (at
->dw_attr_val
.v
.val_offset
);
5816 case dw_val_class_loc
:
5817 for (loc
= AT_loc (at
); loc
; loc
= loc
->dw_loc_next
)
5818 loc_checksum_ordered (loc
, ctx
);
5821 case dw_val_class_fde_ref
:
5822 case dw_val_class_lbl_id
:
5823 case dw_val_class_lineptr
:
5824 case dw_val_class_macptr
:
5825 case dw_val_class_high_pc
:
5828 case dw_val_class_file
:
5829 CHECKSUM_ULEB128 (DW_FORM_string
);
5830 CHECKSUM_STRING (AT_file (at
)->filename
);
5833 case dw_val_class_data8
:
5834 CHECKSUM (at
->dw_attr_val
.v
.val_data8
);
5842 struct checksum_attributes
5844 dw_attr_ref at_name
;
5845 dw_attr_ref at_type
;
5846 dw_attr_ref at_friend
;
5847 dw_attr_ref at_accessibility
;
5848 dw_attr_ref at_address_class
;
5849 dw_attr_ref at_allocated
;
5850 dw_attr_ref at_artificial
;
5851 dw_attr_ref at_associated
;
5852 dw_attr_ref at_binary_scale
;
5853 dw_attr_ref at_bit_offset
;
5854 dw_attr_ref at_bit_size
;
5855 dw_attr_ref at_bit_stride
;
5856 dw_attr_ref at_byte_size
;
5857 dw_attr_ref at_byte_stride
;
5858 dw_attr_ref at_const_value
;
5859 dw_attr_ref at_containing_type
;
5860 dw_attr_ref at_count
;
5861 dw_attr_ref at_data_location
;
5862 dw_attr_ref at_data_member_location
;
5863 dw_attr_ref at_decimal_scale
;
5864 dw_attr_ref at_decimal_sign
;
5865 dw_attr_ref at_default_value
;
5866 dw_attr_ref at_digit_count
;
5867 dw_attr_ref at_discr
;
5868 dw_attr_ref at_discr_list
;
5869 dw_attr_ref at_discr_value
;
5870 dw_attr_ref at_encoding
;
5871 dw_attr_ref at_endianity
;
5872 dw_attr_ref at_explicit
;
5873 dw_attr_ref at_is_optional
;
5874 dw_attr_ref at_location
;
5875 dw_attr_ref at_lower_bound
;
5876 dw_attr_ref at_mutable
;
5877 dw_attr_ref at_ordering
;
5878 dw_attr_ref at_picture_string
;
5879 dw_attr_ref at_prototyped
;
5880 dw_attr_ref at_small
;
5881 dw_attr_ref at_segment
;
5882 dw_attr_ref at_string_length
;
5883 dw_attr_ref at_threads_scaled
;
5884 dw_attr_ref at_upper_bound
;
5885 dw_attr_ref at_use_location
;
5886 dw_attr_ref at_use_UTF8
;
5887 dw_attr_ref at_variable_parameter
;
5888 dw_attr_ref at_virtuality
;
5889 dw_attr_ref at_visibility
;
5890 dw_attr_ref at_vtable_elem_location
;
5893 /* Collect the attributes that we will want to use for the checksum. */
5896 collect_checksum_attributes (struct checksum_attributes
*attrs
, dw_die_ref die
)
5901 FOR_EACH_VEC_SAFE_ELT (die
->die_attr
, ix
, a
)
5912 attrs
->at_friend
= a
;
5914 case DW_AT_accessibility
:
5915 attrs
->at_accessibility
= a
;
5917 case DW_AT_address_class
:
5918 attrs
->at_address_class
= a
;
5920 case DW_AT_allocated
:
5921 attrs
->at_allocated
= a
;
5923 case DW_AT_artificial
:
5924 attrs
->at_artificial
= a
;
5926 case DW_AT_associated
:
5927 attrs
->at_associated
= a
;
5929 case DW_AT_binary_scale
:
5930 attrs
->at_binary_scale
= a
;
5932 case DW_AT_bit_offset
:
5933 attrs
->at_bit_offset
= a
;
5935 case DW_AT_bit_size
:
5936 attrs
->at_bit_size
= a
;
5938 case DW_AT_bit_stride
:
5939 attrs
->at_bit_stride
= a
;
5941 case DW_AT_byte_size
:
5942 attrs
->at_byte_size
= a
;
5944 case DW_AT_byte_stride
:
5945 attrs
->at_byte_stride
= a
;
5947 case DW_AT_const_value
:
5948 attrs
->at_const_value
= a
;
5950 case DW_AT_containing_type
:
5951 attrs
->at_containing_type
= a
;
5954 attrs
->at_count
= a
;
5956 case DW_AT_data_location
:
5957 attrs
->at_data_location
= a
;
5959 case DW_AT_data_member_location
:
5960 attrs
->at_data_member_location
= a
;
5962 case DW_AT_decimal_scale
:
5963 attrs
->at_decimal_scale
= a
;
5965 case DW_AT_decimal_sign
:
5966 attrs
->at_decimal_sign
= a
;
5968 case DW_AT_default_value
:
5969 attrs
->at_default_value
= a
;
5971 case DW_AT_digit_count
:
5972 attrs
->at_digit_count
= a
;
5975 attrs
->at_discr
= a
;
5977 case DW_AT_discr_list
:
5978 attrs
->at_discr_list
= a
;
5980 case DW_AT_discr_value
:
5981 attrs
->at_discr_value
= a
;
5983 case DW_AT_encoding
:
5984 attrs
->at_encoding
= a
;
5986 case DW_AT_endianity
:
5987 attrs
->at_endianity
= a
;
5989 case DW_AT_explicit
:
5990 attrs
->at_explicit
= a
;
5992 case DW_AT_is_optional
:
5993 attrs
->at_is_optional
= a
;
5995 case DW_AT_location
:
5996 attrs
->at_location
= a
;
5998 case DW_AT_lower_bound
:
5999 attrs
->at_lower_bound
= a
;
6002 attrs
->at_mutable
= a
;
6004 case DW_AT_ordering
:
6005 attrs
->at_ordering
= a
;
6007 case DW_AT_picture_string
:
6008 attrs
->at_picture_string
= a
;
6010 case DW_AT_prototyped
:
6011 attrs
->at_prototyped
= a
;
6014 attrs
->at_small
= a
;
6017 attrs
->at_segment
= a
;
6019 case DW_AT_string_length
:
6020 attrs
->at_string_length
= a
;
6022 case DW_AT_threads_scaled
:
6023 attrs
->at_threads_scaled
= a
;
6025 case DW_AT_upper_bound
:
6026 attrs
->at_upper_bound
= a
;
6028 case DW_AT_use_location
:
6029 attrs
->at_use_location
= a
;
6031 case DW_AT_use_UTF8
:
6032 attrs
->at_use_UTF8
= a
;
6034 case DW_AT_variable_parameter
:
6035 attrs
->at_variable_parameter
= a
;
6037 case DW_AT_virtuality
:
6038 attrs
->at_virtuality
= a
;
6040 case DW_AT_visibility
:
6041 attrs
->at_visibility
= a
;
6043 case DW_AT_vtable_elem_location
:
6044 attrs
->at_vtable_elem_location
= a
;
6052 /* Calculate the checksum of a DIE, using an ordered subset of attributes. */
6055 die_checksum_ordered (dw_die_ref die
, struct md5_ctx
*ctx
, int *mark
)
6059 struct checksum_attributes attrs
;
6061 CHECKSUM_ULEB128 ('D');
6062 CHECKSUM_ULEB128 (die
->die_tag
);
6064 memset (&attrs
, 0, sizeof (attrs
));
6066 decl
= get_AT_ref (die
, DW_AT_specification
);
6068 collect_checksum_attributes (&attrs
, decl
);
6069 collect_checksum_attributes (&attrs
, die
);
6071 CHECKSUM_ATTR (attrs
.at_name
);
6072 CHECKSUM_ATTR (attrs
.at_accessibility
);
6073 CHECKSUM_ATTR (attrs
.at_address_class
);
6074 CHECKSUM_ATTR (attrs
.at_allocated
);
6075 CHECKSUM_ATTR (attrs
.at_artificial
);
6076 CHECKSUM_ATTR (attrs
.at_associated
);
6077 CHECKSUM_ATTR (attrs
.at_binary_scale
);
6078 CHECKSUM_ATTR (attrs
.at_bit_offset
);
6079 CHECKSUM_ATTR (attrs
.at_bit_size
);
6080 CHECKSUM_ATTR (attrs
.at_bit_stride
);
6081 CHECKSUM_ATTR (attrs
.at_byte_size
);
6082 CHECKSUM_ATTR (attrs
.at_byte_stride
);
6083 CHECKSUM_ATTR (attrs
.at_const_value
);
6084 CHECKSUM_ATTR (attrs
.at_containing_type
);
6085 CHECKSUM_ATTR (attrs
.at_count
);
6086 CHECKSUM_ATTR (attrs
.at_data_location
);
6087 CHECKSUM_ATTR (attrs
.at_data_member_location
);
6088 CHECKSUM_ATTR (attrs
.at_decimal_scale
);
6089 CHECKSUM_ATTR (attrs
.at_decimal_sign
);
6090 CHECKSUM_ATTR (attrs
.at_default_value
);
6091 CHECKSUM_ATTR (attrs
.at_digit_count
);
6092 CHECKSUM_ATTR (attrs
.at_discr
);
6093 CHECKSUM_ATTR (attrs
.at_discr_list
);
6094 CHECKSUM_ATTR (attrs
.at_discr_value
);
6095 CHECKSUM_ATTR (attrs
.at_encoding
);
6096 CHECKSUM_ATTR (attrs
.at_endianity
);
6097 CHECKSUM_ATTR (attrs
.at_explicit
);
6098 CHECKSUM_ATTR (attrs
.at_is_optional
);
6099 CHECKSUM_ATTR (attrs
.at_location
);
6100 CHECKSUM_ATTR (attrs
.at_lower_bound
);
6101 CHECKSUM_ATTR (attrs
.at_mutable
);
6102 CHECKSUM_ATTR (attrs
.at_ordering
);
6103 CHECKSUM_ATTR (attrs
.at_picture_string
);
6104 CHECKSUM_ATTR (attrs
.at_prototyped
);
6105 CHECKSUM_ATTR (attrs
.at_small
);
6106 CHECKSUM_ATTR (attrs
.at_segment
);
6107 CHECKSUM_ATTR (attrs
.at_string_length
);
6108 CHECKSUM_ATTR (attrs
.at_threads_scaled
);
6109 CHECKSUM_ATTR (attrs
.at_upper_bound
);
6110 CHECKSUM_ATTR (attrs
.at_use_location
);
6111 CHECKSUM_ATTR (attrs
.at_use_UTF8
);
6112 CHECKSUM_ATTR (attrs
.at_variable_parameter
);
6113 CHECKSUM_ATTR (attrs
.at_virtuality
);
6114 CHECKSUM_ATTR (attrs
.at_visibility
);
6115 CHECKSUM_ATTR (attrs
.at_vtable_elem_location
);
6116 CHECKSUM_ATTR (attrs
.at_type
);
6117 CHECKSUM_ATTR (attrs
.at_friend
);
6119 /* Checksum the child DIEs. */
6122 dw_attr_ref name_attr
;
6125 name_attr
= get_AT (c
, DW_AT_name
);
6126 if (is_template_instantiation (c
))
6128 /* Ignore instantiations of member type and function templates. */
6130 else if (name_attr
!= NULL
6131 && (is_type_die (c
) || c
->die_tag
== DW_TAG_subprogram
))
6133 /* Use a shallow checksum for named nested types and member
6135 CHECKSUM_ULEB128 ('S');
6136 CHECKSUM_ULEB128 (c
->die_tag
);
6137 CHECKSUM_STRING (AT_string (name_attr
));
6141 /* Use a deep checksum for other children. */
6142 /* Mark this DIE so it gets processed when unmarking. */
6143 if (c
->die_mark
== 0)
6145 die_checksum_ordered (c
, ctx
, mark
);
6147 } while (c
!= die
->die_child
);
6149 CHECKSUM_ULEB128 (0);
6152 /* Add a type name and tag to a hash. */
6154 die_odr_checksum (int tag
, const char *name
, md5_ctx
*ctx
)
6156 CHECKSUM_ULEB128 (tag
);
6157 CHECKSUM_STRING (name
);
6161 #undef CHECKSUM_STRING
6162 #undef CHECKSUM_ATTR
6163 #undef CHECKSUM_LEB128
6164 #undef CHECKSUM_ULEB128
6166 /* Generate the type signature for DIE. This is computed by generating an
6167 MD5 checksum over the DIE's tag, its relevant attributes, and its
6168 children. Attributes that are references to other DIEs are processed
6169 by recursion, using the MARK field to prevent infinite recursion.
6170 If the DIE is nested inside a namespace or another type, we also
6171 need to include that context in the signature. The lower 64 bits
6172 of the resulting MD5 checksum comprise the signature. */
6175 generate_type_signature (dw_die_ref die
, comdat_type_node
*type_node
)
6179 unsigned char checksum
[16];
6184 name
= get_AT_string (die
, DW_AT_name
);
6185 decl
= get_AT_ref (die
, DW_AT_specification
);
6186 parent
= get_die_parent (die
);
6188 /* First, compute a signature for just the type name (and its surrounding
6189 context, if any. This is stored in the type unit DIE for link-time
6190 ODR (one-definition rule) checking. */
6192 if (is_cxx () && name
!= NULL
)
6194 md5_init_ctx (&ctx
);
6196 /* Checksum the names of surrounding namespaces and structures. */
6198 checksum_die_context (parent
, &ctx
);
6200 /* Checksum the current DIE. */
6201 die_odr_checksum (die
->die_tag
, name
, &ctx
);
6202 md5_finish_ctx (&ctx
, checksum
);
6204 add_AT_data8 (type_node
->root_die
, DW_AT_GNU_odr_signature
, &checksum
[8]);
6207 /* Next, compute the complete type signature. */
6209 md5_init_ctx (&ctx
);
6211 die
->die_mark
= mark
;
6213 /* Checksum the names of surrounding namespaces and structures. */
6215 checksum_die_context (parent
, &ctx
);
6217 /* Checksum the DIE and its children. */
6218 die_checksum_ordered (die
, &ctx
, &mark
);
6219 unmark_all_dies (die
);
6220 md5_finish_ctx (&ctx
, checksum
);
6222 /* Store the signature in the type node and link the type DIE and the
6223 type node together. */
6224 memcpy (type_node
->signature
, &checksum
[16 - DWARF_TYPE_SIGNATURE_SIZE
],
6225 DWARF_TYPE_SIGNATURE_SIZE
);
6226 die
->comdat_type_p
= true;
6227 die
->die_id
.die_type_node
= type_node
;
6228 type_node
->type_die
= die
;
6230 /* If the DIE is a specification, link its declaration to the type node
6234 decl
->comdat_type_p
= true;
6235 decl
->die_id
.die_type_node
= type_node
;
6239 /* Do the location expressions look same? */
6241 same_loc_p (dw_loc_descr_ref loc1
, dw_loc_descr_ref loc2
, int *mark
)
6243 return loc1
->dw_loc_opc
== loc2
->dw_loc_opc
6244 && same_dw_val_p (&loc1
->dw_loc_oprnd1
, &loc2
->dw_loc_oprnd1
, mark
)
6245 && same_dw_val_p (&loc1
->dw_loc_oprnd2
, &loc2
->dw_loc_oprnd2
, mark
);
6248 /* Do the values look the same? */
6250 same_dw_val_p (const dw_val_node
*v1
, const dw_val_node
*v2
, int *mark
)
6252 dw_loc_descr_ref loc1
, loc2
;
6255 if (v1
->val_class
!= v2
->val_class
)
6258 switch (v1
->val_class
)
6260 case dw_val_class_const
:
6261 return v1
->v
.val_int
== v2
->v
.val_int
;
6262 case dw_val_class_unsigned_const
:
6263 return v1
->v
.val_unsigned
== v2
->v
.val_unsigned
;
6264 case dw_val_class_const_double
:
6265 return v1
->v
.val_double
.high
== v2
->v
.val_double
.high
6266 && v1
->v
.val_double
.low
== v2
->v
.val_double
.low
;
6267 case dw_val_class_vec
:
6268 if (v1
->v
.val_vec
.length
!= v2
->v
.val_vec
.length
6269 || v1
->v
.val_vec
.elt_size
!= v2
->v
.val_vec
.elt_size
)
6271 if (memcmp (v1
->v
.val_vec
.array
, v2
->v
.val_vec
.array
,
6272 v1
->v
.val_vec
.length
* v1
->v
.val_vec
.elt_size
))
6275 case dw_val_class_flag
:
6276 return v1
->v
.val_flag
== v2
->v
.val_flag
;
6277 case dw_val_class_str
:
6278 return !strcmp (v1
->v
.val_str
->str
, v2
->v
.val_str
->str
);
6280 case dw_val_class_addr
:
6281 r1
= v1
->v
.val_addr
;
6282 r2
= v2
->v
.val_addr
;
6283 if (GET_CODE (r1
) != GET_CODE (r2
))
6285 return !rtx_equal_p (r1
, r2
);
6287 case dw_val_class_offset
:
6288 return v1
->v
.val_offset
== v2
->v
.val_offset
;
6290 case dw_val_class_loc
:
6291 for (loc1
= v1
->v
.val_loc
, loc2
= v2
->v
.val_loc
;
6293 loc1
= loc1
->dw_loc_next
, loc2
= loc2
->dw_loc_next
)
6294 if (!same_loc_p (loc1
, loc2
, mark
))
6296 return !loc1
&& !loc2
;
6298 case dw_val_class_die_ref
:
6299 return same_die_p (v1
->v
.val_die_ref
.die
, v2
->v
.val_die_ref
.die
, mark
);
6301 case dw_val_class_fde_ref
:
6302 case dw_val_class_vms_delta
:
6303 case dw_val_class_lbl_id
:
6304 case dw_val_class_lineptr
:
6305 case dw_val_class_macptr
:
6306 case dw_val_class_high_pc
:
6309 case dw_val_class_file
:
6310 return v1
->v
.val_file
== v2
->v
.val_file
;
6312 case dw_val_class_data8
:
6313 return !memcmp (v1
->v
.val_data8
, v2
->v
.val_data8
, 8);
6320 /* Do the attributes look the same? */
6323 same_attr_p (dw_attr_ref at1
, dw_attr_ref at2
, int *mark
)
6325 if (at1
->dw_attr
!= at2
->dw_attr
)
6328 /* We don't care that this was compiled with a different compiler
6329 snapshot; if the output is the same, that's what matters. */
6330 if (at1
->dw_attr
== DW_AT_producer
)
6333 return same_dw_val_p (&at1
->dw_attr_val
, &at2
->dw_attr_val
, mark
);
6336 /* Do the dies look the same? */
6339 same_die_p (dw_die_ref die1
, dw_die_ref die2
, int *mark
)
6345 /* To avoid infinite recursion. */
6347 return die1
->die_mark
== die2
->die_mark
;
6348 die1
->die_mark
= die2
->die_mark
= ++(*mark
);
6350 if (die1
->die_tag
!= die2
->die_tag
)
6353 if (vec_safe_length (die1
->die_attr
) != vec_safe_length (die2
->die_attr
))
6356 FOR_EACH_VEC_SAFE_ELT (die1
->die_attr
, ix
, a1
)
6357 if (!same_attr_p (a1
, &(*die2
->die_attr
)[ix
], mark
))
6360 c1
= die1
->die_child
;
6361 c2
= die2
->die_child
;
6370 if (!same_die_p (c1
, c2
, mark
))
6374 if (c1
== die1
->die_child
)
6376 if (c2
== die2
->die_child
)
6386 /* Do the dies look the same? Wrapper around same_die_p. */
6389 same_die_p_wrap (dw_die_ref die1
, dw_die_ref die2
)
6392 int ret
= same_die_p (die1
, die2
, &mark
);
6394 unmark_all_dies (die1
);
6395 unmark_all_dies (die2
);
6400 /* The prefix to attach to symbols on DIEs in the current comdat debug
6402 static const char *comdat_symbol_id
;
6404 /* The index of the current symbol within the current comdat CU. */
6405 static unsigned int comdat_symbol_number
;
6407 /* Calculate the MD5 checksum of the compilation unit DIE UNIT_DIE and its
6408 children, and set comdat_symbol_id accordingly. */
6411 compute_section_prefix (dw_die_ref unit_die
)
6413 const char *die_name
= get_AT_string (unit_die
, DW_AT_name
);
6414 const char *base
= die_name
? lbasename (die_name
) : "anonymous";
6415 char *name
= XALLOCAVEC (char, strlen (base
) + 64);
6418 unsigned char checksum
[16];
6421 /* Compute the checksum of the DIE, then append part of it as hex digits to
6422 the name filename of the unit. */
6424 md5_init_ctx (&ctx
);
6426 die_checksum (unit_die
, &ctx
, &mark
);
6427 unmark_all_dies (unit_die
);
6428 md5_finish_ctx (&ctx
, checksum
);
6430 sprintf (name
, "%s.", base
);
6431 clean_symbol_name (name
);
6433 p
= name
+ strlen (name
);
6434 for (i
= 0; i
< 4; i
++)
6436 sprintf (p
, "%.2x", checksum
[i
]);
6440 comdat_symbol_id
= unit_die
->die_id
.die_symbol
= xstrdup (name
);
6441 comdat_symbol_number
= 0;
6444 /* Returns nonzero if DIE represents a type, in the sense of TYPE_P. */
6447 is_type_die (dw_die_ref die
)
6449 switch (die
->die_tag
)
6451 case DW_TAG_array_type
:
6452 case DW_TAG_class_type
:
6453 case DW_TAG_interface_type
:
6454 case DW_TAG_enumeration_type
:
6455 case DW_TAG_pointer_type
:
6456 case DW_TAG_reference_type
:
6457 case DW_TAG_rvalue_reference_type
:
6458 case DW_TAG_string_type
:
6459 case DW_TAG_structure_type
:
6460 case DW_TAG_subroutine_type
:
6461 case DW_TAG_union_type
:
6462 case DW_TAG_ptr_to_member_type
:
6463 case DW_TAG_set_type
:
6464 case DW_TAG_subrange_type
:
6465 case DW_TAG_base_type
:
6466 case DW_TAG_const_type
:
6467 case DW_TAG_file_type
:
6468 case DW_TAG_packed_type
:
6469 case DW_TAG_volatile_type
:
6470 case DW_TAG_typedef
:
6477 /* Returns 1 iff C is the sort of DIE that should go into a COMDAT CU.
6478 Basically, we want to choose the bits that are likely to be shared between
6479 compilations (types) and leave out the bits that are specific to individual
6480 compilations (functions). */
6483 is_comdat_die (dw_die_ref c
)
6485 /* I think we want to leave base types and __vtbl_ptr_type in the main CU, as
6486 we do for stabs. The advantage is a greater likelihood of sharing between
6487 objects that don't include headers in the same order (and therefore would
6488 put the base types in a different comdat). jason 8/28/00 */
6490 if (c
->die_tag
== DW_TAG_base_type
)
6493 if (c
->die_tag
== DW_TAG_pointer_type
6494 || c
->die_tag
== DW_TAG_reference_type
6495 || c
->die_tag
== DW_TAG_rvalue_reference_type
6496 || c
->die_tag
== DW_TAG_const_type
6497 || c
->die_tag
== DW_TAG_volatile_type
)
6499 dw_die_ref t
= get_AT_ref (c
, DW_AT_type
);
6501 return t
? is_comdat_die (t
) : 0;
6504 return is_type_die (c
);
6507 /* Returns 1 iff C is the sort of DIE that might be referred to from another
6508 compilation unit. */
6511 is_symbol_die (dw_die_ref c
)
6513 return (is_type_die (c
)
6514 || is_declaration_die (c
)
6515 || c
->die_tag
== DW_TAG_namespace
6516 || c
->die_tag
== DW_TAG_module
);
6519 /* Returns true iff C is a compile-unit DIE. */
6522 is_cu_die (dw_die_ref c
)
6524 return c
&& c
->die_tag
== DW_TAG_compile_unit
;
6527 /* Returns true iff C is a unit DIE of some sort. */
6530 is_unit_die (dw_die_ref c
)
6532 return c
&& (c
->die_tag
== DW_TAG_compile_unit
6533 || c
->die_tag
== DW_TAG_partial_unit
6534 || c
->die_tag
== DW_TAG_type_unit
);
6537 /* Returns true iff C is a namespace DIE. */
6540 is_namespace_die (dw_die_ref c
)
6542 return c
&& c
->die_tag
== DW_TAG_namespace
;
6545 /* Returns true iff C is a class or structure DIE. */
6548 is_class_die (dw_die_ref c
)
6550 return c
&& (c
->die_tag
== DW_TAG_class_type
6551 || c
->die_tag
== DW_TAG_structure_type
);
6554 /* Return non-zero if this DIE is a template parameter. */
6557 is_template_parameter (dw_die_ref die
)
6559 switch (die
->die_tag
)
6561 case DW_TAG_template_type_param
:
6562 case DW_TAG_template_value_param
:
6563 case DW_TAG_GNU_template_template_param
:
6564 case DW_TAG_GNU_template_parameter_pack
:
6571 /* Return non-zero if this DIE represents a template instantiation. */
6574 is_template_instantiation (dw_die_ref die
)
6578 if (!is_type_die (die
) && die
->die_tag
!= DW_TAG_subprogram
)
6580 FOR_EACH_CHILD (die
, c
, if (is_template_parameter (c
)) return true);
6585 gen_internal_sym (const char *prefix
)
6589 ASM_GENERATE_INTERNAL_LABEL (buf
, prefix
, label_num
++);
6590 return xstrdup (buf
);
6593 /* Assign symbols to all worthy DIEs under DIE. */
6596 assign_symbol_names (dw_die_ref die
)
6600 if (is_symbol_die (die
) && !die
->comdat_type_p
)
6602 if (comdat_symbol_id
)
6604 char *p
= XALLOCAVEC (char, strlen (comdat_symbol_id
) + 64);
6606 sprintf (p
, "%s.%s.%x", DIE_LABEL_PREFIX
,
6607 comdat_symbol_id
, comdat_symbol_number
++);
6608 die
->die_id
.die_symbol
= xstrdup (p
);
6611 die
->die_id
.die_symbol
= gen_internal_sym ("LDIE");
6614 FOR_EACH_CHILD (die
, c
, assign_symbol_names (c
));
6617 struct cu_hash_table_entry
6620 unsigned min_comdat_num
, max_comdat_num
;
6621 struct cu_hash_table_entry
*next
;
6624 /* Helpers to manipulate hash table of CUs. */
6626 struct cu_hash_table_entry_hasher
6628 typedef cu_hash_table_entry value_type
;
6629 typedef die_struct compare_type
;
6630 static inline hashval_t
hash (const value_type
*);
6631 static inline bool equal (const value_type
*, const compare_type
*);
6632 static inline void remove (value_type
*);
6636 cu_hash_table_entry_hasher::hash (const value_type
*entry
)
6638 return htab_hash_string (entry
->cu
->die_id
.die_symbol
);
6642 cu_hash_table_entry_hasher::equal (const value_type
*entry1
,
6643 const compare_type
*entry2
)
6645 return !strcmp (entry1
->cu
->die_id
.die_symbol
, entry2
->die_id
.die_symbol
);
6649 cu_hash_table_entry_hasher::remove (value_type
*entry
)
6651 struct cu_hash_table_entry
*next
;
6661 typedef hash_table
<cu_hash_table_entry_hasher
> cu_hash_type
;
6663 /* Check whether we have already seen this CU and set up SYM_NUM
6666 check_duplicate_cu (dw_die_ref cu
, cu_hash_type htable
, unsigned int *sym_num
)
6668 struct cu_hash_table_entry dummy
;
6669 struct cu_hash_table_entry
**slot
, *entry
, *last
= &dummy
;
6671 dummy
.max_comdat_num
= 0;
6673 slot
= htable
.find_slot_with_hash (cu
,
6674 htab_hash_string (cu
->die_id
.die_symbol
),
6678 for (; entry
; last
= entry
, entry
= entry
->next
)
6680 if (same_die_p_wrap (cu
, entry
->cu
))
6686 *sym_num
= entry
->min_comdat_num
;
6690 entry
= XCNEW (struct cu_hash_table_entry
);
6692 entry
->min_comdat_num
= *sym_num
= last
->max_comdat_num
;
6693 entry
->next
= *slot
;
6699 /* Record SYM_NUM to record of CU in HTABLE. */
6701 record_comdat_symbol_number (dw_die_ref cu
, cu_hash_type htable
,
6702 unsigned int sym_num
)
6704 struct cu_hash_table_entry
**slot
, *entry
;
6706 slot
= htable
.find_slot_with_hash (cu
,
6707 htab_hash_string (cu
->die_id
.die_symbol
),
6711 entry
->max_comdat_num
= sym_num
;
6714 /* Traverse the DIE (which is always comp_unit_die), and set up
6715 additional compilation units for each of the include files we see
6716 bracketed by BINCL/EINCL. */
6719 break_out_includes (dw_die_ref die
)
6722 dw_die_ref unit
= NULL
;
6723 limbo_die_node
*node
, **pnode
;
6724 cu_hash_type cu_hash_table
;
6728 dw_die_ref prev
= c
;
6730 while (c
->die_tag
== DW_TAG_GNU_BINCL
|| c
->die_tag
== DW_TAG_GNU_EINCL
6731 || (unit
&& is_comdat_die (c
)))
6733 dw_die_ref next
= c
->die_sib
;
6735 /* This DIE is for a secondary CU; remove it from the main one. */
6736 remove_child_with_prev (c
, prev
);
6738 if (c
->die_tag
== DW_TAG_GNU_BINCL
)
6739 unit
= push_new_compile_unit (unit
, c
);
6740 else if (c
->die_tag
== DW_TAG_GNU_EINCL
)
6741 unit
= pop_compile_unit (unit
);
6743 add_child_die (unit
, c
);
6745 if (c
== die
->die_child
)
6748 } while (c
!= die
->die_child
);
6751 /* We can only use this in debugging, since the frontend doesn't check
6752 to make sure that we leave every include file we enter. */
6756 assign_symbol_names (die
);
6757 cu_hash_table
.create (10);
6758 for (node
= limbo_die_list
, pnode
= &limbo_die_list
;
6764 compute_section_prefix (node
->die
);
6765 is_dupl
= check_duplicate_cu (node
->die
, cu_hash_table
,
6766 &comdat_symbol_number
);
6767 assign_symbol_names (node
->die
);
6769 *pnode
= node
->next
;
6772 pnode
= &node
->next
;
6773 record_comdat_symbol_number (node
->die
, cu_hash_table
,
6774 comdat_symbol_number
);
6777 cu_hash_table
.dispose ();
6780 /* Return non-zero if this DIE is a declaration. */
6783 is_declaration_die (dw_die_ref die
)
6788 FOR_EACH_VEC_SAFE_ELT (die
->die_attr
, ix
, a
)
6789 if (a
->dw_attr
== DW_AT_declaration
)
6795 /* Return non-zero if this DIE is nested inside a subprogram. */
6798 is_nested_in_subprogram (dw_die_ref die
)
6800 dw_die_ref decl
= get_AT_ref (die
, DW_AT_specification
);
6804 return local_scope_p (decl
);
6807 /* Return non-zero if this DIE contains a defining declaration of a
6811 contains_subprogram_definition (dw_die_ref die
)
6815 if (die
->die_tag
== DW_TAG_subprogram
&& ! is_declaration_die (die
))
6817 FOR_EACH_CHILD (die
, c
, if (contains_subprogram_definition (c
)) return 1);
6821 /* Return non-zero if this is a type DIE that should be moved to a
6822 COMDAT .debug_types section. */
6825 should_move_die_to_comdat (dw_die_ref die
)
6827 switch (die
->die_tag
)
6829 case DW_TAG_class_type
:
6830 case DW_TAG_structure_type
:
6831 case DW_TAG_enumeration_type
:
6832 case DW_TAG_union_type
:
6833 /* Don't move declarations, inlined instances, or types nested in a
6835 if (is_declaration_die (die
)
6836 || get_AT (die
, DW_AT_abstract_origin
)
6837 || is_nested_in_subprogram (die
))
6839 /* A type definition should never contain a subprogram definition. */
6840 gcc_assert (!contains_subprogram_definition (die
));
6842 case DW_TAG_array_type
:
6843 case DW_TAG_interface_type
:
6844 case DW_TAG_pointer_type
:
6845 case DW_TAG_reference_type
:
6846 case DW_TAG_rvalue_reference_type
:
6847 case DW_TAG_string_type
:
6848 case DW_TAG_subroutine_type
:
6849 case DW_TAG_ptr_to_member_type
:
6850 case DW_TAG_set_type
:
6851 case DW_TAG_subrange_type
:
6852 case DW_TAG_base_type
:
6853 case DW_TAG_const_type
:
6854 case DW_TAG_file_type
:
6855 case DW_TAG_packed_type
:
6856 case DW_TAG_volatile_type
:
6857 case DW_TAG_typedef
:
6863 /* Make a clone of DIE. */
6866 clone_die (dw_die_ref die
)
6872 clone
= ggc_alloc_cleared_die_node ();
6873 clone
->die_tag
= die
->die_tag
;
6875 FOR_EACH_VEC_SAFE_ELT (die
->die_attr
, ix
, a
)
6876 add_dwarf_attr (clone
, a
);
6881 /* Make a clone of the tree rooted at DIE. */
6884 clone_tree (dw_die_ref die
)
6887 dw_die_ref clone
= clone_die (die
);
6889 FOR_EACH_CHILD (die
, c
, add_child_die (clone
, clone_tree (c
)));
6894 /* Make a clone of DIE as a declaration. */
6897 clone_as_declaration (dw_die_ref die
)
6904 /* If the DIE is already a declaration, just clone it. */
6905 if (is_declaration_die (die
))
6906 return clone_die (die
);
6908 /* If the DIE is a specification, just clone its declaration DIE. */
6909 decl
= get_AT_ref (die
, DW_AT_specification
);
6912 clone
= clone_die (decl
);
6913 if (die
->comdat_type_p
)
6914 add_AT_die_ref (clone
, DW_AT_signature
, die
);
6918 clone
= ggc_alloc_cleared_die_node ();
6919 clone
->die_tag
= die
->die_tag
;
6921 FOR_EACH_VEC_SAFE_ELT (die
->die_attr
, ix
, a
)
6923 /* We don't want to copy over all attributes.
6924 For example we don't want DW_AT_byte_size because otherwise we will no
6925 longer have a declaration and GDB will treat it as a definition. */
6929 case DW_AT_artificial
:
6930 case DW_AT_containing_type
:
6931 case DW_AT_external
:
6934 case DW_AT_virtuality
:
6935 case DW_AT_linkage_name
:
6936 case DW_AT_MIPS_linkage_name
:
6937 add_dwarf_attr (clone
, a
);
6939 case DW_AT_byte_size
:
6945 if (die
->comdat_type_p
)
6946 add_AT_die_ref (clone
, DW_AT_signature
, die
);
6948 add_AT_flag (clone
, DW_AT_declaration
, 1);
6953 /* Structure to map a DIE in one CU to its copy in a comdat type unit. */
6955 struct decl_table_entry
6961 /* Helpers to manipulate hash table of copied declarations. */
6963 /* Hashtable helpers. */
6965 struct decl_table_entry_hasher
: typed_free_remove
<decl_table_entry
>
6967 typedef decl_table_entry value_type
;
6968 typedef die_struct compare_type
;
6969 static inline hashval_t
hash (const value_type
*);
6970 static inline bool equal (const value_type
*, const compare_type
*);
6974 decl_table_entry_hasher::hash (const value_type
*entry
)
6976 return htab_hash_pointer (entry
->orig
);
6980 decl_table_entry_hasher::equal (const value_type
*entry1
,
6981 const compare_type
*entry2
)
6983 return entry1
->orig
== entry2
;
6986 typedef hash_table
<decl_table_entry_hasher
> decl_hash_type
;
6988 /* Copy DIE and its ancestors, up to, but not including, the compile unit
6989 or type unit entry, to a new tree. Adds the new tree to UNIT and returns
6990 a pointer to the copy of DIE. If DECL_TABLE is provided, it is used
6991 to check if the ancestor has already been copied into UNIT. */
6994 copy_ancestor_tree (dw_die_ref unit
, dw_die_ref die
, decl_hash_type decl_table
)
6996 dw_die_ref parent
= die
->die_parent
;
6997 dw_die_ref new_parent
= unit
;
6999 decl_table_entry
**slot
= NULL
;
7000 struct decl_table_entry
*entry
= NULL
;
7002 if (decl_table
.is_created ())
7004 /* Check if the entry has already been copied to UNIT. */
7005 slot
= decl_table
.find_slot_with_hash (die
, htab_hash_pointer (die
),
7007 if (*slot
!= HTAB_EMPTY_ENTRY
)
7013 /* Record in DECL_TABLE that DIE has been copied to UNIT. */
7014 entry
= XCNEW (struct decl_table_entry
);
7022 dw_die_ref spec
= get_AT_ref (parent
, DW_AT_specification
);
7025 if (!is_unit_die (parent
))
7026 new_parent
= copy_ancestor_tree (unit
, parent
, decl_table
);
7029 copy
= clone_as_declaration (die
);
7030 add_child_die (new_parent
, copy
);
7032 if (decl_table
.is_created ())
7034 /* Record the pointer to the copy. */
7040 /* Copy the declaration context to the new type unit DIE. This includes
7041 any surrounding namespace or type declarations. If the DIE has an
7042 AT_specification attribute, it also includes attributes and children
7043 attached to the specification, and returns a pointer to the original
7044 parent of the declaration DIE. Returns NULL otherwise. */
7047 copy_declaration_context (dw_die_ref unit
, dw_die_ref die
)
7050 dw_die_ref new_decl
;
7051 dw_die_ref orig_parent
= NULL
;
7053 decl
= get_AT_ref (die
, DW_AT_specification
);
7062 /* The original DIE will be changed to a declaration, and must
7063 be moved to be a child of the original declaration DIE. */
7064 orig_parent
= decl
->die_parent
;
7066 /* Copy the type node pointer from the new DIE to the original
7067 declaration DIE so we can forward references later. */
7068 decl
->comdat_type_p
= true;
7069 decl
->die_id
.die_type_node
= die
->die_id
.die_type_node
;
7071 remove_AT (die
, DW_AT_specification
);
7073 FOR_EACH_VEC_SAFE_ELT (decl
->die_attr
, ix
, a
)
7075 if (a
->dw_attr
!= DW_AT_name
7076 && a
->dw_attr
!= DW_AT_declaration
7077 && a
->dw_attr
!= DW_AT_external
)
7078 add_dwarf_attr (die
, a
);
7081 FOR_EACH_CHILD (decl
, c
, add_child_die (die
, clone_tree (c
)));
7084 if (decl
->die_parent
!= NULL
7085 && !is_unit_die (decl
->die_parent
))
7087 new_decl
= copy_ancestor_tree (unit
, decl
, decl_hash_type ());
7088 if (new_decl
!= NULL
)
7090 remove_AT (new_decl
, DW_AT_signature
);
7091 add_AT_specification (die
, new_decl
);
7098 /* Generate the skeleton ancestor tree for the given NODE, then clone
7099 the DIE and add the clone into the tree. */
7102 generate_skeleton_ancestor_tree (skeleton_chain_node
*node
)
7104 if (node
->new_die
!= NULL
)
7107 node
->new_die
= clone_as_declaration (node
->old_die
);
7109 if (node
->parent
!= NULL
)
7111 generate_skeleton_ancestor_tree (node
->parent
);
7112 add_child_die (node
->parent
->new_die
, node
->new_die
);
7116 /* Generate a skeleton tree of DIEs containing any declarations that are
7117 found in the original tree. We traverse the tree looking for declaration
7118 DIEs, and construct the skeleton from the bottom up whenever we find one. */
7121 generate_skeleton_bottom_up (skeleton_chain_node
*parent
)
7123 skeleton_chain_node node
;
7126 dw_die_ref prev
= NULL
;
7127 dw_die_ref next
= NULL
;
7129 node
.parent
= parent
;
7131 first
= c
= parent
->old_die
->die_child
;
7135 if (prev
== NULL
|| prev
->die_sib
== c
)
7138 next
= (c
== first
? NULL
: c
->die_sib
);
7140 node
.new_die
= NULL
;
7141 if (is_declaration_die (c
))
7143 if (is_template_instantiation (c
))
7145 /* Instantiated templates do not need to be cloned into the
7146 type unit. Just move the DIE and its children back to
7147 the skeleton tree (in the main CU). */
7148 remove_child_with_prev (c
, prev
);
7149 add_child_die (parent
->new_die
, c
);
7154 /* Clone the existing DIE, move the original to the skeleton
7155 tree (which is in the main CU), and put the clone, with
7156 all the original's children, where the original came from
7157 (which is about to be moved to the type unit). */
7158 dw_die_ref clone
= clone_die (c
);
7159 move_all_children (c
, clone
);
7161 replace_child (c
, clone
, prev
);
7162 generate_skeleton_ancestor_tree (parent
);
7163 add_child_die (parent
->new_die
, c
);
7168 generate_skeleton_bottom_up (&node
);
7169 } while (next
!= NULL
);
7172 /* Wrapper function for generate_skeleton_bottom_up. */
7175 generate_skeleton (dw_die_ref die
)
7177 skeleton_chain_node node
;
7180 node
.new_die
= NULL
;
7183 /* If this type definition is nested inside another type,
7184 and is not an instantiation of a template, always leave
7185 at least a declaration in its place. */
7186 if (die
->die_parent
!= NULL
7187 && is_type_die (die
->die_parent
)
7188 && !is_template_instantiation (die
))
7189 node
.new_die
= clone_as_declaration (die
);
7191 generate_skeleton_bottom_up (&node
);
7192 return node
.new_die
;
7195 /* Remove the CHILD DIE from its parent, possibly replacing it with a cloned
7196 declaration. The original DIE is moved to a new compile unit so that
7197 existing references to it follow it to the new location. If any of the
7198 original DIE's descendants is a declaration, we need to replace the
7199 original DIE with a skeleton tree and move the declarations back into the
7203 remove_child_or_replace_with_skeleton (dw_die_ref unit
, dw_die_ref child
,
7206 dw_die_ref skeleton
, orig_parent
;
7208 /* Copy the declaration context to the type unit DIE. If the returned
7209 ORIG_PARENT is not NULL, the skeleton needs to be added as a child of
7211 orig_parent
= copy_declaration_context (unit
, child
);
7213 skeleton
= generate_skeleton (child
);
7214 if (skeleton
== NULL
)
7215 remove_child_with_prev (child
, prev
);
7218 skeleton
->comdat_type_p
= true;
7219 skeleton
->die_id
.die_type_node
= child
->die_id
.die_type_node
;
7221 /* If the original DIE was a specification, we need to put
7222 the skeleton under the parent DIE of the declaration.
7223 This leaves the original declaration in the tree, but
7224 it will be pruned later since there are no longer any
7225 references to it. */
7226 if (orig_parent
!= NULL
)
7228 remove_child_with_prev (child
, prev
);
7229 add_child_die (orig_parent
, skeleton
);
7232 replace_child (child
, skeleton
, prev
);
7238 /* Traverse the DIE and set up additional .debug_types sections for each
7239 type worthy of being placed in a COMDAT section. */
7242 break_out_comdat_types (dw_die_ref die
)
7246 dw_die_ref prev
= NULL
;
7247 dw_die_ref next
= NULL
;
7248 dw_die_ref unit
= NULL
;
7250 first
= c
= die
->die_child
;
7254 if (prev
== NULL
|| prev
->die_sib
== c
)
7257 next
= (c
== first
? NULL
: c
->die_sib
);
7258 if (should_move_die_to_comdat (c
))
7260 dw_die_ref replacement
;
7261 comdat_type_node_ref type_node
;
7263 /* Break out nested types into their own type units. */
7264 break_out_comdat_types (c
);
7266 /* Create a new type unit DIE as the root for the new tree, and
7267 add it to the list of comdat types. */
7268 unit
= new_die (DW_TAG_type_unit
, NULL
, NULL
);
7269 add_AT_unsigned (unit
, DW_AT_language
,
7270 get_AT_unsigned (comp_unit_die (), DW_AT_language
));
7271 type_node
= ggc_alloc_cleared_comdat_type_node ();
7272 type_node
->root_die
= unit
;
7273 type_node
->next
= comdat_type_list
;
7274 comdat_type_list
= type_node
;
7276 /* Generate the type signature. */
7277 generate_type_signature (c
, type_node
);
7279 /* Copy the declaration context, attributes, and children of the
7280 declaration into the new type unit DIE, then remove this DIE
7281 from the main CU (or replace it with a skeleton if necessary). */
7282 replacement
= remove_child_or_replace_with_skeleton (unit
, c
, prev
);
7283 type_node
->skeleton_die
= replacement
;
7285 /* Add the DIE to the new compunit. */
7286 add_child_die (unit
, c
);
7288 if (replacement
!= NULL
)
7291 else if (c
->die_tag
== DW_TAG_namespace
7292 || c
->die_tag
== DW_TAG_class_type
7293 || c
->die_tag
== DW_TAG_structure_type
7294 || c
->die_tag
== DW_TAG_union_type
)
7296 /* Look for nested types that can be broken out. */
7297 break_out_comdat_types (c
);
7299 } while (next
!= NULL
);
7302 /* Like clone_tree, but additionally enter all the children into
7303 the hash table decl_table. */
7306 clone_tree_hash (dw_die_ref die
, decl_hash_type decl_table
)
7309 dw_die_ref clone
= clone_die (die
);
7310 struct decl_table_entry
*entry
;
7311 decl_table_entry
**slot
= decl_table
.find_slot_with_hash (die
,
7312 htab_hash_pointer (die
), INSERT
);
7313 /* Assert that DIE isn't in the hash table yet. If it would be there
7314 before, the ancestors would be necessarily there as well, therefore
7315 clone_tree_hash wouldn't be called. */
7316 gcc_assert (*slot
== HTAB_EMPTY_ENTRY
);
7317 entry
= XCNEW (struct decl_table_entry
);
7319 entry
->copy
= clone
;
7322 FOR_EACH_CHILD (die
, c
,
7323 add_child_die (clone
, clone_tree_hash (c
, decl_table
)));
7328 /* Walk the DIE and its children, looking for references to incomplete
7329 or trivial types that are unmarked (i.e., that are not in the current
7333 copy_decls_walk (dw_die_ref unit
, dw_die_ref die
, decl_hash_type decl_table
)
7339 FOR_EACH_VEC_SAFE_ELT (die
->die_attr
, ix
, a
)
7341 if (AT_class (a
) == dw_val_class_die_ref
)
7343 dw_die_ref targ
= AT_ref (a
);
7344 decl_table_entry
**slot
;
7345 struct decl_table_entry
*entry
;
7347 if (targ
->die_mark
!= 0 || targ
->comdat_type_p
)
7350 slot
= decl_table
.find_slot_with_hash (targ
, htab_hash_pointer (targ
),
7353 if (*slot
!= HTAB_EMPTY_ENTRY
)
7355 /* TARG has already been copied, so we just need to
7356 modify the reference to point to the copy. */
7358 a
->dw_attr_val
.v
.val_die_ref
.die
= entry
->copy
;
7362 dw_die_ref parent
= unit
;
7363 dw_die_ref copy
= clone_die (targ
);
7365 /* Record in DECL_TABLE that TARG has been copied.
7366 Need to do this now, before the recursive call,
7367 because DECL_TABLE may be expanded and SLOT
7368 would no longer be a valid pointer. */
7369 entry
= XCNEW (struct decl_table_entry
);
7374 FOR_EACH_CHILD (targ
, c
,
7375 add_child_die (copy
,
7376 clone_tree_hash (c
, decl_table
)));
7378 /* Make sure the cloned tree is marked as part of the
7382 /* If TARG has surrounding context, copy its ancestor tree
7383 into the new type unit. */
7384 if (targ
->die_parent
!= NULL
7385 && !is_unit_die (targ
->die_parent
))
7386 parent
= copy_ancestor_tree (unit
, targ
->die_parent
,
7389 add_child_die (parent
, copy
);
7390 a
->dw_attr_val
.v
.val_die_ref
.die
= copy
;
7392 /* Make sure the newly-copied DIE is walked. If it was
7393 installed in a previously-added context, it won't
7394 get visited otherwise. */
7397 /* Find the highest point of the newly-added tree,
7398 mark each node along the way, and walk from there. */
7399 parent
->die_mark
= 1;
7400 while (parent
->die_parent
7401 && parent
->die_parent
->die_mark
== 0)
7403 parent
= parent
->die_parent
;
7404 parent
->die_mark
= 1;
7406 copy_decls_walk (unit
, parent
, decl_table
);
7412 FOR_EACH_CHILD (die
, c
, copy_decls_walk (unit
, c
, decl_table
));
7415 /* Copy declarations for "unworthy" types into the new comdat section.
7416 Incomplete types, modified types, and certain other types aren't broken
7417 out into comdat sections of their own, so they don't have a signature,
7418 and we need to copy the declaration into the same section so that we
7419 don't have an external reference. */
7422 copy_decls_for_unworthy_types (dw_die_ref unit
)
7424 decl_hash_type decl_table
;
7427 decl_table
.create (10);
7428 copy_decls_walk (unit
, unit
, decl_table
);
7429 decl_table
.dispose ();
7433 /* Traverse the DIE and add a sibling attribute if it may have the
7434 effect of speeding up access to siblings. To save some space,
7435 avoid generating sibling attributes for DIE's without children. */
7438 add_sibling_attributes (dw_die_ref die
)
7442 if (! die
->die_child
)
7445 if (die
->die_parent
&& die
!= die
->die_parent
->die_child
)
7446 add_AT_die_ref (die
, DW_AT_sibling
, die
->die_sib
);
7448 FOR_EACH_CHILD (die
, c
, add_sibling_attributes (c
));
7451 /* Output all location lists for the DIE and its children. */
7454 output_location_lists (dw_die_ref die
)
7460 FOR_EACH_VEC_SAFE_ELT (die
->die_attr
, ix
, a
)
7461 if (AT_class (a
) == dw_val_class_loc_list
)
7462 output_loc_list (AT_loc_list (a
));
7464 FOR_EACH_CHILD (die
, c
, output_location_lists (c
));
7467 /* We want to limit the number of external references, because they are
7468 larger than local references: a relocation takes multiple words, and
7469 even a sig8 reference is always eight bytes, whereas a local reference
7470 can be as small as one byte (though DW_FORM_ref is usually 4 in GCC).
7471 So if we encounter multiple external references to the same type DIE, we
7472 make a local typedef stub for it and redirect all references there.
7474 This is the element of the hash table for keeping track of these
7484 /* Hashtable helpers. */
7486 struct external_ref_hasher
: typed_free_remove
<external_ref
>
7488 typedef external_ref value_type
;
7489 typedef external_ref compare_type
;
7490 static inline hashval_t
hash (const value_type
*);
7491 static inline bool equal (const value_type
*, const compare_type
*);
7495 external_ref_hasher::hash (const value_type
*r
)
7497 dw_die_ref die
= r
->type
;
7500 /* We can't use the address of the DIE for hashing, because
7501 that will make the order of the stub DIEs non-deterministic. */
7502 if (! die
->comdat_type_p
)
7503 /* We have a symbol; use it to compute a hash. */
7504 h
= htab_hash_string (die
->die_id
.die_symbol
);
7507 /* We have a type signature; use a subset of the bits as the hash.
7508 The 8-byte signature is at least as large as hashval_t. */
7509 comdat_type_node_ref type_node
= die
->die_id
.die_type_node
;
7510 memcpy (&h
, type_node
->signature
, sizeof (h
));
7516 external_ref_hasher::equal (const value_type
*r1
, const compare_type
*r2
)
7518 return r1
->type
== r2
->type
;
7521 typedef hash_table
<external_ref_hasher
> external_ref_hash_type
;
7523 /* Return a pointer to the external_ref for references to DIE. */
7525 static struct external_ref
*
7526 lookup_external_ref (external_ref_hash_type map
, dw_die_ref die
)
7528 struct external_ref ref
, *ref_p
;
7529 external_ref
**slot
;
7532 slot
= map
.find_slot (&ref
, INSERT
);
7533 if (*slot
!= HTAB_EMPTY_ENTRY
)
7536 ref_p
= XCNEW (struct external_ref
);
7542 /* Subroutine of optimize_external_refs, below.
7544 If we see a type skeleton, record it as our stub. If we see external
7545 references, remember how many we've seen. */
7548 optimize_external_refs_1 (dw_die_ref die
, external_ref_hash_type map
)
7553 struct external_ref
*ref_p
;
7555 if (is_type_die (die
)
7556 && (c
= get_AT_ref (die
, DW_AT_signature
)))
7558 /* This is a local skeleton; use it for local references. */
7559 ref_p
= lookup_external_ref (map
, c
);
7563 /* Scan the DIE references, and remember any that refer to DIEs from
7564 other CUs (i.e. those which are not marked). */
7565 FOR_EACH_VEC_SAFE_ELT (die
->die_attr
, ix
, a
)
7566 if (AT_class (a
) == dw_val_class_die_ref
7567 && (c
= AT_ref (a
))->die_mark
== 0
7570 ref_p
= lookup_external_ref (map
, c
);
7574 FOR_EACH_CHILD (die
, c
, optimize_external_refs_1 (c
, map
));
7577 /* htab_traverse callback function for optimize_external_refs, below. SLOT
7578 points to an external_ref, DATA is the CU we're processing. If we don't
7579 already have a local stub, and we have multiple refs, build a stub. */
7582 dwarf2_build_local_stub (external_ref
**slot
, dw_die_ref data
)
7584 struct external_ref
*ref_p
= *slot
;
7586 if (ref_p
->stub
== NULL
&& ref_p
->n_refs
> 1 && !dwarf_strict
)
7588 /* We have multiple references to this type, so build a small stub.
7589 Both of these forms are a bit dodgy from the perspective of the
7590 DWARF standard, since technically they should have names. */
7591 dw_die_ref cu
= data
;
7592 dw_die_ref type
= ref_p
->type
;
7593 dw_die_ref stub
= NULL
;
7595 if (type
->comdat_type_p
)
7597 /* If we refer to this type via sig8, use AT_signature. */
7598 stub
= new_die (type
->die_tag
, cu
, NULL_TREE
);
7599 add_AT_die_ref (stub
, DW_AT_signature
, type
);
7603 /* Otherwise, use a typedef with no name. */
7604 stub
= new_die (DW_TAG_typedef
, cu
, NULL_TREE
);
7605 add_AT_die_ref (stub
, DW_AT_type
, type
);
7614 /* DIE is a unit; look through all the DIE references to see if there are
7615 any external references to types, and if so, create local stubs for
7616 them which will be applied in build_abbrev_table. This is useful because
7617 references to local DIEs are smaller. */
7619 static external_ref_hash_type
7620 optimize_external_refs (dw_die_ref die
)
7622 external_ref_hash_type map
;
7624 optimize_external_refs_1 (die
, map
);
7625 map
.traverse
<dw_die_ref
, dwarf2_build_local_stub
> (die
);
7629 /* The format of each DIE (and its attribute value pairs) is encoded in an
7630 abbreviation table. This routine builds the abbreviation table and assigns
7631 a unique abbreviation id for each abbreviation entry. The children of each
7632 die are visited recursively. */
7635 build_abbrev_table (dw_die_ref die
, external_ref_hash_type extern_map
)
7637 unsigned long abbrev_id
;
7638 unsigned int n_alloc
;
7643 /* Scan the DIE references, and replace any that refer to
7644 DIEs from other CUs (i.e. those which are not marked) with
7645 the local stubs we built in optimize_external_refs. */
7646 FOR_EACH_VEC_SAFE_ELT (die
->die_attr
, ix
, a
)
7647 if (AT_class (a
) == dw_val_class_die_ref
7648 && (c
= AT_ref (a
))->die_mark
== 0)
7650 struct external_ref
*ref_p
;
7651 gcc_assert (AT_ref (a
)->comdat_type_p
|| AT_ref (a
)->die_id
.die_symbol
);
7653 ref_p
= lookup_external_ref (extern_map
, c
);
7654 if (ref_p
->stub
&& ref_p
->stub
!= die
)
7655 change_AT_die_ref (a
, ref_p
->stub
);
7657 /* We aren't changing this reference, so mark it external. */
7658 set_AT_ref_external (a
, 1);
7661 for (abbrev_id
= 1; abbrev_id
< abbrev_die_table_in_use
; ++abbrev_id
)
7663 dw_die_ref abbrev
= abbrev_die_table
[abbrev_id
];
7664 dw_attr_ref die_a
, abbrev_a
;
7668 if (abbrev
->die_tag
!= die
->die_tag
)
7670 if ((abbrev
->die_child
!= NULL
) != (die
->die_child
!= NULL
))
7673 if (vec_safe_length (abbrev
->die_attr
) != vec_safe_length (die
->die_attr
))
7676 FOR_EACH_VEC_SAFE_ELT (die
->die_attr
, ix
, die_a
)
7678 abbrev_a
= &(*abbrev
->die_attr
)[ix
];
7679 if ((abbrev_a
->dw_attr
!= die_a
->dw_attr
)
7680 || (value_format (abbrev_a
) != value_format (die_a
)))
7690 if (abbrev_id
>= abbrev_die_table_in_use
)
7692 if (abbrev_die_table_in_use
>= abbrev_die_table_allocated
)
7694 n_alloc
= abbrev_die_table_allocated
+ ABBREV_DIE_TABLE_INCREMENT
;
7695 abbrev_die_table
= GGC_RESIZEVEC (dw_die_ref
, abbrev_die_table
,
7698 memset (&abbrev_die_table
[abbrev_die_table_allocated
], 0,
7699 (n_alloc
- abbrev_die_table_allocated
) * sizeof (dw_die_ref
));
7700 abbrev_die_table_allocated
= n_alloc
;
7703 ++abbrev_die_table_in_use
;
7704 abbrev_die_table
[abbrev_id
] = die
;
7707 die
->die_abbrev
= abbrev_id
;
7708 FOR_EACH_CHILD (die
, c
, build_abbrev_table (c
, extern_map
));
7711 /* Return the power-of-two number of bytes necessary to represent VALUE. */
7714 constant_size (unsigned HOST_WIDE_INT value
)
7721 log
= floor_log2 (value
);
7724 log
= 1 << (floor_log2 (log
) + 1);
7729 /* Return the size of a DIE as it is represented in the
7730 .debug_info section. */
7732 static unsigned long
7733 size_of_die (dw_die_ref die
)
7735 unsigned long size
= 0;
7738 enum dwarf_form form
;
7740 size
+= size_of_uleb128 (die
->die_abbrev
);
7741 FOR_EACH_VEC_SAFE_ELT (die
->die_attr
, ix
, a
)
7743 switch (AT_class (a
))
7745 case dw_val_class_addr
:
7746 if (dwarf_split_debug_info
&& AT_index (a
) != NOT_INDEXED
)
7748 gcc_assert (AT_index (a
) != NO_INDEX_ASSIGNED
);
7749 size
+= size_of_uleb128 (AT_index (a
));
7752 size
+= DWARF2_ADDR_SIZE
;
7754 case dw_val_class_offset
:
7755 size
+= DWARF_OFFSET_SIZE
;
7757 case dw_val_class_loc
:
7759 unsigned long lsize
= size_of_locs (AT_loc (a
));
7762 if (dwarf_version
>= 4)
7763 size
+= size_of_uleb128 (lsize
);
7765 size
+= constant_size (lsize
);
7769 case dw_val_class_loc_list
:
7770 if (dwarf_split_debug_info
&& AT_index (a
) != NOT_INDEXED
)
7772 gcc_assert (AT_index (a
) != NO_INDEX_ASSIGNED
);
7773 size
+= size_of_uleb128 (AT_index (a
));
7776 size
+= DWARF_OFFSET_SIZE
;
7778 case dw_val_class_range_list
:
7779 size
+= DWARF_OFFSET_SIZE
;
7781 case dw_val_class_const
:
7782 size
+= size_of_sleb128 (AT_int (a
));
7784 case dw_val_class_unsigned_const
:
7786 int csize
= constant_size (AT_unsigned (a
));
7787 if (dwarf_version
== 3
7788 && a
->dw_attr
== DW_AT_data_member_location
7790 size
+= size_of_uleb128 (AT_unsigned (a
));
7795 case dw_val_class_const_double
:
7796 size
+= HOST_BITS_PER_DOUBLE_INT
/ HOST_BITS_PER_CHAR
;
7797 if (HOST_BITS_PER_WIDE_INT
>= 64)
7800 case dw_val_class_vec
:
7801 size
+= constant_size (a
->dw_attr_val
.v
.val_vec
.length
7802 * a
->dw_attr_val
.v
.val_vec
.elt_size
)
7803 + a
->dw_attr_val
.v
.val_vec
.length
7804 * a
->dw_attr_val
.v
.val_vec
.elt_size
; /* block */
7806 case dw_val_class_flag
:
7807 if (dwarf_version
>= 4)
7808 /* Currently all add_AT_flag calls pass in 1 as last argument,
7809 so DW_FORM_flag_present can be used. If that ever changes,
7810 we'll need to use DW_FORM_flag and have some optimization
7811 in build_abbrev_table that will change those to
7812 DW_FORM_flag_present if it is set to 1 in all DIEs using
7813 the same abbrev entry. */
7814 gcc_assert (a
->dw_attr_val
.v
.val_flag
== 1);
7818 case dw_val_class_die_ref
:
7819 if (AT_ref_external (a
))
7821 /* In DWARF4, we use DW_FORM_ref_sig8; for earlier versions
7822 we use DW_FORM_ref_addr. In DWARF2, DW_FORM_ref_addr
7823 is sized by target address length, whereas in DWARF3
7824 it's always sized as an offset. */
7825 if (use_debug_types
)
7826 size
+= DWARF_TYPE_SIGNATURE_SIZE
;
7827 else if (dwarf_version
== 2)
7828 size
+= DWARF2_ADDR_SIZE
;
7830 size
+= DWARF_OFFSET_SIZE
;
7833 size
+= DWARF_OFFSET_SIZE
;
7835 case dw_val_class_fde_ref
:
7836 size
+= DWARF_OFFSET_SIZE
;
7838 case dw_val_class_lbl_id
:
7839 if (dwarf_split_debug_info
&& AT_index (a
) != NOT_INDEXED
)
7841 gcc_assert (AT_index (a
) != NO_INDEX_ASSIGNED
);
7842 size
+= size_of_uleb128 (AT_index (a
));
7845 size
+= DWARF2_ADDR_SIZE
;
7847 case dw_val_class_lineptr
:
7848 case dw_val_class_macptr
:
7849 size
+= DWARF_OFFSET_SIZE
;
7851 case dw_val_class_str
:
7852 form
= AT_string_form (a
);
7853 if (form
== DW_FORM_strp
)
7854 size
+= DWARF_OFFSET_SIZE
;
7855 else if (form
== DW_FORM_GNU_str_index
)
7856 size
+= size_of_uleb128 (AT_index (a
));
7858 size
+= strlen (a
->dw_attr_val
.v
.val_str
->str
) + 1;
7860 case dw_val_class_file
:
7861 size
+= constant_size (maybe_emit_file (a
->dw_attr_val
.v
.val_file
));
7863 case dw_val_class_data8
:
7866 case dw_val_class_vms_delta
:
7867 size
+= DWARF_OFFSET_SIZE
;
7869 case dw_val_class_high_pc
:
7870 size
+= DWARF2_ADDR_SIZE
;
7880 /* Size the debugging information associated with a given DIE. Visits the
7881 DIE's children recursively. Updates the global variable next_die_offset, on
7882 each time through. Uses the current value of next_die_offset to update the
7883 die_offset field in each DIE. */
7886 calc_die_sizes (dw_die_ref die
)
7890 gcc_assert (die
->die_offset
== 0
7891 || (unsigned long int) die
->die_offset
== next_die_offset
);
7892 die
->die_offset
= next_die_offset
;
7893 next_die_offset
+= size_of_die (die
);
7895 FOR_EACH_CHILD (die
, c
, calc_die_sizes (c
));
7897 if (die
->die_child
!= NULL
)
7898 /* Count the null byte used to terminate sibling lists. */
7899 next_die_offset
+= 1;
7902 /* Size just the base type children at the start of the CU.
7903 This is needed because build_abbrev needs to size locs
7904 and sizing of type based stack ops needs to know die_offset
7905 values for the base types. */
7908 calc_base_type_die_sizes (void)
7910 unsigned long die_offset
= DWARF_COMPILE_UNIT_HEADER_SIZE
;
7912 dw_die_ref base_type
;
7913 #if ENABLE_ASSERT_CHECKING
7914 dw_die_ref prev
= comp_unit_die ()->die_child
;
7917 die_offset
+= size_of_die (comp_unit_die ());
7918 for (i
= 0; base_types
.iterate (i
, &base_type
); i
++)
7920 #if ENABLE_ASSERT_CHECKING
7921 gcc_assert (base_type
->die_offset
== 0
7922 && prev
->die_sib
== base_type
7923 && base_type
->die_child
== NULL
7924 && base_type
->die_abbrev
);
7927 base_type
->die_offset
= die_offset
;
7928 die_offset
+= size_of_die (base_type
);
7932 /* Set the marks for a die and its children. We do this so
7933 that we know whether or not a reference needs to use FORM_ref_addr; only
7934 DIEs in the same CU will be marked. We used to clear out the offset
7935 and use that as the flag, but ran into ordering problems. */
7938 mark_dies (dw_die_ref die
)
7942 gcc_assert (!die
->die_mark
);
7945 FOR_EACH_CHILD (die
, c
, mark_dies (c
));
7948 /* Clear the marks for a die and its children. */
7951 unmark_dies (dw_die_ref die
)
7955 if (! use_debug_types
)
7956 gcc_assert (die
->die_mark
);
7959 FOR_EACH_CHILD (die
, c
, unmark_dies (c
));
7962 /* Clear the marks for a die, its children and referred dies. */
7965 unmark_all_dies (dw_die_ref die
)
7975 FOR_EACH_CHILD (die
, c
, unmark_all_dies (c
));
7977 FOR_EACH_VEC_SAFE_ELT (die
->die_attr
, ix
, a
)
7978 if (AT_class (a
) == dw_val_class_die_ref
)
7979 unmark_all_dies (AT_ref (a
));
7982 /* Calculate if the entry should appear in the final output file. It may be
7983 from a pruned a type. */
7986 include_pubname_in_output (vec
<pubname_entry
, va_gc
> *table
, pubname_entry
*p
)
7988 /* By limiting gnu pubnames to definitions only, gold can generate a
7989 gdb index without entries for declarations, which don't include
7990 enough information to be useful. */
7991 if (debug_generate_pub_sections
== 2 && is_declaration_die (p
->die
))
7994 if (table
== pubname_table
)
7996 /* Enumerator names are part of the pubname table, but the
7997 parent DW_TAG_enumeration_type die may have been pruned.
7998 Don't output them if that is the case. */
7999 if (p
->die
->die_tag
== DW_TAG_enumerator
&&
8000 (p
->die
->die_parent
== NULL
8001 || !p
->die
->die_parent
->die_perennial_p
))
8004 /* Everything else in the pubname table is included. */
8008 /* The pubtypes table shouldn't include types that have been
8010 return (p
->die
->die_offset
!= 0
8011 || !flag_eliminate_unused_debug_types
);
8014 /* Return the size of the .debug_pubnames or .debug_pubtypes table
8015 generated for the compilation unit. */
8017 static unsigned long
8018 size_of_pubnames (vec
<pubname_entry
, va_gc
> *names
)
8023 int space_for_flags
= (debug_generate_pub_sections
== 2) ? 1 : 0;
8025 size
= DWARF_PUBNAMES_HEADER_SIZE
;
8026 FOR_EACH_VEC_ELT (*names
, i
, p
)
8027 if (include_pubname_in_output (names
, p
))
8028 size
+= strlen (p
->name
) + DWARF_OFFSET_SIZE
+ 1 + space_for_flags
;
8030 size
+= DWARF_OFFSET_SIZE
;
8034 /* Return the size of the information in the .debug_aranges section. */
8036 static unsigned long
8037 size_of_aranges (void)
8041 size
= DWARF_ARANGES_HEADER_SIZE
;
8043 /* Count the address/length pair for this compilation unit. */
8044 if (text_section_used
)
8045 size
+= 2 * DWARF2_ADDR_SIZE
;
8046 if (cold_text_section_used
)
8047 size
+= 2 * DWARF2_ADDR_SIZE
;
8048 if (have_multiple_function_sections
)
8053 FOR_EACH_VEC_ELT (*fde_vec
, fde_idx
, fde
)
8055 if (DECL_IGNORED_P (fde
->decl
))
8057 if (!fde
->in_std_section
)
8058 size
+= 2 * DWARF2_ADDR_SIZE
;
8059 if (fde
->dw_fde_second_begin
&& !fde
->second_in_std_section
)
8060 size
+= 2 * DWARF2_ADDR_SIZE
;
8064 /* Count the two zero words used to terminated the address range table. */
8065 size
+= 2 * DWARF2_ADDR_SIZE
;
8069 /* Select the encoding of an attribute value. */
8071 static enum dwarf_form
8072 value_format (dw_attr_ref a
)
8074 switch (AT_class (a
))
8076 case dw_val_class_addr
:
8077 /* Only very few attributes allow DW_FORM_addr. */
8082 case DW_AT_entry_pc
:
8083 case DW_AT_trampoline
:
8084 return (AT_index (a
) == NOT_INDEXED
8085 ? DW_FORM_addr
: DW_FORM_GNU_addr_index
);
8089 switch (DWARF2_ADDR_SIZE
)
8092 return DW_FORM_data1
;
8094 return DW_FORM_data2
;
8096 return DW_FORM_data4
;
8098 return DW_FORM_data8
;
8102 case dw_val_class_range_list
:
8103 case dw_val_class_loc_list
:
8104 if (dwarf_version
>= 4)
8105 return DW_FORM_sec_offset
;
8107 case dw_val_class_vms_delta
:
8108 case dw_val_class_offset
:
8109 switch (DWARF_OFFSET_SIZE
)
8112 return DW_FORM_data4
;
8114 return DW_FORM_data8
;
8118 case dw_val_class_loc
:
8119 if (dwarf_version
>= 4)
8120 return DW_FORM_exprloc
;
8121 switch (constant_size (size_of_locs (AT_loc (a
))))
8124 return DW_FORM_block1
;
8126 return DW_FORM_block2
;
8128 return DW_FORM_block4
;
8132 case dw_val_class_const
:
8133 return DW_FORM_sdata
;
8134 case dw_val_class_unsigned_const
:
8135 switch (constant_size (AT_unsigned (a
)))
8138 return DW_FORM_data1
;
8140 return DW_FORM_data2
;
8142 /* In DWARF3 DW_AT_data_member_location with
8143 DW_FORM_data4 or DW_FORM_data8 is a loclistptr, not
8144 constant, so we need to use DW_FORM_udata if we need
8145 a large constant. */
8146 if (dwarf_version
== 3 && a
->dw_attr
== DW_AT_data_member_location
)
8147 return DW_FORM_udata
;
8148 return DW_FORM_data4
;
8150 if (dwarf_version
== 3 && a
->dw_attr
== DW_AT_data_member_location
)
8151 return DW_FORM_udata
;
8152 return DW_FORM_data8
;
8156 case dw_val_class_const_double
:
8157 switch (HOST_BITS_PER_WIDE_INT
)
8160 return DW_FORM_data2
;
8162 return DW_FORM_data4
;
8164 return DW_FORM_data8
;
8167 return DW_FORM_block1
;
8169 case dw_val_class_vec
:
8170 switch (constant_size (a
->dw_attr_val
.v
.val_vec
.length
8171 * a
->dw_attr_val
.v
.val_vec
.elt_size
))
8174 return DW_FORM_block1
;
8176 return DW_FORM_block2
;
8178 return DW_FORM_block4
;
8182 case dw_val_class_flag
:
8183 if (dwarf_version
>= 4)
8185 /* Currently all add_AT_flag calls pass in 1 as last argument,
8186 so DW_FORM_flag_present can be used. If that ever changes,
8187 we'll need to use DW_FORM_flag and have some optimization
8188 in build_abbrev_table that will change those to
8189 DW_FORM_flag_present if it is set to 1 in all DIEs using
8190 the same abbrev entry. */
8191 gcc_assert (a
->dw_attr_val
.v
.val_flag
== 1);
8192 return DW_FORM_flag_present
;
8194 return DW_FORM_flag
;
8195 case dw_val_class_die_ref
:
8196 if (AT_ref_external (a
))
8197 return use_debug_types
? DW_FORM_ref_sig8
: DW_FORM_ref_addr
;
8200 case dw_val_class_fde_ref
:
8201 return DW_FORM_data
;
8202 case dw_val_class_lbl_id
:
8203 return (AT_index (a
) == NOT_INDEXED
8204 ? DW_FORM_addr
: DW_FORM_GNU_addr_index
);
8205 case dw_val_class_lineptr
:
8206 case dw_val_class_macptr
:
8207 return dwarf_version
>= 4 ? DW_FORM_sec_offset
: DW_FORM_data
;
8208 case dw_val_class_str
:
8209 return AT_string_form (a
);
8210 case dw_val_class_file
:
8211 switch (constant_size (maybe_emit_file (a
->dw_attr_val
.v
.val_file
)))
8214 return DW_FORM_data1
;
8216 return DW_FORM_data2
;
8218 return DW_FORM_data4
;
8223 case dw_val_class_data8
:
8224 return DW_FORM_data8
;
8226 case dw_val_class_high_pc
:
8227 switch (DWARF2_ADDR_SIZE
)
8230 return DW_FORM_data1
;
8232 return DW_FORM_data2
;
8234 return DW_FORM_data4
;
8236 return DW_FORM_data8
;
8246 /* Output the encoding of an attribute value. */
8249 output_value_format (dw_attr_ref a
)
8251 enum dwarf_form form
= value_format (a
);
8253 dw2_asm_output_data_uleb128 (form
, "(%s)", dwarf_form_name (form
));
8256 /* Given a die and id, produce the appropriate abbreviations. */
8259 output_die_abbrevs (unsigned long abbrev_id
, dw_die_ref abbrev
)
8264 dw2_asm_output_data_uleb128 (abbrev_id
, "(abbrev code)");
8265 dw2_asm_output_data_uleb128 (abbrev
->die_tag
, "(TAG: %s)",
8266 dwarf_tag_name (abbrev
->die_tag
));
8268 if (abbrev
->die_child
!= NULL
)
8269 dw2_asm_output_data (1, DW_children_yes
, "DW_children_yes");
8271 dw2_asm_output_data (1, DW_children_no
, "DW_children_no");
8273 for (ix
= 0; vec_safe_iterate (abbrev
->die_attr
, ix
, &a_attr
); ix
++)
8275 dw2_asm_output_data_uleb128 (a_attr
->dw_attr
, "(%s)",
8276 dwarf_attr_name (a_attr
->dw_attr
));
8277 output_value_format (a_attr
);
8280 dw2_asm_output_data (1, 0, NULL
);
8281 dw2_asm_output_data (1, 0, NULL
);
8285 /* Output the .debug_abbrev section which defines the DIE abbreviation
8289 output_abbrev_section (void)
8291 unsigned long abbrev_id
;
8293 for (abbrev_id
= 1; abbrev_id
< abbrev_die_table_in_use
; ++abbrev_id
)
8294 output_die_abbrevs (abbrev_id
, abbrev_die_table
[abbrev_id
]);
8296 /* Terminate the table. */
8297 dw2_asm_output_data (1, 0, NULL
);
8300 /* Output a symbol we can use to refer to this DIE from another CU. */
8303 output_die_symbol (dw_die_ref die
)
8305 const char *sym
= die
->die_id
.die_symbol
;
8307 gcc_assert (!die
->comdat_type_p
);
8312 if (strncmp (sym
, DIE_LABEL_PREFIX
, sizeof (DIE_LABEL_PREFIX
) - 1) == 0)
8313 /* We make these global, not weak; if the target doesn't support
8314 .linkonce, it doesn't support combining the sections, so debugging
8316 targetm
.asm_out
.globalize_label (asm_out_file
, sym
);
8318 ASM_OUTPUT_LABEL (asm_out_file
, sym
);
8321 /* Return a new location list, given the begin and end range, and the
8324 static inline dw_loc_list_ref
8325 new_loc_list (dw_loc_descr_ref expr
, const char *begin
, const char *end
,
8326 const char *section
)
8328 dw_loc_list_ref retlist
= ggc_alloc_cleared_dw_loc_list_node ();
8330 retlist
->begin
= begin
;
8331 retlist
->begin_entry
= NULL
;
8333 retlist
->expr
= expr
;
8334 retlist
->section
= section
;
8339 /* Generate a new internal symbol for this location list node, if it
8340 hasn't got one yet. */
8343 gen_llsym (dw_loc_list_ref list
)
8345 gcc_assert (!list
->ll_symbol
);
8346 list
->ll_symbol
= gen_internal_sym ("LLST");
8349 /* Output the location list given to us. */
8352 output_loc_list (dw_loc_list_ref list_head
)
8354 dw_loc_list_ref curr
= list_head
;
8356 if (list_head
->emitted
)
8358 list_head
->emitted
= true;
8360 ASM_OUTPUT_LABEL (asm_out_file
, list_head
->ll_symbol
);
8362 /* Walk the location list, and output each range + expression. */
8363 for (curr
= list_head
; curr
!= NULL
; curr
= curr
->dw_loc_next
)
8366 /* Don't output an entry that starts and ends at the same address. */
8367 if (strcmp (curr
->begin
, curr
->end
) == 0 && !curr
->force
)
8369 size
= size_of_locs (curr
->expr
);
8370 /* If the expression is too large, drop it on the floor. We could
8371 perhaps put it into DW_TAG_dwarf_procedure and refer to that
8372 in the expression, but >= 64KB expressions for a single value
8373 in a single range are unlikely very useful. */
8376 if (dwarf_split_debug_info
)
8378 dw2_asm_output_data (1, DW_LLE_GNU_start_length_entry
,
8379 "Location list start/length entry (%s)",
8380 list_head
->ll_symbol
);
8381 dw2_asm_output_data_uleb128 (curr
->begin_entry
->index
,
8382 "Location list range start index (%s)",
8384 /* The length field is 4 bytes. If we ever need to support
8385 an 8-byte length, we can add a new DW_LLE code or fall back
8386 to DW_LLE_GNU_start_end_entry. */
8387 dw2_asm_output_delta (4, curr
->end
, curr
->begin
,
8388 "Location list range length (%s)",
8389 list_head
->ll_symbol
);
8391 else if (!have_multiple_function_sections
)
8393 dw2_asm_output_delta (DWARF2_ADDR_SIZE
, curr
->begin
, curr
->section
,
8394 "Location list begin address (%s)",
8395 list_head
->ll_symbol
);
8396 dw2_asm_output_delta (DWARF2_ADDR_SIZE
, curr
->end
, curr
->section
,
8397 "Location list end address (%s)",
8398 list_head
->ll_symbol
);
8402 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, curr
->begin
,
8403 "Location list begin address (%s)",
8404 list_head
->ll_symbol
);
8405 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, curr
->end
,
8406 "Location list end address (%s)",
8407 list_head
->ll_symbol
);
8410 /* Output the block length for this list of location operations. */
8411 gcc_assert (size
<= 0xffff);
8412 dw2_asm_output_data (2, size
, "%s", "Location expression size");
8414 output_loc_sequence (curr
->expr
, -1);
8417 if (dwarf_split_debug_info
)
8418 dw2_asm_output_data (1, DW_LLE_GNU_end_of_list_entry
,
8419 "Location list terminator (%s)",
8420 list_head
->ll_symbol
);
8423 dw2_asm_output_data (DWARF2_ADDR_SIZE
, 0,
8424 "Location list terminator begin (%s)",
8425 list_head
->ll_symbol
);
8426 dw2_asm_output_data (DWARF2_ADDR_SIZE
, 0,
8427 "Location list terminator end (%s)",
8428 list_head
->ll_symbol
);
8432 /* Output a range_list offset into the debug_range section. Emit a
8433 relocated reference if val_entry is NULL, otherwise, emit an
8434 indirect reference. */
8437 output_range_list_offset (dw_attr_ref a
)
8439 const char *name
= dwarf_attr_name (a
->dw_attr
);
8441 if (a
->dw_attr_val
.val_entry
== RELOCATED_OFFSET
)
8443 char *p
= strchr (ranges_section_label
, '\0');
8444 sprintf (p
, "+" HOST_WIDE_INT_PRINT_HEX
, a
->dw_attr_val
.v
.val_offset
);
8445 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, ranges_section_label
,
8446 debug_ranges_section
, "%s", name
);
8450 dw2_asm_output_data (DWARF_OFFSET_SIZE
, a
->dw_attr_val
.v
.val_offset
,
8451 "%s (offset from %s)", name
, ranges_section_label
);
8454 /* Output the offset into the debug_loc section. */
8457 output_loc_list_offset (dw_attr_ref a
)
8459 char *sym
= AT_loc_list (a
)->ll_symbol
;
8462 if (dwarf_split_debug_info
)
8463 dw2_asm_output_delta (DWARF_OFFSET_SIZE
, sym
, loc_section_label
,
8464 "%s", dwarf_attr_name (a
->dw_attr
));
8466 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, sym
, debug_loc_section
,
8467 "%s", dwarf_attr_name (a
->dw_attr
));
8470 /* Output an attribute's index or value appropriately. */
8473 output_attr_index_or_value (dw_attr_ref a
)
8475 const char *name
= dwarf_attr_name (a
->dw_attr
);
8477 if (dwarf_split_debug_info
&& AT_index (a
) != NOT_INDEXED
)
8479 dw2_asm_output_data_uleb128 (AT_index (a
), "%s", name
);
8482 switch (AT_class (a
))
8484 case dw_val_class_addr
:
8485 dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE
, AT_addr (a
), "%s", name
);
8487 case dw_val_class_high_pc
:
8488 case dw_val_class_lbl_id
:
8489 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, AT_lbl (a
), "%s", name
);
8491 case dw_val_class_loc_list
:
8492 output_loc_list_offset (a
);
8499 /* Output a type signature. */
8502 output_signature (const char *sig
, const char *name
)
8506 for (i
= 0; i
< DWARF_TYPE_SIGNATURE_SIZE
; i
++)
8507 dw2_asm_output_data (1, sig
[i
], i
== 0 ? "%s" : NULL
, name
);
8510 /* Output the DIE and its attributes. Called recursively to generate
8511 the definitions of each child DIE. */
8514 output_die (dw_die_ref die
)
8521 /* If someone in another CU might refer to us, set up a symbol for
8522 them to point to. */
8523 if (! die
->comdat_type_p
&& die
->die_id
.die_symbol
)
8524 output_die_symbol (die
);
8526 dw2_asm_output_data_uleb128 (die
->die_abbrev
, "(DIE (%#lx) %s)",
8527 (unsigned long)die
->die_offset
,
8528 dwarf_tag_name (die
->die_tag
));
8530 FOR_EACH_VEC_SAFE_ELT (die
->die_attr
, ix
, a
)
8532 const char *name
= dwarf_attr_name (a
->dw_attr
);
8534 switch (AT_class (a
))
8536 case dw_val_class_addr
:
8537 output_attr_index_or_value (a
);
8540 case dw_val_class_offset
:
8541 dw2_asm_output_data (DWARF_OFFSET_SIZE
, a
->dw_attr_val
.v
.val_offset
,
8545 case dw_val_class_range_list
:
8546 output_range_list_offset (a
);
8549 case dw_val_class_loc
:
8550 size
= size_of_locs (AT_loc (a
));
8552 /* Output the block length for this list of location operations. */
8553 if (dwarf_version
>= 4)
8554 dw2_asm_output_data_uleb128 (size
, "%s", name
);
8556 dw2_asm_output_data (constant_size (size
), size
, "%s", name
);
8558 output_loc_sequence (AT_loc (a
), -1);
8561 case dw_val_class_const
:
8562 /* ??? It would be slightly more efficient to use a scheme like is
8563 used for unsigned constants below, but gdb 4.x does not sign
8564 extend. Gdb 5.x does sign extend. */
8565 dw2_asm_output_data_sleb128 (AT_int (a
), "%s", name
);
8568 case dw_val_class_unsigned_const
:
8570 int csize
= constant_size (AT_unsigned (a
));
8571 if (dwarf_version
== 3
8572 && a
->dw_attr
== DW_AT_data_member_location
8574 dw2_asm_output_data_uleb128 (AT_unsigned (a
), "%s", name
);
8576 dw2_asm_output_data (csize
, AT_unsigned (a
), "%s", name
);
8580 case dw_val_class_const_double
:
8582 unsigned HOST_WIDE_INT first
, second
;
8584 if (HOST_BITS_PER_WIDE_INT
>= 64)
8585 dw2_asm_output_data (1,
8586 HOST_BITS_PER_DOUBLE_INT
8587 / HOST_BITS_PER_CHAR
,
8590 if (WORDS_BIG_ENDIAN
)
8592 first
= a
->dw_attr_val
.v
.val_double
.high
;
8593 second
= a
->dw_attr_val
.v
.val_double
.low
;
8597 first
= a
->dw_attr_val
.v
.val_double
.low
;
8598 second
= a
->dw_attr_val
.v
.val_double
.high
;
8601 dw2_asm_output_data (HOST_BITS_PER_WIDE_INT
/ HOST_BITS_PER_CHAR
,
8603 dw2_asm_output_data (HOST_BITS_PER_WIDE_INT
/ HOST_BITS_PER_CHAR
,
8608 case dw_val_class_vec
:
8610 unsigned int elt_size
= a
->dw_attr_val
.v
.val_vec
.elt_size
;
8611 unsigned int len
= a
->dw_attr_val
.v
.val_vec
.length
;
8615 dw2_asm_output_data (constant_size (len
* elt_size
),
8616 len
* elt_size
, "%s", name
);
8617 if (elt_size
> sizeof (HOST_WIDE_INT
))
8622 for (i
= 0, p
= a
->dw_attr_val
.v
.val_vec
.array
;
8625 dw2_asm_output_data (elt_size
, extract_int (p
, elt_size
),
8626 "fp or vector constant word %u", i
);
8630 case dw_val_class_flag
:
8631 if (dwarf_version
>= 4)
8633 /* Currently all add_AT_flag calls pass in 1 as last argument,
8634 so DW_FORM_flag_present can be used. If that ever changes,
8635 we'll need to use DW_FORM_flag and have some optimization
8636 in build_abbrev_table that will change those to
8637 DW_FORM_flag_present if it is set to 1 in all DIEs using
8638 the same abbrev entry. */
8639 gcc_assert (AT_flag (a
) == 1);
8641 fprintf (asm_out_file
, "\t\t\t%s %s\n",
8642 ASM_COMMENT_START
, name
);
8645 dw2_asm_output_data (1, AT_flag (a
), "%s", name
);
8648 case dw_val_class_loc_list
:
8649 output_attr_index_or_value (a
);
8652 case dw_val_class_die_ref
:
8653 if (AT_ref_external (a
))
8655 if (AT_ref (a
)->comdat_type_p
)
8657 comdat_type_node_ref type_node
=
8658 AT_ref (a
)->die_id
.die_type_node
;
8660 gcc_assert (type_node
);
8661 output_signature (type_node
->signature
, name
);
8665 const char *sym
= AT_ref (a
)->die_id
.die_symbol
;
8669 /* In DWARF2, DW_FORM_ref_addr is sized by target address
8670 length, whereas in DWARF3 it's always sized as an
8672 if (dwarf_version
== 2)
8673 size
= DWARF2_ADDR_SIZE
;
8675 size
= DWARF_OFFSET_SIZE
;
8676 dw2_asm_output_offset (size
, sym
, debug_info_section
, "%s",
8682 gcc_assert (AT_ref (a
)->die_offset
);
8683 dw2_asm_output_data (DWARF_OFFSET_SIZE
, AT_ref (a
)->die_offset
,
8688 case dw_val_class_fde_ref
:
8692 ASM_GENERATE_INTERNAL_LABEL (l1
, FDE_LABEL
,
8693 a
->dw_attr_val
.v
.val_fde_index
* 2);
8694 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, l1
, debug_frame_section
,
8699 case dw_val_class_vms_delta
:
8700 dw2_asm_output_vms_delta (DWARF_OFFSET_SIZE
,
8701 AT_vms_delta2 (a
), AT_vms_delta1 (a
),
8705 case dw_val_class_lbl_id
:
8706 output_attr_index_or_value (a
);
8709 case dw_val_class_lineptr
:
8710 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, AT_lbl (a
),
8711 debug_line_section
, "%s", name
);
8714 case dw_val_class_macptr
:
8715 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, AT_lbl (a
),
8716 debug_macinfo_section
, "%s", name
);
8719 case dw_val_class_str
:
8720 if (a
->dw_attr_val
.v
.val_str
->form
== DW_FORM_strp
)
8721 dw2_asm_output_offset (DWARF_OFFSET_SIZE
,
8722 a
->dw_attr_val
.v
.val_str
->label
,
8724 "%s: \"%s\"", name
, AT_string (a
));
8725 else if (a
->dw_attr_val
.v
.val_str
->form
== DW_FORM_GNU_str_index
)
8726 dw2_asm_output_data_uleb128 (AT_index (a
),
8727 "%s: \"%s\"", name
, AT_string (a
));
8729 dw2_asm_output_nstring (AT_string (a
), -1, "%s", name
);
8732 case dw_val_class_file
:
8734 int f
= maybe_emit_file (a
->dw_attr_val
.v
.val_file
);
8736 dw2_asm_output_data (constant_size (f
), f
, "%s (%s)", name
,
8737 a
->dw_attr_val
.v
.val_file
->filename
);
8741 case dw_val_class_data8
:
8745 for (i
= 0; i
< 8; i
++)
8746 dw2_asm_output_data (1, a
->dw_attr_val
.v
.val_data8
[i
],
8747 i
== 0 ? "%s" : NULL
, name
);
8751 case dw_val_class_high_pc
:
8752 dw2_asm_output_delta (DWARF2_ADDR_SIZE
, AT_lbl (a
),
8753 get_AT_low_pc (die
), "DW_AT_high_pc");
8761 FOR_EACH_CHILD (die
, c
, output_die (c
));
8763 /* Add null byte to terminate sibling list. */
8764 if (die
->die_child
!= NULL
)
8765 dw2_asm_output_data (1, 0, "end of children of DIE %#lx",
8766 (unsigned long) die
->die_offset
);
8769 /* Output the compilation unit that appears at the beginning of the
8770 .debug_info section, and precedes the DIE descriptions. */
8773 output_compilation_unit_header (void)
8775 int ver
= dwarf_version
;
8777 if (DWARF_INITIAL_LENGTH_SIZE
- DWARF_OFFSET_SIZE
== 4)
8778 dw2_asm_output_data (4, 0xffffffff,
8779 "Initial length escape value indicating 64-bit DWARF extension");
8780 dw2_asm_output_data (DWARF_OFFSET_SIZE
,
8781 next_die_offset
- DWARF_INITIAL_LENGTH_SIZE
,
8782 "Length of Compilation Unit Info");
8783 dw2_asm_output_data (2, ver
, "DWARF version number");
8784 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, abbrev_section_label
,
8785 debug_abbrev_section
,
8786 "Offset Into Abbrev. Section");
8787 dw2_asm_output_data (1, DWARF2_ADDR_SIZE
, "Pointer Size (in bytes)");
8790 /* Output the compilation unit DIE and its children. */
8793 output_comp_unit (dw_die_ref die
, int output_if_empty
)
8795 const char *secname
, *oldsym
;
8797 external_ref_hash_type extern_map
;
8799 /* Unless we are outputting main CU, we may throw away empty ones. */
8800 if (!output_if_empty
&& die
->die_child
== NULL
)
8803 /* Even if there are no children of this DIE, we must output the information
8804 about the compilation unit. Otherwise, on an empty translation unit, we
8805 will generate a present, but empty, .debug_info section. IRIX 6.5 `nm'
8806 will then complain when examining the file. First mark all the DIEs in
8807 this CU so we know which get local refs. */
8810 extern_map
= optimize_external_refs (die
);
8812 build_abbrev_table (die
, extern_map
);
8814 extern_map
.dispose ();
8816 /* Initialize the beginning DIE offset - and calculate sizes/offsets. */
8817 next_die_offset
= DWARF_COMPILE_UNIT_HEADER_SIZE
;
8818 calc_die_sizes (die
);
8820 oldsym
= die
->die_id
.die_symbol
;
8823 tmp
= XALLOCAVEC (char, strlen (oldsym
) + 24);
8825 sprintf (tmp
, ".gnu.linkonce.wi.%s", oldsym
);
8827 die
->die_id
.die_symbol
= NULL
;
8828 switch_to_section (get_section (secname
, SECTION_DEBUG
, NULL
));
8832 switch_to_section (debug_info_section
);
8833 ASM_OUTPUT_LABEL (asm_out_file
, debug_info_section_label
);
8834 info_section_emitted
= true;
8837 /* Output debugging information. */
8838 output_compilation_unit_header ();
8841 /* Leave the marks on the main CU, so we can check them in
8846 die
->die_id
.die_symbol
= oldsym
;
8850 /* Whether to generate the DWARF accelerator tables in .debug_pubnames
8851 and .debug_pubtypes. This is configured per-target, but can be
8852 overridden by the -gpubnames or -gno-pubnames options. */
8855 want_pubnames (void)
8857 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
8859 if (debug_generate_pub_sections
!= -1)
8860 return debug_generate_pub_sections
;
8861 return targetm
.want_debug_pub_sections
;
8864 /* Add the DW_AT_GNU_pubnames and DW_AT_GNU_pubtypes attributes. */
8867 add_AT_pubnames (dw_die_ref die
)
8869 if (want_pubnames ())
8870 add_AT_flag (die
, DW_AT_GNU_pubnames
, 1);
8873 /* Add a string attribute value to a skeleton DIE. */
8876 add_skeleton_AT_string (dw_die_ref die
, enum dwarf_attribute attr_kind
,
8880 struct indirect_string_node
*node
;
8882 if (! skeleton_debug_str_hash
)
8883 skeleton_debug_str_hash
= htab_create_ggc (10, debug_str_do_hash
,
8884 debug_str_eq
, NULL
);
8886 node
= find_AT_string_in_table (str
, skeleton_debug_str_hash
);
8887 find_string_form (node
);
8888 if (node
->form
== DW_FORM_GNU_str_index
)
8889 node
->form
= DW_FORM_strp
;
8891 attr
.dw_attr
= attr_kind
;
8892 attr
.dw_attr_val
.val_class
= dw_val_class_str
;
8893 attr
.dw_attr_val
.val_entry
= NULL
;
8894 attr
.dw_attr_val
.v
.val_str
= node
;
8895 add_dwarf_attr (die
, &attr
);
8898 /* Helper function to generate top-level dies for skeleton debug_info and
8902 add_top_level_skeleton_die_attrs (dw_die_ref die
)
8904 const char *dwo_file_name
= concat (aux_base_name
, ".dwo", NULL
);
8905 const char *comp_dir
= comp_dir_string ();
8907 add_skeleton_AT_string (die
, DW_AT_GNU_dwo_name
, dwo_file_name
);
8908 if (comp_dir
!= NULL
)
8909 add_skeleton_AT_string (die
, DW_AT_comp_dir
, comp_dir
);
8910 add_AT_pubnames (die
);
8911 add_AT_lineptr (die
, DW_AT_GNU_addr_base
, debug_addr_section_label
);
8914 /* Return the single type-unit die for skeleton type units. */
8917 get_skeleton_type_unit (void)
8919 /* For dwarf_split_debug_sections with use_type info, all type units in the
8920 skeleton sections have identical dies (but different headers). This
8921 single die will be output many times. */
8923 static dw_die_ref skeleton_type_unit
= NULL
;
8925 if (skeleton_type_unit
== NULL
)
8927 skeleton_type_unit
= new_die (DW_TAG_type_unit
, NULL
, NULL
);
8928 add_top_level_skeleton_die_attrs (skeleton_type_unit
);
8929 skeleton_type_unit
->die_abbrev
= SKELETON_TYPE_DIE_ABBREV
;
8931 return skeleton_type_unit
;
8934 /* Output skeleton debug sections that point to the dwo file. */
8937 output_skeleton_debug_sections (dw_die_ref comp_unit
)
8939 /* These attributes will be found in the full debug_info section. */
8940 remove_AT (comp_unit
, DW_AT_producer
);
8941 remove_AT (comp_unit
, DW_AT_language
);
8943 switch_to_section (debug_skeleton_info_section
);
8944 ASM_OUTPUT_LABEL (asm_out_file
, debug_skeleton_info_section_label
);
8946 /* Produce the skeleton compilation-unit header. This one differs enough from
8947 a normal CU header that it's better not to call output_compilation_unit
8949 if (DWARF_INITIAL_LENGTH_SIZE
- DWARF_OFFSET_SIZE
== 4)
8950 dw2_asm_output_data (4, 0xffffffff,
8951 "Initial length escape value indicating 64-bit DWARF extension");
8953 dw2_asm_output_data (DWARF_OFFSET_SIZE
,
8954 DWARF_COMPILE_UNIT_HEADER_SIZE
8955 - DWARF_INITIAL_LENGTH_SIZE
8956 + size_of_die (comp_unit
),
8957 "Length of Compilation Unit Info");
8958 dw2_asm_output_data (2, dwarf_version
, "DWARF version number");
8959 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, debug_skeleton_abbrev_section_label
,
8960 debug_abbrev_section
,
8961 "Offset Into Abbrev. Section");
8962 dw2_asm_output_data (1, DWARF2_ADDR_SIZE
, "Pointer Size (in bytes)");
8964 comp_unit
->die_abbrev
= SKELETON_COMP_DIE_ABBREV
;
8965 output_die (comp_unit
);
8967 /* Build the skeleton debug_abbrev section. */
8968 switch_to_section (debug_skeleton_abbrev_section
);
8969 ASM_OUTPUT_LABEL (asm_out_file
, debug_skeleton_abbrev_section_label
);
8971 output_die_abbrevs (SKELETON_COMP_DIE_ABBREV
, comp_unit
);
8972 if (use_debug_types
)
8973 output_die_abbrevs (SKELETON_TYPE_DIE_ABBREV
, get_skeleton_type_unit ());
8975 dw2_asm_output_data (1, 0, "end of skeleton .debug_abbrev");
8978 /* Output a comdat type unit DIE and its children. */
8981 output_comdat_type_unit (comdat_type_node
*node
)
8983 const char *secname
;
8986 #if defined (OBJECT_FORMAT_ELF)
8989 external_ref_hash_type extern_map
;
8991 /* First mark all the DIEs in this CU so we know which get local refs. */
8992 mark_dies (node
->root_die
);
8994 extern_map
= optimize_external_refs (node
->root_die
);
8996 build_abbrev_table (node
->root_die
, extern_map
);
8998 extern_map
.dispose ();
9000 /* Initialize the beginning DIE offset - and calculate sizes/offsets. */
9001 next_die_offset
= DWARF_COMDAT_TYPE_UNIT_HEADER_SIZE
;
9002 calc_die_sizes (node
->root_die
);
9004 #if defined (OBJECT_FORMAT_ELF)
9005 if (!dwarf_split_debug_info
)
9006 secname
= ".debug_types";
9008 secname
= ".debug_types.dwo";
9010 tmp
= XALLOCAVEC (char, 4 + DWARF_TYPE_SIGNATURE_SIZE
* 2);
9011 sprintf (tmp
, "wt.");
9012 for (i
= 0; i
< DWARF_TYPE_SIGNATURE_SIZE
; i
++)
9013 sprintf (tmp
+ 3 + i
* 2, "%02x", node
->signature
[i
] & 0xff);
9014 comdat_key
= get_identifier (tmp
);
9015 targetm
.asm_out
.named_section (secname
,
9016 SECTION_DEBUG
| SECTION_LINKONCE
,
9019 tmp
= XALLOCAVEC (char, 18 + DWARF_TYPE_SIGNATURE_SIZE
* 2);
9020 sprintf (tmp
, ".gnu.linkonce.wt.");
9021 for (i
= 0; i
< DWARF_TYPE_SIGNATURE_SIZE
; i
++)
9022 sprintf (tmp
+ 17 + i
* 2, "%02x", node
->signature
[i
] & 0xff);
9024 switch_to_section (get_section (secname
, SECTION_DEBUG
, NULL
));
9027 /* Output debugging information. */
9028 output_compilation_unit_header ();
9029 output_signature (node
->signature
, "Type Signature");
9030 dw2_asm_output_data (DWARF_OFFSET_SIZE
, node
->type_die
->die_offset
,
9031 "Offset to Type DIE");
9032 output_die (node
->root_die
);
9034 unmark_dies (node
->root_die
);
9036 #if defined (OBJECT_FORMAT_ELF)
9037 if (dwarf_split_debug_info
)
9039 /* Produce the skeleton type-unit header. */
9040 const char *secname
= ".debug_types";
9042 targetm
.asm_out
.named_section (secname
,
9043 SECTION_DEBUG
| SECTION_LINKONCE
,
9045 if (DWARF_INITIAL_LENGTH_SIZE
- DWARF_OFFSET_SIZE
== 4)
9046 dw2_asm_output_data (4, 0xffffffff,
9047 "Initial length escape value indicating 64-bit DWARF extension");
9049 dw2_asm_output_data (DWARF_OFFSET_SIZE
,
9050 DWARF_COMPILE_UNIT_HEADER_SIZE
9051 - DWARF_INITIAL_LENGTH_SIZE
9052 + size_of_die (get_skeleton_type_unit ())
9053 + DWARF_TYPE_SIGNATURE_SIZE
+ DWARF_OFFSET_SIZE
,
9054 "Length of Type Unit Info");
9055 dw2_asm_output_data (2, dwarf_version
, "DWARF version number");
9056 dw2_asm_output_offset (DWARF_OFFSET_SIZE
,
9057 debug_skeleton_abbrev_section_label
,
9058 debug_abbrev_section
,
9059 "Offset Into Abbrev. Section");
9060 dw2_asm_output_data (1, DWARF2_ADDR_SIZE
, "Pointer Size (in bytes)");
9061 output_signature (node
->signature
, "Type Signature");
9062 dw2_asm_output_data (DWARF_OFFSET_SIZE
, 0, "Offset to Type DIE");
9064 output_die (get_skeleton_type_unit ());
9069 /* Return the DWARF2/3 pubname associated with a decl. */
9072 dwarf2_name (tree decl
, int scope
)
9074 if (DECL_NAMELESS (decl
))
9076 return lang_hooks
.dwarf_name (decl
, scope
? 1 : 0);
9079 /* Add a new entry to .debug_pubnames if appropriate. */
9082 add_pubname_string (const char *str
, dw_die_ref die
)
9087 e
.name
= xstrdup (str
);
9088 vec_safe_push (pubname_table
, e
);
9092 add_pubname (tree decl
, dw_die_ref die
)
9094 if (!want_pubnames ())
9097 /* Don't add items to the table when we expect that the consumer will have
9098 just read the enclosing die. For example, if the consumer is looking at a
9099 class_member, it will either be inside the class already, or will have just
9100 looked up the class to find the member. Either way, searching the class is
9101 faster than searching the index. */
9102 if ((TREE_PUBLIC (decl
) && !class_scope_p (die
->die_parent
))
9103 || is_cu_die (die
->die_parent
) || is_namespace_die (die
->die_parent
))
9105 const char *name
= dwarf2_name (decl
, 1);
9108 add_pubname_string (name
, die
);
9112 /* Add an enumerator to the pubnames section. */
9115 add_enumerator_pubname (const char *scope_name
, dw_die_ref die
)
9119 gcc_assert (scope_name
);
9120 e
.name
= concat (scope_name
, get_AT_string (die
, DW_AT_name
), NULL
);
9122 vec_safe_push (pubname_table
, e
);
9125 /* Add a new entry to .debug_pubtypes if appropriate. */
9128 add_pubtype (tree decl
, dw_die_ref die
)
9132 if (!want_pubnames ())
9135 if ((TREE_PUBLIC (decl
)
9136 || is_cu_die (die
->die_parent
) || is_namespace_die (die
->die_parent
))
9137 && (die
->die_tag
== DW_TAG_typedef
|| COMPLETE_TYPE_P (decl
)))
9140 const char *scope_name
= "";
9141 const char *sep
= is_cxx () ? "::" : ".";
9144 scope
= TYPE_P (decl
) ? TYPE_CONTEXT (decl
) : NULL
;
9145 if (scope
&& TREE_CODE (scope
) == NAMESPACE_DECL
)
9147 scope_name
= lang_hooks
.dwarf_name (scope
, 1);
9148 if (scope_name
!= NULL
&& scope_name
[0] != '\0')
9149 scope_name
= concat (scope_name
, sep
, NULL
);
9155 name
= type_tag (decl
);
9157 name
= lang_hooks
.dwarf_name (decl
, 1);
9159 /* If we don't have a name for the type, there's no point in adding
9161 if (name
!= NULL
&& name
[0] != '\0')
9164 e
.name
= concat (scope_name
, name
, NULL
);
9165 vec_safe_push (pubtype_table
, e
);
9168 /* Although it might be more consistent to add the pubinfo for the
9169 enumerators as their dies are created, they should only be added if the
9170 enum type meets the criteria above. So rather than re-check the parent
9171 enum type whenever an enumerator die is created, just output them all
9172 here. This isn't protected by the name conditional because anonymous
9173 enums don't have names. */
9174 if (die
->die_tag
== DW_TAG_enumeration_type
)
9178 FOR_EACH_CHILD (die
, c
, add_enumerator_pubname (scope_name
, c
));
9183 /* Output a single entry in the pubnames table. */
9186 output_pubname (dw_offset die_offset
, pubname_entry
*entry
)
9188 dw_die_ref die
= entry
->die
;
9189 int is_static
= get_AT_flag (die
, DW_AT_external
) ? 0 : 1;
9191 dw2_asm_output_data (DWARF_OFFSET_SIZE
, die_offset
, "DIE offset");
9193 if (debug_generate_pub_sections
== 2)
9195 /* This logic follows gdb's method for determining the value of the flag
9197 uint32_t flags
= GDB_INDEX_SYMBOL_KIND_NONE
;
9198 switch (die
->die_tag
)
9200 case DW_TAG_typedef
:
9201 case DW_TAG_base_type
:
9202 case DW_TAG_subrange_type
:
9203 GDB_INDEX_SYMBOL_KIND_SET_VALUE(flags
, GDB_INDEX_SYMBOL_KIND_TYPE
);
9204 GDB_INDEX_SYMBOL_STATIC_SET_VALUE(flags
, 1);
9206 case DW_TAG_enumerator
:
9207 GDB_INDEX_SYMBOL_KIND_SET_VALUE(flags
,
9208 GDB_INDEX_SYMBOL_KIND_VARIABLE
);
9209 if (!is_cxx () && !is_java ())
9210 GDB_INDEX_SYMBOL_STATIC_SET_VALUE(flags
, 1);
9212 case DW_TAG_subprogram
:
9213 GDB_INDEX_SYMBOL_KIND_SET_VALUE(flags
,
9214 GDB_INDEX_SYMBOL_KIND_FUNCTION
);
9216 GDB_INDEX_SYMBOL_STATIC_SET_VALUE(flags
, is_static
);
9218 case DW_TAG_constant
:
9219 GDB_INDEX_SYMBOL_KIND_SET_VALUE(flags
,
9220 GDB_INDEX_SYMBOL_KIND_VARIABLE
);
9221 GDB_INDEX_SYMBOL_STATIC_SET_VALUE(flags
, is_static
);
9223 case DW_TAG_variable
:
9224 GDB_INDEX_SYMBOL_KIND_SET_VALUE(flags
,
9225 GDB_INDEX_SYMBOL_KIND_VARIABLE
);
9226 GDB_INDEX_SYMBOL_STATIC_SET_VALUE(flags
, is_static
);
9228 case DW_TAG_namespace
:
9229 case DW_TAG_imported_declaration
:
9230 GDB_INDEX_SYMBOL_KIND_SET_VALUE(flags
, GDB_INDEX_SYMBOL_KIND_TYPE
);
9232 case DW_TAG_class_type
:
9233 case DW_TAG_interface_type
:
9234 case DW_TAG_structure_type
:
9235 case DW_TAG_union_type
:
9236 case DW_TAG_enumeration_type
:
9237 GDB_INDEX_SYMBOL_KIND_SET_VALUE(flags
, GDB_INDEX_SYMBOL_KIND_TYPE
);
9238 if (!is_cxx () && !is_java ())
9239 GDB_INDEX_SYMBOL_STATIC_SET_VALUE(flags
, 1);
9242 /* An unusual tag. Leave the flag-byte empty. */
9245 dw2_asm_output_data (1, flags
>> GDB_INDEX_CU_BITSIZE
,
9249 dw2_asm_output_nstring (entry
->name
, -1, "external name");
9253 /* Output the public names table used to speed up access to externally
9254 visible names; or the public types table used to find type definitions. */
9257 output_pubnames (vec
<pubname_entry
, va_gc
> *names
)
9260 unsigned long pubnames_length
= size_of_pubnames (names
);
9263 if (DWARF_INITIAL_LENGTH_SIZE
- DWARF_OFFSET_SIZE
== 4)
9264 dw2_asm_output_data (4, 0xffffffff,
9265 "Initial length escape value indicating 64-bit DWARF extension");
9266 dw2_asm_output_data (DWARF_OFFSET_SIZE
, pubnames_length
, "Pub Info Length");
9268 /* Version number for pubnames/pubtypes is independent of dwarf version. */
9269 dw2_asm_output_data (2, 2, "DWARF Version");
9271 if (dwarf_split_debug_info
)
9272 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, debug_skeleton_info_section_label
,
9273 debug_skeleton_info_section
,
9274 "Offset of Compilation Unit Info");
9276 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, debug_info_section_label
,
9278 "Offset of Compilation Unit Info");
9279 dw2_asm_output_data (DWARF_OFFSET_SIZE
, next_die_offset
,
9280 "Compilation Unit Length");
9282 FOR_EACH_VEC_ELT (*names
, i
, pub
)
9284 if (include_pubname_in_output (names
, pub
))
9286 dw_offset die_offset
= pub
->die
->die_offset
;
9288 /* We shouldn't see pubnames for DIEs outside of the main CU. */
9289 if (names
== pubname_table
&& pub
->die
->die_tag
!= DW_TAG_enumerator
)
9290 gcc_assert (pub
->die
->die_mark
);
9292 /* If we're putting types in their own .debug_types sections,
9293 the .debug_pubtypes table will still point to the compile
9294 unit (not the type unit), so we want to use the offset of
9295 the skeleton DIE (if there is one). */
9296 if (pub
->die
->comdat_type_p
&& names
== pubtype_table
)
9298 comdat_type_node_ref type_node
= pub
->die
->die_id
.die_type_node
;
9300 if (type_node
!= NULL
)
9301 die_offset
= (type_node
->skeleton_die
!= NULL
9302 ? type_node
->skeleton_die
->die_offset
9303 : comp_unit_die ()->die_offset
);
9306 output_pubname (die_offset
, pub
);
9310 dw2_asm_output_data (DWARF_OFFSET_SIZE
, 0, NULL
);
9313 /* Output public names and types tables if necessary. */
9316 output_pubtables (void)
9318 if (!want_pubnames () || !info_section_emitted
)
9321 switch_to_section (debug_pubnames_section
);
9322 output_pubnames (pubname_table
);
9323 /* ??? Only defined by DWARF3, but emitted by Darwin for DWARF2.
9324 It shouldn't hurt to emit it always, since pure DWARF2 consumers
9325 simply won't look for the section. */
9326 switch_to_section (debug_pubtypes_section
);
9327 output_pubnames (pubtype_table
);
9331 /* Output the information that goes into the .debug_aranges table.
9332 Namely, define the beginning and ending address range of the
9333 text section generated for this compilation unit. */
9336 output_aranges (unsigned long aranges_length
)
9340 if (DWARF_INITIAL_LENGTH_SIZE
- DWARF_OFFSET_SIZE
== 4)
9341 dw2_asm_output_data (4, 0xffffffff,
9342 "Initial length escape value indicating 64-bit DWARF extension");
9343 dw2_asm_output_data (DWARF_OFFSET_SIZE
, aranges_length
,
9344 "Length of Address Ranges Info");
9345 /* Version number for aranges is still 2, even in DWARF3. */
9346 dw2_asm_output_data (2, 2, "DWARF Version");
9347 if (dwarf_split_debug_info
)
9348 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, debug_skeleton_info_section_label
,
9349 debug_skeleton_info_section
,
9350 "Offset of Compilation Unit Info");
9352 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, debug_info_section_label
,
9354 "Offset of Compilation Unit Info");
9355 dw2_asm_output_data (1, DWARF2_ADDR_SIZE
, "Size of Address");
9356 dw2_asm_output_data (1, 0, "Size of Segment Descriptor");
9358 /* We need to align to twice the pointer size here. */
9359 if (DWARF_ARANGES_PAD_SIZE
)
9361 /* Pad using a 2 byte words so that padding is correct for any
9363 dw2_asm_output_data (2, 0, "Pad to %d byte boundary",
9364 2 * DWARF2_ADDR_SIZE
);
9365 for (i
= 2; i
< (unsigned) DWARF_ARANGES_PAD_SIZE
; i
+= 2)
9366 dw2_asm_output_data (2, 0, NULL
);
9369 /* It is necessary not to output these entries if the sections were
9370 not used; if the sections were not used, the length will be 0 and
9371 the address may end up as 0 if the section is discarded by ld
9372 --gc-sections, leaving an invalid (0, 0) entry that can be
9373 confused with the terminator. */
9374 if (text_section_used
)
9376 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, text_section_label
, "Address");
9377 dw2_asm_output_delta (DWARF2_ADDR_SIZE
, text_end_label
,
9378 text_section_label
, "Length");
9380 if (cold_text_section_used
)
9382 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, cold_text_section_label
,
9384 dw2_asm_output_delta (DWARF2_ADDR_SIZE
, cold_end_label
,
9385 cold_text_section_label
, "Length");
9388 if (have_multiple_function_sections
)
9393 FOR_EACH_VEC_ELT (*fde_vec
, fde_idx
, fde
)
9395 if (DECL_IGNORED_P (fde
->decl
))
9397 if (!fde
->in_std_section
)
9399 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, fde
->dw_fde_begin
,
9401 dw2_asm_output_delta (DWARF2_ADDR_SIZE
, fde
->dw_fde_end
,
9402 fde
->dw_fde_begin
, "Length");
9404 if (fde
->dw_fde_second_begin
&& !fde
->second_in_std_section
)
9406 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, fde
->dw_fde_second_begin
,
9408 dw2_asm_output_delta (DWARF2_ADDR_SIZE
, fde
->dw_fde_second_end
,
9409 fde
->dw_fde_second_begin
, "Length");
9414 /* Output the terminator words. */
9415 dw2_asm_output_data (DWARF2_ADDR_SIZE
, 0, NULL
);
9416 dw2_asm_output_data (DWARF2_ADDR_SIZE
, 0, NULL
);
9419 /* Add a new entry to .debug_ranges. Return the offset at which it
9423 add_ranges_num (int num
)
9425 unsigned int in_use
= ranges_table_in_use
;
9427 if (in_use
== ranges_table_allocated
)
9429 ranges_table_allocated
+= RANGES_TABLE_INCREMENT
;
9430 ranges_table
= GGC_RESIZEVEC (struct dw_ranges_struct
, ranges_table
,
9431 ranges_table_allocated
);
9432 memset (ranges_table
+ ranges_table_in_use
, 0,
9433 RANGES_TABLE_INCREMENT
* sizeof (struct dw_ranges_struct
));
9436 ranges_table
[in_use
].num
= num
;
9437 ranges_table_in_use
= in_use
+ 1;
9439 return in_use
* 2 * DWARF2_ADDR_SIZE
;
9442 /* Add a new entry to .debug_ranges corresponding to a block, or a
9443 range terminator if BLOCK is NULL. */
9446 add_ranges (const_tree block
)
9448 return add_ranges_num (block
? BLOCK_NUMBER (block
) : 0);
9451 /* Add a new entry to .debug_ranges corresponding to a pair of labels.
9452 When using dwarf_split_debug_info, address attributes in dies destined
9453 for the final executable should be direct references--setting the
9454 parameter force_direct ensures this behavior. */
9457 add_ranges_by_labels (dw_die_ref die
, const char *begin
, const char *end
,
9458 bool *added
, bool force_direct
)
9460 unsigned int in_use
= ranges_by_label_in_use
;
9461 unsigned int offset
;
9463 if (in_use
== ranges_by_label_allocated
)
9465 ranges_by_label_allocated
+= RANGES_TABLE_INCREMENT
;
9466 ranges_by_label
= GGC_RESIZEVEC (struct dw_ranges_by_label_struct
,
9468 ranges_by_label_allocated
);
9469 memset (ranges_by_label
+ ranges_by_label_in_use
, 0,
9470 RANGES_TABLE_INCREMENT
9471 * sizeof (struct dw_ranges_by_label_struct
));
9474 ranges_by_label
[in_use
].begin
= begin
;
9475 ranges_by_label
[in_use
].end
= end
;
9476 ranges_by_label_in_use
= in_use
+ 1;
9478 offset
= add_ranges_num (-(int)in_use
- 1);
9481 add_AT_range_list (die
, DW_AT_ranges
, offset
, force_direct
);
9487 output_ranges (void)
9490 static const char *const start_fmt
= "Offset %#x";
9491 const char *fmt
= start_fmt
;
9493 for (i
= 0; i
< ranges_table_in_use
; i
++)
9495 int block_num
= ranges_table
[i
].num
;
9499 char blabel
[MAX_ARTIFICIAL_LABEL_BYTES
];
9500 char elabel
[MAX_ARTIFICIAL_LABEL_BYTES
];
9502 ASM_GENERATE_INTERNAL_LABEL (blabel
, BLOCK_BEGIN_LABEL
, block_num
);
9503 ASM_GENERATE_INTERNAL_LABEL (elabel
, BLOCK_END_LABEL
, block_num
);
9505 /* If all code is in the text section, then the compilation
9506 unit base address defaults to DW_AT_low_pc, which is the
9507 base of the text section. */
9508 if (!have_multiple_function_sections
)
9510 dw2_asm_output_delta (DWARF2_ADDR_SIZE
, blabel
,
9512 fmt
, i
* 2 * DWARF2_ADDR_SIZE
);
9513 dw2_asm_output_delta (DWARF2_ADDR_SIZE
, elabel
,
9514 text_section_label
, NULL
);
9517 /* Otherwise, the compilation unit base address is zero,
9518 which allows us to use absolute addresses, and not worry
9519 about whether the target supports cross-section
9523 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, blabel
,
9524 fmt
, i
* 2 * DWARF2_ADDR_SIZE
);
9525 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, elabel
, NULL
);
9531 /* Negative block_num stands for an index into ranges_by_label. */
9532 else if (block_num
< 0)
9534 int lab_idx
= - block_num
- 1;
9536 if (!have_multiple_function_sections
)
9540 /* If we ever use add_ranges_by_labels () for a single
9541 function section, all we have to do is to take out
9543 dw2_asm_output_delta (DWARF2_ADDR_SIZE
,
9544 ranges_by_label
[lab_idx
].begin
,
9546 fmt
, i
* 2 * DWARF2_ADDR_SIZE
);
9547 dw2_asm_output_delta (DWARF2_ADDR_SIZE
,
9548 ranges_by_label
[lab_idx
].end
,
9549 text_section_label
, NULL
);
9554 dw2_asm_output_addr (DWARF2_ADDR_SIZE
,
9555 ranges_by_label
[lab_idx
].begin
,
9556 fmt
, i
* 2 * DWARF2_ADDR_SIZE
);
9557 dw2_asm_output_addr (DWARF2_ADDR_SIZE
,
9558 ranges_by_label
[lab_idx
].end
,
9564 dw2_asm_output_data (DWARF2_ADDR_SIZE
, 0, NULL
);
9565 dw2_asm_output_data (DWARF2_ADDR_SIZE
, 0, NULL
);
9571 /* Data structure containing information about input files. */
9574 const char *path
; /* Complete file name. */
9575 const char *fname
; /* File name part. */
9576 int length
; /* Length of entire string. */
9577 struct dwarf_file_data
* file_idx
; /* Index in input file table. */
9578 int dir_idx
; /* Index in directory table. */
9581 /* Data structure containing information about directories with source
9585 const char *path
; /* Path including directory name. */
9586 int length
; /* Path length. */
9587 int prefix
; /* Index of directory entry which is a prefix. */
9588 int count
; /* Number of files in this directory. */
9589 int dir_idx
; /* Index of directory used as base. */
9592 /* Callback function for file_info comparison. We sort by looking at
9593 the directories in the path. */
9596 file_info_cmp (const void *p1
, const void *p2
)
9598 const struct file_info
*const s1
= (const struct file_info
*) p1
;
9599 const struct file_info
*const s2
= (const struct file_info
*) p2
;
9600 const unsigned char *cp1
;
9601 const unsigned char *cp2
;
9603 /* Take care of file names without directories. We need to make sure that
9604 we return consistent values to qsort since some will get confused if
9605 we return the same value when identical operands are passed in opposite
9606 orders. So if neither has a directory, return 0 and otherwise return
9607 1 or -1 depending on which one has the directory. */
9608 if ((s1
->path
== s1
->fname
|| s2
->path
== s2
->fname
))
9609 return (s2
->path
== s2
->fname
) - (s1
->path
== s1
->fname
);
9611 cp1
= (const unsigned char *) s1
->path
;
9612 cp2
= (const unsigned char *) s2
->path
;
9618 /* Reached the end of the first path? If so, handle like above. */
9619 if ((cp1
== (const unsigned char *) s1
->fname
)
9620 || (cp2
== (const unsigned char *) s2
->fname
))
9621 return ((cp2
== (const unsigned char *) s2
->fname
)
9622 - (cp1
== (const unsigned char *) s1
->fname
));
9624 /* Character of current path component the same? */
9625 else if (*cp1
!= *cp2
)
9630 struct file_name_acquire_data
9632 struct file_info
*files
;
9637 /* Traversal function for the hash table. */
9640 file_name_acquire (void ** slot
, void *data
)
9642 struct file_name_acquire_data
*fnad
= (struct file_name_acquire_data
*) data
;
9643 struct dwarf_file_data
*d
= (struct dwarf_file_data
*) *slot
;
9644 struct file_info
*fi
;
9647 gcc_assert (fnad
->max_files
>= d
->emitted_number
);
9649 if (! d
->emitted_number
)
9652 gcc_assert (fnad
->max_files
!= fnad
->used_files
);
9654 fi
= fnad
->files
+ fnad
->used_files
++;
9656 /* Skip all leading "./". */
9658 while (f
[0] == '.' && IS_DIR_SEPARATOR (f
[1]))
9661 /* Create a new array entry. */
9663 fi
->length
= strlen (f
);
9666 /* Search for the file name part. */
9667 f
= strrchr (f
, DIR_SEPARATOR
);
9668 #if defined (DIR_SEPARATOR_2)
9670 char *g
= strrchr (fi
->path
, DIR_SEPARATOR_2
);
9674 if (f
== NULL
|| f
< g
)
9680 fi
->fname
= f
== NULL
? fi
->path
: f
+ 1;
9684 /* Output the directory table and the file name table. We try to minimize
9685 the total amount of memory needed. A heuristic is used to avoid large
9686 slowdowns with many input files. */
9689 output_file_names (void)
9691 struct file_name_acquire_data fnad
;
9693 struct file_info
*files
;
9694 struct dir_info
*dirs
;
9702 if (!last_emitted_file
)
9704 dw2_asm_output_data (1, 0, "End directory table");
9705 dw2_asm_output_data (1, 0, "End file name table");
9709 numfiles
= last_emitted_file
->emitted_number
;
9711 /* Allocate the various arrays we need. */
9712 files
= XALLOCAVEC (struct file_info
, numfiles
);
9713 dirs
= XALLOCAVEC (struct dir_info
, numfiles
);
9716 fnad
.used_files
= 0;
9717 fnad
.max_files
= numfiles
;
9718 htab_traverse (file_table
, file_name_acquire
, &fnad
);
9719 gcc_assert (fnad
.used_files
== fnad
.max_files
);
9721 qsort (files
, numfiles
, sizeof (files
[0]), file_info_cmp
);
9723 /* Find all the different directories used. */
9724 dirs
[0].path
= files
[0].path
;
9725 dirs
[0].length
= files
[0].fname
- files
[0].path
;
9726 dirs
[0].prefix
= -1;
9728 dirs
[0].dir_idx
= 0;
9729 files
[0].dir_idx
= 0;
9732 for (i
= 1; i
< numfiles
; i
++)
9733 if (files
[i
].fname
- files
[i
].path
== dirs
[ndirs
- 1].length
9734 && memcmp (dirs
[ndirs
- 1].path
, files
[i
].path
,
9735 dirs
[ndirs
- 1].length
) == 0)
9737 /* Same directory as last entry. */
9738 files
[i
].dir_idx
= ndirs
- 1;
9739 ++dirs
[ndirs
- 1].count
;
9745 /* This is a new directory. */
9746 dirs
[ndirs
].path
= files
[i
].path
;
9747 dirs
[ndirs
].length
= files
[i
].fname
- files
[i
].path
;
9748 dirs
[ndirs
].count
= 1;
9749 dirs
[ndirs
].dir_idx
= ndirs
;
9750 files
[i
].dir_idx
= ndirs
;
9752 /* Search for a prefix. */
9753 dirs
[ndirs
].prefix
= -1;
9754 for (j
= 0; j
< ndirs
; j
++)
9755 if (dirs
[j
].length
< dirs
[ndirs
].length
9756 && dirs
[j
].length
> 1
9757 && (dirs
[ndirs
].prefix
== -1
9758 || dirs
[j
].length
> dirs
[dirs
[ndirs
].prefix
].length
)
9759 && memcmp (dirs
[j
].path
, dirs
[ndirs
].path
, dirs
[j
].length
) == 0)
9760 dirs
[ndirs
].prefix
= j
;
9765 /* Now to the actual work. We have to find a subset of the directories which
9766 allow expressing the file name using references to the directory table
9767 with the least amount of characters. We do not do an exhaustive search
9768 where we would have to check out every combination of every single
9769 possible prefix. Instead we use a heuristic which provides nearly optimal
9770 results in most cases and never is much off. */
9771 saved
= XALLOCAVEC (int, ndirs
);
9772 savehere
= XALLOCAVEC (int, ndirs
);
9774 memset (saved
, '\0', ndirs
* sizeof (saved
[0]));
9775 for (i
= 0; i
< ndirs
; i
++)
9780 /* We can always save some space for the current directory. But this
9781 does not mean it will be enough to justify adding the directory. */
9782 savehere
[i
] = dirs
[i
].length
;
9783 total
= (savehere
[i
] - saved
[i
]) * dirs
[i
].count
;
9785 for (j
= i
+ 1; j
< ndirs
; j
++)
9788 if (saved
[j
] < dirs
[i
].length
)
9790 /* Determine whether the dirs[i] path is a prefix of the
9795 while (k
!= -1 && k
!= (int) i
)
9800 /* Yes it is. We can possibly save some memory by
9801 writing the filenames in dirs[j] relative to
9803 savehere
[j
] = dirs
[i
].length
;
9804 total
+= (savehere
[j
] - saved
[j
]) * dirs
[j
].count
;
9809 /* Check whether we can save enough to justify adding the dirs[i]
9811 if (total
> dirs
[i
].length
+ 1)
9813 /* It's worthwhile adding. */
9814 for (j
= i
; j
< ndirs
; j
++)
9815 if (savehere
[j
] > 0)
9817 /* Remember how much we saved for this directory so far. */
9818 saved
[j
] = savehere
[j
];
9820 /* Remember the prefix directory. */
9821 dirs
[j
].dir_idx
= i
;
9826 /* Emit the directory name table. */
9827 idx_offset
= dirs
[0].length
> 0 ? 1 : 0;
9828 for (i
= 1 - idx_offset
; i
< ndirs
; i
++)
9829 dw2_asm_output_nstring (dirs
[i
].path
,
9831 - !DWARF2_DIR_SHOULD_END_WITH_SEPARATOR
,
9832 "Directory Entry: %#x", i
+ idx_offset
);
9834 dw2_asm_output_data (1, 0, "End directory table");
9836 /* We have to emit them in the order of emitted_number since that's
9837 used in the debug info generation. To do this efficiently we
9838 generate a back-mapping of the indices first. */
9839 backmap
= XALLOCAVEC (int, numfiles
);
9840 for (i
= 0; i
< numfiles
; i
++)
9841 backmap
[files
[i
].file_idx
->emitted_number
- 1] = i
;
9843 /* Now write all the file names. */
9844 for (i
= 0; i
< numfiles
; i
++)
9846 int file_idx
= backmap
[i
];
9847 int dir_idx
= dirs
[files
[file_idx
].dir_idx
].dir_idx
;
9849 #ifdef VMS_DEBUGGING_INFO
9850 #define MAX_VMS_VERSION_LEN 6 /* ";32768" */
9852 /* Setting these fields can lead to debugger miscomparisons,
9853 but VMS Debug requires them to be set correctly. */
9858 int maxfilelen
= strlen (files
[file_idx
].path
)
9859 + dirs
[dir_idx
].length
9860 + MAX_VMS_VERSION_LEN
+ 1;
9861 char *filebuf
= XALLOCAVEC (char, maxfilelen
);
9863 vms_file_stats_name (files
[file_idx
].path
, 0, 0, 0, &ver
);
9864 snprintf (filebuf
, maxfilelen
, "%s;%d",
9865 files
[file_idx
].path
+ dirs
[dir_idx
].length
, ver
);
9867 dw2_asm_output_nstring
9868 (filebuf
, -1, "File Entry: %#x", (unsigned) i
+ 1);
9870 /* Include directory index. */
9871 dw2_asm_output_data_uleb128 (dir_idx
+ idx_offset
, NULL
);
9873 /* Modification time. */
9874 dw2_asm_output_data_uleb128
9875 ((vms_file_stats_name (files
[file_idx
].path
, &cdt
, 0, 0, 0) == 0)
9879 /* File length in bytes. */
9880 dw2_asm_output_data_uleb128
9881 ((vms_file_stats_name (files
[file_idx
].path
, 0, &siz
, 0, 0) == 0)
9885 dw2_asm_output_nstring (files
[file_idx
].path
+ dirs
[dir_idx
].length
, -1,
9886 "File Entry: %#x", (unsigned) i
+ 1);
9888 /* Include directory index. */
9889 dw2_asm_output_data_uleb128 (dir_idx
+ idx_offset
, NULL
);
9891 /* Modification time. */
9892 dw2_asm_output_data_uleb128 (0, NULL
);
9894 /* File length in bytes. */
9895 dw2_asm_output_data_uleb128 (0, NULL
);
9896 #endif /* VMS_DEBUGGING_INFO */
9899 dw2_asm_output_data (1, 0, "End file name table");
9903 /* Output one line number table into the .debug_line section. */
9906 output_one_line_info_table (dw_line_info_table
*table
)
9908 char line_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
9909 unsigned int current_line
= 1;
9910 bool current_is_stmt
= DWARF_LINE_DEFAULT_IS_STMT_START
;
9911 dw_line_info_entry
*ent
;
9914 FOR_EACH_VEC_SAFE_ELT (table
->entries
, i
, ent
)
9916 switch (ent
->opcode
)
9918 case LI_set_address
:
9919 /* ??? Unfortunately, we have little choice here currently, and
9920 must always use the most general form. GCC does not know the
9921 address delta itself, so we can't use DW_LNS_advance_pc. Many
9922 ports do have length attributes which will give an upper bound
9923 on the address range. We could perhaps use length attributes
9924 to determine when it is safe to use DW_LNS_fixed_advance_pc. */
9925 ASM_GENERATE_INTERNAL_LABEL (line_label
, LINE_CODE_LABEL
, ent
->val
);
9927 /* This can handle any delta. This takes
9928 4+DWARF2_ADDR_SIZE bytes. */
9929 dw2_asm_output_data (1, 0, "set address %s", line_label
);
9930 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE
, NULL
);
9931 dw2_asm_output_data (1, DW_LNE_set_address
, NULL
);
9932 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, line_label
, NULL
);
9936 if (ent
->val
== current_line
)
9938 /* We still need to start a new row, so output a copy insn. */
9939 dw2_asm_output_data (1, DW_LNS_copy
,
9940 "copy line %u", current_line
);
9944 int line_offset
= ent
->val
- current_line
;
9945 int line_delta
= line_offset
- DWARF_LINE_BASE
;
9947 current_line
= ent
->val
;
9948 if (line_delta
>= 0 && line_delta
< (DWARF_LINE_RANGE
- 1))
9950 /* This can handle deltas from -10 to 234, using the current
9951 definitions of DWARF_LINE_BASE and DWARF_LINE_RANGE.
9952 This takes 1 byte. */
9953 dw2_asm_output_data (1, DWARF_LINE_OPCODE_BASE
+ line_delta
,
9954 "line %u", current_line
);
9958 /* This can handle any delta. This takes at least 4 bytes,
9959 depending on the value being encoded. */
9960 dw2_asm_output_data (1, DW_LNS_advance_line
,
9961 "advance to line %u", current_line
);
9962 dw2_asm_output_data_sleb128 (line_offset
, NULL
);
9963 dw2_asm_output_data (1, DW_LNS_copy
, NULL
);
9969 dw2_asm_output_data (1, DW_LNS_set_file
, "set file %u", ent
->val
);
9970 dw2_asm_output_data_uleb128 (ent
->val
, "%u", ent
->val
);
9974 dw2_asm_output_data (1, DW_LNS_set_column
, "column %u", ent
->val
);
9975 dw2_asm_output_data_uleb128 (ent
->val
, "%u", ent
->val
);
9978 case LI_negate_stmt
:
9979 current_is_stmt
= !current_is_stmt
;
9980 dw2_asm_output_data (1, DW_LNS_negate_stmt
,
9981 "is_stmt %d", current_is_stmt
);
9984 case LI_set_prologue_end
:
9985 dw2_asm_output_data (1, DW_LNS_set_prologue_end
,
9986 "set prologue end");
9989 case LI_set_epilogue_begin
:
9990 dw2_asm_output_data (1, DW_LNS_set_epilogue_begin
,
9991 "set epilogue begin");
9994 case LI_set_discriminator
:
9995 dw2_asm_output_data (1, 0, "discriminator %u", ent
->val
);
9996 dw2_asm_output_data_uleb128 (1 + size_of_uleb128 (ent
->val
), NULL
);
9997 dw2_asm_output_data (1, DW_LNE_set_discriminator
, NULL
);
9998 dw2_asm_output_data_uleb128 (ent
->val
, NULL
);
10003 /* Emit debug info for the address of the end of the table. */
10004 dw2_asm_output_data (1, 0, "set address %s", table
->end_label
);
10005 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE
, NULL
);
10006 dw2_asm_output_data (1, DW_LNE_set_address
, NULL
);
10007 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, table
->end_label
, NULL
);
10009 dw2_asm_output_data (1, 0, "end sequence");
10010 dw2_asm_output_data_uleb128 (1, NULL
);
10011 dw2_asm_output_data (1, DW_LNE_end_sequence
, NULL
);
10014 /* Output the source line number correspondence information. This
10015 information goes into the .debug_line section. */
10018 output_line_info (bool prologue_only
)
10020 char l1
[20], l2
[20], p1
[20], p2
[20];
10021 int ver
= dwarf_version
;
10022 bool saw_one
= false;
10025 ASM_GENERATE_INTERNAL_LABEL (l1
, LINE_NUMBER_BEGIN_LABEL
, 0);
10026 ASM_GENERATE_INTERNAL_LABEL (l2
, LINE_NUMBER_END_LABEL
, 0);
10027 ASM_GENERATE_INTERNAL_LABEL (p1
, LN_PROLOG_AS_LABEL
, 0);
10028 ASM_GENERATE_INTERNAL_LABEL (p2
, LN_PROLOG_END_LABEL
, 0);
10030 if (DWARF_INITIAL_LENGTH_SIZE
- DWARF_OFFSET_SIZE
== 4)
10031 dw2_asm_output_data (4, 0xffffffff,
10032 "Initial length escape value indicating 64-bit DWARF extension");
10033 dw2_asm_output_delta (DWARF_OFFSET_SIZE
, l2
, l1
,
10034 "Length of Source Line Info");
10035 ASM_OUTPUT_LABEL (asm_out_file
, l1
);
10037 dw2_asm_output_data (2, ver
, "DWARF Version");
10038 dw2_asm_output_delta (DWARF_OFFSET_SIZE
, p2
, p1
, "Prolog Length");
10039 ASM_OUTPUT_LABEL (asm_out_file
, p1
);
10041 /* Define the architecture-dependent minimum instruction length (in bytes).
10042 In this implementation of DWARF, this field is used for information
10043 purposes only. Since GCC generates assembly language, we have no
10044 a priori knowledge of how many instruction bytes are generated for each
10045 source line, and therefore can use only the DW_LNE_set_address and
10046 DW_LNS_fixed_advance_pc line information commands. Accordingly, we fix
10047 this as '1', which is "correct enough" for all architectures,
10048 and don't let the target override. */
10049 dw2_asm_output_data (1, 1, "Minimum Instruction Length");
10052 dw2_asm_output_data (1, DWARF_LINE_DEFAULT_MAX_OPS_PER_INSN
,
10053 "Maximum Operations Per Instruction");
10054 dw2_asm_output_data (1, DWARF_LINE_DEFAULT_IS_STMT_START
,
10055 "Default is_stmt_start flag");
10056 dw2_asm_output_data (1, DWARF_LINE_BASE
,
10057 "Line Base Value (Special Opcodes)");
10058 dw2_asm_output_data (1, DWARF_LINE_RANGE
,
10059 "Line Range Value (Special Opcodes)");
10060 dw2_asm_output_data (1, DWARF_LINE_OPCODE_BASE
,
10061 "Special Opcode Base");
10063 for (opc
= 1; opc
< DWARF_LINE_OPCODE_BASE
; opc
++)
10068 case DW_LNS_advance_pc
:
10069 case DW_LNS_advance_line
:
10070 case DW_LNS_set_file
:
10071 case DW_LNS_set_column
:
10072 case DW_LNS_fixed_advance_pc
:
10073 case DW_LNS_set_isa
:
10081 dw2_asm_output_data (1, n_op_args
, "opcode: %#x has %d args",
10085 /* Write out the information about the files we use. */
10086 output_file_names ();
10087 ASM_OUTPUT_LABEL (asm_out_file
, p2
);
10090 /* Output the marker for the end of the line number info. */
10091 ASM_OUTPUT_LABEL (asm_out_file
, l2
);
10095 if (separate_line_info
)
10097 dw_line_info_table
*table
;
10100 FOR_EACH_VEC_ELT (*separate_line_info
, i
, table
)
10103 output_one_line_info_table (table
);
10107 if (cold_text_section_line_info
&& cold_text_section_line_info
->in_use
)
10109 output_one_line_info_table (cold_text_section_line_info
);
10113 /* ??? Some Darwin linkers crash on a .debug_line section with no
10114 sequences. Further, merely a DW_LNE_end_sequence entry is not
10115 sufficient -- the address column must also be initialized.
10116 Make sure to output at least one set_address/end_sequence pair,
10117 choosing .text since that section is always present. */
10118 if (text_section_line_info
->in_use
|| !saw_one
)
10119 output_one_line_info_table (text_section_line_info
);
10121 /* Output the marker for the end of the line number info. */
10122 ASM_OUTPUT_LABEL (asm_out_file
, l2
);
10125 /* Given a pointer to a tree node for some base type, return a pointer to
10126 a DIE that describes the given type.
10128 This routine must only be called for GCC type nodes that correspond to
10129 Dwarf base (fundamental) types. */
10132 base_type_die (tree type
)
10134 dw_die_ref base_type_result
;
10135 enum dwarf_type encoding
;
10137 if (TREE_CODE (type
) == ERROR_MARK
|| TREE_CODE (type
) == VOID_TYPE
)
10140 /* If this is a subtype that should not be emitted as a subrange type,
10141 use the base type. See subrange_type_for_debug_p. */
10142 if (TREE_CODE (type
) == INTEGER_TYPE
&& TREE_TYPE (type
) != NULL_TREE
)
10143 type
= TREE_TYPE (type
);
10145 switch (TREE_CODE (type
))
10148 if ((dwarf_version
>= 4 || !dwarf_strict
)
10149 && TYPE_NAME (type
)
10150 && TREE_CODE (TYPE_NAME (type
)) == TYPE_DECL
10151 && DECL_IS_BUILTIN (TYPE_NAME (type
))
10152 && DECL_NAME (TYPE_NAME (type
)))
10154 const char *name
= IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type
)));
10155 if (strcmp (name
, "char16_t") == 0
10156 || strcmp (name
, "char32_t") == 0)
10158 encoding
= DW_ATE_UTF
;
10162 if (TYPE_STRING_FLAG (type
))
10164 if (TYPE_UNSIGNED (type
))
10165 encoding
= DW_ATE_unsigned_char
;
10167 encoding
= DW_ATE_signed_char
;
10169 else if (TYPE_UNSIGNED (type
))
10170 encoding
= DW_ATE_unsigned
;
10172 encoding
= DW_ATE_signed
;
10176 if (DECIMAL_FLOAT_MODE_P (TYPE_MODE (type
)))
10178 if (dwarf_version
>= 3 || !dwarf_strict
)
10179 encoding
= DW_ATE_decimal_float
;
10181 encoding
= DW_ATE_lo_user
;
10184 encoding
= DW_ATE_float
;
10187 case FIXED_POINT_TYPE
:
10188 if (!(dwarf_version
>= 3 || !dwarf_strict
))
10189 encoding
= DW_ATE_lo_user
;
10190 else if (TYPE_UNSIGNED (type
))
10191 encoding
= DW_ATE_unsigned_fixed
;
10193 encoding
= DW_ATE_signed_fixed
;
10196 /* Dwarf2 doesn't know anything about complex ints, so use
10197 a user defined type for it. */
10199 if (TREE_CODE (TREE_TYPE (type
)) == REAL_TYPE
)
10200 encoding
= DW_ATE_complex_float
;
10202 encoding
= DW_ATE_lo_user
;
10206 /* GNU FORTRAN/Ada/C++ BOOLEAN type. */
10207 encoding
= DW_ATE_boolean
;
10211 /* No other TREE_CODEs are Dwarf fundamental types. */
10212 gcc_unreachable ();
10215 base_type_result
= new_die (DW_TAG_base_type
, comp_unit_die (), type
);
10217 add_AT_unsigned (base_type_result
, DW_AT_byte_size
,
10218 int_size_in_bytes (type
));
10219 add_AT_unsigned (base_type_result
, DW_AT_encoding
, encoding
);
10220 add_pubtype (type
, base_type_result
);
10222 return base_type_result
;
10225 /* A C++ function with deduced return type can have a TEMPLATE_TYPE_PARM
10226 named 'auto' in its type: return true for it, false otherwise. */
10229 is_cxx_auto (tree type
)
10233 tree name
= TYPE_NAME (type
);
10234 if (TREE_CODE (name
) == TYPE_DECL
)
10235 name
= DECL_NAME (name
);
10236 if (name
== get_identifier ("auto")
10237 || name
== get_identifier ("decltype(auto)"))
10243 /* Given a pointer to an arbitrary ..._TYPE tree node, return nonzero if the
10244 given input type is a Dwarf "fundamental" type. Otherwise return null. */
10247 is_base_type (tree type
)
10249 switch (TREE_CODE (type
))
10255 case FIXED_POINT_TYPE
:
10263 case QUAL_UNION_TYPE
:
10264 case ENUMERAL_TYPE
:
10265 case FUNCTION_TYPE
:
10268 case REFERENCE_TYPE
:
10276 if (is_cxx_auto (type
))
10278 gcc_unreachable ();
10284 /* Given a pointer to a tree node, assumed to be some kind of a ..._TYPE
10285 node, return the size in bits for the type if it is a constant, or else
10286 return the alignment for the type if the type's size is not constant, or
10287 else return BITS_PER_WORD if the type actually turns out to be an
10288 ERROR_MARK node. */
10290 static inline unsigned HOST_WIDE_INT
10291 simple_type_size_in_bits (const_tree type
)
10293 if (TREE_CODE (type
) == ERROR_MARK
)
10294 return BITS_PER_WORD
;
10295 else if (TYPE_SIZE (type
) == NULL_TREE
)
10297 else if (tree_fits_uhwi_p (TYPE_SIZE (type
)))
10298 return tree_to_uhwi (TYPE_SIZE (type
));
10300 return TYPE_ALIGN (type
);
10303 /* Similarly, but return a double_int instead of UHWI. */
10305 static inline double_int
10306 double_int_type_size_in_bits (const_tree type
)
10308 if (TREE_CODE (type
) == ERROR_MARK
)
10309 return double_int::from_uhwi (BITS_PER_WORD
);
10310 else if (TYPE_SIZE (type
) == NULL_TREE
)
10311 return double_int_zero
;
10312 else if (TREE_CODE (TYPE_SIZE (type
)) == INTEGER_CST
)
10313 return tree_to_double_int (TYPE_SIZE (type
));
10315 return double_int::from_uhwi (TYPE_ALIGN (type
));
10318 /* Given a pointer to a tree node for a subrange type, return a pointer
10319 to a DIE that describes the given type. */
10322 subrange_type_die (tree type
, tree low
, tree high
, dw_die_ref context_die
)
10324 dw_die_ref subrange_die
;
10325 const HOST_WIDE_INT size_in_bytes
= int_size_in_bytes (type
);
10327 if (context_die
== NULL
)
10328 context_die
= comp_unit_die ();
10330 subrange_die
= new_die (DW_TAG_subrange_type
, context_die
, type
);
10332 if (int_size_in_bytes (TREE_TYPE (type
)) != size_in_bytes
)
10334 /* The size of the subrange type and its base type do not match,
10335 so we need to generate a size attribute for the subrange type. */
10336 add_AT_unsigned (subrange_die
, DW_AT_byte_size
, size_in_bytes
);
10340 add_bound_info (subrange_die
, DW_AT_lower_bound
, low
);
10342 add_bound_info (subrange_die
, DW_AT_upper_bound
, high
);
10344 return subrange_die
;
10347 /* Given a pointer to an arbitrary ..._TYPE tree node, return a debugging
10348 entry that chains various modifiers in front of the given type. */
10351 modified_type_die (tree type
, int is_const_type
, int is_volatile_type
,
10352 dw_die_ref context_die
)
10354 enum tree_code code
= TREE_CODE (type
);
10355 dw_die_ref mod_type_die
;
10356 dw_die_ref sub_die
= NULL
;
10357 tree item_type
= NULL
;
10358 tree qualified_type
;
10359 tree name
, low
, high
;
10360 dw_die_ref mod_scope
;
10362 if (code
== ERROR_MARK
)
10365 /* See if we already have the appropriately qualified variant of
10368 = get_qualified_type (type
,
10369 ((is_const_type
? TYPE_QUAL_CONST
: 0)
10370 | (is_volatile_type
? TYPE_QUAL_VOLATILE
: 0)));
10372 if (qualified_type
== sizetype
10373 && TYPE_NAME (qualified_type
)
10374 && TREE_CODE (TYPE_NAME (qualified_type
)) == TYPE_DECL
)
10376 tree t
= TREE_TYPE (TYPE_NAME (qualified_type
));
10378 gcc_checking_assert (TREE_CODE (t
) == INTEGER_TYPE
10379 && TYPE_PRECISION (t
)
10380 == TYPE_PRECISION (qualified_type
)
10381 && TYPE_UNSIGNED (t
)
10382 == TYPE_UNSIGNED (qualified_type
));
10383 qualified_type
= t
;
10386 /* If we do, then we can just use its DIE, if it exists. */
10387 if (qualified_type
)
10389 mod_type_die
= lookup_type_die (qualified_type
);
10391 return mod_type_die
;
10394 name
= qualified_type
? TYPE_NAME (qualified_type
) : NULL
;
10396 /* Handle C typedef types. */
10397 if (name
&& TREE_CODE (name
) == TYPE_DECL
&& DECL_ORIGINAL_TYPE (name
)
10398 && !DECL_ARTIFICIAL (name
))
10400 tree dtype
= TREE_TYPE (name
);
10402 if (qualified_type
== dtype
)
10404 /* For a named type, use the typedef. */
10405 gen_type_die (qualified_type
, context_die
);
10406 return lookup_type_die (qualified_type
);
10408 else if (is_const_type
< TYPE_READONLY (dtype
)
10409 || is_volatile_type
< TYPE_VOLATILE (dtype
)
10410 || (is_const_type
<= TYPE_READONLY (dtype
)
10411 && is_volatile_type
<= TYPE_VOLATILE (dtype
)
10412 && DECL_ORIGINAL_TYPE (name
) != type
))
10413 /* cv-unqualified version of named type. Just use the unnamed
10414 type to which it refers. */
10415 return modified_type_die (DECL_ORIGINAL_TYPE (name
),
10416 is_const_type
, is_volatile_type
,
10418 /* Else cv-qualified version of named type; fall through. */
10421 mod_scope
= scope_die_for (type
, context_die
);
10424 /* If both is_const_type and is_volatile_type, prefer the path
10425 which leads to a qualified type. */
10426 && (!is_volatile_type
10427 || get_qualified_type (type
, TYPE_QUAL_CONST
) == NULL_TREE
10428 || get_qualified_type (type
, TYPE_QUAL_VOLATILE
) != NULL_TREE
))
10430 mod_type_die
= new_die (DW_TAG_const_type
, mod_scope
, type
);
10431 sub_die
= modified_type_die (type
, 0, is_volatile_type
, context_die
);
10433 else if (is_volatile_type
)
10435 mod_type_die
= new_die (DW_TAG_volatile_type
, mod_scope
, type
);
10436 sub_die
= modified_type_die (type
, is_const_type
, 0, context_die
);
10438 else if (code
== POINTER_TYPE
)
10440 mod_type_die
= new_die (DW_TAG_pointer_type
, mod_scope
, type
);
10441 add_AT_unsigned (mod_type_die
, DW_AT_byte_size
,
10442 simple_type_size_in_bits (type
) / BITS_PER_UNIT
);
10443 item_type
= TREE_TYPE (type
);
10444 if (!ADDR_SPACE_GENERIC_P (TYPE_ADDR_SPACE (item_type
)))
10445 add_AT_unsigned (mod_type_die
, DW_AT_address_class
,
10446 TYPE_ADDR_SPACE (item_type
));
10448 else if (code
== REFERENCE_TYPE
)
10450 if (TYPE_REF_IS_RVALUE (type
) && dwarf_version
>= 4)
10451 mod_type_die
= new_die (DW_TAG_rvalue_reference_type
, mod_scope
,
10454 mod_type_die
= new_die (DW_TAG_reference_type
, mod_scope
, type
);
10455 add_AT_unsigned (mod_type_die
, DW_AT_byte_size
,
10456 simple_type_size_in_bits (type
) / BITS_PER_UNIT
);
10457 item_type
= TREE_TYPE (type
);
10458 if (!ADDR_SPACE_GENERIC_P (TYPE_ADDR_SPACE (item_type
)))
10459 add_AT_unsigned (mod_type_die
, DW_AT_address_class
,
10460 TYPE_ADDR_SPACE (item_type
));
10462 else if (code
== INTEGER_TYPE
10463 && TREE_TYPE (type
) != NULL_TREE
10464 && subrange_type_for_debug_p (type
, &low
, &high
))
10466 mod_type_die
= subrange_type_die (type
, low
, high
, context_die
);
10467 item_type
= TREE_TYPE (type
);
10469 else if (is_base_type (type
))
10470 mod_type_die
= base_type_die (type
);
10473 gen_type_die (type
, context_die
);
10475 /* We have to get the type_main_variant here (and pass that to the
10476 `lookup_type_die' routine) because the ..._TYPE node we have
10477 might simply be a *copy* of some original type node (where the
10478 copy was created to help us keep track of typedef names) and
10479 that copy might have a different TYPE_UID from the original
10481 if (TREE_CODE (type
) != VECTOR_TYPE
)
10482 return lookup_type_die (type_main_variant (type
));
10484 /* Vectors have the debugging information in the type,
10485 not the main variant. */
10486 return lookup_type_die (type
);
10489 /* Builtin types don't have a DECL_ORIGINAL_TYPE. For those,
10490 don't output a DW_TAG_typedef, since there isn't one in the
10491 user's program; just attach a DW_AT_name to the type.
10492 Don't attach a DW_AT_name to DW_TAG_const_type or DW_TAG_volatile_type
10493 if the base type already has the same name. */
10495 && ((TREE_CODE (name
) != TYPE_DECL
10496 && (qualified_type
== TYPE_MAIN_VARIANT (type
)
10497 || (!is_const_type
&& !is_volatile_type
)))
10498 || (TREE_CODE (name
) == TYPE_DECL
10499 && TREE_TYPE (name
) == qualified_type
10500 && DECL_NAME (name
))))
10502 if (TREE_CODE (name
) == TYPE_DECL
)
10503 /* Could just call add_name_and_src_coords_attributes here,
10504 but since this is a builtin type it doesn't have any
10505 useful source coordinates anyway. */
10506 name
= DECL_NAME (name
);
10507 add_name_attribute (mod_type_die
, IDENTIFIER_POINTER (name
));
10509 /* This probably indicates a bug. */
10510 else if (mod_type_die
&& mod_type_die
->die_tag
== DW_TAG_base_type
)
10512 name
= TYPE_NAME (type
);
10514 && TREE_CODE (name
) == TYPE_DECL
)
10515 name
= DECL_NAME (name
);
10516 add_name_attribute (mod_type_die
,
10517 name
? IDENTIFIER_POINTER (name
) : "__unknown__");
10520 if (qualified_type
)
10521 equate_type_number_to_die (qualified_type
, mod_type_die
);
10524 /* We must do this after the equate_type_number_to_die call, in case
10525 this is a recursive type. This ensures that the modified_type_die
10526 recursion will terminate even if the type is recursive. Recursive
10527 types are possible in Ada. */
10528 sub_die
= modified_type_die (item_type
,
10529 TYPE_READONLY (item_type
),
10530 TYPE_VOLATILE (item_type
),
10533 if (sub_die
!= NULL
)
10534 add_AT_die_ref (mod_type_die
, DW_AT_type
, sub_die
);
10536 add_gnat_descriptive_type_attribute (mod_type_die
, type
, context_die
);
10537 if (TYPE_ARTIFICIAL (type
))
10538 add_AT_flag (mod_type_die
, DW_AT_artificial
, 1);
10540 return mod_type_die
;
10543 /* Generate DIEs for the generic parameters of T.
10544 T must be either a generic type or a generic function.
10545 See http://gcc.gnu.org/wiki/TemplateParmsDwarf for more. */
10548 gen_generic_params_dies (tree t
)
10552 dw_die_ref die
= NULL
;
10555 if (!t
|| (TYPE_P (t
) && !COMPLETE_TYPE_P (t
)))
10559 die
= lookup_type_die (t
);
10560 else if (DECL_P (t
))
10561 die
= lookup_decl_die (t
);
10565 parms
= lang_hooks
.get_innermost_generic_parms (t
);
10567 /* T has no generic parameter. It means T is neither a generic type
10568 or function. End of story. */
10571 parms_num
= TREE_VEC_LENGTH (parms
);
10572 args
= lang_hooks
.get_innermost_generic_args (t
);
10573 if (TREE_CHAIN (args
) && TREE_CODE (TREE_CHAIN (args
)) == INTEGER_CST
)
10574 non_default
= int_cst_value (TREE_CHAIN (args
));
10576 non_default
= TREE_VEC_LENGTH (args
);
10577 for (i
= 0; i
< parms_num
; i
++)
10579 tree parm
, arg
, arg_pack_elems
;
10580 dw_die_ref parm_die
;
10582 parm
= TREE_VEC_ELT (parms
, i
);
10583 arg
= TREE_VEC_ELT (args
, i
);
10584 arg_pack_elems
= lang_hooks
.types
.get_argument_pack_elems (arg
);
10585 gcc_assert (parm
&& TREE_VALUE (parm
) && arg
);
10587 if (parm
&& TREE_VALUE (parm
) && arg
)
10589 /* If PARM represents a template parameter pack,
10590 emit a DW_TAG_GNU_template_parameter_pack DIE, followed
10591 by DW_TAG_template_*_parameter DIEs for the argument
10592 pack elements of ARG. Note that ARG would then be
10593 an argument pack. */
10594 if (arg_pack_elems
)
10595 parm_die
= template_parameter_pack_die (TREE_VALUE (parm
),
10599 parm_die
= generic_parameter_die (TREE_VALUE (parm
), arg
,
10600 true /* emit name */, die
);
10601 if (i
>= non_default
)
10602 add_AT_flag (parm_die
, DW_AT_default_value
, 1);
10607 /* Create and return a DIE for PARM which should be
10608 the representation of a generic type parameter.
10609 For instance, in the C++ front end, PARM would be a template parameter.
10610 ARG is the argument to PARM.
10611 EMIT_NAME_P if tree, the DIE will have DW_AT_name attribute set to the
10613 PARENT_DIE is the parent DIE which the new created DIE should be added to,
10614 as a child node. */
10617 generic_parameter_die (tree parm
, tree arg
,
10619 dw_die_ref parent_die
)
10621 dw_die_ref tmpl_die
= NULL
;
10622 const char *name
= NULL
;
10624 if (!parm
|| !DECL_NAME (parm
) || !arg
)
10627 /* We support non-type generic parameters and arguments,
10628 type generic parameters and arguments, as well as
10629 generic generic parameters (a.k.a. template template parameters in C++)
10631 if (TREE_CODE (parm
) == PARM_DECL
)
10632 /* PARM is a nontype generic parameter */
10633 tmpl_die
= new_die (DW_TAG_template_value_param
, parent_die
, parm
);
10634 else if (TREE_CODE (parm
) == TYPE_DECL
)
10635 /* PARM is a type generic parameter. */
10636 tmpl_die
= new_die (DW_TAG_template_type_param
, parent_die
, parm
);
10637 else if (lang_hooks
.decls
.generic_generic_parameter_decl_p (parm
))
10638 /* PARM is a generic generic parameter.
10639 Its DIE is a GNU extension. It shall have a
10640 DW_AT_name attribute to represent the name of the template template
10641 parameter, and a DW_AT_GNU_template_name attribute to represent the
10642 name of the template template argument. */
10643 tmpl_die
= new_die (DW_TAG_GNU_template_template_param
,
10646 gcc_unreachable ();
10652 /* If PARM is a generic parameter pack, it means we are
10653 emitting debug info for a template argument pack element.
10654 In other terms, ARG is a template argument pack element.
10655 In that case, we don't emit any DW_AT_name attribute for
10659 name
= IDENTIFIER_POINTER (DECL_NAME (parm
));
10661 add_AT_string (tmpl_die
, DW_AT_name
, name
);
10664 if (!lang_hooks
.decls
.generic_generic_parameter_decl_p (parm
))
10666 /* DWARF3, 5.6.8 says if PARM is a non-type generic parameter
10667 TMPL_DIE should have a child DW_AT_type attribute that is set
10668 to the type of the argument to PARM, which is ARG.
10669 If PARM is a type generic parameter, TMPL_DIE should have a
10670 child DW_AT_type that is set to ARG. */
10671 tmpl_type
= TYPE_P (arg
) ? arg
: TREE_TYPE (arg
);
10672 add_type_attribute (tmpl_die
, tmpl_type
, 0,
10673 TREE_THIS_VOLATILE (tmpl_type
),
10678 /* So TMPL_DIE is a DIE representing a
10679 a generic generic template parameter, a.k.a template template
10680 parameter in C++ and arg is a template. */
10682 /* The DW_AT_GNU_template_name attribute of the DIE must be set
10683 to the name of the argument. */
10684 name
= dwarf2_name (TYPE_P (arg
) ? TYPE_NAME (arg
) : arg
, 1);
10686 add_AT_string (tmpl_die
, DW_AT_GNU_template_name
, name
);
10689 if (TREE_CODE (parm
) == PARM_DECL
)
10690 /* So PARM is a non-type generic parameter.
10691 DWARF3 5.6.8 says we must set a DW_AT_const_value child
10692 attribute of TMPL_DIE which value represents the value
10694 We must be careful here:
10695 The value of ARG might reference some function decls.
10696 We might currently be emitting debug info for a generic
10697 type and types are emitted before function decls, we don't
10698 know if the function decls referenced by ARG will actually be
10699 emitted after cgraph computations.
10700 So must defer the generation of the DW_AT_const_value to
10701 after cgraph is ready. */
10702 append_entry_to_tmpl_value_parm_die_table (tmpl_die
, arg
);
10708 /* Generate and return a DW_TAG_GNU_template_parameter_pack DIE representing.
10709 PARM_PACK must be a template parameter pack. The returned DIE
10710 will be child DIE of PARENT_DIE. */
10713 template_parameter_pack_die (tree parm_pack
,
10714 tree parm_pack_args
,
10715 dw_die_ref parent_die
)
10720 gcc_assert (parent_die
&& parm_pack
);
10722 die
= new_die (DW_TAG_GNU_template_parameter_pack
, parent_die
, parm_pack
);
10723 add_name_and_src_coords_attributes (die
, parm_pack
);
10724 for (j
= 0; j
< TREE_VEC_LENGTH (parm_pack_args
); j
++)
10725 generic_parameter_die (parm_pack
,
10726 TREE_VEC_ELT (parm_pack_args
, j
),
10727 false /* Don't emit DW_AT_name */,
10732 /* Given a pointer to an arbitrary ..._TYPE tree node, return true if it is
10733 an enumerated type. */
10736 type_is_enum (const_tree type
)
10738 return TREE_CODE (type
) == ENUMERAL_TYPE
;
10741 /* Return the DBX register number described by a given RTL node. */
10743 static unsigned int
10744 dbx_reg_number (const_rtx rtl
)
10746 unsigned regno
= REGNO (rtl
);
10748 gcc_assert (regno
< FIRST_PSEUDO_REGISTER
);
10750 #ifdef LEAF_REG_REMAP
10751 if (crtl
->uses_only_leaf_regs
)
10753 int leaf_reg
= LEAF_REG_REMAP (regno
);
10754 if (leaf_reg
!= -1)
10755 regno
= (unsigned) leaf_reg
;
10759 regno
= DBX_REGISTER_NUMBER (regno
);
10760 gcc_assert (regno
!= INVALID_REGNUM
);
10764 /* Optionally add a DW_OP_piece term to a location description expression.
10765 DW_OP_piece is only added if the location description expression already
10766 doesn't end with DW_OP_piece. */
10769 add_loc_descr_op_piece (dw_loc_descr_ref
*list_head
, int size
)
10771 dw_loc_descr_ref loc
;
10773 if (*list_head
!= NULL
)
10775 /* Find the end of the chain. */
10776 for (loc
= *list_head
; loc
->dw_loc_next
!= NULL
; loc
= loc
->dw_loc_next
)
10779 if (loc
->dw_loc_opc
!= DW_OP_piece
)
10780 loc
->dw_loc_next
= new_loc_descr (DW_OP_piece
, size
, 0);
10784 /* Return a location descriptor that designates a machine register or
10785 zero if there is none. */
10787 static dw_loc_descr_ref
10788 reg_loc_descriptor (rtx rtl
, enum var_init_status initialized
)
10792 if (REGNO (rtl
) >= FIRST_PSEUDO_REGISTER
)
10795 /* We only use "frame base" when we're sure we're talking about the
10796 post-prologue local stack frame. We do this by *not* running
10797 register elimination until this point, and recognizing the special
10798 argument pointer and soft frame pointer rtx's.
10799 Use DW_OP_fbreg offset DW_OP_stack_value in this case. */
10800 if ((rtl
== arg_pointer_rtx
|| rtl
== frame_pointer_rtx
)
10801 && eliminate_regs (rtl
, VOIDmode
, NULL_RTX
) != rtl
)
10803 dw_loc_descr_ref result
= NULL
;
10805 if (dwarf_version
>= 4 || !dwarf_strict
)
10807 result
= mem_loc_descriptor (rtl
, GET_MODE (rtl
), VOIDmode
,
10810 add_loc_descr (&result
,
10811 new_loc_descr (DW_OP_stack_value
, 0, 0));
10816 regs
= targetm
.dwarf_register_span (rtl
);
10818 if (hard_regno_nregs
[REGNO (rtl
)][GET_MODE (rtl
)] > 1 || regs
)
10819 return multiple_reg_loc_descriptor (rtl
, regs
, initialized
);
10822 unsigned int dbx_regnum
= dbx_reg_number (rtl
);
10823 if (dbx_regnum
== IGNORED_DWARF_REGNUM
)
10825 return one_reg_loc_descriptor (dbx_regnum
, initialized
);
10829 /* Return a location descriptor that designates a machine register for
10830 a given hard register number. */
10832 static dw_loc_descr_ref
10833 one_reg_loc_descriptor (unsigned int regno
, enum var_init_status initialized
)
10835 dw_loc_descr_ref reg_loc_descr
;
10839 = new_loc_descr ((enum dwarf_location_atom
) (DW_OP_reg0
+ regno
), 0, 0);
10841 reg_loc_descr
= new_loc_descr (DW_OP_regx
, regno
, 0);
10843 if (initialized
== VAR_INIT_STATUS_UNINITIALIZED
)
10844 add_loc_descr (®_loc_descr
, new_loc_descr (DW_OP_GNU_uninit
, 0, 0));
10846 return reg_loc_descr
;
10849 /* Given an RTL of a register, return a location descriptor that
10850 designates a value that spans more than one register. */
10852 static dw_loc_descr_ref
10853 multiple_reg_loc_descriptor (rtx rtl
, rtx regs
,
10854 enum var_init_status initialized
)
10857 dw_loc_descr_ref loc_result
= NULL
;
10859 /* Simple, contiguous registers. */
10860 if (regs
== NULL_RTX
)
10862 unsigned reg
= REGNO (rtl
);
10865 #ifdef LEAF_REG_REMAP
10866 if (crtl
->uses_only_leaf_regs
)
10868 int leaf_reg
= LEAF_REG_REMAP (reg
);
10869 if (leaf_reg
!= -1)
10870 reg
= (unsigned) leaf_reg
;
10874 gcc_assert ((unsigned) DBX_REGISTER_NUMBER (reg
) == dbx_reg_number (rtl
));
10875 nregs
= hard_regno_nregs
[REGNO (rtl
)][GET_MODE (rtl
)];
10877 size
= GET_MODE_SIZE (GET_MODE (rtl
)) / nregs
;
10882 dw_loc_descr_ref t
;
10884 t
= one_reg_loc_descriptor (DBX_REGISTER_NUMBER (reg
),
10885 VAR_INIT_STATUS_INITIALIZED
);
10886 add_loc_descr (&loc_result
, t
);
10887 add_loc_descr_op_piece (&loc_result
, size
);
10893 /* Now onto stupid register sets in non contiguous locations. */
10895 gcc_assert (GET_CODE (regs
) == PARALLEL
);
10897 size
= GET_MODE_SIZE (GET_MODE (XVECEXP (regs
, 0, 0)));
10900 for (i
= 0; i
< XVECLEN (regs
, 0); ++i
)
10902 dw_loc_descr_ref t
;
10904 t
= one_reg_loc_descriptor (dbx_reg_number (XVECEXP (regs
, 0, i
)),
10905 VAR_INIT_STATUS_INITIALIZED
);
10906 add_loc_descr (&loc_result
, t
);
10907 add_loc_descr_op_piece (&loc_result
, size
);
10910 if (loc_result
&& initialized
== VAR_INIT_STATUS_UNINITIALIZED
)
10911 add_loc_descr (&loc_result
, new_loc_descr (DW_OP_GNU_uninit
, 0, 0));
10915 static unsigned long size_of_int_loc_descriptor (HOST_WIDE_INT
);
10917 /* Return a location descriptor that designates a constant i,
10918 as a compound operation from constant (i >> shift), constant shift
10921 static dw_loc_descr_ref
10922 int_shift_loc_descriptor (HOST_WIDE_INT i
, int shift
)
10924 dw_loc_descr_ref ret
= int_loc_descriptor (i
>> shift
);
10925 add_loc_descr (&ret
, int_loc_descriptor (shift
));
10926 add_loc_descr (&ret
, new_loc_descr (DW_OP_shl
, 0, 0));
10930 /* Return a location descriptor that designates a constant. */
10932 static dw_loc_descr_ref
10933 int_loc_descriptor (HOST_WIDE_INT i
)
10935 enum dwarf_location_atom op
;
10937 /* Pick the smallest representation of a constant, rather than just
10938 defaulting to the LEB encoding. */
10941 int clz
= clz_hwi (i
);
10942 int ctz
= ctz_hwi (i
);
10944 op
= (enum dwarf_location_atom
) (DW_OP_lit0
+ i
);
10945 else if (i
<= 0xff)
10946 op
= DW_OP_const1u
;
10947 else if (i
<= 0xffff)
10948 op
= DW_OP_const2u
;
10949 else if (clz
+ ctz
>= HOST_BITS_PER_WIDE_INT
- 5
10950 && clz
+ 5 + 255 >= HOST_BITS_PER_WIDE_INT
)
10951 /* DW_OP_litX DW_OP_litY DW_OP_shl takes just 3 bytes and
10952 DW_OP_litX DW_OP_const1u Y DW_OP_shl takes just 4 bytes,
10953 while DW_OP_const4u is 5 bytes. */
10954 return int_shift_loc_descriptor (i
, HOST_BITS_PER_WIDE_INT
- clz
- 5);
10955 else if (clz
+ ctz
>= HOST_BITS_PER_WIDE_INT
- 8
10956 && clz
+ 8 + 31 >= HOST_BITS_PER_WIDE_INT
)
10957 /* DW_OP_const1u X DW_OP_litY DW_OP_shl takes just 4 bytes,
10958 while DW_OP_const4u is 5 bytes. */
10959 return int_shift_loc_descriptor (i
, HOST_BITS_PER_WIDE_INT
- clz
- 8);
10960 else if (HOST_BITS_PER_WIDE_INT
== 32 || i
<= 0xffffffff)
10961 op
= DW_OP_const4u
;
10962 else if (clz
+ ctz
>= HOST_BITS_PER_WIDE_INT
- 8
10963 && clz
+ 8 + 255 >= HOST_BITS_PER_WIDE_INT
)
10964 /* DW_OP_const1u X DW_OP_const1u Y DW_OP_shl takes just 5 bytes,
10965 while DW_OP_constu of constant >= 0x100000000 takes at least
10967 return int_shift_loc_descriptor (i
, HOST_BITS_PER_WIDE_INT
- clz
- 8);
10968 else if (clz
+ ctz
>= HOST_BITS_PER_WIDE_INT
- 16
10969 && clz
+ 16 + (size_of_uleb128 (i
) > 5 ? 255 : 31)
10970 >= HOST_BITS_PER_WIDE_INT
)
10971 /* DW_OP_const2u X DW_OP_litY DW_OP_shl takes just 5 bytes,
10972 DW_OP_const2u X DW_OP_const1u Y DW_OP_shl takes 6 bytes,
10973 while DW_OP_constu takes in this case at least 6 bytes. */
10974 return int_shift_loc_descriptor (i
, HOST_BITS_PER_WIDE_INT
- clz
- 16);
10975 else if (clz
+ ctz
>= HOST_BITS_PER_WIDE_INT
- 32
10976 && clz
+ 32 + 31 >= HOST_BITS_PER_WIDE_INT
10977 && size_of_uleb128 (i
) > 6)
10978 /* DW_OP_const4u X DW_OP_litY DW_OP_shl takes just 7 bytes. */
10979 return int_shift_loc_descriptor (i
, HOST_BITS_PER_WIDE_INT
- clz
- 32);
10986 op
= DW_OP_const1s
;
10987 else if (i
>= -0x8000)
10988 op
= DW_OP_const2s
;
10989 else if (HOST_BITS_PER_WIDE_INT
== 32 || i
>= -0x80000000)
10991 if (size_of_int_loc_descriptor (i
) < 5)
10993 dw_loc_descr_ref ret
= int_loc_descriptor (-i
);
10994 add_loc_descr (&ret
, new_loc_descr (DW_OP_neg
, 0, 0));
10997 op
= DW_OP_const4s
;
11001 if (size_of_int_loc_descriptor (i
)
11002 < (unsigned long) 1 + size_of_sleb128 (i
))
11004 dw_loc_descr_ref ret
= int_loc_descriptor (-i
);
11005 add_loc_descr (&ret
, new_loc_descr (DW_OP_neg
, 0, 0));
11012 return new_loc_descr (op
, i
, 0);
11015 /* Return size_of_locs (int_shift_loc_descriptor (i, shift))
11016 without actually allocating it. */
11018 static unsigned long
11019 size_of_int_shift_loc_descriptor (HOST_WIDE_INT i
, int shift
)
11021 return size_of_int_loc_descriptor (i
>> shift
)
11022 + size_of_int_loc_descriptor (shift
)
11026 /* Return size_of_locs (int_loc_descriptor (i)) without
11027 actually allocating it. */
11029 static unsigned long
11030 size_of_int_loc_descriptor (HOST_WIDE_INT i
)
11039 else if (i
<= 0xff)
11041 else if (i
<= 0xffff)
11045 if (clz
+ ctz
>= HOST_BITS_PER_WIDE_INT
- 5
11046 && clz
+ 5 + 255 >= HOST_BITS_PER_WIDE_INT
)
11047 return size_of_int_shift_loc_descriptor (i
, HOST_BITS_PER_WIDE_INT
11049 else if (clz
+ ctz
>= HOST_BITS_PER_WIDE_INT
- 8
11050 && clz
+ 8 + 31 >= HOST_BITS_PER_WIDE_INT
)
11051 return size_of_int_shift_loc_descriptor (i
, HOST_BITS_PER_WIDE_INT
11053 else if (HOST_BITS_PER_WIDE_INT
== 32 || i
<= 0xffffffff)
11055 s
= size_of_uleb128 ((unsigned HOST_WIDE_INT
) i
);
11056 if (clz
+ ctz
>= HOST_BITS_PER_WIDE_INT
- 8
11057 && clz
+ 8 + 255 >= HOST_BITS_PER_WIDE_INT
)
11058 return size_of_int_shift_loc_descriptor (i
, HOST_BITS_PER_WIDE_INT
11060 else if (clz
+ ctz
>= HOST_BITS_PER_WIDE_INT
- 16
11061 && clz
+ 16 + (s
> 5 ? 255 : 31) >= HOST_BITS_PER_WIDE_INT
)
11062 return size_of_int_shift_loc_descriptor (i
, HOST_BITS_PER_WIDE_INT
11064 else if (clz
+ ctz
>= HOST_BITS_PER_WIDE_INT
- 32
11065 && clz
+ 32 + 31 >= HOST_BITS_PER_WIDE_INT
11067 return size_of_int_shift_loc_descriptor (i
, HOST_BITS_PER_WIDE_INT
11076 else if (i
>= -0x8000)
11078 else if (HOST_BITS_PER_WIDE_INT
== 32 || i
>= -0x80000000)
11080 if (-(unsigned HOST_WIDE_INT
) i
!= (unsigned HOST_WIDE_INT
) i
)
11082 s
= size_of_int_loc_descriptor (-i
) + 1;
11090 unsigned long r
= 1 + size_of_sleb128 (i
);
11091 if (-(unsigned HOST_WIDE_INT
) i
!= (unsigned HOST_WIDE_INT
) i
)
11093 s
= size_of_int_loc_descriptor (-i
) + 1;
11102 /* Return loc description representing "address" of integer value.
11103 This can appear only as toplevel expression. */
11105 static dw_loc_descr_ref
11106 address_of_int_loc_descriptor (int size
, HOST_WIDE_INT i
)
11109 dw_loc_descr_ref loc_result
= NULL
;
11111 if (!(dwarf_version
>= 4 || !dwarf_strict
))
11114 litsize
= size_of_int_loc_descriptor (i
);
11115 /* Determine if DW_OP_stack_value or DW_OP_implicit_value
11116 is more compact. For DW_OP_stack_value we need:
11117 litsize + 1 (DW_OP_stack_value)
11118 and for DW_OP_implicit_value:
11119 1 (DW_OP_implicit_value) + 1 (length) + size. */
11120 if ((int) DWARF2_ADDR_SIZE
>= size
&& litsize
+ 1 <= 1 + 1 + size
)
11122 loc_result
= int_loc_descriptor (i
);
11123 add_loc_descr (&loc_result
,
11124 new_loc_descr (DW_OP_stack_value
, 0, 0));
11128 loc_result
= new_loc_descr (DW_OP_implicit_value
,
11130 loc_result
->dw_loc_oprnd2
.val_class
= dw_val_class_const
;
11131 loc_result
->dw_loc_oprnd2
.v
.val_int
= i
;
11135 /* Return a location descriptor that designates a base+offset location. */
11137 static dw_loc_descr_ref
11138 based_loc_descr (rtx reg
, HOST_WIDE_INT offset
,
11139 enum var_init_status initialized
)
11141 unsigned int regno
;
11142 dw_loc_descr_ref result
;
11143 dw_fde_ref fde
= cfun
->fde
;
11145 /* We only use "frame base" when we're sure we're talking about the
11146 post-prologue local stack frame. We do this by *not* running
11147 register elimination until this point, and recognizing the special
11148 argument pointer and soft frame pointer rtx's. */
11149 if (reg
== arg_pointer_rtx
|| reg
== frame_pointer_rtx
)
11151 rtx elim
= (ira_use_lra_p
11152 ? lra_eliminate_regs (reg
, VOIDmode
, NULL_RTX
)
11153 : eliminate_regs (reg
, VOIDmode
, NULL_RTX
));
11157 if (GET_CODE (elim
) == PLUS
)
11159 offset
+= INTVAL (XEXP (elim
, 1));
11160 elim
= XEXP (elim
, 0);
11162 gcc_assert ((SUPPORTS_STACK_ALIGNMENT
11163 && (elim
== hard_frame_pointer_rtx
11164 || elim
== stack_pointer_rtx
))
11165 || elim
== (frame_pointer_needed
11166 ? hard_frame_pointer_rtx
11167 : stack_pointer_rtx
));
11169 /* If drap register is used to align stack, use frame
11170 pointer + offset to access stack variables. If stack
11171 is aligned without drap, use stack pointer + offset to
11172 access stack variables. */
11173 if (crtl
->stack_realign_tried
11174 && reg
== frame_pointer_rtx
)
11177 = DWARF_FRAME_REGNUM ((fde
&& fde
->drap_reg
!= INVALID_REGNUM
)
11178 ? HARD_FRAME_POINTER_REGNUM
11180 return new_reg_loc_descr (base_reg
, offset
);
11183 gcc_assert (frame_pointer_fb_offset_valid
);
11184 offset
+= frame_pointer_fb_offset
;
11185 return new_loc_descr (DW_OP_fbreg
, offset
, 0);
11189 regno
= REGNO (reg
);
11190 #ifdef LEAF_REG_REMAP
11191 if (crtl
->uses_only_leaf_regs
)
11193 int leaf_reg
= LEAF_REG_REMAP (regno
);
11194 if (leaf_reg
!= -1)
11195 regno
= (unsigned) leaf_reg
;
11198 regno
= DWARF_FRAME_REGNUM (regno
);
11200 if (!optimize
&& fde
11201 && (fde
->drap_reg
== regno
|| fde
->vdrap_reg
== regno
))
11203 /* Use cfa+offset to represent the location of arguments passed
11204 on the stack when drap is used to align stack.
11205 Only do this when not optimizing, for optimized code var-tracking
11206 is supposed to track where the arguments live and the register
11207 used as vdrap or drap in some spot might be used for something
11208 else in other part of the routine. */
11209 return new_loc_descr (DW_OP_fbreg
, offset
, 0);
11213 result
= new_loc_descr ((enum dwarf_location_atom
) (DW_OP_breg0
+ regno
),
11216 result
= new_loc_descr (DW_OP_bregx
, regno
, offset
);
11218 if (initialized
== VAR_INIT_STATUS_UNINITIALIZED
)
11219 add_loc_descr (&result
, new_loc_descr (DW_OP_GNU_uninit
, 0, 0));
11224 /* Return true if this RTL expression describes a base+offset calculation. */
11227 is_based_loc (const_rtx rtl
)
11229 return (GET_CODE (rtl
) == PLUS
11230 && ((REG_P (XEXP (rtl
, 0))
11231 && REGNO (XEXP (rtl
, 0)) < FIRST_PSEUDO_REGISTER
11232 && CONST_INT_P (XEXP (rtl
, 1)))));
11235 /* Try to handle TLS MEMs, for which mem_loc_descriptor on XEXP (mem, 0)
11238 static dw_loc_descr_ref
11239 tls_mem_loc_descriptor (rtx mem
)
11242 dw_loc_descr_ref loc_result
;
11244 if (MEM_EXPR (mem
) == NULL_TREE
|| !MEM_OFFSET_KNOWN_P (mem
))
11247 base
= get_base_address (MEM_EXPR (mem
));
11249 || TREE_CODE (base
) != VAR_DECL
11250 || !DECL_THREAD_LOCAL_P (base
))
11253 loc_result
= loc_descriptor_from_tree (MEM_EXPR (mem
), 1);
11254 if (loc_result
== NULL
)
11257 if (MEM_OFFSET (mem
))
11258 loc_descr_plus_const (&loc_result
, MEM_OFFSET (mem
));
11263 /* Output debug info about reason why we failed to expand expression as dwarf
11267 expansion_failed (tree expr
, rtx rtl
, char const *reason
)
11269 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
11271 fprintf (dump_file
, "Failed to expand as dwarf: ");
11273 print_generic_expr (dump_file
, expr
, dump_flags
);
11276 fprintf (dump_file
, "\n");
11277 print_rtl (dump_file
, rtl
);
11279 fprintf (dump_file
, "\nReason: %s\n", reason
);
11283 /* Helper function for const_ok_for_output, called either directly
11284 or via for_each_rtx. */
11287 const_ok_for_output_1 (rtx
*rtlp
, void *data ATTRIBUTE_UNUSED
)
11291 if (GET_CODE (rtl
) == UNSPEC
)
11293 /* If delegitimize_address couldn't do anything with the UNSPEC, assume
11294 we can't express it in the debug info. */
11295 #ifdef ENABLE_CHECKING
11296 /* Don't complain about TLS UNSPECs, those are just too hard to
11297 delegitimize. Note this could be a non-decl SYMBOL_REF such as
11298 one in a constant pool entry, so testing SYMBOL_REF_TLS_MODEL
11299 rather than DECL_THREAD_LOCAL_P is not just an optimization. */
11300 if (XVECLEN (rtl
, 0) == 0
11301 || GET_CODE (XVECEXP (rtl
, 0, 0)) != SYMBOL_REF
11302 || SYMBOL_REF_TLS_MODEL (XVECEXP (rtl
, 0, 0)) == TLS_MODEL_NONE
)
11303 inform (current_function_decl
11304 ? DECL_SOURCE_LOCATION (current_function_decl
)
11305 : UNKNOWN_LOCATION
,
11306 #if NUM_UNSPEC_VALUES > 0
11307 "non-delegitimized UNSPEC %s (%d) found in variable location",
11308 ((XINT (rtl
, 1) >= 0 && XINT (rtl
, 1) < NUM_UNSPEC_VALUES
)
11309 ? unspec_strings
[XINT (rtl
, 1)] : "unknown"),
11312 "non-delegitimized UNSPEC %d found in variable location",
11316 expansion_failed (NULL_TREE
, rtl
,
11317 "UNSPEC hasn't been delegitimized.\n");
11321 if (targetm
.const_not_ok_for_debug_p (rtl
))
11323 expansion_failed (NULL_TREE
, rtl
,
11324 "Expression rejected for debug by the backend.\n");
11328 /* FIXME: Refer to PR60655. It is possible for simplification
11329 of rtl expressions in var tracking to produce such expressions.
11330 We should really identify / validate expressions
11331 enclosed in CONST that can be handled by assemblers on various
11332 targets and only handle legitimate cases here. */
11333 if (GET_CODE (rtl
) != SYMBOL_REF
)
11335 if (GET_CODE (rtl
) == NOT
)
11341 if (CONSTANT_POOL_ADDRESS_P (rtl
))
11344 get_pool_constant_mark (rtl
, &marked
);
11345 /* If all references to this pool constant were optimized away,
11346 it was not output and thus we can't represent it. */
11349 expansion_failed (NULL_TREE
, rtl
,
11350 "Constant was removed from constant pool.\n");
11355 if (SYMBOL_REF_TLS_MODEL (rtl
) != TLS_MODEL_NONE
)
11358 /* Avoid references to external symbols in debug info, on several targets
11359 the linker might even refuse to link when linking a shared library,
11360 and in many other cases the relocations for .debug_info/.debug_loc are
11361 dropped, so the address becomes zero anyway. Hidden symbols, guaranteed
11362 to be defined within the same shared library or executable are fine. */
11363 if (SYMBOL_REF_EXTERNAL_P (rtl
))
11365 tree decl
= SYMBOL_REF_DECL (rtl
);
11367 if (decl
== NULL
|| !targetm
.binds_local_p (decl
))
11369 expansion_failed (NULL_TREE
, rtl
,
11370 "Symbol not defined in current TU.\n");
11378 /* Return true if constant RTL can be emitted in DW_OP_addr or
11379 DW_AT_const_value. TLS SYMBOL_REFs, external SYMBOL_REFs or
11380 non-marked constant pool SYMBOL_REFs can't be referenced in it. */
11383 const_ok_for_output (rtx rtl
)
11385 if (GET_CODE (rtl
) == SYMBOL_REF
)
11386 return const_ok_for_output_1 (&rtl
, NULL
) == 0;
11388 if (GET_CODE (rtl
) == CONST
)
11389 return for_each_rtx (&XEXP (rtl
, 0), const_ok_for_output_1
, NULL
) == 0;
11394 /* Return a reference to DW_TAG_base_type corresponding to MODE and UNSIGNEDP
11395 if possible, NULL otherwise. */
11398 base_type_for_mode (enum machine_mode mode
, bool unsignedp
)
11400 dw_die_ref type_die
;
11401 tree type
= lang_hooks
.types
.type_for_mode (mode
, unsignedp
);
11405 switch (TREE_CODE (type
))
11413 type_die
= lookup_type_die (type
);
11415 type_die
= modified_type_die (type
, false, false, comp_unit_die ());
11416 if (type_die
== NULL
|| type_die
->die_tag
!= DW_TAG_base_type
)
11421 /* For OP descriptor assumed to be in unsigned MODE, convert it to a unsigned
11422 type matching MODE, or, if MODE is narrower than or as wide as
11423 DWARF2_ADDR_SIZE, untyped. Return NULL if the conversion is not
11426 static dw_loc_descr_ref
11427 convert_descriptor_to_mode (enum machine_mode mode
, dw_loc_descr_ref op
)
11429 enum machine_mode outer_mode
= mode
;
11430 dw_die_ref type_die
;
11431 dw_loc_descr_ref cvt
;
11433 if (GET_MODE_SIZE (mode
) <= DWARF2_ADDR_SIZE
)
11435 add_loc_descr (&op
, new_loc_descr (DW_OP_GNU_convert
, 0, 0));
11438 type_die
= base_type_for_mode (outer_mode
, 1);
11439 if (type_die
== NULL
)
11441 cvt
= new_loc_descr (DW_OP_GNU_convert
, 0, 0);
11442 cvt
->dw_loc_oprnd1
.val_class
= dw_val_class_die_ref
;
11443 cvt
->dw_loc_oprnd1
.v
.val_die_ref
.die
= type_die
;
11444 cvt
->dw_loc_oprnd1
.v
.val_die_ref
.external
= 0;
11445 add_loc_descr (&op
, cvt
);
11449 /* Return location descriptor for comparison OP with operands OP0 and OP1. */
11451 static dw_loc_descr_ref
11452 compare_loc_descriptor (enum dwarf_location_atom op
, dw_loc_descr_ref op0
,
11453 dw_loc_descr_ref op1
)
11455 dw_loc_descr_ref ret
= op0
;
11456 add_loc_descr (&ret
, op1
);
11457 add_loc_descr (&ret
, new_loc_descr (op
, 0, 0));
11458 if (STORE_FLAG_VALUE
!= 1)
11460 add_loc_descr (&ret
, int_loc_descriptor (STORE_FLAG_VALUE
));
11461 add_loc_descr (&ret
, new_loc_descr (DW_OP_mul
, 0, 0));
11466 /* Return location descriptor for signed comparison OP RTL. */
11468 static dw_loc_descr_ref
11469 scompare_loc_descriptor (enum dwarf_location_atom op
, rtx rtl
,
11470 enum machine_mode mem_mode
)
11472 enum machine_mode op_mode
= GET_MODE (XEXP (rtl
, 0));
11473 dw_loc_descr_ref op0
, op1
;
11476 if (op_mode
== VOIDmode
)
11477 op_mode
= GET_MODE (XEXP (rtl
, 1));
11478 if (op_mode
== VOIDmode
)
11482 && (GET_MODE_CLASS (op_mode
) != MODE_INT
11483 || GET_MODE_SIZE (op_mode
) > DWARF2_ADDR_SIZE
))
11486 op0
= mem_loc_descriptor (XEXP (rtl
, 0), op_mode
, mem_mode
,
11487 VAR_INIT_STATUS_INITIALIZED
);
11488 op1
= mem_loc_descriptor (XEXP (rtl
, 1), op_mode
, mem_mode
,
11489 VAR_INIT_STATUS_INITIALIZED
);
11491 if (op0
== NULL
|| op1
== NULL
)
11494 if (GET_MODE_CLASS (op_mode
) != MODE_INT
11495 || GET_MODE_SIZE (op_mode
) == DWARF2_ADDR_SIZE
)
11496 return compare_loc_descriptor (op
, op0
, op1
);
11498 if (GET_MODE_SIZE (op_mode
) > DWARF2_ADDR_SIZE
)
11500 dw_die_ref type_die
= base_type_for_mode (op_mode
, 0);
11501 dw_loc_descr_ref cvt
;
11503 if (type_die
== NULL
)
11505 cvt
= new_loc_descr (DW_OP_GNU_convert
, 0, 0);
11506 cvt
->dw_loc_oprnd1
.val_class
= dw_val_class_die_ref
;
11507 cvt
->dw_loc_oprnd1
.v
.val_die_ref
.die
= type_die
;
11508 cvt
->dw_loc_oprnd1
.v
.val_die_ref
.external
= 0;
11509 add_loc_descr (&op0
, cvt
);
11510 cvt
= new_loc_descr (DW_OP_GNU_convert
, 0, 0);
11511 cvt
->dw_loc_oprnd1
.val_class
= dw_val_class_die_ref
;
11512 cvt
->dw_loc_oprnd1
.v
.val_die_ref
.die
= type_die
;
11513 cvt
->dw_loc_oprnd1
.v
.val_die_ref
.external
= 0;
11514 add_loc_descr (&op1
, cvt
);
11515 return compare_loc_descriptor (op
, op0
, op1
);
11518 shift
= (DWARF2_ADDR_SIZE
- GET_MODE_SIZE (op_mode
)) * BITS_PER_UNIT
;
11519 /* For eq/ne, if the operands are known to be zero-extended,
11520 there is no need to do the fancy shifting up. */
11521 if (op
== DW_OP_eq
|| op
== DW_OP_ne
)
11523 dw_loc_descr_ref last0
, last1
;
11524 for (last0
= op0
; last0
->dw_loc_next
!= NULL
; last0
= last0
->dw_loc_next
)
11526 for (last1
= op1
; last1
->dw_loc_next
!= NULL
; last1
= last1
->dw_loc_next
)
11528 /* deref_size zero extends, and for constants we can check
11529 whether they are zero extended or not. */
11530 if (((last0
->dw_loc_opc
== DW_OP_deref_size
11531 && last0
->dw_loc_oprnd1
.v
.val_int
<= GET_MODE_SIZE (op_mode
))
11532 || (CONST_INT_P (XEXP (rtl
, 0))
11533 && (unsigned HOST_WIDE_INT
) INTVAL (XEXP (rtl
, 0))
11534 == (INTVAL (XEXP (rtl
, 0)) & GET_MODE_MASK (op_mode
))))
11535 && ((last1
->dw_loc_opc
== DW_OP_deref_size
11536 && last1
->dw_loc_oprnd1
.v
.val_int
<= GET_MODE_SIZE (op_mode
))
11537 || (CONST_INT_P (XEXP (rtl
, 1))
11538 && (unsigned HOST_WIDE_INT
) INTVAL (XEXP (rtl
, 1))
11539 == (INTVAL (XEXP (rtl
, 1)) & GET_MODE_MASK (op_mode
)))))
11540 return compare_loc_descriptor (op
, op0
, op1
);
11542 /* EQ/NE comparison against constant in narrower type than
11543 DWARF2_ADDR_SIZE can be performed either as
11544 DW_OP_const1u <shift> DW_OP_shl DW_OP_const* <cst << shift>
11547 DW_OP_const*u <mode_mask> DW_OP_and DW_OP_const* <cst & mode_mask>
11548 DW_OP_{eq,ne}. Pick whatever is shorter. */
11549 if (CONST_INT_P (XEXP (rtl
, 1))
11550 && GET_MODE_BITSIZE (op_mode
) < HOST_BITS_PER_WIDE_INT
11551 && (size_of_int_loc_descriptor (shift
) + 1
11552 + size_of_int_loc_descriptor (INTVAL (XEXP (rtl
, 1)) << shift
)
11553 >= size_of_int_loc_descriptor (GET_MODE_MASK (op_mode
)) + 1
11554 + size_of_int_loc_descriptor (INTVAL (XEXP (rtl
, 1))
11555 & GET_MODE_MASK (op_mode
))))
11557 add_loc_descr (&op0
, int_loc_descriptor (GET_MODE_MASK (op_mode
)));
11558 add_loc_descr (&op0
, new_loc_descr (DW_OP_and
, 0, 0));
11559 op1
= int_loc_descriptor (INTVAL (XEXP (rtl
, 1))
11560 & GET_MODE_MASK (op_mode
));
11561 return compare_loc_descriptor (op
, op0
, op1
);
11564 add_loc_descr (&op0
, int_loc_descriptor (shift
));
11565 add_loc_descr (&op0
, new_loc_descr (DW_OP_shl
, 0, 0));
11566 if (CONST_INT_P (XEXP (rtl
, 1)))
11567 op1
= int_loc_descriptor (INTVAL (XEXP (rtl
, 1)) << shift
);
11570 add_loc_descr (&op1
, int_loc_descriptor (shift
));
11571 add_loc_descr (&op1
, new_loc_descr (DW_OP_shl
, 0, 0));
11573 return compare_loc_descriptor (op
, op0
, op1
);
11576 /* Return location descriptor for unsigned comparison OP RTL. */
11578 static dw_loc_descr_ref
11579 ucompare_loc_descriptor (enum dwarf_location_atom op
, rtx rtl
,
11580 enum machine_mode mem_mode
)
11582 enum machine_mode op_mode
= GET_MODE (XEXP (rtl
, 0));
11583 dw_loc_descr_ref op0
, op1
;
11585 if (op_mode
== VOIDmode
)
11586 op_mode
= GET_MODE (XEXP (rtl
, 1));
11587 if (op_mode
== VOIDmode
)
11589 if (GET_MODE_CLASS (op_mode
) != MODE_INT
)
11592 if (dwarf_strict
&& GET_MODE_SIZE (op_mode
) > DWARF2_ADDR_SIZE
)
11595 op0
= mem_loc_descriptor (XEXP (rtl
, 0), op_mode
, mem_mode
,
11596 VAR_INIT_STATUS_INITIALIZED
);
11597 op1
= mem_loc_descriptor (XEXP (rtl
, 1), op_mode
, mem_mode
,
11598 VAR_INIT_STATUS_INITIALIZED
);
11600 if (op0
== NULL
|| op1
== NULL
)
11603 if (GET_MODE_SIZE (op_mode
) < DWARF2_ADDR_SIZE
)
11605 HOST_WIDE_INT mask
= GET_MODE_MASK (op_mode
);
11606 dw_loc_descr_ref last0
, last1
;
11607 for (last0
= op0
; last0
->dw_loc_next
!= NULL
; last0
= last0
->dw_loc_next
)
11609 for (last1
= op1
; last1
->dw_loc_next
!= NULL
; last1
= last1
->dw_loc_next
)
11611 if (CONST_INT_P (XEXP (rtl
, 0)))
11612 op0
= int_loc_descriptor (INTVAL (XEXP (rtl
, 0)) & mask
);
11613 /* deref_size zero extends, so no need to mask it again. */
11614 else if (last0
->dw_loc_opc
!= DW_OP_deref_size
11615 || last0
->dw_loc_oprnd1
.v
.val_int
> GET_MODE_SIZE (op_mode
))
11617 add_loc_descr (&op0
, int_loc_descriptor (mask
));
11618 add_loc_descr (&op0
, new_loc_descr (DW_OP_and
, 0, 0));
11620 if (CONST_INT_P (XEXP (rtl
, 1)))
11621 op1
= int_loc_descriptor (INTVAL (XEXP (rtl
, 1)) & mask
);
11622 /* deref_size zero extends, so no need to mask it again. */
11623 else if (last1
->dw_loc_opc
!= DW_OP_deref_size
11624 || last1
->dw_loc_oprnd1
.v
.val_int
> GET_MODE_SIZE (op_mode
))
11626 add_loc_descr (&op1
, int_loc_descriptor (mask
));
11627 add_loc_descr (&op1
, new_loc_descr (DW_OP_and
, 0, 0));
11630 else if (GET_MODE_SIZE (op_mode
) == DWARF2_ADDR_SIZE
)
11632 HOST_WIDE_INT bias
= 1;
11633 bias
<<= (DWARF2_ADDR_SIZE
* BITS_PER_UNIT
- 1);
11634 add_loc_descr (&op0
, new_loc_descr (DW_OP_plus_uconst
, bias
, 0));
11635 if (CONST_INT_P (XEXP (rtl
, 1)))
11636 op1
= int_loc_descriptor ((unsigned HOST_WIDE_INT
) bias
11637 + INTVAL (XEXP (rtl
, 1)));
11639 add_loc_descr (&op1
, new_loc_descr (DW_OP_plus_uconst
,
11642 return compare_loc_descriptor (op
, op0
, op1
);
11645 /* Return location descriptor for {U,S}{MIN,MAX}. */
11647 static dw_loc_descr_ref
11648 minmax_loc_descriptor (rtx rtl
, enum machine_mode mode
,
11649 enum machine_mode mem_mode
)
11651 enum dwarf_location_atom op
;
11652 dw_loc_descr_ref op0
, op1
, ret
;
11653 dw_loc_descr_ref bra_node
, drop_node
;
11656 && (GET_MODE_CLASS (mode
) != MODE_INT
11657 || GET_MODE_SIZE (mode
) > DWARF2_ADDR_SIZE
))
11660 op0
= mem_loc_descriptor (XEXP (rtl
, 0), mode
, mem_mode
,
11661 VAR_INIT_STATUS_INITIALIZED
);
11662 op1
= mem_loc_descriptor (XEXP (rtl
, 1), mode
, mem_mode
,
11663 VAR_INIT_STATUS_INITIALIZED
);
11665 if (op0
== NULL
|| op1
== NULL
)
11668 add_loc_descr (&op0
, new_loc_descr (DW_OP_dup
, 0, 0));
11669 add_loc_descr (&op1
, new_loc_descr (DW_OP_swap
, 0, 0));
11670 add_loc_descr (&op1
, new_loc_descr (DW_OP_over
, 0, 0));
11671 if (GET_CODE (rtl
) == UMIN
|| GET_CODE (rtl
) == UMAX
)
11673 if (GET_MODE_SIZE (mode
) < DWARF2_ADDR_SIZE
)
11675 HOST_WIDE_INT mask
= GET_MODE_MASK (mode
);
11676 add_loc_descr (&op0
, int_loc_descriptor (mask
));
11677 add_loc_descr (&op0
, new_loc_descr (DW_OP_and
, 0, 0));
11678 add_loc_descr (&op1
, int_loc_descriptor (mask
));
11679 add_loc_descr (&op1
, new_loc_descr (DW_OP_and
, 0, 0));
11681 else if (GET_MODE_SIZE (mode
) == DWARF2_ADDR_SIZE
)
11683 HOST_WIDE_INT bias
= 1;
11684 bias
<<= (DWARF2_ADDR_SIZE
* BITS_PER_UNIT
- 1);
11685 add_loc_descr (&op0
, new_loc_descr (DW_OP_plus_uconst
, bias
, 0));
11686 add_loc_descr (&op1
, new_loc_descr (DW_OP_plus_uconst
, bias
, 0));
11689 else if (GET_MODE_CLASS (mode
) == MODE_INT
11690 && GET_MODE_SIZE (mode
) < DWARF2_ADDR_SIZE
)
11692 int shift
= (DWARF2_ADDR_SIZE
- GET_MODE_SIZE (mode
)) * BITS_PER_UNIT
;
11693 add_loc_descr (&op0
, int_loc_descriptor (shift
));
11694 add_loc_descr (&op0
, new_loc_descr (DW_OP_shl
, 0, 0));
11695 add_loc_descr (&op1
, int_loc_descriptor (shift
));
11696 add_loc_descr (&op1
, new_loc_descr (DW_OP_shl
, 0, 0));
11698 else if (GET_MODE_CLASS (mode
) == MODE_INT
11699 && GET_MODE_SIZE (mode
) > DWARF2_ADDR_SIZE
)
11701 dw_die_ref type_die
= base_type_for_mode (mode
, 0);
11702 dw_loc_descr_ref cvt
;
11703 if (type_die
== NULL
)
11705 cvt
= new_loc_descr (DW_OP_GNU_convert
, 0, 0);
11706 cvt
->dw_loc_oprnd1
.val_class
= dw_val_class_die_ref
;
11707 cvt
->dw_loc_oprnd1
.v
.val_die_ref
.die
= type_die
;
11708 cvt
->dw_loc_oprnd1
.v
.val_die_ref
.external
= 0;
11709 add_loc_descr (&op0
, cvt
);
11710 cvt
= new_loc_descr (DW_OP_GNU_convert
, 0, 0);
11711 cvt
->dw_loc_oprnd1
.val_class
= dw_val_class_die_ref
;
11712 cvt
->dw_loc_oprnd1
.v
.val_die_ref
.die
= type_die
;
11713 cvt
->dw_loc_oprnd1
.v
.val_die_ref
.external
= 0;
11714 add_loc_descr (&op1
, cvt
);
11717 if (GET_CODE (rtl
) == SMIN
|| GET_CODE (rtl
) == UMIN
)
11722 add_loc_descr (&ret
, op1
);
11723 add_loc_descr (&ret
, new_loc_descr (op
, 0, 0));
11724 bra_node
= new_loc_descr (DW_OP_bra
, 0, 0);
11725 add_loc_descr (&ret
, bra_node
);
11726 add_loc_descr (&ret
, new_loc_descr (DW_OP_swap
, 0, 0));
11727 drop_node
= new_loc_descr (DW_OP_drop
, 0, 0);
11728 add_loc_descr (&ret
, drop_node
);
11729 bra_node
->dw_loc_oprnd1
.val_class
= dw_val_class_loc
;
11730 bra_node
->dw_loc_oprnd1
.v
.val_loc
= drop_node
;
11731 if ((GET_CODE (rtl
) == SMIN
|| GET_CODE (rtl
) == SMAX
)
11732 && GET_MODE_CLASS (mode
) == MODE_INT
11733 && GET_MODE_SIZE (mode
) > DWARF2_ADDR_SIZE
)
11734 ret
= convert_descriptor_to_mode (mode
, ret
);
11738 /* Helper function for mem_loc_descriptor. Perform OP binary op,
11739 but after converting arguments to type_die, afterwards
11740 convert back to unsigned. */
11742 static dw_loc_descr_ref
11743 typed_binop (enum dwarf_location_atom op
, rtx rtl
, dw_die_ref type_die
,
11744 enum machine_mode mode
, enum machine_mode mem_mode
)
11746 dw_loc_descr_ref cvt
, op0
, op1
;
11748 if (type_die
== NULL
)
11750 op0
= mem_loc_descriptor (XEXP (rtl
, 0), mode
, mem_mode
,
11751 VAR_INIT_STATUS_INITIALIZED
);
11752 op1
= mem_loc_descriptor (XEXP (rtl
, 1), mode
, mem_mode
,
11753 VAR_INIT_STATUS_INITIALIZED
);
11754 if (op0
== NULL
|| op1
== NULL
)
11756 cvt
= new_loc_descr (DW_OP_GNU_convert
, 0, 0);
11757 cvt
->dw_loc_oprnd1
.val_class
= dw_val_class_die_ref
;
11758 cvt
->dw_loc_oprnd1
.v
.val_die_ref
.die
= type_die
;
11759 cvt
->dw_loc_oprnd1
.v
.val_die_ref
.external
= 0;
11760 add_loc_descr (&op0
, cvt
);
11761 cvt
= new_loc_descr (DW_OP_GNU_convert
, 0, 0);
11762 cvt
->dw_loc_oprnd1
.val_class
= dw_val_class_die_ref
;
11763 cvt
->dw_loc_oprnd1
.v
.val_die_ref
.die
= type_die
;
11764 cvt
->dw_loc_oprnd1
.v
.val_die_ref
.external
= 0;
11765 add_loc_descr (&op1
, cvt
);
11766 add_loc_descr (&op0
, op1
);
11767 add_loc_descr (&op0
, new_loc_descr (op
, 0, 0));
11768 return convert_descriptor_to_mode (mode
, op0
);
11771 /* CLZ (where constV is CLZ_DEFINED_VALUE_AT_ZERO computed value,
11772 const0 is DW_OP_lit0 or corresponding typed constant,
11773 const1 is DW_OP_lit1 or corresponding typed constant
11774 and constMSB is constant with just the MSB bit set
11776 DW_OP_dup DW_OP_bra <L1> DW_OP_drop constV DW_OP_skip <L4>
11777 L1: const0 DW_OP_swap
11778 L2: DW_OP_dup constMSB DW_OP_and DW_OP_bra <L3> const1 DW_OP_shl
11779 DW_OP_swap DW_OP_plus_uconst <1> DW_OP_swap DW_OP_skip <L2>
11784 DW_OP_dup DW_OP_bra <L1> DW_OP_drop constV DW_OP_skip <L4>
11785 L1: const0 DW_OP_swap
11786 L2: DW_OP_dup const1 DW_OP_and DW_OP_bra <L3> const1 DW_OP_shr
11787 DW_OP_swap DW_OP_plus_uconst <1> DW_OP_swap DW_OP_skip <L2>
11792 DW_OP_dup DW_OP_bra <L1> DW_OP_drop const0 DW_OP_skip <L4>
11793 L1: const1 DW_OP_swap
11794 L2: DW_OP_dup const1 DW_OP_and DW_OP_bra <L3> const1 DW_OP_shr
11795 DW_OP_swap DW_OP_plus_uconst <1> DW_OP_swap DW_OP_skip <L2>
11799 static dw_loc_descr_ref
11800 clz_loc_descriptor (rtx rtl
, enum machine_mode mode
,
11801 enum machine_mode mem_mode
)
11803 dw_loc_descr_ref op0
, ret
, tmp
;
11804 HOST_WIDE_INT valv
;
11805 dw_loc_descr_ref l1jump
, l1label
;
11806 dw_loc_descr_ref l2jump
, l2label
;
11807 dw_loc_descr_ref l3jump
, l3label
;
11808 dw_loc_descr_ref l4jump
, l4label
;
11811 if (GET_MODE_CLASS (mode
) != MODE_INT
11812 || GET_MODE (XEXP (rtl
, 0)) != mode
11813 || (GET_CODE (rtl
) == CLZ
11814 && GET_MODE_BITSIZE (mode
) > HOST_BITS_PER_DOUBLE_INT
))
11817 op0
= mem_loc_descriptor (XEXP (rtl
, 0), mode
, mem_mode
,
11818 VAR_INIT_STATUS_INITIALIZED
);
11822 if (GET_CODE (rtl
) == CLZ
)
11824 if (!CLZ_DEFINED_VALUE_AT_ZERO (mode
, valv
))
11825 valv
= GET_MODE_BITSIZE (mode
);
11827 else if (GET_CODE (rtl
) == FFS
)
11829 else if (!CTZ_DEFINED_VALUE_AT_ZERO (mode
, valv
))
11830 valv
= GET_MODE_BITSIZE (mode
);
11831 add_loc_descr (&ret
, new_loc_descr (DW_OP_dup
, 0, 0));
11832 l1jump
= new_loc_descr (DW_OP_bra
, 0, 0);
11833 add_loc_descr (&ret
, l1jump
);
11834 add_loc_descr (&ret
, new_loc_descr (DW_OP_drop
, 0, 0));
11835 tmp
= mem_loc_descriptor (GEN_INT (valv
), mode
, mem_mode
,
11836 VAR_INIT_STATUS_INITIALIZED
);
11839 add_loc_descr (&ret
, tmp
);
11840 l4jump
= new_loc_descr (DW_OP_skip
, 0, 0);
11841 add_loc_descr (&ret
, l4jump
);
11842 l1label
= mem_loc_descriptor (GET_CODE (rtl
) == FFS
11843 ? const1_rtx
: const0_rtx
,
11845 VAR_INIT_STATUS_INITIALIZED
);
11846 if (l1label
== NULL
)
11848 add_loc_descr (&ret
, l1label
);
11849 add_loc_descr (&ret
, new_loc_descr (DW_OP_swap
, 0, 0));
11850 l2label
= new_loc_descr (DW_OP_dup
, 0, 0);
11851 add_loc_descr (&ret
, l2label
);
11852 if (GET_CODE (rtl
) != CLZ
)
11854 else if (GET_MODE_BITSIZE (mode
) <= HOST_BITS_PER_WIDE_INT
)
11855 msb
= GEN_INT ((unsigned HOST_WIDE_INT
) 1
11856 << (GET_MODE_BITSIZE (mode
) - 1));
11858 msb
= immed_double_const (0, (unsigned HOST_WIDE_INT
) 1
11859 << (GET_MODE_BITSIZE (mode
)
11860 - HOST_BITS_PER_WIDE_INT
- 1), mode
);
11861 if (GET_CODE (msb
) == CONST_INT
&& INTVAL (msb
) < 0)
11862 tmp
= new_loc_descr (HOST_BITS_PER_WIDE_INT
== 32
11863 ? DW_OP_const4u
: HOST_BITS_PER_WIDE_INT
== 64
11864 ? DW_OP_const8u
: DW_OP_constu
, INTVAL (msb
), 0);
11866 tmp
= mem_loc_descriptor (msb
, mode
, mem_mode
,
11867 VAR_INIT_STATUS_INITIALIZED
);
11870 add_loc_descr (&ret
, tmp
);
11871 add_loc_descr (&ret
, new_loc_descr (DW_OP_and
, 0, 0));
11872 l3jump
= new_loc_descr (DW_OP_bra
, 0, 0);
11873 add_loc_descr (&ret
, l3jump
);
11874 tmp
= mem_loc_descriptor (const1_rtx
, mode
, mem_mode
,
11875 VAR_INIT_STATUS_INITIALIZED
);
11878 add_loc_descr (&ret
, tmp
);
11879 add_loc_descr (&ret
, new_loc_descr (GET_CODE (rtl
) == CLZ
11880 ? DW_OP_shl
: DW_OP_shr
, 0, 0));
11881 add_loc_descr (&ret
, new_loc_descr (DW_OP_swap
, 0, 0));
11882 add_loc_descr (&ret
, new_loc_descr (DW_OP_plus_uconst
, 1, 0));
11883 add_loc_descr (&ret
, new_loc_descr (DW_OP_swap
, 0, 0));
11884 l2jump
= new_loc_descr (DW_OP_skip
, 0, 0);
11885 add_loc_descr (&ret
, l2jump
);
11886 l3label
= new_loc_descr (DW_OP_drop
, 0, 0);
11887 add_loc_descr (&ret
, l3label
);
11888 l4label
= new_loc_descr (DW_OP_nop
, 0, 0);
11889 add_loc_descr (&ret
, l4label
);
11890 l1jump
->dw_loc_oprnd1
.val_class
= dw_val_class_loc
;
11891 l1jump
->dw_loc_oprnd1
.v
.val_loc
= l1label
;
11892 l2jump
->dw_loc_oprnd1
.val_class
= dw_val_class_loc
;
11893 l2jump
->dw_loc_oprnd1
.v
.val_loc
= l2label
;
11894 l3jump
->dw_loc_oprnd1
.val_class
= dw_val_class_loc
;
11895 l3jump
->dw_loc_oprnd1
.v
.val_loc
= l3label
;
11896 l4jump
->dw_loc_oprnd1
.val_class
= dw_val_class_loc
;
11897 l4jump
->dw_loc_oprnd1
.v
.val_loc
= l4label
;
11901 /* POPCOUNT (const0 is DW_OP_lit0 or corresponding typed constant,
11902 const1 is DW_OP_lit1 or corresponding typed constant):
11904 L1: DW_OP_dup DW_OP_bra <L2> DW_OP_dup DW_OP_rot const1 DW_OP_and
11905 DW_OP_plus DW_OP_swap const1 DW_OP_shr DW_OP_skip <L1>
11909 L1: DW_OP_dup DW_OP_bra <L2> DW_OP_dup DW_OP_rot const1 DW_OP_and
11910 DW_OP_xor DW_OP_swap const1 DW_OP_shr DW_OP_skip <L1>
11913 static dw_loc_descr_ref
11914 popcount_loc_descriptor (rtx rtl
, enum machine_mode mode
,
11915 enum machine_mode mem_mode
)
11917 dw_loc_descr_ref op0
, ret
, tmp
;
11918 dw_loc_descr_ref l1jump
, l1label
;
11919 dw_loc_descr_ref l2jump
, l2label
;
11921 if (GET_MODE_CLASS (mode
) != MODE_INT
11922 || GET_MODE (XEXP (rtl
, 0)) != mode
)
11925 op0
= mem_loc_descriptor (XEXP (rtl
, 0), mode
, mem_mode
,
11926 VAR_INIT_STATUS_INITIALIZED
);
11930 tmp
= mem_loc_descriptor (const0_rtx
, mode
, mem_mode
,
11931 VAR_INIT_STATUS_INITIALIZED
);
11934 add_loc_descr (&ret
, tmp
);
11935 add_loc_descr (&ret
, new_loc_descr (DW_OP_swap
, 0, 0));
11936 l1label
= new_loc_descr (DW_OP_dup
, 0, 0);
11937 add_loc_descr (&ret
, l1label
);
11938 l2jump
= new_loc_descr (DW_OP_bra
, 0, 0);
11939 add_loc_descr (&ret
, l2jump
);
11940 add_loc_descr (&ret
, new_loc_descr (DW_OP_dup
, 0, 0));
11941 add_loc_descr (&ret
, new_loc_descr (DW_OP_rot
, 0, 0));
11942 tmp
= mem_loc_descriptor (const1_rtx
, mode
, mem_mode
,
11943 VAR_INIT_STATUS_INITIALIZED
);
11946 add_loc_descr (&ret
, tmp
);
11947 add_loc_descr (&ret
, new_loc_descr (DW_OP_and
, 0, 0));
11948 add_loc_descr (&ret
, new_loc_descr (GET_CODE (rtl
) == POPCOUNT
11949 ? DW_OP_plus
: DW_OP_xor
, 0, 0));
11950 add_loc_descr (&ret
, new_loc_descr (DW_OP_swap
, 0, 0));
11951 tmp
= mem_loc_descriptor (const1_rtx
, mode
, mem_mode
,
11952 VAR_INIT_STATUS_INITIALIZED
);
11953 add_loc_descr (&ret
, tmp
);
11954 add_loc_descr (&ret
, new_loc_descr (DW_OP_shr
, 0, 0));
11955 l1jump
= new_loc_descr (DW_OP_skip
, 0, 0);
11956 add_loc_descr (&ret
, l1jump
);
11957 l2label
= new_loc_descr (DW_OP_drop
, 0, 0);
11958 add_loc_descr (&ret
, l2label
);
11959 l1jump
->dw_loc_oprnd1
.val_class
= dw_val_class_loc
;
11960 l1jump
->dw_loc_oprnd1
.v
.val_loc
= l1label
;
11961 l2jump
->dw_loc_oprnd1
.val_class
= dw_val_class_loc
;
11962 l2jump
->dw_loc_oprnd1
.v
.val_loc
= l2label
;
11966 /* BSWAP (constS is initial shift count, either 56 or 24):
11968 L1: DW_OP_pick <2> constS DW_OP_pick <3> DW_OP_minus DW_OP_shr
11969 const255 DW_OP_and DW_OP_pick <2> DW_OP_shl DW_OP_or
11970 DW_OP_swap DW_OP_dup const0 DW_OP_eq DW_OP_bra <L2> const8
11971 DW_OP_minus DW_OP_swap DW_OP_skip <L1>
11972 L2: DW_OP_drop DW_OP_swap DW_OP_drop */
11974 static dw_loc_descr_ref
11975 bswap_loc_descriptor (rtx rtl
, enum machine_mode mode
,
11976 enum machine_mode mem_mode
)
11978 dw_loc_descr_ref op0
, ret
, tmp
;
11979 dw_loc_descr_ref l1jump
, l1label
;
11980 dw_loc_descr_ref l2jump
, l2label
;
11982 if (GET_MODE_CLASS (mode
) != MODE_INT
11983 || BITS_PER_UNIT
!= 8
11984 || (GET_MODE_BITSIZE (mode
) != 32
11985 && GET_MODE_BITSIZE (mode
) != 64))
11988 op0
= mem_loc_descriptor (XEXP (rtl
, 0), mode
, mem_mode
,
11989 VAR_INIT_STATUS_INITIALIZED
);
11994 tmp
= mem_loc_descriptor (GEN_INT (GET_MODE_BITSIZE (mode
) - 8),
11996 VAR_INIT_STATUS_INITIALIZED
);
11999 add_loc_descr (&ret
, tmp
);
12000 tmp
= mem_loc_descriptor (const0_rtx
, mode
, mem_mode
,
12001 VAR_INIT_STATUS_INITIALIZED
);
12004 add_loc_descr (&ret
, tmp
);
12005 l1label
= new_loc_descr (DW_OP_pick
, 2, 0);
12006 add_loc_descr (&ret
, l1label
);
12007 tmp
= mem_loc_descriptor (GEN_INT (GET_MODE_BITSIZE (mode
) - 8),
12009 VAR_INIT_STATUS_INITIALIZED
);
12010 add_loc_descr (&ret
, tmp
);
12011 add_loc_descr (&ret
, new_loc_descr (DW_OP_pick
, 3, 0));
12012 add_loc_descr (&ret
, new_loc_descr (DW_OP_minus
, 0, 0));
12013 add_loc_descr (&ret
, new_loc_descr (DW_OP_shr
, 0, 0));
12014 tmp
= mem_loc_descriptor (GEN_INT (255), mode
, mem_mode
,
12015 VAR_INIT_STATUS_INITIALIZED
);
12018 add_loc_descr (&ret
, tmp
);
12019 add_loc_descr (&ret
, new_loc_descr (DW_OP_and
, 0, 0));
12020 add_loc_descr (&ret
, new_loc_descr (DW_OP_pick
, 2, 0));
12021 add_loc_descr (&ret
, new_loc_descr (DW_OP_shl
, 0, 0));
12022 add_loc_descr (&ret
, new_loc_descr (DW_OP_or
, 0, 0));
12023 add_loc_descr (&ret
, new_loc_descr (DW_OP_swap
, 0, 0));
12024 add_loc_descr (&ret
, new_loc_descr (DW_OP_dup
, 0, 0));
12025 tmp
= mem_loc_descriptor (const0_rtx
, mode
, mem_mode
,
12026 VAR_INIT_STATUS_INITIALIZED
);
12027 add_loc_descr (&ret
, tmp
);
12028 add_loc_descr (&ret
, new_loc_descr (DW_OP_eq
, 0, 0));
12029 l2jump
= new_loc_descr (DW_OP_bra
, 0, 0);
12030 add_loc_descr (&ret
, l2jump
);
12031 tmp
= mem_loc_descriptor (GEN_INT (8), mode
, mem_mode
,
12032 VAR_INIT_STATUS_INITIALIZED
);
12033 add_loc_descr (&ret
, tmp
);
12034 add_loc_descr (&ret
, new_loc_descr (DW_OP_minus
, 0, 0));
12035 add_loc_descr (&ret
, new_loc_descr (DW_OP_swap
, 0, 0));
12036 l1jump
= new_loc_descr (DW_OP_skip
, 0, 0);
12037 add_loc_descr (&ret
, l1jump
);
12038 l2label
= new_loc_descr (DW_OP_drop
, 0, 0);
12039 add_loc_descr (&ret
, l2label
);
12040 add_loc_descr (&ret
, new_loc_descr (DW_OP_swap
, 0, 0));
12041 add_loc_descr (&ret
, new_loc_descr (DW_OP_drop
, 0, 0));
12042 l1jump
->dw_loc_oprnd1
.val_class
= dw_val_class_loc
;
12043 l1jump
->dw_loc_oprnd1
.v
.val_loc
= l1label
;
12044 l2jump
->dw_loc_oprnd1
.val_class
= dw_val_class_loc
;
12045 l2jump
->dw_loc_oprnd1
.v
.val_loc
= l2label
;
12049 /* ROTATE (constMASK is mode mask, BITSIZE is bitsize of mode):
12050 DW_OP_over DW_OP_over DW_OP_shl [ constMASK DW_OP_and ] DW_OP_rot
12051 [ DW_OP_swap constMASK DW_OP_and DW_OP_swap ] DW_OP_neg
12052 DW_OP_plus_uconst <BITSIZE> DW_OP_shr DW_OP_or
12054 ROTATERT is similar:
12055 DW_OP_over DW_OP_over DW_OP_neg DW_OP_plus_uconst <BITSIZE>
12056 DW_OP_shl [ constMASK DW_OP_and ] DW_OP_rot
12057 [ DW_OP_swap constMASK DW_OP_and DW_OP_swap ] DW_OP_shr DW_OP_or */
12059 static dw_loc_descr_ref
12060 rotate_loc_descriptor (rtx rtl
, enum machine_mode mode
,
12061 enum machine_mode mem_mode
)
12063 rtx rtlop1
= XEXP (rtl
, 1);
12064 dw_loc_descr_ref op0
, op1
, ret
, mask
[2] = { NULL
, NULL
};
12067 if (GET_MODE_CLASS (mode
) != MODE_INT
)
12070 if (GET_MODE (rtlop1
) != VOIDmode
12071 && GET_MODE_BITSIZE (GET_MODE (rtlop1
)) < GET_MODE_BITSIZE (mode
))
12072 rtlop1
= gen_rtx_ZERO_EXTEND (mode
, rtlop1
);
12073 op0
= mem_loc_descriptor (XEXP (rtl
, 0), mode
, mem_mode
,
12074 VAR_INIT_STATUS_INITIALIZED
);
12075 op1
= mem_loc_descriptor (rtlop1
, mode
, mem_mode
,
12076 VAR_INIT_STATUS_INITIALIZED
);
12077 if (op0
== NULL
|| op1
== NULL
)
12079 if (GET_MODE_SIZE (mode
) < DWARF2_ADDR_SIZE
)
12080 for (i
= 0; i
< 2; i
++)
12082 if (GET_MODE_BITSIZE (mode
) < HOST_BITS_PER_WIDE_INT
)
12083 mask
[i
] = mem_loc_descriptor (GEN_INT (GET_MODE_MASK (mode
)),
12085 VAR_INIT_STATUS_INITIALIZED
);
12086 else if (GET_MODE_BITSIZE (mode
) == HOST_BITS_PER_WIDE_INT
)
12087 mask
[i
] = new_loc_descr (HOST_BITS_PER_WIDE_INT
== 32
12089 : HOST_BITS_PER_WIDE_INT
== 64
12090 ? DW_OP_const8u
: DW_OP_constu
,
12091 GET_MODE_MASK (mode
), 0);
12094 if (mask
[i
] == NULL
)
12096 add_loc_descr (&mask
[i
], new_loc_descr (DW_OP_and
, 0, 0));
12099 add_loc_descr (&ret
, op1
);
12100 add_loc_descr (&ret
, new_loc_descr (DW_OP_over
, 0, 0));
12101 add_loc_descr (&ret
, new_loc_descr (DW_OP_over
, 0, 0));
12102 if (GET_CODE (rtl
) == ROTATERT
)
12104 add_loc_descr (&ret
, new_loc_descr (DW_OP_neg
, 0, 0));
12105 add_loc_descr (&ret
, new_loc_descr (DW_OP_plus_uconst
,
12106 GET_MODE_BITSIZE (mode
), 0));
12108 add_loc_descr (&ret
, new_loc_descr (DW_OP_shl
, 0, 0));
12109 if (mask
[0] != NULL
)
12110 add_loc_descr (&ret
, mask
[0]);
12111 add_loc_descr (&ret
, new_loc_descr (DW_OP_rot
, 0, 0));
12112 if (mask
[1] != NULL
)
12114 add_loc_descr (&ret
, new_loc_descr (DW_OP_swap
, 0, 0));
12115 add_loc_descr (&ret
, mask
[1]);
12116 add_loc_descr (&ret
, new_loc_descr (DW_OP_swap
, 0, 0));
12118 if (GET_CODE (rtl
) == ROTATE
)
12120 add_loc_descr (&ret
, new_loc_descr (DW_OP_neg
, 0, 0));
12121 add_loc_descr (&ret
, new_loc_descr (DW_OP_plus_uconst
,
12122 GET_MODE_BITSIZE (mode
), 0));
12124 add_loc_descr (&ret
, new_loc_descr (DW_OP_shr
, 0, 0));
12125 add_loc_descr (&ret
, new_loc_descr (DW_OP_or
, 0, 0));
12129 /* Helper function for mem_loc_descriptor. Return DW_OP_GNU_parameter_ref
12130 for DEBUG_PARAMETER_REF RTL. */
12132 static dw_loc_descr_ref
12133 parameter_ref_descriptor (rtx rtl
)
12135 dw_loc_descr_ref ret
;
12140 gcc_assert (TREE_CODE (DEBUG_PARAMETER_REF_DECL (rtl
)) == PARM_DECL
);
12141 ref
= lookup_decl_die (DEBUG_PARAMETER_REF_DECL (rtl
));
12142 ret
= new_loc_descr (DW_OP_GNU_parameter_ref
, 0, 0);
12145 ret
->dw_loc_oprnd1
.val_class
= dw_val_class_die_ref
;
12146 ret
->dw_loc_oprnd1
.v
.val_die_ref
.die
= ref
;
12147 ret
->dw_loc_oprnd1
.v
.val_die_ref
.external
= 0;
12151 ret
->dw_loc_oprnd1
.val_class
= dw_val_class_decl_ref
;
12152 ret
->dw_loc_oprnd1
.v
.val_decl_ref
= DEBUG_PARAMETER_REF_DECL (rtl
);
12157 /* The following routine converts the RTL for a variable or parameter
12158 (resident in memory) into an equivalent Dwarf representation of a
12159 mechanism for getting the address of that same variable onto the top of a
12160 hypothetical "address evaluation" stack.
12162 When creating memory location descriptors, we are effectively transforming
12163 the RTL for a memory-resident object into its Dwarf postfix expression
12164 equivalent. This routine recursively descends an RTL tree, turning
12165 it into Dwarf postfix code as it goes.
12167 MODE is the mode that should be assumed for the rtl if it is VOIDmode.
12169 MEM_MODE is the mode of the memory reference, needed to handle some
12170 autoincrement addressing modes.
12172 Return 0 if we can't represent the location. */
12175 mem_loc_descriptor (rtx rtl
, enum machine_mode mode
,
12176 enum machine_mode mem_mode
,
12177 enum var_init_status initialized
)
12179 dw_loc_descr_ref mem_loc_result
= NULL
;
12180 enum dwarf_location_atom op
;
12181 dw_loc_descr_ref op0
, op1
;
12182 rtx inner
= NULL_RTX
;
12184 if (mode
== VOIDmode
)
12185 mode
= GET_MODE (rtl
);
12187 /* Note that for a dynamically sized array, the location we will generate a
12188 description of here will be the lowest numbered location which is
12189 actually within the array. That's *not* necessarily the same as the
12190 zeroth element of the array. */
12192 rtl
= targetm
.delegitimize_address (rtl
);
12194 if (mode
!= GET_MODE (rtl
) && GET_MODE (rtl
) != VOIDmode
)
12197 switch (GET_CODE (rtl
))
12202 return mem_loc_descriptor (XEXP (rtl
, 0), mode
, mem_mode
, initialized
);
12205 /* The case of a subreg may arise when we have a local (register)
12206 variable or a formal (register) parameter which doesn't quite fill
12207 up an entire register. For now, just assume that it is
12208 legitimate to make the Dwarf info refer to the whole register which
12209 contains the given subreg. */
12210 if (!subreg_lowpart_p (rtl
))
12212 inner
= SUBREG_REG (rtl
);
12214 if (inner
== NULL_RTX
)
12215 inner
= XEXP (rtl
, 0);
12216 if (GET_MODE_CLASS (mode
) == MODE_INT
12217 && GET_MODE_CLASS (GET_MODE (inner
)) == MODE_INT
12218 && (GET_MODE_SIZE (mode
) <= DWARF2_ADDR_SIZE
12219 #ifdef POINTERS_EXTEND_UNSIGNED
12220 || (mode
== Pmode
&& mem_mode
!= VOIDmode
)
12223 && GET_MODE_SIZE (GET_MODE (inner
)) <= DWARF2_ADDR_SIZE
)
12225 mem_loc_result
= mem_loc_descriptor (inner
,
12227 mem_mode
, initialized
);
12232 if (GET_MODE_SIZE (mode
) > GET_MODE_SIZE (GET_MODE (inner
)))
12234 if (GET_MODE_SIZE (mode
) != GET_MODE_SIZE (GET_MODE (inner
))
12235 && (GET_MODE_CLASS (mode
) != MODE_INT
12236 || GET_MODE_CLASS (GET_MODE (inner
)) != MODE_INT
))
12240 dw_die_ref type_die
;
12241 dw_loc_descr_ref cvt
;
12243 mem_loc_result
= mem_loc_descriptor (inner
,
12245 mem_mode
, initialized
);
12246 if (mem_loc_result
== NULL
)
12248 type_die
= base_type_for_mode (mode
,
12249 GET_MODE_CLASS (mode
) == MODE_INT
);
12250 if (type_die
== NULL
)
12252 mem_loc_result
= NULL
;
12255 if (GET_MODE_SIZE (mode
)
12256 != GET_MODE_SIZE (GET_MODE (inner
)))
12257 cvt
= new_loc_descr (DW_OP_GNU_convert
, 0, 0);
12259 cvt
= new_loc_descr (DW_OP_GNU_reinterpret
, 0, 0);
12260 cvt
->dw_loc_oprnd1
.val_class
= dw_val_class_die_ref
;
12261 cvt
->dw_loc_oprnd1
.v
.val_die_ref
.die
= type_die
;
12262 cvt
->dw_loc_oprnd1
.v
.val_die_ref
.external
= 0;
12263 add_loc_descr (&mem_loc_result
, cvt
);
12268 if (GET_MODE_CLASS (mode
) != MODE_INT
12269 || (GET_MODE_SIZE (mode
) > DWARF2_ADDR_SIZE
12270 && rtl
!= arg_pointer_rtx
12271 && rtl
!= frame_pointer_rtx
12272 #ifdef POINTERS_EXTEND_UNSIGNED
12273 && (mode
!= Pmode
|| mem_mode
== VOIDmode
)
12277 dw_die_ref type_die
;
12278 unsigned int dbx_regnum
;
12282 if (REGNO (rtl
) > FIRST_PSEUDO_REGISTER
)
12284 type_die
= base_type_for_mode (mode
,
12285 GET_MODE_CLASS (mode
) == MODE_INT
);
12286 if (type_die
== NULL
)
12289 dbx_regnum
= dbx_reg_number (rtl
);
12290 if (dbx_regnum
== IGNORED_DWARF_REGNUM
)
12292 mem_loc_result
= new_loc_descr (DW_OP_GNU_regval_type
,
12294 mem_loc_result
->dw_loc_oprnd2
.val_class
= dw_val_class_die_ref
;
12295 mem_loc_result
->dw_loc_oprnd2
.v
.val_die_ref
.die
= type_die
;
12296 mem_loc_result
->dw_loc_oprnd2
.v
.val_die_ref
.external
= 0;
12299 /* Whenever a register number forms a part of the description of the
12300 method for calculating the (dynamic) address of a memory resident
12301 object, DWARF rules require the register number be referred to as
12302 a "base register". This distinction is not based in any way upon
12303 what category of register the hardware believes the given register
12304 belongs to. This is strictly DWARF terminology we're dealing with
12305 here. Note that in cases where the location of a memory-resident
12306 data object could be expressed as: OP_ADD (OP_BASEREG (basereg),
12307 OP_CONST (0)) the actual DWARF location descriptor that we generate
12308 may just be OP_BASEREG (basereg). This may look deceptively like
12309 the object in question was allocated to a register (rather than in
12310 memory) so DWARF consumers need to be aware of the subtle
12311 distinction between OP_REG and OP_BASEREG. */
12312 if (REGNO (rtl
) < FIRST_PSEUDO_REGISTER
)
12313 mem_loc_result
= based_loc_descr (rtl
, 0, VAR_INIT_STATUS_INITIALIZED
);
12314 else if (stack_realign_drap
12316 && crtl
->args
.internal_arg_pointer
== rtl
12317 && REGNO (crtl
->drap_reg
) < FIRST_PSEUDO_REGISTER
)
12319 /* If RTL is internal_arg_pointer, which has been optimized
12320 out, use DRAP instead. */
12321 mem_loc_result
= based_loc_descr (crtl
->drap_reg
, 0,
12322 VAR_INIT_STATUS_INITIALIZED
);
12328 if (GET_MODE_CLASS (mode
) != MODE_INT
)
12330 op0
= mem_loc_descriptor (XEXP (rtl
, 0), GET_MODE (XEXP (rtl
, 0)),
12331 mem_mode
, VAR_INIT_STATUS_INITIALIZED
);
12334 else if (GET_CODE (rtl
) == ZERO_EXTEND
12335 && GET_MODE_SIZE (mode
) <= DWARF2_ADDR_SIZE
12336 && GET_MODE_BITSIZE (GET_MODE (XEXP (rtl
, 0)))
12337 < HOST_BITS_PER_WIDE_INT
12338 /* If DW_OP_const{1,2,4}u won't be used, it is shorter
12339 to expand zero extend as two shifts instead of
12341 && GET_MODE_SIZE (GET_MODE (XEXP (rtl
, 0))) <= 4)
12343 enum machine_mode imode
= GET_MODE (XEXP (rtl
, 0));
12344 mem_loc_result
= op0
;
12345 add_loc_descr (&mem_loc_result
,
12346 int_loc_descriptor (GET_MODE_MASK (imode
)));
12347 add_loc_descr (&mem_loc_result
, new_loc_descr (DW_OP_and
, 0, 0));
12349 else if (GET_MODE_SIZE (mode
) <= DWARF2_ADDR_SIZE
)
12351 int shift
= DWARF2_ADDR_SIZE
12352 - GET_MODE_SIZE (GET_MODE (XEXP (rtl
, 0)));
12353 shift
*= BITS_PER_UNIT
;
12354 if (GET_CODE (rtl
) == SIGN_EXTEND
)
12358 mem_loc_result
= op0
;
12359 add_loc_descr (&mem_loc_result
, int_loc_descriptor (shift
));
12360 add_loc_descr (&mem_loc_result
, new_loc_descr (DW_OP_shl
, 0, 0));
12361 add_loc_descr (&mem_loc_result
, int_loc_descriptor (shift
));
12362 add_loc_descr (&mem_loc_result
, new_loc_descr (op
, 0, 0));
12364 else if (!dwarf_strict
)
12366 dw_die_ref type_die1
, type_die2
;
12367 dw_loc_descr_ref cvt
;
12369 type_die1
= base_type_for_mode (GET_MODE (XEXP (rtl
, 0)),
12370 GET_CODE (rtl
) == ZERO_EXTEND
);
12371 if (type_die1
== NULL
)
12373 type_die2
= base_type_for_mode (mode
, 1);
12374 if (type_die2
== NULL
)
12376 mem_loc_result
= op0
;
12377 cvt
= new_loc_descr (DW_OP_GNU_convert
, 0, 0);
12378 cvt
->dw_loc_oprnd1
.val_class
= dw_val_class_die_ref
;
12379 cvt
->dw_loc_oprnd1
.v
.val_die_ref
.die
= type_die1
;
12380 cvt
->dw_loc_oprnd1
.v
.val_die_ref
.external
= 0;
12381 add_loc_descr (&mem_loc_result
, cvt
);
12382 cvt
= new_loc_descr (DW_OP_GNU_convert
, 0, 0);
12383 cvt
->dw_loc_oprnd1
.val_class
= dw_val_class_die_ref
;
12384 cvt
->dw_loc_oprnd1
.v
.val_die_ref
.die
= type_die2
;
12385 cvt
->dw_loc_oprnd1
.v
.val_die_ref
.external
= 0;
12386 add_loc_descr (&mem_loc_result
, cvt
);
12392 rtx new_rtl
= avoid_constant_pool_reference (rtl
);
12393 if (new_rtl
!= rtl
)
12395 mem_loc_result
= mem_loc_descriptor (new_rtl
, mode
, mem_mode
,
12397 if (mem_loc_result
!= NULL
)
12398 return mem_loc_result
;
12401 mem_loc_result
= mem_loc_descriptor (XEXP (rtl
, 0),
12402 get_address_mode (rtl
), mode
,
12403 VAR_INIT_STATUS_INITIALIZED
);
12404 if (mem_loc_result
== NULL
)
12405 mem_loc_result
= tls_mem_loc_descriptor (rtl
);
12406 if (mem_loc_result
!= NULL
)
12408 if (GET_MODE_SIZE (mode
) > DWARF2_ADDR_SIZE
12409 || GET_MODE_CLASS (mode
) != MODE_INT
)
12411 dw_die_ref type_die
;
12412 dw_loc_descr_ref deref
;
12417 = base_type_for_mode (mode
, GET_MODE_CLASS (mode
) == MODE_INT
);
12418 if (type_die
== NULL
)
12420 deref
= new_loc_descr (DW_OP_GNU_deref_type
,
12421 GET_MODE_SIZE (mode
), 0);
12422 deref
->dw_loc_oprnd2
.val_class
= dw_val_class_die_ref
;
12423 deref
->dw_loc_oprnd2
.v
.val_die_ref
.die
= type_die
;
12424 deref
->dw_loc_oprnd2
.v
.val_die_ref
.external
= 0;
12425 add_loc_descr (&mem_loc_result
, deref
);
12427 else if (GET_MODE_SIZE (mode
) == DWARF2_ADDR_SIZE
)
12428 add_loc_descr (&mem_loc_result
, new_loc_descr (DW_OP_deref
, 0, 0));
12430 add_loc_descr (&mem_loc_result
,
12431 new_loc_descr (DW_OP_deref_size
,
12432 GET_MODE_SIZE (mode
), 0));
12437 return mem_loc_descriptor (XEXP (rtl
, 1), mode
, mem_mode
, initialized
);
12440 /* Some ports can transform a symbol ref into a label ref, because
12441 the symbol ref is too far away and has to be dumped into a constant
12445 if (GET_MODE_CLASS (mode
) != MODE_INT
12446 || (GET_MODE_SIZE (mode
) > DWARF2_ADDR_SIZE
12447 #ifdef POINTERS_EXTEND_UNSIGNED
12448 && (mode
!= Pmode
|| mem_mode
== VOIDmode
)
12452 if (GET_CODE (rtl
) == SYMBOL_REF
12453 && SYMBOL_REF_TLS_MODEL (rtl
) != TLS_MODEL_NONE
)
12455 dw_loc_descr_ref temp
;
12457 /* If this is not defined, we have no way to emit the data. */
12458 if (!targetm
.have_tls
|| !targetm
.asm_out
.output_dwarf_dtprel
)
12461 temp
= new_addr_loc_descr (rtl
, dtprel_true
);
12463 mem_loc_result
= new_loc_descr (DW_OP_GNU_push_tls_address
, 0, 0);
12464 add_loc_descr (&mem_loc_result
, temp
);
12469 if (!const_ok_for_output (rtl
))
12473 mem_loc_result
= new_addr_loc_descr (rtl
, dtprel_false
);
12474 vec_safe_push (used_rtx_array
, rtl
);
12480 case DEBUG_IMPLICIT_PTR
:
12481 expansion_failed (NULL_TREE
, rtl
,
12482 "CONCAT/CONCATN/VAR_LOCATION is handled only by loc_descriptor");
12488 if (REG_P (ENTRY_VALUE_EXP (rtl
)))
12490 if (GET_MODE_CLASS (mode
) != MODE_INT
12491 || GET_MODE_SIZE (mode
) > DWARF2_ADDR_SIZE
)
12492 op0
= mem_loc_descriptor (ENTRY_VALUE_EXP (rtl
), mode
,
12493 VOIDmode
, VAR_INIT_STATUS_INITIALIZED
);
12496 unsigned int dbx_regnum
= dbx_reg_number (ENTRY_VALUE_EXP (rtl
));
12497 if (dbx_regnum
== IGNORED_DWARF_REGNUM
)
12499 op0
= one_reg_loc_descriptor (dbx_regnum
,
12500 VAR_INIT_STATUS_INITIALIZED
);
12503 else if (MEM_P (ENTRY_VALUE_EXP (rtl
))
12504 && REG_P (XEXP (ENTRY_VALUE_EXP (rtl
), 0)))
12506 op0
= mem_loc_descriptor (ENTRY_VALUE_EXP (rtl
), mode
,
12507 VOIDmode
, VAR_INIT_STATUS_INITIALIZED
);
12508 if (op0
&& op0
->dw_loc_opc
== DW_OP_fbreg
)
12512 gcc_unreachable ();
12515 mem_loc_result
= new_loc_descr (DW_OP_GNU_entry_value
, 0, 0);
12516 mem_loc_result
->dw_loc_oprnd1
.val_class
= dw_val_class_loc
;
12517 mem_loc_result
->dw_loc_oprnd1
.v
.val_loc
= op0
;
12520 case DEBUG_PARAMETER_REF
:
12521 mem_loc_result
= parameter_ref_descriptor (rtl
);
12525 /* Extract the PLUS expression nested inside and fall into
12526 PLUS code below. */
12527 rtl
= XEXP (rtl
, 1);
12532 /* Turn these into a PLUS expression and fall into the PLUS code
12534 rtl
= gen_rtx_PLUS (mode
, XEXP (rtl
, 0),
12535 gen_int_mode (GET_CODE (rtl
) == PRE_INC
12536 ? GET_MODE_UNIT_SIZE (mem_mode
)
12537 : -GET_MODE_UNIT_SIZE (mem_mode
),
12540 /* ... fall through ... */
12544 if (is_based_loc (rtl
)
12545 && (GET_MODE_SIZE (mode
) <= DWARF2_ADDR_SIZE
12546 || XEXP (rtl
, 0) == arg_pointer_rtx
12547 || XEXP (rtl
, 0) == frame_pointer_rtx
)
12548 && GET_MODE_CLASS (mode
) == MODE_INT
)
12549 mem_loc_result
= based_loc_descr (XEXP (rtl
, 0),
12550 INTVAL (XEXP (rtl
, 1)),
12551 VAR_INIT_STATUS_INITIALIZED
);
12554 mem_loc_result
= mem_loc_descriptor (XEXP (rtl
, 0), mode
, mem_mode
,
12555 VAR_INIT_STATUS_INITIALIZED
);
12556 if (mem_loc_result
== 0)
12559 if (CONST_INT_P (XEXP (rtl
, 1))
12560 && GET_MODE_SIZE (mode
) <= DWARF2_ADDR_SIZE
)
12561 loc_descr_plus_const (&mem_loc_result
, INTVAL (XEXP (rtl
, 1)));
12564 op1
= mem_loc_descriptor (XEXP (rtl
, 1), mode
, mem_mode
,
12565 VAR_INIT_STATUS_INITIALIZED
);
12568 add_loc_descr (&mem_loc_result
, op1
);
12569 add_loc_descr (&mem_loc_result
,
12570 new_loc_descr (DW_OP_plus
, 0, 0));
12575 /* If a pseudo-reg is optimized away, it is possible for it to
12576 be replaced with a MEM containing a multiply or shift. */
12587 && GET_MODE_CLASS (mode
) == MODE_INT
12588 && GET_MODE_SIZE (mode
) > DWARF2_ADDR_SIZE
)
12590 mem_loc_result
= typed_binop (DW_OP_div
, rtl
,
12591 base_type_for_mode (mode
, 0),
12615 if (GET_MODE_CLASS (mode
) != MODE_INT
)
12617 op0
= mem_loc_descriptor (XEXP (rtl
, 0), mode
, mem_mode
,
12618 VAR_INIT_STATUS_INITIALIZED
);
12620 rtx rtlop1
= XEXP (rtl
, 1);
12621 if (GET_MODE (rtlop1
) != VOIDmode
12622 && GET_MODE_BITSIZE (GET_MODE (rtlop1
))
12623 < GET_MODE_BITSIZE (mode
))
12624 rtlop1
= gen_rtx_ZERO_EXTEND (mode
, rtlop1
);
12625 op1
= mem_loc_descriptor (rtlop1
, mode
, mem_mode
,
12626 VAR_INIT_STATUS_INITIALIZED
);
12629 if (op0
== 0 || op1
== 0)
12632 mem_loc_result
= op0
;
12633 add_loc_descr (&mem_loc_result
, op1
);
12634 add_loc_descr (&mem_loc_result
, new_loc_descr (op
, 0, 0));
12650 op0
= mem_loc_descriptor (XEXP (rtl
, 0), mode
, mem_mode
,
12651 VAR_INIT_STATUS_INITIALIZED
);
12652 op1
= mem_loc_descriptor (XEXP (rtl
, 1), mode
, mem_mode
,
12653 VAR_INIT_STATUS_INITIALIZED
);
12655 if (op0
== 0 || op1
== 0)
12658 mem_loc_result
= op0
;
12659 add_loc_descr (&mem_loc_result
, op1
);
12660 add_loc_descr (&mem_loc_result
, new_loc_descr (op
, 0, 0));
12664 if (GET_MODE_SIZE (mode
) > DWARF2_ADDR_SIZE
&& !dwarf_strict
)
12666 mem_loc_result
= typed_binop (DW_OP_mod
, rtl
,
12667 base_type_for_mode (mode
, 0),
12672 op0
= mem_loc_descriptor (XEXP (rtl
, 0), mode
, mem_mode
,
12673 VAR_INIT_STATUS_INITIALIZED
);
12674 op1
= mem_loc_descriptor (XEXP (rtl
, 1), mode
, mem_mode
,
12675 VAR_INIT_STATUS_INITIALIZED
);
12677 if (op0
== 0 || op1
== 0)
12680 mem_loc_result
= op0
;
12681 add_loc_descr (&mem_loc_result
, op1
);
12682 add_loc_descr (&mem_loc_result
, new_loc_descr (DW_OP_over
, 0, 0));
12683 add_loc_descr (&mem_loc_result
, new_loc_descr (DW_OP_over
, 0, 0));
12684 add_loc_descr (&mem_loc_result
, new_loc_descr (DW_OP_div
, 0, 0));
12685 add_loc_descr (&mem_loc_result
, new_loc_descr (DW_OP_mul
, 0, 0));
12686 add_loc_descr (&mem_loc_result
, new_loc_descr (DW_OP_minus
, 0, 0));
12690 if (!dwarf_strict
&& GET_MODE_CLASS (mode
) == MODE_INT
)
12692 if (GET_MODE_CLASS (mode
) > DWARF2_ADDR_SIZE
)
12697 mem_loc_result
= typed_binop (DW_OP_div
, rtl
,
12698 base_type_for_mode (mode
, 1),
12716 op0
= mem_loc_descriptor (XEXP (rtl
, 0), mode
, mem_mode
,
12717 VAR_INIT_STATUS_INITIALIZED
);
12722 mem_loc_result
= op0
;
12723 add_loc_descr (&mem_loc_result
, new_loc_descr (op
, 0, 0));
12727 if (GET_MODE_SIZE (mode
) <= DWARF2_ADDR_SIZE
12728 #ifdef POINTERS_EXTEND_UNSIGNED
12730 && mem_mode
!= VOIDmode
12731 && trunc_int_for_mode (INTVAL (rtl
), ptr_mode
) == INTVAL (rtl
))
12735 mem_loc_result
= int_loc_descriptor (INTVAL (rtl
));
12739 && (GET_MODE_BITSIZE (mode
) == HOST_BITS_PER_WIDE_INT
12740 || GET_MODE_BITSIZE (mode
) == HOST_BITS_PER_DOUBLE_INT
))
12742 dw_die_ref type_die
= base_type_for_mode (mode
, 1);
12743 enum machine_mode amode
;
12744 if (type_die
== NULL
)
12746 amode
= mode_for_size (DWARF2_ADDR_SIZE
* BITS_PER_UNIT
,
12748 if (INTVAL (rtl
) >= 0
12749 && amode
!= BLKmode
12750 && trunc_int_for_mode (INTVAL (rtl
), amode
) == INTVAL (rtl
)
12751 /* const DW_OP_GNU_convert <XXX> vs.
12752 DW_OP_GNU_const_type <XXX, 1, const>. */
12753 && size_of_int_loc_descriptor (INTVAL (rtl
)) + 1 + 1
12754 < (unsigned long) 1 + 1 + 1 + GET_MODE_SIZE (mode
))
12756 mem_loc_result
= int_loc_descriptor (INTVAL (rtl
));
12757 op0
= new_loc_descr (DW_OP_GNU_convert
, 0, 0);
12758 op0
->dw_loc_oprnd1
.val_class
= dw_val_class_die_ref
;
12759 op0
->dw_loc_oprnd1
.v
.val_die_ref
.die
= type_die
;
12760 op0
->dw_loc_oprnd1
.v
.val_die_ref
.external
= 0;
12761 add_loc_descr (&mem_loc_result
, op0
);
12762 return mem_loc_result
;
12764 mem_loc_result
= new_loc_descr (DW_OP_GNU_const_type
, 0,
12766 mem_loc_result
->dw_loc_oprnd1
.val_class
= dw_val_class_die_ref
;
12767 mem_loc_result
->dw_loc_oprnd1
.v
.val_die_ref
.die
= type_die
;
12768 mem_loc_result
->dw_loc_oprnd1
.v
.val_die_ref
.external
= 0;
12769 if (GET_MODE_BITSIZE (mode
) == HOST_BITS_PER_WIDE_INT
)
12770 mem_loc_result
->dw_loc_oprnd2
.val_class
= dw_val_class_const
;
12773 mem_loc_result
->dw_loc_oprnd2
.val_class
12774 = dw_val_class_const_double
;
12775 mem_loc_result
->dw_loc_oprnd2
.v
.val_double
12776 = double_int::from_shwi (INTVAL (rtl
));
12784 dw_die_ref type_die
;
12786 /* Note that a CONST_DOUBLE rtx could represent either an integer
12787 or a floating-point constant. A CONST_DOUBLE is used whenever
12788 the constant requires more than one word in order to be
12789 adequately represented. We output CONST_DOUBLEs as blocks. */
12790 if (mode
== VOIDmode
12791 || (GET_MODE (rtl
) == VOIDmode
12792 && GET_MODE_BITSIZE (mode
) != HOST_BITS_PER_DOUBLE_INT
))
12794 type_die
= base_type_for_mode (mode
,
12795 GET_MODE_CLASS (mode
) == MODE_INT
);
12796 if (type_die
== NULL
)
12798 mem_loc_result
= new_loc_descr (DW_OP_GNU_const_type
, 0, 0);
12799 mem_loc_result
->dw_loc_oprnd1
.val_class
= dw_val_class_die_ref
;
12800 mem_loc_result
->dw_loc_oprnd1
.v
.val_die_ref
.die
= type_die
;
12801 mem_loc_result
->dw_loc_oprnd1
.v
.val_die_ref
.external
= 0;
12802 if (SCALAR_FLOAT_MODE_P (mode
))
12804 unsigned int length
= GET_MODE_SIZE (mode
);
12805 unsigned char *array
12806 = (unsigned char*) ggc_alloc_atomic (length
);
12808 insert_float (rtl
, array
);
12809 mem_loc_result
->dw_loc_oprnd2
.val_class
= dw_val_class_vec
;
12810 mem_loc_result
->dw_loc_oprnd2
.v
.val_vec
.length
= length
/ 4;
12811 mem_loc_result
->dw_loc_oprnd2
.v
.val_vec
.elt_size
= 4;
12812 mem_loc_result
->dw_loc_oprnd2
.v
.val_vec
.array
= array
;
12816 mem_loc_result
->dw_loc_oprnd2
.val_class
12817 = dw_val_class_const_double
;
12818 mem_loc_result
->dw_loc_oprnd2
.v
.val_double
12819 = rtx_to_double_int (rtl
);
12825 mem_loc_result
= scompare_loc_descriptor (DW_OP_eq
, rtl
, mem_mode
);
12829 mem_loc_result
= scompare_loc_descriptor (DW_OP_ge
, rtl
, mem_mode
);
12833 mem_loc_result
= scompare_loc_descriptor (DW_OP_gt
, rtl
, mem_mode
);
12837 mem_loc_result
= scompare_loc_descriptor (DW_OP_le
, rtl
, mem_mode
);
12841 mem_loc_result
= scompare_loc_descriptor (DW_OP_lt
, rtl
, mem_mode
);
12845 mem_loc_result
= scompare_loc_descriptor (DW_OP_ne
, rtl
, mem_mode
);
12849 mem_loc_result
= ucompare_loc_descriptor (DW_OP_ge
, rtl
, mem_mode
);
12853 mem_loc_result
= ucompare_loc_descriptor (DW_OP_gt
, rtl
, mem_mode
);
12857 mem_loc_result
= ucompare_loc_descriptor (DW_OP_le
, rtl
, mem_mode
);
12861 mem_loc_result
= ucompare_loc_descriptor (DW_OP_lt
, rtl
, mem_mode
);
12866 if (GET_MODE_CLASS (mode
) != MODE_INT
)
12871 mem_loc_result
= minmax_loc_descriptor (rtl
, mode
, mem_mode
);
12876 if (CONST_INT_P (XEXP (rtl
, 1))
12877 && CONST_INT_P (XEXP (rtl
, 2))
12878 && ((unsigned) INTVAL (XEXP (rtl
, 1))
12879 + (unsigned) INTVAL (XEXP (rtl
, 2))
12880 <= GET_MODE_BITSIZE (mode
))
12881 && GET_MODE_CLASS (mode
) == MODE_INT
12882 && GET_MODE_SIZE (mode
) <= DWARF2_ADDR_SIZE
12883 && GET_MODE_SIZE (GET_MODE (XEXP (rtl
, 0))) <= DWARF2_ADDR_SIZE
)
12886 op0
= mem_loc_descriptor (XEXP (rtl
, 0), GET_MODE (XEXP (rtl
, 0)),
12887 mem_mode
, VAR_INIT_STATUS_INITIALIZED
);
12890 if (GET_CODE (rtl
) == SIGN_EXTRACT
)
12894 mem_loc_result
= op0
;
12895 size
= INTVAL (XEXP (rtl
, 1));
12896 shift
= INTVAL (XEXP (rtl
, 2));
12897 if (BITS_BIG_ENDIAN
)
12898 shift
= GET_MODE_BITSIZE (GET_MODE (XEXP (rtl
, 0)))
12900 if (shift
+ size
!= (int) DWARF2_ADDR_SIZE
)
12902 add_loc_descr (&mem_loc_result
,
12903 int_loc_descriptor (DWARF2_ADDR_SIZE
12905 add_loc_descr (&mem_loc_result
, new_loc_descr (DW_OP_shl
, 0, 0));
12907 if (size
!= (int) DWARF2_ADDR_SIZE
)
12909 add_loc_descr (&mem_loc_result
,
12910 int_loc_descriptor (DWARF2_ADDR_SIZE
- size
));
12911 add_loc_descr (&mem_loc_result
, new_loc_descr (op
, 0, 0));
12918 dw_loc_descr_ref op2
, bra_node
, drop_node
;
12919 op0
= mem_loc_descriptor (XEXP (rtl
, 0),
12920 GET_MODE (XEXP (rtl
, 0)) == VOIDmode
12921 ? word_mode
: GET_MODE (XEXP (rtl
, 0)),
12922 mem_mode
, VAR_INIT_STATUS_INITIALIZED
);
12923 op1
= mem_loc_descriptor (XEXP (rtl
, 1), mode
, mem_mode
,
12924 VAR_INIT_STATUS_INITIALIZED
);
12925 op2
= mem_loc_descriptor (XEXP (rtl
, 2), mode
, mem_mode
,
12926 VAR_INIT_STATUS_INITIALIZED
);
12927 if (op0
== NULL
|| op1
== NULL
|| op2
== NULL
)
12930 mem_loc_result
= op1
;
12931 add_loc_descr (&mem_loc_result
, op2
);
12932 add_loc_descr (&mem_loc_result
, op0
);
12933 bra_node
= new_loc_descr (DW_OP_bra
, 0, 0);
12934 add_loc_descr (&mem_loc_result
, bra_node
);
12935 add_loc_descr (&mem_loc_result
, new_loc_descr (DW_OP_swap
, 0, 0));
12936 drop_node
= new_loc_descr (DW_OP_drop
, 0, 0);
12937 add_loc_descr (&mem_loc_result
, drop_node
);
12938 bra_node
->dw_loc_oprnd1
.val_class
= dw_val_class_loc
;
12939 bra_node
->dw_loc_oprnd1
.v
.val_loc
= drop_node
;
12944 case FLOAT_TRUNCATE
:
12946 case UNSIGNED_FLOAT
:
12951 dw_die_ref type_die
;
12952 dw_loc_descr_ref cvt
;
12954 op0
= mem_loc_descriptor (XEXP (rtl
, 0), GET_MODE (XEXP (rtl
, 0)),
12955 mem_mode
, VAR_INIT_STATUS_INITIALIZED
);
12958 if (GET_MODE_CLASS (GET_MODE (XEXP (rtl
, 0))) == MODE_INT
12959 && (GET_CODE (rtl
) == FLOAT
12960 || GET_MODE_SIZE (GET_MODE (XEXP (rtl
, 0)))
12961 <= DWARF2_ADDR_SIZE
))
12963 type_die
= base_type_for_mode (GET_MODE (XEXP (rtl
, 0)),
12964 GET_CODE (rtl
) == UNSIGNED_FLOAT
);
12965 if (type_die
== NULL
)
12967 cvt
= new_loc_descr (DW_OP_GNU_convert
, 0, 0);
12968 cvt
->dw_loc_oprnd1
.val_class
= dw_val_class_die_ref
;
12969 cvt
->dw_loc_oprnd1
.v
.val_die_ref
.die
= type_die
;
12970 cvt
->dw_loc_oprnd1
.v
.val_die_ref
.external
= 0;
12971 add_loc_descr (&op0
, cvt
);
12973 type_die
= base_type_for_mode (mode
, GET_CODE (rtl
) == UNSIGNED_FIX
);
12974 if (type_die
== NULL
)
12976 cvt
= new_loc_descr (DW_OP_GNU_convert
, 0, 0);
12977 cvt
->dw_loc_oprnd1
.val_class
= dw_val_class_die_ref
;
12978 cvt
->dw_loc_oprnd1
.v
.val_die_ref
.die
= type_die
;
12979 cvt
->dw_loc_oprnd1
.v
.val_die_ref
.external
= 0;
12980 add_loc_descr (&op0
, cvt
);
12981 if (GET_MODE_CLASS (mode
) == MODE_INT
12982 && (GET_CODE (rtl
) == FIX
12983 || GET_MODE_SIZE (mode
) < DWARF2_ADDR_SIZE
))
12985 op0
= convert_descriptor_to_mode (mode
, op0
);
12989 mem_loc_result
= op0
;
12996 mem_loc_result
= clz_loc_descriptor (rtl
, mode
, mem_mode
);
13001 mem_loc_result
= popcount_loc_descriptor (rtl
, mode
, mem_mode
);
13005 mem_loc_result
= bswap_loc_descriptor (rtl
, mode
, mem_mode
);
13010 mem_loc_result
= rotate_loc_descriptor (rtl
, mode
, mem_mode
);
13014 /* In theory, we could implement the above. */
13015 /* DWARF cannot represent the unsigned compare operations
13040 case FRACT_CONVERT
:
13041 case UNSIGNED_FRACT_CONVERT
:
13043 case UNSIGNED_SAT_FRACT
:
13049 case VEC_DUPLICATE
:
13053 case STRICT_LOW_PART
:
13058 /* If delegitimize_address couldn't do anything with the UNSPEC, we
13059 can't express it in the debug info. This can happen e.g. with some
13064 resolve_one_addr (&rtl
, NULL
);
13068 #ifdef ENABLE_CHECKING
13069 print_rtl (stderr
, rtl
);
13070 gcc_unreachable ();
13076 if (mem_loc_result
&& initialized
== VAR_INIT_STATUS_UNINITIALIZED
)
13077 add_loc_descr (&mem_loc_result
, new_loc_descr (DW_OP_GNU_uninit
, 0, 0));
13079 return mem_loc_result
;
13082 /* Return a descriptor that describes the concatenation of two locations.
13083 This is typically a complex variable. */
13085 static dw_loc_descr_ref
13086 concat_loc_descriptor (rtx x0
, rtx x1
, enum var_init_status initialized
)
13088 dw_loc_descr_ref cc_loc_result
= NULL
;
13089 dw_loc_descr_ref x0_ref
13090 = loc_descriptor (x0
, VOIDmode
, VAR_INIT_STATUS_INITIALIZED
);
13091 dw_loc_descr_ref x1_ref
13092 = loc_descriptor (x1
, VOIDmode
, VAR_INIT_STATUS_INITIALIZED
);
13094 if (x0_ref
== 0 || x1_ref
== 0)
13097 cc_loc_result
= x0_ref
;
13098 add_loc_descr_op_piece (&cc_loc_result
, GET_MODE_SIZE (GET_MODE (x0
)));
13100 add_loc_descr (&cc_loc_result
, x1_ref
);
13101 add_loc_descr_op_piece (&cc_loc_result
, GET_MODE_SIZE (GET_MODE (x1
)));
13103 if (initialized
== VAR_INIT_STATUS_UNINITIALIZED
)
13104 add_loc_descr (&cc_loc_result
, new_loc_descr (DW_OP_GNU_uninit
, 0, 0));
13106 return cc_loc_result
;
13109 /* Return a descriptor that describes the concatenation of N
13112 static dw_loc_descr_ref
13113 concatn_loc_descriptor (rtx concatn
, enum var_init_status initialized
)
13116 dw_loc_descr_ref cc_loc_result
= NULL
;
13117 unsigned int n
= XVECLEN (concatn
, 0);
13119 for (i
= 0; i
< n
; ++i
)
13121 dw_loc_descr_ref ref
;
13122 rtx x
= XVECEXP (concatn
, 0, i
);
13124 ref
= loc_descriptor (x
, VOIDmode
, VAR_INIT_STATUS_INITIALIZED
);
13128 add_loc_descr (&cc_loc_result
, ref
);
13129 add_loc_descr_op_piece (&cc_loc_result
, GET_MODE_SIZE (GET_MODE (x
)));
13132 if (cc_loc_result
&& initialized
== VAR_INIT_STATUS_UNINITIALIZED
)
13133 add_loc_descr (&cc_loc_result
, new_loc_descr (DW_OP_GNU_uninit
, 0, 0));
13135 return cc_loc_result
;
13138 /* Helper function for loc_descriptor. Return DW_OP_GNU_implicit_pointer
13139 for DEBUG_IMPLICIT_PTR RTL. */
13141 static dw_loc_descr_ref
13142 implicit_ptr_descriptor (rtx rtl
, HOST_WIDE_INT offset
)
13144 dw_loc_descr_ref ret
;
13149 gcc_assert (TREE_CODE (DEBUG_IMPLICIT_PTR_DECL (rtl
)) == VAR_DECL
13150 || TREE_CODE (DEBUG_IMPLICIT_PTR_DECL (rtl
)) == PARM_DECL
13151 || TREE_CODE (DEBUG_IMPLICIT_PTR_DECL (rtl
)) == RESULT_DECL
);
13152 ref
= lookup_decl_die (DEBUG_IMPLICIT_PTR_DECL (rtl
));
13153 ret
= new_loc_descr (DW_OP_GNU_implicit_pointer
, 0, offset
);
13154 ret
->dw_loc_oprnd2
.val_class
= dw_val_class_const
;
13157 ret
->dw_loc_oprnd1
.val_class
= dw_val_class_die_ref
;
13158 ret
->dw_loc_oprnd1
.v
.val_die_ref
.die
= ref
;
13159 ret
->dw_loc_oprnd1
.v
.val_die_ref
.external
= 0;
13163 ret
->dw_loc_oprnd1
.val_class
= dw_val_class_decl_ref
;
13164 ret
->dw_loc_oprnd1
.v
.val_decl_ref
= DEBUG_IMPLICIT_PTR_DECL (rtl
);
13169 /* Output a proper Dwarf location descriptor for a variable or parameter
13170 which is either allocated in a register or in a memory location. For a
13171 register, we just generate an OP_REG and the register number. For a
13172 memory location we provide a Dwarf postfix expression describing how to
13173 generate the (dynamic) address of the object onto the address stack.
13175 MODE is mode of the decl if this loc_descriptor is going to be used in
13176 .debug_loc section where DW_OP_stack_value and DW_OP_implicit_value are
13177 allowed, VOIDmode otherwise.
13179 If we don't know how to describe it, return 0. */
13181 static dw_loc_descr_ref
13182 loc_descriptor (rtx rtl
, enum machine_mode mode
,
13183 enum var_init_status initialized
)
13185 dw_loc_descr_ref loc_result
= NULL
;
13187 switch (GET_CODE (rtl
))
13190 /* The case of a subreg may arise when we have a local (register)
13191 variable or a formal (register) parameter which doesn't quite fill
13192 up an entire register. For now, just assume that it is
13193 legitimate to make the Dwarf info refer to the whole register which
13194 contains the given subreg. */
13195 if (REG_P (SUBREG_REG (rtl
)) && subreg_lowpart_p (rtl
))
13196 loc_result
= loc_descriptor (SUBREG_REG (rtl
),
13197 GET_MODE (SUBREG_REG (rtl
)), initialized
);
13203 loc_result
= reg_loc_descriptor (rtl
, initialized
);
13207 loc_result
= mem_loc_descriptor (XEXP (rtl
, 0), get_address_mode (rtl
),
13208 GET_MODE (rtl
), initialized
);
13209 if (loc_result
== NULL
)
13210 loc_result
= tls_mem_loc_descriptor (rtl
);
13211 if (loc_result
== NULL
)
13213 rtx new_rtl
= avoid_constant_pool_reference (rtl
);
13214 if (new_rtl
!= rtl
)
13215 loc_result
= loc_descriptor (new_rtl
, mode
, initialized
);
13220 loc_result
= concat_loc_descriptor (XEXP (rtl
, 0), XEXP (rtl
, 1),
13225 loc_result
= concatn_loc_descriptor (rtl
, initialized
);
13230 if (GET_CODE (PAT_VAR_LOCATION_LOC (rtl
)) != PARALLEL
)
13232 rtx loc
= PAT_VAR_LOCATION_LOC (rtl
);
13233 if (GET_CODE (loc
) == EXPR_LIST
)
13234 loc
= XEXP (loc
, 0);
13235 loc_result
= loc_descriptor (loc
, mode
, initialized
);
13239 rtl
= XEXP (rtl
, 1);
13244 rtvec par_elems
= XVEC (rtl
, 0);
13245 int num_elem
= GET_NUM_ELEM (par_elems
);
13246 enum machine_mode mode
;
13249 /* Create the first one, so we have something to add to. */
13250 loc_result
= loc_descriptor (XEXP (RTVEC_ELT (par_elems
, 0), 0),
13251 VOIDmode
, initialized
);
13252 if (loc_result
== NULL
)
13254 mode
= GET_MODE (XEXP (RTVEC_ELT (par_elems
, 0), 0));
13255 add_loc_descr_op_piece (&loc_result
, GET_MODE_SIZE (mode
));
13256 for (i
= 1; i
< num_elem
; i
++)
13258 dw_loc_descr_ref temp
;
13260 temp
= loc_descriptor (XEXP (RTVEC_ELT (par_elems
, i
), 0),
13261 VOIDmode
, initialized
);
13264 add_loc_descr (&loc_result
, temp
);
13265 mode
= GET_MODE (XEXP (RTVEC_ELT (par_elems
, i
), 0));
13266 add_loc_descr_op_piece (&loc_result
, GET_MODE_SIZE (mode
));
13272 if (mode
!= VOIDmode
&& mode
!= BLKmode
)
13273 loc_result
= address_of_int_loc_descriptor (GET_MODE_SIZE (mode
),
13278 if (mode
== VOIDmode
)
13279 mode
= GET_MODE (rtl
);
13281 if (mode
!= VOIDmode
&& (dwarf_version
>= 4 || !dwarf_strict
))
13283 gcc_assert (mode
== GET_MODE (rtl
) || VOIDmode
== GET_MODE (rtl
));
13285 /* Note that a CONST_DOUBLE rtx could represent either an integer
13286 or a floating-point constant. A CONST_DOUBLE is used whenever
13287 the constant requires more than one word in order to be
13288 adequately represented. We output CONST_DOUBLEs as blocks. */
13289 loc_result
= new_loc_descr (DW_OP_implicit_value
,
13290 GET_MODE_SIZE (mode
), 0);
13291 if (SCALAR_FLOAT_MODE_P (mode
))
13293 unsigned int length
= GET_MODE_SIZE (mode
);
13294 unsigned char *array
13295 = (unsigned char*) ggc_alloc_atomic (length
);
13297 insert_float (rtl
, array
);
13298 loc_result
->dw_loc_oprnd2
.val_class
= dw_val_class_vec
;
13299 loc_result
->dw_loc_oprnd2
.v
.val_vec
.length
= length
/ 4;
13300 loc_result
->dw_loc_oprnd2
.v
.val_vec
.elt_size
= 4;
13301 loc_result
->dw_loc_oprnd2
.v
.val_vec
.array
= array
;
13305 loc_result
->dw_loc_oprnd2
.val_class
= dw_val_class_const_double
;
13306 loc_result
->dw_loc_oprnd2
.v
.val_double
13307 = rtx_to_double_int (rtl
);
13313 if (mode
== VOIDmode
)
13314 mode
= GET_MODE (rtl
);
13316 if (mode
!= VOIDmode
&& (dwarf_version
>= 4 || !dwarf_strict
))
13318 unsigned int elt_size
= GET_MODE_UNIT_SIZE (GET_MODE (rtl
));
13319 unsigned int length
= CONST_VECTOR_NUNITS (rtl
);
13320 unsigned char *array
= (unsigned char *)
13321 ggc_alloc_atomic (length
* elt_size
);
13325 gcc_assert (mode
== GET_MODE (rtl
) || VOIDmode
== GET_MODE (rtl
));
13326 switch (GET_MODE_CLASS (mode
))
13328 case MODE_VECTOR_INT
:
13329 for (i
= 0, p
= array
; i
< length
; i
++, p
+= elt_size
)
13331 rtx elt
= CONST_VECTOR_ELT (rtl
, i
);
13332 double_int val
= rtx_to_double_int (elt
);
13334 if (elt_size
<= sizeof (HOST_WIDE_INT
))
13335 insert_int (val
.to_shwi (), elt_size
, p
);
13338 gcc_assert (elt_size
== 2 * sizeof (HOST_WIDE_INT
));
13339 insert_double (val
, p
);
13344 case MODE_VECTOR_FLOAT
:
13345 for (i
= 0, p
= array
; i
< length
; i
++, p
+= elt_size
)
13347 rtx elt
= CONST_VECTOR_ELT (rtl
, i
);
13348 insert_float (elt
, p
);
13353 gcc_unreachable ();
13356 loc_result
= new_loc_descr (DW_OP_implicit_value
,
13357 length
* elt_size
, 0);
13358 loc_result
->dw_loc_oprnd2
.val_class
= dw_val_class_vec
;
13359 loc_result
->dw_loc_oprnd2
.v
.val_vec
.length
= length
;
13360 loc_result
->dw_loc_oprnd2
.v
.val_vec
.elt_size
= elt_size
;
13361 loc_result
->dw_loc_oprnd2
.v
.val_vec
.array
= array
;
13366 if (mode
== VOIDmode
13367 || CONST_SCALAR_INT_P (XEXP (rtl
, 0))
13368 || CONST_DOUBLE_AS_FLOAT_P (XEXP (rtl
, 0))
13369 || GET_CODE (XEXP (rtl
, 0)) == CONST_VECTOR
)
13371 loc_result
= loc_descriptor (XEXP (rtl
, 0), mode
, initialized
);
13376 if (!const_ok_for_output (rtl
))
13379 if (mode
!= VOIDmode
&& GET_MODE_SIZE (mode
) == DWARF2_ADDR_SIZE
13380 && (dwarf_version
>= 4 || !dwarf_strict
))
13382 loc_result
= new_addr_loc_descr (rtl
, dtprel_false
);
13383 add_loc_descr (&loc_result
, new_loc_descr (DW_OP_stack_value
, 0, 0));
13384 vec_safe_push (used_rtx_array
, rtl
);
13388 case DEBUG_IMPLICIT_PTR
:
13389 loc_result
= implicit_ptr_descriptor (rtl
, 0);
13393 if (GET_CODE (XEXP (rtl
, 0)) == DEBUG_IMPLICIT_PTR
13394 && CONST_INT_P (XEXP (rtl
, 1)))
13397 = implicit_ptr_descriptor (XEXP (rtl
, 0), INTVAL (XEXP (rtl
, 1)));
13403 if ((GET_MODE_CLASS (mode
) == MODE_INT
&& GET_MODE (rtl
) == mode
13404 && GET_MODE_SIZE (GET_MODE (rtl
)) <= DWARF2_ADDR_SIZE
13405 && dwarf_version
>= 4)
13406 || (!dwarf_strict
&& mode
!= VOIDmode
&& mode
!= BLKmode
))
13408 /* Value expression. */
13409 loc_result
= mem_loc_descriptor (rtl
, mode
, VOIDmode
, initialized
);
13411 add_loc_descr (&loc_result
,
13412 new_loc_descr (DW_OP_stack_value
, 0, 0));
13420 /* We need to figure out what section we should use as the base for the
13421 address ranges where a given location is valid.
13422 1. If this particular DECL has a section associated with it, use that.
13423 2. If this function has a section associated with it, use that.
13424 3. Otherwise, use the text section.
13425 XXX: If you split a variable across multiple sections, we won't notice. */
13427 static const char *
13428 secname_for_decl (const_tree decl
)
13430 const char *secname
;
13432 if (VAR_OR_FUNCTION_DECL_P (decl
) && DECL_SECTION_NAME (decl
))
13434 tree sectree
= DECL_SECTION_NAME (decl
);
13435 secname
= TREE_STRING_POINTER (sectree
);
13437 else if (current_function_decl
&& DECL_SECTION_NAME (current_function_decl
))
13439 tree sectree
= DECL_SECTION_NAME (current_function_decl
);
13440 secname
= TREE_STRING_POINTER (sectree
);
13442 else if (cfun
&& in_cold_section_p
)
13443 secname
= crtl
->subsections
.cold_section_label
;
13445 secname
= text_section_label
;
13450 /* Return true when DECL_BY_REFERENCE is defined and set for DECL. */
13453 decl_by_reference_p (tree decl
)
13455 return ((TREE_CODE (decl
) == PARM_DECL
|| TREE_CODE (decl
) == RESULT_DECL
13456 || TREE_CODE (decl
) == VAR_DECL
)
13457 && DECL_BY_REFERENCE (decl
));
13460 /* Helper function for dw_loc_list. Compute proper Dwarf location descriptor
13463 static dw_loc_descr_ref
13464 dw_loc_list_1 (tree loc
, rtx varloc
, int want_address
,
13465 enum var_init_status initialized
)
13467 int have_address
= 0;
13468 dw_loc_descr_ref descr
;
13469 enum machine_mode mode
;
13471 if (want_address
!= 2)
13473 gcc_assert (GET_CODE (varloc
) == VAR_LOCATION
);
13475 if (GET_CODE (PAT_VAR_LOCATION_LOC (varloc
)) != PARALLEL
)
13477 varloc
= PAT_VAR_LOCATION_LOC (varloc
);
13478 if (GET_CODE (varloc
) == EXPR_LIST
)
13479 varloc
= XEXP (varloc
, 0);
13480 mode
= GET_MODE (varloc
);
13481 if (MEM_P (varloc
))
13483 rtx addr
= XEXP (varloc
, 0);
13484 descr
= mem_loc_descriptor (addr
, get_address_mode (varloc
),
13485 mode
, initialized
);
13490 rtx x
= avoid_constant_pool_reference (varloc
);
13492 descr
= mem_loc_descriptor (x
, mode
, VOIDmode
,
13497 descr
= mem_loc_descriptor (varloc
, mode
, VOIDmode
, initialized
);
13504 if (GET_CODE (varloc
) == VAR_LOCATION
)
13505 mode
= DECL_MODE (PAT_VAR_LOCATION_DECL (varloc
));
13507 mode
= DECL_MODE (loc
);
13508 descr
= loc_descriptor (varloc
, mode
, initialized
);
13515 if (want_address
== 2 && !have_address
13516 && (dwarf_version
>= 4 || !dwarf_strict
))
13518 if (int_size_in_bytes (TREE_TYPE (loc
)) > DWARF2_ADDR_SIZE
)
13520 expansion_failed (loc
, NULL_RTX
,
13521 "DWARF address size mismatch");
13524 add_loc_descr (&descr
, new_loc_descr (DW_OP_stack_value
, 0, 0));
13527 /* Show if we can't fill the request for an address. */
13528 if (want_address
&& !have_address
)
13530 expansion_failed (loc
, NULL_RTX
,
13531 "Want address and only have value");
13535 /* If we've got an address and don't want one, dereference. */
13536 if (!want_address
&& have_address
)
13538 HOST_WIDE_INT size
= int_size_in_bytes (TREE_TYPE (loc
));
13539 enum dwarf_location_atom op
;
13541 if (size
> DWARF2_ADDR_SIZE
|| size
== -1)
13543 expansion_failed (loc
, NULL_RTX
,
13544 "DWARF address size mismatch");
13547 else if (size
== DWARF2_ADDR_SIZE
)
13550 op
= DW_OP_deref_size
;
13552 add_loc_descr (&descr
, new_loc_descr (op
, size
, 0));
13558 /* Create a DW_OP_piece or DW_OP_bit_piece for bitsize, or return NULL
13559 if it is not possible. */
13561 static dw_loc_descr_ref
13562 new_loc_descr_op_bit_piece (HOST_WIDE_INT bitsize
, HOST_WIDE_INT offset
)
13564 if ((bitsize
% BITS_PER_UNIT
) == 0 && offset
== 0)
13565 return new_loc_descr (DW_OP_piece
, bitsize
/ BITS_PER_UNIT
, 0);
13566 else if (dwarf_version
>= 3 || !dwarf_strict
)
13567 return new_loc_descr (DW_OP_bit_piece
, bitsize
, offset
);
13572 /* Helper function for dw_loc_list. Compute proper Dwarf location descriptor
13573 for VAR_LOC_NOTE for variable DECL that has been optimized by SRA. */
13575 static dw_loc_descr_ref
13576 dw_sra_loc_expr (tree decl
, rtx loc
)
13579 unsigned int padsize
= 0;
13580 dw_loc_descr_ref descr
, *descr_tail
;
13581 unsigned HOST_WIDE_INT decl_size
;
13583 enum var_init_status initialized
;
13585 if (DECL_SIZE (decl
) == NULL
13586 || !tree_fits_uhwi_p (DECL_SIZE (decl
)))
13589 decl_size
= tree_to_uhwi (DECL_SIZE (decl
));
13591 descr_tail
= &descr
;
13593 for (p
= loc
; p
; p
= XEXP (p
, 1))
13595 unsigned int bitsize
= decl_piece_bitsize (p
);
13596 rtx loc_note
= *decl_piece_varloc_ptr (p
);
13597 dw_loc_descr_ref cur_descr
;
13598 dw_loc_descr_ref
*tail
, last
= NULL
;
13599 unsigned int opsize
= 0;
13601 if (loc_note
== NULL_RTX
13602 || NOTE_VAR_LOCATION_LOC (loc_note
) == NULL_RTX
)
13604 padsize
+= bitsize
;
13607 initialized
= NOTE_VAR_LOCATION_STATUS (loc_note
);
13608 varloc
= NOTE_VAR_LOCATION (loc_note
);
13609 cur_descr
= dw_loc_list_1 (decl
, varloc
, 2, initialized
);
13610 if (cur_descr
== NULL
)
13612 padsize
+= bitsize
;
13616 /* Check that cur_descr either doesn't use
13617 DW_OP_*piece operations, or their sum is equal
13618 to bitsize. Otherwise we can't embed it. */
13619 for (tail
= &cur_descr
; *tail
!= NULL
;
13620 tail
= &(*tail
)->dw_loc_next
)
13621 if ((*tail
)->dw_loc_opc
== DW_OP_piece
)
13623 opsize
+= (*tail
)->dw_loc_oprnd1
.v
.val_unsigned
13627 else if ((*tail
)->dw_loc_opc
== DW_OP_bit_piece
)
13629 opsize
+= (*tail
)->dw_loc_oprnd1
.v
.val_unsigned
;
13633 if (last
!= NULL
&& opsize
!= bitsize
)
13635 padsize
+= bitsize
;
13636 /* Discard the current piece of the descriptor and release any
13637 addr_table entries it uses. */
13638 remove_loc_list_addr_table_entries (cur_descr
);
13642 /* If there is a hole, add DW_OP_*piece after empty DWARF
13643 expression, which means that those bits are optimized out. */
13646 if (padsize
> decl_size
)
13648 remove_loc_list_addr_table_entries (cur_descr
);
13649 goto discard_descr
;
13651 decl_size
-= padsize
;
13652 *descr_tail
= new_loc_descr_op_bit_piece (padsize
, 0);
13653 if (*descr_tail
== NULL
)
13655 remove_loc_list_addr_table_entries (cur_descr
);
13656 goto discard_descr
;
13658 descr_tail
= &(*descr_tail
)->dw_loc_next
;
13661 *descr_tail
= cur_descr
;
13663 if (bitsize
> decl_size
)
13664 goto discard_descr
;
13665 decl_size
-= bitsize
;
13668 HOST_WIDE_INT offset
= 0;
13669 if (GET_CODE (varloc
) == VAR_LOCATION
13670 && GET_CODE (PAT_VAR_LOCATION_LOC (varloc
)) != PARALLEL
)
13672 varloc
= PAT_VAR_LOCATION_LOC (varloc
);
13673 if (GET_CODE (varloc
) == EXPR_LIST
)
13674 varloc
= XEXP (varloc
, 0);
13678 if (GET_CODE (varloc
) == CONST
13679 || GET_CODE (varloc
) == SIGN_EXTEND
13680 || GET_CODE (varloc
) == ZERO_EXTEND
)
13681 varloc
= XEXP (varloc
, 0);
13682 else if (GET_CODE (varloc
) == SUBREG
)
13683 varloc
= SUBREG_REG (varloc
);
13688 /* DW_OP_bit_size offset should be zero for register
13689 or implicit location descriptions and empty location
13690 descriptions, but for memory addresses needs big endian
13692 if (MEM_P (varloc
))
13694 unsigned HOST_WIDE_INT memsize
13695 = MEM_SIZE (varloc
) * BITS_PER_UNIT
;
13696 if (memsize
!= bitsize
)
13698 if (BYTES_BIG_ENDIAN
!= WORDS_BIG_ENDIAN
13699 && (memsize
> BITS_PER_WORD
|| bitsize
> BITS_PER_WORD
))
13700 goto discard_descr
;
13701 if (memsize
< bitsize
)
13702 goto discard_descr
;
13703 if (BITS_BIG_ENDIAN
)
13704 offset
= memsize
- bitsize
;
13708 *descr_tail
= new_loc_descr_op_bit_piece (bitsize
, offset
);
13709 if (*descr_tail
== NULL
)
13710 goto discard_descr
;
13711 descr_tail
= &(*descr_tail
)->dw_loc_next
;
13715 /* If there were any non-empty expressions, add padding till the end of
13717 if (descr
!= NULL
&& decl_size
!= 0)
13719 *descr_tail
= new_loc_descr_op_bit_piece (decl_size
, 0);
13720 if (*descr_tail
== NULL
)
13721 goto discard_descr
;
13726 /* Discard the descriptor and release any addr_table entries it uses. */
13727 remove_loc_list_addr_table_entries (descr
);
13731 /* Return the dwarf representation of the location list LOC_LIST of
13732 DECL. WANT_ADDRESS has the same meaning as in loc_list_from_tree
13735 static dw_loc_list_ref
13736 dw_loc_list (var_loc_list
*loc_list
, tree decl
, int want_address
)
13738 const char *endname
, *secname
;
13740 enum var_init_status initialized
;
13741 struct var_loc_node
*node
;
13742 dw_loc_descr_ref descr
;
13743 char label_id
[MAX_ARTIFICIAL_LABEL_BYTES
];
13744 dw_loc_list_ref list
= NULL
;
13745 dw_loc_list_ref
*listp
= &list
;
13747 /* Now that we know what section we are using for a base,
13748 actually construct the list of locations.
13749 The first location information is what is passed to the
13750 function that creates the location list, and the remaining
13751 locations just get added on to that list.
13752 Note that we only know the start address for a location
13753 (IE location changes), so to build the range, we use
13754 the range [current location start, next location start].
13755 This means we have to special case the last node, and generate
13756 a range of [last location start, end of function label]. */
13758 secname
= secname_for_decl (decl
);
13760 for (node
= loc_list
->first
; node
; node
= node
->next
)
13761 if (GET_CODE (node
->loc
) == EXPR_LIST
13762 || NOTE_VAR_LOCATION_LOC (node
->loc
) != NULL_RTX
)
13764 if (GET_CODE (node
->loc
) == EXPR_LIST
)
13766 /* This requires DW_OP_{,bit_}piece, which is not usable
13767 inside DWARF expressions. */
13768 if (want_address
!= 2)
13770 descr
= dw_sra_loc_expr (decl
, node
->loc
);
13776 initialized
= NOTE_VAR_LOCATION_STATUS (node
->loc
);
13777 varloc
= NOTE_VAR_LOCATION (node
->loc
);
13778 descr
= dw_loc_list_1 (decl
, varloc
, want_address
, initialized
);
13782 bool range_across_switch
= false;
13783 /* If section switch happens in between node->label
13784 and node->next->label (or end of function) and
13785 we can't emit it as a single entry list,
13786 emit two ranges, first one ending at the end
13787 of first partition and second one starting at the
13788 beginning of second partition. */
13789 if (node
== loc_list
->last_before_switch
13790 && (node
!= loc_list
->first
|| loc_list
->first
->next
)
13791 && current_function_decl
)
13793 endname
= cfun
->fde
->dw_fde_end
;
13794 range_across_switch
= true;
13796 /* The variable has a location between NODE->LABEL and
13797 NODE->NEXT->LABEL. */
13798 else if (node
->next
)
13799 endname
= node
->next
->label
;
13800 /* If the variable has a location at the last label
13801 it keeps its location until the end of function. */
13802 else if (!current_function_decl
)
13803 endname
= text_end_label
;
13806 ASM_GENERATE_INTERNAL_LABEL (label_id
, FUNC_END_LABEL
,
13807 current_function_funcdef_no
);
13808 endname
= ggc_strdup (label_id
);
13811 *listp
= new_loc_list (descr
, node
->label
, endname
, secname
);
13812 if (TREE_CODE (decl
) == PARM_DECL
13813 && node
== loc_list
->first
13814 && NOTE_P (node
->loc
)
13815 && strcmp (node
->label
, endname
) == 0)
13816 (*listp
)->force
= true;
13817 listp
= &(*listp
)->dw_loc_next
;
13819 if (range_across_switch
)
13821 if (GET_CODE (node
->loc
) == EXPR_LIST
)
13822 descr
= dw_sra_loc_expr (decl
, node
->loc
);
13825 initialized
= NOTE_VAR_LOCATION_STATUS (node
->loc
);
13826 varloc
= NOTE_VAR_LOCATION (node
->loc
);
13827 descr
= dw_loc_list_1 (decl
, varloc
, want_address
,
13830 gcc_assert (descr
);
13831 /* The variable has a location between NODE->LABEL and
13832 NODE->NEXT->LABEL. */
13834 endname
= node
->next
->label
;
13836 endname
= cfun
->fde
->dw_fde_second_end
;
13837 *listp
= new_loc_list (descr
,
13838 cfun
->fde
->dw_fde_second_begin
,
13840 listp
= &(*listp
)->dw_loc_next
;
13845 /* Try to avoid the overhead of a location list emitting a location
13846 expression instead, but only if we didn't have more than one
13847 location entry in the first place. If some entries were not
13848 representable, we don't want to pretend a single entry that was
13849 applies to the entire scope in which the variable is
13851 if (list
&& loc_list
->first
->next
)
13857 /* Return if the loc_list has only single element and thus can be represented
13858 as location description. */
13861 single_element_loc_list_p (dw_loc_list_ref list
)
13863 gcc_assert (!list
->dw_loc_next
|| list
->ll_symbol
);
13864 return !list
->ll_symbol
;
13867 /* To each location in list LIST add loc descr REF. */
13870 add_loc_descr_to_each (dw_loc_list_ref list
, dw_loc_descr_ref ref
)
13872 dw_loc_descr_ref copy
;
13873 add_loc_descr (&list
->expr
, ref
);
13874 list
= list
->dw_loc_next
;
13877 copy
= ggc_alloc_dw_loc_descr_node ();
13878 memcpy (copy
, ref
, sizeof (dw_loc_descr_node
));
13879 add_loc_descr (&list
->expr
, copy
);
13880 while (copy
->dw_loc_next
)
13882 dw_loc_descr_ref new_copy
= ggc_alloc_dw_loc_descr_node ();
13883 memcpy (new_copy
, copy
->dw_loc_next
, sizeof (dw_loc_descr_node
));
13884 copy
->dw_loc_next
= new_copy
;
13887 list
= list
->dw_loc_next
;
13891 /* Given two lists RET and LIST
13892 produce location list that is result of adding expression in LIST
13893 to expression in RET on each position in program.
13894 Might be destructive on both RET and LIST.
13896 TODO: We handle only simple cases of RET or LIST having at most one
13897 element. General case would inolve sorting the lists in program order
13898 and merging them that will need some additional work.
13899 Adding that will improve quality of debug info especially for SRA-ed
13903 add_loc_list (dw_loc_list_ref
*ret
, dw_loc_list_ref list
)
13912 if (!list
->dw_loc_next
)
13914 add_loc_descr_to_each (*ret
, list
->expr
);
13917 if (!(*ret
)->dw_loc_next
)
13919 add_loc_descr_to_each (list
, (*ret
)->expr
);
13923 expansion_failed (NULL_TREE
, NULL_RTX
,
13924 "Don't know how to merge two non-trivial"
13925 " location lists.\n");
13930 /* LOC is constant expression. Try a luck, look it up in constant
13931 pool and return its loc_descr of its address. */
13933 static dw_loc_descr_ref
13934 cst_pool_loc_descr (tree loc
)
13936 /* Get an RTL for this, if something has been emitted. */
13937 rtx rtl
= lookup_constant_def (loc
);
13939 if (!rtl
|| !MEM_P (rtl
))
13944 gcc_assert (GET_CODE (XEXP (rtl
, 0)) == SYMBOL_REF
);
13946 /* TODO: We might get more coverage if we was actually delaying expansion
13947 of all expressions till end of compilation when constant pools are fully
13949 if (!TREE_ASM_WRITTEN (SYMBOL_REF_DECL (XEXP (rtl
, 0))))
13951 expansion_failed (loc
, NULL_RTX
,
13952 "CST value in contant pool but not marked.");
13955 return mem_loc_descriptor (XEXP (rtl
, 0), get_address_mode (rtl
),
13956 GET_MODE (rtl
), VAR_INIT_STATUS_INITIALIZED
);
13959 /* Return dw_loc_list representing address of addr_expr LOC
13960 by looking for inner INDIRECT_REF expression and turning
13961 it into simple arithmetics. */
13963 static dw_loc_list_ref
13964 loc_list_for_address_of_addr_expr_of_indirect_ref (tree loc
, bool toplev
)
13967 HOST_WIDE_INT bitsize
, bitpos
, bytepos
;
13968 enum machine_mode mode
;
13969 int unsignedp
, volatilep
= 0;
13970 dw_loc_list_ref list_ret
= NULL
, list_ret1
= NULL
;
13972 obj
= get_inner_reference (TREE_OPERAND (loc
, 0),
13973 &bitsize
, &bitpos
, &offset
, &mode
,
13974 &unsignedp
, &volatilep
, false);
13976 if (bitpos
% BITS_PER_UNIT
)
13978 expansion_failed (loc
, NULL_RTX
, "bitfield access");
13981 if (!INDIRECT_REF_P (obj
))
13983 expansion_failed (obj
,
13984 NULL_RTX
, "no indirect ref in inner refrence");
13987 if (!offset
&& !bitpos
)
13988 list_ret
= loc_list_from_tree (TREE_OPERAND (obj
, 0), toplev
? 2 : 1);
13990 && int_size_in_bytes (TREE_TYPE (loc
)) <= DWARF2_ADDR_SIZE
13991 && (dwarf_version
>= 4 || !dwarf_strict
))
13993 list_ret
= loc_list_from_tree (TREE_OPERAND (obj
, 0), 0);
13998 /* Variable offset. */
13999 list_ret1
= loc_list_from_tree (offset
, 0);
14000 if (list_ret1
== 0)
14002 add_loc_list (&list_ret
, list_ret1
);
14005 add_loc_descr_to_each (list_ret
,
14006 new_loc_descr (DW_OP_plus
, 0, 0));
14008 bytepos
= bitpos
/ BITS_PER_UNIT
;
14010 add_loc_descr_to_each (list_ret
,
14011 new_loc_descr (DW_OP_plus_uconst
,
14013 else if (bytepos
< 0)
14014 loc_list_plus_const (list_ret
, bytepos
);
14015 add_loc_descr_to_each (list_ret
,
14016 new_loc_descr (DW_OP_stack_value
, 0, 0));
14022 /* Generate Dwarf location list representing LOC.
14023 If WANT_ADDRESS is false, expression computing LOC will be computed
14024 If WANT_ADDRESS is 1, expression computing address of LOC will be returned
14025 if WANT_ADDRESS is 2, expression computing address useable in location
14026 will be returned (i.e. DW_OP_reg can be used
14027 to refer to register values). */
14029 static dw_loc_list_ref
14030 loc_list_from_tree (tree loc
, int want_address
)
14032 dw_loc_descr_ref ret
= NULL
, ret1
= NULL
;
14033 dw_loc_list_ref list_ret
= NULL
, list_ret1
= NULL
;
14034 int have_address
= 0;
14035 enum dwarf_location_atom op
;
14037 /* ??? Most of the time we do not take proper care for sign/zero
14038 extending the values properly. Hopefully this won't be a real
14041 switch (TREE_CODE (loc
))
14044 expansion_failed (loc
, NULL_RTX
, "ERROR_MARK");
14047 case PLACEHOLDER_EXPR
:
14048 /* This case involves extracting fields from an object to determine the
14049 position of other fields. We don't try to encode this here. The
14050 only user of this is Ada, which encodes the needed information using
14051 the names of types. */
14052 expansion_failed (loc
, NULL_RTX
, "PLACEHOLDER_EXPR");
14056 expansion_failed (loc
, NULL_RTX
, "CALL_EXPR");
14057 /* There are no opcodes for these operations. */
14060 case PREINCREMENT_EXPR
:
14061 case PREDECREMENT_EXPR
:
14062 case POSTINCREMENT_EXPR
:
14063 case POSTDECREMENT_EXPR
:
14064 expansion_failed (loc
, NULL_RTX
, "PRE/POST INDCREMENT/DECREMENT");
14065 /* There are no opcodes for these operations. */
14069 /* If we already want an address, see if there is INDIRECT_REF inside
14070 e.g. for &this->field. */
14073 list_ret
= loc_list_for_address_of_addr_expr_of_indirect_ref
14074 (loc
, want_address
== 2);
14077 else if (decl_address_ip_invariant_p (TREE_OPERAND (loc
, 0))
14078 && (ret
= cst_pool_loc_descr (loc
)))
14081 /* Otherwise, process the argument and look for the address. */
14082 if (!list_ret
&& !ret
)
14083 list_ret
= loc_list_from_tree (TREE_OPERAND (loc
, 0), 1);
14087 expansion_failed (loc
, NULL_RTX
, "need address of ADDR_EXPR");
14093 if (DECL_THREAD_LOCAL_P (loc
))
14096 enum dwarf_location_atom tls_op
;
14097 enum dtprel_bool dtprel
= dtprel_false
;
14099 if (targetm
.have_tls
)
14101 /* If this is not defined, we have no way to emit the
14103 if (!targetm
.asm_out
.output_dwarf_dtprel
)
14106 /* The way DW_OP_GNU_push_tls_address is specified, we
14107 can only look up addresses of objects in the current
14108 module. We used DW_OP_addr as first op, but that's
14109 wrong, because DW_OP_addr is relocated by the debug
14110 info consumer, while DW_OP_GNU_push_tls_address
14111 operand shouldn't be. */
14112 if (DECL_EXTERNAL (loc
) && !targetm
.binds_local_p (loc
))
14114 dtprel
= dtprel_true
;
14115 tls_op
= DW_OP_GNU_push_tls_address
;
14119 if (!targetm
.emutls
.debug_form_tls_address
14120 || !(dwarf_version
>= 3 || !dwarf_strict
))
14122 /* We stuffed the control variable into the DECL_VALUE_EXPR
14123 to signal (via DECL_HAS_VALUE_EXPR_P) that the decl should
14124 no longer appear in gimple code. We used the control
14125 variable in specific so that we could pick it up here. */
14126 loc
= DECL_VALUE_EXPR (loc
);
14127 tls_op
= DW_OP_form_tls_address
;
14130 rtl
= rtl_for_decl_location (loc
);
14131 if (rtl
== NULL_RTX
)
14136 rtl
= XEXP (rtl
, 0);
14137 if (! CONSTANT_P (rtl
))
14140 ret
= new_addr_loc_descr (rtl
, dtprel
);
14141 ret1
= new_loc_descr (tls_op
, 0, 0);
14142 add_loc_descr (&ret
, ret1
);
14151 if (DECL_HAS_VALUE_EXPR_P (loc
))
14152 return loc_list_from_tree (DECL_VALUE_EXPR (loc
),
14156 case FUNCTION_DECL
:
14159 var_loc_list
*loc_list
= lookup_decl_loc (loc
);
14161 if (loc_list
&& loc_list
->first
)
14163 list_ret
= dw_loc_list (loc_list
, loc
, want_address
);
14164 have_address
= want_address
!= 0;
14167 rtl
= rtl_for_decl_location (loc
);
14168 if (rtl
== NULL_RTX
)
14170 expansion_failed (loc
, NULL_RTX
, "DECL has no RTL");
14173 else if (CONST_INT_P (rtl
))
14175 HOST_WIDE_INT val
= INTVAL (rtl
);
14176 if (TYPE_UNSIGNED (TREE_TYPE (loc
)))
14177 val
&= GET_MODE_MASK (DECL_MODE (loc
));
14178 ret
= int_loc_descriptor (val
);
14180 else if (GET_CODE (rtl
) == CONST_STRING
)
14182 expansion_failed (loc
, NULL_RTX
, "CONST_STRING");
14185 else if (CONSTANT_P (rtl
) && const_ok_for_output (rtl
))
14186 ret
= new_addr_loc_descr (rtl
, dtprel_false
);
14189 enum machine_mode mode
, mem_mode
;
14191 /* Certain constructs can only be represented at top-level. */
14192 if (want_address
== 2)
14194 ret
= loc_descriptor (rtl
, VOIDmode
,
14195 VAR_INIT_STATUS_INITIALIZED
);
14200 mode
= GET_MODE (rtl
);
14201 mem_mode
= VOIDmode
;
14205 mode
= get_address_mode (rtl
);
14206 rtl
= XEXP (rtl
, 0);
14209 ret
= mem_loc_descriptor (rtl
, mode
, mem_mode
,
14210 VAR_INIT_STATUS_INITIALIZED
);
14213 expansion_failed (loc
, rtl
,
14214 "failed to produce loc descriptor for rtl");
14221 if (!integer_zerop (TREE_OPERAND (loc
, 1)))
14225 list_ret
= loc_list_from_tree (TREE_OPERAND (loc
, 0), 0);
14229 case COMPOUND_EXPR
:
14230 return loc_list_from_tree (TREE_OPERAND (loc
, 1), want_address
);
14233 case VIEW_CONVERT_EXPR
:
14236 return loc_list_from_tree (TREE_OPERAND (loc
, 0), want_address
);
14238 case COMPONENT_REF
:
14239 case BIT_FIELD_REF
:
14241 case ARRAY_RANGE_REF
:
14242 case REALPART_EXPR
:
14243 case IMAGPART_EXPR
:
14246 HOST_WIDE_INT bitsize
, bitpos
, bytepos
;
14247 enum machine_mode mode
;
14248 int unsignedp
, volatilep
= 0;
14250 obj
= get_inner_reference (loc
, &bitsize
, &bitpos
, &offset
, &mode
,
14251 &unsignedp
, &volatilep
, false);
14253 gcc_assert (obj
!= loc
);
14255 list_ret
= loc_list_from_tree (obj
,
14257 && !bitpos
&& !offset
? 2 : 1);
14258 /* TODO: We can extract value of the small expression via shifting even
14259 for nonzero bitpos. */
14262 if (bitpos
% BITS_PER_UNIT
!= 0 || bitsize
% BITS_PER_UNIT
!= 0)
14264 expansion_failed (loc
, NULL_RTX
,
14265 "bitfield access");
14269 if (offset
!= NULL_TREE
)
14271 /* Variable offset. */
14272 list_ret1
= loc_list_from_tree (offset
, 0);
14273 if (list_ret1
== 0)
14275 add_loc_list (&list_ret
, list_ret1
);
14278 add_loc_descr_to_each (list_ret
, new_loc_descr (DW_OP_plus
, 0, 0));
14281 bytepos
= bitpos
/ BITS_PER_UNIT
;
14283 add_loc_descr_to_each (list_ret
, new_loc_descr (DW_OP_plus_uconst
, bytepos
, 0));
14284 else if (bytepos
< 0)
14285 loc_list_plus_const (list_ret
, bytepos
);
14292 if ((want_address
|| !tree_fits_shwi_p (loc
))
14293 && (ret
= cst_pool_loc_descr (loc
)))
14295 else if (want_address
== 2
14296 && tree_fits_shwi_p (loc
)
14297 && (ret
= address_of_int_loc_descriptor
14298 (int_size_in_bytes (TREE_TYPE (loc
)),
14299 tree_to_shwi (loc
))))
14301 else if (tree_fits_shwi_p (loc
))
14302 ret
= int_loc_descriptor (tree_to_shwi (loc
));
14305 expansion_failed (loc
, NULL_RTX
,
14306 "Integer operand is not host integer");
14315 if ((ret
= cst_pool_loc_descr (loc
)))
14318 /* We can construct small constants here using int_loc_descriptor. */
14319 expansion_failed (loc
, NULL_RTX
,
14320 "constructor or constant not in constant pool");
14323 case TRUTH_AND_EXPR
:
14324 case TRUTH_ANDIF_EXPR
:
14329 case TRUTH_XOR_EXPR
:
14334 case TRUTH_OR_EXPR
:
14335 case TRUTH_ORIF_EXPR
:
14340 case FLOOR_DIV_EXPR
:
14341 case CEIL_DIV_EXPR
:
14342 case ROUND_DIV_EXPR
:
14343 case TRUNC_DIV_EXPR
:
14344 if (TYPE_UNSIGNED (TREE_TYPE (loc
)))
14353 case FLOOR_MOD_EXPR
:
14354 case CEIL_MOD_EXPR
:
14355 case ROUND_MOD_EXPR
:
14356 case TRUNC_MOD_EXPR
:
14357 if (TYPE_UNSIGNED (TREE_TYPE (loc
)))
14362 list_ret
= loc_list_from_tree (TREE_OPERAND (loc
, 0), 0);
14363 list_ret1
= loc_list_from_tree (TREE_OPERAND (loc
, 1), 0);
14364 if (list_ret
== 0 || list_ret1
== 0)
14367 add_loc_list (&list_ret
, list_ret1
);
14370 add_loc_descr_to_each (list_ret
, new_loc_descr (DW_OP_over
, 0, 0));
14371 add_loc_descr_to_each (list_ret
, new_loc_descr (DW_OP_over
, 0, 0));
14372 add_loc_descr_to_each (list_ret
, new_loc_descr (DW_OP_div
, 0, 0));
14373 add_loc_descr_to_each (list_ret
, new_loc_descr (DW_OP_mul
, 0, 0));
14374 add_loc_descr_to_each (list_ret
, new_loc_descr (DW_OP_minus
, 0, 0));
14386 op
= (TYPE_UNSIGNED (TREE_TYPE (loc
)) ? DW_OP_shr
: DW_OP_shra
);
14389 case POINTER_PLUS_EXPR
:
14391 if (tree_fits_shwi_p (TREE_OPERAND (loc
, 1)))
14393 list_ret
= loc_list_from_tree (TREE_OPERAND (loc
, 0), 0);
14397 loc_list_plus_const (list_ret
, tree_to_shwi (TREE_OPERAND (loc
, 1)));
14405 if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc
, 0))))
14412 if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc
, 0))))
14419 if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc
, 0))))
14426 if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc
, 0))))
14441 list_ret
= loc_list_from_tree (TREE_OPERAND (loc
, 0), 0);
14442 list_ret1
= loc_list_from_tree (TREE_OPERAND (loc
, 1), 0);
14443 if (list_ret
== 0 || list_ret1
== 0)
14446 add_loc_list (&list_ret
, list_ret1
);
14449 add_loc_descr_to_each (list_ret
, new_loc_descr (op
, 0, 0));
14452 case TRUTH_NOT_EXPR
:
14466 list_ret
= loc_list_from_tree (TREE_OPERAND (loc
, 0), 0);
14470 add_loc_descr_to_each (list_ret
, new_loc_descr (op
, 0, 0));
14476 const enum tree_code code
=
14477 TREE_CODE (loc
) == MIN_EXPR
? GT_EXPR
: LT_EXPR
;
14479 loc
= build3 (COND_EXPR
, TREE_TYPE (loc
),
14480 build2 (code
, integer_type_node
,
14481 TREE_OPERAND (loc
, 0), TREE_OPERAND (loc
, 1)),
14482 TREE_OPERAND (loc
, 1), TREE_OPERAND (loc
, 0));
14485 /* ... fall through ... */
14489 dw_loc_descr_ref lhs
14490 = loc_descriptor_from_tree (TREE_OPERAND (loc
, 1), 0);
14491 dw_loc_list_ref rhs
14492 = loc_list_from_tree (TREE_OPERAND (loc
, 2), 0);
14493 dw_loc_descr_ref bra_node
, jump_node
, tmp
;
14495 list_ret
= loc_list_from_tree (TREE_OPERAND (loc
, 0), 0);
14496 if (list_ret
== 0 || lhs
== 0 || rhs
== 0)
14499 bra_node
= new_loc_descr (DW_OP_bra
, 0, 0);
14500 add_loc_descr_to_each (list_ret
, bra_node
);
14502 add_loc_list (&list_ret
, rhs
);
14503 jump_node
= new_loc_descr (DW_OP_skip
, 0, 0);
14504 add_loc_descr_to_each (list_ret
, jump_node
);
14506 add_loc_descr_to_each (list_ret
, lhs
);
14507 bra_node
->dw_loc_oprnd1
.val_class
= dw_val_class_loc
;
14508 bra_node
->dw_loc_oprnd1
.v
.val_loc
= lhs
;
14510 /* ??? Need a node to point the skip at. Use a nop. */
14511 tmp
= new_loc_descr (DW_OP_nop
, 0, 0);
14512 add_loc_descr_to_each (list_ret
, tmp
);
14513 jump_node
->dw_loc_oprnd1
.val_class
= dw_val_class_loc
;
14514 jump_node
->dw_loc_oprnd1
.v
.val_loc
= tmp
;
14518 case FIX_TRUNC_EXPR
:
14522 /* Leave front-end specific codes as simply unknown. This comes
14523 up, for instance, with the C STMT_EXPR. */
14524 if ((unsigned int) TREE_CODE (loc
)
14525 >= (unsigned int) LAST_AND_UNUSED_TREE_CODE
)
14527 expansion_failed (loc
, NULL_RTX
,
14528 "language specific tree node");
14532 #ifdef ENABLE_CHECKING
14533 /* Otherwise this is a generic code; we should just lists all of
14534 these explicitly. We forgot one. */
14535 gcc_unreachable ();
14537 /* In a release build, we want to degrade gracefully: better to
14538 generate incomplete debugging information than to crash. */
14543 if (!ret
&& !list_ret
)
14546 if (want_address
== 2 && !have_address
14547 && (dwarf_version
>= 4 || !dwarf_strict
))
14549 if (int_size_in_bytes (TREE_TYPE (loc
)) > DWARF2_ADDR_SIZE
)
14551 expansion_failed (loc
, NULL_RTX
,
14552 "DWARF address size mismatch");
14556 add_loc_descr (&ret
, new_loc_descr (DW_OP_stack_value
, 0, 0));
14558 add_loc_descr_to_each (list_ret
,
14559 new_loc_descr (DW_OP_stack_value
, 0, 0));
14562 /* Show if we can't fill the request for an address. */
14563 if (want_address
&& !have_address
)
14565 expansion_failed (loc
, NULL_RTX
,
14566 "Want address and only have value");
14570 gcc_assert (!ret
|| !list_ret
);
14572 /* If we've got an address and don't want one, dereference. */
14573 if (!want_address
&& have_address
)
14575 HOST_WIDE_INT size
= int_size_in_bytes (TREE_TYPE (loc
));
14577 if (size
> DWARF2_ADDR_SIZE
|| size
== -1)
14579 expansion_failed (loc
, NULL_RTX
,
14580 "DWARF address size mismatch");
14583 else if (size
== DWARF2_ADDR_SIZE
)
14586 op
= DW_OP_deref_size
;
14589 add_loc_descr (&ret
, new_loc_descr (op
, size
, 0));
14591 add_loc_descr_to_each (list_ret
, new_loc_descr (op
, size
, 0));
14594 list_ret
= new_loc_list (ret
, NULL
, NULL
, NULL
);
14599 /* Same as above but return only single location expression. */
14600 static dw_loc_descr_ref
14601 loc_descriptor_from_tree (tree loc
, int want_address
)
14603 dw_loc_list_ref ret
= loc_list_from_tree (loc
, want_address
);
14606 if (ret
->dw_loc_next
)
14608 expansion_failed (loc
, NULL_RTX
,
14609 "Location list where only loc descriptor needed");
14615 /* Given a value, round it up to the lowest multiple of `boundary'
14616 which is not less than the value itself. */
14618 static inline HOST_WIDE_INT
14619 ceiling (HOST_WIDE_INT value
, unsigned int boundary
)
14621 return (((value
+ boundary
- 1) / boundary
) * boundary
);
14624 /* Given a pointer to what is assumed to be a FIELD_DECL node, return a
14625 pointer to the declared type for the relevant field variable, or return
14626 `integer_type_node' if the given node turns out to be an
14627 ERROR_MARK node. */
14630 field_type (const_tree decl
)
14634 if (TREE_CODE (decl
) == ERROR_MARK
)
14635 return integer_type_node
;
14637 type
= DECL_BIT_FIELD_TYPE (decl
);
14638 if (type
== NULL_TREE
)
14639 type
= TREE_TYPE (decl
);
14644 /* Given a pointer to a tree node, return the alignment in bits for
14645 it, or else return BITS_PER_WORD if the node actually turns out to
14646 be an ERROR_MARK node. */
14648 static inline unsigned
14649 simple_type_align_in_bits (const_tree type
)
14651 return (TREE_CODE (type
) != ERROR_MARK
) ? TYPE_ALIGN (type
) : BITS_PER_WORD
;
14654 static inline unsigned
14655 simple_decl_align_in_bits (const_tree decl
)
14657 return (TREE_CODE (decl
) != ERROR_MARK
) ? DECL_ALIGN (decl
) : BITS_PER_WORD
;
14660 /* Return the result of rounding T up to ALIGN. */
14662 static inline double_int
14663 round_up_to_align (double_int t
, unsigned int align
)
14665 double_int alignd
= double_int::from_uhwi (align
);
14667 t
+= double_int_minus_one
;
14668 t
= t
.div (alignd
, true, TRUNC_DIV_EXPR
);
14673 /* Given a pointer to a FIELD_DECL, compute and return the byte offset of the
14674 lowest addressed byte of the "containing object" for the given FIELD_DECL,
14675 or return 0 if we are unable to determine what that offset is, either
14676 because the argument turns out to be a pointer to an ERROR_MARK node, or
14677 because the offset is actually variable. (We can't handle the latter case
14680 static HOST_WIDE_INT
14681 field_byte_offset (const_tree decl
)
14683 double_int object_offset_in_bits
;
14684 double_int object_offset_in_bytes
;
14685 double_int bitpos_int
;
14687 if (TREE_CODE (decl
) == ERROR_MARK
)
14690 gcc_assert (TREE_CODE (decl
) == FIELD_DECL
);
14692 /* We cannot yet cope with fields whose positions are variable, so
14693 for now, when we see such things, we simply return 0. Someday, we may
14694 be able to handle such cases, but it will be damn difficult. */
14695 if (TREE_CODE (bit_position (decl
)) != INTEGER_CST
)
14698 bitpos_int
= tree_to_double_int (bit_position (decl
));
14700 #ifdef PCC_BITFIELD_TYPE_MATTERS
14701 if (PCC_BITFIELD_TYPE_MATTERS
)
14704 tree field_size_tree
;
14705 double_int deepest_bitpos
;
14706 double_int field_size_in_bits
;
14707 unsigned int type_align_in_bits
;
14708 unsigned int decl_align_in_bits
;
14709 double_int type_size_in_bits
;
14711 type
= field_type (decl
);
14712 type_size_in_bits
= double_int_type_size_in_bits (type
);
14713 type_align_in_bits
= simple_type_align_in_bits (type
);
14715 field_size_tree
= DECL_SIZE (decl
);
14717 /* The size could be unspecified if there was an error, or for
14718 a flexible array member. */
14719 if (!field_size_tree
)
14720 field_size_tree
= bitsize_zero_node
;
14722 /* If the size of the field is not constant, use the type size. */
14723 if (TREE_CODE (field_size_tree
) == INTEGER_CST
)
14724 field_size_in_bits
= tree_to_double_int (field_size_tree
);
14726 field_size_in_bits
= type_size_in_bits
;
14728 decl_align_in_bits
= simple_decl_align_in_bits (decl
);
14730 /* The GCC front-end doesn't make any attempt to keep track of the
14731 starting bit offset (relative to the start of the containing
14732 structure type) of the hypothetical "containing object" for a
14733 bit-field. Thus, when computing the byte offset value for the
14734 start of the "containing object" of a bit-field, we must deduce
14735 this information on our own. This can be rather tricky to do in
14736 some cases. For example, handling the following structure type
14737 definition when compiling for an i386/i486 target (which only
14738 aligns long long's to 32-bit boundaries) can be very tricky:
14740 struct S { int field1; long long field2:31; };
14742 Fortunately, there is a simple rule-of-thumb which can be used
14743 in such cases. When compiling for an i386/i486, GCC will
14744 allocate 8 bytes for the structure shown above. It decides to
14745 do this based upon one simple rule for bit-field allocation.
14746 GCC allocates each "containing object" for each bit-field at
14747 the first (i.e. lowest addressed) legitimate alignment boundary
14748 (based upon the required minimum alignment for the declared
14749 type of the field) which it can possibly use, subject to the
14750 condition that there is still enough available space remaining
14751 in the containing object (when allocated at the selected point)
14752 to fully accommodate all of the bits of the bit-field itself.
14754 This simple rule makes it obvious why GCC allocates 8 bytes for
14755 each object of the structure type shown above. When looking
14756 for a place to allocate the "containing object" for `field2',
14757 the compiler simply tries to allocate a 64-bit "containing
14758 object" at each successive 32-bit boundary (starting at zero)
14759 until it finds a place to allocate that 64- bit field such that
14760 at least 31 contiguous (and previously unallocated) bits remain
14761 within that selected 64 bit field. (As it turns out, for the
14762 example above, the compiler finds it is OK to allocate the
14763 "containing object" 64-bit field at bit-offset zero within the
14766 Here we attempt to work backwards from the limited set of facts
14767 we're given, and we try to deduce from those facts, where GCC
14768 must have believed that the containing object started (within
14769 the structure type). The value we deduce is then used (by the
14770 callers of this routine) to generate DW_AT_location and
14771 DW_AT_bit_offset attributes for fields (both bit-fields and, in
14772 the case of DW_AT_location, regular fields as well). */
14774 /* Figure out the bit-distance from the start of the structure to
14775 the "deepest" bit of the bit-field. */
14776 deepest_bitpos
= bitpos_int
+ field_size_in_bits
;
14778 /* This is the tricky part. Use some fancy footwork to deduce
14779 where the lowest addressed bit of the containing object must
14781 object_offset_in_bits
= deepest_bitpos
- type_size_in_bits
;
14783 /* Round up to type_align by default. This works best for
14785 object_offset_in_bits
14786 = round_up_to_align (object_offset_in_bits
, type_align_in_bits
);
14788 if (object_offset_in_bits
.ugt (bitpos_int
))
14790 object_offset_in_bits
= deepest_bitpos
- type_size_in_bits
;
14792 /* Round up to decl_align instead. */
14793 object_offset_in_bits
14794 = round_up_to_align (object_offset_in_bits
, decl_align_in_bits
);
14798 #endif /* PCC_BITFIELD_TYPE_MATTERS */
14799 object_offset_in_bits
= bitpos_int
;
14801 object_offset_in_bytes
14802 = object_offset_in_bits
.div (double_int::from_uhwi (BITS_PER_UNIT
),
14803 true, TRUNC_DIV_EXPR
);
14804 return object_offset_in_bytes
.to_shwi ();
14807 /* The following routines define various Dwarf attributes and any data
14808 associated with them. */
14810 /* Add a location description attribute value to a DIE.
14812 This emits location attributes suitable for whole variables and
14813 whole parameters. Note that the location attributes for struct fields are
14814 generated by the routine `data_member_location_attribute' below. */
14817 add_AT_location_description (dw_die_ref die
, enum dwarf_attribute attr_kind
,
14818 dw_loc_list_ref descr
)
14822 if (single_element_loc_list_p (descr
))
14823 add_AT_loc (die
, attr_kind
, descr
->expr
);
14825 add_AT_loc_list (die
, attr_kind
, descr
);
14828 /* Add DW_AT_accessibility attribute to DIE if needed. */
14831 add_accessibility_attribute (dw_die_ref die
, tree decl
)
14833 /* In DWARF3+ the default is DW_ACCESS_private only in DW_TAG_class_type
14834 children, otherwise the default is DW_ACCESS_public. In DWARF2
14835 the default has always been DW_ACCESS_public. */
14836 if (TREE_PROTECTED (decl
))
14837 add_AT_unsigned (die
, DW_AT_accessibility
, DW_ACCESS_protected
);
14838 else if (TREE_PRIVATE (decl
))
14840 if (dwarf_version
== 2
14841 || die
->die_parent
== NULL
14842 || die
->die_parent
->die_tag
!= DW_TAG_class_type
)
14843 add_AT_unsigned (die
, DW_AT_accessibility
, DW_ACCESS_private
);
14845 else if (dwarf_version
> 2
14847 && die
->die_parent
->die_tag
== DW_TAG_class_type
)
14848 add_AT_unsigned (die
, DW_AT_accessibility
, DW_ACCESS_public
);
14851 /* Attach the specialized form of location attribute used for data members of
14852 struct and union types. In the special case of a FIELD_DECL node which
14853 represents a bit-field, the "offset" part of this special location
14854 descriptor must indicate the distance in bytes from the lowest-addressed
14855 byte of the containing struct or union type to the lowest-addressed byte of
14856 the "containing object" for the bit-field. (See the `field_byte_offset'
14859 For any given bit-field, the "containing object" is a hypothetical object
14860 (of some integral or enum type) within which the given bit-field lives. The
14861 type of this hypothetical "containing object" is always the same as the
14862 declared type of the individual bit-field itself (for GCC anyway... the
14863 DWARF spec doesn't actually mandate this). Note that it is the size (in
14864 bytes) of the hypothetical "containing object" which will be given in the
14865 DW_AT_byte_size attribute for this bit-field. (See the
14866 `byte_size_attribute' function below.) It is also used when calculating the
14867 value of the DW_AT_bit_offset attribute. (See the `bit_offset_attribute'
14868 function below.) */
14871 add_data_member_location_attribute (dw_die_ref die
, tree decl
)
14873 HOST_WIDE_INT offset
;
14874 dw_loc_descr_ref loc_descr
= 0;
14876 if (TREE_CODE (decl
) == TREE_BINFO
)
14878 /* We're working on the TAG_inheritance for a base class. */
14879 if (BINFO_VIRTUAL_P (decl
) && is_cxx ())
14881 /* For C++ virtual bases we can't just use BINFO_OFFSET, as they
14882 aren't at a fixed offset from all (sub)objects of the same
14883 type. We need to extract the appropriate offset from our
14884 vtable. The following dwarf expression means
14886 BaseAddr = ObAddr + *((*ObAddr) - Offset)
14888 This is specific to the V3 ABI, of course. */
14890 dw_loc_descr_ref tmp
;
14892 /* Make a copy of the object address. */
14893 tmp
= new_loc_descr (DW_OP_dup
, 0, 0);
14894 add_loc_descr (&loc_descr
, tmp
);
14896 /* Extract the vtable address. */
14897 tmp
= new_loc_descr (DW_OP_deref
, 0, 0);
14898 add_loc_descr (&loc_descr
, tmp
);
14900 /* Calculate the address of the offset. */
14901 offset
= tree_to_shwi (BINFO_VPTR_FIELD (decl
));
14902 gcc_assert (offset
< 0);
14904 tmp
= int_loc_descriptor (-offset
);
14905 add_loc_descr (&loc_descr
, tmp
);
14906 tmp
= new_loc_descr (DW_OP_minus
, 0, 0);
14907 add_loc_descr (&loc_descr
, tmp
);
14909 /* Extract the offset. */
14910 tmp
= new_loc_descr (DW_OP_deref
, 0, 0);
14911 add_loc_descr (&loc_descr
, tmp
);
14913 /* Add it to the object address. */
14914 tmp
= new_loc_descr (DW_OP_plus
, 0, 0);
14915 add_loc_descr (&loc_descr
, tmp
);
14918 offset
= tree_to_shwi (BINFO_OFFSET (decl
));
14921 offset
= field_byte_offset (decl
);
14925 if (dwarf_version
> 2)
14927 /* Don't need to output a location expression, just the constant. */
14929 add_AT_int (die
, DW_AT_data_member_location
, offset
);
14931 add_AT_unsigned (die
, DW_AT_data_member_location
, offset
);
14936 enum dwarf_location_atom op
;
14938 /* The DWARF2 standard says that we should assume that the structure
14939 address is already on the stack, so we can specify a structure
14940 field address by using DW_OP_plus_uconst. */
14941 op
= DW_OP_plus_uconst
;
14942 loc_descr
= new_loc_descr (op
, offset
, 0);
14946 add_AT_loc (die
, DW_AT_data_member_location
, loc_descr
);
14949 /* Writes integer values to dw_vec_const array. */
14952 insert_int (HOST_WIDE_INT val
, unsigned int size
, unsigned char *dest
)
14956 *dest
++ = val
& 0xff;
14962 /* Reads integers from dw_vec_const array. Inverse of insert_int. */
14964 static HOST_WIDE_INT
14965 extract_int (const unsigned char *src
, unsigned int size
)
14967 HOST_WIDE_INT val
= 0;
14973 val
|= *--src
& 0xff;
14979 /* Writes double_int values to dw_vec_const array. */
14982 insert_double (double_int val
, unsigned char *dest
)
14984 unsigned char *p0
= dest
;
14985 unsigned char *p1
= dest
+ sizeof (HOST_WIDE_INT
);
14987 if (WORDS_BIG_ENDIAN
)
14993 insert_int ((HOST_WIDE_INT
) val
.low
, sizeof (HOST_WIDE_INT
), p0
);
14994 insert_int ((HOST_WIDE_INT
) val
.high
, sizeof (HOST_WIDE_INT
), p1
);
14997 /* Writes floating point values to dw_vec_const array. */
15000 insert_float (const_rtx rtl
, unsigned char *array
)
15002 REAL_VALUE_TYPE rv
;
15006 REAL_VALUE_FROM_CONST_DOUBLE (rv
, rtl
);
15007 real_to_target (val
, &rv
, GET_MODE (rtl
));
15009 /* real_to_target puts 32-bit pieces in each long. Pack them. */
15010 for (i
= 0; i
< GET_MODE_SIZE (GET_MODE (rtl
)) / 4; i
++)
15012 insert_int (val
[i
], 4, array
);
15017 /* Attach a DW_AT_const_value attribute for a variable or a parameter which
15018 does not have a "location" either in memory or in a register. These
15019 things can arise in GNU C when a constant is passed as an actual parameter
15020 to an inlined function. They can also arise in C++ where declared
15021 constants do not necessarily get memory "homes". */
15024 add_const_value_attribute (dw_die_ref die
, rtx rtl
)
15026 switch (GET_CODE (rtl
))
15030 HOST_WIDE_INT val
= INTVAL (rtl
);
15033 add_AT_int (die
, DW_AT_const_value
, val
);
15035 add_AT_unsigned (die
, DW_AT_const_value
, (unsigned HOST_WIDE_INT
) val
);
15040 /* Note that a CONST_DOUBLE rtx could represent either an integer or a
15041 floating-point constant. A CONST_DOUBLE is used whenever the
15042 constant requires more than one word in order to be adequately
15045 enum machine_mode mode
= GET_MODE (rtl
);
15047 if (SCALAR_FLOAT_MODE_P (mode
))
15049 unsigned int length
= GET_MODE_SIZE (mode
);
15050 unsigned char *array
= (unsigned char *) ggc_alloc_atomic (length
);
15052 insert_float (rtl
, array
);
15053 add_AT_vec (die
, DW_AT_const_value
, length
/ 4, 4, array
);
15056 add_AT_double (die
, DW_AT_const_value
,
15057 CONST_DOUBLE_HIGH (rtl
), CONST_DOUBLE_LOW (rtl
));
15063 enum machine_mode mode
= GET_MODE (rtl
);
15064 unsigned int elt_size
= GET_MODE_UNIT_SIZE (mode
);
15065 unsigned int length
= CONST_VECTOR_NUNITS (rtl
);
15066 unsigned char *array
= (unsigned char *) ggc_alloc_atomic
15067 (length
* elt_size
);
15071 switch (GET_MODE_CLASS (mode
))
15073 case MODE_VECTOR_INT
:
15074 for (i
= 0, p
= array
; i
< length
; i
++, p
+= elt_size
)
15076 rtx elt
= CONST_VECTOR_ELT (rtl
, i
);
15077 double_int val
= rtx_to_double_int (elt
);
15079 if (elt_size
<= sizeof (HOST_WIDE_INT
))
15080 insert_int (val
.to_shwi (), elt_size
, p
);
15083 gcc_assert (elt_size
== 2 * sizeof (HOST_WIDE_INT
));
15084 insert_double (val
, p
);
15089 case MODE_VECTOR_FLOAT
:
15090 for (i
= 0, p
= array
; i
< length
; i
++, p
+= elt_size
)
15092 rtx elt
= CONST_VECTOR_ELT (rtl
, i
);
15093 insert_float (elt
, p
);
15098 gcc_unreachable ();
15101 add_AT_vec (die
, DW_AT_const_value
, length
, elt_size
, array
);
15106 if (dwarf_version
>= 4 || !dwarf_strict
)
15108 dw_loc_descr_ref loc_result
;
15109 resolve_one_addr (&rtl
, NULL
);
15111 loc_result
= new_addr_loc_descr (rtl
, dtprel_false
);
15112 add_loc_descr (&loc_result
, new_loc_descr (DW_OP_stack_value
, 0, 0));
15113 add_AT_loc (die
, DW_AT_location
, loc_result
);
15114 vec_safe_push (used_rtx_array
, rtl
);
15120 if (CONSTANT_P (XEXP (rtl
, 0)))
15121 return add_const_value_attribute (die
, XEXP (rtl
, 0));
15124 if (!const_ok_for_output (rtl
))
15127 if (dwarf_version
>= 4 || !dwarf_strict
)
15132 /* In cases where an inlined instance of an inline function is passed
15133 the address of an `auto' variable (which is local to the caller) we
15134 can get a situation where the DECL_RTL of the artificial local
15135 variable (for the inlining) which acts as a stand-in for the
15136 corresponding formal parameter (of the inline function) will look
15137 like (plus:SI (reg:SI FRAME_PTR) (const_int ...)). This is not
15138 exactly a compile-time constant expression, but it isn't the address
15139 of the (artificial) local variable either. Rather, it represents the
15140 *value* which the artificial local variable always has during its
15141 lifetime. We currently have no way to represent such quasi-constant
15142 values in Dwarf, so for now we just punt and generate nothing. */
15150 if (GET_CODE (XEXP (rtl
, 0)) == CONST_STRING
15151 && MEM_READONLY_P (rtl
)
15152 && GET_MODE (rtl
) == BLKmode
)
15154 add_AT_string (die
, DW_AT_const_value
, XSTR (XEXP (rtl
, 0), 0));
15160 /* No other kinds of rtx should be possible here. */
15161 gcc_unreachable ();
15166 /* Determine whether the evaluation of EXPR references any variables
15167 or functions which aren't otherwise used (and therefore may not be
15170 reference_to_unused (tree
* tp
, int * walk_subtrees
,
15171 void * data ATTRIBUTE_UNUSED
)
15173 if (! EXPR_P (*tp
) && ! CONSTANT_CLASS_P (*tp
))
15174 *walk_subtrees
= 0;
15176 if (DECL_P (*tp
) && ! TREE_PUBLIC (*tp
) && ! TREE_USED (*tp
)
15177 && ! TREE_ASM_WRITTEN (*tp
))
15179 /* ??? The C++ FE emits debug information for using decls, so
15180 putting gcc_unreachable here falls over. See PR31899. For now
15181 be conservative. */
15182 else if (!cgraph_global_info_ready
15183 && (TREE_CODE (*tp
) == VAR_DECL
|| TREE_CODE (*tp
) == FUNCTION_DECL
))
15185 else if (TREE_CODE (*tp
) == VAR_DECL
)
15187 varpool_node
*node
= varpool_get_node (*tp
);
15188 if (!node
|| !node
->definition
)
15191 else if (TREE_CODE (*tp
) == FUNCTION_DECL
15192 && (!DECL_EXTERNAL (*tp
) || DECL_DECLARED_INLINE_P (*tp
)))
15194 /* The call graph machinery must have finished analyzing,
15195 optimizing and gimplifying the CU by now.
15196 So if *TP has no call graph node associated
15197 to it, it means *TP will not be emitted. */
15198 if (!cgraph_get_node (*tp
))
15201 else if (TREE_CODE (*tp
) == STRING_CST
&& !TREE_ASM_WRITTEN (*tp
))
15207 /* Generate an RTL constant from a decl initializer INIT with decl type TYPE,
15208 for use in a later add_const_value_attribute call. */
15211 rtl_for_decl_init (tree init
, tree type
)
15213 rtx rtl
= NULL_RTX
;
15217 /* If a variable is initialized with a string constant without embedded
15218 zeros, build CONST_STRING. */
15219 if (TREE_CODE (init
) == STRING_CST
&& TREE_CODE (type
) == ARRAY_TYPE
)
15221 tree enttype
= TREE_TYPE (type
);
15222 tree domain
= TYPE_DOMAIN (type
);
15223 enum machine_mode mode
= TYPE_MODE (enttype
);
15225 if (GET_MODE_CLASS (mode
) == MODE_INT
&& GET_MODE_SIZE (mode
) == 1
15227 && integer_zerop (TYPE_MIN_VALUE (domain
))
15228 && compare_tree_int (TYPE_MAX_VALUE (domain
),
15229 TREE_STRING_LENGTH (init
) - 1) == 0
15230 && ((size_t) TREE_STRING_LENGTH (init
)
15231 == strlen (TREE_STRING_POINTER (init
)) + 1))
15233 rtl
= gen_rtx_CONST_STRING (VOIDmode
,
15234 ggc_strdup (TREE_STRING_POINTER (init
)));
15235 rtl
= gen_rtx_MEM (BLKmode
, rtl
);
15236 MEM_READONLY_P (rtl
) = 1;
15239 /* Other aggregates, and complex values, could be represented using
15241 else if (AGGREGATE_TYPE_P (type
)
15242 || (TREE_CODE (init
) == VIEW_CONVERT_EXPR
15243 && AGGREGATE_TYPE_P (TREE_TYPE (TREE_OPERAND (init
, 0))))
15244 || TREE_CODE (type
) == COMPLEX_TYPE
)
15246 /* Vectors only work if their mode is supported by the target.
15247 FIXME: generic vectors ought to work too. */
15248 else if (TREE_CODE (type
) == VECTOR_TYPE
15249 && !VECTOR_MODE_P (TYPE_MODE (type
)))
15251 /* If the initializer is something that we know will expand into an
15252 immediate RTL constant, expand it now. We must be careful not to
15253 reference variables which won't be output. */
15254 else if (initializer_constant_valid_p (init
, type
)
15255 && ! walk_tree (&init
, reference_to_unused
, NULL
, NULL
))
15257 /* Convert vector CONSTRUCTOR initializers to VECTOR_CST if
15259 if (TREE_CODE (type
) == VECTOR_TYPE
)
15260 switch (TREE_CODE (init
))
15265 if (TREE_CONSTANT (init
))
15267 vec
<constructor_elt
, va_gc
> *elts
= CONSTRUCTOR_ELTS (init
);
15268 bool constant_p
= true;
15270 unsigned HOST_WIDE_INT ix
;
15272 /* Even when ctor is constant, it might contain non-*_CST
15273 elements (e.g. { 1.0/0.0 - 1.0/0.0, 0.0 }) and those don't
15274 belong into VECTOR_CST nodes. */
15275 FOR_EACH_CONSTRUCTOR_VALUE (elts
, ix
, value
)
15276 if (!CONSTANT_CLASS_P (value
))
15278 constant_p
= false;
15284 init
= build_vector_from_ctor (type
, elts
);
15294 rtl
= expand_expr (init
, NULL_RTX
, VOIDmode
, EXPAND_INITIALIZER
);
15296 /* If expand_expr returns a MEM, it wasn't immediate. */
15297 gcc_assert (!rtl
|| !MEM_P (rtl
));
15303 /* Generate RTL for the variable DECL to represent its location. */
15306 rtl_for_decl_location (tree decl
)
15310 /* Here we have to decide where we are going to say the parameter "lives"
15311 (as far as the debugger is concerned). We only have a couple of
15312 choices. GCC provides us with DECL_RTL and with DECL_INCOMING_RTL.
15314 DECL_RTL normally indicates where the parameter lives during most of the
15315 activation of the function. If optimization is enabled however, this
15316 could be either NULL or else a pseudo-reg. Both of those cases indicate
15317 that the parameter doesn't really live anywhere (as far as the code
15318 generation parts of GCC are concerned) during most of the function's
15319 activation. That will happen (for example) if the parameter is never
15320 referenced within the function.
15322 We could just generate a location descriptor here for all non-NULL
15323 non-pseudo values of DECL_RTL and ignore all of the rest, but we can be
15324 a little nicer than that if we also consider DECL_INCOMING_RTL in cases
15325 where DECL_RTL is NULL or is a pseudo-reg.
15327 Note however that we can only get away with using DECL_INCOMING_RTL as
15328 a backup substitute for DECL_RTL in certain limited cases. In cases
15329 where DECL_ARG_TYPE (decl) indicates the same type as TREE_TYPE (decl),
15330 we can be sure that the parameter was passed using the same type as it is
15331 declared to have within the function, and that its DECL_INCOMING_RTL
15332 points us to a place where a value of that type is passed.
15334 In cases where DECL_ARG_TYPE (decl) and TREE_TYPE (decl) are different,
15335 we cannot (in general) use DECL_INCOMING_RTL as a substitute for DECL_RTL
15336 because in these cases DECL_INCOMING_RTL points us to a value of some
15337 type which is *different* from the type of the parameter itself. Thus,
15338 if we tried to use DECL_INCOMING_RTL to generate a location attribute in
15339 such cases, the debugger would end up (for example) trying to fetch a
15340 `float' from a place which actually contains the first part of a
15341 `double'. That would lead to really incorrect and confusing
15342 output at debug-time.
15344 So, in general, we *do not* use DECL_INCOMING_RTL as a backup for DECL_RTL
15345 in cases where DECL_ARG_TYPE (decl) != TREE_TYPE (decl). There
15346 are a couple of exceptions however. On little-endian machines we can
15347 get away with using DECL_INCOMING_RTL even when DECL_ARG_TYPE (decl) is
15348 not the same as TREE_TYPE (decl), but only when DECL_ARG_TYPE (decl) is
15349 an integral type that is smaller than TREE_TYPE (decl). These cases arise
15350 when (on a little-endian machine) a non-prototyped function has a
15351 parameter declared to be of type `short' or `char'. In such cases,
15352 TREE_TYPE (decl) will be `short' or `char', DECL_ARG_TYPE (decl) will
15353 be `int', and DECL_INCOMING_RTL will point to the lowest-order byte of the
15354 passed `int' value. If the debugger then uses that address to fetch
15355 a `short' or a `char' (on a little-endian machine) the result will be
15356 the correct data, so we allow for such exceptional cases below.
15358 Note that our goal here is to describe the place where the given formal
15359 parameter lives during most of the function's activation (i.e. between the
15360 end of the prologue and the start of the epilogue). We'll do that as best
15361 as we can. Note however that if the given formal parameter is modified
15362 sometime during the execution of the function, then a stack backtrace (at
15363 debug-time) will show the function as having been called with the *new*
15364 value rather than the value which was originally passed in. This happens
15365 rarely enough that it is not a major problem, but it *is* a problem, and
15366 I'd like to fix it.
15368 A future version of dwarf2out.c may generate two additional attributes for
15369 any given DW_TAG_formal_parameter DIE which will describe the "passed
15370 type" and the "passed location" for the given formal parameter in addition
15371 to the attributes we now generate to indicate the "declared type" and the
15372 "active location" for each parameter. This additional set of attributes
15373 could be used by debuggers for stack backtraces. Separately, note that
15374 sometimes DECL_RTL can be NULL and DECL_INCOMING_RTL can be NULL also.
15375 This happens (for example) for inlined-instances of inline function formal
15376 parameters which are never referenced. This really shouldn't be
15377 happening. All PARM_DECL nodes should get valid non-NULL
15378 DECL_INCOMING_RTL values. FIXME. */
15380 /* Use DECL_RTL as the "location" unless we find something better. */
15381 rtl
= DECL_RTL_IF_SET (decl
);
15383 /* When generating abstract instances, ignore everything except
15384 constants, symbols living in memory, and symbols living in
15385 fixed registers. */
15386 if (! reload_completed
)
15389 && (CONSTANT_P (rtl
)
15391 && CONSTANT_P (XEXP (rtl
, 0)))
15393 && TREE_CODE (decl
) == VAR_DECL
15394 && TREE_STATIC (decl
))))
15396 rtl
= targetm
.delegitimize_address (rtl
);
15401 else if (TREE_CODE (decl
) == PARM_DECL
)
15403 if (rtl
== NULL_RTX
15404 || is_pseudo_reg (rtl
)
15406 && is_pseudo_reg (XEXP (rtl
, 0))
15407 && DECL_INCOMING_RTL (decl
)
15408 && MEM_P (DECL_INCOMING_RTL (decl
))
15409 && GET_MODE (rtl
) == GET_MODE (DECL_INCOMING_RTL (decl
))))
15411 tree declared_type
= TREE_TYPE (decl
);
15412 tree passed_type
= DECL_ARG_TYPE (decl
);
15413 enum machine_mode dmode
= TYPE_MODE (declared_type
);
15414 enum machine_mode pmode
= TYPE_MODE (passed_type
);
15416 /* This decl represents a formal parameter which was optimized out.
15417 Note that DECL_INCOMING_RTL may be NULL in here, but we handle
15418 all cases where (rtl == NULL_RTX) just below. */
15419 if (dmode
== pmode
)
15420 rtl
= DECL_INCOMING_RTL (decl
);
15421 else if ((rtl
== NULL_RTX
|| is_pseudo_reg (rtl
))
15422 && SCALAR_INT_MODE_P (dmode
)
15423 && GET_MODE_SIZE (dmode
) <= GET_MODE_SIZE (pmode
)
15424 && DECL_INCOMING_RTL (decl
))
15426 rtx inc
= DECL_INCOMING_RTL (decl
);
15429 else if (MEM_P (inc
))
15431 if (BYTES_BIG_ENDIAN
)
15432 rtl
= adjust_address_nv (inc
, dmode
,
15433 GET_MODE_SIZE (pmode
)
15434 - GET_MODE_SIZE (dmode
));
15441 /* If the parm was passed in registers, but lives on the stack, then
15442 make a big endian correction if the mode of the type of the
15443 parameter is not the same as the mode of the rtl. */
15444 /* ??? This is the same series of checks that are made in dbxout.c before
15445 we reach the big endian correction code there. It isn't clear if all
15446 of these checks are necessary here, but keeping them all is the safe
15448 else if (MEM_P (rtl
)
15449 && XEXP (rtl
, 0) != const0_rtx
15450 && ! CONSTANT_P (XEXP (rtl
, 0))
15451 /* Not passed in memory. */
15452 && !MEM_P (DECL_INCOMING_RTL (decl
))
15453 /* Not passed by invisible reference. */
15454 && (!REG_P (XEXP (rtl
, 0))
15455 || REGNO (XEXP (rtl
, 0)) == HARD_FRAME_POINTER_REGNUM
15456 || REGNO (XEXP (rtl
, 0)) == STACK_POINTER_REGNUM
15457 #if !HARD_FRAME_POINTER_IS_ARG_POINTER
15458 || REGNO (XEXP (rtl
, 0)) == ARG_POINTER_REGNUM
15461 /* Big endian correction check. */
15462 && BYTES_BIG_ENDIAN
15463 && TYPE_MODE (TREE_TYPE (decl
)) != GET_MODE (rtl
)
15464 && (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl
)))
15467 enum machine_mode addr_mode
= get_address_mode (rtl
);
15468 int offset
= (UNITS_PER_WORD
15469 - GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl
))));
15471 rtl
= gen_rtx_MEM (TYPE_MODE (TREE_TYPE (decl
)),
15472 plus_constant (addr_mode
, XEXP (rtl
, 0), offset
));
15475 else if (TREE_CODE (decl
) == VAR_DECL
15478 && GET_MODE (rtl
) != TYPE_MODE (TREE_TYPE (decl
))
15479 && BYTES_BIG_ENDIAN
)
15481 enum machine_mode addr_mode
= get_address_mode (rtl
);
15482 int rsize
= GET_MODE_SIZE (GET_MODE (rtl
));
15483 int dsize
= GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl
)));
15485 /* If a variable is declared "register" yet is smaller than
15486 a register, then if we store the variable to memory, it
15487 looks like we're storing a register-sized value, when in
15488 fact we are not. We need to adjust the offset of the
15489 storage location to reflect the actual value's bytes,
15490 else gdb will not be able to display it. */
15492 rtl
= gen_rtx_MEM (TYPE_MODE (TREE_TYPE (decl
)),
15493 plus_constant (addr_mode
, XEXP (rtl
, 0),
15497 /* A variable with no DECL_RTL but a DECL_INITIAL is a compile-time constant,
15498 and will have been substituted directly into all expressions that use it.
15499 C does not have such a concept, but C++ and other languages do. */
15500 if (!rtl
&& TREE_CODE (decl
) == VAR_DECL
&& DECL_INITIAL (decl
))
15501 rtl
= rtl_for_decl_init (DECL_INITIAL (decl
), TREE_TYPE (decl
));
15504 rtl
= targetm
.delegitimize_address (rtl
);
15506 /* If we don't look past the constant pool, we risk emitting a
15507 reference to a constant pool entry that isn't referenced from
15508 code, and thus is not emitted. */
15510 rtl
= avoid_constant_pool_reference (rtl
);
15512 /* Try harder to get a rtl. If this symbol ends up not being emitted
15513 in the current CU, resolve_addr will remove the expression referencing
15515 if (rtl
== NULL_RTX
15516 && TREE_CODE (decl
) == VAR_DECL
15517 && !DECL_EXTERNAL (decl
)
15518 && TREE_STATIC (decl
)
15519 && DECL_NAME (decl
)
15520 && !DECL_HARD_REGISTER (decl
)
15521 && DECL_MODE (decl
) != VOIDmode
)
15523 rtl
= make_decl_rtl_for_debug (decl
);
15525 || GET_CODE (XEXP (rtl
, 0)) != SYMBOL_REF
15526 || SYMBOL_REF_DECL (XEXP (rtl
, 0)) != decl
)
15533 /* Check whether decl is a Fortran COMMON symbol. If not, NULL_TREE is
15534 returned. If so, the decl for the COMMON block is returned, and the
15535 value is the offset into the common block for the symbol. */
15538 fortran_common (tree decl
, HOST_WIDE_INT
*value
)
15540 tree val_expr
, cvar
;
15541 enum machine_mode mode
;
15542 HOST_WIDE_INT bitsize
, bitpos
;
15544 int unsignedp
, volatilep
= 0;
15546 /* If the decl isn't a VAR_DECL, or if it isn't static, or if
15547 it does not have a value (the offset into the common area), or if it
15548 is thread local (as opposed to global) then it isn't common, and shouldn't
15549 be handled as such. */
15550 if (TREE_CODE (decl
) != VAR_DECL
15551 || !TREE_STATIC (decl
)
15552 || !DECL_HAS_VALUE_EXPR_P (decl
)
15556 val_expr
= DECL_VALUE_EXPR (decl
);
15557 if (TREE_CODE (val_expr
) != COMPONENT_REF
)
15560 cvar
= get_inner_reference (val_expr
, &bitsize
, &bitpos
, &offset
,
15561 &mode
, &unsignedp
, &volatilep
, true);
15563 if (cvar
== NULL_TREE
15564 || TREE_CODE (cvar
) != VAR_DECL
15565 || DECL_ARTIFICIAL (cvar
)
15566 || !TREE_PUBLIC (cvar
))
15570 if (offset
!= NULL
)
15572 if (!tree_fits_shwi_p (offset
))
15574 *value
= tree_to_shwi (offset
);
15577 *value
+= bitpos
/ BITS_PER_UNIT
;
15582 /* Generate *either* a DW_AT_location attribute or else a DW_AT_const_value
15583 data attribute for a variable or a parameter. We generate the
15584 DW_AT_const_value attribute only in those cases where the given variable
15585 or parameter does not have a true "location" either in memory or in a
15586 register. This can happen (for example) when a constant is passed as an
15587 actual argument in a call to an inline function. (It's possible that
15588 these things can crop up in other ways also.) Note that one type of
15589 constant value which can be passed into an inlined function is a constant
15590 pointer. This can happen for example if an actual argument in an inlined
15591 function call evaluates to a compile-time constant address.
15593 CACHE_P is true if it is worth caching the location list for DECL,
15594 so that future calls can reuse it rather than regenerate it from scratch.
15595 This is true for BLOCK_NONLOCALIZED_VARS in inlined subroutines,
15596 since we will need to refer to them each time the function is inlined. */
15599 add_location_or_const_value_attribute (dw_die_ref die
, tree decl
, bool cache_p
,
15600 enum dwarf_attribute attr
)
15603 dw_loc_list_ref list
;
15604 var_loc_list
*loc_list
;
15605 cached_dw_loc_list
*cache
;
15608 if (TREE_CODE (decl
) == ERROR_MARK
)
15611 gcc_assert (TREE_CODE (decl
) == VAR_DECL
|| TREE_CODE (decl
) == PARM_DECL
15612 || TREE_CODE (decl
) == RESULT_DECL
);
15614 /* Try to get some constant RTL for this decl, and use that as the value of
15617 rtl
= rtl_for_decl_location (decl
);
15618 if (rtl
&& (CONSTANT_P (rtl
) || GET_CODE (rtl
) == CONST_STRING
)
15619 && add_const_value_attribute (die
, rtl
))
15622 /* See if we have single element location list that is equivalent to
15623 a constant value. That way we are better to use add_const_value_attribute
15624 rather than expanding constant value equivalent. */
15625 loc_list
= lookup_decl_loc (decl
);
15628 && loc_list
->first
->next
== NULL
15629 && NOTE_P (loc_list
->first
->loc
)
15630 && NOTE_VAR_LOCATION (loc_list
->first
->loc
)
15631 && NOTE_VAR_LOCATION_LOC (loc_list
->first
->loc
))
15633 struct var_loc_node
*node
;
15635 node
= loc_list
->first
;
15636 rtl
= NOTE_VAR_LOCATION_LOC (node
->loc
);
15637 if (GET_CODE (rtl
) == EXPR_LIST
)
15638 rtl
= XEXP (rtl
, 0);
15639 if ((CONSTANT_P (rtl
) || GET_CODE (rtl
) == CONST_STRING
)
15640 && add_const_value_attribute (die
, rtl
))
15643 /* If this decl is from BLOCK_NONLOCALIZED_VARS, we might need its
15644 list several times. See if we've already cached the contents. */
15646 if (loc_list
== NULL
|| cached_dw_loc_list_table
== NULL
)
15650 cache
= (cached_dw_loc_list
*)
15651 htab_find_with_hash (cached_dw_loc_list_table
, decl
, DECL_UID (decl
));
15653 list
= cache
->loc_list
;
15657 list
= loc_list_from_tree (decl
, decl_by_reference_p (decl
) ? 0 : 2);
15658 /* It is usually worth caching this result if the decl is from
15659 BLOCK_NONLOCALIZED_VARS and if the list has at least two elements. */
15660 if (cache_p
&& list
&& list
->dw_loc_next
)
15662 slot
= htab_find_slot_with_hash (cached_dw_loc_list_table
, decl
,
15663 DECL_UID (decl
), INSERT
);
15664 cache
= ggc_alloc_cleared_cached_dw_loc_list ();
15665 cache
->decl_id
= DECL_UID (decl
);
15666 cache
->loc_list
= list
;
15672 add_AT_location_description (die
, attr
, list
);
15675 /* None of that worked, so it must not really have a location;
15676 try adding a constant value attribute from the DECL_INITIAL. */
15677 return tree_add_const_value_attribute_for_decl (die
, decl
);
15680 /* Add VARIABLE and DIE into deferred locations list. */
15683 defer_location (tree variable
, dw_die_ref die
)
15685 deferred_locations entry
;
15686 entry
.variable
= variable
;
15688 vec_safe_push (deferred_locations_list
, entry
);
15691 /* Helper function for tree_add_const_value_attribute. Natively encode
15692 initializer INIT into an array. Return true if successful. */
15695 native_encode_initializer (tree init
, unsigned char *array
, int size
)
15699 if (init
== NULL_TREE
)
15703 switch (TREE_CODE (init
))
15706 type
= TREE_TYPE (init
);
15707 if (TREE_CODE (type
) == ARRAY_TYPE
)
15709 tree enttype
= TREE_TYPE (type
);
15710 enum machine_mode mode
= TYPE_MODE (enttype
);
15712 if (GET_MODE_CLASS (mode
) != MODE_INT
|| GET_MODE_SIZE (mode
) != 1)
15714 if (int_size_in_bytes (type
) != size
)
15716 if (size
> TREE_STRING_LENGTH (init
))
15718 memcpy (array
, TREE_STRING_POINTER (init
),
15719 TREE_STRING_LENGTH (init
));
15720 memset (array
+ TREE_STRING_LENGTH (init
),
15721 '\0', size
- TREE_STRING_LENGTH (init
));
15724 memcpy (array
, TREE_STRING_POINTER (init
), size
);
15729 type
= TREE_TYPE (init
);
15730 if (int_size_in_bytes (type
) != size
)
15732 if (TREE_CODE (type
) == ARRAY_TYPE
)
15734 HOST_WIDE_INT min_index
;
15735 unsigned HOST_WIDE_INT cnt
;
15736 int curpos
= 0, fieldsize
;
15737 constructor_elt
*ce
;
15739 if (TYPE_DOMAIN (type
) == NULL_TREE
15740 || !tree_fits_shwi_p (TYPE_MIN_VALUE (TYPE_DOMAIN (type
))))
15743 fieldsize
= int_size_in_bytes (TREE_TYPE (type
));
15744 if (fieldsize
<= 0)
15747 min_index
= tree_to_shwi (TYPE_MIN_VALUE (TYPE_DOMAIN (type
)));
15748 memset (array
, '\0', size
);
15749 FOR_EACH_VEC_SAFE_ELT (CONSTRUCTOR_ELTS (init
), cnt
, ce
)
15751 tree val
= ce
->value
;
15752 tree index
= ce
->index
;
15754 if (index
&& TREE_CODE (index
) == RANGE_EXPR
)
15755 pos
= (tree_to_shwi (TREE_OPERAND (index
, 0)) - min_index
)
15758 pos
= (tree_to_shwi (index
) - min_index
) * fieldsize
;
15763 if (!native_encode_initializer (val
, array
+ pos
, fieldsize
))
15766 curpos
= pos
+ fieldsize
;
15767 if (index
&& TREE_CODE (index
) == RANGE_EXPR
)
15769 int count
= tree_to_shwi (TREE_OPERAND (index
, 1))
15770 - tree_to_shwi (TREE_OPERAND (index
, 0));
15771 while (count
-- > 0)
15774 memcpy (array
+ curpos
, array
+ pos
, fieldsize
);
15775 curpos
+= fieldsize
;
15778 gcc_assert (curpos
<= size
);
15782 else if (TREE_CODE (type
) == RECORD_TYPE
15783 || TREE_CODE (type
) == UNION_TYPE
)
15785 tree field
= NULL_TREE
;
15786 unsigned HOST_WIDE_INT cnt
;
15787 constructor_elt
*ce
;
15789 if (int_size_in_bytes (type
) != size
)
15792 if (TREE_CODE (type
) == RECORD_TYPE
)
15793 field
= TYPE_FIELDS (type
);
15795 FOR_EACH_VEC_SAFE_ELT (CONSTRUCTOR_ELTS (init
), cnt
, ce
)
15797 tree val
= ce
->value
;
15798 int pos
, fieldsize
;
15800 if (ce
->index
!= 0)
15806 if (field
== NULL_TREE
|| DECL_BIT_FIELD (field
))
15809 if (TREE_CODE (TREE_TYPE (field
)) == ARRAY_TYPE
15810 && TYPE_DOMAIN (TREE_TYPE (field
))
15811 && ! TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (field
))))
15813 else if (DECL_SIZE_UNIT (field
) == NULL_TREE
15814 || !tree_fits_shwi_p (DECL_SIZE_UNIT (field
)))
15816 fieldsize
= tree_to_shwi (DECL_SIZE_UNIT (field
));
15817 pos
= int_byte_position (field
);
15818 gcc_assert (pos
+ fieldsize
<= size
);
15820 && !native_encode_initializer (val
, array
+ pos
, fieldsize
))
15826 case VIEW_CONVERT_EXPR
:
15827 case NON_LVALUE_EXPR
:
15828 return native_encode_initializer (TREE_OPERAND (init
, 0), array
, size
);
15830 return native_encode_expr (init
, array
, size
) == size
;
15834 /* Attach a DW_AT_const_value attribute to DIE. The value of the
15835 attribute is the const value T. */
15838 tree_add_const_value_attribute (dw_die_ref die
, tree t
)
15841 tree type
= TREE_TYPE (t
);
15844 if (!t
|| !TREE_TYPE (t
) || TREE_TYPE (t
) == error_mark_node
)
15848 gcc_assert (!DECL_P (init
));
15850 rtl
= rtl_for_decl_init (init
, type
);
15852 return add_const_value_attribute (die
, rtl
);
15853 /* If the host and target are sane, try harder. */
15854 else if (CHAR_BIT
== 8 && BITS_PER_UNIT
== 8
15855 && initializer_constant_valid_p (init
, type
))
15857 HOST_WIDE_INT size
= int_size_in_bytes (TREE_TYPE (init
));
15858 if (size
> 0 && (int) size
== size
)
15860 unsigned char *array
= (unsigned char *)
15861 ggc_alloc_cleared_atomic (size
);
15863 if (native_encode_initializer (init
, array
, size
))
15865 add_AT_vec (die
, DW_AT_const_value
, size
, 1, array
);
15874 /* Attach a DW_AT_const_value attribute to VAR_DIE. The value of the
15875 attribute is the const value of T, where T is an integral constant
15876 variable with static storage duration
15877 (so it can't be a PARM_DECL or a RESULT_DECL). */
15880 tree_add_const_value_attribute_for_decl (dw_die_ref var_die
, tree decl
)
15884 || (TREE_CODE (decl
) != VAR_DECL
15885 && TREE_CODE (decl
) != CONST_DECL
)
15886 || (TREE_CODE (decl
) == VAR_DECL
15887 && !TREE_STATIC (decl
)))
15890 if (TREE_READONLY (decl
)
15891 && ! TREE_THIS_VOLATILE (decl
)
15892 && DECL_INITIAL (decl
))
15897 /* Don't add DW_AT_const_value if abstract origin already has one. */
15898 if (get_AT (var_die
, DW_AT_const_value
))
15901 return tree_add_const_value_attribute (var_die
, DECL_INITIAL (decl
));
15904 /* Convert the CFI instructions for the current function into a
15905 location list. This is used for DW_AT_frame_base when we targeting
15906 a dwarf2 consumer that does not support the dwarf3
15907 DW_OP_call_frame_cfa. OFFSET is a constant to be added to all CFA
15910 static dw_loc_list_ref
15911 convert_cfa_to_fb_loc_list (HOST_WIDE_INT offset
)
15915 dw_loc_list_ref list
, *list_tail
;
15917 dw_cfa_location last_cfa
, next_cfa
;
15918 const char *start_label
, *last_label
, *section
;
15919 dw_cfa_location remember
;
15922 gcc_assert (fde
!= NULL
);
15924 section
= secname_for_decl (current_function_decl
);
15928 memset (&next_cfa
, 0, sizeof (next_cfa
));
15929 next_cfa
.reg
= INVALID_REGNUM
;
15930 remember
= next_cfa
;
15932 start_label
= fde
->dw_fde_begin
;
15934 /* ??? Bald assumption that the CIE opcode list does not contain
15935 advance opcodes. */
15936 FOR_EACH_VEC_ELT (*cie_cfi_vec
, ix
, cfi
)
15937 lookup_cfa_1 (cfi
, &next_cfa
, &remember
);
15939 last_cfa
= next_cfa
;
15940 last_label
= start_label
;
15942 if (fde
->dw_fde_second_begin
&& fde
->dw_fde_switch_cfi_index
== 0)
15944 /* If the first partition contained no CFI adjustments, the
15945 CIE opcodes apply to the whole first partition. */
15946 *list_tail
= new_loc_list (build_cfa_loc (&last_cfa
, offset
),
15947 fde
->dw_fde_begin
, fde
->dw_fde_end
, section
);
15948 list_tail
=&(*list_tail
)->dw_loc_next
;
15949 start_label
= last_label
= fde
->dw_fde_second_begin
;
15952 FOR_EACH_VEC_SAFE_ELT (fde
->dw_fde_cfi
, ix
, cfi
)
15954 switch (cfi
->dw_cfi_opc
)
15956 case DW_CFA_set_loc
:
15957 case DW_CFA_advance_loc1
:
15958 case DW_CFA_advance_loc2
:
15959 case DW_CFA_advance_loc4
:
15960 if (!cfa_equal_p (&last_cfa
, &next_cfa
))
15962 *list_tail
= new_loc_list (build_cfa_loc (&last_cfa
, offset
),
15963 start_label
, last_label
, section
);
15965 list_tail
= &(*list_tail
)->dw_loc_next
;
15966 last_cfa
= next_cfa
;
15967 start_label
= last_label
;
15969 last_label
= cfi
->dw_cfi_oprnd1
.dw_cfi_addr
;
15972 case DW_CFA_advance_loc
:
15973 /* The encoding is complex enough that we should never emit this. */
15974 gcc_unreachable ();
15977 lookup_cfa_1 (cfi
, &next_cfa
, &remember
);
15980 if (ix
+ 1 == fde
->dw_fde_switch_cfi_index
)
15982 if (!cfa_equal_p (&last_cfa
, &next_cfa
))
15984 *list_tail
= new_loc_list (build_cfa_loc (&last_cfa
, offset
),
15985 start_label
, last_label
, section
);
15987 list_tail
= &(*list_tail
)->dw_loc_next
;
15988 last_cfa
= next_cfa
;
15989 start_label
= last_label
;
15991 *list_tail
= new_loc_list (build_cfa_loc (&last_cfa
, offset
),
15992 start_label
, fde
->dw_fde_end
, section
);
15993 list_tail
= &(*list_tail
)->dw_loc_next
;
15994 start_label
= last_label
= fde
->dw_fde_second_begin
;
15998 if (!cfa_equal_p (&last_cfa
, &next_cfa
))
16000 *list_tail
= new_loc_list (build_cfa_loc (&last_cfa
, offset
),
16001 start_label
, last_label
, section
);
16002 list_tail
= &(*list_tail
)->dw_loc_next
;
16003 start_label
= last_label
;
16006 *list_tail
= new_loc_list (build_cfa_loc (&next_cfa
, offset
),
16008 fde
->dw_fde_second_begin
16009 ? fde
->dw_fde_second_end
: fde
->dw_fde_end
,
16012 if (list
&& list
->dw_loc_next
)
16018 /* Compute a displacement from the "steady-state frame pointer" to the
16019 frame base (often the same as the CFA), and store it in
16020 frame_pointer_fb_offset. OFFSET is added to the displacement
16021 before the latter is negated. */
16024 compute_frame_pointer_to_fb_displacement (HOST_WIDE_INT offset
)
16028 #ifdef FRAME_POINTER_CFA_OFFSET
16029 reg
= frame_pointer_rtx
;
16030 offset
+= FRAME_POINTER_CFA_OFFSET (current_function_decl
);
16032 reg
= arg_pointer_rtx
;
16033 offset
+= ARG_POINTER_CFA_OFFSET (current_function_decl
);
16036 elim
= (ira_use_lra_p
16037 ? lra_eliminate_regs (reg
, VOIDmode
, NULL_RTX
)
16038 : eliminate_regs (reg
, VOIDmode
, NULL_RTX
));
16039 if (GET_CODE (elim
) == PLUS
)
16041 offset
+= INTVAL (XEXP (elim
, 1));
16042 elim
= XEXP (elim
, 0);
16045 frame_pointer_fb_offset
= -offset
;
16047 /* ??? AVR doesn't set up valid eliminations when there is no stack frame
16048 in which to eliminate. This is because it's stack pointer isn't
16049 directly accessible as a register within the ISA. To work around
16050 this, assume that while we cannot provide a proper value for
16051 frame_pointer_fb_offset, we won't need one either. */
16052 frame_pointer_fb_offset_valid
16053 = ((SUPPORTS_STACK_ALIGNMENT
16054 && (elim
== hard_frame_pointer_rtx
16055 || elim
== stack_pointer_rtx
))
16056 || elim
== (frame_pointer_needed
16057 ? hard_frame_pointer_rtx
16058 : stack_pointer_rtx
));
16061 /* Generate a DW_AT_name attribute given some string value to be included as
16062 the value of the attribute. */
16065 add_name_attribute (dw_die_ref die
, const char *name_string
)
16067 if (name_string
!= NULL
&& *name_string
!= 0)
16069 if (demangle_name_func
)
16070 name_string
= (*demangle_name_func
) (name_string
);
16072 add_AT_string (die
, DW_AT_name
, name_string
);
16076 /* Retrieve the descriptive type of TYPE, if any, make sure it has a
16077 DIE and attach a DW_AT_GNAT_descriptive_type attribute to the DIE
16078 of TYPE accordingly.
16080 ??? This is a temporary measure until after we're able to generate
16081 regular DWARF for the complex Ada type system. */
16084 add_gnat_descriptive_type_attribute (dw_die_ref die
, tree type
,
16085 dw_die_ref context_die
)
16088 dw_die_ref dtype_die
;
16090 if (!lang_hooks
.types
.descriptive_type
)
16093 dtype
= lang_hooks
.types
.descriptive_type (type
);
16097 dtype_die
= lookup_type_die (dtype
);
16100 gen_type_die (dtype
, context_die
);
16101 dtype_die
= lookup_type_die (dtype
);
16102 gcc_assert (dtype_die
);
16105 add_AT_die_ref (die
, DW_AT_GNAT_descriptive_type
, dtype_die
);
16108 /* Retrieve the comp_dir string suitable for use with DW_AT_comp_dir. */
16110 static const char *
16111 comp_dir_string (void)
16115 static const char *cached_wd
= NULL
;
16117 if (cached_wd
!= NULL
)
16120 wd
= get_src_pwd ();
16124 if (DWARF2_DIR_SHOULD_END_WITH_SEPARATOR
)
16128 wdlen
= strlen (wd
);
16129 wd1
= (char *) ggc_alloc_atomic (wdlen
+ 2);
16131 wd1
[wdlen
] = DIR_SEPARATOR
;
16132 wd1
[wdlen
+ 1] = 0;
16136 cached_wd
= remap_debug_filename (wd
);
16140 /* Generate a DW_AT_comp_dir attribute for DIE. */
16143 add_comp_dir_attribute (dw_die_ref die
)
16145 const char * wd
= comp_dir_string ();
16147 add_AT_string (die
, DW_AT_comp_dir
, wd
);
16150 /* Return the default for DW_AT_lower_bound, or -1 if there is not any
16154 lower_bound_default (void)
16156 switch (get_AT_unsigned (comp_unit_die (), DW_AT_language
))
16161 case DW_LANG_C_plus_plus
:
16163 case DW_LANG_ObjC_plus_plus
:
16166 case DW_LANG_Fortran77
:
16167 case DW_LANG_Fortran90
:
16168 case DW_LANG_Fortran95
:
16172 case DW_LANG_Python
:
16173 return dwarf_version
>= 4 ? 0 : -1;
16174 case DW_LANG_Ada95
:
16175 case DW_LANG_Ada83
:
16176 case DW_LANG_Cobol74
:
16177 case DW_LANG_Cobol85
:
16178 case DW_LANG_Pascal83
:
16179 case DW_LANG_Modula2
:
16181 return dwarf_version
>= 4 ? 1 : -1;
16187 /* Given a tree node describing an array bound (either lower or upper) output
16188 a representation for that bound. */
16191 add_bound_info (dw_die_ref subrange_die
, enum dwarf_attribute bound_attr
, tree bound
)
16193 switch (TREE_CODE (bound
))
16198 /* All fixed-bounds are represented by INTEGER_CST nodes. */
16201 unsigned int prec
= simple_type_size_in_bits (TREE_TYPE (bound
));
16204 /* Use the default if possible. */
16205 if (bound_attr
== DW_AT_lower_bound
16206 && tree_fits_shwi_p (bound
)
16207 && (dflt
= lower_bound_default ()) != -1
16208 && tree_to_shwi (bound
) == dflt
)
16211 /* Otherwise represent the bound as an unsigned value with the
16212 precision of its type. The precision and signedness of the
16213 type will be necessary to re-interpret it unambiguously. */
16214 else if (prec
< HOST_BITS_PER_WIDE_INT
)
16216 unsigned HOST_WIDE_INT mask
16217 = ((unsigned HOST_WIDE_INT
) 1 << prec
) - 1;
16218 add_AT_unsigned (subrange_die
, bound_attr
,
16219 TREE_INT_CST_LOW (bound
) & mask
);
16221 else if (prec
== HOST_BITS_PER_WIDE_INT
16222 || TREE_INT_CST_HIGH (bound
) == 0)
16223 add_AT_unsigned (subrange_die
, bound_attr
,
16224 TREE_INT_CST_LOW (bound
));
16226 add_AT_double (subrange_die
, bound_attr
, TREE_INT_CST_HIGH (bound
),
16227 TREE_INT_CST_LOW (bound
));
16232 case VIEW_CONVERT_EXPR
:
16233 add_bound_info (subrange_die
, bound_attr
, TREE_OPERAND (bound
, 0));
16243 dw_die_ref decl_die
= lookup_decl_die (bound
);
16245 /* ??? Can this happen, or should the variable have been bound
16246 first? Probably it can, since I imagine that we try to create
16247 the types of parameters in the order in which they exist in
16248 the list, and won't have created a forward reference to a
16249 later parameter. */
16250 if (decl_die
!= NULL
)
16252 add_AT_die_ref (subrange_die
, bound_attr
, decl_die
);
16260 /* Otherwise try to create a stack operation procedure to
16261 evaluate the value of the array bound. */
16263 dw_die_ref ctx
, decl_die
;
16264 dw_loc_list_ref list
;
16266 list
= loc_list_from_tree (bound
, 2);
16267 if (list
== NULL
|| single_element_loc_list_p (list
))
16269 /* If DW_AT_*bound is not a reference nor constant, it is
16270 a DWARF expression rather than location description.
16271 For that loc_list_from_tree (bound, 0) is needed.
16272 If that fails to give a single element list,
16273 fall back to outputting this as a reference anyway. */
16274 dw_loc_list_ref list2
= loc_list_from_tree (bound
, 0);
16275 if (list2
&& single_element_loc_list_p (list2
))
16277 add_AT_loc (subrange_die
, bound_attr
, list2
->expr
);
16284 if (current_function_decl
== 0)
16285 ctx
= comp_unit_die ();
16287 ctx
= lookup_decl_die (current_function_decl
);
16289 decl_die
= new_die (DW_TAG_variable
, ctx
, bound
);
16290 add_AT_flag (decl_die
, DW_AT_artificial
, 1);
16291 add_type_attribute (decl_die
, TREE_TYPE (bound
), 1, 0, ctx
);
16292 add_AT_location_description (decl_die
, DW_AT_location
, list
);
16293 add_AT_die_ref (subrange_die
, bound_attr
, decl_die
);
16299 /* Add subscript info to TYPE_DIE, describing an array TYPE, collapsing
16300 possibly nested array subscripts in a flat sequence if COLLAPSE_P is true.
16301 Note that the block of subscript information for an array type also
16302 includes information about the element type of the given array type. */
16305 add_subscript_info (dw_die_ref type_die
, tree type
, bool collapse_p
)
16307 unsigned dimension_number
;
16309 dw_die_ref subrange_die
;
16311 for (dimension_number
= 0;
16312 TREE_CODE (type
) == ARRAY_TYPE
&& (dimension_number
== 0 || collapse_p
);
16313 type
= TREE_TYPE (type
), dimension_number
++)
16315 tree domain
= TYPE_DOMAIN (type
);
16317 if (TYPE_STRING_FLAG (type
) && is_fortran () && dimension_number
> 0)
16320 /* Arrays come in three flavors: Unspecified bounds, fixed bounds,
16321 and (in GNU C only) variable bounds. Handle all three forms
16323 subrange_die
= new_die (DW_TAG_subrange_type
, type_die
, NULL
);
16326 /* We have an array type with specified bounds. */
16327 lower
= TYPE_MIN_VALUE (domain
);
16328 upper
= TYPE_MAX_VALUE (domain
);
16330 /* Define the index type. */
16331 if (TREE_TYPE (domain
))
16333 /* ??? This is probably an Ada unnamed subrange type. Ignore the
16334 TREE_TYPE field. We can't emit debug info for this
16335 because it is an unnamed integral type. */
16336 if (TREE_CODE (domain
) == INTEGER_TYPE
16337 && TYPE_NAME (domain
) == NULL_TREE
16338 && TREE_CODE (TREE_TYPE (domain
)) == INTEGER_TYPE
16339 && TYPE_NAME (TREE_TYPE (domain
)) == NULL_TREE
)
16342 add_type_attribute (subrange_die
, TREE_TYPE (domain
), 0, 0,
16346 /* ??? If upper is NULL, the array has unspecified length,
16347 but it does have a lower bound. This happens with Fortran
16349 Since the debugger is definitely going to need to know N
16350 to produce useful results, go ahead and output the lower
16351 bound solo, and hope the debugger can cope. */
16353 add_bound_info (subrange_die
, DW_AT_lower_bound
, lower
);
16355 add_bound_info (subrange_die
, DW_AT_upper_bound
, upper
);
16358 /* Otherwise we have an array type with an unspecified length. The
16359 DWARF-2 spec does not say how to handle this; let's just leave out the
16364 /* Add a DW_AT_byte_size attribute to DIE with TREE_NODE's size. */
16367 add_byte_size_attribute (dw_die_ref die
, tree tree_node
)
16369 dw_die_ref decl_die
;
16370 HOST_WIDE_INT size
;
16372 switch (TREE_CODE (tree_node
))
16377 case ENUMERAL_TYPE
:
16380 case QUAL_UNION_TYPE
:
16381 if (TREE_CODE (TYPE_SIZE_UNIT (tree_node
)) == VAR_DECL
16382 && (decl_die
= lookup_decl_die (TYPE_SIZE_UNIT (tree_node
))))
16384 add_AT_die_ref (die
, DW_AT_byte_size
, decl_die
);
16387 size
= int_size_in_bytes (tree_node
);
16390 /* For a data member of a struct or union, the DW_AT_byte_size is
16391 generally given as the number of bytes normally allocated for an
16392 object of the *declared* type of the member itself. This is true
16393 even for bit-fields. */
16394 size
= int_size_in_bytes (field_type (tree_node
));
16397 gcc_unreachable ();
16400 /* Note that `size' might be -1 when we get to this point. If it is, that
16401 indicates that the byte size of the entity in question is variable. We
16402 have no good way of expressing this fact in Dwarf at the present time,
16403 when location description was not used by the caller code instead. */
16405 add_AT_unsigned (die
, DW_AT_byte_size
, size
);
16408 /* For a FIELD_DECL node which represents a bit-field, output an attribute
16409 which specifies the distance in bits from the highest order bit of the
16410 "containing object" for the bit-field to the highest order bit of the
16413 For any given bit-field, the "containing object" is a hypothetical object
16414 (of some integral or enum type) within which the given bit-field lives. The
16415 type of this hypothetical "containing object" is always the same as the
16416 declared type of the individual bit-field itself. The determination of the
16417 exact location of the "containing object" for a bit-field is rather
16418 complicated. It's handled by the `field_byte_offset' function (above).
16420 Note that it is the size (in bytes) of the hypothetical "containing object"
16421 which will be given in the DW_AT_byte_size attribute for this bit-field.
16422 (See `byte_size_attribute' above). */
16425 add_bit_offset_attribute (dw_die_ref die
, tree decl
)
16427 HOST_WIDE_INT object_offset_in_bytes
= field_byte_offset (decl
);
16428 tree type
= DECL_BIT_FIELD_TYPE (decl
);
16429 HOST_WIDE_INT bitpos_int
;
16430 HOST_WIDE_INT highest_order_object_bit_offset
;
16431 HOST_WIDE_INT highest_order_field_bit_offset
;
16432 HOST_WIDE_INT bit_offset
;
16434 /* Must be a field and a bit field. */
16435 gcc_assert (type
&& TREE_CODE (decl
) == FIELD_DECL
);
16437 /* We can't yet handle bit-fields whose offsets are variable, so if we
16438 encounter such things, just return without generating any attribute
16439 whatsoever. Likewise for variable or too large size. */
16440 if (! tree_fits_shwi_p (bit_position (decl
))
16441 || ! tree_fits_uhwi_p (DECL_SIZE (decl
)))
16444 bitpos_int
= int_bit_position (decl
);
16446 /* Note that the bit offset is always the distance (in bits) from the
16447 highest-order bit of the "containing object" to the highest-order bit of
16448 the bit-field itself. Since the "high-order end" of any object or field
16449 is different on big-endian and little-endian machines, the computation
16450 below must take account of these differences. */
16451 highest_order_object_bit_offset
= object_offset_in_bytes
* BITS_PER_UNIT
;
16452 highest_order_field_bit_offset
= bitpos_int
;
16454 if (! BYTES_BIG_ENDIAN
)
16456 highest_order_field_bit_offset
+= tree_to_shwi (DECL_SIZE (decl
));
16457 highest_order_object_bit_offset
+= simple_type_size_in_bits (type
);
16461 = (! BYTES_BIG_ENDIAN
16462 ? highest_order_object_bit_offset
- highest_order_field_bit_offset
16463 : highest_order_field_bit_offset
- highest_order_object_bit_offset
);
16465 if (bit_offset
< 0)
16466 add_AT_int (die
, DW_AT_bit_offset
, bit_offset
);
16468 add_AT_unsigned (die
, DW_AT_bit_offset
, (unsigned HOST_WIDE_INT
) bit_offset
);
16471 /* For a FIELD_DECL node which represents a bit field, output an attribute
16472 which specifies the length in bits of the given field. */
16475 add_bit_size_attribute (dw_die_ref die
, tree decl
)
16477 /* Must be a field and a bit field. */
16478 gcc_assert (TREE_CODE (decl
) == FIELD_DECL
16479 && DECL_BIT_FIELD_TYPE (decl
));
16481 if (tree_fits_uhwi_p (DECL_SIZE (decl
)))
16482 add_AT_unsigned (die
, DW_AT_bit_size
, tree_to_uhwi (DECL_SIZE (decl
)));
16485 /* If the compiled language is ANSI C, then add a 'prototyped'
16486 attribute, if arg types are given for the parameters of a function. */
16489 add_prototyped_attribute (dw_die_ref die
, tree func_type
)
16491 if (get_AT_unsigned (comp_unit_die (), DW_AT_language
) == DW_LANG_C89
16492 && prototype_p (func_type
))
16493 add_AT_flag (die
, DW_AT_prototyped
, 1);
16496 /* Add an 'abstract_origin' attribute below a given DIE. The DIE is found
16497 by looking in either the type declaration or object declaration
16500 static inline dw_die_ref
16501 add_abstract_origin_attribute (dw_die_ref die
, tree origin
)
16503 dw_die_ref origin_die
= NULL
;
16505 if (TREE_CODE (origin
) != FUNCTION_DECL
)
16507 /* We may have gotten separated from the block for the inlined
16508 function, if we're in an exception handler or some such; make
16509 sure that the abstract function has been written out.
16511 Doing this for nested functions is wrong, however; functions are
16512 distinct units, and our context might not even be inline. */
16516 fn
= TYPE_STUB_DECL (fn
);
16518 fn
= decl_function_context (fn
);
16520 dwarf2out_abstract_function (fn
);
16523 if (DECL_P (origin
))
16524 origin_die
= lookup_decl_die (origin
);
16525 else if (TYPE_P (origin
))
16526 origin_die
= lookup_type_die (origin
);
16528 /* XXX: Functions that are never lowered don't always have correct block
16529 trees (in the case of java, they simply have no block tree, in some other
16530 languages). For these functions, there is nothing we can really do to
16531 output correct debug info for inlined functions in all cases. Rather
16532 than die, we'll just produce deficient debug info now, in that we will
16533 have variables without a proper abstract origin. In the future, when all
16534 functions are lowered, we should re-add a gcc_assert (origin_die)
16538 add_AT_die_ref (die
, DW_AT_abstract_origin
, origin_die
);
16542 /* We do not currently support the pure_virtual attribute. */
16545 add_pure_or_virtual_attribute (dw_die_ref die
, tree func_decl
)
16547 if (DECL_VINDEX (func_decl
))
16549 add_AT_unsigned (die
, DW_AT_virtuality
, DW_VIRTUALITY_virtual
);
16551 if (tree_fits_shwi_p (DECL_VINDEX (func_decl
)))
16552 add_AT_loc (die
, DW_AT_vtable_elem_location
,
16553 new_loc_descr (DW_OP_constu
,
16554 tree_to_shwi (DECL_VINDEX (func_decl
)),
16557 /* GNU extension: Record what type this method came from originally. */
16558 if (debug_info_level
> DINFO_LEVEL_TERSE
16559 && DECL_CONTEXT (func_decl
))
16560 add_AT_die_ref (die
, DW_AT_containing_type
,
16561 lookup_type_die (DECL_CONTEXT (func_decl
)));
16565 /* Add a DW_AT_linkage_name or DW_AT_MIPS_linkage_name attribute for the
16566 given decl. This used to be a vendor extension until after DWARF 4
16567 standardized it. */
16570 add_linkage_attr (dw_die_ref die
, tree decl
)
16572 const char *name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
16574 /* Mimic what assemble_name_raw does with a leading '*'. */
16575 if (name
[0] == '*')
16578 if (dwarf_version
>= 4)
16579 add_AT_string (die
, DW_AT_linkage_name
, name
);
16581 add_AT_string (die
, DW_AT_MIPS_linkage_name
, name
);
16584 /* Add source coordinate attributes for the given decl. */
16587 add_src_coords_attributes (dw_die_ref die
, tree decl
)
16589 expanded_location s
;
16591 if (LOCATION_LOCUS (DECL_SOURCE_LOCATION (decl
)) == UNKNOWN_LOCATION
)
16593 s
= expand_location (DECL_SOURCE_LOCATION (decl
));
16594 add_AT_file (die
, DW_AT_decl_file
, lookup_filename (s
.file
));
16595 add_AT_unsigned (die
, DW_AT_decl_line
, s
.line
);
16598 /* Add DW_AT_{,MIPS_}linkage_name attribute for the given decl. */
16601 add_linkage_name (dw_die_ref die
, tree decl
)
16603 if (debug_info_level
> DINFO_LEVEL_TERSE
16604 && (TREE_CODE (decl
) == FUNCTION_DECL
|| TREE_CODE (decl
) == VAR_DECL
)
16605 && TREE_PUBLIC (decl
)
16606 && !DECL_ABSTRACT (decl
)
16607 && !(TREE_CODE (decl
) == VAR_DECL
&& DECL_REGISTER (decl
))
16608 && die
->die_tag
!= DW_TAG_member
)
16610 /* Defer until we have an assembler name set. */
16611 if (!DECL_ASSEMBLER_NAME_SET_P (decl
))
16613 limbo_die_node
*asm_name
;
16615 asm_name
= ggc_alloc_cleared_limbo_die_node ();
16616 asm_name
->die
= die
;
16617 asm_name
->created_for
= decl
;
16618 asm_name
->next
= deferred_asm_name
;
16619 deferred_asm_name
= asm_name
;
16621 else if (DECL_ASSEMBLER_NAME (decl
) != DECL_NAME (decl
))
16622 add_linkage_attr (die
, decl
);
16626 /* Add a DW_AT_name attribute and source coordinate attribute for the
16627 given decl, but only if it actually has a name. */
16630 add_name_and_src_coords_attributes (dw_die_ref die
, tree decl
)
16634 decl_name
= DECL_NAME (decl
);
16635 if (decl_name
!= NULL
&& IDENTIFIER_POINTER (decl_name
) != NULL
)
16637 const char *name
= dwarf2_name (decl
, 0);
16639 add_name_attribute (die
, name
);
16640 if (! DECL_ARTIFICIAL (decl
))
16641 add_src_coords_attributes (die
, decl
);
16643 add_linkage_name (die
, decl
);
16646 #ifdef VMS_DEBUGGING_INFO
16647 /* Get the function's name, as described by its RTL. This may be different
16648 from the DECL_NAME name used in the source file. */
16649 if (TREE_CODE (decl
) == FUNCTION_DECL
&& TREE_ASM_WRITTEN (decl
))
16651 add_AT_addr (die
, DW_AT_VMS_rtnbeg_pd_address
,
16652 XEXP (DECL_RTL (decl
), 0), false);
16653 vec_safe_push (used_rtx_array
, XEXP (DECL_RTL (decl
), 0));
16655 #endif /* VMS_DEBUGGING_INFO */
16658 #ifdef VMS_DEBUGGING_INFO
16659 /* Output the debug main pointer die for VMS */
16662 dwarf2out_vms_debug_main_pointer (void)
16664 char label
[MAX_ARTIFICIAL_LABEL_BYTES
];
16667 /* Allocate the VMS debug main subprogram die. */
16668 die
= ggc_alloc_cleared_die_node ();
16669 die
->die_tag
= DW_TAG_subprogram
;
16670 add_name_attribute (die
, VMS_DEBUG_MAIN_POINTER
);
16671 ASM_GENERATE_INTERNAL_LABEL (label
, PROLOGUE_END_LABEL
,
16672 current_function_funcdef_no
);
16673 add_AT_lbl_id (die
, DW_AT_entry_pc
, label
);
16675 /* Make it the first child of comp_unit_die (). */
16676 die
->die_parent
= comp_unit_die ();
16677 if (comp_unit_die ()->die_child
)
16679 die
->die_sib
= comp_unit_die ()->die_child
->die_sib
;
16680 comp_unit_die ()->die_child
->die_sib
= die
;
16684 die
->die_sib
= die
;
16685 comp_unit_die ()->die_child
= die
;
16688 #endif /* VMS_DEBUGGING_INFO */
16690 /* Push a new declaration scope. */
16693 push_decl_scope (tree scope
)
16695 vec_safe_push (decl_scope_table
, scope
);
16698 /* Pop a declaration scope. */
16701 pop_decl_scope (void)
16703 decl_scope_table
->pop ();
16706 /* walk_tree helper function for uses_local_type, below. */
16709 uses_local_type_r (tree
*tp
, int *walk_subtrees
, void *data ATTRIBUTE_UNUSED
)
16712 *walk_subtrees
= 0;
16715 tree name
= TYPE_NAME (*tp
);
16716 if (name
&& DECL_P (name
) && decl_function_context (name
))
16722 /* If TYPE involves a function-local type (including a local typedef to a
16723 non-local type), returns that type; otherwise returns NULL_TREE. */
16726 uses_local_type (tree type
)
16728 tree used
= walk_tree_without_duplicates (&type
, uses_local_type_r
, NULL
);
16732 /* Return the DIE for the scope that immediately contains this type.
16733 Non-named types that do not involve a function-local type get global
16734 scope. Named types nested in namespaces or other types get their
16735 containing scope. All other types (i.e. function-local named types) get
16736 the current active scope. */
16739 scope_die_for (tree t
, dw_die_ref context_die
)
16741 dw_die_ref scope_die
= NULL
;
16742 tree containing_scope
;
16744 /* Non-types always go in the current scope. */
16745 gcc_assert (TYPE_P (t
));
16747 /* Use the scope of the typedef, rather than the scope of the type
16749 if (TYPE_NAME (t
) && DECL_P (TYPE_NAME (t
)))
16750 containing_scope
= DECL_CONTEXT (TYPE_NAME (t
));
16752 containing_scope
= TYPE_CONTEXT (t
);
16754 /* Use the containing namespace if there is one. */
16755 if (containing_scope
&& TREE_CODE (containing_scope
) == NAMESPACE_DECL
)
16757 if (context_die
== lookup_decl_die (containing_scope
))
16759 else if (debug_info_level
> DINFO_LEVEL_TERSE
)
16760 context_die
= get_context_die (containing_scope
);
16762 containing_scope
= NULL_TREE
;
16765 /* Ignore function type "scopes" from the C frontend. They mean that
16766 a tagged type is local to a parmlist of a function declarator, but
16767 that isn't useful to DWARF. */
16768 if (containing_scope
&& TREE_CODE (containing_scope
) == FUNCTION_TYPE
)
16769 containing_scope
= NULL_TREE
;
16771 if (SCOPE_FILE_SCOPE_P (containing_scope
))
16773 /* If T uses a local type keep it local as well, to avoid references
16774 to function-local DIEs from outside the function. */
16775 if (current_function_decl
&& uses_local_type (t
))
16776 scope_die
= context_die
;
16778 scope_die
= comp_unit_die ();
16780 else if (TYPE_P (containing_scope
))
16782 /* For types, we can just look up the appropriate DIE. */
16783 if (debug_info_level
> DINFO_LEVEL_TERSE
)
16784 scope_die
= get_context_die (containing_scope
);
16787 scope_die
= lookup_type_die_strip_naming_typedef (containing_scope
);
16788 if (scope_die
== NULL
)
16789 scope_die
= comp_unit_die ();
16793 scope_die
= context_die
;
16798 /* Returns nonzero if CONTEXT_DIE is internal to a function. */
16801 local_scope_p (dw_die_ref context_die
)
16803 for (; context_die
; context_die
= context_die
->die_parent
)
16804 if (context_die
->die_tag
== DW_TAG_inlined_subroutine
16805 || context_die
->die_tag
== DW_TAG_subprogram
)
16811 /* Returns nonzero if CONTEXT_DIE is a class. */
16814 class_scope_p (dw_die_ref context_die
)
16816 return (context_die
16817 && (context_die
->die_tag
== DW_TAG_structure_type
16818 || context_die
->die_tag
== DW_TAG_class_type
16819 || context_die
->die_tag
== DW_TAG_interface_type
16820 || context_die
->die_tag
== DW_TAG_union_type
));
16823 /* Returns nonzero if CONTEXT_DIE is a class or namespace, for deciding
16824 whether or not to treat a DIE in this context as a declaration. */
16827 class_or_namespace_scope_p (dw_die_ref context_die
)
16829 return (class_scope_p (context_die
)
16830 || (context_die
&& context_die
->die_tag
== DW_TAG_namespace
));
16833 /* Many forms of DIEs require a "type description" attribute. This
16834 routine locates the proper "type descriptor" die for the type given
16835 by 'type', and adds a DW_AT_type attribute below the given die. */
16838 add_type_attribute (dw_die_ref object_die
, tree type
, int decl_const
,
16839 int decl_volatile
, dw_die_ref context_die
)
16841 enum tree_code code
= TREE_CODE (type
);
16842 dw_die_ref type_die
= NULL
;
16844 /* ??? If this type is an unnamed subrange type of an integral, floating-point
16845 or fixed-point type, use the inner type. This is because we have no
16846 support for unnamed types in base_type_die. This can happen if this is
16847 an Ada subrange type. Correct solution is emit a subrange type die. */
16848 if ((code
== INTEGER_TYPE
|| code
== REAL_TYPE
|| code
== FIXED_POINT_TYPE
)
16849 && TREE_TYPE (type
) != 0 && TYPE_NAME (type
) == 0)
16850 type
= TREE_TYPE (type
), code
= TREE_CODE (type
);
16852 if (code
== ERROR_MARK
16853 /* Handle a special case. For functions whose return type is void, we
16854 generate *no* type attribute. (Note that no object may have type
16855 `void', so this only applies to function return types). */
16856 || code
== VOID_TYPE
)
16859 type_die
= modified_type_die (type
,
16860 decl_const
|| TYPE_READONLY (type
),
16861 decl_volatile
|| TYPE_VOLATILE (type
),
16864 if (type_die
!= NULL
)
16865 add_AT_die_ref (object_die
, DW_AT_type
, type_die
);
16868 /* Given an object die, add the calling convention attribute for the
16869 function call type. */
16871 add_calling_convention_attribute (dw_die_ref subr_die
, tree decl
)
16873 enum dwarf_calling_convention value
= DW_CC_normal
;
16875 value
= ((enum dwarf_calling_convention
)
16876 targetm
.dwarf_calling_convention (TREE_TYPE (decl
)));
16879 && !strcmp (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
)), "MAIN__"))
16881 /* DWARF 2 doesn't provide a way to identify a program's source-level
16882 entry point. DW_AT_calling_convention attributes are only meant
16883 to describe functions' calling conventions. However, lacking a
16884 better way to signal the Fortran main program, we used this for
16885 a long time, following existing custom. Now, DWARF 4 has
16886 DW_AT_main_subprogram, which we add below, but some tools still
16887 rely on the old way, which we thus keep. */
16888 value
= DW_CC_program
;
16890 if (dwarf_version
>= 4 || !dwarf_strict
)
16891 add_AT_flag (subr_die
, DW_AT_main_subprogram
, 1);
16894 /* Only add the attribute if the backend requests it, and
16895 is not DW_CC_normal. */
16896 if (value
&& (value
!= DW_CC_normal
))
16897 add_AT_unsigned (subr_die
, DW_AT_calling_convention
, value
);
16900 /* Given a tree pointer to a struct, class, union, or enum type node, return
16901 a pointer to the (string) tag name for the given type, or zero if the type
16902 was declared without a tag. */
16904 static const char *
16905 type_tag (const_tree type
)
16907 const char *name
= 0;
16909 if (TYPE_NAME (type
) != 0)
16913 /* Find the IDENTIFIER_NODE for the type name. */
16914 if (TREE_CODE (TYPE_NAME (type
)) == IDENTIFIER_NODE
16915 && !TYPE_NAMELESS (type
))
16916 t
= TYPE_NAME (type
);
16918 /* The g++ front end makes the TYPE_NAME of *each* tagged type point to
16919 a TYPE_DECL node, regardless of whether or not a `typedef' was
16921 else if (TREE_CODE (TYPE_NAME (type
)) == TYPE_DECL
16922 && ! DECL_IGNORED_P (TYPE_NAME (type
)))
16924 /* We want to be extra verbose. Don't call dwarf_name if
16925 DECL_NAME isn't set. The default hook for decl_printable_name
16926 doesn't like that, and in this context it's correct to return
16927 0, instead of "<anonymous>" or the like. */
16928 if (DECL_NAME (TYPE_NAME (type
))
16929 && !DECL_NAMELESS (TYPE_NAME (type
)))
16930 name
= lang_hooks
.dwarf_name (TYPE_NAME (type
), 2);
16933 /* Now get the name as a string, or invent one. */
16934 if (!name
&& t
!= 0)
16935 name
= IDENTIFIER_POINTER (t
);
16938 return (name
== 0 || *name
== '\0') ? 0 : name
;
16941 /* Return the type associated with a data member, make a special check
16942 for bit field types. */
16945 member_declared_type (const_tree member
)
16947 return (DECL_BIT_FIELD_TYPE (member
)
16948 ? DECL_BIT_FIELD_TYPE (member
) : TREE_TYPE (member
));
16951 /* Get the decl's label, as described by its RTL. This may be different
16952 from the DECL_NAME name used in the source file. */
16955 static const char *
16956 decl_start_label (tree decl
)
16959 const char *fnname
;
16961 x
= DECL_RTL (decl
);
16962 gcc_assert (MEM_P (x
));
16965 gcc_assert (GET_CODE (x
) == SYMBOL_REF
);
16967 fnname
= XSTR (x
, 0);
16972 /* These routines generate the internal representation of the DIE's for
16973 the compilation unit. Debugging information is collected by walking
16974 the declaration trees passed in from dwarf2out_decl(). */
16977 gen_array_type_die (tree type
, dw_die_ref context_die
)
16979 dw_die_ref scope_die
= scope_die_for (type
, context_die
);
16980 dw_die_ref array_die
;
16982 /* GNU compilers represent multidimensional array types as sequences of one
16983 dimensional array types whose element types are themselves array types.
16984 We sometimes squish that down to a single array_type DIE with multiple
16985 subscripts in the Dwarf debugging info. The draft Dwarf specification
16986 say that we are allowed to do this kind of compression in C, because
16987 there is no difference between an array of arrays and a multidimensional
16988 array. We don't do this for Ada to remain as close as possible to the
16989 actual representation, which is especially important against the language
16990 flexibilty wrt arrays of variable size. */
16992 bool collapse_nested_arrays
= !is_ada ();
16995 /* Emit DW_TAG_string_type for Fortran character types (with kind 1 only, as
16996 DW_TAG_string_type doesn't have DW_AT_type attribute). */
16997 if (TYPE_STRING_FLAG (type
)
16998 && TREE_CODE (type
) == ARRAY_TYPE
17000 && TYPE_MODE (TREE_TYPE (type
)) == TYPE_MODE (char_type_node
))
17002 HOST_WIDE_INT size
;
17004 array_die
= new_die (DW_TAG_string_type
, scope_die
, type
);
17005 add_name_attribute (array_die
, type_tag (type
));
17006 equate_type_number_to_die (type
, array_die
);
17007 size
= int_size_in_bytes (type
);
17009 add_AT_unsigned (array_die
, DW_AT_byte_size
, size
);
17010 else if (TYPE_DOMAIN (type
) != NULL_TREE
17011 && TYPE_MAX_VALUE (TYPE_DOMAIN (type
)) != NULL_TREE
17012 && DECL_P (TYPE_MAX_VALUE (TYPE_DOMAIN (type
))))
17014 tree szdecl
= TYPE_MAX_VALUE (TYPE_DOMAIN (type
));
17015 dw_loc_list_ref loc
= loc_list_from_tree (szdecl
, 2);
17017 size
= int_size_in_bytes (TREE_TYPE (szdecl
));
17018 if (loc
&& size
> 0)
17020 add_AT_location_description (array_die
, DW_AT_string_length
, loc
);
17021 if (size
!= DWARF2_ADDR_SIZE
)
17022 add_AT_unsigned (array_die
, DW_AT_byte_size
, size
);
17028 array_die
= new_die (DW_TAG_array_type
, scope_die
, type
);
17029 add_name_attribute (array_die
, type_tag (type
));
17030 equate_type_number_to_die (type
, array_die
);
17032 if (TREE_CODE (type
) == VECTOR_TYPE
)
17033 add_AT_flag (array_die
, DW_AT_GNU_vector
, 1);
17035 /* For Fortran multidimensional arrays use DW_ORD_col_major ordering. */
17037 && TREE_CODE (type
) == ARRAY_TYPE
17038 && TREE_CODE (TREE_TYPE (type
)) == ARRAY_TYPE
17039 && !TYPE_STRING_FLAG (TREE_TYPE (type
)))
17040 add_AT_unsigned (array_die
, DW_AT_ordering
, DW_ORD_col_major
);
17043 /* We default the array ordering. SDB will probably do
17044 the right things even if DW_AT_ordering is not present. It's not even
17045 an issue until we start to get into multidimensional arrays anyway. If
17046 SDB is ever caught doing the Wrong Thing for multi-dimensional arrays,
17047 then we'll have to put the DW_AT_ordering attribute back in. (But if
17048 and when we find out that we need to put these in, we will only do so
17049 for multidimensional arrays. */
17050 add_AT_unsigned (array_die
, DW_AT_ordering
, DW_ORD_row_major
);
17053 if (TREE_CODE (type
) == VECTOR_TYPE
)
17055 /* For VECTOR_TYPEs we use an array die with appropriate bounds. */
17056 dw_die_ref subrange_die
= new_die (DW_TAG_subrange_type
, array_die
, NULL
);
17057 add_bound_info (subrange_die
, DW_AT_lower_bound
, size_zero_node
);
17058 add_bound_info (subrange_die
, DW_AT_upper_bound
,
17059 size_int (TYPE_VECTOR_SUBPARTS (type
) - 1));
17062 add_subscript_info (array_die
, type
, collapse_nested_arrays
);
17064 /* Add representation of the type of the elements of this array type and
17065 emit the corresponding DIE if we haven't done it already. */
17066 element_type
= TREE_TYPE (type
);
17067 if (collapse_nested_arrays
)
17068 while (TREE_CODE (element_type
) == ARRAY_TYPE
)
17070 if (TYPE_STRING_FLAG (element_type
) && is_fortran ())
17072 element_type
= TREE_TYPE (element_type
);
17075 add_type_attribute (array_die
, element_type
, 0, 0, context_die
);
17077 add_gnat_descriptive_type_attribute (array_die
, type
, context_die
);
17078 if (TYPE_ARTIFICIAL (type
))
17079 add_AT_flag (array_die
, DW_AT_artificial
, 1);
17081 if (get_AT (array_die
, DW_AT_name
))
17082 add_pubtype (type
, array_die
);
17085 static dw_loc_descr_ref
17086 descr_info_loc (tree val
, tree base_decl
)
17088 HOST_WIDE_INT size
;
17089 dw_loc_descr_ref loc
, loc2
;
17090 enum dwarf_location_atom op
;
17092 if (val
== base_decl
)
17093 return new_loc_descr (DW_OP_push_object_address
, 0, 0);
17095 switch (TREE_CODE (val
))
17098 return descr_info_loc (TREE_OPERAND (val
, 0), base_decl
);
17100 return loc_descriptor_from_tree (val
, 0);
17102 if (tree_fits_shwi_p (val
))
17103 return int_loc_descriptor (tree_to_shwi (val
));
17106 size
= int_size_in_bytes (TREE_TYPE (val
));
17109 loc
= descr_info_loc (TREE_OPERAND (val
, 0), base_decl
);
17112 if (size
== DWARF2_ADDR_SIZE
)
17113 add_loc_descr (&loc
, new_loc_descr (DW_OP_deref
, 0, 0));
17115 add_loc_descr (&loc
, new_loc_descr (DW_OP_deref_size
, size
, 0));
17117 case POINTER_PLUS_EXPR
:
17119 if (tree_fits_uhwi_p (TREE_OPERAND (val
, 1))
17120 && tree_to_uhwi (TREE_OPERAND (val
, 1)) < 16384)
17122 loc
= descr_info_loc (TREE_OPERAND (val
, 0), base_decl
);
17125 loc_descr_plus_const (&loc
, tree_to_shwi (TREE_OPERAND (val
, 1)));
17131 loc
= descr_info_loc (TREE_OPERAND (val
, 0), base_decl
);
17134 loc2
= descr_info_loc (TREE_OPERAND (val
, 1), base_decl
);
17137 add_loc_descr (&loc
, loc2
);
17138 add_loc_descr (&loc2
, new_loc_descr (op
, 0, 0));
17160 add_descr_info_field (dw_die_ref die
, enum dwarf_attribute attr
,
17161 tree val
, tree base_decl
)
17163 dw_loc_descr_ref loc
;
17165 if (tree_fits_shwi_p (val
))
17167 add_AT_unsigned (die
, attr
, tree_to_shwi (val
));
17171 loc
= descr_info_loc (val
, base_decl
);
17175 add_AT_loc (die
, attr
, loc
);
17178 /* This routine generates DIE for array with hidden descriptor, details
17179 are filled into *info by a langhook. */
17182 gen_descr_array_type_die (tree type
, struct array_descr_info
*info
,
17183 dw_die_ref context_die
)
17185 dw_die_ref scope_die
= scope_die_for (type
, context_die
);
17186 dw_die_ref array_die
;
17189 array_die
= new_die (DW_TAG_array_type
, scope_die
, type
);
17190 add_name_attribute (array_die
, type_tag (type
));
17191 equate_type_number_to_die (type
, array_die
);
17193 /* For Fortran multidimensional arrays use DW_ORD_col_major ordering. */
17195 && info
->ndimensions
>= 2)
17196 add_AT_unsigned (array_die
, DW_AT_ordering
, DW_ORD_col_major
);
17198 if (info
->data_location
)
17199 add_descr_info_field (array_die
, DW_AT_data_location
, info
->data_location
,
17201 if (info
->associated
)
17202 add_descr_info_field (array_die
, DW_AT_associated
, info
->associated
,
17204 if (info
->allocated
)
17205 add_descr_info_field (array_die
, DW_AT_allocated
, info
->allocated
,
17208 for (dim
= 0; dim
< info
->ndimensions
; dim
++)
17210 dw_die_ref subrange_die
17211 = new_die (DW_TAG_subrange_type
, array_die
, NULL
);
17213 if (info
->dimen
[dim
].lower_bound
)
17215 /* If it is the default value, omit it. */
17218 if (tree_fits_shwi_p (info
->dimen
[dim
].lower_bound
)
17219 && (dflt
= lower_bound_default ()) != -1
17220 && tree_to_shwi (info
->dimen
[dim
].lower_bound
) == dflt
)
17223 add_descr_info_field (subrange_die
, DW_AT_lower_bound
,
17224 info
->dimen
[dim
].lower_bound
,
17227 if (info
->dimen
[dim
].upper_bound
)
17228 add_descr_info_field (subrange_die
, DW_AT_upper_bound
,
17229 info
->dimen
[dim
].upper_bound
,
17231 if (info
->dimen
[dim
].stride
)
17232 add_descr_info_field (subrange_die
, DW_AT_byte_stride
,
17233 info
->dimen
[dim
].stride
,
17237 gen_type_die (info
->element_type
, context_die
);
17238 add_type_attribute (array_die
, info
->element_type
, 0, 0, context_die
);
17240 if (get_AT (array_die
, DW_AT_name
))
17241 add_pubtype (type
, array_die
);
17246 gen_entry_point_die (tree decl
, dw_die_ref context_die
)
17248 tree origin
= decl_ultimate_origin (decl
);
17249 dw_die_ref decl_die
= new_die (DW_TAG_entry_point
, context_die
, decl
);
17251 if (origin
!= NULL
)
17252 add_abstract_origin_attribute (decl_die
, origin
);
17255 add_name_and_src_coords_attributes (decl_die
, decl
);
17256 add_type_attribute (decl_die
, TREE_TYPE (TREE_TYPE (decl
)),
17257 0, 0, context_die
);
17260 if (DECL_ABSTRACT (decl
))
17261 equate_decl_number_to_die (decl
, decl_die
);
17263 add_AT_lbl_id (decl_die
, DW_AT_low_pc
, decl_start_label (decl
));
17267 /* Walk through the list of incomplete types again, trying once more to
17268 emit full debugging info for them. */
17271 retry_incomplete_types (void)
17275 for (i
= vec_safe_length (incomplete_types
) - 1; i
>= 0; i
--)
17276 if (should_emit_struct_debug ((*incomplete_types
)[i
], DINFO_USAGE_DIR_USE
))
17277 gen_type_die ((*incomplete_types
)[i
], comp_unit_die ());
17280 /* Determine what tag to use for a record type. */
17282 static enum dwarf_tag
17283 record_type_tag (tree type
)
17285 if (! lang_hooks
.types
.classify_record
)
17286 return DW_TAG_structure_type
;
17288 switch (lang_hooks
.types
.classify_record (type
))
17290 case RECORD_IS_STRUCT
:
17291 return DW_TAG_structure_type
;
17293 case RECORD_IS_CLASS
:
17294 return DW_TAG_class_type
;
17296 case RECORD_IS_INTERFACE
:
17297 if (dwarf_version
>= 3 || !dwarf_strict
)
17298 return DW_TAG_interface_type
;
17299 return DW_TAG_structure_type
;
17302 gcc_unreachable ();
17306 /* Generate a DIE to represent an enumeration type. Note that these DIEs
17307 include all of the information about the enumeration values also. Each
17308 enumerated type name/value is listed as a child of the enumerated type
17312 gen_enumeration_type_die (tree type
, dw_die_ref context_die
)
17314 dw_die_ref type_die
= lookup_type_die (type
);
17316 if (type_die
== NULL
)
17318 type_die
= new_die (DW_TAG_enumeration_type
,
17319 scope_die_for (type
, context_die
), type
);
17320 equate_type_number_to_die (type
, type_die
);
17321 add_name_attribute (type_die
, type_tag (type
));
17322 if (dwarf_version
>= 4 || !dwarf_strict
)
17324 if (ENUM_IS_SCOPED (type
))
17325 add_AT_flag (type_die
, DW_AT_enum_class
, 1);
17326 if (ENUM_IS_OPAQUE (type
))
17327 add_AT_flag (type_die
, DW_AT_declaration
, 1);
17330 else if (! TYPE_SIZE (type
))
17333 remove_AT (type_die
, DW_AT_declaration
);
17335 /* Handle a GNU C/C++ extension, i.e. incomplete enum types. If the
17336 given enum type is incomplete, do not generate the DW_AT_byte_size
17337 attribute or the DW_AT_element_list attribute. */
17338 if (TYPE_SIZE (type
))
17342 TREE_ASM_WRITTEN (type
) = 1;
17343 add_byte_size_attribute (type_die
, type
);
17344 if (TYPE_STUB_DECL (type
) != NULL_TREE
)
17346 add_src_coords_attributes (type_die
, TYPE_STUB_DECL (type
));
17347 add_accessibility_attribute (type_die
, TYPE_STUB_DECL (type
));
17350 /* If the first reference to this type was as the return type of an
17351 inline function, then it may not have a parent. Fix this now. */
17352 if (type_die
->die_parent
== NULL
)
17353 add_child_die (scope_die_for (type
, context_die
), type_die
);
17355 for (link
= TYPE_VALUES (type
);
17356 link
!= NULL
; link
= TREE_CHAIN (link
))
17358 dw_die_ref enum_die
= new_die (DW_TAG_enumerator
, type_die
, link
);
17359 tree value
= TREE_VALUE (link
);
17361 add_name_attribute (enum_die
,
17362 IDENTIFIER_POINTER (TREE_PURPOSE (link
)));
17364 if (TREE_CODE (value
) == CONST_DECL
)
17365 value
= DECL_INITIAL (value
);
17367 if (simple_type_size_in_bits (TREE_TYPE (value
))
17368 <= HOST_BITS_PER_WIDE_INT
|| tree_fits_shwi_p (value
))
17369 /* DWARF2 does not provide a way of indicating whether or
17370 not enumeration constants are signed or unsigned. GDB
17371 always assumes the values are signed, so we output all
17372 values as if they were signed. That means that
17373 enumeration constants with very large unsigned values
17374 will appear to have negative values in the debugger.
17376 TODO: the above comment is wrong, DWARF2 does provide
17377 DW_FORM_sdata/DW_FORM_udata to represent signed/unsigned data.
17378 This should be re-worked to use correct signed/unsigned
17379 int/double tags for all cases, instead of always treating as
17381 add_AT_int (enum_die
, DW_AT_const_value
, TREE_INT_CST_LOW (value
));
17383 /* Enumeration constants may be wider than HOST_WIDE_INT. Handle
17385 add_AT_double (enum_die
, DW_AT_const_value
,
17386 TREE_INT_CST_HIGH (value
), TREE_INT_CST_LOW (value
));
17389 add_gnat_descriptive_type_attribute (type_die
, type
, context_die
);
17390 if (TYPE_ARTIFICIAL (type
))
17391 add_AT_flag (type_die
, DW_AT_artificial
, 1);
17394 add_AT_flag (type_die
, DW_AT_declaration
, 1);
17396 add_pubtype (type
, type_die
);
17401 /* Generate a DIE to represent either a real live formal parameter decl or to
17402 represent just the type of some formal parameter position in some function
17405 Note that this routine is a bit unusual because its argument may be a
17406 ..._DECL node (i.e. either a PARM_DECL or perhaps a VAR_DECL which
17407 represents an inlining of some PARM_DECL) or else some sort of a ..._TYPE
17408 node. If it's the former then this function is being called to output a
17409 DIE to represent a formal parameter object (or some inlining thereof). If
17410 it's the latter, then this function is only being called to output a
17411 DW_TAG_formal_parameter DIE to stand as a placeholder for some formal
17412 argument type of some subprogram type.
17413 If EMIT_NAME_P is true, name and source coordinate attributes
17417 gen_formal_parameter_die (tree node
, tree origin
, bool emit_name_p
,
17418 dw_die_ref context_die
)
17420 tree node_or_origin
= node
? node
: origin
;
17421 tree ultimate_origin
;
17422 dw_die_ref parm_die
17423 = new_die (DW_TAG_formal_parameter
, context_die
, node
);
17425 switch (TREE_CODE_CLASS (TREE_CODE (node_or_origin
)))
17427 case tcc_declaration
:
17428 ultimate_origin
= decl_ultimate_origin (node_or_origin
);
17429 if (node
|| ultimate_origin
)
17430 origin
= ultimate_origin
;
17431 if (origin
!= NULL
)
17432 add_abstract_origin_attribute (parm_die
, origin
);
17433 else if (emit_name_p
)
17434 add_name_and_src_coords_attributes (parm_die
, node
);
17436 || (! DECL_ABSTRACT (node_or_origin
)
17437 && variably_modified_type_p (TREE_TYPE (node_or_origin
),
17438 decl_function_context
17439 (node_or_origin
))))
17441 tree type
= TREE_TYPE (node_or_origin
);
17442 if (decl_by_reference_p (node_or_origin
))
17443 add_type_attribute (parm_die
, TREE_TYPE (type
), 0, 0,
17446 add_type_attribute (parm_die
, type
,
17447 TREE_READONLY (node_or_origin
),
17448 TREE_THIS_VOLATILE (node_or_origin
),
17451 if (origin
== NULL
&& DECL_ARTIFICIAL (node
))
17452 add_AT_flag (parm_die
, DW_AT_artificial
, 1);
17454 if (node
&& node
!= origin
)
17455 equate_decl_number_to_die (node
, parm_die
);
17456 if (! DECL_ABSTRACT (node_or_origin
))
17457 add_location_or_const_value_attribute (parm_die
, node_or_origin
,
17458 node
== NULL
, DW_AT_location
);
17463 /* We were called with some kind of a ..._TYPE node. */
17464 add_type_attribute (parm_die
, node_or_origin
, 0, 0, context_die
);
17468 gcc_unreachable ();
17474 /* Generate and return a DW_TAG_GNU_formal_parameter_pack. Also generate
17475 children DW_TAG_formal_parameter DIEs representing the arguments of the
17478 PARM_PACK must be a function parameter pack.
17479 PACK_ARG is the first argument of the parameter pack. Its TREE_CHAIN
17480 must point to the subsequent arguments of the function PACK_ARG belongs to.
17481 SUBR_DIE is the DIE of the function PACK_ARG belongs to.
17482 If NEXT_ARG is non NULL, *NEXT_ARG is set to the function argument
17483 following the last one for which a DIE was generated. */
17486 gen_formal_parameter_pack_die (tree parm_pack
,
17488 dw_die_ref subr_die
,
17492 dw_die_ref parm_pack_die
;
17494 gcc_assert (parm_pack
17495 && lang_hooks
.function_parameter_pack_p (parm_pack
)
17498 parm_pack_die
= new_die (DW_TAG_GNU_formal_parameter_pack
, subr_die
, parm_pack
);
17499 add_src_coords_attributes (parm_pack_die
, parm_pack
);
17501 for (arg
= pack_arg
; arg
; arg
= DECL_CHAIN (arg
))
17503 if (! lang_hooks
.decls
.function_parm_expanded_from_pack_p (arg
,
17506 gen_formal_parameter_die (arg
, NULL
,
17507 false /* Don't emit name attribute. */,
17512 return parm_pack_die
;
17515 /* Generate a special type of DIE used as a stand-in for a trailing ellipsis
17516 at the end of an (ANSI prototyped) formal parameters list. */
17519 gen_unspecified_parameters_die (tree decl_or_type
, dw_die_ref context_die
)
17521 new_die (DW_TAG_unspecified_parameters
, context_die
, decl_or_type
);
17524 /* Generate a list of nameless DW_TAG_formal_parameter DIEs (and perhaps a
17525 DW_TAG_unspecified_parameters DIE) to represent the types of the formal
17526 parameters as specified in some function type specification (except for
17527 those which appear as part of a function *definition*). */
17530 gen_formal_types_die (tree function_or_method_type
, dw_die_ref context_die
)
17533 tree formal_type
= NULL
;
17534 tree first_parm_type
;
17537 if (TREE_CODE (function_or_method_type
) == FUNCTION_DECL
)
17539 arg
= DECL_ARGUMENTS (function_or_method_type
);
17540 function_or_method_type
= TREE_TYPE (function_or_method_type
);
17545 first_parm_type
= TYPE_ARG_TYPES (function_or_method_type
);
17547 /* Make our first pass over the list of formal parameter types and output a
17548 DW_TAG_formal_parameter DIE for each one. */
17549 for (link
= first_parm_type
; link
; )
17551 dw_die_ref parm_die
;
17553 formal_type
= TREE_VALUE (link
);
17554 if (formal_type
== void_type_node
)
17557 /* Output a (nameless) DIE to represent the formal parameter itself. */
17558 parm_die
= gen_formal_parameter_die (formal_type
, NULL
,
17559 true /* Emit name attribute. */,
17561 if (TREE_CODE (function_or_method_type
) == METHOD_TYPE
17562 && link
== first_parm_type
)
17564 add_AT_flag (parm_die
, DW_AT_artificial
, 1);
17565 if (dwarf_version
>= 3 || !dwarf_strict
)
17566 add_AT_die_ref (context_die
, DW_AT_object_pointer
, parm_die
);
17568 else if (arg
&& DECL_ARTIFICIAL (arg
))
17569 add_AT_flag (parm_die
, DW_AT_artificial
, 1);
17571 link
= TREE_CHAIN (link
);
17573 arg
= DECL_CHAIN (arg
);
17576 /* If this function type has an ellipsis, add a
17577 DW_TAG_unspecified_parameters DIE to the end of the parameter list. */
17578 if (formal_type
!= void_type_node
)
17579 gen_unspecified_parameters_die (function_or_method_type
, context_die
);
17581 /* Make our second (and final) pass over the list of formal parameter types
17582 and output DIEs to represent those types (as necessary). */
17583 for (link
= TYPE_ARG_TYPES (function_or_method_type
);
17584 link
&& TREE_VALUE (link
);
17585 link
= TREE_CHAIN (link
))
17586 gen_type_die (TREE_VALUE (link
), context_die
);
17589 /* We want to generate the DIE for TYPE so that we can generate the
17590 die for MEMBER, which has been defined; we will need to refer back
17591 to the member declaration nested within TYPE. If we're trying to
17592 generate minimal debug info for TYPE, processing TYPE won't do the
17593 trick; we need to attach the member declaration by hand. */
17596 gen_type_die_for_member (tree type
, tree member
, dw_die_ref context_die
)
17598 gen_type_die (type
, context_die
);
17600 /* If we're trying to avoid duplicate debug info, we may not have
17601 emitted the member decl for this function. Emit it now. */
17602 if (TYPE_STUB_DECL (type
)
17603 && TYPE_DECL_SUPPRESS_DEBUG (TYPE_STUB_DECL (type
))
17604 && ! lookup_decl_die (member
))
17606 dw_die_ref type_die
;
17607 gcc_assert (!decl_ultimate_origin (member
));
17609 push_decl_scope (type
);
17610 type_die
= lookup_type_die_strip_naming_typedef (type
);
17611 if (TREE_CODE (member
) == FUNCTION_DECL
)
17612 gen_subprogram_die (member
, type_die
);
17613 else if (TREE_CODE (member
) == FIELD_DECL
)
17615 /* Ignore the nameless fields that are used to skip bits but handle
17616 C++ anonymous unions and structs. */
17617 if (DECL_NAME (member
) != NULL_TREE
17618 || TREE_CODE (TREE_TYPE (member
)) == UNION_TYPE
17619 || TREE_CODE (TREE_TYPE (member
)) == RECORD_TYPE
)
17621 gen_type_die (member_declared_type (member
), type_die
);
17622 gen_field_die (member
, type_die
);
17626 gen_variable_die (member
, NULL_TREE
, type_die
);
17632 /* Forward declare these functions, because they are mutually recursive
17633 with their set_block_* pairing functions. */
17634 static void set_decl_origin_self (tree
);
17635 static void set_decl_abstract_flags (tree
, int);
17637 /* Given a pointer to some BLOCK node, if the BLOCK_ABSTRACT_ORIGIN for the
17638 given BLOCK node is NULL, set the BLOCK_ABSTRACT_ORIGIN for the node so
17639 that it points to the node itself, thus indicating that the node is its
17640 own (abstract) origin. Additionally, if the BLOCK_ABSTRACT_ORIGIN for
17641 the given node is NULL, recursively descend the decl/block tree which
17642 it is the root of, and for each other ..._DECL or BLOCK node contained
17643 therein whose DECL_ABSTRACT_ORIGINs or BLOCK_ABSTRACT_ORIGINs are also
17644 still NULL, set *their* DECL_ABSTRACT_ORIGIN or BLOCK_ABSTRACT_ORIGIN
17645 values to point to themselves. */
17648 set_block_origin_self (tree stmt
)
17650 if (BLOCK_ABSTRACT_ORIGIN (stmt
) == NULL_TREE
)
17652 BLOCK_ABSTRACT_ORIGIN (stmt
) = stmt
;
17657 for (local_decl
= BLOCK_VARS (stmt
);
17658 local_decl
!= NULL_TREE
;
17659 local_decl
= DECL_CHAIN (local_decl
))
17660 if (! DECL_EXTERNAL (local_decl
))
17661 set_decl_origin_self (local_decl
); /* Potential recursion. */
17667 for (subblock
= BLOCK_SUBBLOCKS (stmt
);
17668 subblock
!= NULL_TREE
;
17669 subblock
= BLOCK_CHAIN (subblock
))
17670 set_block_origin_self (subblock
); /* Recurse. */
17675 /* Given a pointer to some ..._DECL node, if the DECL_ABSTRACT_ORIGIN for
17676 the given ..._DECL node is NULL, set the DECL_ABSTRACT_ORIGIN for the
17677 node to so that it points to the node itself, thus indicating that the
17678 node represents its own (abstract) origin. Additionally, if the
17679 DECL_ABSTRACT_ORIGIN for the given node is NULL, recursively descend
17680 the decl/block tree of which the given node is the root of, and for
17681 each other ..._DECL or BLOCK node contained therein whose
17682 DECL_ABSTRACT_ORIGINs or BLOCK_ABSTRACT_ORIGINs are also still NULL,
17683 set *their* DECL_ABSTRACT_ORIGIN or BLOCK_ABSTRACT_ORIGIN values to
17684 point to themselves. */
17687 set_decl_origin_self (tree decl
)
17689 if (DECL_ABSTRACT_ORIGIN (decl
) == NULL_TREE
)
17691 DECL_ABSTRACT_ORIGIN (decl
) = decl
;
17692 if (TREE_CODE (decl
) == FUNCTION_DECL
)
17696 for (arg
= DECL_ARGUMENTS (decl
); arg
; arg
= DECL_CHAIN (arg
))
17697 DECL_ABSTRACT_ORIGIN (arg
) = arg
;
17698 if (DECL_INITIAL (decl
) != NULL_TREE
17699 && DECL_INITIAL (decl
) != error_mark_node
)
17700 set_block_origin_self (DECL_INITIAL (decl
));
17705 /* Given a pointer to some BLOCK node, and a boolean value to set the
17706 "abstract" flags to, set that value into the BLOCK_ABSTRACT flag for
17707 the given block, and for all local decls and all local sub-blocks
17708 (recursively) which are contained therein. */
17711 set_block_abstract_flags (tree stmt
, int setting
)
17717 BLOCK_ABSTRACT (stmt
) = setting
;
17719 for (local_decl
= BLOCK_VARS (stmt
);
17720 local_decl
!= NULL_TREE
;
17721 local_decl
= DECL_CHAIN (local_decl
))
17722 if (! DECL_EXTERNAL (local_decl
))
17723 set_decl_abstract_flags (local_decl
, setting
);
17725 for (i
= 0; i
< BLOCK_NUM_NONLOCALIZED_VARS (stmt
); i
++)
17727 local_decl
= BLOCK_NONLOCALIZED_VAR (stmt
, i
);
17728 if ((TREE_CODE (local_decl
) == VAR_DECL
&& !TREE_STATIC (local_decl
))
17729 || TREE_CODE (local_decl
) == PARM_DECL
)
17730 set_decl_abstract_flags (local_decl
, setting
);
17733 for (subblock
= BLOCK_SUBBLOCKS (stmt
);
17734 subblock
!= NULL_TREE
;
17735 subblock
= BLOCK_CHAIN (subblock
))
17736 set_block_abstract_flags (subblock
, setting
);
17739 /* Given a pointer to some ..._DECL node, and a boolean value to set the
17740 "abstract" flags to, set that value into the DECL_ABSTRACT flag for the
17741 given decl, and (in the case where the decl is a FUNCTION_DECL) also
17742 set the abstract flags for all of the parameters, local vars, local
17743 blocks and sub-blocks (recursively) to the same setting. */
17746 set_decl_abstract_flags (tree decl
, int setting
)
17748 DECL_ABSTRACT (decl
) = setting
;
17749 if (TREE_CODE (decl
) == FUNCTION_DECL
)
17753 for (arg
= DECL_ARGUMENTS (decl
); arg
; arg
= DECL_CHAIN (arg
))
17754 DECL_ABSTRACT (arg
) = setting
;
17755 if (DECL_INITIAL (decl
) != NULL_TREE
17756 && DECL_INITIAL (decl
) != error_mark_node
)
17757 set_block_abstract_flags (DECL_INITIAL (decl
), setting
);
17761 /* Generate the DWARF2 info for the "abstract" instance of a function which we
17762 may later generate inlined and/or out-of-line instances of. */
17765 dwarf2out_abstract_function (tree decl
)
17767 dw_die_ref old_die
;
17771 htab_t old_decl_loc_table
;
17772 htab_t old_cached_dw_loc_list_table
;
17773 int old_call_site_count
, old_tail_call_site_count
;
17774 struct call_arg_loc_node
*old_call_arg_locations
;
17776 /* Make sure we have the actual abstract inline, not a clone. */
17777 decl
= DECL_ORIGIN (decl
);
17779 old_die
= lookup_decl_die (decl
);
17780 if (old_die
&& get_AT (old_die
, DW_AT_inline
))
17781 /* We've already generated the abstract instance. */
17784 /* We can be called while recursively when seeing block defining inlined subroutine
17785 DIE. Be sure to not clobber the outer location table nor use it or we would
17786 get locations in abstract instantces. */
17787 old_decl_loc_table
= decl_loc_table
;
17788 decl_loc_table
= NULL
;
17789 old_cached_dw_loc_list_table
= cached_dw_loc_list_table
;
17790 cached_dw_loc_list_table
= NULL
;
17791 old_call_arg_locations
= call_arg_locations
;
17792 call_arg_locations
= NULL
;
17793 old_call_site_count
= call_site_count
;
17794 call_site_count
= -1;
17795 old_tail_call_site_count
= tail_call_site_count
;
17796 tail_call_site_count
= -1;
17798 /* Be sure we've emitted the in-class declaration DIE (if any) first, so
17799 we don't get confused by DECL_ABSTRACT. */
17800 if (debug_info_level
> DINFO_LEVEL_TERSE
)
17802 context
= decl_class_context (decl
);
17804 gen_type_die_for_member
17805 (context
, decl
, decl_function_context (decl
) ? NULL
: comp_unit_die ());
17808 /* Pretend we've just finished compiling this function. */
17809 save_fn
= current_function_decl
;
17810 current_function_decl
= decl
;
17812 was_abstract
= DECL_ABSTRACT (decl
);
17813 set_decl_abstract_flags (decl
, 1);
17814 dwarf2out_decl (decl
);
17815 if (! was_abstract
)
17816 set_decl_abstract_flags (decl
, 0);
17818 current_function_decl
= save_fn
;
17819 decl_loc_table
= old_decl_loc_table
;
17820 cached_dw_loc_list_table
= old_cached_dw_loc_list_table
;
17821 call_arg_locations
= old_call_arg_locations
;
17822 call_site_count
= old_call_site_count
;
17823 tail_call_site_count
= old_tail_call_site_count
;
17826 /* Helper function of premark_used_types() which gets called through
17829 Marks the DIE of a given type in *SLOT as perennial, so it never gets
17830 marked as unused by prune_unused_types. */
17833 premark_used_types_helper (void **slot
, void *data ATTRIBUTE_UNUSED
)
17838 type
= (tree
) *slot
;
17839 die
= lookup_type_die (type
);
17841 die
->die_perennial_p
= 1;
17845 /* Helper function of premark_types_used_by_global_vars which gets called
17846 through htab_traverse.
17848 Marks the DIE of a given type in *SLOT as perennial, so it never gets
17849 marked as unused by prune_unused_types. The DIE of the type is marked
17850 only if the global variable using the type will actually be emitted. */
17853 premark_types_used_by_global_vars_helper (void **slot
,
17854 void *data ATTRIBUTE_UNUSED
)
17856 struct types_used_by_vars_entry
*entry
;
17859 entry
= (struct types_used_by_vars_entry
*) *slot
;
17860 gcc_assert (entry
->type
!= NULL
17861 && entry
->var_decl
!= NULL
);
17862 die
= lookup_type_die (entry
->type
);
17865 /* Ask cgraph if the global variable really is to be emitted.
17866 If yes, then we'll keep the DIE of ENTRY->TYPE. */
17867 varpool_node
*node
= varpool_get_node (entry
->var_decl
);
17868 if (node
&& node
->definition
)
17870 die
->die_perennial_p
= 1;
17871 /* Keep the parent DIEs as well. */
17872 while ((die
= die
->die_parent
) && die
->die_perennial_p
== 0)
17873 die
->die_perennial_p
= 1;
17879 /* Mark all members of used_types_hash as perennial. */
17882 premark_used_types (struct function
*fun
)
17884 if (fun
&& fun
->used_types_hash
)
17885 htab_traverse (fun
->used_types_hash
, premark_used_types_helper
, NULL
);
17888 /* Mark all members of types_used_by_vars_entry as perennial. */
17891 premark_types_used_by_global_vars (void)
17893 if (types_used_by_vars_hash
)
17894 htab_traverse (types_used_by_vars_hash
,
17895 premark_types_used_by_global_vars_helper
, NULL
);
17898 /* Generate a DW_TAG_GNU_call_site DIE in function DECL under SUBR_DIE
17899 for CA_LOC call arg loc node. */
17902 gen_call_site_die (tree decl
, dw_die_ref subr_die
,
17903 struct call_arg_loc_node
*ca_loc
)
17905 dw_die_ref stmt_die
= NULL
, die
;
17906 tree block
= ca_loc
->block
;
17909 && block
!= DECL_INITIAL (decl
)
17910 && TREE_CODE (block
) == BLOCK
)
17912 if (block_map
.length () > BLOCK_NUMBER (block
))
17913 stmt_die
= block_map
[BLOCK_NUMBER (block
)];
17916 block
= BLOCK_SUPERCONTEXT (block
);
17918 if (stmt_die
== NULL
)
17919 stmt_die
= subr_die
;
17920 die
= new_die (DW_TAG_GNU_call_site
, stmt_die
, NULL_TREE
);
17921 add_AT_lbl_id (die
, DW_AT_low_pc
, ca_loc
->label
);
17922 if (ca_loc
->tail_call_p
)
17923 add_AT_flag (die
, DW_AT_GNU_tail_call
, 1);
17924 if (ca_loc
->symbol_ref
)
17926 dw_die_ref tdie
= lookup_decl_die (SYMBOL_REF_DECL (ca_loc
->symbol_ref
));
17928 add_AT_die_ref (die
, DW_AT_abstract_origin
, tdie
);
17930 add_AT_addr (die
, DW_AT_abstract_origin
, ca_loc
->symbol_ref
, false);
17935 /* Generate a DIE to represent a declared function (either file-scope or
17939 gen_subprogram_die (tree decl
, dw_die_ref context_die
)
17941 tree origin
= decl_ultimate_origin (decl
);
17942 dw_die_ref subr_die
;
17944 dw_die_ref old_die
= lookup_decl_die (decl
);
17945 int declaration
= (current_function_decl
!= decl
17946 || class_or_namespace_scope_p (context_die
));
17948 premark_used_types (DECL_STRUCT_FUNCTION (decl
));
17950 /* It is possible to have both DECL_ABSTRACT and DECLARATION be true if we
17951 started to generate the abstract instance of an inline, decided to output
17952 its containing class, and proceeded to emit the declaration of the inline
17953 from the member list for the class. If so, DECLARATION takes priority;
17954 we'll get back to the abstract instance when done with the class. */
17956 /* The class-scope declaration DIE must be the primary DIE. */
17957 if (origin
&& declaration
&& class_or_namespace_scope_p (context_die
))
17960 gcc_assert (!old_die
);
17963 /* Now that the C++ front end lazily declares artificial member fns, we
17964 might need to retrofit the declaration into its class. */
17965 if (!declaration
&& !origin
&& !old_die
17966 && DECL_CONTEXT (decl
) && TYPE_P (DECL_CONTEXT (decl
))
17967 && !class_or_namespace_scope_p (context_die
)
17968 && debug_info_level
> DINFO_LEVEL_TERSE
)
17969 old_die
= force_decl_die (decl
);
17971 if (origin
!= NULL
)
17973 gcc_assert (!declaration
|| local_scope_p (context_die
));
17975 /* Fixup die_parent for the abstract instance of a nested
17976 inline function. */
17977 if (old_die
&& old_die
->die_parent
== NULL
)
17978 add_child_die (context_die
, old_die
);
17980 subr_die
= new_die (DW_TAG_subprogram
, context_die
, decl
);
17981 add_abstract_origin_attribute (subr_die
, origin
);
17982 /* This is where the actual code for a cloned function is.
17983 Let's emit linkage name attribute for it. This helps
17984 debuggers to e.g, set breakpoints into
17985 constructors/destructors when the user asks "break
17987 add_linkage_name (subr_die
, decl
);
17991 expanded_location s
= expand_location (DECL_SOURCE_LOCATION (decl
));
17992 struct dwarf_file_data
* file_index
= lookup_filename (s
.file
);
17994 if (!get_AT_flag (old_die
, DW_AT_declaration
)
17995 /* We can have a normal definition following an inline one in the
17996 case of redefinition of GNU C extern inlines.
17997 It seems reasonable to use AT_specification in this case. */
17998 && !get_AT (old_die
, DW_AT_inline
))
18000 /* Detect and ignore this case, where we are trying to output
18001 something we have already output. */
18005 /* If the definition comes from the same place as the declaration,
18006 maybe use the old DIE. We always want the DIE for this function
18007 that has the *_pc attributes to be under comp_unit_die so the
18008 debugger can find it. We also need to do this for abstract
18009 instances of inlines, since the spec requires the out-of-line copy
18010 to have the same parent. For local class methods, this doesn't
18011 apply; we just use the old DIE. */
18012 if ((is_cu_die (old_die
->die_parent
) || context_die
== NULL
)
18013 && (DECL_ARTIFICIAL (decl
)
18014 || (get_AT_file (old_die
, DW_AT_decl_file
) == file_index
18015 && (get_AT_unsigned (old_die
, DW_AT_decl_line
)
18016 == (unsigned) s
.line
))))
18018 subr_die
= old_die
;
18020 /* Clear out the declaration attribute and the formal parameters.
18021 Do not remove all children, because it is possible that this
18022 declaration die was forced using force_decl_die(). In such
18023 cases die that forced declaration die (e.g. TAG_imported_module)
18024 is one of the children that we do not want to remove. */
18025 remove_AT (subr_die
, DW_AT_declaration
);
18026 remove_AT (subr_die
, DW_AT_object_pointer
);
18027 remove_child_TAG (subr_die
, DW_TAG_formal_parameter
);
18031 subr_die
= new_die (DW_TAG_subprogram
, context_die
, decl
);
18032 add_AT_specification (subr_die
, old_die
);
18033 add_pubname (decl
, subr_die
);
18034 if (get_AT_file (old_die
, DW_AT_decl_file
) != file_index
)
18035 add_AT_file (subr_die
, DW_AT_decl_file
, file_index
);
18036 if (get_AT_unsigned (old_die
, DW_AT_decl_line
) != (unsigned) s
.line
)
18037 add_AT_unsigned (subr_die
, DW_AT_decl_line
, s
.line
);
18039 /* If the prototype had an 'auto' or 'decltype(auto)' return type,
18040 emit the real type on the definition die. */
18041 if (is_cxx() && debug_info_level
> DINFO_LEVEL_TERSE
)
18043 dw_die_ref die
= get_AT_ref (old_die
, DW_AT_type
);
18044 if (die
== auto_die
|| die
== decltype_auto_die
)
18045 add_type_attribute (subr_die
, TREE_TYPE (TREE_TYPE (decl
)),
18046 0, 0, context_die
);
18052 subr_die
= new_die (DW_TAG_subprogram
, context_die
, decl
);
18054 if (TREE_PUBLIC (decl
))
18055 add_AT_flag (subr_die
, DW_AT_external
, 1);
18057 add_name_and_src_coords_attributes (subr_die
, decl
);
18058 add_pubname (decl
, subr_die
);
18059 if (debug_info_level
> DINFO_LEVEL_TERSE
)
18061 add_prototyped_attribute (subr_die
, TREE_TYPE (decl
));
18062 add_type_attribute (subr_die
, TREE_TYPE (TREE_TYPE (decl
)),
18063 0, 0, context_die
);
18066 add_pure_or_virtual_attribute (subr_die
, decl
);
18067 if (DECL_ARTIFICIAL (decl
))
18068 add_AT_flag (subr_die
, DW_AT_artificial
, 1);
18070 add_accessibility_attribute (subr_die
, decl
);
18075 if (!old_die
|| !get_AT (old_die
, DW_AT_inline
))
18077 add_AT_flag (subr_die
, DW_AT_declaration
, 1);
18079 /* If this is an explicit function declaration then generate
18080 a DW_AT_explicit attribute. */
18081 if (lang_hooks
.decls
.function_decl_explicit_p (decl
)
18082 && (dwarf_version
>= 3 || !dwarf_strict
))
18083 add_AT_flag (subr_die
, DW_AT_explicit
, 1);
18085 /* The first time we see a member function, it is in the context of
18086 the class to which it belongs. We make sure of this by emitting
18087 the class first. The next time is the definition, which is
18088 handled above. The two may come from the same source text.
18090 Note that force_decl_die() forces function declaration die. It is
18091 later reused to represent definition. */
18092 equate_decl_number_to_die (decl
, subr_die
);
18095 else if (DECL_ABSTRACT (decl
))
18097 if (DECL_DECLARED_INLINE_P (decl
))
18099 if (cgraph_function_possibly_inlined_p (decl
))
18100 add_AT_unsigned (subr_die
, DW_AT_inline
, DW_INL_declared_inlined
);
18102 add_AT_unsigned (subr_die
, DW_AT_inline
, DW_INL_declared_not_inlined
);
18106 if (cgraph_function_possibly_inlined_p (decl
))
18107 add_AT_unsigned (subr_die
, DW_AT_inline
, DW_INL_inlined
);
18109 add_AT_unsigned (subr_die
, DW_AT_inline
, DW_INL_not_inlined
);
18112 if (DECL_DECLARED_INLINE_P (decl
)
18113 && lookup_attribute ("artificial", DECL_ATTRIBUTES (decl
)))
18114 add_AT_flag (subr_die
, DW_AT_artificial
, 1);
18116 equate_decl_number_to_die (decl
, subr_die
);
18118 else if (!DECL_EXTERNAL (decl
))
18120 HOST_WIDE_INT cfa_fb_offset
;
18121 struct function
*fun
= DECL_STRUCT_FUNCTION (decl
);
18123 if (!old_die
|| !get_AT (old_die
, DW_AT_inline
))
18124 equate_decl_number_to_die (decl
, subr_die
);
18126 gcc_checking_assert (fun
);
18127 if (!flag_reorder_blocks_and_partition
)
18129 dw_fde_ref fde
= fun
->fde
;
18130 if (fde
->dw_fde_begin
)
18132 /* We have already generated the labels. */
18133 add_AT_low_high_pc (subr_die
, fde
->dw_fde_begin
,
18134 fde
->dw_fde_end
, false);
18138 /* Create start/end labels and add the range. */
18139 char label_id_low
[MAX_ARTIFICIAL_LABEL_BYTES
];
18140 char label_id_high
[MAX_ARTIFICIAL_LABEL_BYTES
];
18141 ASM_GENERATE_INTERNAL_LABEL (label_id_low
, FUNC_BEGIN_LABEL
,
18142 current_function_funcdef_no
);
18143 ASM_GENERATE_INTERNAL_LABEL (label_id_high
, FUNC_END_LABEL
,
18144 current_function_funcdef_no
);
18145 add_AT_low_high_pc (subr_die
, label_id_low
, label_id_high
,
18149 #if VMS_DEBUGGING_INFO
18150 /* HP OpenVMS Industry Standard 64: DWARF Extensions
18151 Section 2.3 Prologue and Epilogue Attributes:
18152 When a breakpoint is set on entry to a function, it is generally
18153 desirable for execution to be suspended, not on the very first
18154 instruction of the function, but rather at a point after the
18155 function's frame has been set up, after any language defined local
18156 declaration processing has been completed, and before execution of
18157 the first statement of the function begins. Debuggers generally
18158 cannot properly determine where this point is. Similarly for a
18159 breakpoint set on exit from a function. The prologue and epilogue
18160 attributes allow a compiler to communicate the location(s) to use. */
18163 if (fde
->dw_fde_vms_end_prologue
)
18164 add_AT_vms_delta (subr_die
, DW_AT_HP_prologue
,
18165 fde
->dw_fde_begin
, fde
->dw_fde_vms_end_prologue
);
18167 if (fde
->dw_fde_vms_begin_epilogue
)
18168 add_AT_vms_delta (subr_die
, DW_AT_HP_epilogue
,
18169 fde
->dw_fde_begin
, fde
->dw_fde_vms_begin_epilogue
);
18176 /* Generate pubnames entries for the split function code ranges. */
18177 dw_fde_ref fde
= fun
->fde
;
18179 if (fde
->dw_fde_second_begin
)
18181 if (dwarf_version
>= 3 || !dwarf_strict
)
18183 /* We should use ranges for non-contiguous code section
18184 addresses. Use the actual code range for the initial
18185 section, since the HOT/COLD labels might precede an
18186 alignment offset. */
18187 bool range_list_added
= false;
18188 add_ranges_by_labels (subr_die
, fde
->dw_fde_begin
,
18189 fde
->dw_fde_end
, &range_list_added
,
18191 add_ranges_by_labels (subr_die
, fde
->dw_fde_second_begin
,
18192 fde
->dw_fde_second_end
,
18193 &range_list_added
, false);
18194 if (range_list_added
)
18199 /* There is no real support in DW2 for this .. so we make
18200 a work-around. First, emit the pub name for the segment
18201 containing the function label. Then make and emit a
18202 simplified subprogram DIE for the second segment with the
18203 name pre-fixed by __hot/cold_sect_of_. We use the same
18204 linkage name for the second die so that gdb will find both
18205 sections when given "b foo". */
18206 const char *name
= NULL
;
18207 tree decl_name
= DECL_NAME (decl
);
18208 dw_die_ref seg_die
;
18210 /* Do the 'primary' section. */
18211 add_AT_low_high_pc (subr_die
, fde
->dw_fde_begin
,
18212 fde
->dw_fde_end
, false);
18214 /* Build a minimal DIE for the secondary section. */
18215 seg_die
= new_die (DW_TAG_subprogram
,
18216 subr_die
->die_parent
, decl
);
18218 if (TREE_PUBLIC (decl
))
18219 add_AT_flag (seg_die
, DW_AT_external
, 1);
18221 if (decl_name
!= NULL
18222 && IDENTIFIER_POINTER (decl_name
) != NULL
)
18224 name
= dwarf2_name (decl
, 1);
18225 if (! DECL_ARTIFICIAL (decl
))
18226 add_src_coords_attributes (seg_die
, decl
);
18228 add_linkage_name (seg_die
, decl
);
18230 gcc_assert (name
!= NULL
);
18231 add_pure_or_virtual_attribute (seg_die
, decl
);
18232 if (DECL_ARTIFICIAL (decl
))
18233 add_AT_flag (seg_die
, DW_AT_artificial
, 1);
18235 name
= concat ("__second_sect_of_", name
, NULL
);
18236 add_AT_low_high_pc (seg_die
, fde
->dw_fde_second_begin
,
18237 fde
->dw_fde_second_end
, false);
18238 add_name_attribute (seg_die
, name
);
18239 if (want_pubnames ())
18240 add_pubname_string (name
, seg_die
);
18244 add_AT_low_high_pc (subr_die
, fde
->dw_fde_begin
, fde
->dw_fde_end
,
18248 cfa_fb_offset
= CFA_FRAME_BASE_OFFSET (decl
);
18250 /* We define the "frame base" as the function's CFA. This is more
18251 convenient for several reasons: (1) It's stable across the prologue
18252 and epilogue, which makes it better than just a frame pointer,
18253 (2) With dwarf3, there exists a one-byte encoding that allows us
18254 to reference the .debug_frame data by proxy, but failing that,
18255 (3) We can at least reuse the code inspection and interpretation
18256 code that determines the CFA position at various points in the
18258 if (dwarf_version
>= 3 && targetm
.debug_unwind_info () == UI_DWARF2
)
18260 dw_loc_descr_ref op
= new_loc_descr (DW_OP_call_frame_cfa
, 0, 0);
18261 add_AT_loc (subr_die
, DW_AT_frame_base
, op
);
18265 dw_loc_list_ref list
= convert_cfa_to_fb_loc_list (cfa_fb_offset
);
18266 if (list
->dw_loc_next
)
18267 add_AT_loc_list (subr_die
, DW_AT_frame_base
, list
);
18269 add_AT_loc (subr_die
, DW_AT_frame_base
, list
->expr
);
18272 /* Compute a displacement from the "steady-state frame pointer" to
18273 the CFA. The former is what all stack slots and argument slots
18274 will reference in the rtl; the latter is what we've told the
18275 debugger about. We'll need to adjust all frame_base references
18276 by this displacement. */
18277 compute_frame_pointer_to_fb_displacement (cfa_fb_offset
);
18279 if (fun
->static_chain_decl
)
18280 add_AT_location_description (subr_die
, DW_AT_static_link
,
18281 loc_list_from_tree (fun
->static_chain_decl
, 2));
18284 /* Generate child dies for template paramaters. */
18285 if (debug_info_level
> DINFO_LEVEL_TERSE
)
18286 gen_generic_params_dies (decl
);
18288 /* Now output descriptions of the arguments for this function. This gets
18289 (unnecessarily?) complex because of the fact that the DECL_ARGUMENT list
18290 for a FUNCTION_DECL doesn't indicate cases where there was a trailing
18291 `...' at the end of the formal parameter list. In order to find out if
18292 there was a trailing ellipsis or not, we must instead look at the type
18293 associated with the FUNCTION_DECL. This will be a node of type
18294 FUNCTION_TYPE. If the chain of type nodes hanging off of this
18295 FUNCTION_TYPE node ends with a void_type_node then there should *not* be
18296 an ellipsis at the end. */
18298 /* In the case where we are describing a mere function declaration, all we
18299 need to do here (and all we *can* do here) is to describe the *types* of
18300 its formal parameters. */
18301 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
18303 else if (declaration
)
18304 gen_formal_types_die (decl
, subr_die
);
18307 /* Generate DIEs to represent all known formal parameters. */
18308 tree parm
= DECL_ARGUMENTS (decl
);
18309 tree generic_decl
= lang_hooks
.decls
.get_generic_function_decl (decl
);
18310 tree generic_decl_parm
= generic_decl
18311 ? DECL_ARGUMENTS (generic_decl
)
18314 /* Now we want to walk the list of parameters of the function and
18315 emit their relevant DIEs.
18317 We consider the case of DECL being an instance of a generic function
18318 as well as it being a normal function.
18320 If DECL is an instance of a generic function we walk the
18321 parameters of the generic function declaration _and_ the parameters of
18322 DECL itself. This is useful because we want to emit specific DIEs for
18323 function parameter packs and those are declared as part of the
18324 generic function declaration. In that particular case,
18325 the parameter pack yields a DW_TAG_GNU_formal_parameter_pack DIE.
18326 That DIE has children DIEs representing the set of arguments
18327 of the pack. Note that the set of pack arguments can be empty.
18328 In that case, the DW_TAG_GNU_formal_parameter_pack DIE will not have any
18331 Otherwise, we just consider the parameters of DECL. */
18332 while (generic_decl_parm
|| parm
)
18334 if (generic_decl_parm
18335 && lang_hooks
.function_parameter_pack_p (generic_decl_parm
))
18336 gen_formal_parameter_pack_die (generic_decl_parm
,
18341 dw_die_ref parm_die
= gen_decl_die (parm
, NULL
, subr_die
);
18343 if (parm
== DECL_ARGUMENTS (decl
)
18344 && TREE_CODE (TREE_TYPE (decl
)) == METHOD_TYPE
18346 && (dwarf_version
>= 3 || !dwarf_strict
))
18347 add_AT_die_ref (subr_die
, DW_AT_object_pointer
, parm_die
);
18349 parm
= DECL_CHAIN (parm
);
18352 if (generic_decl_parm
)
18353 generic_decl_parm
= DECL_CHAIN (generic_decl_parm
);
18356 /* Decide whether we need an unspecified_parameters DIE at the end.
18357 There are 2 more cases to do this for: 1) the ansi ... declaration -
18358 this is detectable when the end of the arg list is not a
18359 void_type_node 2) an unprototyped function declaration (not a
18360 definition). This just means that we have no info about the
18361 parameters at all. */
18362 if (prototype_p (TREE_TYPE (decl
)))
18364 /* This is the prototyped case, check for.... */
18365 if (stdarg_p (TREE_TYPE (decl
)))
18366 gen_unspecified_parameters_die (decl
, subr_die
);
18368 else if (DECL_INITIAL (decl
) == NULL_TREE
)
18369 gen_unspecified_parameters_die (decl
, subr_die
);
18372 /* Output Dwarf info for all of the stuff within the body of the function
18373 (if it has one - it may be just a declaration). */
18374 outer_scope
= DECL_INITIAL (decl
);
18376 /* OUTER_SCOPE is a pointer to the outermost BLOCK node created to represent
18377 a function. This BLOCK actually represents the outermost binding contour
18378 for the function, i.e. the contour in which the function's formal
18379 parameters and labels get declared. Curiously, it appears that the front
18380 end doesn't actually put the PARM_DECL nodes for the current function onto
18381 the BLOCK_VARS list for this outer scope, but are strung off of the
18382 DECL_ARGUMENTS list for the function instead.
18384 The BLOCK_VARS list for the `outer_scope' does provide us with a list of
18385 the LABEL_DECL nodes for the function however, and we output DWARF info
18386 for those in decls_for_scope. Just within the `outer_scope' there will be
18387 a BLOCK node representing the function's outermost pair of curly braces,
18388 and any blocks used for the base and member initializers of a C++
18389 constructor function. */
18390 if (! declaration
&& outer_scope
&& TREE_CODE (outer_scope
) != ERROR_MARK
)
18392 int call_site_note_count
= 0;
18393 int tail_call_site_note_count
= 0;
18395 /* Emit a DW_TAG_variable DIE for a named return value. */
18396 if (DECL_NAME (DECL_RESULT (decl
)))
18397 gen_decl_die (DECL_RESULT (decl
), NULL
, subr_die
);
18399 current_function_has_inlines
= 0;
18400 decls_for_scope (outer_scope
, subr_die
, 0);
18402 if (call_arg_locations
&& !dwarf_strict
)
18404 struct call_arg_loc_node
*ca_loc
;
18405 for (ca_loc
= call_arg_locations
; ca_loc
; ca_loc
= ca_loc
->next
)
18407 dw_die_ref die
= NULL
;
18408 rtx tloc
= NULL_RTX
, tlocc
= NULL_RTX
;
18411 for (arg
= NOTE_VAR_LOCATION (ca_loc
->call_arg_loc_note
);
18412 arg
; arg
= next_arg
)
18414 dw_loc_descr_ref reg
, val
;
18415 enum machine_mode mode
= GET_MODE (XEXP (XEXP (arg
, 0), 1));
18416 dw_die_ref cdie
, tdie
= NULL
;
18418 next_arg
= XEXP (arg
, 1);
18419 if (REG_P (XEXP (XEXP (arg
, 0), 0))
18421 && MEM_P (XEXP (XEXP (next_arg
, 0), 0))
18422 && REG_P (XEXP (XEXP (XEXP (next_arg
, 0), 0), 0))
18423 && REGNO (XEXP (XEXP (arg
, 0), 0))
18424 == REGNO (XEXP (XEXP (XEXP (next_arg
, 0), 0), 0)))
18425 next_arg
= XEXP (next_arg
, 1);
18426 if (mode
== VOIDmode
)
18428 mode
= GET_MODE (XEXP (XEXP (arg
, 0), 0));
18429 if (mode
== VOIDmode
)
18430 mode
= GET_MODE (XEXP (arg
, 0));
18432 if (mode
== VOIDmode
|| mode
== BLKmode
)
18434 if (XEXP (XEXP (arg
, 0), 0) == pc_rtx
)
18436 gcc_assert (ca_loc
->symbol_ref
== NULL_RTX
);
18437 tloc
= XEXP (XEXP (arg
, 0), 1);
18440 else if (GET_CODE (XEXP (XEXP (arg
, 0), 0)) == CLOBBER
18441 && XEXP (XEXP (XEXP (arg
, 0), 0), 0) == pc_rtx
)
18443 gcc_assert (ca_loc
->symbol_ref
== NULL_RTX
);
18444 tlocc
= XEXP (XEXP (arg
, 0), 1);
18448 if (REG_P (XEXP (XEXP (arg
, 0), 0)))
18449 reg
= reg_loc_descriptor (XEXP (XEXP (arg
, 0), 0),
18450 VAR_INIT_STATUS_INITIALIZED
);
18451 else if (MEM_P (XEXP (XEXP (arg
, 0), 0)))
18453 rtx mem
= XEXP (XEXP (arg
, 0), 0);
18454 reg
= mem_loc_descriptor (XEXP (mem
, 0),
18455 get_address_mode (mem
),
18457 VAR_INIT_STATUS_INITIALIZED
);
18459 else if (GET_CODE (XEXP (XEXP (arg
, 0), 0))
18460 == DEBUG_PARAMETER_REF
)
18463 = DEBUG_PARAMETER_REF_DECL (XEXP (XEXP (arg
, 0), 0));
18464 tdie
= lookup_decl_die (tdecl
);
18471 && GET_CODE (XEXP (XEXP (arg
, 0), 0))
18472 != DEBUG_PARAMETER_REF
)
18474 val
= mem_loc_descriptor (XEXP (XEXP (arg
, 0), 1), mode
,
18476 VAR_INIT_STATUS_INITIALIZED
);
18480 die
= gen_call_site_die (decl
, subr_die
, ca_loc
);
18481 cdie
= new_die (DW_TAG_GNU_call_site_parameter
, die
,
18484 add_AT_loc (cdie
, DW_AT_location
, reg
);
18485 else if (tdie
!= NULL
)
18486 add_AT_die_ref (cdie
, DW_AT_abstract_origin
, tdie
);
18487 add_AT_loc (cdie
, DW_AT_GNU_call_site_value
, val
);
18488 if (next_arg
!= XEXP (arg
, 1))
18490 mode
= GET_MODE (XEXP (XEXP (XEXP (arg
, 1), 0), 1));
18491 if (mode
== VOIDmode
)
18492 mode
= GET_MODE (XEXP (XEXP (XEXP (arg
, 1), 0), 0));
18493 val
= mem_loc_descriptor (XEXP (XEXP (XEXP (arg
, 1),
18496 VAR_INIT_STATUS_INITIALIZED
);
18498 add_AT_loc (cdie
, DW_AT_GNU_call_site_data_value
, val
);
18502 && (ca_loc
->symbol_ref
|| tloc
))
18503 die
= gen_call_site_die (decl
, subr_die
, ca_loc
);
18504 if (die
!= NULL
&& (tloc
!= NULL_RTX
|| tlocc
!= NULL_RTX
))
18506 dw_loc_descr_ref tval
= NULL
;
18508 if (tloc
!= NULL_RTX
)
18509 tval
= mem_loc_descriptor (tloc
,
18510 GET_MODE (tloc
) == VOIDmode
18511 ? Pmode
: GET_MODE (tloc
),
18513 VAR_INIT_STATUS_INITIALIZED
);
18515 add_AT_loc (die
, DW_AT_GNU_call_site_target
, tval
);
18516 else if (tlocc
!= NULL_RTX
)
18518 tval
= mem_loc_descriptor (tlocc
,
18519 GET_MODE (tlocc
) == VOIDmode
18520 ? Pmode
: GET_MODE (tlocc
),
18522 VAR_INIT_STATUS_INITIALIZED
);
18524 add_AT_loc (die
, DW_AT_GNU_call_site_target_clobbered
,
18530 call_site_note_count
++;
18531 if (ca_loc
->tail_call_p
)
18532 tail_call_site_note_count
++;
18536 call_arg_locations
= NULL
;
18537 call_arg_loc_last
= NULL
;
18538 if (tail_call_site_count
>= 0
18539 && tail_call_site_count
== tail_call_site_note_count
18542 if (call_site_count
>= 0
18543 && call_site_count
== call_site_note_count
)
18544 add_AT_flag (subr_die
, DW_AT_GNU_all_call_sites
, 1);
18546 add_AT_flag (subr_die
, DW_AT_GNU_all_tail_call_sites
, 1);
18548 call_site_count
= -1;
18549 tail_call_site_count
= -1;
18552 if (subr_die
!= old_die
)
18553 /* Add the calling convention attribute if requested. */
18554 add_calling_convention_attribute (subr_die
, decl
);
18557 /* Returns a hash value for X (which really is a die_struct). */
18560 common_block_die_table_hash (const void *x
)
18562 const_dw_die_ref d
= (const_dw_die_ref
) x
;
18563 return (hashval_t
) d
->decl_id
^ htab_hash_pointer (d
->die_parent
);
18566 /* Return nonzero if decl_id and die_parent of die_struct X is the same
18567 as decl_id and die_parent of die_struct Y. */
18570 common_block_die_table_eq (const void *x
, const void *y
)
18572 const_dw_die_ref d
= (const_dw_die_ref
) x
;
18573 const_dw_die_ref e
= (const_dw_die_ref
) y
;
18574 return d
->decl_id
== e
->decl_id
&& d
->die_parent
== e
->die_parent
;
18577 /* Generate a DIE to represent a declared data object.
18578 Either DECL or ORIGIN must be non-null. */
18581 gen_variable_die (tree decl
, tree origin
, dw_die_ref context_die
)
18583 HOST_WIDE_INT off
= 0;
18585 tree decl_or_origin
= decl
? decl
: origin
;
18586 tree ultimate_origin
;
18587 dw_die_ref var_die
;
18588 dw_die_ref old_die
= decl
? lookup_decl_die (decl
) : NULL
;
18589 dw_die_ref origin_die
;
18590 bool declaration
= (DECL_EXTERNAL (decl_or_origin
)
18591 || class_or_namespace_scope_p (context_die
));
18592 bool specialization_p
= false;
18594 ultimate_origin
= decl_ultimate_origin (decl_or_origin
);
18595 if (decl
|| ultimate_origin
)
18596 origin
= ultimate_origin
;
18597 com_decl
= fortran_common (decl_or_origin
, &off
);
18599 /* Symbol in common gets emitted as a child of the common block, in the form
18600 of a data member. */
18603 dw_die_ref com_die
;
18604 dw_loc_list_ref loc
;
18605 die_node com_die_arg
;
18607 var_die
= lookup_decl_die (decl_or_origin
);
18610 if (get_AT (var_die
, DW_AT_location
) == NULL
)
18612 loc
= loc_list_from_tree (com_decl
, off
? 1 : 2);
18617 /* Optimize the common case. */
18618 if (single_element_loc_list_p (loc
)
18619 && loc
->expr
->dw_loc_opc
== DW_OP_addr
18620 && loc
->expr
->dw_loc_next
== NULL
18621 && GET_CODE (loc
->expr
->dw_loc_oprnd1
.v
.val_addr
)
18624 rtx x
= loc
->expr
->dw_loc_oprnd1
.v
.val_addr
;
18625 loc
->expr
->dw_loc_oprnd1
.v
.val_addr
18626 = plus_constant (GET_MODE (x
), x
, off
);
18629 loc_list_plus_const (loc
, off
);
18631 add_AT_location_description (var_die
, DW_AT_location
, loc
);
18632 remove_AT (var_die
, DW_AT_declaration
);
18638 if (common_block_die_table
== NULL
)
18639 common_block_die_table
18640 = htab_create_ggc (10, common_block_die_table_hash
,
18641 common_block_die_table_eq
, NULL
);
18643 com_die_arg
.decl_id
= DECL_UID (com_decl
);
18644 com_die_arg
.die_parent
= context_die
;
18645 com_die
= (dw_die_ref
) htab_find (common_block_die_table
, &com_die_arg
);
18646 loc
= loc_list_from_tree (com_decl
, 2);
18647 if (com_die
== NULL
)
18650 = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (com_decl
));
18653 com_die
= new_die (DW_TAG_common_block
, context_die
, decl
);
18654 add_name_and_src_coords_attributes (com_die
, com_decl
);
18657 add_AT_location_description (com_die
, DW_AT_location
, loc
);
18658 /* Avoid sharing the same loc descriptor between
18659 DW_TAG_common_block and DW_TAG_variable. */
18660 loc
= loc_list_from_tree (com_decl
, 2);
18662 else if (DECL_EXTERNAL (decl
))
18663 add_AT_flag (com_die
, DW_AT_declaration
, 1);
18664 if (want_pubnames ())
18665 add_pubname_string (cnam
, com_die
); /* ??? needed? */
18666 com_die
->decl_id
= DECL_UID (com_decl
);
18667 slot
= htab_find_slot (common_block_die_table
, com_die
, INSERT
);
18668 *slot
= (void *) com_die
;
18670 else if (get_AT (com_die
, DW_AT_location
) == NULL
&& loc
)
18672 add_AT_location_description (com_die
, DW_AT_location
, loc
);
18673 loc
= loc_list_from_tree (com_decl
, 2);
18674 remove_AT (com_die
, DW_AT_declaration
);
18676 var_die
= new_die (DW_TAG_variable
, com_die
, decl
);
18677 add_name_and_src_coords_attributes (var_die
, decl
);
18678 add_type_attribute (var_die
, TREE_TYPE (decl
), TREE_READONLY (decl
),
18679 TREE_THIS_VOLATILE (decl
), context_die
);
18680 add_AT_flag (var_die
, DW_AT_external
, 1);
18685 /* Optimize the common case. */
18686 if (single_element_loc_list_p (loc
)
18687 && loc
->expr
->dw_loc_opc
== DW_OP_addr
18688 && loc
->expr
->dw_loc_next
== NULL
18689 && GET_CODE (loc
->expr
->dw_loc_oprnd1
.v
.val_addr
) == SYMBOL_REF
)
18691 rtx x
= loc
->expr
->dw_loc_oprnd1
.v
.val_addr
;
18692 loc
->expr
->dw_loc_oprnd1
.v
.val_addr
18693 = plus_constant (GET_MODE (x
), x
, off
);
18696 loc_list_plus_const (loc
, off
);
18698 add_AT_location_description (var_die
, DW_AT_location
, loc
);
18700 else if (DECL_EXTERNAL (decl
))
18701 add_AT_flag (var_die
, DW_AT_declaration
, 1);
18702 equate_decl_number_to_die (decl
, var_die
);
18706 /* If the compiler emitted a definition for the DECL declaration
18707 and if we already emitted a DIE for it, don't emit a second
18708 DIE for it again. Allow re-declarations of DECLs that are
18709 inside functions, though. */
18710 if (old_die
&& declaration
&& !local_scope_p (context_die
))
18713 /* For static data members, the declaration in the class is supposed
18714 to have DW_TAG_member tag; the specification should still be
18715 DW_TAG_variable referencing the DW_TAG_member DIE. */
18716 if (declaration
&& class_scope_p (context_die
))
18717 var_die
= new_die (DW_TAG_member
, context_die
, decl
);
18719 var_die
= new_die (DW_TAG_variable
, context_die
, decl
);
18722 if (origin
!= NULL
)
18723 origin_die
= add_abstract_origin_attribute (var_die
, origin
);
18725 /* Loop unrolling can create multiple blocks that refer to the same
18726 static variable, so we must test for the DW_AT_declaration flag.
18728 ??? Loop unrolling/reorder_blocks should perhaps be rewritten to
18729 copy decls and set the DECL_ABSTRACT flag on them instead of
18732 ??? Duplicated blocks have been rewritten to use .debug_ranges.
18734 ??? The declare_in_namespace support causes us to get two DIEs for one
18735 variable, both of which are declarations. We want to avoid considering
18736 one to be a specification, so we must test that this DIE is not a
18738 else if (old_die
&& TREE_STATIC (decl
) && ! declaration
18739 && get_AT_flag (old_die
, DW_AT_declaration
) == 1)
18741 /* This is a definition of a C++ class level static. */
18742 add_AT_specification (var_die
, old_die
);
18743 specialization_p
= true;
18744 if (DECL_NAME (decl
))
18746 expanded_location s
= expand_location (DECL_SOURCE_LOCATION (decl
));
18747 struct dwarf_file_data
* file_index
= lookup_filename (s
.file
);
18749 if (get_AT_file (old_die
, DW_AT_decl_file
) != file_index
)
18750 add_AT_file (var_die
, DW_AT_decl_file
, file_index
);
18752 if (get_AT_unsigned (old_die
, DW_AT_decl_line
) != (unsigned) s
.line
)
18753 add_AT_unsigned (var_die
, DW_AT_decl_line
, s
.line
);
18755 if (old_die
->die_tag
== DW_TAG_member
)
18756 add_linkage_name (var_die
, decl
);
18760 add_name_and_src_coords_attributes (var_die
, decl
);
18762 if ((origin
== NULL
&& !specialization_p
)
18764 && !DECL_ABSTRACT (decl_or_origin
)
18765 && variably_modified_type_p (TREE_TYPE (decl_or_origin
),
18766 decl_function_context
18767 (decl_or_origin
))))
18769 tree type
= TREE_TYPE (decl_or_origin
);
18771 if (decl_by_reference_p (decl_or_origin
))
18772 add_type_attribute (var_die
, TREE_TYPE (type
), 0, 0, context_die
);
18774 add_type_attribute (var_die
, type
, TREE_READONLY (decl_or_origin
),
18775 TREE_THIS_VOLATILE (decl_or_origin
), context_die
);
18778 if (origin
== NULL
&& !specialization_p
)
18780 if (TREE_PUBLIC (decl
))
18781 add_AT_flag (var_die
, DW_AT_external
, 1);
18783 if (DECL_ARTIFICIAL (decl
))
18784 add_AT_flag (var_die
, DW_AT_artificial
, 1);
18786 add_accessibility_attribute (var_die
, decl
);
18790 add_AT_flag (var_die
, DW_AT_declaration
, 1);
18792 if (decl
&& (DECL_ABSTRACT (decl
) || declaration
|| old_die
== NULL
))
18793 equate_decl_number_to_die (decl
, var_die
);
18796 && (! DECL_ABSTRACT (decl_or_origin
)
18797 /* Local static vars are shared between all clones/inlines,
18798 so emit DW_AT_location on the abstract DIE if DECL_RTL is
18800 || (TREE_CODE (decl_or_origin
) == VAR_DECL
18801 && TREE_STATIC (decl_or_origin
)
18802 && DECL_RTL_SET_P (decl_or_origin
)))
18803 /* When abstract origin already has DW_AT_location attribute, no need
18804 to add it again. */
18805 && (origin_die
== NULL
|| get_AT (origin_die
, DW_AT_location
) == NULL
))
18807 if (TREE_CODE (decl_or_origin
) == VAR_DECL
&& TREE_STATIC (decl_or_origin
)
18808 && !TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl_or_origin
)))
18809 defer_location (decl_or_origin
, var_die
);
18811 add_location_or_const_value_attribute (var_die
, decl_or_origin
,
18812 decl
== NULL
, DW_AT_location
);
18813 add_pubname (decl_or_origin
, var_die
);
18816 tree_add_const_value_attribute_for_decl (var_die
, decl_or_origin
);
18819 /* Generate a DIE to represent a named constant. */
18822 gen_const_die (tree decl
, dw_die_ref context_die
)
18824 dw_die_ref const_die
;
18825 tree type
= TREE_TYPE (decl
);
18827 const_die
= new_die (DW_TAG_constant
, context_die
, decl
);
18828 add_name_and_src_coords_attributes (const_die
, decl
);
18829 add_type_attribute (const_die
, type
, 1, 0, context_die
);
18830 if (TREE_PUBLIC (decl
))
18831 add_AT_flag (const_die
, DW_AT_external
, 1);
18832 if (DECL_ARTIFICIAL (decl
))
18833 add_AT_flag (const_die
, DW_AT_artificial
, 1);
18834 tree_add_const_value_attribute_for_decl (const_die
, decl
);
18837 /* Generate a DIE to represent a label identifier. */
18840 gen_label_die (tree decl
, dw_die_ref context_die
)
18842 tree origin
= decl_ultimate_origin (decl
);
18843 dw_die_ref lbl_die
= new_die (DW_TAG_label
, context_die
, decl
);
18845 char label
[MAX_ARTIFICIAL_LABEL_BYTES
];
18847 if (origin
!= NULL
)
18848 add_abstract_origin_attribute (lbl_die
, origin
);
18850 add_name_and_src_coords_attributes (lbl_die
, decl
);
18852 if (DECL_ABSTRACT (decl
))
18853 equate_decl_number_to_die (decl
, lbl_die
);
18856 insn
= DECL_RTL_IF_SET (decl
);
18858 /* Deleted labels are programmer specified labels which have been
18859 eliminated because of various optimizations. We still emit them
18860 here so that it is possible to put breakpoints on them. */
18864 && NOTE_KIND (insn
) == NOTE_INSN_DELETED_LABEL
))))
18866 /* When optimization is enabled (via -O) some parts of the compiler
18867 (e.g. jump.c and cse.c) may try to delete CODE_LABEL insns which
18868 represent source-level labels which were explicitly declared by
18869 the user. This really shouldn't be happening though, so catch
18870 it if it ever does happen. */
18871 gcc_assert (!INSN_DELETED_P (insn
));
18873 ASM_GENERATE_INTERNAL_LABEL (label
, "L", CODE_LABEL_NUMBER (insn
));
18874 add_AT_lbl_id (lbl_die
, DW_AT_low_pc
, label
);
18878 && NOTE_KIND (insn
) == NOTE_INSN_DELETED_DEBUG_LABEL
18879 && CODE_LABEL_NUMBER (insn
) != -1)
18881 ASM_GENERATE_INTERNAL_LABEL (label
, "LDL", CODE_LABEL_NUMBER (insn
));
18882 add_AT_lbl_id (lbl_die
, DW_AT_low_pc
, label
);
18887 /* A helper function for gen_inlined_subroutine_die. Add source coordinate
18888 attributes to the DIE for a block STMT, to describe where the inlined
18889 function was called from. This is similar to add_src_coords_attributes. */
18892 add_call_src_coords_attributes (tree stmt
, dw_die_ref die
)
18894 expanded_location s
= expand_location (BLOCK_SOURCE_LOCATION (stmt
));
18896 if (dwarf_version
>= 3 || !dwarf_strict
)
18898 add_AT_file (die
, DW_AT_call_file
, lookup_filename (s
.file
));
18899 add_AT_unsigned (die
, DW_AT_call_line
, s
.line
);
18904 /* A helper function for gen_lexical_block_die and gen_inlined_subroutine_die.
18905 Add low_pc and high_pc attributes to the DIE for a block STMT. */
18908 add_high_low_attributes (tree stmt
, dw_die_ref die
)
18910 char label
[MAX_ARTIFICIAL_LABEL_BYTES
];
18912 if (BLOCK_FRAGMENT_CHAIN (stmt
)
18913 && (dwarf_version
>= 3 || !dwarf_strict
))
18915 tree chain
, superblock
= NULL_TREE
;
18917 dw_attr_ref attr
= NULL
;
18919 if (inlined_function_outer_scope_p (stmt
))
18921 ASM_GENERATE_INTERNAL_LABEL (label
, BLOCK_BEGIN_LABEL
,
18922 BLOCK_NUMBER (stmt
));
18923 add_AT_lbl_id (die
, DW_AT_entry_pc
, label
);
18926 /* Optimize duplicate .debug_ranges lists or even tails of
18927 lists. If this BLOCK has same ranges as its supercontext,
18928 lookup DW_AT_ranges attribute in the supercontext (and
18929 recursively so), verify that the ranges_table contains the
18930 right values and use it instead of adding a new .debug_range. */
18931 for (chain
= stmt
, pdie
= die
;
18932 BLOCK_SAME_RANGE (chain
);
18933 chain
= BLOCK_SUPERCONTEXT (chain
))
18935 dw_attr_ref new_attr
;
18937 pdie
= pdie
->die_parent
;
18940 if (BLOCK_SUPERCONTEXT (chain
) == NULL_TREE
)
18942 new_attr
= get_AT (pdie
, DW_AT_ranges
);
18943 if (new_attr
== NULL
18944 || new_attr
->dw_attr_val
.val_class
!= dw_val_class_range_list
)
18947 superblock
= BLOCK_SUPERCONTEXT (chain
);
18950 && (ranges_table
[attr
->dw_attr_val
.v
.val_offset
18951 / 2 / DWARF2_ADDR_SIZE
].num
18952 == BLOCK_NUMBER (superblock
))
18953 && BLOCK_FRAGMENT_CHAIN (superblock
))
18955 unsigned long off
= attr
->dw_attr_val
.v
.val_offset
18956 / 2 / DWARF2_ADDR_SIZE
;
18957 unsigned long supercnt
= 0, thiscnt
= 0;
18958 for (chain
= BLOCK_FRAGMENT_CHAIN (superblock
);
18959 chain
; chain
= BLOCK_FRAGMENT_CHAIN (chain
))
18962 gcc_checking_assert (ranges_table
[off
+ supercnt
].num
18963 == BLOCK_NUMBER (chain
));
18965 gcc_checking_assert (ranges_table
[off
+ supercnt
+ 1].num
== 0);
18966 for (chain
= BLOCK_FRAGMENT_CHAIN (stmt
);
18967 chain
; chain
= BLOCK_FRAGMENT_CHAIN (chain
))
18969 gcc_assert (supercnt
>= thiscnt
);
18970 add_AT_range_list (die
, DW_AT_ranges
,
18971 ((off
+ supercnt
- thiscnt
)
18972 * 2 * DWARF2_ADDR_SIZE
),
18977 add_AT_range_list (die
, DW_AT_ranges
, add_ranges (stmt
), false);
18979 chain
= BLOCK_FRAGMENT_CHAIN (stmt
);
18982 add_ranges (chain
);
18983 chain
= BLOCK_FRAGMENT_CHAIN (chain
);
18990 char label_high
[MAX_ARTIFICIAL_LABEL_BYTES
];
18991 ASM_GENERATE_INTERNAL_LABEL (label
, BLOCK_BEGIN_LABEL
,
18992 BLOCK_NUMBER (stmt
));
18993 ASM_GENERATE_INTERNAL_LABEL (label_high
, BLOCK_END_LABEL
,
18994 BLOCK_NUMBER (stmt
));
18995 add_AT_low_high_pc (die
, label
, label_high
, false);
18999 /* Generate a DIE for a lexical block. */
19002 gen_lexical_block_die (tree stmt
, dw_die_ref context_die
, int depth
)
19004 dw_die_ref stmt_die
= new_die (DW_TAG_lexical_block
, context_die
, stmt
);
19006 if (call_arg_locations
)
19008 if (block_map
.length () <= BLOCK_NUMBER (stmt
))
19009 block_map
.safe_grow_cleared (BLOCK_NUMBER (stmt
) + 1);
19010 block_map
[BLOCK_NUMBER (stmt
)] = stmt_die
;
19013 if (! BLOCK_ABSTRACT (stmt
) && TREE_ASM_WRITTEN (stmt
))
19014 add_high_low_attributes (stmt
, stmt_die
);
19016 decls_for_scope (stmt
, stmt_die
, depth
);
19019 /* Generate a DIE for an inlined subprogram. */
19022 gen_inlined_subroutine_die (tree stmt
, dw_die_ref context_die
, int depth
)
19026 /* The instance of function that is effectively being inlined shall not
19028 gcc_assert (! BLOCK_ABSTRACT (stmt
));
19030 decl
= block_ultimate_origin (stmt
);
19032 /* Emit info for the abstract instance first, if we haven't yet. We
19033 must emit this even if the block is abstract, otherwise when we
19034 emit the block below (or elsewhere), we may end up trying to emit
19035 a die whose origin die hasn't been emitted, and crashing. */
19036 dwarf2out_abstract_function (decl
);
19038 if (! BLOCK_ABSTRACT (stmt
))
19040 dw_die_ref subr_die
19041 = new_die (DW_TAG_inlined_subroutine
, context_die
, stmt
);
19043 if (call_arg_locations
)
19045 if (block_map
.length () <= BLOCK_NUMBER (stmt
))
19046 block_map
.safe_grow_cleared (BLOCK_NUMBER (stmt
) + 1);
19047 block_map
[BLOCK_NUMBER (stmt
)] = subr_die
;
19049 add_abstract_origin_attribute (subr_die
, decl
);
19050 if (TREE_ASM_WRITTEN (stmt
))
19051 add_high_low_attributes (stmt
, subr_die
);
19052 add_call_src_coords_attributes (stmt
, subr_die
);
19054 decls_for_scope (stmt
, subr_die
, depth
);
19055 current_function_has_inlines
= 1;
19059 /* Generate a DIE for a field in a record, or structure. */
19062 gen_field_die (tree decl
, dw_die_ref context_die
)
19064 dw_die_ref decl_die
;
19066 if (TREE_TYPE (decl
) == error_mark_node
)
19069 decl_die
= new_die (DW_TAG_member
, context_die
, decl
);
19070 add_name_and_src_coords_attributes (decl_die
, decl
);
19071 add_type_attribute (decl_die
, member_declared_type (decl
),
19072 TREE_READONLY (decl
), TREE_THIS_VOLATILE (decl
),
19075 if (DECL_BIT_FIELD_TYPE (decl
))
19077 add_byte_size_attribute (decl_die
, decl
);
19078 add_bit_size_attribute (decl_die
, decl
);
19079 add_bit_offset_attribute (decl_die
, decl
);
19082 if (TREE_CODE (DECL_FIELD_CONTEXT (decl
)) != UNION_TYPE
)
19083 add_data_member_location_attribute (decl_die
, decl
);
19085 if (DECL_ARTIFICIAL (decl
))
19086 add_AT_flag (decl_die
, DW_AT_artificial
, 1);
19088 add_accessibility_attribute (decl_die
, decl
);
19090 /* Equate decl number to die, so that we can look up this decl later on. */
19091 equate_decl_number_to_die (decl
, decl_die
);
19095 /* Don't generate either pointer_type DIEs or reference_type DIEs here.
19096 Use modified_type_die instead.
19097 We keep this code here just in case these types of DIEs may be needed to
19098 represent certain things in other languages (e.g. Pascal) someday. */
19101 gen_pointer_type_die (tree type
, dw_die_ref context_die
)
19104 = new_die (DW_TAG_pointer_type
, scope_die_for (type
, context_die
), type
);
19106 equate_type_number_to_die (type
, ptr_die
);
19107 add_type_attribute (ptr_die
, TREE_TYPE (type
), 0, 0, context_die
);
19108 add_AT_unsigned (mod_type_die
, DW_AT_byte_size
, PTR_SIZE
);
19111 /* Don't generate either pointer_type DIEs or reference_type DIEs here.
19112 Use modified_type_die instead.
19113 We keep this code here just in case these types of DIEs may be needed to
19114 represent certain things in other languages (e.g. Pascal) someday. */
19117 gen_reference_type_die (tree type
, dw_die_ref context_die
)
19119 dw_die_ref ref_die
, scope_die
= scope_die_for (type
, context_die
);
19121 if (TYPE_REF_IS_RVALUE (type
) && dwarf_version
>= 4)
19122 ref_die
= new_die (DW_TAG_rvalue_reference_type
, scope_die
, type
);
19124 ref_die
= new_die (DW_TAG_reference_type
, scope_die
, type
);
19126 equate_type_number_to_die (type
, ref_die
);
19127 add_type_attribute (ref_die
, TREE_TYPE (type
), 0, 0, context_die
);
19128 add_AT_unsigned (mod_type_die
, DW_AT_byte_size
, PTR_SIZE
);
19132 /* Generate a DIE for a pointer to a member type. */
19135 gen_ptr_to_mbr_type_die (tree type
, dw_die_ref context_die
)
19138 = new_die (DW_TAG_ptr_to_member_type
,
19139 scope_die_for (type
, context_die
), type
);
19141 equate_type_number_to_die (type
, ptr_die
);
19142 add_AT_die_ref (ptr_die
, DW_AT_containing_type
,
19143 lookup_type_die (TYPE_OFFSET_BASETYPE (type
)));
19144 add_type_attribute (ptr_die
, TREE_TYPE (type
), 0, 0, context_die
);
19147 typedef const char *dchar_p
; /* For DEF_VEC_P. */
19149 static char *producer_string
;
19151 /* Return a heap allocated producer string including command line options
19152 if -grecord-gcc-switches. */
19155 gen_producer_string (void)
19158 auto_vec
<dchar_p
> switches
;
19159 const char *language_string
= lang_hooks
.name
;
19160 char *producer
, *tail
;
19162 size_t len
= dwarf_record_gcc_switches
? 0 : 3;
19163 size_t plen
= strlen (language_string
) + 1 + strlen (version_string
);
19165 for (j
= 1; dwarf_record_gcc_switches
&& j
< save_decoded_options_count
; j
++)
19166 switch (save_decoded_options
[j
].opt_index
)
19173 case OPT_auxbase_strip
:
19182 case OPT_SPECIAL_unknown
:
19183 case OPT_SPECIAL_ignore
:
19184 case OPT_SPECIAL_program_name
:
19185 case OPT_SPECIAL_input_file
:
19186 case OPT_grecord_gcc_switches
:
19187 case OPT_gno_record_gcc_switches
:
19188 case OPT__output_pch_
:
19189 case OPT_fdiagnostics_show_location_
:
19190 case OPT_fdiagnostics_show_option
:
19191 case OPT_fdiagnostics_show_caret
:
19192 case OPT_fdiagnostics_color_
:
19193 case OPT_fverbose_asm
:
19195 case OPT__sysroot_
:
19197 case OPT_nostdinc__
:
19198 /* Ignore these. */
19201 if (cl_options
[save_decoded_options
[j
].opt_index
].flags
19202 & CL_NO_DWARF_RECORD
)
19204 gcc_checking_assert (save_decoded_options
[j
].canonical_option
[0][0]
19206 switch (save_decoded_options
[j
].canonical_option
[0][1])
19213 if (strncmp (save_decoded_options
[j
].canonical_option
[0] + 2,
19220 switches
.safe_push (save_decoded_options
[j
].orig_option_with_args_text
);
19221 len
+= strlen (save_decoded_options
[j
].orig_option_with_args_text
) + 1;
19225 producer
= XNEWVEC (char, plen
+ 1 + len
+ 1);
19227 sprintf (tail
, "%s %s", language_string
, version_string
);
19230 FOR_EACH_VEC_ELT (switches
, j
, p
)
19234 memcpy (tail
+ 1, p
, len
);
19242 /* Generate the DIE for the compilation unit. */
19245 gen_compile_unit_die (const char *filename
)
19248 const char *language_string
= lang_hooks
.name
;
19251 die
= new_die (DW_TAG_compile_unit
, NULL
, NULL
);
19255 add_name_attribute (die
, filename
);
19256 /* Don't add cwd for <built-in>. */
19257 if (!IS_ABSOLUTE_PATH (filename
) && filename
[0] != '<')
19258 add_comp_dir_attribute (die
);
19261 add_AT_string (die
, DW_AT_producer
, producer_string
? producer_string
: "");
19263 /* If our producer is LTO try to figure out a common language to use
19264 from the global list of translation units. */
19265 if (strcmp (language_string
, "GNU GIMPLE") == 0)
19269 const char *common_lang
= NULL
;
19271 FOR_EACH_VEC_SAFE_ELT (all_translation_units
, i
, t
)
19273 if (!TRANSLATION_UNIT_LANGUAGE (t
))
19276 common_lang
= TRANSLATION_UNIT_LANGUAGE (t
);
19277 else if (strcmp (common_lang
, TRANSLATION_UNIT_LANGUAGE (t
)) == 0)
19279 else if (strncmp (common_lang
, "GNU C", 5) == 0
19280 && strncmp (TRANSLATION_UNIT_LANGUAGE (t
), "GNU C", 5) == 0)
19281 /* Mixing C and C++ is ok, use C++ in that case. */
19282 common_lang
= "GNU C++";
19285 /* Fall back to C. */
19286 common_lang
= NULL
;
19292 language_string
= common_lang
;
19295 language
= DW_LANG_C89
;
19296 if (strcmp (language_string
, "GNU C++") == 0)
19297 language
= DW_LANG_C_plus_plus
;
19298 else if (strcmp (language_string
, "GNU F77") == 0)
19299 language
= DW_LANG_Fortran77
;
19300 else if (strcmp (language_string
, "GNU Pascal") == 0)
19301 language
= DW_LANG_Pascal83
;
19302 else if (dwarf_version
>= 3 || !dwarf_strict
)
19304 if (strcmp (language_string
, "GNU Ada") == 0)
19305 language
= DW_LANG_Ada95
;
19306 else if (strcmp (language_string
, "GNU Fortran") == 0)
19307 language
= DW_LANG_Fortran95
;
19308 else if (strcmp (language_string
, "GNU Java") == 0)
19309 language
= DW_LANG_Java
;
19310 else if (strcmp (language_string
, "GNU Objective-C") == 0)
19311 language
= DW_LANG_ObjC
;
19312 else if (strcmp (language_string
, "GNU Objective-C++") == 0)
19313 language
= DW_LANG_ObjC_plus_plus
;
19314 else if (dwarf_version
>= 5 || !dwarf_strict
)
19316 if (strcmp (language_string
, "GNU Go") == 0)
19317 language
= DW_LANG_Go
;
19320 /* Use a degraded Fortran setting in strict DWARF2 so is_fortran works. */
19321 else if (strcmp (language_string
, "GNU Fortran") == 0)
19322 language
= DW_LANG_Fortran90
;
19324 add_AT_unsigned (die
, DW_AT_language
, language
);
19328 case DW_LANG_Fortran77
:
19329 case DW_LANG_Fortran90
:
19330 case DW_LANG_Fortran95
:
19331 /* Fortran has case insensitive identifiers and the front-end
19332 lowercases everything. */
19333 add_AT_unsigned (die
, DW_AT_identifier_case
, DW_ID_down_case
);
19336 /* The default DW_ID_case_sensitive doesn't need to be specified. */
19342 /* Generate the DIE for a base class. */
19345 gen_inheritance_die (tree binfo
, tree access
, dw_die_ref context_die
)
19347 dw_die_ref die
= new_die (DW_TAG_inheritance
, context_die
, binfo
);
19349 add_type_attribute (die
, BINFO_TYPE (binfo
), 0, 0, context_die
);
19350 add_data_member_location_attribute (die
, binfo
);
19352 if (BINFO_VIRTUAL_P (binfo
))
19353 add_AT_unsigned (die
, DW_AT_virtuality
, DW_VIRTUALITY_virtual
);
19355 /* In DWARF3+ the default is DW_ACCESS_private only in DW_TAG_class_type
19356 children, otherwise the default is DW_ACCESS_public. In DWARF2
19357 the default has always been DW_ACCESS_private. */
19358 if (access
== access_public_node
)
19360 if (dwarf_version
== 2
19361 || context_die
->die_tag
== DW_TAG_class_type
)
19362 add_AT_unsigned (die
, DW_AT_accessibility
, DW_ACCESS_public
);
19364 else if (access
== access_protected_node
)
19365 add_AT_unsigned (die
, DW_AT_accessibility
, DW_ACCESS_protected
);
19366 else if (dwarf_version
> 2
19367 && context_die
->die_tag
!= DW_TAG_class_type
)
19368 add_AT_unsigned (die
, DW_AT_accessibility
, DW_ACCESS_private
);
19371 /* Generate a DIE for a class member. */
19374 gen_member_die (tree type
, dw_die_ref context_die
)
19377 tree binfo
= TYPE_BINFO (type
);
19380 /* If this is not an incomplete type, output descriptions of each of its
19381 members. Note that as we output the DIEs necessary to represent the
19382 members of this record or union type, we will also be trying to output
19383 DIEs to represent the *types* of those members. However the `type'
19384 function (above) will specifically avoid generating type DIEs for member
19385 types *within* the list of member DIEs for this (containing) type except
19386 for those types (of members) which are explicitly marked as also being
19387 members of this (containing) type themselves. The g++ front- end can
19388 force any given type to be treated as a member of some other (containing)
19389 type by setting the TYPE_CONTEXT of the given (member) type to point to
19390 the TREE node representing the appropriate (containing) type. */
19392 /* First output info about the base classes. */
19395 vec
<tree
, va_gc
> *accesses
= BINFO_BASE_ACCESSES (binfo
);
19399 for (i
= 0; BINFO_BASE_ITERATE (binfo
, i
, base
); i
++)
19400 gen_inheritance_die (base
,
19401 (accesses
? (*accesses
)[i
] : access_public_node
),
19405 /* Now output info about the data members and type members. */
19406 for (member
= TYPE_FIELDS (type
); member
; member
= DECL_CHAIN (member
))
19408 /* If we thought we were generating minimal debug info for TYPE
19409 and then changed our minds, some of the member declarations
19410 may have already been defined. Don't define them again, but
19411 do put them in the right order. */
19413 child
= lookup_decl_die (member
);
19415 splice_child_die (context_die
, child
);
19417 gen_decl_die (member
, NULL
, context_die
);
19420 /* Now output info about the function members (if any). */
19421 for (member
= TYPE_METHODS (type
); member
; member
= DECL_CHAIN (member
))
19423 /* Don't include clones in the member list. */
19424 if (DECL_ABSTRACT_ORIGIN (member
))
19427 child
= lookup_decl_die (member
);
19429 splice_child_die (context_die
, child
);
19431 gen_decl_die (member
, NULL
, context_die
);
19435 /* Generate a DIE for a structure or union type. If TYPE_DECL_SUPPRESS_DEBUG
19436 is set, we pretend that the type was never defined, so we only get the
19437 member DIEs needed by later specification DIEs. */
19440 gen_struct_or_union_type_die (tree type
, dw_die_ref context_die
,
19441 enum debug_info_usage usage
)
19443 dw_die_ref type_die
= lookup_type_die (type
);
19444 dw_die_ref scope_die
= 0;
19446 int complete
= (TYPE_SIZE (type
)
19447 && (! TYPE_STUB_DECL (type
)
19448 || ! TYPE_DECL_SUPPRESS_DEBUG (TYPE_STUB_DECL (type
))));
19449 int ns_decl
= (context_die
&& context_die
->die_tag
== DW_TAG_namespace
);
19450 complete
= complete
&& should_emit_struct_debug (type
, usage
);
19452 if (type_die
&& ! complete
)
19455 if (TYPE_CONTEXT (type
) != NULL_TREE
19456 && (AGGREGATE_TYPE_P (TYPE_CONTEXT (type
))
19457 || TREE_CODE (TYPE_CONTEXT (type
)) == NAMESPACE_DECL
))
19460 scope_die
= scope_die_for (type
, context_die
);
19462 /* Generate child dies for template paramaters. */
19463 if (!type_die
&& debug_info_level
> DINFO_LEVEL_TERSE
)
19464 schedule_generic_params_dies_gen (type
);
19466 if (! type_die
|| (nested
&& is_cu_die (scope_die
)))
19467 /* First occurrence of type or toplevel definition of nested class. */
19469 dw_die_ref old_die
= type_die
;
19471 type_die
= new_die (TREE_CODE (type
) == RECORD_TYPE
19472 ? record_type_tag (type
) : DW_TAG_union_type
,
19474 equate_type_number_to_die (type
, type_die
);
19476 add_AT_specification (type_die
, old_die
);
19478 add_name_attribute (type_die
, type_tag (type
));
19481 remove_AT (type_die
, DW_AT_declaration
);
19483 /* If this type has been completed, then give it a byte_size attribute and
19484 then give a list of members. */
19485 if (complete
&& !ns_decl
)
19487 /* Prevent infinite recursion in cases where the type of some member of
19488 this type is expressed in terms of this type itself. */
19489 TREE_ASM_WRITTEN (type
) = 1;
19490 add_byte_size_attribute (type_die
, type
);
19491 if (TYPE_STUB_DECL (type
) != NULL_TREE
)
19493 add_src_coords_attributes (type_die
, TYPE_STUB_DECL (type
));
19494 add_accessibility_attribute (type_die
, TYPE_STUB_DECL (type
));
19497 /* If the first reference to this type was as the return type of an
19498 inline function, then it may not have a parent. Fix this now. */
19499 if (type_die
->die_parent
== NULL
)
19500 add_child_die (scope_die
, type_die
);
19502 push_decl_scope (type
);
19503 gen_member_die (type
, type_die
);
19506 add_gnat_descriptive_type_attribute (type_die
, type
, context_die
);
19507 if (TYPE_ARTIFICIAL (type
))
19508 add_AT_flag (type_die
, DW_AT_artificial
, 1);
19510 /* GNU extension: Record what type our vtable lives in. */
19511 if (TYPE_VFIELD (type
))
19513 tree vtype
= DECL_FCONTEXT (TYPE_VFIELD (type
));
19515 gen_type_die (vtype
, context_die
);
19516 add_AT_die_ref (type_die
, DW_AT_containing_type
,
19517 lookup_type_die (vtype
));
19522 add_AT_flag (type_die
, DW_AT_declaration
, 1);
19524 /* We don't need to do this for function-local types. */
19525 if (TYPE_STUB_DECL (type
)
19526 && ! decl_function_context (TYPE_STUB_DECL (type
)))
19527 vec_safe_push (incomplete_types
, type
);
19530 if (get_AT (type_die
, DW_AT_name
))
19531 add_pubtype (type
, type_die
);
19534 /* Generate a DIE for a subroutine _type_. */
19537 gen_subroutine_type_die (tree type
, dw_die_ref context_die
)
19539 tree return_type
= TREE_TYPE (type
);
19540 dw_die_ref subr_die
19541 = new_die (DW_TAG_subroutine_type
,
19542 scope_die_for (type
, context_die
), type
);
19544 equate_type_number_to_die (type
, subr_die
);
19545 add_prototyped_attribute (subr_die
, type
);
19546 add_type_attribute (subr_die
, return_type
, 0, 0, context_die
);
19547 gen_formal_types_die (type
, subr_die
);
19549 if (get_AT (subr_die
, DW_AT_name
))
19550 add_pubtype (type
, subr_die
);
19553 /* Generate a DIE for a type definition. */
19556 gen_typedef_die (tree decl
, dw_die_ref context_die
)
19558 dw_die_ref type_die
;
19561 if (TREE_ASM_WRITTEN (decl
))
19564 TREE_ASM_WRITTEN (decl
) = 1;
19565 type_die
= new_die (DW_TAG_typedef
, context_die
, decl
);
19566 origin
= decl_ultimate_origin (decl
);
19567 if (origin
!= NULL
)
19568 add_abstract_origin_attribute (type_die
, origin
);
19573 add_name_and_src_coords_attributes (type_die
, decl
);
19574 if (DECL_ORIGINAL_TYPE (decl
))
19576 type
= DECL_ORIGINAL_TYPE (decl
);
19578 gcc_assert (type
!= TREE_TYPE (decl
));
19579 equate_type_number_to_die (TREE_TYPE (decl
), type_die
);
19583 type
= TREE_TYPE (decl
);
19585 if (is_naming_typedef_decl (TYPE_NAME (type
)))
19587 /* Here, we are in the case of decl being a typedef naming
19588 an anonymous type, e.g:
19589 typedef struct {...} foo;
19590 In that case TREE_TYPE (decl) is not a typedef variant
19591 type and TYPE_NAME of the anonymous type is set to the
19592 TYPE_DECL of the typedef. This construct is emitted by
19595 TYPE is the anonymous struct named by the typedef
19596 DECL. As we need the DW_AT_type attribute of the
19597 DW_TAG_typedef to point to the DIE of TYPE, let's
19598 generate that DIE right away. add_type_attribute
19599 called below will then pick (via lookup_type_die) that
19600 anonymous struct DIE. */
19601 if (!TREE_ASM_WRITTEN (type
))
19602 gen_tagged_type_die (type
, context_die
, DINFO_USAGE_DIR_USE
);
19604 /* This is a GNU Extension. We are adding a
19605 DW_AT_linkage_name attribute to the DIE of the
19606 anonymous struct TYPE. The value of that attribute
19607 is the name of the typedef decl naming the anonymous
19608 struct. This greatly eases the work of consumers of
19609 this debug info. */
19610 add_linkage_attr (lookup_type_die (type
), decl
);
19614 add_type_attribute (type_die
, type
, TREE_READONLY (decl
),
19615 TREE_THIS_VOLATILE (decl
), context_die
);
19617 if (is_naming_typedef_decl (decl
))
19618 /* We want that all subsequent calls to lookup_type_die with
19619 TYPE in argument yield the DW_TAG_typedef we have just
19621 equate_type_number_to_die (type
, type_die
);
19623 add_accessibility_attribute (type_die
, decl
);
19626 if (DECL_ABSTRACT (decl
))
19627 equate_decl_number_to_die (decl
, type_die
);
19629 if (get_AT (type_die
, DW_AT_name
))
19630 add_pubtype (decl
, type_die
);
19633 /* Generate a DIE for a struct, class, enum or union type. */
19636 gen_tagged_type_die (tree type
,
19637 dw_die_ref context_die
,
19638 enum debug_info_usage usage
)
19642 if (type
== NULL_TREE
19643 || !is_tagged_type (type
))
19646 /* If this is a nested type whose containing class hasn't been written
19647 out yet, writing it out will cover this one, too. This does not apply
19648 to instantiations of member class templates; they need to be added to
19649 the containing class as they are generated. FIXME: This hurts the
19650 idea of combining type decls from multiple TUs, since we can't predict
19651 what set of template instantiations we'll get. */
19652 if (TYPE_CONTEXT (type
)
19653 && AGGREGATE_TYPE_P (TYPE_CONTEXT (type
))
19654 && ! TREE_ASM_WRITTEN (TYPE_CONTEXT (type
)))
19656 gen_type_die_with_usage (TYPE_CONTEXT (type
), context_die
, usage
);
19658 if (TREE_ASM_WRITTEN (type
))
19661 /* If that failed, attach ourselves to the stub. */
19662 push_decl_scope (TYPE_CONTEXT (type
));
19663 context_die
= lookup_type_die (TYPE_CONTEXT (type
));
19666 else if (TYPE_CONTEXT (type
) != NULL_TREE
19667 && (TREE_CODE (TYPE_CONTEXT (type
)) == FUNCTION_DECL
))
19669 /* If this type is local to a function that hasn't been written
19670 out yet, use a NULL context for now; it will be fixed up in
19671 decls_for_scope. */
19672 context_die
= lookup_decl_die (TYPE_CONTEXT (type
));
19673 /* A declaration DIE doesn't count; nested types need to go in the
19675 if (context_die
&& is_declaration_die (context_die
))
19676 context_die
= NULL
;
19681 context_die
= declare_in_namespace (type
, context_die
);
19685 if (TREE_CODE (type
) == ENUMERAL_TYPE
)
19687 /* This might have been written out by the call to
19688 declare_in_namespace. */
19689 if (!TREE_ASM_WRITTEN (type
))
19690 gen_enumeration_type_die (type
, context_die
);
19693 gen_struct_or_union_type_die (type
, context_die
, usage
);
19698 /* Don't set TREE_ASM_WRITTEN on an incomplete struct; we want to fix
19699 it up if it is ever completed. gen_*_type_die will set it for us
19700 when appropriate. */
19703 /* Generate a type description DIE. */
19706 gen_type_die_with_usage (tree type
, dw_die_ref context_die
,
19707 enum debug_info_usage usage
)
19709 struct array_descr_info info
;
19711 if (type
== NULL_TREE
|| type
== error_mark_node
)
19714 if (TYPE_NAME (type
) != NULL_TREE
19715 && TREE_CODE (TYPE_NAME (type
)) == TYPE_DECL
19716 && is_redundant_typedef (TYPE_NAME (type
))
19717 && DECL_ORIGINAL_TYPE (TYPE_NAME (type
)))
19718 /* The DECL of this type is a typedef we don't want to emit debug
19719 info for but we want debug info for its underlying typedef.
19720 This can happen for e.g, the injected-class-name of a C++
19722 type
= DECL_ORIGINAL_TYPE (TYPE_NAME (type
));
19724 /* If TYPE is a typedef type variant, let's generate debug info
19725 for the parent typedef which TYPE is a type of. */
19726 if (typedef_variant_p (type
))
19728 if (TREE_ASM_WRITTEN (type
))
19731 /* Prevent broken recursion; we can't hand off to the same type. */
19732 gcc_assert (DECL_ORIGINAL_TYPE (TYPE_NAME (type
)) != type
);
19734 /* Give typedefs the right scope. */
19735 context_die
= scope_die_for (type
, context_die
);
19737 TREE_ASM_WRITTEN (type
) = 1;
19739 gen_decl_die (TYPE_NAME (type
), NULL
, context_die
);
19743 /* If type is an anonymous tagged type named by a typedef, let's
19744 generate debug info for the typedef. */
19745 if (is_naming_typedef_decl (TYPE_NAME (type
)))
19747 /* Use the DIE of the containing namespace as the parent DIE of
19748 the type description DIE we want to generate. */
19749 if (DECL_CONTEXT (TYPE_NAME (type
))
19750 && TREE_CODE (DECL_CONTEXT (TYPE_NAME (type
))) == NAMESPACE_DECL
)
19751 context_die
= get_context_die (DECL_CONTEXT (TYPE_NAME (type
)));
19753 gen_decl_die (TYPE_NAME (type
), NULL
, context_die
);
19757 /* If this is an array type with hidden descriptor, handle it first. */
19758 if (!TREE_ASM_WRITTEN (type
)
19759 && lang_hooks
.types
.get_array_descr_info
19760 && lang_hooks
.types
.get_array_descr_info (type
, &info
)
19761 && (dwarf_version
>= 3 || !dwarf_strict
))
19763 gen_descr_array_type_die (type
, &info
, context_die
);
19764 TREE_ASM_WRITTEN (type
) = 1;
19768 /* We are going to output a DIE to represent the unqualified version
19769 of this type (i.e. without any const or volatile qualifiers) so
19770 get the main variant (i.e. the unqualified version) of this type
19771 now. (Vectors are special because the debugging info is in the
19772 cloned type itself). */
19773 if (TREE_CODE (type
) != VECTOR_TYPE
)
19774 type
= type_main_variant (type
);
19776 if (TREE_ASM_WRITTEN (type
))
19779 switch (TREE_CODE (type
))
19785 case REFERENCE_TYPE
:
19786 /* We must set TREE_ASM_WRITTEN in case this is a recursive type. This
19787 ensures that the gen_type_die recursion will terminate even if the
19788 type is recursive. Recursive types are possible in Ada. */
19789 /* ??? We could perhaps do this for all types before the switch
19791 TREE_ASM_WRITTEN (type
) = 1;
19793 /* For these types, all that is required is that we output a DIE (or a
19794 set of DIEs) to represent the "basis" type. */
19795 gen_type_die_with_usage (TREE_TYPE (type
), context_die
,
19796 DINFO_USAGE_IND_USE
);
19800 /* This code is used for C++ pointer-to-data-member types.
19801 Output a description of the relevant class type. */
19802 gen_type_die_with_usage (TYPE_OFFSET_BASETYPE (type
), context_die
,
19803 DINFO_USAGE_IND_USE
);
19805 /* Output a description of the type of the object pointed to. */
19806 gen_type_die_with_usage (TREE_TYPE (type
), context_die
,
19807 DINFO_USAGE_IND_USE
);
19809 /* Now output a DIE to represent this pointer-to-data-member type
19811 gen_ptr_to_mbr_type_die (type
, context_die
);
19814 case FUNCTION_TYPE
:
19815 /* Force out return type (in case it wasn't forced out already). */
19816 gen_type_die_with_usage (TREE_TYPE (type
), context_die
,
19817 DINFO_USAGE_DIR_USE
);
19818 gen_subroutine_type_die (type
, context_die
);
19822 /* Force out return type (in case it wasn't forced out already). */
19823 gen_type_die_with_usage (TREE_TYPE (type
), context_die
,
19824 DINFO_USAGE_DIR_USE
);
19825 gen_subroutine_type_die (type
, context_die
);
19829 gen_array_type_die (type
, context_die
);
19833 gen_array_type_die (type
, context_die
);
19836 case ENUMERAL_TYPE
:
19839 case QUAL_UNION_TYPE
:
19840 gen_tagged_type_die (type
, context_die
, usage
);
19846 case FIXED_POINT_TYPE
:
19849 /* No DIEs needed for fundamental types. */
19854 /* Just use DW_TAG_unspecified_type. */
19856 dw_die_ref type_die
= lookup_type_die (type
);
19857 if (type_die
== NULL
)
19859 tree name
= TYPE_NAME (type
);
19860 if (TREE_CODE (name
) == TYPE_DECL
)
19861 name
= DECL_NAME (name
);
19862 type_die
= new_die (DW_TAG_unspecified_type
, comp_unit_die (), type
);
19863 add_name_attribute (type_die
, IDENTIFIER_POINTER (name
));
19864 equate_type_number_to_die (type
, type_die
);
19870 if (is_cxx_auto (type
))
19872 tree name
= TYPE_NAME (type
);
19873 if (TREE_CODE (name
) == TYPE_DECL
)
19874 name
= DECL_NAME (name
);
19875 dw_die_ref
*die
= (name
== get_identifier ("auto")
19876 ? &auto_die
: &decltype_auto_die
);
19879 *die
= new_die (DW_TAG_unspecified_type
,
19880 comp_unit_die (), NULL_TREE
);
19881 add_name_attribute (*die
, IDENTIFIER_POINTER (name
));
19883 equate_type_number_to_die (type
, *die
);
19886 gcc_unreachable ();
19889 TREE_ASM_WRITTEN (type
) = 1;
19893 gen_type_die (tree type
, dw_die_ref context_die
)
19895 gen_type_die_with_usage (type
, context_die
, DINFO_USAGE_DIR_USE
);
19898 /* Generate a DW_TAG_lexical_block DIE followed by DIEs to represent all of the
19899 things which are local to the given block. */
19902 gen_block_die (tree stmt
, dw_die_ref context_die
, int depth
)
19904 int must_output_die
= 0;
19907 /* Ignore blocks that are NULL. */
19908 if (stmt
== NULL_TREE
)
19911 inlined_func
= inlined_function_outer_scope_p (stmt
);
19913 /* If the block is one fragment of a non-contiguous block, do not
19914 process the variables, since they will have been done by the
19915 origin block. Do process subblocks. */
19916 if (BLOCK_FRAGMENT_ORIGIN (stmt
))
19920 for (sub
= BLOCK_SUBBLOCKS (stmt
); sub
; sub
= BLOCK_CHAIN (sub
))
19921 gen_block_die (sub
, context_die
, depth
+ 1);
19926 /* Determine if we need to output any Dwarf DIEs at all to represent this
19929 /* The outer scopes for inlinings *must* always be represented. We
19930 generate DW_TAG_inlined_subroutine DIEs for them. (See below.) */
19931 must_output_die
= 1;
19934 /* Determine if this block directly contains any "significant"
19935 local declarations which we will need to output DIEs for. */
19936 if (debug_info_level
> DINFO_LEVEL_TERSE
)
19937 /* We are not in terse mode so *any* local declaration counts
19938 as being a "significant" one. */
19939 must_output_die
= ((BLOCK_VARS (stmt
) != NULL
19940 || BLOCK_NUM_NONLOCALIZED_VARS (stmt
))
19941 && (TREE_USED (stmt
)
19942 || TREE_ASM_WRITTEN (stmt
)
19943 || BLOCK_ABSTRACT (stmt
)));
19944 else if ((TREE_USED (stmt
)
19945 || TREE_ASM_WRITTEN (stmt
)
19946 || BLOCK_ABSTRACT (stmt
))
19947 && !dwarf2out_ignore_block (stmt
))
19948 must_output_die
= 1;
19951 /* It would be a waste of space to generate a Dwarf DW_TAG_lexical_block
19952 DIE for any block which contains no significant local declarations at
19953 all. Rather, in such cases we just call `decls_for_scope' so that any
19954 needed Dwarf info for any sub-blocks will get properly generated. Note
19955 that in terse mode, our definition of what constitutes a "significant"
19956 local declaration gets restricted to include only inlined function
19957 instances and local (nested) function definitions. */
19958 if (must_output_die
)
19962 /* If STMT block is abstract, that means we have been called
19963 indirectly from dwarf2out_abstract_function.
19964 That function rightfully marks the descendent blocks (of
19965 the abstract function it is dealing with) as being abstract,
19966 precisely to prevent us from emitting any
19967 DW_TAG_inlined_subroutine DIE as a descendent
19968 of an abstract function instance. So in that case, we should
19969 not call gen_inlined_subroutine_die.
19971 Later though, when cgraph asks dwarf2out to emit info
19972 for the concrete instance of the function decl into which
19973 the concrete instance of STMT got inlined, the later will lead
19974 to the generation of a DW_TAG_inlined_subroutine DIE. */
19975 if (! BLOCK_ABSTRACT (stmt
))
19976 gen_inlined_subroutine_die (stmt
, context_die
, depth
);
19979 gen_lexical_block_die (stmt
, context_die
, depth
);
19982 decls_for_scope (stmt
, context_die
, depth
);
19985 /* Process variable DECL (or variable with origin ORIGIN) within
19986 block STMT and add it to CONTEXT_DIE. */
19988 process_scope_var (tree stmt
, tree decl
, tree origin
, dw_die_ref context_die
)
19991 tree decl_or_origin
= decl
? decl
: origin
;
19993 if (TREE_CODE (decl_or_origin
) == FUNCTION_DECL
)
19994 die
= lookup_decl_die (decl_or_origin
);
19995 else if (TREE_CODE (decl_or_origin
) == TYPE_DECL
19996 && TYPE_DECL_IS_STUB (decl_or_origin
))
19997 die
= lookup_type_die (TREE_TYPE (decl_or_origin
));
20001 if (die
!= NULL
&& die
->die_parent
== NULL
)
20002 add_child_die (context_die
, die
);
20003 else if (TREE_CODE (decl_or_origin
) == IMPORTED_DECL
)
20004 dwarf2out_imported_module_or_decl_1 (decl_or_origin
, DECL_NAME (decl_or_origin
),
20005 stmt
, context_die
);
20007 gen_decl_die (decl
, origin
, context_die
);
20010 /* Generate all of the decls declared within a given scope and (recursively)
20011 all of its sub-blocks. */
20014 decls_for_scope (tree stmt
, dw_die_ref context_die
, int depth
)
20020 /* Ignore NULL blocks. */
20021 if (stmt
== NULL_TREE
)
20024 /* Output the DIEs to represent all of the data objects and typedefs
20025 declared directly within this block but not within any nested
20026 sub-blocks. Also, nested function and tag DIEs have been
20027 generated with a parent of NULL; fix that up now. We don't
20028 have to do this if we're at -g1. */
20029 if (debug_info_level
> DINFO_LEVEL_TERSE
)
20031 for (decl
= BLOCK_VARS (stmt
); decl
!= NULL
; decl
= DECL_CHAIN (decl
))
20032 process_scope_var (stmt
, decl
, NULL_TREE
, context_die
);
20033 for (i
= 0; i
< BLOCK_NUM_NONLOCALIZED_VARS (stmt
); i
++)
20034 process_scope_var (stmt
, NULL
, BLOCK_NONLOCALIZED_VAR (stmt
, i
),
20038 /* Even if we're at -g1, we need to process the subblocks in order to get
20039 inlined call information. */
20041 /* Output the DIEs to represent all sub-blocks (and the items declared
20042 therein) of this block. */
20043 for (subblocks
= BLOCK_SUBBLOCKS (stmt
);
20045 subblocks
= BLOCK_CHAIN (subblocks
))
20046 gen_block_die (subblocks
, context_die
, depth
+ 1);
20049 /* Is this a typedef we can avoid emitting? */
20052 is_redundant_typedef (const_tree decl
)
20054 if (TYPE_DECL_IS_STUB (decl
))
20057 if (DECL_ARTIFICIAL (decl
)
20058 && DECL_CONTEXT (decl
)
20059 && is_tagged_type (DECL_CONTEXT (decl
))
20060 && TREE_CODE (TYPE_NAME (DECL_CONTEXT (decl
))) == TYPE_DECL
20061 && DECL_NAME (decl
) == DECL_NAME (TYPE_NAME (DECL_CONTEXT (decl
))))
20062 /* Also ignore the artificial member typedef for the class name. */
20068 /* Return TRUE if TYPE is a typedef that names a type for linkage
20069 purposes. This kind of typedefs is produced by the C++ FE for
20072 typedef struct {...} foo;
20074 In that case, there is no typedef variant type produced for foo.
20075 Rather, the TREE_TYPE of the TYPE_DECL of foo is the anonymous
20079 is_naming_typedef_decl (const_tree decl
)
20081 if (decl
== NULL_TREE
20082 || TREE_CODE (decl
) != TYPE_DECL
20083 || !is_tagged_type (TREE_TYPE (decl
))
20084 || DECL_IS_BUILTIN (decl
)
20085 || is_redundant_typedef (decl
)
20086 /* It looks like Ada produces TYPE_DECLs that are very similar
20087 to C++ naming typedefs but that have different
20088 semantics. Let's be specific to c++ for now. */
20092 return (DECL_ORIGINAL_TYPE (decl
) == NULL_TREE
20093 && TYPE_NAME (TREE_TYPE (decl
)) == decl
20094 && (TYPE_STUB_DECL (TREE_TYPE (decl
))
20095 != TYPE_NAME (TREE_TYPE (decl
))));
20098 /* Returns the DIE for a context. */
20100 static inline dw_die_ref
20101 get_context_die (tree context
)
20105 /* Find die that represents this context. */
20106 if (TYPE_P (context
))
20108 context
= TYPE_MAIN_VARIANT (context
);
20109 return strip_naming_typedef (context
, force_type_die (context
));
20112 return force_decl_die (context
);
20114 return comp_unit_die ();
20117 /* Returns the DIE for decl. A DIE will always be returned. */
20120 force_decl_die (tree decl
)
20122 dw_die_ref decl_die
;
20123 unsigned saved_external_flag
;
20124 tree save_fn
= NULL_TREE
;
20125 decl_die
= lookup_decl_die (decl
);
20128 dw_die_ref context_die
= get_context_die (DECL_CONTEXT (decl
));
20130 decl_die
= lookup_decl_die (decl
);
20134 switch (TREE_CODE (decl
))
20136 case FUNCTION_DECL
:
20137 /* Clear current_function_decl, so that gen_subprogram_die thinks
20138 that this is a declaration. At this point, we just want to force
20139 declaration die. */
20140 save_fn
= current_function_decl
;
20141 current_function_decl
= NULL_TREE
;
20142 gen_subprogram_die (decl
, context_die
);
20143 current_function_decl
= save_fn
;
20147 /* Set external flag to force declaration die. Restore it after
20148 gen_decl_die() call. */
20149 saved_external_flag
= DECL_EXTERNAL (decl
);
20150 DECL_EXTERNAL (decl
) = 1;
20151 gen_decl_die (decl
, NULL
, context_die
);
20152 DECL_EXTERNAL (decl
) = saved_external_flag
;
20155 case NAMESPACE_DECL
:
20156 if (dwarf_version
>= 3 || !dwarf_strict
)
20157 dwarf2out_decl (decl
);
20159 /* DWARF2 has neither DW_TAG_module, nor DW_TAG_namespace. */
20160 decl_die
= comp_unit_die ();
20163 case TRANSLATION_UNIT_DECL
:
20164 decl_die
= comp_unit_die ();
20168 gcc_unreachable ();
20171 /* We should be able to find the DIE now. */
20173 decl_die
= lookup_decl_die (decl
);
20174 gcc_assert (decl_die
);
20180 /* Returns the DIE for TYPE, that must not be a base type. A DIE is
20181 always returned. */
20184 force_type_die (tree type
)
20186 dw_die_ref type_die
;
20188 type_die
= lookup_type_die (type
);
20191 dw_die_ref context_die
= get_context_die (TYPE_CONTEXT (type
));
20193 type_die
= modified_type_die (type
, TYPE_READONLY (type
),
20194 TYPE_VOLATILE (type
), context_die
);
20195 gcc_assert (type_die
);
20200 /* Force out any required namespaces to be able to output DECL,
20201 and return the new context_die for it, if it's changed. */
20204 setup_namespace_context (tree thing
, dw_die_ref context_die
)
20206 tree context
= (DECL_P (thing
)
20207 ? DECL_CONTEXT (thing
) : TYPE_CONTEXT (thing
));
20208 if (context
&& TREE_CODE (context
) == NAMESPACE_DECL
)
20209 /* Force out the namespace. */
20210 context_die
= force_decl_die (context
);
20212 return context_die
;
20215 /* Emit a declaration DIE for THING (which is either a DECL or a tagged
20216 type) within its namespace, if appropriate.
20218 For compatibility with older debuggers, namespace DIEs only contain
20219 declarations; all definitions are emitted at CU scope. */
20222 declare_in_namespace (tree thing
, dw_die_ref context_die
)
20224 dw_die_ref ns_context
;
20226 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
20227 return context_die
;
20229 /* If this decl is from an inlined function, then don't try to emit it in its
20230 namespace, as we will get confused. It would have already been emitted
20231 when the abstract instance of the inline function was emitted anyways. */
20232 if (DECL_P (thing
) && DECL_ABSTRACT_ORIGIN (thing
))
20233 return context_die
;
20235 ns_context
= setup_namespace_context (thing
, context_die
);
20237 if (ns_context
!= context_die
)
20241 if (DECL_P (thing
))
20242 gen_decl_die (thing
, NULL
, ns_context
);
20244 gen_type_die (thing
, ns_context
);
20246 return context_die
;
20249 /* Generate a DIE for a namespace or namespace alias. */
20252 gen_namespace_die (tree decl
, dw_die_ref context_die
)
20254 dw_die_ref namespace_die
;
20256 /* Namespace aliases have a DECL_ABSTRACT_ORIGIN of the namespace
20257 they are an alias of. */
20258 if (DECL_ABSTRACT_ORIGIN (decl
) == NULL
)
20260 /* Output a real namespace or module. */
20261 context_die
= setup_namespace_context (decl
, comp_unit_die ());
20262 namespace_die
= new_die (is_fortran ()
20263 ? DW_TAG_module
: DW_TAG_namespace
,
20264 context_die
, decl
);
20265 /* For Fortran modules defined in different CU don't add src coords. */
20266 if (namespace_die
->die_tag
== DW_TAG_module
&& DECL_EXTERNAL (decl
))
20268 const char *name
= dwarf2_name (decl
, 0);
20270 add_name_attribute (namespace_die
, name
);
20273 add_name_and_src_coords_attributes (namespace_die
, decl
);
20274 if (DECL_EXTERNAL (decl
))
20275 add_AT_flag (namespace_die
, DW_AT_declaration
, 1);
20276 equate_decl_number_to_die (decl
, namespace_die
);
20280 /* Output a namespace alias. */
20282 /* Force out the namespace we are an alias of, if necessary. */
20283 dw_die_ref origin_die
20284 = force_decl_die (DECL_ABSTRACT_ORIGIN (decl
));
20286 if (DECL_FILE_SCOPE_P (decl
)
20287 || TREE_CODE (DECL_CONTEXT (decl
)) == NAMESPACE_DECL
)
20288 context_die
= setup_namespace_context (decl
, comp_unit_die ());
20289 /* Now create the namespace alias DIE. */
20290 namespace_die
= new_die (DW_TAG_imported_declaration
, context_die
, decl
);
20291 add_name_and_src_coords_attributes (namespace_die
, decl
);
20292 add_AT_die_ref (namespace_die
, DW_AT_import
, origin_die
);
20293 equate_decl_number_to_die (decl
, namespace_die
);
20295 /* Bypass dwarf2_name's check for DECL_NAMELESS. */
20296 if (want_pubnames ())
20297 add_pubname_string (lang_hooks
.dwarf_name (decl
, 1), namespace_die
);
20300 /* Generate Dwarf debug information for a decl described by DECL.
20301 The return value is currently only meaningful for PARM_DECLs,
20302 for all other decls it returns NULL. */
20305 gen_decl_die (tree decl
, tree origin
, dw_die_ref context_die
)
20307 tree decl_or_origin
= decl
? decl
: origin
;
20308 tree class_origin
= NULL
, ultimate_origin
;
20310 if (DECL_P (decl_or_origin
) && DECL_IGNORED_P (decl_or_origin
))
20313 switch (TREE_CODE (decl_or_origin
))
20319 if (!is_fortran () && !is_ada ())
20321 /* The individual enumerators of an enum type get output when we output
20322 the Dwarf representation of the relevant enum type itself. */
20326 /* Emit its type. */
20327 gen_type_die (TREE_TYPE (decl
), context_die
);
20329 /* And its containing namespace. */
20330 context_die
= declare_in_namespace (decl
, context_die
);
20332 gen_const_die (decl
, context_die
);
20335 case FUNCTION_DECL
:
20336 /* Don't output any DIEs to represent mere function declarations,
20337 unless they are class members or explicit block externs. */
20338 if (DECL_INITIAL (decl_or_origin
) == NULL_TREE
20339 && DECL_FILE_SCOPE_P (decl_or_origin
)
20340 && (current_function_decl
== NULL_TREE
20341 || DECL_ARTIFICIAL (decl_or_origin
)))
20346 /* This doesn't work because the C frontend sets DECL_ABSTRACT_ORIGIN
20347 on local redeclarations of global functions. That seems broken. */
20348 if (current_function_decl
!= decl
)
20349 /* This is only a declaration. */;
20352 /* If we're emitting a clone, emit info for the abstract instance. */
20353 if (origin
|| DECL_ORIGIN (decl
) != decl
)
20354 dwarf2out_abstract_function (origin
20355 ? DECL_ORIGIN (origin
)
20356 : DECL_ABSTRACT_ORIGIN (decl
));
20358 /* If we're emitting an out-of-line copy of an inline function,
20359 emit info for the abstract instance and set up to refer to it. */
20360 else if (cgraph_function_possibly_inlined_p (decl
)
20361 && ! DECL_ABSTRACT (decl
)
20362 && ! class_or_namespace_scope_p (context_die
)
20363 /* dwarf2out_abstract_function won't emit a die if this is just
20364 a declaration. We must avoid setting DECL_ABSTRACT_ORIGIN in
20365 that case, because that works only if we have a die. */
20366 && DECL_INITIAL (decl
) != NULL_TREE
)
20368 dwarf2out_abstract_function (decl
);
20369 set_decl_origin_self (decl
);
20372 /* Otherwise we're emitting the primary DIE for this decl. */
20373 else if (debug_info_level
> DINFO_LEVEL_TERSE
)
20375 /* Before we describe the FUNCTION_DECL itself, make sure that we
20376 have its containing type. */
20378 origin
= decl_class_context (decl
);
20379 if (origin
!= NULL_TREE
)
20380 gen_type_die (origin
, context_die
);
20382 /* And its return type. */
20383 gen_type_die (TREE_TYPE (TREE_TYPE (decl
)), context_die
);
20385 /* And its virtual context. */
20386 if (DECL_VINDEX (decl
) != NULL_TREE
)
20387 gen_type_die (DECL_CONTEXT (decl
), context_die
);
20389 /* Make sure we have a member DIE for decl. */
20390 if (origin
!= NULL_TREE
)
20391 gen_type_die_for_member (origin
, decl
, context_die
);
20393 /* And its containing namespace. */
20394 context_die
= declare_in_namespace (decl
, context_die
);
20397 /* Now output a DIE to represent the function itself. */
20399 gen_subprogram_die (decl
, context_die
);
20403 /* If we are in terse mode, don't generate any DIEs to represent any
20404 actual typedefs. */
20405 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
20408 /* In the special case of a TYPE_DECL node representing the declaration
20409 of some type tag, if the given TYPE_DECL is marked as having been
20410 instantiated from some other (original) TYPE_DECL node (e.g. one which
20411 was generated within the original definition of an inline function) we
20412 used to generate a special (abbreviated) DW_TAG_structure_type,
20413 DW_TAG_union_type, or DW_TAG_enumeration_type DIE here. But nothing
20414 should be actually referencing those DIEs, as variable DIEs with that
20415 type would be emitted already in the abstract origin, so it was always
20416 removed during unused type prunning. Don't add anything in this
20418 if (TYPE_DECL_IS_STUB (decl
) && decl_ultimate_origin (decl
) != NULL_TREE
)
20421 if (is_redundant_typedef (decl
))
20422 gen_type_die (TREE_TYPE (decl
), context_die
);
20424 /* Output a DIE to represent the typedef itself. */
20425 gen_typedef_die (decl
, context_die
);
20429 if (debug_info_level
>= DINFO_LEVEL_NORMAL
)
20430 gen_label_die (decl
, context_die
);
20435 /* If we are in terse mode, don't generate any DIEs to represent any
20436 variable declarations or definitions. */
20437 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
20440 /* Output any DIEs that are needed to specify the type of this data
20442 if (decl_by_reference_p (decl_or_origin
))
20443 gen_type_die (TREE_TYPE (TREE_TYPE (decl_or_origin
)), context_die
);
20445 gen_type_die (TREE_TYPE (decl_or_origin
), context_die
);
20447 /* And its containing type. */
20448 class_origin
= decl_class_context (decl_or_origin
);
20449 if (class_origin
!= NULL_TREE
)
20450 gen_type_die_for_member (class_origin
, decl_or_origin
, context_die
);
20452 /* And its containing namespace. */
20453 context_die
= declare_in_namespace (decl_or_origin
, context_die
);
20455 /* Now output the DIE to represent the data object itself. This gets
20456 complicated because of the possibility that the VAR_DECL really
20457 represents an inlined instance of a formal parameter for an inline
20459 ultimate_origin
= decl_ultimate_origin (decl_or_origin
);
20460 if (ultimate_origin
!= NULL_TREE
20461 && TREE_CODE (ultimate_origin
) == PARM_DECL
)
20462 gen_formal_parameter_die (decl
, origin
,
20463 true /* Emit name attribute. */,
20466 gen_variable_die (decl
, origin
, context_die
);
20470 /* Ignore the nameless fields that are used to skip bits but handle C++
20471 anonymous unions and structs. */
20472 if (DECL_NAME (decl
) != NULL_TREE
20473 || TREE_CODE (TREE_TYPE (decl
)) == UNION_TYPE
20474 || TREE_CODE (TREE_TYPE (decl
)) == RECORD_TYPE
)
20476 gen_type_die (member_declared_type (decl
), context_die
);
20477 gen_field_die (decl
, context_die
);
20482 if (DECL_BY_REFERENCE (decl_or_origin
))
20483 gen_type_die (TREE_TYPE (TREE_TYPE (decl_or_origin
)), context_die
);
20485 gen_type_die (TREE_TYPE (decl_or_origin
), context_die
);
20486 return gen_formal_parameter_die (decl
, origin
,
20487 true /* Emit name attribute. */,
20490 case NAMESPACE_DECL
:
20491 case IMPORTED_DECL
:
20492 if (dwarf_version
>= 3 || !dwarf_strict
)
20493 gen_namespace_die (decl
, context_die
);
20496 case NAMELIST_DECL
:
20497 gen_namelist_decl (DECL_NAME (decl
), context_die
,
20498 NAMELIST_DECL_ASSOCIATED_DECL (decl
));
20502 /* Probably some frontend-internal decl. Assume we don't care. */
20503 gcc_assert ((int)TREE_CODE (decl
) > NUM_TREE_CODES
);
20510 /* Output debug information for global decl DECL. Called from toplev.c after
20511 compilation proper has finished. */
20514 dwarf2out_global_decl (tree decl
)
20516 /* Output DWARF2 information for file-scope tentative data object
20517 declarations, file-scope (extern) function declarations (which
20518 had no corresponding body) and file-scope tagged type declarations
20519 and definitions which have not yet been forced out. */
20520 if (TREE_CODE (decl
) != FUNCTION_DECL
|| !DECL_INITIAL (decl
))
20521 dwarf2out_decl (decl
);
20524 /* Output debug information for type decl DECL. Called from toplev.c
20525 and from language front ends (to record built-in types). */
20527 dwarf2out_type_decl (tree decl
, int local
)
20530 dwarf2out_decl (decl
);
20533 /* Output debug information for imported module or decl DECL.
20534 NAME is non-NULL name in the lexical block if the decl has been renamed.
20535 LEXICAL_BLOCK is the lexical block (which TREE_CODE is a BLOCK)
20536 that DECL belongs to.
20537 LEXICAL_BLOCK_DIE is the DIE of LEXICAL_BLOCK. */
20539 dwarf2out_imported_module_or_decl_1 (tree decl
,
20541 tree lexical_block
,
20542 dw_die_ref lexical_block_die
)
20544 expanded_location xloc
;
20545 dw_die_ref imported_die
= NULL
;
20546 dw_die_ref at_import_die
;
20548 if (TREE_CODE (decl
) == IMPORTED_DECL
)
20550 xloc
= expand_location (DECL_SOURCE_LOCATION (decl
));
20551 decl
= IMPORTED_DECL_ASSOCIATED_DECL (decl
);
20555 xloc
= expand_location (input_location
);
20557 if (TREE_CODE (decl
) == TYPE_DECL
|| TREE_CODE (decl
) == CONST_DECL
)
20559 at_import_die
= force_type_die (TREE_TYPE (decl
));
20560 /* For namespace N { typedef void T; } using N::T; base_type_die
20561 returns NULL, but DW_TAG_imported_declaration requires
20562 the DW_AT_import tag. Force creation of DW_TAG_typedef. */
20563 if (!at_import_die
)
20565 gcc_assert (TREE_CODE (decl
) == TYPE_DECL
);
20566 gen_typedef_die (decl
, get_context_die (DECL_CONTEXT (decl
)));
20567 at_import_die
= lookup_type_die (TREE_TYPE (decl
));
20568 gcc_assert (at_import_die
);
20573 at_import_die
= lookup_decl_die (decl
);
20574 if (!at_import_die
)
20576 /* If we're trying to avoid duplicate debug info, we may not have
20577 emitted the member decl for this field. Emit it now. */
20578 if (TREE_CODE (decl
) == FIELD_DECL
)
20580 tree type
= DECL_CONTEXT (decl
);
20582 if (TYPE_CONTEXT (type
)
20583 && TYPE_P (TYPE_CONTEXT (type
))
20584 && !should_emit_struct_debug (TYPE_CONTEXT (type
),
20585 DINFO_USAGE_DIR_USE
))
20587 gen_type_die_for_member (type
, decl
,
20588 get_context_die (TYPE_CONTEXT (type
)));
20590 if (TREE_CODE (decl
) == NAMELIST_DECL
)
20591 at_import_die
= gen_namelist_decl (DECL_NAME (decl
),
20592 get_context_die (DECL_CONTEXT (decl
)),
20595 at_import_die
= force_decl_die (decl
);
20599 if (TREE_CODE (decl
) == NAMESPACE_DECL
)
20601 if (dwarf_version
>= 3 || !dwarf_strict
)
20602 imported_die
= new_die (DW_TAG_imported_module
,
20609 imported_die
= new_die (DW_TAG_imported_declaration
,
20613 add_AT_file (imported_die
, DW_AT_decl_file
, lookup_filename (xloc
.file
));
20614 add_AT_unsigned (imported_die
, DW_AT_decl_line
, xloc
.line
);
20616 add_AT_string (imported_die
, DW_AT_name
,
20617 IDENTIFIER_POINTER (name
));
20618 add_AT_die_ref (imported_die
, DW_AT_import
, at_import_die
);
20621 /* Output debug information for imported module or decl DECL.
20622 NAME is non-NULL name in context if the decl has been renamed.
20623 CHILD is true if decl is one of the renamed decls as part of
20624 importing whole module. */
20627 dwarf2out_imported_module_or_decl (tree decl
, tree name
, tree context
,
20630 /* dw_die_ref at_import_die; */
20631 dw_die_ref scope_die
;
20633 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
20638 /* To emit DW_TAG_imported_module or DW_TAG_imported_decl, we need two DIEs.
20639 We need decl DIE for reference and scope die. First, get DIE for the decl
20642 /* Get the scope die for decl context. Use comp_unit_die for global module
20643 or decl. If die is not found for non globals, force new die. */
20645 && TYPE_P (context
)
20646 && !should_emit_struct_debug (context
, DINFO_USAGE_DIR_USE
))
20649 if (!(dwarf_version
>= 3 || !dwarf_strict
))
20652 scope_die
= get_context_die (context
);
20656 gcc_assert (scope_die
->die_child
);
20657 gcc_assert (scope_die
->die_child
->die_tag
== DW_TAG_imported_module
);
20658 gcc_assert (TREE_CODE (decl
) != NAMESPACE_DECL
);
20659 scope_die
= scope_die
->die_child
;
20662 /* OK, now we have DIEs for decl as well as scope. Emit imported die. */
20663 dwarf2out_imported_module_or_decl_1 (decl
, name
, context
, scope_die
);
20667 /* Output debug information for namelists. */
20670 gen_namelist_decl (tree name
, dw_die_ref scope_die
, tree item_decls
)
20672 dw_die_ref nml_die
, nml_item_die
, nml_item_ref_die
;
20676 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
20679 gcc_assert (scope_die
!= NULL
);
20680 nml_die
= new_die (DW_TAG_namelist
, scope_die
, NULL
);
20681 add_AT_string (nml_die
, DW_AT_name
, IDENTIFIER_POINTER (name
));
20683 /* If there are no item_decls, we have a nondefining namelist, e.g.
20684 with USE association; hence, set DW_AT_declaration. */
20685 if (item_decls
== NULL_TREE
)
20687 add_AT_flag (nml_die
, DW_AT_declaration
, 1);
20691 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (item_decls
), i
, value
)
20693 nml_item_ref_die
= lookup_decl_die (value
);
20694 if (!nml_item_ref_die
)
20695 nml_item_ref_die
= force_decl_die (value
);
20697 nml_item_die
= new_die (DW_TAG_namelist_item
, nml_die
, NULL
);
20698 add_AT_die_ref (nml_item_die
, DW_AT_namelist_items
, nml_item_ref_die
);
20704 /* Write the debugging output for DECL. */
20707 dwarf2out_decl (tree decl
)
20709 dw_die_ref context_die
= comp_unit_die ();
20711 switch (TREE_CODE (decl
))
20716 case FUNCTION_DECL
:
20717 /* What we would really like to do here is to filter out all mere
20718 file-scope declarations of file-scope functions which are never
20719 referenced later within this translation unit (and keep all of ones
20720 that *are* referenced later on) but we aren't clairvoyant, so we have
20721 no idea which functions will be referenced in the future (i.e. later
20722 on within the current translation unit). So here we just ignore all
20723 file-scope function declarations which are not also definitions. If
20724 and when the debugger needs to know something about these functions,
20725 it will have to hunt around and find the DWARF information associated
20726 with the definition of the function.
20728 We can't just check DECL_EXTERNAL to find out which FUNCTION_DECL
20729 nodes represent definitions and which ones represent mere
20730 declarations. We have to check DECL_INITIAL instead. That's because
20731 the C front-end supports some weird semantics for "extern inline"
20732 function definitions. These can get inlined within the current
20733 translation unit (and thus, we need to generate Dwarf info for their
20734 abstract instances so that the Dwarf info for the concrete inlined
20735 instances can have something to refer to) but the compiler never
20736 generates any out-of-lines instances of such things (despite the fact
20737 that they *are* definitions).
20739 The important point is that the C front-end marks these "extern
20740 inline" functions as DECL_EXTERNAL, but we need to generate DWARF for
20741 them anyway. Note that the C++ front-end also plays some similar games
20742 for inline function definitions appearing within include files which
20743 also contain `#pragma interface' pragmas.
20745 If we are called from dwarf2out_abstract_function output a DIE
20746 anyway. We can end up here this way with early inlining and LTO
20747 where the inlined function is output in a different LTRANS unit
20749 if (DECL_INITIAL (decl
) == NULL_TREE
20750 && ! DECL_ABSTRACT (decl
))
20753 /* If we're a nested function, initially use a parent of NULL; if we're
20754 a plain function, this will be fixed up in decls_for_scope. If
20755 we're a method, it will be ignored, since we already have a DIE. */
20756 if (decl_function_context (decl
)
20757 /* But if we're in terse mode, we don't care about scope. */
20758 && debug_info_level
> DINFO_LEVEL_TERSE
)
20759 context_die
= NULL
;
20763 /* Ignore this VAR_DECL if it refers to a file-scope extern data object
20764 declaration and if the declaration was never even referenced from
20765 within this entire compilation unit. We suppress these DIEs in
20766 order to save space in the .debug section (by eliminating entries
20767 which are probably useless). Note that we must not suppress
20768 block-local extern declarations (whether used or not) because that
20769 would screw-up the debugger's name lookup mechanism and cause it to
20770 miss things which really ought to be in scope at a given point. */
20771 if (DECL_EXTERNAL (decl
) && !TREE_USED (decl
))
20774 /* For local statics lookup proper context die. */
20775 if (TREE_STATIC (decl
)
20776 && DECL_CONTEXT (decl
)
20777 && TREE_CODE (DECL_CONTEXT (decl
)) == FUNCTION_DECL
)
20778 context_die
= lookup_decl_die (DECL_CONTEXT (decl
));
20780 /* If we are in terse mode, don't generate any DIEs to represent any
20781 variable declarations or definitions. */
20782 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
20787 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
20789 if (!is_fortran () && !is_ada ())
20791 if (TREE_STATIC (decl
) && decl_function_context (decl
))
20792 context_die
= lookup_decl_die (DECL_CONTEXT (decl
));
20795 case NAMESPACE_DECL
:
20796 case IMPORTED_DECL
:
20797 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
20799 if (lookup_decl_die (decl
) != NULL
)
20804 /* Don't emit stubs for types unless they are needed by other DIEs. */
20805 if (TYPE_DECL_SUPPRESS_DEBUG (decl
))
20808 /* Don't bother trying to generate any DIEs to represent any of the
20809 normal built-in types for the language we are compiling. */
20810 if (DECL_IS_BUILTIN (decl
))
20813 /* If we are in terse mode, don't generate any DIEs for types. */
20814 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
20817 /* If we're a function-scope tag, initially use a parent of NULL;
20818 this will be fixed up in decls_for_scope. */
20819 if (decl_function_context (decl
))
20820 context_die
= NULL
;
20824 case NAMELIST_DECL
:
20831 gen_decl_die (decl
, NULL
, context_die
);
20834 /* Write the debugging output for DECL. */
20837 dwarf2out_function_decl (tree decl
)
20839 dwarf2out_decl (decl
);
20840 call_arg_locations
= NULL
;
20841 call_arg_loc_last
= NULL
;
20842 call_site_count
= -1;
20843 tail_call_site_count
= -1;
20844 block_map
.release ();
20845 htab_empty (decl_loc_table
);
20846 htab_empty (cached_dw_loc_list_table
);
20849 /* Output a marker (i.e. a label) for the beginning of the generated code for
20850 a lexical block. */
20853 dwarf2out_begin_block (unsigned int line ATTRIBUTE_UNUSED
,
20854 unsigned int blocknum
)
20856 switch_to_section (current_function_section ());
20857 ASM_OUTPUT_DEBUG_LABEL (asm_out_file
, BLOCK_BEGIN_LABEL
, blocknum
);
20860 /* Output a marker (i.e. a label) for the end of the generated code for a
20864 dwarf2out_end_block (unsigned int line ATTRIBUTE_UNUSED
, unsigned int blocknum
)
20866 switch_to_section (current_function_section ());
20867 ASM_OUTPUT_DEBUG_LABEL (asm_out_file
, BLOCK_END_LABEL
, blocknum
);
20870 /* Returns nonzero if it is appropriate not to emit any debugging
20871 information for BLOCK, because it doesn't contain any instructions.
20873 Don't allow this for blocks with nested functions or local classes
20874 as we would end up with orphans, and in the presence of scheduling
20875 we may end up calling them anyway. */
20878 dwarf2out_ignore_block (const_tree block
)
20883 for (decl
= BLOCK_VARS (block
); decl
; decl
= DECL_CHAIN (decl
))
20884 if (TREE_CODE (decl
) == FUNCTION_DECL
20885 || (TREE_CODE (decl
) == TYPE_DECL
&& TYPE_DECL_IS_STUB (decl
)))
20887 for (i
= 0; i
< BLOCK_NUM_NONLOCALIZED_VARS (block
); i
++)
20889 decl
= BLOCK_NONLOCALIZED_VAR (block
, i
);
20890 if (TREE_CODE (decl
) == FUNCTION_DECL
20891 || (TREE_CODE (decl
) == TYPE_DECL
&& TYPE_DECL_IS_STUB (decl
)))
20898 /* Hash table routines for file_hash. */
20901 file_table_eq (const void *p1_p
, const void *p2_p
)
20903 const struct dwarf_file_data
*const p1
=
20904 (const struct dwarf_file_data
*) p1_p
;
20905 const char *const p2
= (const char *) p2_p
;
20906 return filename_cmp (p1
->filename
, p2
) == 0;
20910 file_table_hash (const void *p_p
)
20912 const struct dwarf_file_data
*const p
= (const struct dwarf_file_data
*) p_p
;
20913 return htab_hash_string (p
->filename
);
20916 /* Lookup FILE_NAME (in the list of filenames that we know about here in
20917 dwarf2out.c) and return its "index". The index of each (known) filename is
20918 just a unique number which is associated with only that one filename. We
20919 need such numbers for the sake of generating labels (in the .debug_sfnames
20920 section) and references to those files numbers (in the .debug_srcinfo
20921 and.debug_macinfo sections). If the filename given as an argument is not
20922 found in our current list, add it to the list and assign it the next
20923 available unique index number. In order to speed up searches, we remember
20924 the index of the filename was looked up last. This handles the majority of
20927 static struct dwarf_file_data
*
20928 lookup_filename (const char *file_name
)
20931 struct dwarf_file_data
* created
;
20933 /* Check to see if the file name that was searched on the previous
20934 call matches this file name. If so, return the index. */
20935 if (file_table_last_lookup
20936 && (file_name
== file_table_last_lookup
->filename
20937 || filename_cmp (file_table_last_lookup
->filename
, file_name
) == 0))
20938 return file_table_last_lookup
;
20940 /* Didn't match the previous lookup, search the table. */
20941 slot
= htab_find_slot_with_hash (file_table
, file_name
,
20942 htab_hash_string (file_name
), INSERT
);
20944 return (struct dwarf_file_data
*) *slot
;
20946 created
= ggc_alloc_dwarf_file_data ();
20947 created
->filename
= file_name
;
20948 created
->emitted_number
= 0;
20953 /* If the assembler will construct the file table, then translate the compiler
20954 internal file table number into the assembler file table number, and emit
20955 a .file directive if we haven't already emitted one yet. The file table
20956 numbers are different because we prune debug info for unused variables and
20957 types, which may include filenames. */
20960 maybe_emit_file (struct dwarf_file_data
* fd
)
20962 if (! fd
->emitted_number
)
20964 if (last_emitted_file
)
20965 fd
->emitted_number
= last_emitted_file
->emitted_number
+ 1;
20967 fd
->emitted_number
= 1;
20968 last_emitted_file
= fd
;
20970 if (DWARF2_ASM_LINE_DEBUG_INFO
)
20972 fprintf (asm_out_file
, "\t.file %u ", fd
->emitted_number
);
20973 output_quoted_string (asm_out_file
,
20974 remap_debug_filename (fd
->filename
));
20975 fputc ('\n', asm_out_file
);
20979 return fd
->emitted_number
;
20982 /* Schedule generation of a DW_AT_const_value attribute to DIE.
20983 That generation should happen after function debug info has been
20984 generated. The value of the attribute is the constant value of ARG. */
20987 append_entry_to_tmpl_value_parm_die_table (dw_die_ref die
, tree arg
)
20989 die_arg_entry entry
;
20994 if (!tmpl_value_parm_die_table
)
20995 vec_alloc (tmpl_value_parm_die_table
, 32);
20999 vec_safe_push (tmpl_value_parm_die_table
, entry
);
21002 /* Return TRUE if T is an instance of generic type, FALSE
21006 generic_type_p (tree t
)
21008 if (t
== NULL_TREE
|| !TYPE_P (t
))
21010 return lang_hooks
.get_innermost_generic_parms (t
) != NULL_TREE
;
21013 /* Schedule the generation of the generic parameter dies for the
21014 instance of generic type T. The proper generation itself is later
21015 done by gen_scheduled_generic_parms_dies. */
21018 schedule_generic_params_dies_gen (tree t
)
21020 if (!generic_type_p (t
))
21023 if (!generic_type_instances
)
21024 vec_alloc (generic_type_instances
, 256);
21026 vec_safe_push (generic_type_instances
, t
);
21029 /* Add a DW_AT_const_value attribute to DIEs that were scheduled
21030 by append_entry_to_tmpl_value_parm_die_table. This function must
21031 be called after function DIEs have been generated. */
21034 gen_remaining_tmpl_value_param_die_attribute (void)
21036 if (tmpl_value_parm_die_table
)
21041 FOR_EACH_VEC_ELT (*tmpl_value_parm_die_table
, i
, e
)
21042 tree_add_const_value_attribute (e
->die
, e
->arg
);
21046 /* Generate generic parameters DIEs for instances of generic types
21047 that have been previously scheduled by
21048 schedule_generic_params_dies_gen. This function must be called
21049 after all the types of the CU have been laid out. */
21052 gen_scheduled_generic_parms_dies (void)
21057 if (!generic_type_instances
)
21060 FOR_EACH_VEC_ELT (*generic_type_instances
, i
, t
)
21061 if (COMPLETE_TYPE_P (t
))
21062 gen_generic_params_dies (t
);
21066 /* Replace DW_AT_name for the decl with name. */
21069 dwarf2out_set_name (tree decl
, tree name
)
21075 die
= TYPE_SYMTAB_DIE (decl
);
21079 dname
= dwarf2_name (name
, 0);
21083 attr
= get_AT (die
, DW_AT_name
);
21086 struct indirect_string_node
*node
;
21088 node
= find_AT_string (dname
);
21089 /* replace the string. */
21090 attr
->dw_attr_val
.v
.val_str
= node
;
21094 add_name_attribute (die
, dname
);
21097 /* True if before or during processing of the first function being emitted. */
21098 static bool in_first_function_p
= true;
21099 /* True if loc_note during dwarf2out_var_location call might still be
21100 before first real instruction at address equal to .Ltext0. */
21101 static bool maybe_at_text_label_p
= true;
21102 /* One above highest N where .LVLN label might be equal to .Ltext0 label. */
21103 static unsigned int first_loclabel_num_not_at_text_label
;
21105 /* Called by the final INSN scan whenever we see a var location. We
21106 use it to drop labels in the right places, and throw the location in
21107 our lookup table. */
21110 dwarf2out_var_location (rtx loc_note
)
21112 char loclabel
[MAX_ARTIFICIAL_LABEL_BYTES
+ 2];
21113 struct var_loc_node
*newloc
;
21114 rtx next_real
, next_note
;
21115 static const char *last_label
;
21116 static const char *last_postcall_label
;
21117 static bool last_in_cold_section_p
;
21118 static rtx expected_next_loc_note
;
21122 if (!NOTE_P (loc_note
))
21124 if (CALL_P (loc_note
))
21127 if (SIBLING_CALL_P (loc_note
))
21128 tail_call_site_count
++;
21133 var_loc_p
= NOTE_KIND (loc_note
) == NOTE_INSN_VAR_LOCATION
;
21134 if (var_loc_p
&& !DECL_P (NOTE_VAR_LOCATION_DECL (loc_note
)))
21137 /* Optimize processing a large consecutive sequence of location
21138 notes so we don't spend too much time in next_real_insn. If the
21139 next insn is another location note, remember the next_real_insn
21140 calculation for next time. */
21141 next_real
= cached_next_real_insn
;
21144 if (expected_next_loc_note
!= loc_note
)
21145 next_real
= NULL_RTX
;
21148 next_note
= NEXT_INSN (loc_note
);
21150 || INSN_DELETED_P (next_note
)
21151 || ! NOTE_P (next_note
)
21152 || (NOTE_KIND (next_note
) != NOTE_INSN_VAR_LOCATION
21153 && NOTE_KIND (next_note
) != NOTE_INSN_CALL_ARG_LOCATION
))
21154 next_note
= NULL_RTX
;
21157 next_real
= next_real_insn (loc_note
);
21161 expected_next_loc_note
= next_note
;
21162 cached_next_real_insn
= next_real
;
21165 cached_next_real_insn
= NULL_RTX
;
21167 /* If there are no instructions which would be affected by this note,
21168 don't do anything. */
21170 && next_real
== NULL_RTX
21171 && !NOTE_DURING_CALL_P (loc_note
))
21174 if (next_real
== NULL_RTX
)
21175 next_real
= get_last_insn ();
21177 /* If there were any real insns between note we processed last time
21178 and this note (or if it is the first note), clear
21179 last_{,postcall_}label so that they are not reused this time. */
21180 if (last_var_location_insn
== NULL_RTX
21181 || last_var_location_insn
!= next_real
21182 || last_in_cold_section_p
!= in_cold_section_p
)
21185 last_postcall_label
= NULL
;
21190 decl
= NOTE_VAR_LOCATION_DECL (loc_note
);
21191 newloc
= add_var_loc_to_decl (decl
, loc_note
,
21192 NOTE_DURING_CALL_P (loc_note
)
21193 ? last_postcall_label
: last_label
);
21194 if (newloc
== NULL
)
21203 /* If there were no real insns between note we processed last time
21204 and this note, use the label we emitted last time. Otherwise
21205 create a new label and emit it. */
21206 if (last_label
== NULL
)
21208 ASM_GENERATE_INTERNAL_LABEL (loclabel
, "LVL", loclabel_num
);
21209 ASM_OUTPUT_DEBUG_LABEL (asm_out_file
, "LVL", loclabel_num
);
21211 last_label
= ggc_strdup (loclabel
);
21212 /* See if loclabel might be equal to .Ltext0. If yes,
21213 bump first_loclabel_num_not_at_text_label. */
21214 if (!have_multiple_function_sections
21215 && in_first_function_p
21216 && maybe_at_text_label_p
)
21218 static rtx last_start
;
21220 for (insn
= loc_note
; insn
; insn
= previous_insn (insn
))
21221 if (insn
== last_start
)
21223 else if (!NONDEBUG_INSN_P (insn
))
21227 rtx body
= PATTERN (insn
);
21228 if (GET_CODE (body
) == USE
|| GET_CODE (body
) == CLOBBER
)
21230 /* Inline asm could occupy zero bytes. */
21231 else if (GET_CODE (body
) == ASM_INPUT
21232 || asm_noperands (body
) >= 0)
21234 #ifdef HAVE_attr_length
21235 else if (get_attr_min_length (insn
) == 0)
21240 /* Assume insn has non-zero length. */
21241 maybe_at_text_label_p
= false;
21245 if (maybe_at_text_label_p
)
21247 last_start
= loc_note
;
21248 first_loclabel_num_not_at_text_label
= loclabel_num
;
21255 struct call_arg_loc_node
*ca_loc
21256 = ggc_alloc_cleared_call_arg_loc_node ();
21257 rtx prev
= prev_real_insn (loc_note
), x
;
21258 ca_loc
->call_arg_loc_note
= loc_note
;
21259 ca_loc
->next
= NULL
;
21260 ca_loc
->label
= last_label
;
21263 || (NONJUMP_INSN_P (prev
)
21264 && GET_CODE (PATTERN (prev
)) == SEQUENCE
21265 && CALL_P (XVECEXP (PATTERN (prev
), 0, 0)))));
21266 if (!CALL_P (prev
))
21267 prev
= XVECEXP (PATTERN (prev
), 0, 0);
21268 ca_loc
->tail_call_p
= SIBLING_CALL_P (prev
);
21269 x
= get_call_rtx_from (PATTERN (prev
));
21272 x
= XEXP (XEXP (x
, 0), 0);
21273 if (GET_CODE (x
) == SYMBOL_REF
21274 && SYMBOL_REF_DECL (x
)
21275 && TREE_CODE (SYMBOL_REF_DECL (x
)) == FUNCTION_DECL
)
21276 ca_loc
->symbol_ref
= x
;
21278 ca_loc
->block
= insn_scope (prev
);
21279 if (call_arg_locations
)
21280 call_arg_loc_last
->next
= ca_loc
;
21282 call_arg_locations
= ca_loc
;
21283 call_arg_loc_last
= ca_loc
;
21285 else if (!NOTE_DURING_CALL_P (loc_note
))
21286 newloc
->label
= last_label
;
21289 if (!last_postcall_label
)
21291 sprintf (loclabel
, "%s-1", last_label
);
21292 last_postcall_label
= ggc_strdup (loclabel
);
21294 newloc
->label
= last_postcall_label
;
21297 last_var_location_insn
= next_real
;
21298 last_in_cold_section_p
= in_cold_section_p
;
21301 /* Note in one location list that text section has changed. */
21304 var_location_switch_text_section_1 (void **slot
, void *data ATTRIBUTE_UNUSED
)
21306 var_loc_list
*list
= (var_loc_list
*) *slot
;
21308 list
->last_before_switch
21309 = list
->last
->next
? list
->last
->next
: list
->last
;
21313 /* Note in all location lists that text section has changed. */
21316 var_location_switch_text_section (void)
21318 if (decl_loc_table
== NULL
)
21321 htab_traverse (decl_loc_table
, var_location_switch_text_section_1
, NULL
);
21324 /* Create a new line number table. */
21326 static dw_line_info_table
*
21327 new_line_info_table (void)
21329 dw_line_info_table
*table
;
21331 table
= ggc_alloc_cleared_dw_line_info_table_struct ();
21332 table
->file_num
= 1;
21333 table
->line_num
= 1;
21334 table
->is_stmt
= DWARF_LINE_DEFAULT_IS_STMT_START
;
21339 /* Lookup the "current" table into which we emit line info, so
21340 that we don't have to do it for every source line. */
21343 set_cur_line_info_table (section
*sec
)
21345 dw_line_info_table
*table
;
21347 if (sec
== text_section
)
21348 table
= text_section_line_info
;
21349 else if (sec
== cold_text_section
)
21351 table
= cold_text_section_line_info
;
21354 cold_text_section_line_info
= table
= new_line_info_table ();
21355 table
->end_label
= cold_end_label
;
21360 const char *end_label
;
21362 if (flag_reorder_blocks_and_partition
)
21364 if (in_cold_section_p
)
21365 end_label
= crtl
->subsections
.cold_section_end_label
;
21367 end_label
= crtl
->subsections
.hot_section_end_label
;
21371 char label
[MAX_ARTIFICIAL_LABEL_BYTES
];
21372 ASM_GENERATE_INTERNAL_LABEL (label
, FUNC_END_LABEL
,
21373 current_function_funcdef_no
);
21374 end_label
= ggc_strdup (label
);
21377 table
= new_line_info_table ();
21378 table
->end_label
= end_label
;
21380 vec_safe_push (separate_line_info
, table
);
21383 if (DWARF2_ASM_LINE_DEBUG_INFO
)
21384 table
->is_stmt
= (cur_line_info_table
21385 ? cur_line_info_table
->is_stmt
21386 : DWARF_LINE_DEFAULT_IS_STMT_START
);
21387 cur_line_info_table
= table
;
21391 /* We need to reset the locations at the beginning of each
21392 function. We can't do this in the end_function hook, because the
21393 declarations that use the locations won't have been output when
21394 that hook is called. Also compute have_multiple_function_sections here. */
21397 dwarf2out_begin_function (tree fun
)
21399 section
*sec
= function_section (fun
);
21401 if (sec
!= text_section
)
21402 have_multiple_function_sections
= true;
21404 if (flag_reorder_blocks_and_partition
&& !cold_text_section
)
21406 gcc_assert (current_function_decl
== fun
);
21407 cold_text_section
= unlikely_text_section ();
21408 switch_to_section (cold_text_section
);
21409 ASM_OUTPUT_LABEL (asm_out_file
, cold_text_section_label
);
21410 switch_to_section (sec
);
21413 dwarf2out_note_section_used ();
21414 call_site_count
= 0;
21415 tail_call_site_count
= 0;
21417 set_cur_line_info_table (sec
);
21420 /* Helper function of dwarf2out_end_function, called only after emitting
21421 the very first function into assembly. Check if some .debug_loc range
21422 might end with a .LVL* label that could be equal to .Ltext0.
21423 In that case we must force using absolute addresses in .debug_loc ranges,
21424 because this range could be .LVLN-.Ltext0 .. .LVLM-.Ltext0 for
21425 .LVLN == .LVLM == .Ltext0, thus 0 .. 0, which is a .debug_loc
21427 Set have_multiple_function_sections to true in that case and
21428 terminate htab traversal. */
21431 find_empty_loc_ranges_at_text_label (void **slot
, void *)
21433 var_loc_list
*entry
;
21434 struct var_loc_node
*node
;
21436 entry
= (var_loc_list
*) *slot
;
21437 node
= entry
->first
;
21438 if (node
&& node
->next
&& node
->next
->label
)
21441 const char *label
= node
->next
->label
;
21442 char loclabel
[MAX_ARTIFICIAL_LABEL_BYTES
];
21444 for (i
= 0; i
< first_loclabel_num_not_at_text_label
; i
++)
21446 ASM_GENERATE_INTERNAL_LABEL (loclabel
, "LVL", i
);
21447 if (strcmp (label
, loclabel
) == 0)
21449 have_multiple_function_sections
= true;
21457 /* Hook called after emitting a function into assembly.
21458 This does something only for the very first function emitted. */
21461 dwarf2out_end_function (unsigned int)
21463 if (in_first_function_p
21464 && !have_multiple_function_sections
21465 && first_loclabel_num_not_at_text_label
21467 htab_traverse (decl_loc_table
, find_empty_loc_ranges_at_text_label
,
21469 in_first_function_p
= false;
21470 maybe_at_text_label_p
= false;
21473 /* Add OPCODE+VAL as an entry at the end of the opcode array in TABLE. */
21476 push_dw_line_info_entry (dw_line_info_table
*table
,
21477 enum dw_line_info_opcode opcode
, unsigned int val
)
21479 dw_line_info_entry e
;
21482 vec_safe_push (table
->entries
, e
);
21485 /* Output a label to mark the beginning of a source code line entry
21486 and record information relating to this source line, in
21487 'line_info_table' for later output of the .debug_line section. */
21488 /* ??? The discriminator parameter ought to be unsigned. */
21491 dwarf2out_source_line (unsigned int line
, const char *filename
,
21492 int discriminator
, bool is_stmt
)
21494 unsigned int file_num
;
21495 dw_line_info_table
*table
;
21497 if (debug_info_level
< DINFO_LEVEL_TERSE
|| line
== 0)
21500 /* The discriminator column was added in dwarf4. Simplify the below
21501 by simply removing it if we're not supposed to output it. */
21502 if (dwarf_version
< 4 && dwarf_strict
)
21505 table
= cur_line_info_table
;
21506 file_num
= maybe_emit_file (lookup_filename (filename
));
21508 /* ??? TODO: Elide duplicate line number entries. Traditionally,
21509 the debugger has used the second (possibly duplicate) line number
21510 at the beginning of the function to mark the end of the prologue.
21511 We could eliminate any other duplicates within the function. For
21512 Dwarf3, we ought to include the DW_LNS_set_prologue_end mark in
21513 that second line number entry. */
21514 /* Recall that this end-of-prologue indication is *not* the same thing
21515 as the end_prologue debug hook. The NOTE_INSN_PROLOGUE_END note,
21516 to which the hook corresponds, follows the last insn that was
21517 emitted by gen_prologue. What we need is to precede the first insn
21518 that had been emitted after NOTE_INSN_FUNCTION_BEG, i.e. the first
21519 insn that corresponds to something the user wrote. These may be
21520 very different locations once scheduling is enabled. */
21522 if (0 && file_num
== table
->file_num
21523 && line
== table
->line_num
21524 && discriminator
== table
->discrim_num
21525 && is_stmt
== table
->is_stmt
)
21528 switch_to_section (current_function_section ());
21530 /* If requested, emit something human-readable. */
21531 if (flag_debug_asm
)
21532 fprintf (asm_out_file
, "\t%s %s:%d\n", ASM_COMMENT_START
, filename
, line
);
21534 if (DWARF2_ASM_LINE_DEBUG_INFO
)
21536 /* Emit the .loc directive understood by GNU as. */
21537 /* "\t.loc %u %u 0 is_stmt %u discriminator %u",
21538 file_num, line, is_stmt, discriminator */
21539 fputs ("\t.loc ", asm_out_file
);
21540 fprint_ul (asm_out_file
, file_num
);
21541 putc (' ', asm_out_file
);
21542 fprint_ul (asm_out_file
, line
);
21543 putc (' ', asm_out_file
);
21544 putc ('0', asm_out_file
);
21546 if (is_stmt
!= table
->is_stmt
)
21548 fputs (" is_stmt ", asm_out_file
);
21549 putc (is_stmt
? '1' : '0', asm_out_file
);
21551 if (SUPPORTS_DISCRIMINATOR
&& discriminator
!= 0)
21553 gcc_assert (discriminator
> 0);
21554 fputs (" discriminator ", asm_out_file
);
21555 fprint_ul (asm_out_file
, (unsigned long) discriminator
);
21557 putc ('\n', asm_out_file
);
21561 unsigned int label_num
= ++line_info_label_num
;
21563 targetm
.asm_out
.internal_label (asm_out_file
, LINE_CODE_LABEL
, label_num
);
21565 push_dw_line_info_entry (table
, LI_set_address
, label_num
);
21566 if (file_num
!= table
->file_num
)
21567 push_dw_line_info_entry (table
, LI_set_file
, file_num
);
21568 if (discriminator
!= table
->discrim_num
)
21569 push_dw_line_info_entry (table
, LI_set_discriminator
, discriminator
);
21570 if (is_stmt
!= table
->is_stmt
)
21571 push_dw_line_info_entry (table
, LI_negate_stmt
, 0);
21572 push_dw_line_info_entry (table
, LI_set_line
, line
);
21575 table
->file_num
= file_num
;
21576 table
->line_num
= line
;
21577 table
->discrim_num
= discriminator
;
21578 table
->is_stmt
= is_stmt
;
21579 table
->in_use
= true;
21582 /* Record the beginning of a new source file. */
21585 dwarf2out_start_source_file (unsigned int lineno
, const char *filename
)
21587 if (flag_eliminate_dwarf2_dups
)
21589 /* Record the beginning of the file for break_out_includes. */
21590 dw_die_ref bincl_die
;
21592 bincl_die
= new_die (DW_TAG_GNU_BINCL
, comp_unit_die (), NULL
);
21593 add_AT_string (bincl_die
, DW_AT_name
, remap_debug_filename (filename
));
21596 if (debug_info_level
>= DINFO_LEVEL_VERBOSE
)
21599 e
.code
= DW_MACINFO_start_file
;
21601 e
.info
= ggc_strdup (filename
);
21602 vec_safe_push (macinfo_table
, e
);
21606 /* Record the end of a source file. */
21609 dwarf2out_end_source_file (unsigned int lineno ATTRIBUTE_UNUSED
)
21611 if (flag_eliminate_dwarf2_dups
)
21612 /* Record the end of the file for break_out_includes. */
21613 new_die (DW_TAG_GNU_EINCL
, comp_unit_die (), NULL
);
21615 if (debug_info_level
>= DINFO_LEVEL_VERBOSE
)
21618 e
.code
= DW_MACINFO_end_file
;
21621 vec_safe_push (macinfo_table
, e
);
21625 /* Called from debug_define in toplev.c. The `buffer' parameter contains
21626 the tail part of the directive line, i.e. the part which is past the
21627 initial whitespace, #, whitespace, directive-name, whitespace part. */
21630 dwarf2out_define (unsigned int lineno ATTRIBUTE_UNUSED
,
21631 const char *buffer ATTRIBUTE_UNUSED
)
21633 if (debug_info_level
>= DINFO_LEVEL_VERBOSE
)
21636 /* Insert a dummy first entry to be able to optimize the whole
21637 predefined macro block using DW_MACRO_GNU_transparent_include. */
21638 if (macinfo_table
->is_empty () && lineno
<= 1)
21643 vec_safe_push (macinfo_table
, e
);
21645 e
.code
= DW_MACINFO_define
;
21647 e
.info
= ggc_strdup (buffer
);
21648 vec_safe_push (macinfo_table
, e
);
21652 /* Called from debug_undef in toplev.c. The `buffer' parameter contains
21653 the tail part of the directive line, i.e. the part which is past the
21654 initial whitespace, #, whitespace, directive-name, whitespace part. */
21657 dwarf2out_undef (unsigned int lineno ATTRIBUTE_UNUSED
,
21658 const char *buffer ATTRIBUTE_UNUSED
)
21660 if (debug_info_level
>= DINFO_LEVEL_VERBOSE
)
21663 /* Insert a dummy first entry to be able to optimize the whole
21664 predefined macro block using DW_MACRO_GNU_transparent_include. */
21665 if (macinfo_table
->is_empty () && lineno
<= 1)
21670 vec_safe_push (macinfo_table
, e
);
21672 e
.code
= DW_MACINFO_undef
;
21674 e
.info
= ggc_strdup (buffer
);
21675 vec_safe_push (macinfo_table
, e
);
21679 /* Helpers to manipulate hash table of CUs. */
21681 struct macinfo_entry_hasher
: typed_noop_remove
<macinfo_entry
>
21683 typedef macinfo_entry value_type
;
21684 typedef macinfo_entry compare_type
;
21685 static inline hashval_t
hash (const value_type
*);
21686 static inline bool equal (const value_type
*, const compare_type
*);
21690 macinfo_entry_hasher::hash (const value_type
*entry
)
21692 return htab_hash_string (entry
->info
);
21696 macinfo_entry_hasher::equal (const value_type
*entry1
,
21697 const compare_type
*entry2
)
21699 return !strcmp (entry1
->info
, entry2
->info
);
21702 typedef hash_table
<macinfo_entry_hasher
> macinfo_hash_type
;
21704 /* Output a single .debug_macinfo entry. */
21707 output_macinfo_op (macinfo_entry
*ref
)
21711 struct indirect_string_node
*node
;
21712 char label
[MAX_ARTIFICIAL_LABEL_BYTES
];
21713 struct dwarf_file_data
*fd
;
21717 case DW_MACINFO_start_file
:
21718 fd
= lookup_filename (ref
->info
);
21719 file_num
= maybe_emit_file (fd
);
21720 dw2_asm_output_data (1, DW_MACINFO_start_file
, "Start new file");
21721 dw2_asm_output_data_uleb128 (ref
->lineno
,
21722 "Included from line number %lu",
21723 (unsigned long) ref
->lineno
);
21724 dw2_asm_output_data_uleb128 (file_num
, "file %s", ref
->info
);
21726 case DW_MACINFO_end_file
:
21727 dw2_asm_output_data (1, DW_MACINFO_end_file
, "End file");
21729 case DW_MACINFO_define
:
21730 case DW_MACINFO_undef
:
21731 len
= strlen (ref
->info
) + 1;
21733 && len
> DWARF_OFFSET_SIZE
21734 && !DWARF2_INDIRECT_STRING_SUPPORT_MISSING_ON_TARGET
21735 && (debug_str_section
->common
.flags
& SECTION_MERGE
) != 0)
21737 ref
->code
= ref
->code
== DW_MACINFO_define
21738 ? DW_MACRO_GNU_define_indirect
21739 : DW_MACRO_GNU_undef_indirect
;
21740 output_macinfo_op (ref
);
21743 dw2_asm_output_data (1, ref
->code
,
21744 ref
->code
== DW_MACINFO_define
21745 ? "Define macro" : "Undefine macro");
21746 dw2_asm_output_data_uleb128 (ref
->lineno
, "At line number %lu",
21747 (unsigned long) ref
->lineno
);
21748 dw2_asm_output_nstring (ref
->info
, -1, "The macro");
21750 case DW_MACRO_GNU_define_indirect
:
21751 case DW_MACRO_GNU_undef_indirect
:
21752 node
= find_AT_string (ref
->info
);
21754 && ((node
->form
== DW_FORM_strp
)
21755 || (node
->form
== DW_FORM_GNU_str_index
)));
21756 dw2_asm_output_data (1, ref
->code
,
21757 ref
->code
== DW_MACRO_GNU_define_indirect
21758 ? "Define macro indirect"
21759 : "Undefine macro indirect");
21760 dw2_asm_output_data_uleb128 (ref
->lineno
, "At line number %lu",
21761 (unsigned long) ref
->lineno
);
21762 if (node
->form
== DW_FORM_strp
)
21763 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, node
->label
,
21764 debug_str_section
, "The macro: \"%s\"",
21767 dw2_asm_output_data_uleb128 (node
->index
, "The macro: \"%s\"",
21770 case DW_MACRO_GNU_transparent_include
:
21771 dw2_asm_output_data (1, ref
->code
, "Transparent include");
21772 ASM_GENERATE_INTERNAL_LABEL (label
,
21773 DEBUG_MACRO_SECTION_LABEL
, ref
->lineno
);
21774 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, label
, NULL
, NULL
);
21777 fprintf (asm_out_file
, "%s unrecognized macinfo code %lu\n",
21778 ASM_COMMENT_START
, (unsigned long) ref
->code
);
21783 /* Attempt to make a sequence of define/undef macinfo ops shareable with
21784 other compilation unit .debug_macinfo sections. IDX is the first
21785 index of a define/undef, return the number of ops that should be
21786 emitted in a comdat .debug_macinfo section and emit
21787 a DW_MACRO_GNU_transparent_include entry referencing it.
21788 If the define/undef entry should be emitted normally, return 0. */
21791 optimize_macinfo_range (unsigned int idx
, vec
<macinfo_entry
, va_gc
> *files
,
21792 macinfo_hash_type
*macinfo_htab
)
21794 macinfo_entry
*first
, *second
, *cur
, *inc
;
21795 char linebuf
[sizeof (HOST_WIDE_INT
) * 3 + 1];
21796 unsigned char checksum
[16];
21797 struct md5_ctx ctx
;
21798 char *grp_name
, *tail
;
21800 unsigned int i
, count
, encoded_filename_len
, linebuf_len
;
21801 macinfo_entry
**slot
;
21803 first
= &(*macinfo_table
)[idx
];
21804 second
= &(*macinfo_table
)[idx
+ 1];
21806 /* Optimize only if there are at least two consecutive define/undef ops,
21807 and either all of them are before first DW_MACINFO_start_file
21808 with lineno {0,1} (i.e. predefined macro block), or all of them are
21809 in some included header file. */
21810 if (second
->code
!= DW_MACINFO_define
&& second
->code
!= DW_MACINFO_undef
)
21812 if (vec_safe_is_empty (files
))
21814 if (first
->lineno
> 1 || second
->lineno
> 1)
21817 else if (first
->lineno
== 0)
21820 /* Find the last define/undef entry that can be grouped together
21821 with first and at the same time compute md5 checksum of their
21822 codes, linenumbers and strings. */
21823 md5_init_ctx (&ctx
);
21824 for (i
= idx
; macinfo_table
->iterate (i
, &cur
); i
++)
21825 if (cur
->code
!= DW_MACINFO_define
&& cur
->code
!= DW_MACINFO_undef
)
21827 else if (vec_safe_is_empty (files
) && cur
->lineno
> 1)
21831 unsigned char code
= cur
->code
;
21832 md5_process_bytes (&code
, 1, &ctx
);
21833 checksum_uleb128 (cur
->lineno
, &ctx
);
21834 md5_process_bytes (cur
->info
, strlen (cur
->info
) + 1, &ctx
);
21836 md5_finish_ctx (&ctx
, checksum
);
21839 /* From the containing include filename (if any) pick up just
21840 usable characters from its basename. */
21841 if (vec_safe_is_empty (files
))
21844 base
= lbasename (files
->last ().info
);
21845 for (encoded_filename_len
= 0, i
= 0; base
[i
]; i
++)
21846 if (ISIDNUM (base
[i
]) || base
[i
] == '.')
21847 encoded_filename_len
++;
21848 /* Count . at the end. */
21849 if (encoded_filename_len
)
21850 encoded_filename_len
++;
21852 sprintf (linebuf
, HOST_WIDE_INT_PRINT_UNSIGNED
, first
->lineno
);
21853 linebuf_len
= strlen (linebuf
);
21855 /* The group name format is: wmN.[<encoded filename>.]<lineno>.<md5sum> */
21856 grp_name
= XALLOCAVEC (char, 4 + encoded_filename_len
+ linebuf_len
+ 1
21858 memcpy (grp_name
, DWARF_OFFSET_SIZE
== 4 ? "wm4." : "wm8.", 4);
21859 tail
= grp_name
+ 4;
21860 if (encoded_filename_len
)
21862 for (i
= 0; base
[i
]; i
++)
21863 if (ISIDNUM (base
[i
]) || base
[i
] == '.')
21867 memcpy (tail
, linebuf
, linebuf_len
);
21868 tail
+= linebuf_len
;
21870 for (i
= 0; i
< 16; i
++)
21871 sprintf (tail
+ i
* 2, "%02x", checksum
[i
] & 0xff);
21873 /* Construct a macinfo_entry for DW_MACRO_GNU_transparent_include
21874 in the empty vector entry before the first define/undef. */
21875 inc
= &(*macinfo_table
)[idx
- 1];
21876 inc
->code
= DW_MACRO_GNU_transparent_include
;
21878 inc
->info
= ggc_strdup (grp_name
);
21879 if (!macinfo_htab
->is_created ())
21880 macinfo_htab
->create (10);
21881 /* Avoid emitting duplicates. */
21882 slot
= macinfo_htab
->find_slot (inc
, INSERT
);
21887 /* If such an entry has been used before, just emit
21888 a DW_MACRO_GNU_transparent_include op. */
21890 output_macinfo_op (inc
);
21891 /* And clear all macinfo_entry in the range to avoid emitting them
21892 in the second pass. */
21893 for (i
= idx
; macinfo_table
->iterate (i
, &cur
) && i
< idx
+ count
; i
++)
21902 inc
->lineno
= macinfo_htab
->elements ();
21903 output_macinfo_op (inc
);
21908 /* Save any strings needed by the macinfo table in the debug str
21909 table. All strings must be collected into the table by the time
21910 index_string is called. */
21913 save_macinfo_strings (void)
21917 macinfo_entry
*ref
;
21919 for (i
= 0; macinfo_table
&& macinfo_table
->iterate (i
, &ref
); i
++)
21923 /* Match the logic in output_macinfo_op to decide on
21924 indirect strings. */
21925 case DW_MACINFO_define
:
21926 case DW_MACINFO_undef
:
21927 len
= strlen (ref
->info
) + 1;
21929 && len
> DWARF_OFFSET_SIZE
21930 && !DWARF2_INDIRECT_STRING_SUPPORT_MISSING_ON_TARGET
21931 && (debug_str_section
->common
.flags
& SECTION_MERGE
) != 0)
21932 set_indirect_string (find_AT_string (ref
->info
));
21934 case DW_MACRO_GNU_define_indirect
:
21935 case DW_MACRO_GNU_undef_indirect
:
21936 set_indirect_string (find_AT_string (ref
->info
));
21944 /* Output macinfo section(s). */
21947 output_macinfo (void)
21950 unsigned long length
= vec_safe_length (macinfo_table
);
21951 macinfo_entry
*ref
;
21952 vec
<macinfo_entry
, va_gc
> *files
= NULL
;
21953 macinfo_hash_type macinfo_htab
;
21958 /* output_macinfo* uses these interchangeably. */
21959 gcc_assert ((int) DW_MACINFO_define
== (int) DW_MACRO_GNU_define
21960 && (int) DW_MACINFO_undef
== (int) DW_MACRO_GNU_undef
21961 && (int) DW_MACINFO_start_file
== (int) DW_MACRO_GNU_start_file
21962 && (int) DW_MACINFO_end_file
== (int) DW_MACRO_GNU_end_file
);
21964 /* For .debug_macro emit the section header. */
21967 dw2_asm_output_data (2, 4, "DWARF macro version number");
21968 if (DWARF_OFFSET_SIZE
== 8)
21969 dw2_asm_output_data (1, 3, "Flags: 64-bit, lineptr present");
21971 dw2_asm_output_data (1, 2, "Flags: 32-bit, lineptr present");
21972 dw2_asm_output_offset (DWARF_OFFSET_SIZE
,
21973 (!dwarf_split_debug_info
? debug_line_section_label
21974 : debug_skeleton_line_section_label
),
21975 debug_line_section
, NULL
);
21978 /* In the first loop, it emits the primary .debug_macinfo section
21979 and after each emitted op the macinfo_entry is cleared.
21980 If a longer range of define/undef ops can be optimized using
21981 DW_MACRO_GNU_transparent_include, the
21982 DW_MACRO_GNU_transparent_include op is emitted and kept in
21983 the vector before the first define/undef in the range and the
21984 whole range of define/undef ops is not emitted and kept. */
21985 for (i
= 0; macinfo_table
->iterate (i
, &ref
); i
++)
21989 case DW_MACINFO_start_file
:
21990 vec_safe_push (files
, *ref
);
21992 case DW_MACINFO_end_file
:
21993 if (!vec_safe_is_empty (files
))
21996 case DW_MACINFO_define
:
21997 case DW_MACINFO_undef
:
21999 && HAVE_COMDAT_GROUP
22000 && vec_safe_length (files
) != 1
22003 && (*macinfo_table
)[i
- 1].code
== 0)
22005 unsigned count
= optimize_macinfo_range (i
, files
, &macinfo_htab
);
22014 /* A dummy entry may be inserted at the beginning to be able
22015 to optimize the whole block of predefined macros. */
22021 output_macinfo_op (ref
);
22026 if (!macinfo_htab
.is_created ())
22029 macinfo_htab
.dispose ();
22031 /* If any DW_MACRO_GNU_transparent_include were used, on those
22032 DW_MACRO_GNU_transparent_include entries terminate the
22033 current chain and switch to a new comdat .debug_macinfo
22034 section and emit the define/undef entries within it. */
22035 for (i
= 0; macinfo_table
->iterate (i
, &ref
); i
++)
22040 case DW_MACRO_GNU_transparent_include
:
22042 char label
[MAX_ARTIFICIAL_LABEL_BYTES
];
22043 tree comdat_key
= get_identifier (ref
->info
);
22044 /* Terminate the previous .debug_macinfo section. */
22045 dw2_asm_output_data (1, 0, "End compilation unit");
22046 targetm
.asm_out
.named_section (DEBUG_MACRO_SECTION
,
22048 | SECTION_LINKONCE
,
22050 ASM_GENERATE_INTERNAL_LABEL (label
,
22051 DEBUG_MACRO_SECTION_LABEL
,
22053 ASM_OUTPUT_LABEL (asm_out_file
, label
);
22056 dw2_asm_output_data (2, 4, "DWARF macro version number");
22057 if (DWARF_OFFSET_SIZE
== 8)
22058 dw2_asm_output_data (1, 1, "Flags: 64-bit");
22060 dw2_asm_output_data (1, 0, "Flags: 32-bit");
22063 case DW_MACINFO_define
:
22064 case DW_MACINFO_undef
:
22065 output_macinfo_op (ref
);
22070 gcc_unreachable ();
22074 /* Set up for Dwarf output at the start of compilation. */
22077 dwarf2out_init (const char *filename ATTRIBUTE_UNUSED
)
22079 /* Allocate the file_table. */
22080 file_table
= htab_create_ggc (50, file_table_hash
,
22081 file_table_eq
, NULL
);
22083 /* Allocate the decl_die_table. */
22084 decl_die_table
= htab_create_ggc (10, decl_die_table_hash
,
22085 decl_die_table_eq
, NULL
);
22087 /* Allocate the decl_loc_table. */
22088 decl_loc_table
= htab_create_ggc (10, decl_loc_table_hash
,
22089 decl_loc_table_eq
, NULL
);
22091 /* Allocate the cached_dw_loc_list_table. */
22092 cached_dw_loc_list_table
22093 = htab_create_ggc (10, cached_dw_loc_list_table_hash
,
22094 cached_dw_loc_list_table_eq
, NULL
);
22096 /* Allocate the initial hunk of the decl_scope_table. */
22097 vec_alloc (decl_scope_table
, 256);
22099 /* Allocate the initial hunk of the abbrev_die_table. */
22100 abbrev_die_table
= ggc_alloc_cleared_vec_dw_die_ref
22101 (ABBREV_DIE_TABLE_INCREMENT
);
22102 abbrev_die_table_allocated
= ABBREV_DIE_TABLE_INCREMENT
;
22103 /* Zero-th entry is allocated, but unused. */
22104 abbrev_die_table_in_use
= 1;
22106 /* Allocate the pubtypes and pubnames vectors. */
22107 vec_alloc (pubname_table
, 32);
22108 vec_alloc (pubtype_table
, 32);
22110 vec_alloc (incomplete_types
, 64);
22112 vec_alloc (used_rtx_array
, 32);
22114 if (!dwarf_split_debug_info
)
22116 debug_info_section
= get_section (DEBUG_INFO_SECTION
,
22117 SECTION_DEBUG
, NULL
);
22118 debug_abbrev_section
= get_section (DEBUG_ABBREV_SECTION
,
22119 SECTION_DEBUG
, NULL
);
22120 debug_loc_section
= get_section (DEBUG_LOC_SECTION
,
22121 SECTION_DEBUG
, NULL
);
22125 debug_info_section
= get_section (DEBUG_DWO_INFO_SECTION
,
22126 SECTION_DEBUG
| SECTION_EXCLUDE
, NULL
);
22127 debug_abbrev_section
= get_section (DEBUG_DWO_ABBREV_SECTION
,
22128 SECTION_DEBUG
| SECTION_EXCLUDE
,
22130 debug_addr_section
= get_section (DEBUG_ADDR_SECTION
,
22131 SECTION_DEBUG
, NULL
);
22132 debug_skeleton_info_section
= get_section (DEBUG_INFO_SECTION
,
22133 SECTION_DEBUG
, NULL
);
22134 debug_skeleton_abbrev_section
= get_section (DEBUG_ABBREV_SECTION
,
22135 SECTION_DEBUG
, NULL
);
22136 ASM_GENERATE_INTERNAL_LABEL (debug_skeleton_abbrev_section_label
,
22137 DEBUG_SKELETON_ABBREV_SECTION_LABEL
, 0);
22139 /* Somewhat confusing detail: The skeleton_[abbrev|info] sections stay in
22140 the main .o, but the skeleton_line goes into the split off dwo. */
22141 debug_skeleton_line_section
22142 = get_section (DEBUG_DWO_LINE_SECTION
,
22143 SECTION_DEBUG
| SECTION_EXCLUDE
, NULL
);
22144 ASM_GENERATE_INTERNAL_LABEL (debug_skeleton_line_section_label
,
22145 DEBUG_SKELETON_LINE_SECTION_LABEL
, 0);
22146 debug_str_offsets_section
= get_section (DEBUG_STR_OFFSETS_SECTION
,
22147 SECTION_DEBUG
| SECTION_EXCLUDE
,
22149 ASM_GENERATE_INTERNAL_LABEL (debug_skeleton_info_section_label
,
22150 DEBUG_SKELETON_INFO_SECTION_LABEL
, 0);
22151 debug_loc_section
= get_section (DEBUG_DWO_LOC_SECTION
,
22152 SECTION_DEBUG
| SECTION_EXCLUDE
, NULL
);
22153 debug_str_dwo_section
= get_section (DEBUG_STR_DWO_SECTION
,
22154 DEBUG_STR_DWO_SECTION_FLAGS
, NULL
);
22156 debug_aranges_section
= get_section (DEBUG_ARANGES_SECTION
,
22157 SECTION_DEBUG
, NULL
);
22158 debug_macinfo_section
= get_section (dwarf_strict
22159 ? DEBUG_MACINFO_SECTION
22160 : DEBUG_MACRO_SECTION
,
22161 DEBUG_MACRO_SECTION_FLAGS
, NULL
);
22162 debug_line_section
= get_section (DEBUG_LINE_SECTION
,
22163 SECTION_DEBUG
, NULL
);
22164 debug_pubnames_section
= get_section (DEBUG_PUBNAMES_SECTION
,
22165 SECTION_DEBUG
, NULL
);
22166 debug_pubtypes_section
= get_section (DEBUG_PUBTYPES_SECTION
,
22167 SECTION_DEBUG
, NULL
);
22168 debug_str_section
= get_section (DEBUG_STR_SECTION
,
22169 DEBUG_STR_SECTION_FLAGS
, NULL
);
22170 debug_ranges_section
= get_section (DEBUG_RANGES_SECTION
,
22171 SECTION_DEBUG
, NULL
);
22172 debug_frame_section
= get_section (DEBUG_FRAME_SECTION
,
22173 SECTION_DEBUG
, NULL
);
22175 ASM_GENERATE_INTERNAL_LABEL (text_end_label
, TEXT_END_LABEL
, 0);
22176 ASM_GENERATE_INTERNAL_LABEL (abbrev_section_label
,
22177 DEBUG_ABBREV_SECTION_LABEL
, 0);
22178 ASM_GENERATE_INTERNAL_LABEL (text_section_label
, TEXT_SECTION_LABEL
, 0);
22179 ASM_GENERATE_INTERNAL_LABEL (cold_text_section_label
,
22180 COLD_TEXT_SECTION_LABEL
, 0);
22181 ASM_GENERATE_INTERNAL_LABEL (cold_end_label
, COLD_END_LABEL
, 0);
22183 ASM_GENERATE_INTERNAL_LABEL (debug_info_section_label
,
22184 DEBUG_INFO_SECTION_LABEL
, 0);
22185 ASM_GENERATE_INTERNAL_LABEL (debug_line_section_label
,
22186 DEBUG_LINE_SECTION_LABEL
, 0);
22187 ASM_GENERATE_INTERNAL_LABEL (ranges_section_label
,
22188 DEBUG_RANGES_SECTION_LABEL
, 0);
22189 ASM_GENERATE_INTERNAL_LABEL (debug_addr_section_label
,
22190 DEBUG_ADDR_SECTION_LABEL
, 0);
22191 ASM_GENERATE_INTERNAL_LABEL (macinfo_section_label
,
22193 ? DEBUG_MACINFO_SECTION_LABEL
22194 : DEBUG_MACRO_SECTION_LABEL
, 0);
22195 ASM_GENERATE_INTERNAL_LABEL (loc_section_label
, DEBUG_LOC_SECTION_LABEL
, 0);
22197 if (debug_info_level
>= DINFO_LEVEL_VERBOSE
)
22198 vec_alloc (macinfo_table
, 64);
22200 switch_to_section (text_section
);
22201 ASM_OUTPUT_LABEL (asm_out_file
, text_section_label
);
22203 /* Make sure the line number table for .text always exists. */
22204 text_section_line_info
= new_line_info_table ();
22205 text_section_line_info
->end_label
= text_end_label
;
22208 /* Called before compile () starts outputtting functions, variables
22209 and toplevel asms into assembly. */
22212 dwarf2out_assembly_start (void)
22214 if (HAVE_GAS_CFI_SECTIONS_DIRECTIVE
22215 && dwarf2out_do_cfi_asm ()
22216 && (!(flag_unwind_tables
|| flag_exceptions
)
22217 || targetm_common
.except_unwind_info (&global_options
) != UI_DWARF2
))
22218 fprintf (asm_out_file
, "\t.cfi_sections\t.debug_frame\n");
22221 /* A helper function for dwarf2out_finish called through
22222 htab_traverse. Assign a string its index. All strings must be
22223 collected into the table by the time index_string is called,
22224 because the indexing code relies on htab_traverse to traverse nodes
22225 in the same order for each run. */
22228 index_string (void **h
, void *v
)
22230 struct indirect_string_node
*node
= (struct indirect_string_node
*) *h
;
22231 unsigned int *index
= (unsigned int *) v
;
22233 find_string_form (node
);
22234 if (node
->form
== DW_FORM_GNU_str_index
&& node
->refcount
> 0)
22236 gcc_assert (node
->index
== NO_INDEX_ASSIGNED
);
22237 node
->index
= *index
;
22243 /* A helper function for output_indirect_strings called through
22244 htab_traverse. Output the offset to a string and update the
22248 output_index_string_offset (void **h
, void *v
)
22250 struct indirect_string_node
*node
= (struct indirect_string_node
*) *h
;
22251 unsigned int *offset
= (unsigned int *) v
;
22253 if (node
->form
== DW_FORM_GNU_str_index
&& node
->refcount
> 0)
22255 /* Assert that this node has been assigned an index. */
22256 gcc_assert (node
->index
!= NO_INDEX_ASSIGNED
22257 && node
->index
!= NOT_INDEXED
);
22258 dw2_asm_output_data (DWARF_OFFSET_SIZE
, *offset
,
22259 "indexed string 0x%x: %s", node
->index
, node
->str
);
22260 *offset
+= strlen (node
->str
) + 1;
22265 /* A helper function for dwarf2out_finish called through
22266 htab_traverse. Output the indexed string. */
22269 output_index_string (void **h
, void *v
)
22271 struct indirect_string_node
*node
= (struct indirect_string_node
*) *h
;
22272 unsigned int *cur_idx
= (unsigned int *) v
;
22274 if (node
->form
== DW_FORM_GNU_str_index
&& node
->refcount
> 0)
22276 /* Assert that the strings are output in the same order as their
22277 indexes were assigned. */
22278 gcc_assert (*cur_idx
== node
->index
);
22279 assemble_string (node
->str
, strlen (node
->str
) + 1);
22285 /* A helper function for dwarf2out_finish called through
22286 htab_traverse. Emit one queued .debug_str string. */
22289 output_indirect_string (void **h
, void *v ATTRIBUTE_UNUSED
)
22291 struct indirect_string_node
*node
= (struct indirect_string_node
*) *h
;
22293 node
->form
= find_string_form (node
);
22294 if (node
->form
== DW_FORM_strp
&& node
->refcount
> 0)
22296 ASM_OUTPUT_LABEL (asm_out_file
, node
->label
);
22297 assemble_string (node
->str
, strlen (node
->str
) + 1);
22303 /* Output the indexed string table. */
22306 output_indirect_strings (void)
22308 switch_to_section (debug_str_section
);
22309 if (!dwarf_split_debug_info
)
22310 htab_traverse (debug_str_hash
, output_indirect_string
, NULL
);
22313 unsigned int offset
= 0;
22314 unsigned int cur_idx
= 0;
22316 htab_traverse (skeleton_debug_str_hash
, output_indirect_string
, NULL
);
22318 switch_to_section (debug_str_offsets_section
);
22319 htab_traverse_noresize (debug_str_hash
,
22320 output_index_string_offset
,
22322 switch_to_section (debug_str_dwo_section
);
22323 htab_traverse_noresize (debug_str_hash
,
22324 output_index_string
,
22329 /* Callback for htab_traverse to assign an index to an entry in the
22330 table, and to write that entry to the .debug_addr section. */
22333 output_addr_table_entry (void **slot
, void *data
)
22335 addr_table_entry
*entry
= (addr_table_entry
*) *slot
;
22336 unsigned int *cur_index
= (unsigned int *)data
;
22338 if (entry
->refcount
== 0)
22340 gcc_assert (entry
->index
== NO_INDEX_ASSIGNED
22341 || entry
->index
== NOT_INDEXED
);
22345 gcc_assert (entry
->index
== *cur_index
);
22348 switch (entry
->kind
)
22351 dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE
, entry
->addr
.rtl
,
22352 "0x%x", entry
->index
);
22354 case ate_kind_rtx_dtprel
:
22355 gcc_assert (targetm
.asm_out
.output_dwarf_dtprel
);
22356 targetm
.asm_out
.output_dwarf_dtprel (asm_out_file
,
22359 fputc ('\n', asm_out_file
);
22361 case ate_kind_label
:
22362 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, entry
->addr
.label
,
22363 "0x%x", entry
->index
);
22366 gcc_unreachable ();
22371 /* Produce the .debug_addr section. */
22374 output_addr_table (void)
22376 unsigned int index
= 0;
22377 if (addr_index_table
== NULL
|| htab_size (addr_index_table
) == 0)
22380 switch_to_section (debug_addr_section
);
22381 htab_traverse_noresize (addr_index_table
, output_addr_table_entry
, &index
);
22384 #if ENABLE_ASSERT_CHECKING
22385 /* Verify that all marks are clear. */
22388 verify_marks_clear (dw_die_ref die
)
22392 gcc_assert (! die
->die_mark
);
22393 FOR_EACH_CHILD (die
, c
, verify_marks_clear (c
));
22395 #endif /* ENABLE_ASSERT_CHECKING */
22397 /* Clear the marks for a die and its children.
22398 Be cool if the mark isn't set. */
22401 prune_unmark_dies (dw_die_ref die
)
22407 FOR_EACH_CHILD (die
, c
, prune_unmark_dies (c
));
22410 /* Given DIE that we're marking as used, find any other dies
22411 it references as attributes and mark them as used. */
22414 prune_unused_types_walk_attribs (dw_die_ref die
)
22419 FOR_EACH_VEC_SAFE_ELT (die
->die_attr
, ix
, a
)
22421 if (a
->dw_attr_val
.val_class
== dw_val_class_die_ref
)
22423 /* A reference to another DIE.
22424 Make sure that it will get emitted.
22425 If it was broken out into a comdat group, don't follow it. */
22426 if (! AT_ref (a
)->comdat_type_p
22427 || a
->dw_attr
== DW_AT_specification
)
22428 prune_unused_types_mark (a
->dw_attr_val
.v
.val_die_ref
.die
, 1);
22430 /* Set the string's refcount to 0 so that prune_unused_types_mark
22431 accounts properly for it. */
22432 if (AT_class (a
) == dw_val_class_str
)
22433 a
->dw_attr_val
.v
.val_str
->refcount
= 0;
22437 /* Mark the generic parameters and arguments children DIEs of DIE. */
22440 prune_unused_types_mark_generic_parms_dies (dw_die_ref die
)
22444 if (die
== NULL
|| die
->die_child
== NULL
)
22446 c
= die
->die_child
;
22449 if (is_template_parameter (c
))
22450 prune_unused_types_mark (c
, 1);
22452 } while (c
&& c
!= die
->die_child
);
22455 /* Mark DIE as being used. If DOKIDS is true, then walk down
22456 to DIE's children. */
22459 prune_unused_types_mark (dw_die_ref die
, int dokids
)
22463 if (die
->die_mark
== 0)
22465 /* We haven't done this node yet. Mark it as used. */
22467 /* If this is the DIE of a generic type instantiation,
22468 mark the children DIEs that describe its generic parms and
22470 prune_unused_types_mark_generic_parms_dies (die
);
22472 /* We also have to mark its parents as used.
22473 (But we don't want to mark our parent's kids due to this,
22474 unless it is a class.) */
22475 if (die
->die_parent
)
22476 prune_unused_types_mark (die
->die_parent
,
22477 class_scope_p (die
->die_parent
));
22479 /* Mark any referenced nodes. */
22480 prune_unused_types_walk_attribs (die
);
22482 /* If this node is a specification,
22483 also mark the definition, if it exists. */
22484 if (get_AT_flag (die
, DW_AT_declaration
) && die
->die_definition
)
22485 prune_unused_types_mark (die
->die_definition
, 1);
22488 if (dokids
&& die
->die_mark
!= 2)
22490 /* We need to walk the children, but haven't done so yet.
22491 Remember that we've walked the kids. */
22494 /* If this is an array type, we need to make sure our
22495 kids get marked, even if they're types. If we're
22496 breaking out types into comdat sections, do this
22497 for all type definitions. */
22498 if (die
->die_tag
== DW_TAG_array_type
22499 || (use_debug_types
22500 && is_type_die (die
) && ! is_declaration_die (die
)))
22501 FOR_EACH_CHILD (die
, c
, prune_unused_types_mark (c
, 1));
22503 FOR_EACH_CHILD (die
, c
, prune_unused_types_walk (c
));
22507 /* For local classes, look if any static member functions were emitted
22508 and if so, mark them. */
22511 prune_unused_types_walk_local_classes (dw_die_ref die
)
22515 if (die
->die_mark
== 2)
22518 switch (die
->die_tag
)
22520 case DW_TAG_structure_type
:
22521 case DW_TAG_union_type
:
22522 case DW_TAG_class_type
:
22525 case DW_TAG_subprogram
:
22526 if (!get_AT_flag (die
, DW_AT_declaration
)
22527 || die
->die_definition
!= NULL
)
22528 prune_unused_types_mark (die
, 1);
22535 /* Mark children. */
22536 FOR_EACH_CHILD (die
, c
, prune_unused_types_walk_local_classes (c
));
22539 /* Walk the tree DIE and mark types that we actually use. */
22542 prune_unused_types_walk (dw_die_ref die
)
22546 /* Don't do anything if this node is already marked and
22547 children have been marked as well. */
22548 if (die
->die_mark
== 2)
22551 switch (die
->die_tag
)
22553 case DW_TAG_structure_type
:
22554 case DW_TAG_union_type
:
22555 case DW_TAG_class_type
:
22556 if (die
->die_perennial_p
)
22559 for (c
= die
->die_parent
; c
; c
= c
->die_parent
)
22560 if (c
->die_tag
== DW_TAG_subprogram
)
22563 /* Finding used static member functions inside of classes
22564 is needed just for local classes, because for other classes
22565 static member function DIEs with DW_AT_specification
22566 are emitted outside of the DW_TAG_*_type. If we ever change
22567 it, we'd need to call this even for non-local classes. */
22569 prune_unused_types_walk_local_classes (die
);
22571 /* It's a type node --- don't mark it. */
22574 case DW_TAG_const_type
:
22575 case DW_TAG_packed_type
:
22576 case DW_TAG_pointer_type
:
22577 case DW_TAG_reference_type
:
22578 case DW_TAG_rvalue_reference_type
:
22579 case DW_TAG_volatile_type
:
22580 case DW_TAG_typedef
:
22581 case DW_TAG_array_type
:
22582 case DW_TAG_interface_type
:
22583 case DW_TAG_friend
:
22584 case DW_TAG_variant_part
:
22585 case DW_TAG_enumeration_type
:
22586 case DW_TAG_subroutine_type
:
22587 case DW_TAG_string_type
:
22588 case DW_TAG_set_type
:
22589 case DW_TAG_subrange_type
:
22590 case DW_TAG_ptr_to_member_type
:
22591 case DW_TAG_file_type
:
22592 if (die
->die_perennial_p
)
22595 /* It's a type node --- don't mark it. */
22599 /* Mark everything else. */
22603 if (die
->die_mark
== 0)
22607 /* Now, mark any dies referenced from here. */
22608 prune_unused_types_walk_attribs (die
);
22613 /* Mark children. */
22614 FOR_EACH_CHILD (die
, c
, prune_unused_types_walk (c
));
22617 /* Increment the string counts on strings referred to from DIE's
22621 prune_unused_types_update_strings (dw_die_ref die
)
22626 FOR_EACH_VEC_SAFE_ELT (die
->die_attr
, ix
, a
)
22627 if (AT_class (a
) == dw_val_class_str
)
22629 struct indirect_string_node
*s
= a
->dw_attr_val
.v
.val_str
;
22631 /* Avoid unnecessarily putting strings that are used less than
22632 twice in the hash table. */
22634 == ((DEBUG_STR_SECTION_FLAGS
& SECTION_MERGE
) ? 1 : 2))
22637 slot
= htab_find_slot_with_hash (debug_str_hash
, s
->str
,
22638 htab_hash_string (s
->str
),
22640 gcc_assert (*slot
== NULL
);
22646 /* Remove from the tree DIE any dies that aren't marked. */
22649 prune_unused_types_prune (dw_die_ref die
)
22653 gcc_assert (die
->die_mark
);
22654 prune_unused_types_update_strings (die
);
22656 if (! die
->die_child
)
22659 c
= die
->die_child
;
22661 dw_die_ref prev
= c
;
22662 for (c
= c
->die_sib
; ! c
->die_mark
; c
= c
->die_sib
)
22663 if (c
== die
->die_child
)
22665 /* No marked children between 'prev' and the end of the list. */
22667 /* No marked children at all. */
22668 die
->die_child
= NULL
;
22671 prev
->die_sib
= c
->die_sib
;
22672 die
->die_child
= prev
;
22677 if (c
!= prev
->die_sib
)
22679 prune_unused_types_prune (c
);
22680 } while (c
!= die
->die_child
);
22683 /* Remove dies representing declarations that we never use. */
22686 prune_unused_types (void)
22689 limbo_die_node
*node
;
22690 comdat_type_node
*ctnode
;
22692 dw_die_ref base_type
;
22694 #if ENABLE_ASSERT_CHECKING
22695 /* All the marks should already be clear. */
22696 verify_marks_clear (comp_unit_die ());
22697 for (node
= limbo_die_list
; node
; node
= node
->next
)
22698 verify_marks_clear (node
->die
);
22699 for (ctnode
= comdat_type_list
; ctnode
; ctnode
= ctnode
->next
)
22700 verify_marks_clear (ctnode
->root_die
);
22701 #endif /* ENABLE_ASSERT_CHECKING */
22703 /* Mark types that are used in global variables. */
22704 premark_types_used_by_global_vars ();
22706 /* Set the mark on nodes that are actually used. */
22707 prune_unused_types_walk (comp_unit_die ());
22708 for (node
= limbo_die_list
; node
; node
= node
->next
)
22709 prune_unused_types_walk (node
->die
);
22710 for (ctnode
= comdat_type_list
; ctnode
; ctnode
= ctnode
->next
)
22712 prune_unused_types_walk (ctnode
->root_die
);
22713 prune_unused_types_mark (ctnode
->type_die
, 1);
22716 /* Also set the mark on nodes referenced from the pubname_table. Enumerators
22717 are unusual in that they are pubnames that are the children of pubtypes.
22718 They should only be marked via their parent DW_TAG_enumeration_type die,
22719 not as roots in themselves. */
22720 FOR_EACH_VEC_ELT (*pubname_table
, i
, pub
)
22721 if (pub
->die
->die_tag
!= DW_TAG_enumerator
)
22722 prune_unused_types_mark (pub
->die
, 1);
22723 for (i
= 0; base_types
.iterate (i
, &base_type
); i
++)
22724 prune_unused_types_mark (base_type
, 1);
22726 if (debug_str_hash
)
22727 htab_empty (debug_str_hash
);
22728 if (skeleton_debug_str_hash
)
22729 htab_empty (skeleton_debug_str_hash
);
22730 prune_unused_types_prune (comp_unit_die ());
22731 for (node
= limbo_die_list
; node
; node
= node
->next
)
22732 prune_unused_types_prune (node
->die
);
22733 for (ctnode
= comdat_type_list
; ctnode
; ctnode
= ctnode
->next
)
22734 prune_unused_types_prune (ctnode
->root_die
);
22736 /* Leave the marks clear. */
22737 prune_unmark_dies (comp_unit_die ());
22738 for (node
= limbo_die_list
; node
; node
= node
->next
)
22739 prune_unmark_dies (node
->die
);
22740 for (ctnode
= comdat_type_list
; ctnode
; ctnode
= ctnode
->next
)
22741 prune_unmark_dies (ctnode
->root_die
);
22744 /* Set the parameter to true if there are any relative pathnames in
22747 file_table_relative_p (void ** slot
, void *param
)
22749 bool *p
= (bool *) param
;
22750 struct dwarf_file_data
*d
= (struct dwarf_file_data
*) *slot
;
22751 if (!IS_ABSOLUTE_PATH (d
->filename
))
22759 /* Helpers to manipulate hash table of comdat type units. */
22761 struct comdat_type_hasher
: typed_noop_remove
<comdat_type_node
>
22763 typedef comdat_type_node value_type
;
22764 typedef comdat_type_node compare_type
;
22765 static inline hashval_t
hash (const value_type
*);
22766 static inline bool equal (const value_type
*, const compare_type
*);
22770 comdat_type_hasher::hash (const value_type
*type_node
)
22773 memcpy (&h
, type_node
->signature
, sizeof (h
));
22778 comdat_type_hasher::equal (const value_type
*type_node_1
,
22779 const compare_type
*type_node_2
)
22781 return (! memcmp (type_node_1
->signature
, type_node_2
->signature
,
22782 DWARF_TYPE_SIGNATURE_SIZE
));
22785 /* Move a DW_AT_{,MIPS_}linkage_name attribute just added to dw_die_ref
22786 to the location it would have been added, should we know its
22787 DECL_ASSEMBLER_NAME when we added other attributes. This will
22788 probably improve compactness of debug info, removing equivalent
22789 abbrevs, and hide any differences caused by deferring the
22790 computation of the assembler name, triggered by e.g. PCH. */
22793 move_linkage_attr (dw_die_ref die
)
22795 unsigned ix
= vec_safe_length (die
->die_attr
);
22796 dw_attr_node linkage
= (*die
->die_attr
)[ix
- 1];
22798 gcc_assert (linkage
.dw_attr
== DW_AT_linkage_name
22799 || linkage
.dw_attr
== DW_AT_MIPS_linkage_name
);
22803 dw_attr_node
*prev
= &(*die
->die_attr
)[ix
- 1];
22805 if (prev
->dw_attr
== DW_AT_decl_line
|| prev
->dw_attr
== DW_AT_name
)
22809 if (ix
!= vec_safe_length (die
->die_attr
) - 1)
22811 die
->die_attr
->pop ();
22812 die
->die_attr
->quick_insert (ix
, linkage
);
22816 /* Helper function for resolve_addr, mark DW_TAG_base_type nodes
22817 referenced from typed stack ops and count how often they are used. */
22820 mark_base_types (dw_loc_descr_ref loc
)
22822 dw_die_ref base_type
= NULL
;
22824 for (; loc
; loc
= loc
->dw_loc_next
)
22826 switch (loc
->dw_loc_opc
)
22828 case DW_OP_GNU_regval_type
:
22829 case DW_OP_GNU_deref_type
:
22830 base_type
= loc
->dw_loc_oprnd2
.v
.val_die_ref
.die
;
22832 case DW_OP_GNU_convert
:
22833 case DW_OP_GNU_reinterpret
:
22834 if (loc
->dw_loc_oprnd1
.val_class
== dw_val_class_unsigned_const
)
22837 case DW_OP_GNU_const_type
:
22838 base_type
= loc
->dw_loc_oprnd1
.v
.val_die_ref
.die
;
22840 case DW_OP_GNU_entry_value
:
22841 mark_base_types (loc
->dw_loc_oprnd1
.v
.val_loc
);
22846 gcc_assert (base_type
->die_parent
== comp_unit_die ());
22847 if (base_type
->die_mark
)
22848 base_type
->die_mark
++;
22851 base_types
.safe_push (base_type
);
22852 base_type
->die_mark
= 1;
22857 /* Comparison function for sorting marked base types. */
22860 base_type_cmp (const void *x
, const void *y
)
22862 dw_die_ref dx
= *(const dw_die_ref
*) x
;
22863 dw_die_ref dy
= *(const dw_die_ref
*) y
;
22864 unsigned int byte_size1
, byte_size2
;
22865 unsigned int encoding1
, encoding2
;
22866 if (dx
->die_mark
> dy
->die_mark
)
22868 if (dx
->die_mark
< dy
->die_mark
)
22870 byte_size1
= get_AT_unsigned (dx
, DW_AT_byte_size
);
22871 byte_size2
= get_AT_unsigned (dy
, DW_AT_byte_size
);
22872 if (byte_size1
< byte_size2
)
22874 if (byte_size1
> byte_size2
)
22876 encoding1
= get_AT_unsigned (dx
, DW_AT_encoding
);
22877 encoding2
= get_AT_unsigned (dy
, DW_AT_encoding
);
22878 if (encoding1
< encoding2
)
22880 if (encoding1
> encoding2
)
22885 /* Move base types marked by mark_base_types as early as possible
22886 in the CU, sorted by decreasing usage count both to make the
22887 uleb128 references as small as possible and to make sure they
22888 will have die_offset already computed by calc_die_sizes when
22889 sizes of typed stack loc ops is computed. */
22892 move_marked_base_types (void)
22895 dw_die_ref base_type
, die
, c
;
22897 if (base_types
.is_empty ())
22900 /* Sort by decreasing usage count, they will be added again in that
22902 base_types
.qsort (base_type_cmp
);
22903 die
= comp_unit_die ();
22904 c
= die
->die_child
;
22907 dw_die_ref prev
= c
;
22909 while (c
->die_mark
)
22911 remove_child_with_prev (c
, prev
);
22912 /* As base types got marked, there must be at least
22913 one node other than DW_TAG_base_type. */
22914 gcc_assert (c
!= c
->die_sib
);
22918 while (c
!= die
->die_child
);
22919 gcc_assert (die
->die_child
);
22920 c
= die
->die_child
;
22921 for (i
= 0; base_types
.iterate (i
, &base_type
); i
++)
22923 base_type
->die_mark
= 0;
22924 base_type
->die_sib
= c
->die_sib
;
22925 c
->die_sib
= base_type
;
22930 /* Helper function for resolve_addr, attempt to resolve
22931 one CONST_STRING, return non-zero if not successful. Similarly verify that
22932 SYMBOL_REFs refer to variables emitted in the current CU. */
22935 resolve_one_addr (rtx
*addr
, void *data ATTRIBUTE_UNUSED
)
22939 if (GET_CODE (rtl
) == CONST_STRING
)
22941 size_t len
= strlen (XSTR (rtl
, 0)) + 1;
22942 tree t
= build_string (len
, XSTR (rtl
, 0));
22943 tree tlen
= size_int (len
- 1);
22945 = build_array_type (char_type_node
, build_index_type (tlen
));
22946 rtl
= lookup_constant_def (t
);
22947 if (!rtl
|| !MEM_P (rtl
))
22949 rtl
= XEXP (rtl
, 0);
22950 if (GET_CODE (rtl
) == SYMBOL_REF
22951 && SYMBOL_REF_DECL (rtl
)
22952 && !TREE_ASM_WRITTEN (SYMBOL_REF_DECL (rtl
)))
22954 vec_safe_push (used_rtx_array
, rtl
);
22959 if (GET_CODE (rtl
) == SYMBOL_REF
22960 && SYMBOL_REF_DECL (rtl
))
22962 if (TREE_CONSTANT_POOL_ADDRESS_P (rtl
))
22964 if (!TREE_ASM_WRITTEN (DECL_INITIAL (SYMBOL_REF_DECL (rtl
))))
22967 else if (!TREE_ASM_WRITTEN (SYMBOL_REF_DECL (rtl
)))
22971 if (GET_CODE (rtl
) == CONST
22972 && for_each_rtx (&XEXP (rtl
, 0), resolve_one_addr
, NULL
))
22978 /* For STRING_CST, return SYMBOL_REF of its constant pool entry,
22979 if possible, and create DW_TAG_dwarf_procedure that can be referenced
22980 from DW_OP_GNU_implicit_pointer if the string hasn't been seen yet. */
22983 string_cst_pool_decl (tree t
)
22985 rtx rtl
= output_constant_def (t
, 1);
22986 unsigned char *array
;
22987 dw_loc_descr_ref l
;
22992 if (!rtl
|| !MEM_P (rtl
))
22994 rtl
= XEXP (rtl
, 0);
22995 if (GET_CODE (rtl
) != SYMBOL_REF
22996 || SYMBOL_REF_DECL (rtl
) == NULL_TREE
)
22999 decl
= SYMBOL_REF_DECL (rtl
);
23000 if (!lookup_decl_die (decl
))
23002 len
= TREE_STRING_LENGTH (t
);
23003 vec_safe_push (used_rtx_array
, rtl
);
23004 ref
= new_die (DW_TAG_dwarf_procedure
, comp_unit_die (), decl
);
23005 array
= (unsigned char *) ggc_alloc_atomic (len
);
23006 memcpy (array
, TREE_STRING_POINTER (t
), len
);
23007 l
= new_loc_descr (DW_OP_implicit_value
, len
, 0);
23008 l
->dw_loc_oprnd2
.val_class
= dw_val_class_vec
;
23009 l
->dw_loc_oprnd2
.v
.val_vec
.length
= len
;
23010 l
->dw_loc_oprnd2
.v
.val_vec
.elt_size
= 1;
23011 l
->dw_loc_oprnd2
.v
.val_vec
.array
= array
;
23012 add_AT_loc (ref
, DW_AT_location
, l
);
23013 equate_decl_number_to_die (decl
, ref
);
23018 /* Helper function of resolve_addr_in_expr. LOC is
23019 a DW_OP_addr followed by DW_OP_stack_value, either at the start
23020 of exprloc or after DW_OP_{,bit_}piece, and val_addr can't be
23021 resolved. Replace it (both DW_OP_addr and DW_OP_stack_value)
23022 with DW_OP_GNU_implicit_pointer if possible
23023 and return true, if unsuccessful, return false. */
23026 optimize_one_addr_into_implicit_ptr (dw_loc_descr_ref loc
)
23028 rtx rtl
= loc
->dw_loc_oprnd1
.v
.val_addr
;
23029 HOST_WIDE_INT offset
= 0;
23030 dw_die_ref ref
= NULL
;
23033 if (GET_CODE (rtl
) == CONST
23034 && GET_CODE (XEXP (rtl
, 0)) == PLUS
23035 && CONST_INT_P (XEXP (XEXP (rtl
, 0), 1)))
23037 offset
= INTVAL (XEXP (XEXP (rtl
, 0), 1));
23038 rtl
= XEXP (XEXP (rtl
, 0), 0);
23040 if (GET_CODE (rtl
) == CONST_STRING
)
23042 size_t len
= strlen (XSTR (rtl
, 0)) + 1;
23043 tree t
= build_string (len
, XSTR (rtl
, 0));
23044 tree tlen
= size_int (len
- 1);
23047 = build_array_type (char_type_node
, build_index_type (tlen
));
23048 rtl
= string_cst_pool_decl (t
);
23052 if (GET_CODE (rtl
) == SYMBOL_REF
&& SYMBOL_REF_DECL (rtl
))
23054 decl
= SYMBOL_REF_DECL (rtl
);
23055 if (TREE_CODE (decl
) == VAR_DECL
&& !DECL_EXTERNAL (decl
))
23057 ref
= lookup_decl_die (decl
);
23058 if (ref
&& (get_AT (ref
, DW_AT_location
)
23059 || get_AT (ref
, DW_AT_const_value
)))
23061 loc
->dw_loc_opc
= DW_OP_GNU_implicit_pointer
;
23062 loc
->dw_loc_oprnd1
.val_class
= dw_val_class_die_ref
;
23063 loc
->dw_loc_oprnd1
.val_entry
= NULL
;
23064 loc
->dw_loc_oprnd1
.v
.val_die_ref
.die
= ref
;
23065 loc
->dw_loc_oprnd1
.v
.val_die_ref
.external
= 0;
23066 loc
->dw_loc_next
= loc
->dw_loc_next
->dw_loc_next
;
23067 loc
->dw_loc_oprnd2
.v
.val_int
= offset
;
23075 /* Helper function for resolve_addr, handle one location
23076 expression, return false if at least one CONST_STRING or SYMBOL_REF in
23077 the location list couldn't be resolved. */
23080 resolve_addr_in_expr (dw_loc_descr_ref loc
)
23082 dw_loc_descr_ref keep
= NULL
;
23083 for (dw_loc_descr_ref prev
= NULL
; loc
; prev
= loc
, loc
= loc
->dw_loc_next
)
23084 switch (loc
->dw_loc_opc
)
23087 if (resolve_one_addr (&loc
->dw_loc_oprnd1
.v
.val_addr
, NULL
))
23090 || prev
->dw_loc_opc
== DW_OP_piece
23091 || prev
->dw_loc_opc
== DW_OP_bit_piece
)
23092 && loc
->dw_loc_next
23093 && loc
->dw_loc_next
->dw_loc_opc
== DW_OP_stack_value
23095 && optimize_one_addr_into_implicit_ptr (loc
))
23100 case DW_OP_GNU_addr_index
:
23101 case DW_OP_GNU_const_index
:
23102 if ((loc
->dw_loc_opc
== DW_OP_GNU_addr_index
23103 || (loc
->dw_loc_opc
== DW_OP_GNU_const_index
&& loc
->dtprel
))
23104 && resolve_one_addr (&loc
->dw_loc_oprnd1
.val_entry
->addr
.rtl
,
23108 case DW_OP_const4u
:
23109 case DW_OP_const8u
:
23111 && resolve_one_addr (&loc
->dw_loc_oprnd1
.v
.val_addr
, NULL
))
23114 case DW_OP_plus_uconst
:
23115 if (size_of_loc_descr (loc
)
23116 > size_of_int_loc_descriptor (loc
->dw_loc_oprnd1
.v
.val_unsigned
)
23118 && loc
->dw_loc_oprnd1
.v
.val_unsigned
> 0)
23120 dw_loc_descr_ref repl
23121 = int_loc_descriptor (loc
->dw_loc_oprnd1
.v
.val_unsigned
);
23122 add_loc_descr (&repl
, new_loc_descr (DW_OP_plus
, 0, 0));
23123 add_loc_descr (&repl
, loc
->dw_loc_next
);
23127 case DW_OP_implicit_value
:
23128 if (loc
->dw_loc_oprnd2
.val_class
== dw_val_class_addr
23129 && resolve_one_addr (&loc
->dw_loc_oprnd2
.v
.val_addr
, NULL
))
23132 case DW_OP_GNU_implicit_pointer
:
23133 case DW_OP_GNU_parameter_ref
:
23134 if (loc
->dw_loc_oprnd1
.val_class
== dw_val_class_decl_ref
)
23137 = lookup_decl_die (loc
->dw_loc_oprnd1
.v
.val_decl_ref
);
23140 loc
->dw_loc_oprnd1
.val_class
= dw_val_class_die_ref
;
23141 loc
->dw_loc_oprnd1
.v
.val_die_ref
.die
= ref
;
23142 loc
->dw_loc_oprnd1
.v
.val_die_ref
.external
= 0;
23145 case DW_OP_GNU_const_type
:
23146 case DW_OP_GNU_regval_type
:
23147 case DW_OP_GNU_deref_type
:
23148 case DW_OP_GNU_convert
:
23149 case DW_OP_GNU_reinterpret
:
23150 while (loc
->dw_loc_next
23151 && loc
->dw_loc_next
->dw_loc_opc
== DW_OP_GNU_convert
)
23153 dw_die_ref base1
, base2
;
23154 unsigned enc1
, enc2
, size1
, size2
;
23155 if (loc
->dw_loc_opc
== DW_OP_GNU_regval_type
23156 || loc
->dw_loc_opc
== DW_OP_GNU_deref_type
)
23157 base1
= loc
->dw_loc_oprnd2
.v
.val_die_ref
.die
;
23158 else if (loc
->dw_loc_oprnd1
.val_class
23159 == dw_val_class_unsigned_const
)
23162 base1
= loc
->dw_loc_oprnd1
.v
.val_die_ref
.die
;
23163 if (loc
->dw_loc_next
->dw_loc_oprnd1
.val_class
23164 == dw_val_class_unsigned_const
)
23166 base2
= loc
->dw_loc_next
->dw_loc_oprnd1
.v
.val_die_ref
.die
;
23167 gcc_assert (base1
->die_tag
== DW_TAG_base_type
23168 && base2
->die_tag
== DW_TAG_base_type
);
23169 enc1
= get_AT_unsigned (base1
, DW_AT_encoding
);
23170 enc2
= get_AT_unsigned (base2
, DW_AT_encoding
);
23171 size1
= get_AT_unsigned (base1
, DW_AT_byte_size
);
23172 size2
= get_AT_unsigned (base2
, DW_AT_byte_size
);
23174 && (((enc1
== DW_ATE_unsigned
|| enc1
== DW_ATE_signed
)
23175 && (enc2
== DW_ATE_unsigned
|| enc2
== DW_ATE_signed
)
23179 /* Optimize away next DW_OP_GNU_convert after
23180 adjusting LOC's base type die reference. */
23181 if (loc
->dw_loc_opc
== DW_OP_GNU_regval_type
23182 || loc
->dw_loc_opc
== DW_OP_GNU_deref_type
)
23183 loc
->dw_loc_oprnd2
.v
.val_die_ref
.die
= base2
;
23185 loc
->dw_loc_oprnd1
.v
.val_die_ref
.die
= base2
;
23186 loc
->dw_loc_next
= loc
->dw_loc_next
->dw_loc_next
;
23189 /* Don't change integer DW_OP_GNU_convert after e.g. floating
23190 point typed stack entry. */
23191 else if (enc1
!= DW_ATE_unsigned
&& enc1
!= DW_ATE_signed
)
23192 keep
= loc
->dw_loc_next
;
23202 /* Helper function of resolve_addr. DIE had DW_AT_location of
23203 DW_OP_addr alone, which referred to DECL in DW_OP_addr's operand
23204 and DW_OP_addr couldn't be resolved. resolve_addr has already
23205 removed the DW_AT_location attribute. This function attempts to
23206 add a new DW_AT_location attribute with DW_OP_GNU_implicit_pointer
23207 to it or DW_AT_const_value attribute, if possible. */
23210 optimize_location_into_implicit_ptr (dw_die_ref die
, tree decl
)
23212 if (TREE_CODE (decl
) != VAR_DECL
23213 || lookup_decl_die (decl
) != die
23214 || DECL_EXTERNAL (decl
)
23215 || !TREE_STATIC (decl
)
23216 || DECL_INITIAL (decl
) == NULL_TREE
23217 || DECL_P (DECL_INITIAL (decl
))
23218 || get_AT (die
, DW_AT_const_value
))
23221 tree init
= DECL_INITIAL (decl
);
23222 HOST_WIDE_INT offset
= 0;
23223 /* For variables that have been optimized away and thus
23224 don't have a memory location, see if we can emit
23225 DW_AT_const_value instead. */
23226 if (tree_add_const_value_attribute (die
, init
))
23230 /* If init is ADDR_EXPR or POINTER_PLUS_EXPR of ADDR_EXPR,
23231 and ADDR_EXPR refers to a decl that has DW_AT_location or
23232 DW_AT_const_value (but isn't addressable, otherwise
23233 resolving the original DW_OP_addr wouldn't fail), see if
23234 we can add DW_OP_GNU_implicit_pointer. */
23236 if (TREE_CODE (init
) == POINTER_PLUS_EXPR
23237 && tree_fits_shwi_p (TREE_OPERAND (init
, 1)))
23239 offset
= tree_to_shwi (TREE_OPERAND (init
, 1));
23240 init
= TREE_OPERAND (init
, 0);
23243 if (TREE_CODE (init
) != ADDR_EXPR
)
23245 if ((TREE_CODE (TREE_OPERAND (init
, 0)) == STRING_CST
23246 && !TREE_ASM_WRITTEN (TREE_OPERAND (init
, 0)))
23247 || (TREE_CODE (TREE_OPERAND (init
, 0)) == VAR_DECL
23248 && !DECL_EXTERNAL (TREE_OPERAND (init
, 0))
23249 && TREE_OPERAND (init
, 0) != decl
))
23252 dw_loc_descr_ref l
;
23254 if (TREE_CODE (TREE_OPERAND (init
, 0)) == STRING_CST
)
23256 rtx rtl
= string_cst_pool_decl (TREE_OPERAND (init
, 0));
23259 decl
= SYMBOL_REF_DECL (rtl
);
23262 decl
= TREE_OPERAND (init
, 0);
23263 ref
= lookup_decl_die (decl
);
23265 || (!get_AT (ref
, DW_AT_location
)
23266 && !get_AT (ref
, DW_AT_const_value
)))
23268 l
= new_loc_descr (DW_OP_GNU_implicit_pointer
, 0, offset
);
23269 l
->dw_loc_oprnd1
.val_class
= dw_val_class_die_ref
;
23270 l
->dw_loc_oprnd1
.v
.val_die_ref
.die
= ref
;
23271 l
->dw_loc_oprnd1
.v
.val_die_ref
.external
= 0;
23272 add_AT_loc (die
, DW_AT_location
, l
);
23276 /* Resolve DW_OP_addr and DW_AT_const_value CONST_STRING arguments to
23277 an address in .rodata section if the string literal is emitted there,
23278 or remove the containing location list or replace DW_AT_const_value
23279 with DW_AT_location and empty location expression, if it isn't found
23280 in .rodata. Similarly for SYMBOL_REFs, keep only those that refer
23281 to something that has been emitted in the current CU. */
23284 resolve_addr (dw_die_ref die
)
23288 dw_loc_list_ref
*curr
, *start
, loc
;
23291 FOR_EACH_VEC_SAFE_ELT (die
->die_attr
, ix
, a
)
23292 switch (AT_class (a
))
23294 case dw_val_class_loc_list
:
23295 start
= curr
= AT_loc_list_ptr (a
);
23298 /* The same list can be referenced more than once. See if we have
23299 already recorded the result from a previous pass. */
23301 *curr
= loc
->dw_loc_next
;
23302 else if (!loc
->resolved_addr
)
23304 /* As things stand, we do not expect or allow one die to
23305 reference a suffix of another die's location list chain.
23306 References must be identical or completely separate.
23307 There is therefore no need to cache the result of this
23308 pass on any list other than the first; doing so
23309 would lead to unnecessary writes. */
23312 gcc_assert (!(*curr
)->replaced
&& !(*curr
)->resolved_addr
);
23313 if (!resolve_addr_in_expr ((*curr
)->expr
))
23315 dw_loc_list_ref next
= (*curr
)->dw_loc_next
;
23316 dw_loc_descr_ref l
= (*curr
)->expr
;
23318 if (next
&& (*curr
)->ll_symbol
)
23320 gcc_assert (!next
->ll_symbol
);
23321 next
->ll_symbol
= (*curr
)->ll_symbol
;
23323 if (dwarf_split_debug_info
)
23324 remove_loc_list_addr_table_entries (l
);
23329 mark_base_types ((*curr
)->expr
);
23330 curr
= &(*curr
)->dw_loc_next
;
23334 loc
->resolved_addr
= 1;
23338 loc
->dw_loc_next
= *start
;
23343 remove_AT (die
, a
->dw_attr
);
23347 case dw_val_class_loc
:
23349 dw_loc_descr_ref l
= AT_loc (a
);
23350 /* For -gdwarf-2 don't attempt to optimize
23351 DW_AT_data_member_location containing
23352 DW_OP_plus_uconst - older consumers might
23353 rely on it being that op instead of a more complex,
23354 but shorter, location description. */
23355 if ((dwarf_version
> 2
23356 || a
->dw_attr
!= DW_AT_data_member_location
23358 || l
->dw_loc_opc
!= DW_OP_plus_uconst
23359 || l
->dw_loc_next
!= NULL
)
23360 && !resolve_addr_in_expr (l
))
23362 if (dwarf_split_debug_info
)
23363 remove_loc_list_addr_table_entries (l
);
23365 && l
->dw_loc_next
== NULL
23366 && l
->dw_loc_opc
== DW_OP_addr
23367 && GET_CODE (l
->dw_loc_oprnd1
.v
.val_addr
) == SYMBOL_REF
23368 && SYMBOL_REF_DECL (l
->dw_loc_oprnd1
.v
.val_addr
)
23369 && a
->dw_attr
== DW_AT_location
)
23371 tree decl
= SYMBOL_REF_DECL (l
->dw_loc_oprnd1
.v
.val_addr
);
23372 remove_AT (die
, a
->dw_attr
);
23374 optimize_location_into_implicit_ptr (die
, decl
);
23377 remove_AT (die
, a
->dw_attr
);
23381 mark_base_types (l
);
23384 case dw_val_class_addr
:
23385 if (a
->dw_attr
== DW_AT_const_value
23386 && resolve_one_addr (&a
->dw_attr_val
.v
.val_addr
, NULL
))
23388 if (AT_index (a
) != NOT_INDEXED
)
23389 remove_addr_table_entry (a
->dw_attr_val
.val_entry
);
23390 remove_AT (die
, a
->dw_attr
);
23393 if (die
->die_tag
== DW_TAG_GNU_call_site
23394 && a
->dw_attr
== DW_AT_abstract_origin
)
23396 tree tdecl
= SYMBOL_REF_DECL (a
->dw_attr_val
.v
.val_addr
);
23397 dw_die_ref tdie
= lookup_decl_die (tdecl
);
23399 && DECL_EXTERNAL (tdecl
)
23400 && DECL_ABSTRACT_ORIGIN (tdecl
) == NULL_TREE
)
23402 force_decl_die (tdecl
);
23403 tdie
= lookup_decl_die (tdecl
);
23407 a
->dw_attr_val
.val_class
= dw_val_class_die_ref
;
23408 a
->dw_attr_val
.v
.val_die_ref
.die
= tdie
;
23409 a
->dw_attr_val
.v
.val_die_ref
.external
= 0;
23413 if (AT_index (a
) != NOT_INDEXED
)
23414 remove_addr_table_entry (a
->dw_attr_val
.val_entry
);
23415 remove_AT (die
, a
->dw_attr
);
23424 FOR_EACH_CHILD (die
, c
, resolve_addr (c
));
23427 /* Helper routines for optimize_location_lists.
23428 This pass tries to share identical local lists in .debug_loc
23431 /* Iteratively hash operands of LOC opcode. */
23434 hash_loc_operands (dw_loc_descr_ref loc
, hashval_t hash
)
23436 dw_val_ref val1
= &loc
->dw_loc_oprnd1
;
23437 dw_val_ref val2
= &loc
->dw_loc_oprnd2
;
23439 switch (loc
->dw_loc_opc
)
23441 case DW_OP_const4u
:
23442 case DW_OP_const8u
:
23446 case DW_OP_const1u
:
23447 case DW_OP_const1s
:
23448 case DW_OP_const2u
:
23449 case DW_OP_const2s
:
23450 case DW_OP_const4s
:
23451 case DW_OP_const8s
:
23455 case DW_OP_plus_uconst
:
23491 case DW_OP_deref_size
:
23492 case DW_OP_xderef_size
:
23493 hash
= iterative_hash_object (val1
->v
.val_int
, hash
);
23500 gcc_assert (val1
->val_class
== dw_val_class_loc
);
23501 offset
= val1
->v
.val_loc
->dw_loc_addr
- (loc
->dw_loc_addr
+ 3);
23502 hash
= iterative_hash_object (offset
, hash
);
23505 case DW_OP_implicit_value
:
23506 hash
= iterative_hash_object (val1
->v
.val_unsigned
, hash
);
23507 switch (val2
->val_class
)
23509 case dw_val_class_const
:
23510 hash
= iterative_hash_object (val2
->v
.val_int
, hash
);
23512 case dw_val_class_vec
:
23514 unsigned int elt_size
= val2
->v
.val_vec
.elt_size
;
23515 unsigned int len
= val2
->v
.val_vec
.length
;
23517 hash
= iterative_hash_object (elt_size
, hash
);
23518 hash
= iterative_hash_object (len
, hash
);
23519 hash
= iterative_hash (val2
->v
.val_vec
.array
,
23520 len
* elt_size
, hash
);
23523 case dw_val_class_const_double
:
23524 hash
= iterative_hash_object (val2
->v
.val_double
.low
, hash
);
23525 hash
= iterative_hash_object (val2
->v
.val_double
.high
, hash
);
23527 case dw_val_class_addr
:
23528 hash
= iterative_hash_rtx (val2
->v
.val_addr
, hash
);
23531 gcc_unreachable ();
23535 case DW_OP_bit_piece
:
23536 hash
= iterative_hash_object (val1
->v
.val_int
, hash
);
23537 hash
= iterative_hash_object (val2
->v
.val_int
, hash
);
23543 unsigned char dtprel
= 0xd1;
23544 hash
= iterative_hash_object (dtprel
, hash
);
23546 hash
= iterative_hash_rtx (val1
->v
.val_addr
, hash
);
23548 case DW_OP_GNU_addr_index
:
23549 case DW_OP_GNU_const_index
:
23553 unsigned char dtprel
= 0xd1;
23554 hash
= iterative_hash_object (dtprel
, hash
);
23556 hash
= iterative_hash_rtx (val1
->val_entry
->addr
.rtl
, hash
);
23559 case DW_OP_GNU_implicit_pointer
:
23560 hash
= iterative_hash_object (val2
->v
.val_int
, hash
);
23562 case DW_OP_GNU_entry_value
:
23563 hash
= hash_loc_operands (val1
->v
.val_loc
, hash
);
23565 case DW_OP_GNU_regval_type
:
23566 case DW_OP_GNU_deref_type
:
23568 unsigned int byte_size
23569 = get_AT_unsigned (val2
->v
.val_die_ref
.die
, DW_AT_byte_size
);
23570 unsigned int encoding
23571 = get_AT_unsigned (val2
->v
.val_die_ref
.die
, DW_AT_encoding
);
23572 hash
= iterative_hash_object (val1
->v
.val_int
, hash
);
23573 hash
= iterative_hash_object (byte_size
, hash
);
23574 hash
= iterative_hash_object (encoding
, hash
);
23577 case DW_OP_GNU_convert
:
23578 case DW_OP_GNU_reinterpret
:
23579 if (val1
->val_class
== dw_val_class_unsigned_const
)
23581 hash
= iterative_hash_object (val1
->v
.val_unsigned
, hash
);
23585 case DW_OP_GNU_const_type
:
23587 unsigned int byte_size
23588 = get_AT_unsigned (val1
->v
.val_die_ref
.die
, DW_AT_byte_size
);
23589 unsigned int encoding
23590 = get_AT_unsigned (val1
->v
.val_die_ref
.die
, DW_AT_encoding
);
23591 hash
= iterative_hash_object (byte_size
, hash
);
23592 hash
= iterative_hash_object (encoding
, hash
);
23593 if (loc
->dw_loc_opc
!= DW_OP_GNU_const_type
)
23595 hash
= iterative_hash_object (val2
->val_class
, hash
);
23596 switch (val2
->val_class
)
23598 case dw_val_class_const
:
23599 hash
= iterative_hash_object (val2
->v
.val_int
, hash
);
23601 case dw_val_class_vec
:
23603 unsigned int elt_size
= val2
->v
.val_vec
.elt_size
;
23604 unsigned int len
= val2
->v
.val_vec
.length
;
23606 hash
= iterative_hash_object (elt_size
, hash
);
23607 hash
= iterative_hash_object (len
, hash
);
23608 hash
= iterative_hash (val2
->v
.val_vec
.array
,
23609 len
* elt_size
, hash
);
23612 case dw_val_class_const_double
:
23613 hash
= iterative_hash_object (val2
->v
.val_double
.low
, hash
);
23614 hash
= iterative_hash_object (val2
->v
.val_double
.high
, hash
);
23617 gcc_unreachable ();
23623 /* Other codes have no operands. */
23629 /* Iteratively hash the whole DWARF location expression LOC. */
23631 static inline hashval_t
23632 hash_locs (dw_loc_descr_ref loc
, hashval_t hash
)
23634 dw_loc_descr_ref l
;
23635 bool sizes_computed
= false;
23636 /* Compute sizes, so that DW_OP_skip/DW_OP_bra can be checksummed. */
23637 size_of_locs (loc
);
23639 for (l
= loc
; l
!= NULL
; l
= l
->dw_loc_next
)
23641 enum dwarf_location_atom opc
= l
->dw_loc_opc
;
23642 hash
= iterative_hash_object (opc
, hash
);
23643 if ((opc
== DW_OP_skip
|| opc
== DW_OP_bra
) && !sizes_computed
)
23645 size_of_locs (loc
);
23646 sizes_computed
= true;
23648 hash
= hash_loc_operands (l
, hash
);
23653 /* Compute hash of the whole location list LIST_HEAD. */
23656 hash_loc_list (dw_loc_list_ref list_head
)
23658 dw_loc_list_ref curr
= list_head
;
23659 hashval_t hash
= 0;
23661 for (curr
= list_head
; curr
!= NULL
; curr
= curr
->dw_loc_next
)
23663 hash
= iterative_hash (curr
->begin
, strlen (curr
->begin
) + 1, hash
);
23664 hash
= iterative_hash (curr
->end
, strlen (curr
->end
) + 1, hash
);
23666 hash
= iterative_hash (curr
->section
, strlen (curr
->section
) + 1,
23668 hash
= hash_locs (curr
->expr
, hash
);
23670 list_head
->hash
= hash
;
23673 /* Return true if X and Y opcodes have the same operands. */
23676 compare_loc_operands (dw_loc_descr_ref x
, dw_loc_descr_ref y
)
23678 dw_val_ref valx1
= &x
->dw_loc_oprnd1
;
23679 dw_val_ref valx2
= &x
->dw_loc_oprnd2
;
23680 dw_val_ref valy1
= &y
->dw_loc_oprnd1
;
23681 dw_val_ref valy2
= &y
->dw_loc_oprnd2
;
23683 switch (x
->dw_loc_opc
)
23685 case DW_OP_const4u
:
23686 case DW_OP_const8u
:
23690 case DW_OP_const1u
:
23691 case DW_OP_const1s
:
23692 case DW_OP_const2u
:
23693 case DW_OP_const2s
:
23694 case DW_OP_const4s
:
23695 case DW_OP_const8s
:
23699 case DW_OP_plus_uconst
:
23735 case DW_OP_deref_size
:
23736 case DW_OP_xderef_size
:
23737 return valx1
->v
.val_int
== valy1
->v
.val_int
;
23740 /* If splitting debug info, the use of DW_OP_GNU_addr_index
23741 can cause irrelevant differences in dw_loc_addr. */
23742 gcc_assert (valx1
->val_class
== dw_val_class_loc
23743 && valy1
->val_class
== dw_val_class_loc
23744 && (dwarf_split_debug_info
23745 || x
->dw_loc_addr
== y
->dw_loc_addr
));
23746 return valx1
->v
.val_loc
->dw_loc_addr
== valy1
->v
.val_loc
->dw_loc_addr
;
23747 case DW_OP_implicit_value
:
23748 if (valx1
->v
.val_unsigned
!= valy1
->v
.val_unsigned
23749 || valx2
->val_class
!= valy2
->val_class
)
23751 switch (valx2
->val_class
)
23753 case dw_val_class_const
:
23754 return valx2
->v
.val_int
== valy2
->v
.val_int
;
23755 case dw_val_class_vec
:
23756 return valx2
->v
.val_vec
.elt_size
== valy2
->v
.val_vec
.elt_size
23757 && valx2
->v
.val_vec
.length
== valy2
->v
.val_vec
.length
23758 && memcmp (valx2
->v
.val_vec
.array
, valy2
->v
.val_vec
.array
,
23759 valx2
->v
.val_vec
.elt_size
23760 * valx2
->v
.val_vec
.length
) == 0;
23761 case dw_val_class_const_double
:
23762 return valx2
->v
.val_double
.low
== valy2
->v
.val_double
.low
23763 && valx2
->v
.val_double
.high
== valy2
->v
.val_double
.high
;
23764 case dw_val_class_addr
:
23765 return rtx_equal_p (valx2
->v
.val_addr
, valy2
->v
.val_addr
);
23767 gcc_unreachable ();
23770 case DW_OP_bit_piece
:
23771 return valx1
->v
.val_int
== valy1
->v
.val_int
23772 && valx2
->v
.val_int
== valy2
->v
.val_int
;
23775 return rtx_equal_p (valx1
->v
.val_addr
, valy1
->v
.val_addr
);
23776 case DW_OP_GNU_addr_index
:
23777 case DW_OP_GNU_const_index
:
23779 rtx ax1
= valx1
->val_entry
->addr
.rtl
;
23780 rtx ay1
= valy1
->val_entry
->addr
.rtl
;
23781 return rtx_equal_p (ax1
, ay1
);
23783 case DW_OP_GNU_implicit_pointer
:
23784 return valx1
->val_class
== dw_val_class_die_ref
23785 && valx1
->val_class
== valy1
->val_class
23786 && valx1
->v
.val_die_ref
.die
== valy1
->v
.val_die_ref
.die
23787 && valx2
->v
.val_int
== valy2
->v
.val_int
;
23788 case DW_OP_GNU_entry_value
:
23789 return compare_loc_operands (valx1
->v
.val_loc
, valy1
->v
.val_loc
);
23790 case DW_OP_GNU_const_type
:
23791 if (valx1
->v
.val_die_ref
.die
!= valy1
->v
.val_die_ref
.die
23792 || valx2
->val_class
!= valy2
->val_class
)
23794 switch (valx2
->val_class
)
23796 case dw_val_class_const
:
23797 return valx2
->v
.val_int
== valy2
->v
.val_int
;
23798 case dw_val_class_vec
:
23799 return valx2
->v
.val_vec
.elt_size
== valy2
->v
.val_vec
.elt_size
23800 && valx2
->v
.val_vec
.length
== valy2
->v
.val_vec
.length
23801 && memcmp (valx2
->v
.val_vec
.array
, valy2
->v
.val_vec
.array
,
23802 valx2
->v
.val_vec
.elt_size
23803 * valx2
->v
.val_vec
.length
) == 0;
23804 case dw_val_class_const_double
:
23805 return valx2
->v
.val_double
.low
== valy2
->v
.val_double
.low
23806 && valx2
->v
.val_double
.high
== valy2
->v
.val_double
.high
;
23808 gcc_unreachable ();
23810 case DW_OP_GNU_regval_type
:
23811 case DW_OP_GNU_deref_type
:
23812 return valx1
->v
.val_int
== valy1
->v
.val_int
23813 && valx2
->v
.val_die_ref
.die
== valy2
->v
.val_die_ref
.die
;
23814 case DW_OP_GNU_convert
:
23815 case DW_OP_GNU_reinterpret
:
23816 if (valx1
->val_class
!= valy1
->val_class
)
23818 if (valx1
->val_class
== dw_val_class_unsigned_const
)
23819 return valx1
->v
.val_unsigned
== valy1
->v
.val_unsigned
;
23820 return valx1
->v
.val_die_ref
.die
== valy1
->v
.val_die_ref
.die
;
23821 case DW_OP_GNU_parameter_ref
:
23822 return valx1
->val_class
== dw_val_class_die_ref
23823 && valx1
->val_class
== valy1
->val_class
23824 && valx1
->v
.val_die_ref
.die
== valy1
->v
.val_die_ref
.die
;
23826 /* Other codes have no operands. */
23831 /* Return true if DWARF location expressions X and Y are the same. */
23834 compare_locs (dw_loc_descr_ref x
, dw_loc_descr_ref y
)
23836 for (; x
!= NULL
&& y
!= NULL
; x
= x
->dw_loc_next
, y
= y
->dw_loc_next
)
23837 if (x
->dw_loc_opc
!= y
->dw_loc_opc
23838 || x
->dtprel
!= y
->dtprel
23839 || !compare_loc_operands (x
, y
))
23841 return x
== NULL
&& y
== NULL
;
23844 /* Hashtable helpers. */
23846 struct loc_list_hasher
: typed_noop_remove
<dw_loc_list_struct
>
23848 typedef dw_loc_list_struct value_type
;
23849 typedef dw_loc_list_struct compare_type
;
23850 static inline hashval_t
hash (const value_type
*);
23851 static inline bool equal (const value_type
*, const compare_type
*);
23854 /* Return precomputed hash of location list X. */
23857 loc_list_hasher::hash (const value_type
*x
)
23862 /* Return true if location lists A and B are the same. */
23865 loc_list_hasher::equal (const value_type
*a
, const compare_type
*b
)
23869 if (a
->hash
!= b
->hash
)
23871 for (; a
!= NULL
&& b
!= NULL
; a
= a
->dw_loc_next
, b
= b
->dw_loc_next
)
23872 if (strcmp (a
->begin
, b
->begin
) != 0
23873 || strcmp (a
->end
, b
->end
) != 0
23874 || (a
->section
== NULL
) != (b
->section
== NULL
)
23875 || (a
->section
&& strcmp (a
->section
, b
->section
) != 0)
23876 || !compare_locs (a
->expr
, b
->expr
))
23878 return a
== NULL
&& b
== NULL
;
23881 typedef hash_table
<loc_list_hasher
> loc_list_hash_type
;
23884 /* Recursively optimize location lists referenced from DIE
23885 children and share them whenever possible. */
23888 optimize_location_lists_1 (dw_die_ref die
, loc_list_hash_type htab
)
23893 dw_loc_list_struct
**slot
;
23895 FOR_EACH_VEC_SAFE_ELT (die
->die_attr
, ix
, a
)
23896 if (AT_class (a
) == dw_val_class_loc_list
)
23898 dw_loc_list_ref list
= AT_loc_list (a
);
23899 /* TODO: perform some optimizations here, before hashing
23900 it and storing into the hash table. */
23901 hash_loc_list (list
);
23902 slot
= htab
.find_slot_with_hash (list
, list
->hash
, INSERT
);
23906 a
->dw_attr_val
.v
.val_loc_list
= *slot
;
23909 FOR_EACH_CHILD (die
, c
, optimize_location_lists_1 (c
, htab
));
23913 /* Recursively assign each location list a unique index into the debug_addr
23917 index_location_lists (dw_die_ref die
)
23923 FOR_EACH_VEC_SAFE_ELT (die
->die_attr
, ix
, a
)
23924 if (AT_class (a
) == dw_val_class_loc_list
)
23926 dw_loc_list_ref list
= AT_loc_list (a
);
23927 dw_loc_list_ref curr
;
23928 for (curr
= list
; curr
!= NULL
; curr
= curr
->dw_loc_next
)
23930 /* Don't index an entry that has already been indexed
23931 or won't be output. */
23932 if (curr
->begin_entry
!= NULL
23933 || (strcmp (curr
->begin
, curr
->end
) == 0 && !curr
->force
))
23937 = add_addr_table_entry (xstrdup (curr
->begin
),
23942 FOR_EACH_CHILD (die
, c
, index_location_lists (c
));
23945 /* Optimize location lists referenced from DIE
23946 children and share them whenever possible. */
23949 optimize_location_lists (dw_die_ref die
)
23951 loc_list_hash_type htab
;
23953 optimize_location_lists_1 (die
, htab
);
23957 /* Output stuff that dwarf requires at the end of every file,
23958 and generate the DWARF-2 debugging info. */
23961 dwarf2out_finish (const char *filename
)
23963 limbo_die_node
*node
, *next_node
;
23964 comdat_type_node
*ctnode
;
23965 hash_table
<comdat_type_hasher
> comdat_type_table
;
23967 dw_die_ref main_comp_unit_die
;
23969 /* PCH might result in DW_AT_producer string being restored from the
23970 header compilation, so always fill it with empty string initially
23971 and overwrite only here. */
23972 dw_attr_ref producer
= get_AT (comp_unit_die (), DW_AT_producer
);
23973 producer_string
= gen_producer_string ();
23974 producer
->dw_attr_val
.v
.val_str
->refcount
--;
23975 producer
->dw_attr_val
.v
.val_str
= find_AT_string (producer_string
);
23977 gen_scheduled_generic_parms_dies ();
23978 gen_remaining_tmpl_value_param_die_attribute ();
23980 /* Add the name for the main input file now. We delayed this from
23981 dwarf2out_init to avoid complications with PCH. */
23982 add_name_attribute (comp_unit_die (), remap_debug_filename (filename
));
23983 if (!IS_ABSOLUTE_PATH (filename
) || targetm
.force_at_comp_dir
)
23984 add_comp_dir_attribute (comp_unit_die ());
23985 else if (get_AT (comp_unit_die (), DW_AT_comp_dir
) == NULL
)
23988 htab_traverse (file_table
, file_table_relative_p
, &p
);
23990 add_comp_dir_attribute (comp_unit_die ());
23993 if (deferred_locations_list
)
23994 for (i
= 0; i
< deferred_locations_list
->length (); i
++)
23996 add_location_or_const_value_attribute (
23997 (*deferred_locations_list
)[i
].die
,
23998 (*deferred_locations_list
)[i
].variable
,
24003 /* Traverse the limbo die list, and add parent/child links. The only
24004 dies without parents that should be here are concrete instances of
24005 inline functions, and the comp_unit_die. We can ignore the comp_unit_die.
24006 For concrete instances, we can get the parent die from the abstract
24008 for (node
= limbo_die_list
; node
; node
= next_node
)
24010 dw_die_ref die
= node
->die
;
24011 next_node
= node
->next
;
24013 if (die
->die_parent
== NULL
)
24015 dw_die_ref origin
= get_AT_ref (die
, DW_AT_abstract_origin
);
24017 if (origin
&& origin
->die_parent
)
24018 add_child_die (origin
->die_parent
, die
);
24019 else if (is_cu_die (die
))
24021 else if (seen_error ())
24022 /* It's OK to be confused by errors in the input. */
24023 add_child_die (comp_unit_die (), die
);
24026 /* In certain situations, the lexical block containing a
24027 nested function can be optimized away, which results
24028 in the nested function die being orphaned. Likewise
24029 with the return type of that nested function. Force
24030 this to be a child of the containing function.
24032 It may happen that even the containing function got fully
24033 inlined and optimized out. In that case we are lost and
24034 assign the empty child. This should not be big issue as
24035 the function is likely unreachable too. */
24036 gcc_assert (node
->created_for
);
24038 if (DECL_P (node
->created_for
))
24039 origin
= get_context_die (DECL_CONTEXT (node
->created_for
));
24040 else if (TYPE_P (node
->created_for
))
24041 origin
= scope_die_for (node
->created_for
, comp_unit_die ());
24043 origin
= comp_unit_die ();
24045 add_child_die (origin
, die
);
24050 limbo_die_list
= NULL
;
24052 #if ENABLE_ASSERT_CHECKING
24054 dw_die_ref die
= comp_unit_die (), c
;
24055 FOR_EACH_CHILD (die
, c
, gcc_assert (! c
->die_mark
));
24058 resolve_addr (comp_unit_die ());
24059 move_marked_base_types ();
24061 for (node
= deferred_asm_name
; node
; node
= node
->next
)
24063 tree decl
= node
->created_for
;
24064 /* When generating LTO bytecode we can not generate new assembler
24065 names at this point and all important decls got theirs via
24067 if ((!flag_generate_lto
|| DECL_ASSEMBLER_NAME_SET_P (decl
))
24068 && DECL_ASSEMBLER_NAME (decl
) != DECL_NAME (decl
))
24070 add_linkage_attr (node
->die
, decl
);
24071 move_linkage_attr (node
->die
);
24075 deferred_asm_name
= NULL
;
24077 /* Walk through the list of incomplete types again, trying once more to
24078 emit full debugging info for them. */
24079 retry_incomplete_types ();
24081 if (flag_eliminate_unused_debug_types
)
24082 prune_unused_types ();
24084 /* Generate separate COMDAT sections for type DIEs. */
24085 if (use_debug_types
)
24087 break_out_comdat_types (comp_unit_die ());
24089 /* Each new type_unit DIE was added to the limbo die list when created.
24090 Since these have all been added to comdat_type_list, clear the
24092 limbo_die_list
= NULL
;
24094 /* For each new comdat type unit, copy declarations for incomplete
24095 types to make the new unit self-contained (i.e., no direct
24096 references to the main compile unit). */
24097 for (ctnode
= comdat_type_list
; ctnode
!= NULL
; ctnode
= ctnode
->next
)
24098 copy_decls_for_unworthy_types (ctnode
->root_die
);
24099 copy_decls_for_unworthy_types (comp_unit_die ());
24101 /* In the process of copying declarations from one unit to another,
24102 we may have left some declarations behind that are no longer
24103 referenced. Prune them. */
24104 prune_unused_types ();
24107 /* Generate separate CUs for each of the include files we've seen.
24108 They will go into limbo_die_list. */
24109 if (flag_eliminate_dwarf2_dups
)
24110 break_out_includes (comp_unit_die ());
24112 /* Traverse the DIE's and add add sibling attributes to those DIE's
24113 that have children. */
24114 add_sibling_attributes (comp_unit_die ());
24115 for (node
= limbo_die_list
; node
; node
= node
->next
)
24116 add_sibling_attributes (node
->die
);
24117 for (ctnode
= comdat_type_list
; ctnode
!= NULL
; ctnode
= ctnode
->next
)
24118 add_sibling_attributes (ctnode
->root_die
);
24120 /* When splitting DWARF info, we put some attributes in the
24121 skeleton compile_unit DIE that remains in the .o, while
24122 most attributes go in the DWO compile_unit_die. */
24123 if (dwarf_split_debug_info
)
24124 main_comp_unit_die
= gen_compile_unit_die (NULL
);
24126 main_comp_unit_die
= comp_unit_die ();
24128 /* Output a terminator label for the .text section. */
24129 switch_to_section (text_section
);
24130 targetm
.asm_out
.internal_label (asm_out_file
, TEXT_END_LABEL
, 0);
24131 if (cold_text_section
)
24133 switch_to_section (cold_text_section
);
24134 targetm
.asm_out
.internal_label (asm_out_file
, COLD_END_LABEL
, 0);
24137 /* We can only use the low/high_pc attributes if all of the code was
24139 if (!have_multiple_function_sections
24140 || (dwarf_version
< 3 && dwarf_strict
))
24142 /* Don't add if the CU has no associated code. */
24143 if (text_section_used
)
24144 add_AT_low_high_pc (main_comp_unit_die
, text_section_label
,
24145 text_end_label
, true);
24151 bool range_list_added
= false;
24153 if (text_section_used
)
24154 add_ranges_by_labels (main_comp_unit_die
, text_section_label
,
24155 text_end_label
, &range_list_added
, true);
24156 if (cold_text_section_used
)
24157 add_ranges_by_labels (main_comp_unit_die
, cold_text_section_label
,
24158 cold_end_label
, &range_list_added
, true);
24160 FOR_EACH_VEC_ELT (*fde_vec
, fde_idx
, fde
)
24162 if (DECL_IGNORED_P (fde
->decl
))
24164 if (!fde
->in_std_section
)
24165 add_ranges_by_labels (main_comp_unit_die
, fde
->dw_fde_begin
,
24166 fde
->dw_fde_end
, &range_list_added
,
24168 if (fde
->dw_fde_second_begin
&& !fde
->second_in_std_section
)
24169 add_ranges_by_labels (main_comp_unit_die
, fde
->dw_fde_second_begin
,
24170 fde
->dw_fde_second_end
, &range_list_added
,
24174 if (range_list_added
)
24176 /* We need to give .debug_loc and .debug_ranges an appropriate
24177 "base address". Use zero so that these addresses become
24178 absolute. Historically, we've emitted the unexpected
24179 DW_AT_entry_pc instead of DW_AT_low_pc for this purpose.
24180 Emit both to give time for other tools to adapt. */
24181 add_AT_addr (main_comp_unit_die
, DW_AT_low_pc
, const0_rtx
, true);
24182 if (! dwarf_strict
&& dwarf_version
< 4)
24183 add_AT_addr (main_comp_unit_die
, DW_AT_entry_pc
, const0_rtx
, true);
24189 if (debug_info_level
>= DINFO_LEVEL_TERSE
)
24190 add_AT_lineptr (main_comp_unit_die
, DW_AT_stmt_list
,
24191 debug_line_section_label
);
24194 add_AT_macptr (comp_unit_die (),
24195 dwarf_strict
? DW_AT_macro_info
: DW_AT_GNU_macros
,
24196 macinfo_section_label
);
24198 if (dwarf_split_debug_info
&& addr_index_table
!= NULL
)
24200 /* optimize_location_lists calculates the size of the lists,
24201 so index them first, and assign indices to the entries.
24202 Although optimize_location_lists will remove entries from
24203 the table, it only does so for duplicates, and therefore
24204 only reduces ref_counts to 1. */
24205 unsigned int index
= 0;
24206 index_location_lists (comp_unit_die ());
24207 htab_traverse_noresize (addr_index_table
,
24208 index_addr_table_entry
, &index
);
24210 if (have_location_lists
)
24211 optimize_location_lists (comp_unit_die ());
24213 save_macinfo_strings ();
24215 if (dwarf_split_debug_info
)
24217 unsigned int index
= 0;
24219 /* Add attributes common to skeleton compile_units and
24220 type_units. Because these attributes include strings, it
24221 must be done before freezing the string table. Top-level
24222 skeleton die attrs are added when the skeleton type unit is
24223 created, so ensure it is created by this point. */
24224 add_top_level_skeleton_die_attrs (main_comp_unit_die
);
24225 (void) get_skeleton_type_unit ();
24226 htab_traverse_noresize (debug_str_hash
, index_string
, &index
);
24229 /* Output all of the compilation units. We put the main one last so that
24230 the offsets are available to output_pubnames. */
24231 for (node
= limbo_die_list
; node
; node
= node
->next
)
24232 output_comp_unit (node
->die
, 0);
24234 comdat_type_table
.create (100);
24235 for (ctnode
= comdat_type_list
; ctnode
!= NULL
; ctnode
= ctnode
->next
)
24237 comdat_type_node
**slot
= comdat_type_table
.find_slot (ctnode
, INSERT
);
24239 /* Don't output duplicate types. */
24240 if (*slot
!= HTAB_EMPTY_ENTRY
)
24243 /* Add a pointer to the line table for the main compilation unit
24244 so that the debugger can make sense of DW_AT_decl_file
24246 if (debug_info_level
>= DINFO_LEVEL_TERSE
)
24247 add_AT_lineptr (ctnode
->root_die
, DW_AT_stmt_list
,
24248 (!dwarf_split_debug_info
24249 ? debug_line_section_label
24250 : debug_skeleton_line_section_label
));
24252 output_comdat_type_unit (ctnode
);
24255 comdat_type_table
.dispose ();
24257 /* The AT_pubnames attribute needs to go in all skeleton dies, including
24258 both the main_cu and all skeleton TUs. Making this call unconditional
24259 would end up either adding a second copy of the AT_pubnames attribute, or
24260 requiring a special case in add_top_level_skeleton_die_attrs. */
24261 if (!dwarf_split_debug_info
)
24262 add_AT_pubnames (comp_unit_die ());
24264 if (dwarf_split_debug_info
)
24267 unsigned char checksum
[16];
24268 struct md5_ctx ctx
;
24270 /* Compute a checksum of the comp_unit to use as the dwo_id. */
24271 md5_init_ctx (&ctx
);
24273 die_checksum (comp_unit_die (), &ctx
, &mark
);
24274 unmark_all_dies (comp_unit_die ());
24275 md5_finish_ctx (&ctx
, checksum
);
24277 /* Use the first 8 bytes of the checksum as the dwo_id,
24278 and add it to both comp-unit DIEs. */
24279 add_AT_data8 (main_comp_unit_die
, DW_AT_GNU_dwo_id
, checksum
);
24280 add_AT_data8 (comp_unit_die (), DW_AT_GNU_dwo_id
, checksum
);
24282 /* Add the base offset of the ranges table to the skeleton
24284 if (ranges_table_in_use
)
24285 add_AT_lineptr (main_comp_unit_die
, DW_AT_GNU_ranges_base
,
24286 ranges_section_label
);
24288 switch_to_section (debug_addr_section
);
24289 ASM_OUTPUT_LABEL (asm_out_file
, debug_addr_section_label
);
24290 output_addr_table ();
24293 /* Output the main compilation unit if non-empty or if .debug_macinfo
24294 or .debug_macro will be emitted. */
24295 output_comp_unit (comp_unit_die (), have_macinfo
);
24297 if (dwarf_split_debug_info
&& info_section_emitted
)
24298 output_skeleton_debug_sections (main_comp_unit_die
);
24300 /* Output the abbreviation table. */
24301 if (abbrev_die_table_in_use
!= 1)
24303 switch_to_section (debug_abbrev_section
);
24304 ASM_OUTPUT_LABEL (asm_out_file
, abbrev_section_label
);
24305 output_abbrev_section ();
24308 /* Output location list section if necessary. */
24309 if (have_location_lists
)
24311 /* Output the location lists info. */
24312 switch_to_section (debug_loc_section
);
24313 ASM_OUTPUT_LABEL (asm_out_file
, loc_section_label
);
24314 output_location_lists (comp_unit_die ());
24317 output_pubtables ();
24319 /* Output the address range information if a CU (.debug_info section)
24320 was emitted. We output an empty table even if we had no functions
24321 to put in it. This because the consumer has no way to tell the
24322 difference between an empty table that we omitted and failure to
24323 generate a table that would have contained data. */
24324 if (info_section_emitted
)
24326 unsigned long aranges_length
= size_of_aranges ();
24328 switch_to_section (debug_aranges_section
);
24329 output_aranges (aranges_length
);
24332 /* Output ranges section if necessary. */
24333 if (ranges_table_in_use
)
24335 switch_to_section (debug_ranges_section
);
24336 ASM_OUTPUT_LABEL (asm_out_file
, ranges_section_label
);
24340 /* Have to end the macro section. */
24343 switch_to_section (debug_macinfo_section
);
24344 ASM_OUTPUT_LABEL (asm_out_file
, macinfo_section_label
);
24346 dw2_asm_output_data (1, 0, "End compilation unit");
24349 /* Output the source line correspondence table. We must do this
24350 even if there is no line information. Otherwise, on an empty
24351 translation unit, we will generate a present, but empty,
24352 .debug_info section. IRIX 6.5 `nm' will then complain when
24353 examining the file. This is done late so that any filenames
24354 used by the debug_info section are marked as 'used'. */
24355 switch_to_section (debug_line_section
);
24356 ASM_OUTPUT_LABEL (asm_out_file
, debug_line_section_label
);
24357 if (! DWARF2_ASM_LINE_DEBUG_INFO
)
24358 output_line_info (false);
24360 if (dwarf_split_debug_info
&& info_section_emitted
)
24362 switch_to_section (debug_skeleton_line_section
);
24363 ASM_OUTPUT_LABEL (asm_out_file
, debug_skeleton_line_section_label
);
24364 output_line_info (true);
24367 /* If we emitted any indirect strings, output the string table too. */
24368 if (debug_str_hash
|| skeleton_debug_str_hash
)
24369 output_indirect_strings ();
24372 #include "gt-dwarf2out.h"